/*****************************************************************
    Template Name    : Crypto - Cryptocurrency ICO & Bitcoin Website Template
    Author           : Barakah Themes
    Version          : 1.0
    Created          : 2022
    File Description : Main css file of the template
*****************************************************************/

/*****************************************************************

** - 01 - Default CSS
** - 02 - Preloader Area CSS
** - 03 - Navbar Area CSS
** - 04 - Home Area CSS
** - 05 - Partner Logo Section CSS
** - 06 - About Section CSS
** - 07 - Features Section CSS
** - 08 - Work Process Section CSS
** - 09 - Services Section CSS
** - 10 - Counter Section CSS
** - 11 - Roadmap Section CSS
** - 12 - WhitePapers Section CSS
** - 13 - Token Section CSS
** - 14 - Team Section CSS
** - 15 - Faq Section CSS
** - 16 - App Download Section CSS
** - 17 - Blog Section CSS
** - 18 - Contact Section CSS
** - 19 - Other Page Banner Title CSS
** - 20 - 404 Error Page Area CSS
** - 21 - Coming Soon Page CSS
** - 22 - Blog Details Page CSS
** - 23 - Blog Page Sidebar Widget CSS
** - 24 - Blog Page Number Pagination CSS
** - 25 - Footer Section CSS

*****************************************************************/

/**************************************
 ** - 01 - Default CSS
 **************************************/

body {
	padding: 0;
	margin: 0;
	font-size: 15px;
	font-family: 'Cabin', sans-serif;
}

img {
	max-width: 100%;
	height: auto;
	border-radius: 3px;
}

button {
	outline: 0 !important;
}

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

.d-table {
	width: 100%;
	height: 100%;
}

.d-table-cell {
	vertical-align: middle;
}

.ptb-100 {
	padding-top: 100px;
	padding-bottom: 100px;
}

.pb-50 {
	padding-bottom: 50px;
}
.pb-70 {
	padding-bottom: 70px;
}

.pb-100 {
	padding-bottom: 100px;
}

.pt-50 {
	padding-top: 50px;
}
.pt-70 {
	padding-top: 70px;
}
.pt-100 {
	padding-top: 100px;
}

.bg-grey {
	background-color: rgb(215, 215, 215, 0.17);
}

.section-padding {
	padding: 100px 0;
}

a {
	text-decoration: none;
	-webkit-transition: 0.4s !important;
	transition: 0.4s !important;
	outline: 0 !important;
	color: #505060;
}

a:hover {
	text-decoration: none;
	color: #ff9b08;
}

.h1, .h2, .h3, .h4, .h5, .h6, h1, h2, h3, h4, h5, h6 {
	font-weight: 600;
	line-height: 1.4;
	font-family: 'Cabin', sans-serif;
}

p {
	font-size: 15px;
	line-height: 1.8;
	color: #5f5f5f;
	margin-bottom: 15px;
	font-weight: 400;
	letter-spacing: 0.3px;
	font-family: 'Cabin', sans-serif;
}

p:last-child {
	margin-bottom: 0;
}

.default-btn {
	border: none;
	position: relative;
	display: inline-block;
	text-align: center;
	overflow: hidden;
	z-index: 1;
	color: #ffffff;
	background-color: #fcd531;
	-webkit-transition: 0.4s;
	transition: 0.4s;
	border-radius: 30px;
	font-weight: 600;
	font-size: 15px;
	padding-left: 35px;
	padding-right: 35px;
	padding-top: 12px;
	padding-bottom: 12px;
}

.default-btn span {
	position: absolute;
	display: block;
	width: 0;
	height: 0;
	border-radius: 50%;
	background-color: #fcd531;
	-webkit-transition: width 0.5s ease-in-out, height 0.5s ease-in-out;
	transition: width 0.5s ease-in-out, height 0.5s ease-in-out;
	-webkit-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
	z-index: -1;
	border-radius: 30px;
}

.default-btn:hover, .default-btn:focus {
	color: #ffffff;
}

.default-btn:hover span, .default-btn:focus span {
	width: 225%;
	height: 562.5px;
}

.default-btn-one {
	border: none;
	position: relative;
	display: inline-block;
	text-align: center;
	overflow: hidden;
	z-index: 1;
	color: #505050;
	background-color: #ffffff;
	-webkit-transition: 0.4s;
	transition: 0.4s;
	border-radius: 30px;
	font-weight: 600;
	font-size: 15px;
	padding-left: 40px;
	padding-right: 40px;
	padding-top: 12px;
	padding-bottom: 12px;
	margin-top: 5px;
	margin-right: 20px;
	box-shadow: 0 7px 25px rgb(123,104,238,0.25);
}

.default-btn-one span {
	position: absolute;
	display: block;
	width: 0;
	height: 0;
	border-radius: 50%;
	background-color: #3e57d0;
	-webkit-transition: width 0.5s ease-in-out, height 0.5s ease-in-out;
	transition: width 0.5s ease-in-out, height 0.5s ease-in-out;
	-webkit-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
	z-index: -1;
	border-radius: 30px;
}

.default-btn-one:hover, .default-btn-one:focus {
	color: #ffffff;
}

.default-btn-one:hover span, .default-btn-one:focus span {
	width: 225%;
	height: 562.5px;
}

.section-title {
	text-align: center;
	margin-bottom: 65px;
	line-height: 1.5;
}

.section-title h6 {
	font-size: 16px;
	font-weight: 600;
	color: #FF9800;
	letter-spacing: 0.5px;
	text-transform: uppercase;
}

.section-title h2 {
	font-size: 33px;
	color: #505060;
	margin: 0 0 0 0;
	font-weight: 600;
}

.color-text {
    color: #ff9b08;
}

@-webkit-keyframes bounce {
    0% { transform: translateY(-5px)  }
    50% { transform: translateY(10px) }
    100% { transform: translateY(-5px) }
}

@keyframes bounce {
    0% { transform: translateY(-5px)  }
    50% { transform: translateY(10px) }
    100% { transform: translateY(-5px) }
}


.valign {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
}

/* [ Start Overlay ] */
[data-overlay-dark],
[data-overlay-light] {
	position: relative;
}

[data-overlay-dark] .container,
[data-overlay-light] .container {
	position: relative;
	z-index: 2;
}

[data-overlay-dark]:before,
[data-overlay-light]:before {
	content: '';
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	z-index: 1;
}

[data-overlay-dark]:before {
	background: #02050b;
}

[data-overlay-light]:before {
	background: #fff;
}

[data-overlay-dark] h1,
[data-overlay-dark] h2,
[data-overlay-dark] h3,
[data-overlay-dark] h4,
[data-overlay-dark] h5,
[data-overlay-dark] h6,
[data-overlay-dark] span,
.bg-dark h1,
.bg-dark h2,
.bg-dark h3,
.bg-dark h4,
.bg-dark h5,
.bg-dark h6,
.bg-dark span,
.bg-color h1,
.bg-color h2,
.bg-color h3,
.bg-color h4,
.bg-color h5,
.bg-color h6,
.bg-color span {
	color: #fff;
}

[data-overlay-dark] p,
.bg-dark p,
.bg-color p {
	color: #dad6d6;
}

[data-overlay-dark="0"]:before,
[data-overlay-light="0"]:before {
	opacity: 0;
}

[data-overlay-dark="1"]:before,
[data-overlay-light="1"]:before {
	opacity: .1;
}

[data-overlay-dark="2"]:before,
[data-overlay-light="2"]:before {
	opacity: .2;
}

[data-overlay-dark="3"]:before,
[data-overlay-light="3"]:before {
	opacity: .3;
}

[data-overlay-dark="4"]:before,
[data-overlay-light="4"]:before {
	opacity: .4;
}

[data-overlay-dark="5"]:before,
[data-overlay-light="5"]:before {
	opacity: .5;
}

[data-overlay-dark="6"]:before,
[data-overlay-light="6"]:before {
	opacity: .6;
}

[data-overlay-dark="7"]:before,
[data-overlay-light="7"]:before {
	opacity: .7;
}

[data-overlay-dark="8"]:before,
[data-overlay-light="8"]:before {
	opacity: .8;
}

[data-overlay-dark="9"]:before,
[data-overlay-light="9"]:before,
[data-overlay-color="9"]:before {
	opacity: .9;
}

[data-overlay-dark="10"]:before,
[data-overlay-light="10"]:before {
	opacity: 1;
}

/* [ End Overlay ] */

/*****************************************
 ** - 00 -  Go Top CSS
 ******************************************/
.go-top {
	position: fixed;
	cursor: pointer;
	top: 0;
	right: 15px;
	color: #ffffff;
	background-color: #fcd531;
	text-align: center;
	z-index: 4;
	width: 45px;
	height: 45px;
	line-height: 45px;
	opacity: 0;
	visibility: hidden;
	-webkit-transition: .9s;
	transition: .9s;
	border-radius: 3px;
}

.go-top.active {
	top: 97%;
	-webkit-transform: translateY(-98%);
	transform: translateY(-98%);
	opacity: 1;
	visibility: visible;
}

.go-top i {
	position: absolute;
	top: 50%;
	-webkit-transform: translateY(-50%);
	transform: translateY(-50%);
	left: 0;
	right: 0;
	margin: 0 auto;
	-webkit-transition: 0.4s;
	transition: 0.4s;
}

.go-top i:last-child {
	opacity: 0;
	visibility: hidden;
	top: 60%;
}

.go-top::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: -1;
	background: #505060;
	opacity: 0;
	visibility: hidden;
	-webkit-transition: 0.4s;
	transition: 0.4s;
	border-radius: 3px;
}

.go-top:hover, .go-top:focus {
	color: #ffffff;
}

.go-top:hover::before, .go-top:focus::before {
	opacity: 1;
	visibility: visible;
}

.go-top:hover i:first-child, .go-top:focus i:first-child {
	opacity: 0;
	top: 0;
	visibility: hidden;
}

.go-top:hover i:last-child, .go-top:focus i:last-child {
	opacity: 1;
	visibility: visible;
	top: 50%;
}

/**************************************
 ** - 02 - Preloader Area CSS
 **************************************/
.preloader {
    position: fixed;
    z-index: 999999;
    background-color: #ffffff;
    width: 100%;
    height: 100%;
    text-align: center;
    left: 0;
    right: 0;
}
.preloader .lds-spinner {
    display: inline-block;
    position: relative;
    width: 80px;
    height: 80px;
}
.preloader .lds-spinner div {
    -webkit-transform-origin: 40px 40px;
    transform-origin: 40px 40px;
    -webkit-animation: lds-spinner 1.2s linear infinite;
    animation: lds-spinner 1.2s linear infinite;
}
.preloader .lds-spinner div::after {
    content: " ";
    display: block;
    position: absolute;
    top: 5px;
    left: 35px;
    width: 5px;
    height: 20px;
    border-radius: 20%;
    background: #3e57d0;
}
.preloader .lds-spinner div:nth-child(1){
    -webkit-transform:rotate(0deg);
    transform:rotate(0deg);
    -webkit-animation-delay:-1.1s;
    animation-delay:-1.1s
}
.preloader .lds-spinner div:nth-child(2){
    -webkit-transform:rotate(30deg);
    transform:rotate(30deg);
    -webkit-animation-delay:-1s;
    animation-delay:-1s
}
.preloader .lds-spinner div:nth-child(3){
    -webkit-transform:rotate(60deg);
    transform:rotate(60deg);
    -webkit-animation-delay:-.9s;
    animation-delay:-.9s
}
.preloader .lds-spinner div:nth-child(4){
    -webkit-transform:rotate(90deg);
    transform:rotate(90deg);
    -webkit-animation-delay:-.8s;
    animation-delay:-.8s
}
.preloader .lds-spinner div:nth-child(5){
    -webkit-transform:rotate(120deg);
    transform:rotate(120deg);
    -webkit-animation-delay:-.7s;
    animation-delay:-.7s
}
.preloader .lds-spinner div:nth-child(6){
    -webkit-transform:rotate(150deg);
    transform:rotate(150deg);
    -webkit-animation-delay:-.6s;
    animation-delay:-.6s
}
.preloader .lds-spinner div:nth-child(7){
    -webkit-transform:rotate(180deg);
    transform:rotate(180deg);
    -webkit-animation-delay:-.5s;
    animation-delay:-.5s
}
.preloader .lds-spinner div:nth-child(8){
    -webkit-transform:rotate(210deg);
    transform:rotate(210deg);
    -webkit-animation-delay:-.4s;
    animation-delay:-.4s
}
.preloader .lds-spinner div:nth-child(9){
    -webkit-transform:rotate(240deg);
    transform:rotate(240deg);
    -webkit-animation-delay:-.3s;
    animation-delay:-.3s
}
.preloader .lds-spinner div:nth-child(10){
    -webkit-transform:rotate(270deg);
    transform:rotate(270deg);
    -webkit-animation-delay:-.2s;
    animation-delay:-.2s
}
.preloader .lds-spinner div:nth-child(11){
    -webkit-transform:rotate(300deg);
    transform:rotate(300deg);
    -webkit-animation-delay:-.1s;
    animation-delay:-.1s
}
.preloader .lds-spinner div:nth-child(12){
    -webkit-transform:rotate(330deg);
    transform:rotate(330deg);
    -webkit-animation-delay:0s;
    animation-delay:0s
}
@-webkit-keyframes lds-spinner{
    0%{
        opacity:1
    }
    100%{
        opacity:0
    }
}
@keyframes lds-spinner{
    0%{
        opacity:1
    }
    100%{
        opacity:0
    }
}

/**************************************
 ** - 03 - Navbar Area CSS
 **************************************/

.crypto-responsive-nav {
	display: none;
}

.crypto-nav {
	background-color: transparent;
	padding-top: 15px;
	padding-bottom: 15px;
	padding-right: 0;
	padding-left: 0;
}

.crypto-nav .navbar {
	padding-right: 0;
	padding-top: 0;
	padding-left: 0;
	padding-bottom: 0;
}

.crypto-nav .navbar ul {
	padding-left: 0;
	list-style-type: none;
	margin-bottom: 0;
}

.crypto-nav .navbar .navbar-nav {
	margin: auto;
	margin-right: 50px;
}

.crypto-nav .navbar .navbar-nav .nav-item {
	position: relative;
	padding-top: 15px;
	padding-bottom: 15px;
	padding-left: 0;
	padding-right: 0;
}

.crypto-nav.index-navber .navbar .navbar-nav .nav-item a {
	color: #555;
}
.crypto-nav .navbar .navbar-nav .nav-item a {
	font-size: 15px;
	font-weight: 500;
	color: #fff;
	text-transform: capitalize;
	padding-left: 0;
	padding-right: 0;
	padding-top: 0;
	padding-bottom: 0;
	margin-left: 15px;
	margin-right: 15px;
	letter-spacing: 0.5px;
}
/*
.crypto-nav .navbar .navbar-nav .nav-item a:hover, .crypto-nav .navbar .navbar-nav .nav-item a:focus, .crypto-nav .navbar .navbar-nav .nav-item a.active {
	color: #ff9b08;
}
*/
.crypto-nav .navbar .navbar-nav .nav-item a i {
	font-size: 10px;
	position: relative;
	top: -1px;
	margin-left: 1px;
}

.crypto-nav .navbar .navbar-nav .nav-item:last-child a {
	margin-right: 0;
}

.crypto-nav .navbar .navbar-nav .nav-item:first-child a {
	margin-left: 0;
}
/*
.crypto-nav .navbar .navbar-nav .nav-item:hover a, .crypto-nav .navbar .navbar-nav .nav-item:focus a, .crypto-nav .navbar .navbar-nav .nav-item.active a {
	color: #ff9b08;
}
*/
.crypto-nav .navbar .navbar-nav .nav-item .dropdown-menu {
	-webkit-box-shadow: 0px 0px 15px 0px rgba(0, 0, 0, 0.1);
	box-shadow: 0px 0px 15px 0px rgba(0, 0, 0, 0.1);
	background: #ffffff;
	position: absolute;
	border: none;
	top: 80px;
	left: 0;
	width: 230px;
	z-index: 99;
	display: block;
	opacity: 0;
	visibility: hidden;
	-webkit-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;
	padding: 0px;
	border-radius: 5px;
	overflow: hidden;
}

.crypto-nav .navbar .navbar-nav .nav-item .dropdown-menu li {
	padding: 0;
	border-bottom: 1px solid #f1f1f1;
}
.crypto-nav .navbar .navbar-nav .nav-item .dropdown-menu li:last-child {
	border-bottom: 0px solid transparent;
}

.crypto-nav .navbar .navbar-nav .nav-item .dropdown-menu li a {
	text-transform: capitalize;
	padding: 10px 15px;
	margin: 0;
	position: relative;
	color: #505060;
	font-size: 14px;
	font-weight: 500;
	border-left: 3px solid transparent;
}

.crypto-nav .navbar .navbar-nav .nav-item .dropdown-menu li a:hover, .crypto-nav .navbar .navbar-nav .nav-item .dropdown-menu li a:focus, .crypto-nav .navbar .navbar-nav .nav-item .dropdown-menu li a.active {
	color: #505060;
	background: #f8f8f8;
	padding-left: 20px;
	border-left: 3px solid #ffc107;
}

.crypto-nav .navbar .navbar-nav .nav-item .dropdown-menu li .dropdown-menu {
	left: -245px;
	top: 0;
	opacity: 0;
	visibility: hidden;
}

.crypto-nav .navbar .navbar-nav .nav-item .dropdown-menu li .dropdown-menu li a {
	color: #696997;
}

.crypto-nav .navbar .navbar-nav .nav-item .dropdown-menu li .dropdown-menu li a:hover, .crypto-nav .navbar .navbar-nav .nav-item .dropdown-menu li .dropdown-menu li a:focus, .crypto-nav .navbar .navbar-nav .nav-item .dropdown-menu li .dropdown-menu li a.active {
	color: #ff9b08;
}

.crypto-nav .navbar .navbar-nav .nav-item .dropdown-menu li .dropdown-menu li .dropdown-menu {
	left: -245px;
	top: 0;
	opacity: 0;
	visibility: hidden;
}

.crypto-nav .navbar .navbar-nav .nav-item .dropdown-menu li .dropdown-menu li .dropdown-menu li a {
	color: #696997;
	text-transform: capitalize;
}

.crypto-nav .navbar .navbar-nav .nav-item .dropdown-menu li .dropdown-menu li .dropdown-menu li a:hover, .crypto-nav .navbar .navbar-nav .nav-item .dropdown-menu li .dropdown-menu li .dropdown-menu li a:focus, .crypto-nav .navbar .navbar-nav .nav-item .dropdown-menu li .dropdown-menu li .dropdown-menu li a.active {
	color: #ff9b08;
}

.crypto-nav .navbar .navbar-nav .nav-item .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu {
	left: -245px;
	top: 0;
	opacity: 0;
	visibility: hidden;
}

.crypto-nav .navbar .navbar-nav .nav-item .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li a {
	color: #696997;
	text-transform: capitalize;
}

.crypto-nav .navbar .navbar-nav .nav-item .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li a:hover, .crypto-nav .navbar .navbar-nav .nav-item .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li a:focus, .crypto-nav .navbar .navbar-nav .nav-item .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li a.active {
	color: #ff9b08;
}

.crypto-nav .navbar .navbar-nav .nav-item .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu {
	left: 195px;
	top: 0;
	opacity: 0;
	visibility: hidden;
}

.crypto-nav .navbar .navbar-nav .nav-item .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li a {
	color: #696997;
	text-transform: capitalize;
}

.crypto-nav .navbar .navbar-nav .nav-item .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li a:hover, .crypto-nav .navbar .navbar-nav .nav-item .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li a:focus, .crypto-nav .navbar .navbar-nav .nav-item .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li a.active {
	color: #ff9b08;
}

.crypto-nav .navbar .navbar-nav .nav-item .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu {
	left: 195px;
	top: 0;
	opacity: 0;
	visibility: hidden;
}

.crypto-nav .navbar .navbar-nav .nav-item .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li a {
	color: #696997;
	text-transform: capitalize;
}

.crypto-nav .navbar .navbar-nav .nav-item .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li a:hover, .crypto-nav .navbar .navbar-nav .nav-item .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li a:focus, .crypto-nav .navbar .navbar-nav .nav-item .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li a.active {
	color: #ff9b08;
}

.crypto-nav .navbar .navbar-nav .nav-item .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu {
	left: 195px;
	top: 0;
	opacity: 0;
	visibility: hidden;
}

.crypto-nav .navbar .navbar-nav .nav-item .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li a {
	color: #696997;
	text-transform: capitalize;
}

.crypto-nav .navbar .navbar-nav .nav-item .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li a:hover, .crypto-nav .navbar .navbar-nav .nav-item .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li a:focus, .crypto-nav .navbar .navbar-nav .nav-item .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li a.active {
	color: #ff9b08;
}

.crypto-nav .navbar .navbar-nav .nav-item .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li.active a {
	color: #ff9b08;
}

.crypto-nav .navbar .navbar-nav .nav-item .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li:hover .dropdown-menu {
	opacity: 1;
	visibility: visible;
	top: -15px;
	-webkit-transition: 0.4s;
	transition: 0.4s;
}

.crypto-nav .navbar .navbar-nav .nav-item .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li.active a {
	color: #ff9b08;
}

.crypto-nav .navbar .navbar-nav .nav-item .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li:hover .dropdown-menu {
	opacity: 1;
	visibility: visible;
	top: -15px;
	-webkit-transition: 0.4s;
	transition: 0.4s;
}

.crypto-nav .navbar .navbar-nav .nav-item .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li.active a {
	color: #ff9b08;
}

.crypto-nav .navbar .navbar-nav .nav-item .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li:hover .dropdown-menu {
	opacity: 1;
	visibility: visible;
	top: -15px;
	-webkit-transition: 0.4s;
	transition: 0.4s;
}

.crypto-nav .navbar .navbar-nav .nav-item .dropdown-menu li .dropdown-menu li .dropdown-menu li.active a {
	color: #ff9b08;
}

.crypto-nav .navbar .navbar-nav .nav-item .dropdown-menu li .dropdown-menu li .dropdown-menu li:hover .dropdown-menu {
	opacity: 1;
	visibility: visible;
	top: -15px;
	-webkit-transition: 0.4s;
	transition: 0.4s;
}

.crypto-nav .navbar .navbar-nav .nav-item .dropdown-menu li .dropdown-menu li.active a {
	color: #ff9b08;
}

.crypto-nav .navbar .navbar-nav .nav-item .dropdown-menu li .dropdown-menu li:hover .dropdown-menu {
	opacity: 1;
	visibility: visible;
	top: -15px;
	-webkit-transition: 0.4s;
	transition: 0.4s;
}

.crypto-nav .navbar .navbar-nav .nav-item .dropdown-menu li.active a {
	color: #ff9b08;
}

.crypto-nav .navbar .navbar-nav .nav-item .dropdown-menu li:hover .dropdown-menu {
	opacity: 1;
	visibility: visible;
	top: -15px;
	-webkit-transition: 0.4s;
	transition: 0.4s;
}

.crypto-nav .navbar .navbar-nav .nav-item:hover .dropdown-menu {
	opacity: 1;
	visibility: visible;
	top: 100%;
	-webkit-transition: 0.4s;
	transition: 0.4s;
}

.crypto-nav .navbar .other-option {
	margin-left: 0;
	margin-top: 5px;
}
.crypto-nav .navbar .other-option .default-btn {
    padding: 8px 25px;
    font-size: 14px;
    font-weight: 500;
	box-shadow: 0 2px 15px rgb(123, 104, 238, 0.15);
}

.crypto-nav .navbar .other-option .default-btn.nav-btn-1 {
	margin-left: 15px;
}

.crypto-nav .black-logo {
	display: none;
}

.navbar-area {
	background-color: transparent;
	-webkit-transition: 0.4s;
	transition: 0.4s;
	position: absolute;
	z-index: 999;
	left: 0;
	top: 0;
	width: 100%;
	height: auto;
}

.navbar-area.is-sticky {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	z-index: 999;
	-webkit-box-shadow: 0 2px 28px 0 rgba(0, 0, 0, 0.06);
	box-shadow: 0 2px 28px 0 rgba(0, 0, 0, 0.06);
	background: #ffffff !important;
	-webkit-animation: 500ms ease-in-out 0s normal fadeInDown;
	animation: 500ms ease-in-out 0s normal fadeInDown;
	-webkit-transition: 0.4s;
	transition: 0.4s;
}

.navbar-area.is-sticky .navbar-nav .nav-item a {
	color: #505050;
}

.navbar-area.is-sticky .navbar-nav .nav-item a:hover, .navbar-area.is-sticky .navbar-nav .nav-item a:focus, .navbar-area.is-sticky .navbar-nav .nav-item a.active {
	color: #ff9b08;
}

.navbar-area.is-sticky .crypto-nav .navbar-brand .white-logo {
	display: none;
}

.navbar-area.is-sticky .crypto-nav .navbar-brand .black-logo {
	display: block;
}

@media only screen and (max-width: 991px) {
	.navbar-area {
		padding-top: 20px;
		padding-bottom: 20px;
	}

	.navbar-area.is-sticky {
		border-bottom: none;
		-webkit-box-shadow: 0 7px 13px 0 rgba(0, 0, 0, 0.1);
		box-shadow: 0 7px 13px 0 rgba(0, 0, 0, 0.1);
		padding-top: 20px;
		padding-bottom: 20px;
	}

	.navbar-area.is-sticky .logo .white-logo {
		display: none;
	}

	.navbar-area.is-sticky .logo .black-logo {
		display: block;
	}

	.crypto-responsive-nav {
		display: block;
	}

	.crypto-responsive-nav .crypto-responsive-menu {
		position: relative;
	}

	.crypto-responsive-nav .crypto-responsive-menu.mean-container .mean-nav ul {
		font-size: 15px;
	}

	.crypto-responsive-nav .crypto-responsive-menu.mean-container .mean-nav ul li a {
		font-size: 15px;
	}

	.crypto-responsive-nav .crypto-responsive-menu.mean-container .mean-nav ul li a.active {
		color: #ff9b08;
	}

	.crypto-responsive-nav .crypto-responsive-menu.mean-container .mean-nav ul li li a {
		font-size: 15px;
	}

	.crypto-responsive-nav .crypto-responsive-menu.mean-container .navbar-nav {
		overflow-y: scroll;
		height: 300px;
		-webkit-box-shadow: 0 7px 13px 0 rgba(0, 0, 0, 0.1);
		box-shadow: 0 7px 13px 0 rgba(0, 0, 0, 0.1);
	}

	.crypto-responsive-nav .crypto-responsive-menu.mean-container .others-options {
		display: none;
	}

	.crypto-responsive-nav .mean-container a.meanmenu-reveal {
		color: #505060;
	}

	.crypto-responsive-nav .mean-container a.meanmenu-reveal span {
		background: #505060;
	}

	.crypto-responsive-nav .logo {
		position: relative;
		width: 50%;
		z-index: 999;
	}

	.crypto-responsive-nav .logo .white-logo {
		display: block;
	}

	.crypto-responsive-nav .logo .black-logo {
		display: none;
	}

	.crypto-nav {
		display: none;
	}
}


.dropdown.language-option {
    position: relative;
    padding-top: 15px;
    padding-bottom: 15px;
    padding-left: 0;
    padding-right: 0;
}
.dropdown.language-option button {
    background: transparent;
    border: 0;
    color: #fff;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}
.navbar-area.is-sticky .dropdown.language-option button {
    color: #333;
}
.language-option .dropdown-menu.language-dropdown-menu {
    position: absolute;
    border: none;
    top: 80px;
    left: 0;
    width: auto;
    z-index: 99;
    display: block;
    opacity: 0;
    visibility: hidden;
    background: #ffffff;
    padding: 0px;
    border-radius: 5px;
    overflow: hidden;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
	-webkit-box-shadow: 0px 0px 15px 0px rgb(0, 0, 0, 0.1);
    box-shadow: 0px 0px 15px 0px rgb(0, 0, 0, 0.1);
}
.crypto-nav .language-option:hover .language-dropdown-menu {
    opacity: 1;
    visibility: visible;
    top: 100%;
    -webkit-transition: 0.4s;
    transition: 0.4s;
}

.dropdown-menu.language-dropdown-menu a.dropdown-item {
    display: block;
    width: 100%;
    padding: 8px 15px;
    clear: both;
    font-weight: 400;
    color: #212529;
	font-size: 15px;
    text-align: inherit;
    text-decoration: none;
    white-space: nowrap;
    background-color: transparent;
    border: 0;
    border-left: 3px solid transparent;
    -webkit-transition: 0.4s;
    transition: 0.4s;
}
.dropdown-menu.language-dropdown-menu a.dropdown-item:hover {
    color: #505060;
    background: #f8f8f8;
    padding-left: 20px;
    border-left: 3px solid #ffc107;
    -webkit-transition: 0.4s;
    transition: 0.4s;
}


/**************************************
 ** - 04 - Home Area CSS
 **************************************/
.home-area {
	position: relative;
	z-index: 1;
	height: 650px;
	overflow: hidden;
	background: -webkit-gradient(linear,left top,right top,from(#32899d),to(#542dff));
	background: -webkit-linear-gradient(left,#32899d,#542dff);
	background: -moz-linear-gradient(left,#32899d,#542dff);
	background: -o-linear-gradient(left,#32899d,#542dff);
	background: linear-gradient(to right,#32899d,#542dff);
}
.home-area::after {
	position: absolute;
	content: "";
	top: 0;
	left: 0;
	padding: 0;
	height: 100%;
	width: 100%;
	z-index: -1;
    opacity: 0.25;
    background: url(../img/svg-layer.svg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
}
.grey-cr {
    height: 500px;
    width: 500px;
    border-radius: 500px;
    position: absolute;
    bottom: -20%;
    left: -10%;
	z-index: -1;
    background: rgb(215, 215, 215, 0.17);
    height: 100%;
    width: 100%;
}
.main-banner-content {
	padding-top: 70px;
}
.main-banner-content h3 {
    color: #fff;
    font-size: 15px;
    background: #03a9f4;
    display: inline-block;
    padding: 8px 25px;
    border-radius: 50px;
    margin-bottom: 15px;
}
.main-banner-content h1 {
	font-size: 35px;
	color: #fff;
	margin: 0 0 20px 0;
	font-weight: 600;
}

.main-banner-content p {
	color: #fff;
	font-size: 16px;
	margin: 0 0 0 0;
}

.main-banner-content .banner-btn {
	margin-top: 25px;
}

.home-area .banner-image {
    text-align: center;
    padding-top: 70px;
}

.home-area .creative-shape {
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: auto;
    z-index: -1;
}

/**************************************
 ** - 05 - Partner Logo Section CSS
 *************************************/
.partner-area {
	padding: 50px 0px;
}

.partner-slide-item {
	padding: 0px 0px;
	margin: 0px 15px;
}

.partner-area .partner-carousel img {
	max-width: 100%;
	width: inherit!important;
	margin: 0 auto;
    -webkit-transition: 0.3s;
    transition: 0.3s;
}

.partner-area .partner-carousel img:hover {
	opacity: .7;
	cursor: pointer;
}

/**************************************
 ** - 06 - About Section CSS
 *************************************/

.about-area {
	position: relative;
	z-index: 1;
}
.about-content {
    margin-right: 60px;
}
.about-content h6 {
	color: #ff9b08;
	font-size: 16px;
	font-weight: 600;
	margin-bottom: 10px;
	text-transform: uppercase;
	letter-spacing: 0.5px;
}
.about-content h2 {
	font-size: 33px;
	font-weight: 600;
	margin-bottom: 20px;
}

.about-content-text p {
	margin-bottom: 15px;
}

.list-points li {
    position: relative;
	color: #5f5f5f;
    padding: 6px 0 6px 20px;
}
.list-points li:before {
    content: '';
    position: absolute;
    left: 0;
    top: 16px;
    height: 5px;
    width: 5px;
    border-radius: 50%;
	background: #ff9b08;
}

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


/**************************************
 ** - 07 - Features Section CSS
 *************************************/
.feature-single-item {
    text-align: center;
    padding: 70px 30px;
    border-radius: 5px;
    background: #E91E63;
    -webkit-transition: all .4s;
    transition: all .4s;
}
.feature-single-item:hover {
	transform: translate3d(0, -10px, 0);
	-webkit-transform: translate3d(0, -10px, 0);
	-webkit-box-shadow: 0 10px 40px rgba(0,0,0,.1);
	box-shadow: 0 10px 40px rgba(0,0,0,.1);
}
.feature-icon span {
    color: #fff;
    font-size: 40px;
}

.feature-single-item h6 {
    color: #fff;
	font-size: 20px;
    font-weight: 600;
    margin-top: 20px;
	margin-bottom: 15px;
}

.feature-single-item p {
	color: #ffffff;
    font-size: 15px;
}
.bg-color-1 {
    background: #E91E63;
}
.bg-color-2 {
    background: #9C27B0;
}
.bg-color-3 {
    background: #CDDC39;
}
.bg-color-4 {
    background: #FF9800;
}

/**************************************
 ** - 08 - Work Process Section CSS
 **************************************/
.works-process-area {
}
.single-process-box {
    position: relative;
	text-align: center;
	padding: 0 15px;
}
.single-process-box .box-loader {
    position: absolute;
    top: 30%;
    right: -15%;
    left: inherit;
}

.box-loader span {
    display: inline-block;
    width: 10px;
    height: 10px;
    border-radius: 100%;
    background: #2575fc;
    margin: 0 5px;
    opacity: 0;
}
.step-num-box {
    position: relative;
    display: inline-block;
    margin-bottom: 20px;
}
.step-icon {
    position: relative;
    width: 140px;
    height: 140px;
    line-height: 140px;
    border-radius: 50%;
    text-align: center;
    background: #ffffff;
    -webkit-box-shadow: -1px 3px 20px 0px rgb(82, 90, 101, 0.1);
    -moz-box-shadow: -1px 3px 20px 0px rgba(82, 90, 101, 0.1);
    box-shadow: -1px 3px 20px 0px rgb(82, 90, 101, 0.1);
}
.step-icon img {
    width: 70px;
}
.step-num {
    background: #fff;
    border-radius: 50%;
    box-shadow: 0 5px 15px 0 rgba(117, 178, 240, 0.2);
    color: #6f64e7;
    display: inline-block;
    font-size: 18px;
    font-weight: 600;
    height: 50px;
    right: 0;
    line-height: 55px;
    position: absolute;
    text-align: center;
    top: 0;
    width: 50px;
}
.step-dec h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 12px;
}
/* ------------------------
    box-loader
------------------------*/
.box-loader {border-radius: 100%; margin: 0 auto; position: absolute; top: 15px; left: 15px;}
.box-loader span{display: inline-block; width: 10px; height: 10px; border-radius: 100%; background: #2575fc; margin: 0 5px; opacity: 0;}
.box-loader span:nth-child(1){-webkit-animation: opacitychange 1s ease-in-out infinite;animation: opacitychange 1s ease-in-out infinite;}
.box-loader span:nth-child(2){-webkit-animation: opacitychange 1s ease-in-out 0.33s infinite;animation: opacitychange 1s ease-in-out 0.33s infinite;}
.box-loader span:nth-child(3){-webkit-animation: opacitychange 1s ease-in-out 0.66s infinite;animation: opacitychange 1s ease-in-out 0.66s infinite;}

/*--opacitychange--*/

@-webkit-keyframes opacitychange{
  0%, 100%{
    opacity: 0;
  }

  60%{
    opacity: 1;
  }
}

@keyframes opacitychange{
  0%, 100%{
    opacity: 0;
  }

  60%{
    opacity: 1;
  }
}


/**************************************
 ** - 09 - Services Section CSS
 **************************************/
.services-area .section-title {
	margin-bottom: 45px;
}

.single-services-item {
    display: flex;
    -webkit-box-pack: start;
    justify-content: flex-start;
    -webkit-box-align: center;
    align-items: center;
    margin-top: 35px;
}

.single-services-item .services-images {
	width: 135px;
    height: 140px;
    border-radius: 8px;
    display: flex;
    -webkit-box-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    align-items: center;
    margin-right: 15px;
    background: #fff;
    -webkit-box-shadow: -1px 3px 20px 0px rgb(82, 90, 101, 0.1);
    -moz-box-shadow: -1px 3px 20px 0px rgba(82, 90, 101, 0.1);
    box-shadow: -1px 3px 20px 0px rgb(82, 90, 101, 0.1);
}

.services-images img {
    width: 65px;
}

.single-services-item .services-des {
    width: calc(100% - 135px);
    float: left;
    padding-left: 20px;
}
.single-services-item h3 {
	font-size: 20px;
    font-weight: 600;
	margin-bottom: 0;
    -webkit-transition: all 400ms ease-out;
    transition: all 400ms ease-out;
    will-change: transform;
}

.single-services-item h3 a {
	display: inline-block;
}

.single-services-item p {
  font-size: 15px;
  margin-top: 5px;
  margin-bottom: 0;
    -webkit-transition: all 400ms ease-out;
    transition: all 400ms ease-out;
    will-change: transform;
}

/**************************************
 ** - 10 - Counter Section CSS
 *************************************/
.counter-area {
	position: relative;
	z-index: 1;
	color: #fff;
	text-align: center;
	background: -webkit-gradient(linear,left top,right top,from(#983ff9),to(#542dff));
    background: -webkit-linear-gradient(left,#983ff9,#542dff);
    background: -moz-linear-gradient(left,#983ff9,#542dff);
    background: -o-linear-gradient(left,#983ff9,#542dff);
    background: linear-gradient(to right,#983ff9,#542dff);
}
.counter-area::after {
	content: "";
	position: absolute;
	z-index: -1;
	top: 0;
	left: 0;
	padding: 0;
	height: 100%;
	width: 100%;
    opacity: 0.25;
    background: url(../img/svg-layer.svg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
}
.counter-area .section-title h5 {
	color: #ffffff;
}
.counter-area .section-title h2 {
	color: #fff;
}
.counter-contents h2 {
	color: #fff;
	font-size: 45px;
	font-weight: 600;
	margin-bottom: 5px;
	word-spacing: -10px;
}
.counter-contents h3 {
	color: #fff;
	font-size: 18px;
	font-weight: 600;
}

/**************************************
 ** - 11 - Roadmap Section CSS
 *************************************/
.roadmap-wrapper {
	overflow: hidden;
}

.h-border {
	width: 100%;
	height: 4px;
	background: #6332f0;
	margin-top: 181px;
}
.roadmap-slider {
    cursor: e-resize;
}
.roadmap-single-box {
	text-align: center;
	position: relative;
	margin-top: -12px;
}

.small-round {
	background: #6332f0;
	border: 3px solid #fff;
	-webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -o-border-radius: 50%;
    border-radius: 50%;
	height: 20px;
	width: 20px;
	position: relative;
	left: 50%;
	margin-left: -10px;
	z-index: 1;
}

.date-title {
	position: absolute;
	bottom: 100%;
	width: 100%;
	color: #333;
	font-size: 15px;
	padding: 12px 0;
	font-weight: 600;
}

.roadmap-slider .main-box .roadmap-chart {
	overflow: hidden;
}

.v-row {
	background: #6332f0;
	height: 50px;
	width: 4px;
	position: relative;
	left: 50%;
	margin-left: -2px;
	overflow: hidden;
}
.roadmap-slider .owl-item .main-box .roadmap-detail-box p {
	margin-bottom: 0px;
}

.roadmap-slider .owl-item .main-box .roadmap-detail-box h3 {
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
	font-size: 18px;
    font-weight: 600;
    margin-bottom: 10px;
}

.roadmap-slider .owl-item:nth-child(2n+0) .main-box .roadmap-detail-box {
	position: absolute;
	bottom: 100%;
	margin-top: 0;
}

.roadmap-slider .owl-item:nth-child(2n+0) .main-box .roadmap-detail-box p {
	margin-bottom: 10px;
}

.roadmap-slider .owl-item:nth-child(2n+0) .main-box .roadmap-single-box {
	padding-top: 50px;
	margin-top: -62px;
}

.roadmap-slider .owl-item:nth-child(2n+0) .main-box .date-title {
	top: 100%;
}

.roadmap-slider .owl-item:nth-child(2n+0) .main-box .roadmap-chart {
	transform: rotate(180deg);
	margin-top: -50px;
	display: inline-block;
}

.roadmap-slider .owl-item:nth-child(2n+0) .main-box .v-row {
	margin-left: -1px;
}
.roadmap-slider .owl-item {
	float: left;
}
.roadmap-slider .item {
    text-align: center;
}
.roadmap-slider .owl-nav {
    display: none;
}
.roadmap-slider .item {
	padding: 0 15px;
}

/**************************************
 ** - 12 - WhitePapers Section CSS
 **************************************/
.document-single-item {
	position: relative;
    z-index: 1;
    display: block;
    padding: 70px 30px;
    text-align: center;
    border-radius: 5px;
    background: -webkit-gradient(linear,left top,right top,from(#983ff9),to(#542dff));
    background: -webkit-linear-gradient(left,#983ff9,#542dff);
    background: -moz-linear-gradient(left,#983ff9,#542dff);
    background: -o-linear-gradient(left,#983ff9,#542dff);
    background: linear-gradient(to right,#983ff9,#542dff);
	overflow: hidden;
    -webkit-transition: all .4s;
    transition: all .4s;
}
.document-single-item:hover {
	transform: translate3d(0, -10px, 0);
	-webkit-transform: translate3d(0, -10px, 0);
	-webkit-box-shadow: 0 10px 40px rgba(0,0,0,.1);
	box-shadow: 0 10px 40px rgba(0,0,0,.1);
}

.document-single-item:after {
    position: absolute;
    content: "";
    top: 0;
    left: 0;
    padding: 0;
    height: 100%;
    width: 100%;
    z-index: -1;
    opacity: 0.25;
    background: url(../img/svg-layer.svg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
}

.document-single-item1 {
	position: relative;
	z-index: 1;
	display: block;
	padding: 70px 30px;
	text-align: center;
	border-radius: 5px;
	background: -webkit-gradient(linear,left top,right top,from(#FFEE00),to(#FDB60C));
	background: -webkit-linear-gradient(left,#FFEE00,#FDB60C);
	background: -moz-linear-gradient(left,#FFEE00,#FDB60C);
	background: -o-linear-gradient(left,#FFEE00,#FDB60C);
	background: linear-gradient(to right,#FFEE00,#FDB60C);
	overflow: hidden;
	-webkit-transition: all .4s;
	transition: all .4s;
}
.document-single-item1:hover {
	transform: translate3d(0, -10px, 0);
	-webkit-transform: translate3d(0, -10px, 0);
	-webkit-box-shadow: 0 10px 40px rgba(0,0,0,.1);
	box-shadow: 0 10px 40px rgba(0,0,0,.1);
}

.document-single-item1:after {
	position: absolute;
	content: "";
	top: 0;
	left: 0;
	padding: 0;
	height: 100%;
	width: 100%;
	z-index: -1;
	opacity: 0.25;
	background: url(../img/svg-layer.svg);
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center center;
}

.document-single-item2 {
	position: relative;
	z-index: 1;
	display: block;
	padding: 70px 30px;
	text-align: center;
	border-radius: 5px;
	background: -webkit-gradient(linear,left top,right top,from(#8DC73D),to(#057F35));
	background: -webkit-linear-gradient(left,#8DC73D,#057F35);
	background: -moz-linear-gradient(left,#8DC73D,#057F35);
	background: -o-linear-gradient(left,#8DC73D,#057F35);
	background: linear-gradient(to right,#8DC73D,#057F35);
	overflow: hidden;
	-webkit-transition: all .4s;
	transition: all .4s;
}
.document-single-item2:hover {
	transform: translate3d(0, -10px, 0);
	-webkit-transform: translate3d(0, -10px, 0);
	-webkit-box-shadow: 0 10px 40px rgba(0,0,0,.1);
	box-shadow: 0 10px 40px rgba(0,0,0,.1);
}

.document-single-item2:after {
	position: absolute;
	content: "";
	top: 0;
	left: 0;
	padding: 0;
	height: 100%;
	width: 100%;
	z-index: -1;
	opacity: 0.25;
	background: url(../img/svg-layer.svg);
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center center;
}


.document-icon img {
    width: 51px;
    height: 55px;
    display: block;
    margin: 0 auto 30px;
}

.document-title h3 {
    color: #fff;
    font-size: 20px;
    font-weight: 600;
}

/**************************************
 ** - 13 - Token Section CSS
 *************************************/
.token-content h2 {
    font-size: 33px;
    font-weight: 600;
    margin-bottom: 15px;
}

.token-content p {
    margin-bottom: 15px;
}

.token-content .token-list li {
    line-height: 45px;
	font-weight: 500;
}
.token-content .token-list li span {
    width: 20px;
    height: 20px;
    text-align: center;
    display: inline-block;
    border-radius: 10px;
    margin-right: 10px;
    margin-bottom: -4px;
}
.token-content .token-list li .color-1 {
    background: #0fa5fd;
}
.token-content .token-list li .color-2 {
    background: #865bf3;
}
.token-content .token-list li .color-3 {
    background: #e65356;
}
.token-content .token-list li .color-4 {
    background: #e6c253;
}
.token-content .token-list li .color-5 {
    background: #00f9a7;
}

.token-count-box {
    padding: 45px 35px;
    background-color: #fff;
    border-radius: 5px;
	text-align: center;
    box-shadow: 0 3px 20px 2px rgb(63, 81, 181, 0.08);
}
.token-count-box h3 {
    color: #333;
    font-size: 30px;
    font-weight: 600;
    margin-bottom: 20px;
}
.token-area .timer {
	overflow: hidden;
	margin-left: -8px;
	margin-right: -8px;
	text-align: center;
}

.token-area .timer .timer-section {
	width: calc(100% / 4);
	float: left;
	padding: 0px 8px;
}

.token-area .timer .timer-number {
	position: relative;
	z-index: 1;
	color: #fff;
	font-size: 40px;
	font-weight: 600;
	width: 100%;
	height: 80px;
	display: flex;
    align-items: center;
    justify-content: center;
	border-radius: 5px;
	background-image: -moz-linear-gradient(90deg, #372e95 0%, #9629e6 100%);
	background-image: -webkit-linear-gradient(90deg, #372e95 0%, #9629e6 100%);
	background-image: -ms-linear-gradient(90deg, #372e95 0%, #9629e6 100%);
}

.token-area .timer .timer-number:before {
	content: "";
	width: 100%;
	height: 1px;
	background: #b5b5b5;
	position: absolute;
	left: 0;
	top: 50%;
	z-index: -1;
}

.token-area .timer .timer-label {
	font-size: 18px;
	font-weight: 600;
	text-transform: capitalize;
	padding-top: 10px;
}

.token-count-box .default-btn {
    margin-top: 35px;
}

.token-image {
	text-align: center;
	margin-top: 45px;
}

/**************************************
 ** - 14 - Team Section CSS
 *************************************/
.team-area {
}

.team-area .section-title {
	margin-bottom: 45px;
}
.single-team-box {
	margin-top: 30px;
    padding: 5px;
    border-radius: 5px;
    overflow: hidden;
    -webkit-transition: 0.5s;
    transition: 0.5s;
    background: transparent;

}
.team-image {
    position: relative;
    z-index: 1;
    border-radius: 50%;
    overflow: hidden;
    width: 200px;
    height: 200px;
    margin: 0 auto;
	box-shadow: 0 0 0 6px rgb(0, 0, 0, 0.15);
}

.team-image::before {
    content: "";
    position: absolute;
    z-index: 2;
    top: 0;
    left: 0;
    padding: 0;
    height: 100%;
    width: 100%;
    opacity: 0;
    visibility: hidden;
    background: #000;
	-webkit-transition: 0.5s;
	transition: 0.5s;
}
.single-team-box:hover .team-image::before {
    opacity: .5;
    visibility: visible;
}

.single-team-box .team-image img {
	width: 100%;
	height: auto;
	-webkit-transition: 0.5s;
	transition: 0.5s;
}

.single-team-box:hover .team-image img {
	-webkit-transform: scale(1.1);
    -ms-transform: scale(1.1);
    -o-transform: scale(1.1);
    transform: scale(1.1);
}

.team-social-icon {
	text-align: center;
}

.team-social-icon a {
    padding: 5px 10px;
    color: #444;
	font-size: 18px;
	display: inline-block;
    -webkit-transition: all .3s;
    -o-transition: all .3s;
    transition: all .3s;
}

.team-social-icon a i {
    color: #444;
	font-size: 18px;
    -webkit-transition: all .3s;
    -o-transition: all .3s;
    transition: all .3s;
}
.team-social-icon a:hover i {
    color: #6332f0;
}

.team-info {
	padding: 20px 15px 10px;
	text-align: center;
	-webkit-transition: 0.5s;
	transition: 0.5s;
}
.team-info h3 {
	font-size: 18px;
	font-weight: 600;
	margin-bottom: 0;
}
.team-info span {
	color: #ff9b08;
	font-size: 15px;
	font-weight: 500;
	display: block;
}

/**************************************
 ** - 15 - Faq Section CSS
 *************************************/
.faq-area {
}

.faq-accordion .accordion {
	list-style-type: none;
	padding: 0;
	margin: 0;
	padding-left: 0;
	margin-bottom: 0;
	position: relative;
}

.faq-accordion .accordion .accordion-item {
	display: block;
    border-radius: 3px;
	margin-bottom: 20px;
    border: none;
    overflow: hidden;
}

.faq-accordion .accordion .accordion-item:last-child {
	margin-bottom: 0;
}

.faq-accordion .accordion .accordion-item .accordion-title {
    padding: 20px;
    color: #333;
    position: relative;
    font-size: 18px;
    font-weight: 600;
    display: block;
    border: none;
    padding-right: 50px;
    padding-left: 0;
    background: transparent;
    border-bottom: 1px solid #cccccc;
}

.faq-accordion .accordion .accordion-item .accordion-title i {
    position: absolute;
    right: 20px;
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    color: #333;
    font-size: 14px;
    -webkit-transition: 0.5s;
    transition: 0.5s;
}

.faq-accordion .accordion .accordion-item .accordion-title.active i::before {
	content: "\f068";
}

.faq-accordion .accordion .accordion-item .accordion-content {
	display: none;
	font-size: 15px;
	background-color: transparent;
	margin-bottom: 0;
	padding: 20px 15px;
	padding-left: 0;
}

.faq-accordion .accordion .accordion-item .accordion-content.show {
	display: block;
}

/**************************************
 ** - 16 - App Download Section CSS
 *************************************/
.download-area {
}
.download-content h5 {
    color: #ff9b08;
    font-size: 16px;
    font-weight: 600;
    text-transform: uppercase;
    margin-bottom: 10px;
}
.download-content h2 {
    color: #333;
    font-size: 33px;
    font-weight: 600;
    margin-bottom: 20px;
}

.download-content .download-btn {
	margin-top: 25px;
}
.download-content .download-btn .app-link-btn-1 {
	display: inline-block;
	margin-right: 10px;
}

.download-content .download-btn a:hover {
	opacity: .8;
}
.download-image {
    text-align: center;
}

/**************************************
 ** - 17 - Blog Section CSS
 *************************************/
.blog-area {
}
.blog-area .section-title {
	text-align: center;
    margin-bottom: 45px;
}

.blog-area .single-blog {
	margin-top: 35px;
	overflow: hidden;
}

.blog-area .post-img {
	border-radius: 3px;
	position: relative;
	overflow: hidden;
}

.blog-area .single-blog img {
	border-radius: 3px;
	-webkit-transition: all .5s;
	transition: all .5s;
}

.blog-area .single-blog:hover img {
	-webkit-filter: none;
	filter: none;
	-webkit-transform: scale(1.05, 1.05);
	-ms-transform: scale(1.05, 1.05);
	transform: scale(1.05, 1.05);
}

.blog-area .single-blog .blog-content {
	padding-top: 25px;
	text-align: left;
}

.blog-content .blog-date {
	margin-bottom: 15px;
}

.blog-content .blog-date .blog-list li {
	display: inline-block;
}

.blog-content .blog-date .blog-list li h6 {
	font-size: 13px;
	color: #333;
	font-weight: 600;
	display: inline-block;
}

.blog-content .blog-date .blog-list li .blog-inline-sep {
	padding: 0 5px;
	font-size: 12px;
	color: #555;
}

.blog-content .blog-date .blog-list li a {
	font-size: 13px;
	color: #555;
	font-weight: 600;
	display: inline-block;
}

.blog-content .blog-date .blog-list li a:hover {
	color: #ff9b08;
}

.blog-area .single-blog .blog-content h3 a {
	color: #333;
	font-size: 18px;
	font-weight: 600;
	line-height: 1.5;
	margin-bottom: 10px;
	display: block;
}

.blog-area .single-blog .blog-content h3 a:hover {
	color: #ff9b08;
}

/**************************************
 ** - 18 - Contact Section CSS
 *************************************/

.contact-area .form input,
.contact-area .form textarea {
	color: #333;
	width: 100%;
	padding: 12px 20px;
	border: 0;
	height: 55px;
	background-color: #f2f2f2;
	font-weight: 500;
	border-radius: 10px;
}
.contact-area .form textarea {
	max-height: 320px;
	height: auto;
}
#contact-form .button {
	margin: 0;
}
.form-group {
	margin-bottom: 25px;
}
button,
input,
textarea {
	color: #505050;
}
button,
input,
textarea:focus {
	border: none;
	outline: none;
}
::-webkit-input-placeholder {
	/* Chrome/Opera/Safari */
	color: #333;
}
::-moz-placeholder {
	/* Firefox 19+ */
	color: #333;
}
:-ms-input-placeholder {
	/* IE 10+ */
	color: #333;
}
:-moz-placeholder {
	/* Firefox 18- */
	color: #333;
}

.contact-area .form-message.success {
	background: #03b103;
	color: #fff;
	padding: 10px 15px;
	border-radius: 3px;
}
.contact-area .form-message.error {
	background: #ff4d15;
	color: #fff;
	padding: 10px 15px;
	border-radius: 3px;
}

/**********************************************
 ** - 19 - Other Page Banner Title CSS
 **********************************************/
.page-title-area {
	position: relative;
	z-index: 1;
	background-image: url(../img/page-title-bg.html);
	background-position: center center;
	background-size: cover;
	background-repeat: no-repeat;
	height: 400px;
}

.page-title-area::before {
	content: "";
	position: absolute;
	z-index: -1;
	height: 100%;
	width: 100%;
	left: 0;
	top: 0;
	opacity: 0.5;
	background: -webkit-gradient(linear,left top,right top,from(#983ff9),to(#542dff));
    background: -webkit-linear-gradient(left,#983ff9,#542dff);
    background: -moz-linear-gradient(left,#983ff9,#542dff);
    background: -o-linear-gradient(left,#983ff9,#542dff);
    background: linear-gradient(to right,#983ff9,#542dff);
}

.page-title-content {
	text-align: center;
	margin-top: 45px;
}

.page-title-content h2 {
	margin-bottom: 0;
	color: #ffffff;
	font-size: 42px;
	font-weight: 600;
}

.page-title-content ul {
	padding-left: 0;
	list-style-type: none;
	margin-top: 12px;
	margin-bottom: 0;
}

.page-title-content ul li {
	color: #ffffff;
	display: inline-block;
	position: relative;
	font-weight: 400;
	font-size: 17px;
	margin-left: 10px;
	margin-right: 10px;
}

.page-title-content ul li a {
	display: inline-block;
	color: #ffffff;
	-webkit-transition: 0.4s;
	transition: 0.4s;
}

.page-title-content ul li a:hover {
	color: #ff9b08;
}

.page-title-content ul li::before {
	content: '';
	position: absolute;
	right: -15px;
	top: 11px;
	width: 6px;
	height: 6px;
	border-radius: 50%;
	background-color: #ff9b08;
}

.page-title-content ul li:last-child::before {
	display: none;
}

.item-bg1 {
	background-image: url(../img/page-title-bg-1.html);
}

.item-bg2 {
	background-image: url(../img/page-title-bg-2.html);
}

/**************************************
 ** - 20 - 404 Error Page Area CSS
 **************************************/
.error-area {
	height: 100vh;
}

.error-content {
	text-align: center;
	margin: 0 auto;
	max-width: 700px;
}

.error-content h3 {
	font-size: 35px;
	margin-top: 10px;
	margin-bottom: 18px;
}

.error-content p {
	max-width: 520px;
	margin: 0 auto 20px;
	line-height: 30px;
}

.error-content .default-btn-one {
	display: inline-block;
	padding: 12px 30px;
	background: #7b68ee;
	border: 2px solid #7b68ee;
	color: #ffffff;
	font-size: 16px;
	font-weight: 400;
	-webkit-transition: .6s;
	transition: .6s;
	margin-right: 0;
}

.error-content .default-btn-one:hover {
	text-decoration: none;
	background-color: #ffffff;
	color: #7b68ee;
}

/**************************************
 ** - 21 - Coming Soon Page CSS
 **************************************/
.coming-soon-area {
	position: relative;
	z-index: 1;
	height: 100vh;
	background-color: #ff9b08;
	background: -webkit-gradient(linear,left top,right top,from(#983ff9),to(#542dff));
    background: -webkit-linear-gradient(left,#983ff9,#542dff);
    background: -moz-linear-gradient(left,#983ff9,#542dff);
    background: -o-linear-gradient(left,#983ff9,#542dff);
    background: linear-gradient(to right,#983ff9,#542dff);
}

.coming-soon-area::before {
	position: absolute;
	content: '';
	z-index: -1;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	opacity: .25;
	background-image: url(../img/svg-layer.svg);
	background-position: center center;
	background-size: cover;
	background-repeat: no-repeat;
}

.coming-soon-area .social-list {
	padding: 0;
	margin: 0;
	list-style-type: none;
	position: absolute;
	left: 0;
	right: 0;
	margin: 0 auto;
	text-align: center;
	bottom: 30px;
}

.coming-soon-area .social-list li {
	display: inline-block;
}

.coming-soon-area .social-list li.list-heading {
	display: block;
	color: #ffffff;
	margin-bottom: 10px;
	font-size: 16px;
	font-weight: 500;
}

.coming-soon-area .social-list li a {
	width: 35px;
	height: 35px;
	line-height: 35px;
	background: #ff9b08;
	border: 2px solid #ff9b08;
	color: #ffffff;
	border-radius: 50%;
	margin: 0 2px;
	display: inline-block;
}

.coming-soon-area .social-list li a:hover {
	background-color: transparent;
	color: #ff9b08;
	-webkit-transition: .6s;
	transition: .6s;
	-webkit-transition: 0.5s;
}

.coming-soon-content {
	text-align: center;
	max-width: 820px;
	margin: -80px auto 0;
}

.coming-soon-content h1 {
	color: #ffffff;
	margin-bottom: 15px;
	font-size: 46px;
	font-weight: 600;
}

.coming-soon-content p {
	color: #ffffff;
	margin: 0 auto;
	max-width: 620px;
	line-height: 30px;
}

.coming-soon-content form {
	position: relative;
	margin: 35px auto 55px;
	max-width: 520px;
}

.coming-soon-content form .email-input {
	display: block;
	width: 100%;
	height: 56px;
	border: none;
	-webkit-box-shadow: inset 0 0 1px rgba(0, 0, 0, 0.1), 0px 0px 0px 5px rgba(255, 255, 255, 0.3);
	box-shadow: inset 0 0 1px rgba(0, 0, 0, 0.1), 0px 0px 0px 5px rgba(255, 255, 255, 0.3);
	border-radius: 40px;
	padding: 15px 25px;
	outline: 0 !important;
	background: #F1F2F3;
}

.coming-soon-content form .submit-btn {
	position: absolute;
	right: 3px;
	top: 3px;
	height: 50px;
	background: #ff9b08;
	color: #ffffff;
	border: none;
	border-radius: 40px;
	width: 130px;
	outline: 0 !important;
	cursor: pointer;
	text-transform: uppercase;
	font-size: 15px;
	font-weight: 600;
}

.coming-soon-content form .submit-btn:hover, .coming-soon-content form .submit-btn:focus {
	background-color: #ff9b08;
}

.coming-soon-content #timer div {
	background: #ffffff;
	display: inline-block;
	border-radius: 50%;
	width: 120px;
	height: 120px;
	color: #ff9b08;
	-webkit-box-shadow: 0px 0px 0px 5px rgba(255, 255, 255, 0.5);
	box-shadow: 0px 0px 0px 5px rgba(255, 255, 255, 0.5);
	margin: 0 10px;
	padding-top: 18px;
	font-size: 40px;
	font-weight: 600;
}

.coming-soon-content #timer div span {
	display: block;
	margin-top: -4px;
	color: #777777;
	font-size: 15px;
	font-weight: 600;
}

/**************************************
 ** - 22 - Blog Details Page CSS
 **************************************/
.blog-details-desc .article-content {
	margin-top: 30px;
}

.blog-details-desc .article-content .entry-meta {
	margin-bottom: -8px;
}

.blog-details-desc .article-content .entry-meta ul {
	padding-left: 0;
	margin-bottom: 0;
	list-style-type: none;
}

.blog-details-desc .article-content .entry-meta ul li {
	position: relative;
	display: inline-block;
	color: #505060;
	margin-right: 21px;
}

.blog-details-desc .article-content .entry-meta ul li span {
	display: inline-block;
	color: #505060;
	font-weight: 500;
}

.blog-details-desc .article-content .entry-meta ul li a {
	display: inline-block;
	color: #5f5f5f;
}

.blog-details-desc .article-content .entry-meta ul li a:hover {
	color: #ff9b08;
}

.blog-details-desc .article-content .entry-meta ul li i {
	color: #ff9b08;
	margin-right: 2px;
}

.blog-details-desc .article-content .entry-meta ul li::before {
	content: '';
	position: absolute;
	top: 12px;
	right: -15px;
	width: 6px;
	height: 1px;
	background: #ff9b08;
}

.blog-details-desc .article-content .entry-meta ul li:last-child {
	margin-right: 0;
}

.blog-details-desc .article-content .entry-meta ul li:last-child::before {
	display: none;
}

.blog-details-desc .article-content h3 {
	margin-bottom: 15px;
	margin-top: 25px;
	font-size: 24px;
}

.blog-details-desc .article-content .wp-block-gallery.columns-3 {
	padding-left: 0;
	list-style-type: none;
	display: -ms-flexbox;
	display: -webkit-box;
	display: flex;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	margin-right: -10px;
	margin-left: -10px;
	margin-bottom: 30px;
	margin-top: 30px;
}

.blog-details-desc .article-content .wp-block-gallery.columns-3 li {
	-ms-flex: 0 50%;
	-webkit-box-flex: 0;
	flex: 0 50%;
	max-width: 50%;
	padding-right: 10px;
	padding-left: 10px;
}

.blog-details-desc .article-content .wp-block-gallery.columns-3 li figure {
	margin-bottom: 0;
}

.blog-details-desc .article-footer {
	display: -ms-flexbox;
	display: -webkit-box;
	display: flex;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	margin-top: 30px;
}

.blog-details-desc .article-footer .article-tags {
	-ms-flex: 0 0 50%;
	-webkit-box-flex: 0;
	flex: 0 0 50%;
	max-width: 50%;
	color: #5f5f5f;
}

.blog-details-desc .article-footer .article-tags span {
	display: inline-block;
	color: #333;
	font-size: 15px;
	font-weight: 600;
	margin-right: 5px;
}

.blog-details-desc .article-footer .article-tags a:last-child {
    margin-right: 0px;
}
.blog-details-desc .article-footer .article-tags a {
    display: inline-block;
    color: #505060;
    font-weight: 400;
    font-size: 14px !important;
    padding: 6px 13px;
    border: 1px solid #ebebeb;
    background: #f8f8f8;
    margin-top: 8px;
    margin-right: 4px;
}

.blog-details-desc .article-footer .article-tags a:hover {
    color: #ffffff;
    background-color: #ff9b08;
    border-color: #ff9b08;
}

.blog-details-desc .article-footer .article-share {
	-ms-flex: 0 0 50%;
	-webkit-box-flex: 0;
	flex: 0 0 50%;
	max-width: 50%;
}

.blog-details-desc .article-footer .article-share .social {
	padding-left: 0;
	list-style-type: none;
	text-align: right;
	margin-bottom: 0;
}

.blog-details-desc .article-footer .article-share .social li {
	display: inline-block;
	margin-right: 5px;
}
.blog-details-desc .article-footer .article-share .social li:last-child {
	margin-right: 0;
}

.blog-details-desc .article-footer .article-share .social li span {
	display: inline-block;
	margin-right: 5px;
	color: #333;
	font-size: 15px;
	font-weight: 600;
}

.blog-details-desc .article-footer .article-share .social li a {
	display: block;
	color: #ff9b08;
	width: 30px;
	height: 30px;
	line-height: 30px;
	border-radius: 5px;
	background-color: #eeeef0;
	text-align: center;
	font-size: 14px;
}

.blog-details-desc .article-footer .article-share .social li a i {
	font-size: 14px;
	line-height: 30px;
}

.blog-details-desc .article-footer .article-share .social li a:hover {
	color: #ffffff;
	background-color: #ff9b08;
}

.blog-details-desc .post-navigation {
	margin-top: 30px;
}

blockquote, .blockquote {
	overflow: hidden;
	background-color: #fafafa;
	padding: 50px !important;
	position: relative;
	text-align: center;
	z-index: 1;
	margin-bottom: 20px;
	margin-top: 20px;
}

blockquote p, .blockquote p {
	color: #505060;
	line-height: 1.6;
	margin-bottom: 0;
	font-style: italic;
	font-weight: 500;
	font-size: 24px !important;
}

blockquote cite, .blockquote cite {
	display: none;
}

blockquote::before, .blockquote::before {
	color: #efefef;
	content: "\f10e";
	position: absolute;
	left: 50px;
	top: -50px;
	z-index: -1;
	font-family: "Font Awesome 5 Free";
	font-size: 140px;
	font-weight: 900;
}

blockquote::after, .blockquote::after {
	content: '';
	position: absolute;
	left: 0;
	top: 0;
	bottom: 0;
	width: 3px;
	background-color: #ff9b08;
	margin-top: 20px;
	margin-bottom: 20px;
}

.post-navigation {
	border-top: 1px solid #eeeeee;
	border-bottom: 1px solid #eeeeee;
	padding-top: 20px;
	padding-bottom: 20px;
}

.post-navigation .navigation-links {
	display: -ms-flexbox;
	display: -webkit-box;
	display: flex;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
}

.post-navigation .navigation-links .nav-previous {
	-ms-flex: 0 0 50%;
	-webkit-box-flex: 0;
	flex: 0 0 50%;
	max-width: 50%;
}

.post-navigation .navigation-links .nav-previous a i {
	margin-right: 2px;
	-webkit-transition: 0.4s;
	transition: 0.4s;
}

.post-navigation .navigation-links .nav-previous a:hover i {
	margin-right: 0;
}

.post-navigation .navigation-links .nav-next {
	-ms-flex: 0 0 50%;
	-webkit-box-flex: 0;
	flex: 0 0 50%;
	max-width: 50%;
	text-align: right;
}

.post-navigation .navigation-links .nav-next a i {
	margin-left: 2px;
	-webkit-transition: 0.4s;
	transition: 0.4s;
}

.post-navigation .navigation-links .nav-next a:hover i {
	margin-left: 0;
}

.post-navigation .navigation-links div a {
	display: inline-block;
	font-weight: 600;
}

.comments-area {
	padding: 25px;
	margin-top: 30px;
	-webkit-box-shadow: 0px 0px 29px 0px rgba(102, 102, 102, 0.08);
	box-shadow: 0px 0px 29px 0px rgba(102, 102, 102, 0.08);
	background-color: #ffffff;
}

.comments-area .comments-title {
	position: relative;
	margin-bottom: 30px;
	line-height: initial;
	font-size: 24px;
	font-weight: 600;
}

.comments-area ol, .comments-area ul {
	padding: 0;
	margin: 0;
	list-style-type: none;
}

.comments-area .comment-list {
	padding: 0;
	margin: 0;
	list-style-type: none;
}

.comments-area .comment-body {
	border-bottom: 1px solid #eeeeee;
	padding-left: 65px;
	color: #505060;
	font-size: 14px;
	margin-bottom: 20px;
	padding-bottom: 20px;
}
.comments-area .comment-list .children {
    padding-left: 90px;
}
.comments-area .comment-body .reply {
	margin-top: 15px;
}

.comments-area .comment-body .reply a {
	border: 1px solid #ded9d9;
	color: #505060;
	display: inline-block;
	padding: 5px 20px;
	border-radius: 30px;
	text-transform: capitalize;
	position: relative;
	z-index: 1;
	font-size: 16px;
	font-weight: 600;
}

.comments-area .comment-body .reply a:hover {
	color: #ffffff;
	background-color: #ff9b08;
	border-color: #ff9b08;
}

.comments-area .comment-author {
	font-size: 17px;
	margin-bottom: 0.1em;
	position: relative;
	z-index: 2;
}

.comments-area .comment-author .avatar {
	height: 50px;
	left: -65px;
	position: absolute;
	width: 50px;
}

.comments-area .comment-author .fn {
	font-weight: 600;
}

.comments-area .comment-author .says {
	display: none;
}

.comments-area .comment-metadata {
	margin-bottom: .8em;
	color: #5f5f5f;
	letter-spacing: 0.01em;
	text-transform: uppercase;
	font-size: 13px;
	font-weight: 400;
}

.comments-area .comment-metadata a {
	color: #5f5f5f;
}

.comments-area .comment-metadata a:hover {
	color: #ff9b08;
}

.comments-area .comment-respond {
	margin-top: 30px;
}

.comments-area .comment-respond .comment-reply-title {
	margin-bottom: 0;
	position: relative;
	font-size: 24px;
	font-weight: 600;
}

.comments-area .comment-respond .comment-reply-title #cancel-comment-reply-link {
	display: inline-block;
}

.comments-area .comment-respond .comment-form {
	overflow: hidden;
}

.comments-area .comment-respond .comment-notes {
	margin-bottom: 0;
	margin-top: 10px;
}

.comments-area .comment-respond .comment-form-comment {
	margin-top: 20px;
    float: left;
    width: 100%;
    margin-bottom: 25px;
}

.comments-area .comment-respond label {
	display: block;
	font-weight: 600;
	color: #505060;
	margin-bottom: 5px;
}

.comments-area .comment-respond input[type="date"], .comments-area .comment-respond input[type="time"], .comments-area .comment-respond input[type="datetime-local"], .comments-area .comment-respond input[type="week"], .comments-area .comment-respond input[type="month"], .comments-area .comment-respond input[type="text"], .comments-area .comment-respond input[type="email"], .comments-area .comment-respond input[type="url"], .comments-area .comment-respond input[type="password"], .comments-area .comment-respond input[type="search"], .comments-area .comment-respond input[type="tel"], .comments-area .comment-respond input[type="number"], .comments-area .comment-respond textarea {
	display: block;
	width: 100%;
	background-color: #ffffff;
	border: 1px solid #eeeeee;
	padding: 0.625em 0.7375em;
	outline: 0;
	-webkit-transition: 0.4s;
	transition: 0.4s;
}

.comments-area .comment-respond input[type="date"]:focus, .comments-area .comment-respond input[type="time"]:focus, .comments-area .comment-respond input[type="datetime-local"]:focus, .comments-area .comment-respond input[type="week"]:focus, .comments-area .comment-respond input[type="month"]:focus, .comments-area .comment-respond input[type="text"]:focus, .comments-area .comment-respond input[type="email"]:focus, .comments-area .comment-respond input[type="url"]:focus, .comments-area .comment-respond input[type="password"]:focus, .comments-area .comment-respond input[type="search"]:focus, .comments-area .comment-respond input[type="tel"]:focus, .comments-area .comment-respond input[type="number"]:focus, .comments-area .comment-respond textarea:focus {
	border-color: #ff9b08;
}

.comments-area .comment-respond .comment-form-author {
	float: left;
    width: 50%;
    padding-right: 10px;
    margin-top: 20px;
    margin-bottom: 0;
}

.comments-area .comment-respond .comment-form-email {
    float: left;
    width: 50%;
    padding-left: 12px;
    margin-top: 20px;
    margin-bottom: 0;
}

.comments-area .comment-respond .form-submit {
	float: left;
	width: 100%;
}

.comments-area .comment-respond .form-submit input {
	background: #ff9b08;
	border: none;
	color: #ffffff;
	padding: 10px 30px;
	display: inline-block;
	cursor: pointer;
	outline: 0;
	border-radius: 0;
	text-transform: uppercase;
	-webkit-transition: 0.4s;
	transition: 0.4s;
	font-weight: 600;
	font-size: 14px;
}

.comments-area .comment-respond .form-submit input:hover, .comments-area .comment-respond .form-submit input:focus {
	color: #ffffff;
	background-color: #505060;
}

/************************************************
** - 23 - Blog Page Sidebar Widget CSS
 ************************************************/
.widget-area .widget {
	margin-top: 35px;
}

.widget-area .widget:first-child {
	margin-top: 0;
}

.widget-area .widget .widget-title {
	border-bottom: 1px solid #eeeeee;
	padding-bottom: 10px;
	margin-bottom: 25px;
	text-transform: capitalize;
	position: relative;
	font-size: 20px;
}

.widget-area .widget .widget-title::before {
	content: '';
	position: absolute;
	background: #ff9b08;
	bottom: -1px;
	left: 0;
	width: 50px;
	height: 1px;
}

.widget-area .widget_search {
	background-color: #f5f5f5;
	padding: 15px;
}

.widget-area .widget_search form {
	position: relative;
}

.widget-area .widget_search form label {
	display: block;
	margin-bottom: 0;
}

.widget-area .widget_search form .screen-reader-text {
	display: none;
}

.widget-area .widget_search form .search-field {
	background-color: transparent;
	height: 50px;
	padding: 6px 15px;
	border: 1px solid #ff9b08;
	width: 100%;
	display: block;
	outline: 0;
	-webkit-transition: 0.4s;
	transition: 0.4s;
}

.widget-area .widget_search form .search-field:focus {
	border-color: #ff9b08;
}

.widget-area .widget_search form button {
	position: absolute;
	right: 0;
	outline: 0;
	bottom: 0;
	height: 50px;
	width: 50px;
	z-index: 1;
	border: none;
	color: #ffffff;
	background-color: #ff9b08;
	-webkit-transition: 0.4s;
	transition: 0.4s;
}

.widget-area .widget_search form button:hover {
	background-color: #505060;
	color: #ffffff;
}

.widget-area .widget_crypto_posts_thumb {
	position: relative;
	overflow: hidden;
}

.widget-area .widget_crypto_posts_thumb .item {
	overflow: hidden;
	margin-bottom: 15px;
}

.widget-area .widget_crypto_posts_thumb .item:last-child {
	margin-bottom: 0;
}

.widget-area .widget_crypto_posts_thumb .item .thumb {
	float: left;
	height: 80px;
	overflow: hidden;
	position: relative;
	width: 80px;
	margin-right: 15px;
}

.widget-area .widget_crypto_posts_thumb .item .thumb .fullimage {
	width: 80px;
	height: 80px;
	display: inline-block;
	background-size: cover !important;
	background-repeat: no-repeat;
	background-position: center center !important;
}

.widget-area .widget_crypto_posts_thumb .item .thumb .fullimage.bg1 {
	background-image: url(../img/blog-details/blog-details-1.html);
}

.widget-area .widget_crypto_posts_thumb .item .thumb .fullimage.bg2 {
	background-image: url(../img/blog-details/blog-details-2.html);
}

.widget-area .widget_crypto_posts_thumb .item .thumb .fullimage.bg3 {
	background-image: url(../img/blog-details/blog-details-3.html);
}

.widget-area .widget_crypto_posts_thumb .item .info {
	overflow: hidden;
	margin-top: 5px;
}

.widget-area .widget_crypto_posts_thumb .item .info span {
	display: block;
	color: #5f5f5f;
	text-transform: capitalize;
	margin-top: 3px;
	font-size: 14px;
}

.widget-area .widget_crypto_posts_thumb .item .info .title {
	margin-bottom: 0;
	line-height: 1.4;
	font-size: 16px;
}

.widget-area .widget_crypto_posts_thumb .item .info .title a {
	display: inline-block;
}

.widget-area .widget_recent_entries ul {
	padding-left: 0;
	margin-bottom: 0;
	list-style-type: none;
}

.widget-area .widget_recent_entries ul li {
	position: relative;
	margin-bottom: 12px;
	color: #505060;
	padding-left: 14px;
	line-height: 1.5;
	font-weight: 400;
	font-size: 15.5px;
}

.widget-area .widget_recent_entries ul li:last-child {
	margin-bottom: 0;
}

.widget-area .widget_recent_entries ul li::before {
	background: #ff9b08;
	height: 8px;
	width: 8px;
	content: '';
	left: 0;
	top: 7px;
	position: absolute;
	border-radius: 50px;
	border-right-style: inset;
}

.widget-area .widget_recent_entries ul li a {
	display: inline-block;
	color: #505060;
}

.widget-area .widget_recent_entries ul li a:hover {
	color: #ff9b08;
}

.widget-area .widget_recent_entries ul li .post-date {
	display: block;
	font-size: 13px;
	color: #5f5f5f;
	margin-top: 4px;
}

.widget-area .widget_categories ul {
	padding-left: 0;
	margin-bottom: 0;
	list-style-type: none;
}

.widget-area .widget_categories ul li {
	margin-bottom: 12px;
	color: #5f5f5f;
	font-size: 15px;
	font-weight: 400;
}

.widget-area .widget_categories ul li:last-child {
	margin-bottom: 0;
}

.widget-area .widget_categories ul li a {
	color: #505060;
    display: flex;
    justify-content: space-between;
    background: #f8f8f8;
    padding: 8px 15px;
}

.widget-area .widget_categories ul li a:hover {
	color: #fff;
    background: #ff9b08;
}

.widget-area .widget_categories ul li .post-count {
	float: right;
}

.widget-area .widget_meta ul {
	padding-left: 0;
	margin-bottom: 0;
	list-style-type: none;
}

.widget-area .widget_meta ul li {
	position: relative;
	margin-bottom: 12px;
	color: #505060;
	padding-left: 14px;
	font-size: 15.5px;
	font-weight: 400;
}

.widget-area .widget_meta ul li:last-child {
	margin-bottom: 0;
}

.widget-area .widget_meta ul li::before {
	background: #ff9b08;
	height: 8px;
	width: 8px;
	content: '';
	left: 0;
	top: 7px;
	position: absolute;
	border-radius: 50px;
	border-right-style: inset;
}

.widget-area .widget_meta ul li a {
	display: inline-block;
	color: #505060;
}

.widget-area .widget_meta ul li a:hover {
	color: #ff9b08;
}

.widget-area .widget_tag_cloud .widget-title {
	margin-bottom: 12px;
}

.widget-area .tagcloud a {
    display: inline-block;
    color: #505060;
    font-weight: 400;
    font-size: 14px !important;
    padding: 6px 13px;
    border: 1px solid #ebebeb;
    background: #f8f8f8;
    margin-top: 8px;
    margin-right: 4px;
}

.widget-area .tagcloud a:hover, .widget-area .tagcloud a:focus {
	color: #ffffff;
	background-color: #ff9b08;
	border-color: #ff9b08;
}

.widget-area .widget_event_details ul {
	padding-left: 0;
	margin-bottom: 0;
	list-style-type: none;
}

.widget-area .widget_event_details ul li {
	border-bottom: 1px solid #eeeeee;
	color: #888f96;
	padding-bottom: 10px;
	padding-top: 10px;
}

.widget-area .widget_event_details ul li:first-child {
	padding-top: 0;
}

.widget-area .widget_event_details ul li:last-child {
	border-bottom: none;
	padding-bottom: 0;
}

.widget-area .widget_event_details ul li span {
	display: inline-block;
	color: #505060;
	font-weight: 400;
}

.widget-area .widget_event_details ul li a {
	display: inline-block;
	color: #888f96;
}

.widget-area .widget_event_details ul li a:hover {
	color: #ff9b08;
}

/************************************************
 ** - 24 - Blog Page Number Pagination CSS
 ************************************************/
.pagination-area {
	margin-top: 20px;
	text-align: center;
}

.pagination-area .page-numbers {
	width: 45px;
	height: 45px;
	margin: 0 3px;
	display: inline-block;
	background-color: #ffffff;
	line-height: 48px;
	color: #505060;
	-webkit-box-shadow: 0 2px 10px 0 #d8dde6;
	box-shadow: 0 2px 10px 0 #d8dde6;
	font-size: 18px;
	font-weight: 600;
}

.pagination-area .page-numbers.current, .pagination-area .page-numbers:hover, .pagination-area .page-numbers:focus {
	background: #ff9b08;
	color: #ffffff;
	-webkit-box-shadow: 0 2px 10px 0 #d8dde6;
	box-shadow: 0 2px 10px 0 #d8dde6;
}

/*****************************************
 ** - 25 - Footer Section CSS
 ******************************************/
.footer-area {
	position: relative;
	z-index: 1;
	background-color: #0b112a;
}
.footer-area {
	position: relative;
	z-index: 1;
	background-image: url(../img/footer-bg.jpg);
	background-position: center center;
	background-size: cover;
	background-repeat: no-repeat;
}

.footer-area::before {
	content: "";
	position: absolute;
    z-index: -1;
	left: 0;
	top: 0;
	height: 100%;
	width: 100%;
	opacity: 0.3;
	background-color: #0b112a;
}

.footer-heading {
	margin-bottom: 25px;
}

.footer-heading h3 {
	font-size: 20px;
	color: #ffffff;
	font-weight: 600;
	margin: 0 0 0 0;
	position: relative;
	border-bottom: 1px solid #fff;
	padding-bottom: 10px;
}

.single-footer-widget .footer-social {
	padding-left: 0;
	margin-bottom: 0;
	margin-top: 20px;
}

.single-footer-widget .footer-social li {
	display: inline-block;
	margin-right: 10px;
}

.single-footer-widget .footer-social li:last-child {
	margin-right: 0;
}

.single-footer-widget .footer-social i {
	display: inline-block;
	height: 38px;
	width: 38px;
	line-height: 38px;
	background-color: #ffffff;
	border: 1px solid #ffffff;
	border-radius: 5px;
	font-size: 18px;
	color: #fcd531;
	-webkit-transition: 0.4s;
	transition: 0.4s;
	text-align: center;
}

.single-footer-widget .footer-social i:hover {
	background-color: #fcd531;
	color: #ffffff;
	border: 1px solid #fcd531;
}

.single-footer-widget p {
	font-size: 15px;
	color: #ececec;
	font-weight: 400;
}

.single-footer-widget .footer-heading {
	margin-bottom: 25px;
}

.single-footer-widget .footer-heading h3 {
	font-size: 20px;
	color: #ffffff;
	font-weight: 600;
	margin: 0 0 0 0;
}

.single-footer-widget .footer-quick-links {
	padding-left: 0;
	margin-bottom: 0;
}

.single-footer-widget .footer-quick-links li {
	list-style-type: none;
	padding-bottom: 18px;
}

.single-footer-widget .footer-quick-links li:last-child {
	padding-bottom: 0;
}

.single-footer-widget .footer-quick-links li a {
	display: inline-block;
	color: #ececec;
	font-size: 15px;
	font-weight: 400;
}

.single-footer-widget .footer-quick-links li a:hover {
	color: #fff;
	text-decoration: underline !important;
	-webkit-transition: 0.4s;
	transition: 0.4s;
}

.single-footer-widget .footer-info-contact {
	margin-bottom: 16px;
}

.single-footer-widget .footer-info-contact:last-child {
	margin-bottom: 0;
}

.single-footer-widget .footer-info-contact h3 {
	font-size: 16px;
	color: #fff;
	font-weight: 600;
	margin: 0 0 10px 0;
}

.single-footer-widget .footer-info-contact span {
	font-size: 15px;
	color: #ececec;
	font-weight: 400;
}

.single-footer-widget .footer-info-contact span a {
	font-size: 15px;
	color: #ececec;
	font-weight: 400;
	-webkit-transition: 0.4s;
	transition: 0.4s;
}

.single-footer-widget .footer-info-contact span a:hover {
	color: #fff;
}

/**************************************
 ** - 00 - Footer Subscribe CSS
 **************************************/

.newsletter-form {
	max-width: 580px;
	position: relative;
	margin-left: auto;
	margin-right: auto;
	margin-top: 20px;
}

.newsletter-form .input-newsletter {
	display: block;
	width: 100%;
	background-color: #ffffff;
	border: none;
	height: 50px;
	padding-left: 25px;
	border-radius: 5px;
	outline: 0;
	color: #505060;
}

.newsletter-form .input-newsletter::-webkit-input-placeholder {
	color: #5f5f5f;
}

.newsletter-form .input-newsletter:-ms-input-placeholder {
	color: #5f5f5f;
}

.newsletter-form .input-newsletter::-ms-input-placeholder {
	color: #5f5f5f;
}

.newsletter-form .input-newsletter::placeholder {
	color: #5f5f5f;
}

.newsletter-form button {
	position: absolute;
	right: 0;
	top: 0;
	background-color: #ff9b08;
	color: #ffffff;
	border: none;
	height: 50px;
	padding: 0 30px;
	border-radius: 0px 5px 5px 0px;
	-webkit-transition: 0.4s;
	transition: 0.4s;
	line-height: 50px;
	text-transform: capitalize;
	font-size: 15px;
}

/*****************************************
 ** - 00 -  Copyright Section CSS
 ******************************************/
.copyright-area {
	background-color: #0e1326;
	padding: 35px 0;
}

.copyright-area p {
	color: #ececec;
	font-size: 15px;
}

.copyright-area p a {
	color: #ececec;
	display: inline-block;
	font-weight: 600;
}

.copyright-area p a:hover {
	color: #ff9b08;
}

.copyright-area ul {
	padding-left: 0;
	margin-bottom: 0;
	list-style-type: none;
	text-align: right;
}

.copyright-area ul li {
	display: inline-block;
	color: #ececec;
	font-size: 15px;
	position: relative;
	margin-left: 10px;
	margin-right: 10px;
}

.copyright-area ul li a {
	display: inline-block;
	color: #ececec;
}

.copyright-area ul li a:hover {
	color: #ff9b08;
}

.copyright-area ul li::before {
	content: '';
	position: absolute;
	top: 5px;
	right: -13px;
	width: 1px;
	height: 14px;
	background-color: #ffffff;
}

.copyright-area ul li:last-child {
	margin-right: 0;
}

.copyright-area ul li:last-child::before {
	display: none;
}

.copyright-area ul li:first-child {
	margin-left: 0;
}


/*.get-started-btn {*/
/*	background: white; !* Button's inner background color *!*/
/*	color: #333; !* Text color *!*/
/*	padding: 6px 100px; !* Reduced padding to make the button narrower *!*/
/*	font-size: 16px; !* Font size *!*/
/*	font-weight: 500; !* Slightly less bold text *!*/
/*	border: 1px solid transparent; !* Transparent border for the gradient *!*/
/*	border-radius: 30px; !* Reduced roundness for narrower appearance *!*/
/*	background-image: linear-gradient(white, white), linear-gradient(to right, #4CAF50, #00C9FF); !* Inner white background and gradient border *!*/
/*	background-origin: border-box; !* Gradient is applied to the border *!*/
/*	background-clip: padding-box, border-box; !* Ensure gradient only appears on border *!*/
/*	cursor: pointer; !* Pointer on hover *!*/
/*	display: inline-flex; !* Horizontally align text and arrow *!*/
/*	align-items: center; !* Vertically center text and arrow *!*/
/*	transition: all 0.3s ease; !* Smooth transition for hover *!*/
/*	!*text-transform: uppercase; !* Uppercase text *!*!*/
/*}*/

/*.get-started-btn::after {*/
/*	content: "→"; !* Right arrow *!*/
/*	margin-left: 6px; !* Reduced space between text and arrow *!*/
/*	font-size: 16px; !* Slightly smaller arrow *!*/
/*	color: #4CAF50; !* Arrow color matching the gradient *!*/
/*	transition: margin-left 0.3s ease, color 0.3s ease; !* Smooth transition for arrow movement *!*/
/*}*/

/*.get-started-btn:hover {*/
/*	background-image: linear-gradient(white, white), linear-gradient(to right, #00C9FF, #4CAF50); !* Reverse gradient on hover *!*/
/*	color: #00C9FF; !* Change text color to match gradient *!*/
/*}*/

/*!*.get-started-btn:hover::after {*!*/
/*!*	margin-left: 10px; !* Move arrow slightly to the right on hover *!*!*/
/*!*	color: #00C9FF; !* Change arrow color *!*!*/
/*!*}*!*/

.document-single-item {
	width: 100%; /* Ensure the box takes the full width of its column */
}

.button-container {
	display: flex; /* Use Flexbox to center the button */
	justify-content: center; /* Horizontally center the button */
	width: 100%; /* Match the width of the box */
	margin-top: 10px; /* Add space between the box and the button if needed */
}

.get-started-link {
	display: inline-block; /* Allows width and padding control */
	padding: 6px 16px; /* Padding for the link */
	font-size: 16px; /* Font size */
	font-weight: 500; /* Slightly bold text */
	color: #333; /* Text color */
	background: white; /* Background color */
	border-radius: 30px; /* Rounded corners */
	text-align: center; /* Center the text inside the link */
	text-decoration: none; /* Remove underline from the link */
	background-image: linear-gradient(white, white), linear-gradient(to right, #983ff9, #542dff); /* Gradient border */
	background-origin: border-box;
	background-clip: padding-box, border-box;
	border: 1px solid transparent; /* Space for the gradient border */
	transition: all 0.3s ease; /* Smooth hover transition */
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%; /* Make the link take up the full width */
}

.get-started-link::after {
	content: "→"; /* Right arrow */
	margin-left: 6px; /* Space between text and arrow */
	font-size: 16px; /* Arrow size */
	color: #542dff; /* Arrow color */
	transition: margin-left 0.3s ease, color 0.3s ease;
}

.get-started-link:hover {
	background-image: linear-gradient(white, white), linear-gradient(to right, #983ff9, #542dff); /* Reverse gradient on hover */
	color: #542dff; /* Change text color on hover */
}

.get-started-link:hover::after {
	margin-left: 10px; /* Move arrow slightly to the right on hover */
	color: #542dff; /* Change arrow color */
}

.get-started-link1 {
	display: inline-block; /* Allows width and padding control */
	padding: 6px 16px; /* Padding for the link */
	font-size: 16px; /* Font size */
	font-weight: 500; /* Slightly bold text */
	color: #333; /* Text color */
	background: white; /* Background color */
	border-radius: 30px; /* Rounded corners */
	text-align: center; /* Center the text inside the link */
	text-decoration: none; /* Remove underline from the link */
	background-image: linear-gradient(white, white), linear-gradient(to right, #FFEE00, #FDB60C); /* Gradient border */
	background-origin: border-box;
	background-clip: padding-box, border-box;
	border: 1px solid transparent; /* Space for the gradient border */
	transition: all 0.3s ease; /* Smooth hover transition */
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%; /* Make the link take up the full width */
}

.get-started-link1::after {
	content: "→"; /* Right arrow */
	margin-left: 6px; /* Space between text and arrow */
	font-size: 16px; /* Arrow size */
	color: #FDB60C; /* Arrow color */
	transition: margin-left 0.3s ease, color 0.3s ease;
}

.get-started-link1:hover {
	background-image: linear-gradient(white, white), linear-gradient(to right, #FFEE00, #FDB60C); /* Reverse gradient on hover */
	color: #FDB60C; /* Change text color on hover */
}

.get-started-link1:hover::after {
	margin-left: 10px; /* Move arrow slightly to the right on hover */
	color: #FDB60C; /* Change arrow color */
}

.get-started-link2 {
	display: inline-block; /* Allows width and padding control */
	padding: 6px 16px; /* Padding for the link */
	font-size: 16px; /* Font size */
	font-weight: 500; /* Slightly bold text */
	color: #333; /* Text color */
	background: white; /* Background color */
	border-radius: 30px; /* Rounded corners */
	text-align: center; /* Center the text inside the link */
	text-decoration: none; /* Remove underline from the link */
	background-image: linear-gradient(white, white), linear-gradient(to right, #8DC73D, #057F35); /* Gradient border */
	background-origin: border-box;
	background-clip: padding-box, border-box;
	border: 1px solid transparent; /* Space for the gradient border */
	transition: all 0.3s ease; /* Smooth hover transition */
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%; /* Make the link take up the full width */
}

.get-started-link2::after {
	content: "→"; /* Right arrow */
	margin-left: 6px; /* Space between text and arrow */
	font-size: 16px; /* Arrow size */
	color: #057F35; /* Arrow color */
	transition: margin-left 0.3s ease, color 0.3s ease;
}

.get-started-link2:hover {
	background-image: linear-gradient(white, white), linear-gradient(to right, #8DC73D, #057F35); /* Reverse gradient on hover */
	color: #057F35; /* Change text color on hover */
}

.get-started-link2:hover::after {
	margin-left: 10px; /* Move arrow slightly to the right on hover */
	color: #057F35; /* Change arrow color */
}

/* Background overlay */
#recaptcha-overlay {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.5); /* Semi-transparent background */
	z-index: 999; /* High z-index to appear above other elements */
	display: none;
}

/* Modal container for reCAPTCHA */
#recaptcha-modal {
	position: fixed;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	background-color: white;
	padding: 20px;
	box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
	border-radius: 8px;
	z-index: 1000; /* High z-index to appear above other elements */
	display: none;
}

/* Style for the actual reCAPTCHA container */
#recaptcha-container {
	width: auto;
	height: auto;
}

/*Tours*/
.tour-card {
	border-radius: 15px;
	overflow: hidden;
	box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
	transition: transform 0.3s ease-in-out;
}
.tour-image {
	width: 100%;
	height: 200px;
	object-fit: cover;
}
.tour-image {
	transition: transform 0.3s ease-in-out;
}

.tour-image:hover {
	transform: scale(1.1);
	transition: transform 0.3s ease-in-out;
}

.tour-details {
	padding: 15px;
	background: white;
	border-top: none;
}
.tour-title {
	font-size: 18px;
	font-weight: bold;
}
.tour-price {
	font-size: 20px;
	color: rgba(0, 123, 255, 0.75);
	font-weight: bold;
}
.tour-meta {
	display: flex;
	justify-content: space-between;
	align-items: center;
	font-size: 14px;
	margin-top: 10px;
}
.buy-btn {
	display: block;
	text-align: center;
	padding: 10px;
	background: transparent;
	color: #66b0ff;
	border: 2px solid #66b0ff;
	border-radius: 10px;
	text-decoration: none;
	font-weight: bold;
	transition: all 0.3s ease-in-out;
}
.buy-btn:hover {
	background: #66b0ff;
	color: white;
	border-color: #66b0ff;
}


.tour-details-card {
	border-radius: 15px;
	overflow: hidden;
	box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
	transition: transform 0.3s ease-in-out;
}
.tour-details-more{
	padding: 15px;
	background: white;
	border-top: none;
}
.tour-details-title {
	font-size: 24px;
	font-weight: bold;
}
/*.tour-details-meta {*/
/*	display: flex;*/
/*	justify-content: space-between;*/
/*	align-items: center;*/
/*	font-size: 14px;*/
/*	margin-top: 10px;*/
/*}*/

.tour-details-meta {
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
	text-align: center;
	gap: 15px;
	margin-top: 15px;
}

.meta-item {
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
	font-size: 16px;
	color: #333;
}

.meta-item i {
	font-size: 32px; /* Bigger icons */
	color: #66B0FF;
	margin-bottom: 5px;
}

.meta-title {
	font-size: 14px;
	font-weight: bold;
	text-transform: uppercase;
	color: #000;
	margin-bottom: 3px;
}

.meta-value {
	font-size: 16px;
	font-weight: bold;
	color: #555;
}

.meta-item {
	display: flex;
	justify-content: space-between; /* Distribute space between items */
	align-items: center; /* Vertically align items */
}

.meta-item i {
	margin-right: 10px; /* Space between icon and text */
}

.meta-item .meta-title {
	margin-right: 10px; /* Optional: Space between title and value */
}


/* Responsive: Stacks on small screens */
@media (max-width: 768px) {
	.tour-details-meta {
		flex-direction: column;
		align-items: center;
	}
}






/* Booking Form Container */
.tour-booking-container {
	margin-top: 20px;
	padding: 25px;
	background: white;
	border-radius: 15px;
	box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
	text-align: center;
}

.booking-title {
	font-size: 22px;
	font-weight: bold;
	color: #333;
	margin-bottom: 20px;
}

/* Form Styles */
.tour-booking-form {
	display: flex;
	flex-direction: column;
	gap: 15px;
}

.form-group {
	display: flex;
	flex-direction: column;
	text-align: left;
}

.form-group label {
	font-weight: bold;
	margin-bottom: 5px;
	color: #555;
}

.form-group input {
	padding: 12px;
	border: 1px solid #ddd;
	border-radius: 8px;
	font-size: 16px;
	transition: all 0.3s ease;
}

.form-group input:focus {
	border-color: #66B0FF;
	outline: none;
	box-shadow: 0px 0px 5px rgba(102, 176, 255, 0.5);
}

/* Buy Tour Button */
.buy-tour-btn {
	background: linear-gradient(135deg, #66B0FF, #4A90E2);
	color: white;
	border: none;
	padding: 14px;
	font-size: 18px;
	font-weight: bold;
	border-radius: 8px;
	cursor: pointer;
	transition: all 0.3s ease;
}

.buy-tour-btn:hover {
	background: linear-gradient(135deg, #4A90E2, #3478D6);
	transform: scale(1.05);
	box-shadow: 0px 4px 10px rgba(102, 176, 255, 0.3);
}

/* Mobile Responsive */
@media (max-width: 768px) {
	.tour-booking-container {
		padding: 20px;
	}

	.form-group input {
		font-size: 14px;
	}

	.buy-tour-btn {
		font-size: 16px;
	}
}



/*Tours*/

.payment-type-container {
	width: 180px; /* Adjust for larger size */
	height: 180px;
	border-radius: 50%; /* Make it a circle */
	overflow: hidden; /* Ensures images stay inside the circle */
	display: flex;
	justify-content: center;
	align-items: center;
	background-color: #fff; /* Optional: White background for consistency */
	box-shadow: 0px 5px 15px rgba(0, 0, 0, 0.1); /* Soft shadow */
	margin: 0 auto; /* Centering */
}

.payment-logo {
	width: 100%;
	height: 100%;
	object-fit: cover; /* Ensure images fill the circle properly */
}

.payment-name {
	text-align: center;
	font-size: 16px;
	font-weight: bold;
	margin-top: 10px;
	color: #333; /* Adjust color for visibility */
}

.swiper-container {
	width: 100%;
	height: 400px;
}

.swiper-slide img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	border-radius: 10px;
}

.scroll-down-arrow {
	position: absolute;
	bottom: 20px;
	left: 50%;
	transform: translateX(-50%);
	cursor: pointer;
	animation: bounce 2s infinite;
}

.scroll-down-arrow span {
	display: inline-block;
	width: 30px;
	height: 30px;
	border-bottom: 5px solid white;
	border-right: 5px solid white;
	transform: rotate(45deg);
}

@keyframes bounce {
	0%, 100% {
		transform: translateY(0);
	}
	50% {
		transform: translateY(10px);
	}
}

::placeholder {
	font-size: 0.85rem; /* Adjust size as needed */
	color: #6c757d; /* Optional: Make it a subtle gray */
	opacity: 1; /* Ensures visibility */
}

/* Specific to form inputs in the tour booking form */
.tour-booking-form input::placeholder {
	font-size: 0.8rem; /* Slightly smaller */
}

.blog-card {
	border-radius: 10px;
	overflow: hidden;
	transition: all 0.3s ease-in-out;
}

.blog-card:hover {
	transform: scale(1.05);
}

.previous-tour-slider img {
	width: 100%;
	height: 250px; /* Adjust height if needed */
	object-fit: cover;
	border-radius: 10px;
}

.slick-prev, .slick-next {
	font-size: 24px;
	color: grey;
	z-index: 10;
}

.slick-prev:before, .slick-next:before {
	color: grey !important;
	font-size: 30px;
}

.slick-prev:hover:before, .slick-next:hover:before {
	color: darkgrey !important;
}

/* Custom Styling for Select Element */
.custom-select {
	border: 1px solid #ccc; /* Light border */
	border-radius: 8px; /* Rounded corners */
	padding: 8px 15px; /* Add some padding inside the select box */
	font-size: 16px; /* Adjust font size */
	background-color: #f8f9fa; /* Light background for better contrast */
	color: #495057; /* Dark text color for better readability */
	transition: all 0.3s ease; /* Smooth transition for changes */
}

/* Custom Hover Effect for the Select */
.custom-select:hover {
	border-color: #007bff; /* Change border color on hover */
	background-color: #e9ecef; /* Slightly darker background on hover */
}

/* Change the focus effect */
.custom-select:focus {
	outline: none;
	border-color: #007bff; /* Change the border color when focused */
	box-shadow: 0 0 0 0.2rem rgba(38, 143, 255, 0.25); /* Add a shadow when focused */
}

/* Style for the dropdown arrow */
.custom-select option {
	background-color: #fff; /* White background for the options */
	color: #495057; /* Dark text for better visibility */
}

.custom-select option:hover {
	background-color: #007bff; /* Highlight option on hover */
	color: white; /* Change text color when hovering over option */
}


