@charset "UTF-8";

/*===================================================================
[Table Of Content]
    * Typography CSS
    * Common CSS
    * Main Navigation CSS
    * Header CSS
    * Home Banner and Other Section CSS
=====================================================================*/


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

body {
	color: #444;
	font-size: 0.9375rem;
	font-family: "Roboto", sans-serif;
	font-weight: 400;
	margin: 0;
	overflow-x: hidden;
	-ms-word-wrap: break-word;
	word-wrap: break-word;
}
.user_dashboard{
	margin-left: 8px;
    margin-right: -4px;
}
h1,
h2,
h3,
h4,
h5,
h6,
.h1,
.h2,
.h3,
.h4,
.h5,
.h6 {
	color: #000;
	font-family: "Roboto", sans-serif;
	font-weight: 700;
	line-height: 1.1;
	margin-bottom: 10px;
	margin-top: 0;
}

a {
	text-decoration: none;
	transition: 0.3s;
	-webkit-transition: 0.3s;
	-moz-transition: 0.3s;
	-ms-transition: 0.3s;
	-o-transition: 0.3s;
}

a:hover,
a:active,
a:focus {
	box-shadow: none;
	outline: none;
	text-decoration: none;
}

a img {
	border: none;
}

.btn:focus {
	box-shadow: none;
}

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

:active,
:focus {
	box-shadow: none;
	outline: none !important;
}

::selection {
	background: #19ce67;
	color: #fff;
	text-shadow: none;
}

::-moz-selection {
	background: #19ce67;
	/* Firefox */
	color: #fff;
	text-shadow: none;
}

::-webkit-selection {
	background: #19ce67;
	/* Safari */
	color: #fff;
	text-shadow: none;
}

img {
	max-width: 100%;
}

iframe {
	border: none !important;
}

textarea:focus,
textarea:active,
input:focus,
input:active {
	outline: none;
}

ul {
	margin: 0;
	padding: 0;
}

ul li {
	list-style: none;
}

pre,
ul,
ol,
dl,
dd,
blockquote,
address,
table,
fieldset {
	margin-bottom: 30px;
}

table p {
	margin-bottom: 0;
}

@font-face {
	font-family: beyondthemountains;
	src: url(../fonts/beyond_the_mountains.ttf);
}


/*
-----------------------------------------------------------------------
  Common CSS
-----------------------------------------------------------------------
*/

.wrapper .main-content {
	overflow: hidden;
}

.pl-10 {
	padding-left: 10px;
}

.pr-0 {
	padding-right: 0;
}

.pl-0 {
	padding-left: 0;
}

.mr-10 {
	margin-right: 10px;
}

.mt-70 {
	margin-top: 70px
}

.mtb-80 {
	margin: 80px 0
}

.orange-text {
	color: #fec225;
}

.orange-bg {
	background: #fec225
}

ul,
ol {
	list-style-position: inside;
	padding-left: 0;
}

.gray-text {
	color: #999
}

.btn-close:focus {
	box-shadow: 0 0 0 0 !important;
}

.bg-green {
	background: #184150
}


/*-------- Button Style Css --------*/

.btn-theme {
	background-color: transparent;
	border-color: #fff;
	border-radius: 12px;
	font-weight: 500;
	color: #fec225;
	display: inline-block;
	text-transform: uppercase;
	font-size: 16px;
	line-height: 1.375;
	padding: 20.5px 78px 20.5px 45px;
	position: relative;
	text-align: center;
	transition: 0.3s;
	-webkit-transition: 0.3s;
	-moz-transition: 0.3s;
	-ms-transition: 0.3s;
	-o-transition: 0.3s;
}

.btn-theme .icon {
	font-size: 23px;
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	right: 40px;
	color: #fff;
	transition: 0.3s;
	-webkit-transition: 0.3s;
	-moz-transition: 0.3s;
	-ms-transition: 0.3s;
	-o-transition: 0.3s;
}

.btn-theme:hover,
.btn-theme:focus {
	background-color: #fec225;
	border-color: #fec225;
	color: #fff;
}

.btn-theme:hover .icon,
.btn-theme:focus .icon {
	right: 35px;
}

.btn-theme.btn-theme-color2 {
	background-color: #fd9704;
	border-color: #fd9704;
}

.btn-theme.btn-theme-color2:hover,
.btn-theme.btn-theme-color2:focus {
	background-color: #19ce67;
	border-color: #19ce67;
}

.btn-theme.btn-black {
	background-color: #000;
	border-color: #000;
}

.btn-theme.btn-black:hover {
	background-color: #19ce67;
	border-color: #19ce67;
	color: #fff;
}

.btn-theme.btn-white {
	background-color: #fff;
	border-color: #fff;
	color: #0e0e0e;
}

.btn-theme.btn-white:hover {
	background-color: #000;
	border-color: #000;
	color: #fff;
}

.btn-theme.btn-white.btn-border {
	background-color: transparent;
	border: 2px solid #fff;
	color: #fff;
}

.btn-theme.btn-white.btn-border:hover {
	background-color: #fff;
	border-color: #fff;
	color: #19ce67;
}

.btn-theme.btn-gray {
	background-color: #f4f4f4;
	border-color: #f4f4f4;
	color: #0e0e0e;
}

.btn-theme.btn-gray:hover {
	background-color: #19ce67;
	border-color: #19ce67;
	color: #fff;
}

.btn-theme.btn-border {
	background-color: transparent;
	border: 2px solid #19ce67;
	color: #19ce67;
	padding: 19.5px 71.2px 19.5px 43px;
}

@media only screen and (max-width: 991px) {
	.btn-theme.btn-border {
		padding: 14.5px 51px 14.5px 33px;
	}
}

@media only screen and (max-width: 767px) {
	.btn-theme.btn-border {
		padding: 14.5px 48px 14.5px 21px;
	}
}

.btn-theme.btn-border .icon {
	right: 38px;
	transition: 0.1s;
	-webkit-transition: 0.1s;
	-moz-transition: 0.1s;
	-ms-transition: 0.1s;
	-o-transition: 0.1s;
}

@media only screen and (max-width: 991px) {
	.btn-theme.btn-border .icon {
		right: 22px;
	}
}

.btn-theme.btn-border:hover {
	background-color: #19ce67;
	border-color: #19ce67;
	color: #fff;
}

.btn-theme.btn-border:hover .icon {
	right: 38px;
}

@media only screen and (max-width: 991px) {
	.btn-theme.btn-border:hover .icon {
		right: 22px;
	}
}

.btn-theme.btn-border.btn-theme-color2 {
	background-color: transparent;
	border-color: #fd9704;
	color: #fd9704;
}

.btn-theme.btn-border.btn-theme-color2:hover {
	background-color: #fd9704;
	border-color: #fd9704;
	color: #fff;
}

.btn-theme.btn-border.btn-gray {
	background-color: transparent;
	border-color: #e8e8e8;
	color: #121421;
}

.btn-theme.btn-border.btn-gray:hover {
	background-color: #19ce67;
	border-color: #19ce67;
	color: #fff;
}

.btn-theme.btn-round {
	border-radius: 25px;
}

.btn-theme.btn-round.btn-slide:before {
	border-radius: 25px;
}

.btn-theme.btn-lg {
	letter-spacing: 0.131px;
	padding: 14px 48px;
}

.btn-theme.btn-slide {
	position: relative;
	z-index: 1;
}

.btn-theme.btn-slide:before {
	background-color: #fd9704;
	content: "";
	height: 100%;
	left: 0;
	position: absolute;
	top: 0;
	width: 0;
	z-index: -1;
	transition: 0.3s;
	-webkit-transition: 0.3s;
	-moz-transition: 0.3s;
	-ms-transition: 0.3s;
	-o-transition: 0.3s;
}

.btn-theme.btn-slide:hover:before {
	width: 100%;
}

.btn-theme.btn-size-md {
	height: 50px;
	min-width: 160px;
	text-align: center;
}

.btn-theme.btn-size-lg {
	height: 50px;
	min-width: 180px;
	text-align: center;
}

.btn-theme.btn-size-xl {
	height: 50px;
	min-width: 220px;
	text-align: center;
}

.btn-theme.btn-size-xxl {
	height: 52px;
	min-width: 270px;
	text-align: center;
}

.btn-link {
	color: #000;
	font-weight: 500;
	text-decoration: none;
	transition: 0.3s;
	-webkit-transition: 0.3s;
	-moz-transition: 0.3s;
	-ms-transition: 0.3s;
	-o-transition: 0.3s;
	border: 2px solid #999;
}

.btn-link:hover {
	color: #fff;
	background: #fdc125;
	border-color: #fdc125;
}


/*-------- Preloader Style Css --------*/

.preloader-deactive .preloader-wrap {
	display: none;
}

.preloader-wrap {
	background-color: #fff;
	position: fixed;
	left: 0;
	top: 0;
	height: 100vh;
	width: 100vw;
	z-index: 99999;
	overflow: hidden;
}

.preloader-wrap .preloader {
	position: absolute;
	width: 50px;
	height: 50px;
	top: 50%;
	left: 50%;
	margin-left: -32px;
	margin-top: -50px;
}

.preloader-wrap .preloader .dot {
	height: 100%;
	width: 100%;
	display: block;
	box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.15);
	-webkit-box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.15);
	animation: la-rotateplane 1.2s infinite ease-in-out;
	border-radius: 3px;
	-moz-border-radius: 3px;
	-webkit-border-radius: 3px;
	background-color: #fec225;
}

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


/*
-----------------------------------------------------------------------
	Main Navigation CSS
-----------------------------------------------------------------------
*/

.main-menu {
	align-content: center;
	font-family: "Roboto", sans-serif;
}

.main-menu>li {
	margin-right: 14px;
	padding: 3px 0;
}

.main-menu>li:last-child {
	margin-right: 0;
}

.main-menu>li>a {
	color: #0e0e0e;
	display: block;
	position: relative;
	font-size: 14px;
}

.main-menu>li:hover>a,
.main-menu>li.active>a {
	color: #19ce67;
}

.main-menu.menu-capitalize>li>a {
	font-size: 16px;
	text-transform: capitalize;
}

.has-submenu {
	padding-right: 10px;
	position: relative;
}

.has-submenu>a {
	position: relative;
}

.has-submenu>a:before {
	content: "";
	color: #fd9704;
	font-size: 14px;
	line-height: 30px;
	font-family: "FontAwesome";
	position: absolute;
	right: 11px;
	top: 7px;
}

.has-submenu:hover>.submenu-nav {
	transform: none;
	opacity: 1;
	visibility: visible;
	pointer-events: visible;
}

.has-submenu:hover .menu-content .menu-content-inner h4,
.has-submenu:hover .menu-content .menu-content-inner .btn-brand {
	transform: none !important;
}

.has-submenu .submenu-nav {
	background-color: #111;
	border: none;
	border-bottom: none;
	padding: 15px 0 15px;
	position: absolute;
	left: -25px;
	top: 100%;
	transform: translateY(50px);
	transition: 0.4s;
	opacity: 0;
	visibility: hidden;
	pointer-events: none;
	min-width: 250px;
	margin-top: 42px;
	z-index: 9999;
}

.search-btn button {
	border: none;
	background: transparent;
	color: #fec225;
	border-radius: 2px;
	transition: 0.3s;
	-webkit-transition: 0.3s;
	-moz-transition: 0.3s;
	-ms-transition: 0.3s;
	-o-transition: 0.3s;
}

.search-btn button:hover {
	background: rgba(255, 255, 255, 0.3);
}

.search-btn:after {
	display: none !important;
}

@media only screen and (max-width: 1199px) {
	.has-submenu .submenu-nav {
		min-width: 210px;
	}
}

.has-submenu .submenu-nav:before {
	content: "";
	position: absolute;
	height: 56px;
	width: 100%;
	left: 0;
	bottom: 100%;
}

.has-submenu .submenu-nav>li {
	padding: 9px 25px;
}

.has-submenu .submenu-nav>li a {
	color: #aaa;
	display: block;
	font-weight: 400;
	font-size: 14px;
	letter-spacing: inherit;
	text-transform: capitalize;
}

.has-submenu .submenu-nav>li a:hover {
	color: #fff;
}

.has-submenu .submenu-nav>li:hover>a {
	color: #fff;
}

.has-submenu .submenu-nav>li:hover:after {
	color: #fff !important;
}

.has-submenu .submenu-nav>li.has-submenu {
	position: relative;
}

.has-submenu .submenu-nav>li.has-submenu a:before {
	display: none;
}

.has-submenu .submenu-nav>li.has-submenu:hover>.submenu-nav {
	transform: none;
	opacity: 1;
	visibility: visible;
	pointer-events: visible;
}

.has-submenu .submenu-nav>li.has-submenu:after {
	content: "";
	color: #484a52;
	font-size: 15px;
	line-height: 1.2;
	font-family: "FontAwesome";
	position: absolute;
	right: 25px;
	top: 12px;
}

.has-submenu .submenu-nav>li.has-submenu .submenu-nav {
	left: 100%;
	top: 0;
	margin-top: -15px;
}

.has-submenu .submenu-nav-mega {
	display: flex;
	padding: 40px 50px;
	width: 100%;
}

@media only screen and (max-width: 1199px) {
	.has-submenu .submenu-nav-mega {
		width: 830px;
	}
}

.has-submenu .submenu-nav-mega .mega-menu-item {
	padding: 0 !important;
	flex-basis: 25%;
}

.has-submenu .submenu-nav-mega .mega-menu-item:last-child {
	border-right: 0;
}

.has-submenu .submenu-nav-mega .mega-menu-item>a {
	color: #fff !important;
	display: block;
	font-weight: 400;
	font-size: 14px;
	text-transform: uppercase;
	margin-bottom: 15px;
}

.has-submenu .submenu-nav-mega .mega-menu-item>a.srmenu-title {
	border-bottom: 1px solid rgba(255, 255, 255, 0.5);
	display: inline-block;
	margin-left: 25px;
	padding: 10px 0;
}

.has-submenu .submenu-nav-mega .mega-menu-item>a.srmenu-title.srmenu-style-hide {
	display: none;
}

.has-submenu .submenu-nav-mega .mega-menu-item ul li {
	position: relative;
	padding: 10px 25px;
}

.has-submenu .submenu-nav-mega .mega-menu-item ul li a:hover {
	color: #fff;
}

.has-submenu .submenu-nav-mega .mega-menu-item ul li.feature a {
	position: relative;
}

.has-submenu .submenu-nav-mega .mega-menu-item ul li.feature a:before {
	content: "";
	position: absolute;
	font-family: "FontAwesome";
	color: #19ce67;
	right: -20px;
	top: 1px;
	font-size: 12px;
}

.has-submenu .submenu-nav-mega .mega-menu-item ul li.new a {
	position: relative;
}

.has-submenu .submenu-nav-mega .mega-menu-item ul li.new a:after {
	background-color: #19ce67;
	content: "New";
	color: #fff;
	font-size: 13px;
	font-weight: 600;
	border-radius: 2px;
	position: absolute;
	top: 0;
	right: -38px;
	line-height: 1;
	padding: 2px 3px;
}

.has-submenu .submenu-nav-mega .mega-menu-item ul li:hover .menu-thumb {
	transform: translateX(0);
	opacity: 1;
	visibility: visible;
}

.has-submenu .submenu-nav-mega .mega-menu-item ul li.active a {
	color: #fff;
}

.has-submenu .submenu-nav-mega .mega-menu-item.menu-content {
	padding: 0 !important;
	margin: -1px;
}

.has-submenu .submenu-nav-mega .mega-menu-item.menu-content .menu-content-inner {
	background-size: cover;
	background-position: center center;
	height: 100%;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	text-align: center;
	padding: 15px;
}

.has-submenu .submenu-nav-mega .mega-menu-item.menu-content .menu-content-inner h4,
.has-submenu .submenu-nav-mega .mega-menu-item.menu-content .menu-content-inner .btn-brand {
	color: #fff;
	transition: 0.4s;
	transition-delay: 0.3s;
}

.has-submenu .submenu-nav-mega .mega-menu-item.menu-content .menu-content-inner h4 {
	transform: translateY(-80%);
}

.has-submenu .submenu-nav-mega .mega-menu-item.menu-content .menu-content-inner h4 span {
	color: #19ce67;
	font-style: italic;
}

.has-submenu .submenu-nav-mega .mega-menu-item.menu-content .menu-content-inner .btn-brand {
	margin-top: 30px;
	font-weight: 700;
	transform: translateY(80%);
}

.has-submenu.full-width {
	position: static;
}

.has-submenu.colunm-two {
	position: relative;
}

.has-submenu.colunm-two .submenu-nav-mega {
	left: -35px;
	width: 600px;
}

.has-submenu.colunm-two .submenu-nav-mega .mega-menu-item {
	padding: 0 !important;
	flex-basis: 50%;
}


/* Responsive Mobile Menu */

.res-mobile-menu {
	margin: 0 -10px;
}

.res-mobile-menu .slicknav_btn {
	display: none;
}

.res-mobile-menu .slicknav_menu {
	background-color: transparent;
	padding: 0;
}

.res-mobile-menu .slicknav_nav {
	display: block !important;
}

.res-mobile-menu .slicknav_nav li {
	border-bottom: none;
	margin-bottom: 1px;
	position: relative;
}

.res-mobile-menu .slicknav_nav li:last-child {
	border-bottom: 0;
	display:none
}

.res-mobile-menu .slicknav_nav li a {
    color: #333;
    font-size: 17px;
    font-weight: 500;
    line-height: 1;
    padding: 10px 30px;
    margin: 0;
    text-transform: capitalize;
    position: relative;
    background: #fff8e7;
}

@media only screen and (max-width: 575px) {
	.res-mobile-menu .slicknav_nav li a {
		font-size: 16px;
		padding: 10px 15px;
	}
}

.res-mobile-menu .slicknav_nav li a .slicknav_arrow {
	background-color: transparent;
	color: #878b93;
	font-size: 17px;
	display: block;
	text-align: center;
	margin: 0;
	position: absolute;
	right: 8px;
	top: 48%;
	transform: translateY(-50%);
	height: 35px;
	line-height: 35px;
}

.res-mobile-menu .slicknav_nav li a a {
	padding: 0;
}

.res-mobile-menu .slicknav_nav li a:hover {
	color: #fec225;
	background-color: transparent;
}

.res-mobile-menu .slicknav_nav li img {
	display: none;
}

.res-mobile-menu .slicknav_nav li div {
	display: none;
}

.res-mobile-menu .slicknav_nav li ul {
	margin: 0;
	padding-left: 10px;
}

.res-mobile-menu .slicknav_nav li ul li {
	padding-left: 20px;
}

@media only screen and (max-width: 575px) {
	.res-mobile-menu .slicknav_nav li ul li {
		padding-left: 15px;
	}
}

.res-mobile-menu .slicknav_nav li ul li a {
	color: #999999;
	font-size: 24px;
	padding: 12px 30px;
}

@media only screen and (max-width: 575px) {
	.res-mobile-menu .slicknav_nav li ul li a {
		font-size: 14px;
		padding: 7px 15px;
	}
}

.res-mobile-menu .slicknav_nav li ul li a:hover {
	color: #fec225;
}

.res-mobile-menu .slicknav_nav li ul li ul li a {
	font-size: 16px;
}

.res-mobile-menu .slicknav_nav .slicknav_open>.slicknav_item {
	position: relative;
}

.res-mobile-menu .slicknav_nav .slicknav_open>.slicknav_item .slicknav_arrow {
	color: #fec225;
}


/*
-----------------------------------------------------------------------
  Header CSS
-----------------------------------------------------------------------
*/

.top-navigation {
	border-bottom: 1px solid;
	border-color: rgba(255, 255, 255, 0.3);
}

.top-navigation ul.d-flex li {
	display: flex;
}

.top-navigation ul.d-flex li a {
	color: #fff;
	padding: 8px 14px;
	display: block;
	border-right: 1px solid;
	border-color: rgba(255, 255, 255, 0.3);
}

.top-navigation div {
	color: #fff;
}

.user-intraction {
	display: flex;
	align-items: center;
	height: 100%;
	justify-content: flex-end;
}

.user-intraction li:first-child {
	margin-right: 15px;
	position: relative;
}

.user-intraction li:first-child::after {
	content: "";
	position: absolute;
	background: #fec225;
	height: 16px;
	width: 1px;
	right: -15px;
	top: 6px;
}

.user-intraction li:last-child {
	margin-left: 15px;
}

.top-navigation ul li a:hover,
.top-navigation ul li a:focus {
	color: #fec225;
}

.user-intraction li a {
	color: #fec225;
}

.top-navigation .user-intraction li a:hover,
.top-navigation .user-intraction li a:focus {
	color: #fff;
}

.black-link {
	height: 100%;
}

.black-link li {
	flex: 1;
}

.header-area.header-default .header-logo-area {
	top: 2px;
}

.header-area.header-default .header-align {
	align-items: center;
	display: flex;
	justify-content: flex-end;
}

@media only screen and (max-width: 1200px) {
	.top-navigation .row.justify-content-center {
		justify-content: flex-end !important;
	}
}

@media only screen and (max-width: 991px) {
	.header-area.header-default .header-align {
		justify-content: flex-end;
	}
}

@media only screen and (max-width: 1199px) {
	.header-area.header-default .header-align .header-navigation-area {
		display: none;
	}
}

.header-area.header-default .header-align .header-navigation-area .main-menu>li {
	margin-right: 0;
}

.header-area.header-default .header-align .header-navigation-area .main-menu>li:last-child {
	margin-right: 0;
}

.header-area.header-default .header-align .header-navigation-area .main-menu>li:last-child>a {
	padding-right: 0;
}

@media (max-width: 1400px) {
	.header-area.header-default.transparent .header-align .header-navigation-area .main-menu>li {
		margin-right: 12px;
	}
}

.header-area.header-default .header-align .header-navigation-area .main-menu>li.has-submenu>a:before {
	display: none;
}

.header-area.header-default .header-align .header-navigation-area .main-menu>li.has-submenu .submenu-nav {
	background-color: #fff;
	border: none;
	border-radius: 0 0 5px 5px;
	box-shadow: 0px 20px 80px 0px rgba(171, 181, 189, 0.35);
	left: -10px;
	margin-top: 25px;
	min-width: 195px;
}

.header-area.header-default .header-align .header-navigation-area .main-menu>li.has-submenu .submenu-nav:before {
	height: 45px;
}

.header-area.header-default .header-align .header-navigation-area .main-menu>li.has-submenu .submenu-nav>li a {
	color: #0e0e0e;
}

.header-area.header-default .header-align .header-navigation-area .main-menu>li.has-submenu .submenu-nav>li a:hover {
	color: #fec225;
}

.header-area.header-default .header-align .header-action-area {
	margin-left: 15px;
	position: relative;
	top: 2px;
}

.header-area.header-default .header-align .header-action-area button.btn-theme,
.header-area.header-default .header-align .header-action-area a.btn-theme {
	margin-left: 121px;
}

@media (max-width: 1799px) {
	.header-area.header-default .header-align .header-action-area button.btn-theme,
	.header-area.header-default .header-align .header-action-area a.btn-theme {
		margin-left: 15px;
	}
}

@media only screen and (max-width: 1399px) {
	.header-area.header-default .header-align .header-action-area button.btn-theme,
	.header-area.header-default .header-align .header-action-area a.btn-theme {
		margin-left: 10px;
	}
}

@media only screen and (max-width: 575px) {
	.header-area.header-default .header-align .header-action-area button.btn-theme,
	.header-area.header-default .header-align .header-action-area a.btn-theme {
		display: none;
	}
}

.header-area.header-default.sticky-header.sticky {
	animation: 300ms ease-in-out 0s normal none 1 running fadeInDown;
	-webkit-animation: 300ms ease-in-out 0s normal none 1 running fadeInDown;
	background-color: #fff;
	box-shadow: 0 8px 20px 0 rgba(0, 0, 0, 0.1);
	-webkit-box-shadow: 0 8px 20px 0 rgba(0, 0, 0, 0.1);
	position: fixed;
	left: 0;
	top: 0;
	padding: 10px 0 15px;
	width: 100%;
	z-index: 999;
}

@media only screen and (max-width: 1199px) {
	.header-area.header-default.sticky-header.sticky {
		padding: 12px 0 14px;
	}
}

@media only screen and (max-width: 991px) {
	.header-area.header-default.sticky-header.sticky {
		padding: 12px 0;
	}
}

@media only screen and (max-width: 575px) {
	.header-area.header-default.sticky-header.sticky .container {
		max-width: none;
		padding-left: 12px;
		padding-right: 12px;
	}
}

.header-area.header-default.sticky-header.sticky .header-logo-area .logo-main {
	display: none;
}

.header-area.header-default.sticky-header.sticky .header-logo-area .logo-light {
	display: block;
	max-width: 170px;
}

@media only screen and (max-width: 575px) {
	.header-area.header-default.sticky-header.sticky .header-logo-area .logo-light {
		max-width: 130px;
	}
}

.header-area.header-default.sticky-header.sticky .header-align .header-navigation-area .main-menu>li:after {
	top: 63px;
}

.header-area.header-default.sticky-header.sticky .header-align .header-navigation-area .main-menu>li>a {
	color: #0e0e0e;
}

.header-area.header-default.sticky-header.sticky .header-align .header-navigation-area .main-menu>li>a:hover {
	background-color: transparent;
	color: #fec225;
}

.header-area.header-default.sticky-header.sticky .header-align .header-navigation-area .main-menu>li:hover a {
	background-color: transparent;
}

.header-area.header-default.sticky-header.sticky .header-align .header-navigation-area .main-menu>li:hover a:after {
	display: none;
}

.header-area.header-default.sticky-header.sticky .header-align .header-navigation-area .main-menu>li.active>a {
	color: #fec225;
}

.header-area.header-default.sticky-header.sticky .header-align .header-navigation-area .main-menu>li.has-submenu>a:before {
	display: none;
}

.header-area.header-default.sticky-header.sticky .header-align .header-navigation-area .main-menu>li.has-submenu>.submenu-nav {
	margin-top: 26px;
}

.header-area.header-default.sticky-header.sticky .header-align .header-navigation-area .main-menu>li.has-submenu>.submenu-nav:before {
	height: 44px;
}

.header-area.header-default.sticky-header.sticky .header-align .header-action-area button.btn-search,
.header-area.header-default.sticky-header.sticky .header-align .header-action-area a.btn-search {
	color: #0e0e0e;
}

.header-area.header-default.sticky-header.sticky .header-align .header-action-area button.btn-search:hover,
.header-area.header-default.sticky-header.sticky .header-align .header-action-area a.btn-search:hover {
	background-color: transparent;
	color: #0e0e0e;
}

.header-area.header-default.sticky-header.sticky .header-align .header-action-area button.btn-menu span,
.header-area.header-default.sticky-header.sticky .header-align .header-action-area a.btn-menu span {
	background-color: #0e0e0e;
}

.header-area.header-default.transparent {
	background-color: transparent;
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	z-index: 9;
}

.header-area.header-default.transparent.sticky-header.sticky .header-align .header-navigation-area .main-menu>li>a:after {
	display: none;
}

.header-area.header-default.transparent.sticky-header.sticky .header-align .header-navigation-area .main-menu>li:hover>a,
.header-area.header-default.transparent.sticky-header.sticky .header-align .header-navigation-area .main-menu>li.active>a {
	color: #fec225;
}

.header-area.header-default.transparent .header-align .header-navigation-area .main-menu>li {
	margin-right: 23.4px;
	position: relative;
}

@media (max-width: 1799px) {
	.header-area.header-default.transparent .header-align .header-navigation-area .main-menu>li {
		margin-right: 20px;
	}
}

.header-area.header-default.transparent .header-align .header-navigation-area .main-menu>li:after {
	content: "";
	height: 0;
	left: 0;
	position: absolute;
	top: 35px;
	width: 100%;
	transition: 0.3s;
	-webkit-transition: 0.3s;
	-moz-transition: 0.3s;
	-ms-transition: 0.3s;
	-o-transition: 0.3s;
}

.header-area.header-default.transparent .header-align .header-navigation-area .main-menu>li:first-child {
	margin-left: 0;
}

.header-area.header-default.transparent .header-align .header-navigation-area .main-menu>li:last-child {
	margin-right: 0;
}

.header-area.header-default.transparent .header-align .header-navigation-area .main-menu>li>a {
	color: #fff;
	position: relative;
	z-index: 1;
}

.header-area.header-default.transparent .header-align .header-navigation-area .main-menu>li>a:after {
	content: "";
	height: 0;
	left: 0;
	pointer-events: none;
	position: absolute;
	top: -63px;
	width: 100%;
	z-index: -1;
	transition: 0.3s;
	-webkit-transition: 0.3s;
	-moz-transition: 0.3s;
	-ms-transition: 0.3s;
	-o-transition: 0.3s;
}

.header-area.header-default.transparent .header-align .header-navigation-area .main-menu>li:hover:after,
.header-area.header-default.transparent .header-align .header-navigation-area .main-menu>li.active:after {
	background-color: #fec225;
	height: 1px;
}

.header-area.header-default.transparent .header-align .header-navigation-area .main-menu>li:hover>a,
.header-area.header-default.transparent .header-align .header-navigation-area .main-menu>li.active>a {
	background-color: transparent;
	color: #fff;
}

.header-area.header-default.transparent .header-align .header-navigation-area .main-menu>li.has-submenu>a:before {
	display: none;
}

.header-area.header-default.header-transparent {
	left: 0;
	position: absolute;
	top: 0;
	width: 100%;
	z-index: 9;
}

.header-area.header-default.header-transparent.sticky {
	background-color: #fff;
	box-shadow: 0 8px 20px 0 rgba(0, 0, 0, 0.1);
	border: 0 !important;
	position: fixed;
	left: 0;
	top: 0;
	padding: 25px 0;
	width: 100%;
	z-index: 99;
}

.btn-menu-slide-close {
	background-color: rgba(33, 35, 49, 0.8);
	height: 100vh;
	opacity: 0;
	position: fixed;
	right: -50%;
	top: 0;
	visibility: hidden;
	width: 100%;
	z-index: 999;
	transition: 0.3s;
	-webkit-transition: 0.3s;
	-moz-transition: 0.3s;
	-ms-transition: 0.3s;
	-o-transition: 0.3s;
}

.btn-menu-slide-close .icon-menu-slide-close {
	color: #fff;
	font-size: 32px;
	position: absolute;
	right: 360px;
	top: 45px;
	transition: 0.3s;
	-webkit-transition: 0.3s;
	-moz-transition: 0.3s;
	-ms-transition: 0.3s;
	-o-transition: 0.3s;
}

.btn-menu-slide-close .icon-menu-slide-close:hover {
	color: #fec225;
	cursor: pointer;
}

.btn-menu-slide-close.active {
	opacity: 1;
	right: 0;
	visibility: visible;
}

.btn-menu-slide-close.active .icon-menu-slide-close {
	transition-delay: 0.3s;
}

.header-logo-area {
	max-width: 213px;
	position: relative;
	top: 1px;
}

@media only screen and (max-width: 575px) {
	.header-logo-area {
		max-width: 130px;
	}
}

.header-logo-area .logo-light {
	display: none;
}

.header-action-area button,
.header-action-area a {
	vertical-align: middle;
}

.header-action-area button.btn-search,
.header-action-area a.btn-search {
	background-color: transparent;
	border: none;
	color: #0e0e0e;
	font-size: 20px;
	padding: 0;
}

.header-action-area button.btn-search .icon,
.header-action-area a.btn-search .icon {
	height: 35px;
	line-height: 38px;
	width: 35px;
}

.header-action-area button.btn-menu,
.header-action-area a.btn-menu {
	background-color: transparent;
	border: none;
	box-shadow: none;
	height: 18px;
	margin-left: 16px;
	margin-top: 0;
	position: relative;
	width: 35px;
}

.header-action-area button.btn-menu span,
.header-action-area a.btn-menu span {
	background-color: #fd9704;
	border-radius: 2px;
	display: block;
	height: 3px;
	position: absolute;
	right: 0;
	transition: 0.4s;
	width: 100%;
}

.header-action-area button.btn-menu span:first-child,
.header-action-area a.btn-menu span:first-child {
	top: 0;
	width: 30px;
}

.header-action-area button.btn-menu span:nth-child(2),
.header-action-area a.btn-menu span:nth-child(2) {
	top: 50%;
	transform: translateY(-50%);
	width: 100%;
}

.header-action-area button.btn-menu span:last-child,
.header-action-area a.btn-menu span:last-child {
	bottom: 0;
	width: 25px;
}

.header-action-area button.btn-menu:hover span,
.header-action-area a.btn-menu:hover span {
	background-color: #fec225;
}

.header-action-area button.btn-menu:hover span:first-child,
.header-action-area button.btn-menu:hover span:last-child,
.header-action-area a.btn-menu:hover span:first-child,
.header-action-area a.btn-menu:hover span:last-child {
	width: 100%;
}

.header-action-area button.btn-theme.btn-style,
.header-action-area a.btn-theme.btn-style {
	background-color: #fec225;
	border-radius: 32.5px;
	color: #fff;
	padding: 6.5px 9px 8.5px 31.7px;
}

@media only screen and (max-width: 1399px) {
	.header-action-area button.btn-theme.btn-style,
	.header-action-area a.btn-theme.btn-style {
		padding: 7px 9px 7px 20px;
	}
}

@media only screen and (max-width: 767px) {
	.header-action-area button.btn-theme.btn-style,
	.header-action-area a.btn-theme.btn-style {
		font-size: 14px;
		padding: 5px 9px 7px 16px;
	}
}

.header-action-area button.btn-theme.btn-style .icon-style,
.header-action-area a.btn-theme.btn-style .icon-style {
	background-color: #fff;
	border-radius: 50%;
	color: #fd9704;
	display: inline-block;
	font-size: 18px;
	height: 50px;
	line-height: 50px;
	margin-left: 18px;
	width: 50px;
}

@media only screen and (max-width: 1399px) {
	.header-action-area button.btn-theme.btn-style .icon-style,
	.header-action-area a.btn-theme.btn-style .icon-style {
		height: 35px;
		line-height: 35px;
		margin-left: 5px;
		width: 35px;
	}
	.header-area.header-default.transparent .header-align .header-navigation-area .main-menu>li {
		margin-right: 15px;
	}
}

@media only screen and (max-width: 767px) {
	.header-action-area button.btn-theme.btn-style .icon-style,
	.header-action-area a.btn-theme.btn-style .icon-style {
		height: 30px;
		line-height: 30px;
		width: 30px;
		margin-left: 9px;
	}
}

.header-action-area button.btn-theme.btn-style:hover,
.header-action-area a.btn-theme.btn-style:hover {
	background-color: #fd9704;
}

.btn-search .icon-search {
	display: block;
}

.btn-search .icon-search-close {
	display: none;
}

.btn-search.show .icon-search {
	display: none;
}

.btn-search.show .icon-search-close {
	display: block;
}

.off-canvas-wrapper {
	position: fixed;
	right: -100%;
	top: 0;
	transition: 0.3s;
	opacity: 0;
	visibility: hidden;
	pointer-events: none;
	height: 100vh;
	width: 100%;
	z-index: 9999;
}

.off-canvas-wrapper.active {
	opacity: 1;
	visibility: visible;
	pointer-events: visible;
	right: 0;
}

.off-canvas-wrapper.active .off-canvas-inner {
	transform: none;
}

.off-canvas-wrapper.active .off-canvas-inner .off-canvas-content {
	transform: none;
	transition-delay: 0.3s;
}

.off-canvas-wrapper.active .btn-close {
	display: block;
}

.off-canvas-wrapper.active .off-canvas-overlay {
	opacity: 1;
	visibility: visible;
}

.off-canvas-wrapper .off-canvas-header {
    display: flex;
    justify-content: space-between;
    padding: 30px 0;
}

.off-canvas-wrapper .off-canvas-header .logo-area {
	max-width: 100px;
}

.off-canvas-wrapper .off-canvas-overlay {
	background-color: rgba(0, 0, 0, 0.8);
	position: absolute;
	left: 0;
	top: 0;
	opacity: 0;
	visibility: hidden;
	transition: 0.4s;
	height: 100%;
	width: 100%;
	z-index: 2;
}

.off-canvas-wrapper .btn-close {
	background: none;
	border: none;
	color: #999999;
	font-size: 30px;
	line-height: 1;
	opacity: 1;
	transition: 0.3s;
	-webkit-transition: 0.3s;
	-moz-transition: 0.3s;
	-ms-transition: 0.3s;
	-o-transition: 0.3s;
}

@media only screen and (max-width: 575px) {
	.off-canvas-wrapper .btn-close {
		font-size: 20px;
	}
}

.off-canvas-wrapper .btn-close:active,
.off-canvas-wrapper .btn-close:focus {
	border: none;
	box-shadow: none;
}

.off-canvas-wrapper .btn-close i {
	line-height: 1;
}

.off-canvas-wrapper .btn-close:hover {
	color: #0e0e0e;
}

.off-canvas-wrapper .off-canvas-inner {
	background-color: transparent;
	display: flex;
	justify-content: flex-end;
	position: relative;
	transform: translateX(0);
	transition: 0.3s;
	height: 100vh;
	width: 100%;
	z-index: 3;
}

.off-canvas-wrapper .off-canvas-inner .off-canvas-content {
	background-color: #fff;
	height: 100%;
	padding: 0 50px;
	position: relative;
	overflow-y: auto;
	transition: 0.4s;
	transition-duration: 0.4s;
	transform: translateX(100%);
	width: 545px;
	z-index: 9;
}

@media only screen and (max-width: 575px) {
	.off-canvas-wrapper .off-canvas-inner .off-canvas-content {
		width: 310px;
	}
}

.off-canvas-wrapper .off-canvas-inner .off-canvas-content .off-canvas-item {
	margin-bottom: 30px;
	margin-top: 20px;
}

.off-canvas-wrapper .off-canvas-inner .off-canvas-content .off-canvas-item:last-child {
	margin-bottom: 0;
}

.off-canvas-wrapper.aside-menu .off-canvas-inner {
	background-color: transparent;
	transform: none;
}

.off-canvas-wrapper.aside-menu .off-canvas-inner .off-canvas-content {
	background-color: #182141;
	position: relative;
	width: 320px;
	transform: translateX(-100%);
	transition: 0.4s;
	transition-duration: 0.6s;
	z-index: 3;
}

@media only screen and (max-width: 479.98px) {
	.off-canvas-wrapper.aside-menu .off-canvas-inner .off-canvas-content {
		width: 310px;
	}
}

.off-canvas-wrapper.aside-menu .off-canvas-inner .off-canvas-content .close-action .btn-close {
	color: #fff;
}

.off-canvas-wrapper.aside-menu .off-canvas-inner .off-canvas-content .close-action .btn-close:hover {
	color: #fec225;
}

.off-canvas-wrapper.aside-menu.active .off-canvas-inner .off-canvas-content {
	transform: none;
	transition-delay: 0.5s;
}

.off-canvas-wrapper .off-canvas-footer .side-footer {
	display: inline-block;
}

.off-canvas-wrapper .off-canvas-footer .side-footer .widget-social-icons {
	display: block;
}

.off-canvas-wrapper .off-canvas-footer .side-footer .widget-social-icons a {
	border: none;
	color: #000;
	font-size: 16px;
	float: left;
	margin-right: 40px;
	padding: 0;
}

@media only screen and (max-width: 575px) {
	.off-canvas-wrapper .off-canvas-footer .side-footer .widget-social-icons a {
		font-size: 13px;
		margin-right: 22px;
	}
}

.off-canvas-wrapper .off-canvas-footer .side-footer .widget-social-icons a.icon-color {
	color: #185381;
}

.off-canvas-wrapper .off-canvas-footer .side-footer .widget-social-icons a.icon-color.color-twitter {
	color: #429cd6;
}

.off-canvas-wrapper .off-canvas-footer .side-footer .widget-social-icons a.icon-color.color-instagram {
	color: #521313;
}

.off-canvas-wrapper .off-canvas-footer .side-footer .widget-social-icons a.icon-color.color-googleplus {
	color: #d62d20;
}

.off-canvas-wrapper .off-canvas-footer .side-footer .widget-copyright {
	display: block;
}

@media only screen and (max-width: 575px) {
	.off-canvas-wrapper .off-canvas-footer .side-footer .widget-copyright {
		display: inline-block;
		margin-top: 12px;
	}
}

.off-canvas-wrapper .off-canvas-footer .side-footer .widget-copyright p {
	line-height: 1.7;
}

@media only screen and (max-width: 575px) {
	.off-canvas-wrapper .off-canvas-footer .side-footer .widget-copyright p {
		font-size: 15px;
	}
}

.off-canvas-wrapper.bg-light-canvas .off-canvas-inner .off-canvas-content {
	background-color: #fff;
}

.off-canvas-wrapper.bg-light-canvas .off-canvas-inner .off-canvas-content .off-canvas-header {
	padding: 30px 0;
}

.off-canvas-wrapper.bg-light-canvas .off-canvas-inner .off-canvas-content .off-canvas-header .close-action button {
	position: absolute;
	right: 30px;
}

.off-canvas-wrapper.bg-light-canvas .off-canvas-inner .off-canvas-content .res-mobile-menu .slicknav_nav {
	padding-left: 10px;
}

.off-canvas-wrapper.bg-light-canvas .off-canvas-inner .off-canvas-content .res-mobile-menu .slicknav_nav li a {
	font-size: 16px;
	color: #333;
	padding-bottom: 16.5px;
	padding-top: 16.5px;
	text-transform: uppercase;
}

.off-canvas-wrapper.bg-light-canvas .off-canvas-inner .off-canvas-content .res-mobile-menu .slicknav_nav li a .slicknav_arrow {
	color: #999999;
	display: block;
}

.off-canvas-wrapper.bg-light-canvas .off-canvas-inner .off-canvas-content .res-mobile-menu .slicknav_nav li a:hover {
	color: #0e0e0e;
}

.off-canvas-wrapper.bg-light-canvas .off-canvas-inner .off-canvas-content .res-mobile-menu .slicknav_nav li ul li a {
	color: #fec225;
	padding-bottom: 13px;
	padding-top: 13px;
	text-transform: capitalize;
}

.off-canvas-wrapper.bg-light-canvas .off-canvas-inner .off-canvas-content .res-mobile-menu .slicknav_nav li ul li a:hover {
	color: #333;
}

.off-canvas-wrapper.bg-light-canvas .off-canvas-inner .off-canvas-content .res-mobile-menu .slicknav_nav li ul li ul li a {
	color: #484a52;
	font-size: 15px;
}

.off-canvas-wrapper.bg-light-canvas .off-canvas-inner .off-canvas-content .res-mobile-menu .slicknav_nav li ul li ul li a:hover {
	color: #fec225;
}

.off-canvas-wrapper.bg-light-canvas .off-canvas-inner .off-canvas-content.canvas-content-style2 .off-canvas-item {
	margin-bottom: 0;
	margin-top: 20px;
	height: calc(100% - 140px);
	display: flex;
	flex-direction: column;
	justify-content: space-between;
}

.off-canvas-wrapper.bg-light-canvas .off-canvas-inner .off-canvas-content.canvas-content-style2 .side-canvas-footer .widget-contact-info {
	margin-bottom: 0;
	padding: 0 31px;
}

.off-canvas-wrapper.bg-light-canvas .off-canvas-inner .off-canvas-content.canvas-content-style2 .side-canvas-footer .widget-contact-info li {
	align-items: baseline;
	color: #484a52;
	display: flex;
	margin-bottom: 10px;
}

.off-canvas-wrapper.bg-light-canvas .off-canvas-inner .off-canvas-content.canvas-content-style2 .side-canvas-footer .widget-contact-info li:first-child i {
	width: 35px;
}

.off-canvas-wrapper.bg-light-canvas .off-canvas-inner .off-canvas-content.canvas-content-style2 .side-canvas-footer .widget-contact-info li:last-child {
	margin-bottom: 0;
}

.off-canvas-wrapper.bg-light-canvas .off-canvas-inner .off-canvas-content.canvas-content-style2 .side-canvas-footer .widget-contact-info li i {
	color: #484a52;
	font-size: 14px;
	width: 27px;
}

.off-canvas-wrapper.bg-light-canvas .off-canvas-inner .off-canvas-content.canvas-content-style2 .side-canvas-footer .widget-contact-info li span {
	color: #484a52;
	font-size: 14px;
	line-height: 24px;
}


/*
-----------------------------------------------------------------------
	Home Banner CSS
-----------------------------------------------------------------------
*/

.shape-style1,
.shape-style2,
.shape-style3,
.shape-style4 {
	background: rgba(255, 255, 255, 0.1);
	position: absolute;
	border-radius: 4px;
	z-index: 0;
	-webkit-animation: pulse 5s infinite;
	animation: pulse 5s infinite;
}

.line-style1,
.line-style2,
.line-style3,
.line-style4 {
	position: absolute;
	height: 1px;
	-webkit-animation: rubberBand 5s infinite;
	animation: rubberBand 5s infinite;
}

.line-style1,
.line-style2 {
	background: #fec225;
	top: 125px;
	left: 0;
}

.line-style2 {
	top: 140px;
}

.line-style3,
.line-style4 {
	background: #fff;
	bottom: 300px;
	right: 0;
}

.line-style1,
.line-style3 {
	width: 100px;
}

.line-style2,
.line-style4 {
	width: 60px;
}

.line-style4 {
	bottom: 285px;
}

.shape-style1 {
	width: 200px;
	height: 200px;
	top: 85px;
	left: 130px;
}

.shape-style2 {
	width: 250px;
	height: 330px;
	top: 150px;
	left: 0;
}

.shape-style3 {
	width: 200px;
	height: 200px;
	top: 250px;
	right: 150px;
}

.shape-style4 {
	width: 250px;
	height: 330px;
	bottom: 200px;
	right: 250px;
}

.home-banner {
	position: relative;
}

.banner-image {
	width: -webkit-fill-available;
}

.home-banner .content,
.inner-pages-banner .content {
	position: absolute;
	z-index: 99;
	bottom: 200px;
	left: 50%;
	top: 50%;
	transform: translate(-50%, -50%);
}

.home-banner .content h2,
.inner-pages-banner .content h2 {
	text-shadow: 0 2px 4px #222;
	font-family: beyondthemountains;
	font-size: 60px;
	font-weight: 400;
}

.home-banner .content h2 span {
	color: #fec225;
}

.subtitle-content *,
.tittle-wrp *,
.content p {
	color: #fff;
}

.home-banner .content p {
	font-size: 20px;
	position: relative;
}

.home-banner .content p:before {
	left: 15px;
}

.home-banner .content p:after {
	right: 15px;
}

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

.content .subtitle-content-2 span {
	background: #fff;
	width: 100px;
	height: 1px;
}

.home-banner .content h6 {
	font-weight: 300;
	text-transform: uppercase;
	letter-spacing: 3px;
}

.home-banner .home-slider-sidebar,
.home-banner .slogan-block {
	position: absolute;
	z-index: 99;
	padding: 0 15px;
	width: 100px;
}

.home-banner .home-slider-sidebar {
	right: 5%;
	top: 200px;
}

.home-banner .slogan-block {
	left: 5%;
	top: 50%;
}

.home-banner .slogan-block h6 {
	color: #fff;
	font-weight: 400;
	transform: rotate(-90deg);
	margin: 30px 0 0;
	white-space: nowrap;
}

.home-banner .slogan-block h6 span {
	color: #fec225;
}

.social-icon span {
	color: #fff;
	transform: rotate(90deg);
	display: block;
}

.social-icon hr {
	background: #fec225;
	opacity: 1;
	transform: rotate(90deg);
}

.social-icon a {
	color: #fff;
}

.social-icon a:hover,
.social-icon a:focus {
	color: #fec225;
}

@media only screen and (max-width: 1460px) {
	.home-banner .slogan-block h6 {
		margin: 60px 0 0;
	}
}

@media only screen and (max-width: 1360px) {
	.home-banner .slogan-block h6 {
		margin: 80px 0 0;
	}
	.line-style1 {
		top: 145px;
	}
	.line-style2 {
		top: 160px;
	}
	.line-style3 {
		bottom: 200px;
	}
	.line-style4 {
		bottom: 185px;
	}
}

@media only screen and (max-width: 1200px) {
	.home-banner .content h2 {
		font-size: 46px;
	}
	.home-banner .content h6 {
		font-size: 12px;
	}
	.home-banner .content p {
		white-space: nowrap;
	}
	.home-banner .slogan-block h6 {
		margin: 130px 0 0;
	}
	.home-banner .content {
		top: 42%;
		transform: translate(-50%, -42%);
	}
	.btn.btn-theme {
		padding: 15px 60px 15px 30px;
		border-radius: 8px;
	}
	.btn-theme .icon {
		right: 30px;
	}
}

@media only screen and (max-width: 991px) {
	.home-banner .content h2 {
		font-size: 30px;
	}
	.content .subtitle-content-2 span {
		width: 40px;
	}
	.home-banner .content p {
		font-size: 16px;
	}
	.mb-5.subtitle-content-2 {
		margin-bottom: 2rem !important;
	}
	.btn.btn-theme {
		font-size: 13px;
	}
}

@media only screen and (max-width: 767px) {
	.header-logo-area img {
		max-width: 60px;
	}
	.top-navigation.mb-4 {
		margin-bottom: 1rem !important;
	}
	.subtitle-content.mb-4,
	.tittle-wrp.mb-4 {
		margin-bottom: 1rem !important;
	}
	.mb-5.subtitle-content-2 {
		margin-bottom: 1rem !important;
	}
	.btn.btn-theme {
		font-size: 10px;
		padding: 12px 45px 12px 20px;
		border-radius: 6px;
	}
	.btn-theme .icon {
		font-size: 18px;
		right: 10px;
	}
	.home-banner {
		background: url(../img/banner/banner.jpg);
		background-size: cover;
		height: 400px;
	}
	.home-banner .content {
		top: 40%;
		transform: translate(-50%, -40%);
	}
	.header-align {
		margin-right: 15px;
	}
}

@media only screen and (max-width: 480px) {
	.home-banner .content h6 {
		font-size: 10px;
	}
	.home-banner .content h2 {
		font-size: 24px;
	}
	.home-banner .content p {
		font-size: 13px;
	}
}

@media only screen and (max-width: 360px) {
	.home-banner .content h6 {
		font-size: 9px;
	}
}


/*-----First section CSS --------*/

.first-section {
	margin-top: -100px;
	position: relative;
	z-index: 9;
}

.nav-pills .nav-item .nav-link {
	border-radius: 6px 6px 0 0;
	width: 200px;
	font-weight: 500;
	background: rgba(255, 255, 255, 0.5);
	color: #fff;
	margin: 0 2px;
}

.nav-pills .nav-item .nav-link.active,
.nav-pills .nav-item .show>.nav-link {
	color: #000;
	background-color: #fec225;
	border: none;
}

.nav-item button {
	text-transform: uppercase;
	border: none;
	transition: 0.3s;
	-webkit-transition: 0.3s;
	-moz-transition: 0.3s;
	-ms-transition: 0.3s;
	-o-transition: 0.3s;
}

.first-section .tab-content,
.second-block .tab-content {
	background: #fec225;
	max-width: 1170px;
	margin: 0 auto;
	border-radius: 14px;
}

.child-tab .nav-item {
	margin: 0 4px;
}

.child-tab .nav-item .nav-link {
	border-radius: 6px;
	position: relative;
	padding: 0;
	height: 90px;
	background: #000;
	width: 80px;
}

.child-tab .nav-item .nav-link img {
	opacity: 0.5;
	border-radius: 6px;
	width: 100%;
	height: 100%;
	border: 3px solid #fec225;
}

.child-tab .nav-item .nav-link span {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	font-weight: 500;
	color: #fff;
}

.child-tab .nav-item .nav-link.active,
.child-tab .nav-item .show>.nav-link {
	height: 100px;
	width: 90px;
	box-shadow: 0 8px 14px 0 #cb960e;
	border-radius: 6px;
}

.child-tab .nav-item .nav-link.active img,
.child-tab .nav-item .show>.nav-link img {
	border: 3px solid #fff;
	border-radius: 6px;
	opacity: 1;
}

.child-tab .nav-item .nav-link.active span {
	top: 135%;
}

.first-section .child-pane,
.second-block .child-pane {
	background: #fff;
	margin-top: 60px;
	border-radius: 14px;
	box-shadow: 0 0 14px 0 #cb960e;
}

.child-tab {
	position: relative;
}

.child-tab:after,
.child-tab:before {
	content: "";
	position: absolute;
	height: 1px;
	width: 150px;
	background: #fff;
	top: 50%;
}

.child-tab:after {
	right: 18%;
}

.child-tab:before {
	left: 18%;
}

.child-tab .nav-item .nav-link.active:after {
	content: "";
	position: absolute;
	top: 143%;
	width: 26px;
	height: 20px;
	left: 0;
	right: 0;
	margin: 0 auto;
	background-image: url(../img/icons/arrow-up.png);
	background-size: 100% 100%;
}

.custom-input-style .form-control {
	background-color: #fff3d3;
	border: none;
	font-weight: 500;
	height: 50px;
	font-size: 14px;
}

.custom-input-style select.form-control {
	background-image: url(../img/icons/caret-down.png);
	background-repeat: no-repeat;
	background-position: 95% center;
	background-size: 10px;
}

.custom-input-style [class*="icofont-"] {
	color: #fec225;
}

.btn.mt-25 {
	margin-top: 22px;
}

.custom-input-style a.btn {
	height: 50px;
	background: #000;
	width: 100%;
	color: #fff;
	text-transform: uppercase;
	line-height: 40px;
}

.custom-input-style a.btn [class*="icofont-"] {
	right: -15px;
	bottom: 0;
	color: #fff;
}

.custom-input-style a.btn:hover,
.custom-input-style a.btn:focus {
	background: #fec225;
}

.child-tab-2 .nav-item .nav-link {
	background: #fff3d3;
	text-transform: capitalize;
	width: 109px;
	height: 36px;
	padding: 0;
	line-height: 36px;
	border-radius: 6px;
	margin: 0 -3px;
	color: #222
}

.child-tab-2 .nav-item .nav-link.active,
.child-tab-2 .nav-item .show>.nav-link {
	background: #ffe7a7;
	border: 2px solid #fdc125;
	z-index: 9;
	position: relative;
}

.check-custom-style {
	display: block;
	position: relative;
	padding-left: 35px;
	cursor: pointer;
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
	margin: 0 25px;
}

.check-custom-style input {
	position: absolute;
	opacity: 0;
	cursor: pointer;
	height: 0;
	width: 0;
}

.checkmark {
	position: absolute;
	top: 0;
	left: 0;
	height: 21px;
	width: 21px;
	background-color: #fff;
	border: 3px solid #fabf24;
	border-radius: 4px;
}

.check-custom-style:hover input~.checkmark {
	background-color: #fff;
}

.check-custom-style input:checked~.checkmark {
	background-color: #fff;
}

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

.check-custom-style input:checked~.checkmark:after {
	display: block;
}

.check-custom-style .checkmark:after {
	left: 3px;
	top: 3px;
	width: 9px;
	height: 9px;
	background: #fabf24;
	border-radius: 2px;
}

.check-block {
	display: flex;
	flex-wrap: wrap;
}

@media only screen and (max-width: 1200px) {
	.first-section {
		margin-top: -60px;
	}
	.child-tab::after,
	.child-tab::before {
		width: 90px;
	}
	.check-custom-style {
		margin: 0 15px;
	}
	.custom-input-style .form-control {
		font-size: 11px;
	}
	.custom-input-style a.btn {
		font-size: 14px;
	}
	.custom-input-style a.btn [class*="icofont-"] {
		right: -5px;
	}
	.child-tab .nav-item .nav-link.active,
	.child-tab .nav-item .show>.nav-link {
		height: 85px;
		width: 75px;
	}
	.child-tab .nav-item .nav-link {
		height: 75px;
		width: 65px;
	}
	.child-tab .nav-item .nav-link.active:after {
		top: 151%;
	}
}

@media only screen and (max-width: 991px) {
	.custom-input-style [class*="col-"] {
		width: 100% !important;
		padding: 0 15px !important;
		margin-bottom: 15px;
	}
	.custom-input-style [class*="icofont-"] {
		right: 30px;
	}
	.custom-input-style .icofont-calendar.mr-10 {
		margin-right: 0 !important;
	}
	.custom-input-style .form-control {
		font-size: 13px;
	}
	.check-custom-style {
		margin: 4px 0;
		width: 100%;
	}
	.child-tab::after,
	.child-tab::before {
		width: 50px;
	}
}


@media only screen and (max-width: 420px) {
	.parent-tab .nav-item .nav-link {
		width: 5.5rem !important;
	}

	.short-filter .custom-select-form .nice-select {
		width: 8rem !important;
	}
	.short-filter .custom-select-form .nice-select .list {
		font-size: 0.7rem !important;
	}
}

@media only screen and (max-width: 767px) {
	.first-section {
		margin-top: -55px;
	}
	.parent-tab .nav-item .nav-link {
		width: 130px;
	}
	.child-tab .nav-item .nav-link.active,
	.child-tab .nav-item .show>.nav-link {
		height: 70px;
		width: 65px;
	}
	.child-tab .nav-item .nav-link {
		height: 60px;
		width: 55px;
	}
	.child-tab .nav-item .nav-link span {
		font-size: 13px;
	}
	.child-tab:after {
		right: 0;
	}
	.child-tab:after,
	.child-tab:before {
		width: 80px;
	}
	.child-tab:before {
		left: 0;
	}
	.child-tab .nav-item .nav-link.active:after {
		top: 170%;
	}
	.justify-content-center.check-block {
		justify-content: start !important;
	}
	.second-section .mt-5 {
		margin-top: 1rem !important;
	}
	.layer-style h2 {
		font-size: 72px;
	}
	.second-section {
		padding: 200px 0 30px;
	}
	.mt-5.justify-content-center.check-block {
		margin-top: 2rem !important;
	}
}

@media only screen and (max-width: 480px) {
	.tab-content.child-pane .p-4 {
		padding: 15px !important;
	}
	.child-tab-2 .nav-item .nav-link {
		width: 100px;
	}
	.child-tab::after,
	.child-tab::before {
		width: 50px;
	}
}

@media only screen and (max-width: 400px) {
	.child-tab-2 .nav-item .nav-link {
		width: 85px;
	}
	.child-tab::after,
	.child-tab::before {
		width: 34px;
	}
}

@media only screen and (max-width: 360px) {
	.parent-tab .nav-item .nav-link {
		width: 110px;
		font-size: 10px;
	}
	.child-tab .nav-item .nav-link {
		height: 50px;
		width: 45px;
	}
	.child-tab .nav-item .nav-link.active,
	.child-tab .nav-item .show>.nav-link {
		height: 55px;
		width: 50px;
	}
	.child-tab .nav-item .nav-link span {
		font-size: 10px;
	}
	.child-tab:after,
	.child-tab:before {
		width: 14px;
	}
	.tab-content.child-pane .p-4 {
		padding: 10px !important;
	}
	.child-tab-2 .nav-item .nav-link {
		width: 74px;
		font-size: 14px;
	}
	.child-pane {
		margin-top: 50px;
	}
	.mt-5.justify-content-center.check-block {
		margin-top: 1.5rem !important;
	}
	.layer-style h2 {
		font-size: 50px;
		bottom: 0;
	}
}


/*-----second explore section -----*/

.second-section {
	padding: 200px 0 80px;
	position: relative;
}

.explore-content {
	position: relative;
	z-index: 9;
}

.explore-content h6 {
	font-weight: 300;
	letter-spacing: 3px;
	font-size: 14px;
}

.second-section .shape-style1,
.second-section .shape-style2 {
	background: rgba(214, 214, 214, 0.2);
}

.second-section .shape-style2 {
	width: 220px;
	height: 250px;
	left: 3%;
	top: 180px;
}

.second-section .shape-style1 {
	width: 160px;
	height: 160px;
	left: 10%;
}

.layer-style h2 {
	font-family: beyondthemountains;
	font-size: 139px;
	color: #f4f4f4;
	font-weight: 400;
	position: absolute;
	right: -20px;
	bottom: 80px;
	z-index: -1;
}

@media only screen and (max-width: 767px) {
	.layer-style h2 {
		font-size: 72px;
	}
	.second-section {
		padding: 100px 0 30px;
	}
	.layer-style h2 {
		bottom: 0;
	}
}

@media only screen and (max-width: 360px) {
	.layer-style h2 {
		font-size: 50px;
	}
}


/*
-----------------------------------------------------------------------
	Featured Events section CSS 
-----------------------------------------------------------------------
*/

.feature-event-area {
	padding: 70px 0;
}

.title {
	font-size: 64px;
}

.subtitle-content h5,
.about-us-area .testimonial-slider .client-content h5,
.subtitle-content {
	color: #222;
	font-weight: 400;
	font-size: 14px;
	letter-spacing: 4px;
}

.feature-event-info .content {
	position: relative;
}

.feature-event-info .content h3 {
	font-size: 24px;
	padding-top: 20px;
	margin-bottom: 0;
	font-weight: 500;
}

.feature-event-info .content h3 a {
	color: #222;
}

.feature-event-info .content a.category {
	color: #fec225;
	font-size: 17px;
}

.feature-event-info a.date-time {
	color: #333;
}

.feature-event-info .content .amt-price {
	background: #fff;
	display: block;
	position: absolute;
	top: -46px;
	padding: 10px 15px;
	border-radius: 0 10px 0 0;
}

.feature-event-list-prev.swiper-button-prev,
.feature-event-list-next.swiper-button-next {
	position: relative;
	display: inline-flex;
	font-size: 45px;
	top: 40%;
	color: #666;
}

.feature-event-list-prev.swiper-button-prev:hover,
.feature-event-list-next.swiper-button-next:hover {
	color: #222;
}

.feature-event-list-prev.swiper-button-prev {
	left: -30px;
}

.feature-event-list-next.swiper-button-next {
	left: 60px;
}

.swiper-button-next:after,
.swiper-button-prev:after {
	display: none;
}

@media only screen and (max-width: 767px) {
	.title {
		font-size: 46px;
	}
}

@media only screen and (max-width: 360px) {
	.title {
		font-size: 30px;
	}
	.subtitle-content h5,
	.about-us-area .testimonial-slider .client-content h5,
	.subtitle-content {
		font-size: 10px;
	}
}


/*
-----------------------------------------------------------------------
	About us section CSS 
-----------------------------------------------------------------------
*/

.about-us-area {
	position: relative;
	padding: 50px 0 130px;
}

.about-us-area .testimonial-single {
	display: flex;
}

.about-us-area .testimonial-single .icon-box {
	width: 35%;
	position: relative;
	z-index: 9;
}

.about-us-area .testimonial-slider .client-content {
	padding: 100px 60px 0 160px;
	width: 70%;
	border-radius: 10px;
	height: 460px;
	position: relative;
	float: right;
	background-image: url(../img/about/about-us-bg.jpg);
	background-position: center;
	margin-top: 70px;
	margin-left: -70px;
}

.about-us-area .testimonial-slider .client-content * {
	color: #fff !important;
}

.icon-box img {
	border-radius: 10px;
}

.about-us-area .layer-style h2 {
	bottom: 0;
	right: 0;
	margin-left: 30%;
	position: relative;
}

.about-us-area .layer-style .shape-style1,
.about-us-area .layer-style .shape-style2 {
	left: auto;
	background: rgba(214, 214, 214, 0.2);
}

.about-us-area .layer-style .shape-style2 {
	height: 250px;
	top: 75px;
	right: 70px;
}

.about-us-area .layer-style .shape-style1 {
	right: 0;
	top: 0;
	width: 125px;
	height: 125px;
}

.about-us-area .swiper-container {
	margin-top: -50px;
}

.about-us-area .move-slide-arrow {
	position: absolute;
	bottom: 30px;
	left: 80px;
}

@media only screen and (max-width: 767px) {
	.about-us-area .testimonial-single {
		flex-wrap: wrap;
	}
	.about-us-area .testimonial-slider {
		position: relative;
	}
	.about-us-area .testimonial-single .icon-box {
		width: 65%;
		position: relative;
		z-index: 9;
		margin-left: 40px;
	}
	.about-us-area .testimonial-single .client-content {
		padding: 80px 40px 40px;
		width: 100%;
		margin-left: 0;
		margin-top: -50px;
	}
	.about-us-area .move-slide-arrow {
		bottom: 0;
		left: 0;
	}
	.about-us-area .swiper-container {
		padding-bottom: 60px;
	}
	.about-us-area {
		padding: 40px 0;
	}
	.about-us-area .testimonial-single .icon-box {
		margin-left: 30px;
	}
}

@media only screen and (max-width: 360px) {
	.about-us-area .swiper-container {
		margin-top: -30px;
	}
	.about-us-area .testimonial-single .client-content {
		padding: 60px 30px 30px;
		margin-top: -30px;
	}
}


/*
-----------------------------------------------------------------------
	Hapy section CSS 
-----------------------------------------------------------------------
*/

.hapy-traveler-area {
	background: #fec225;
	padding: 100px 0;
}

.hapy-traveler-area .testimonial-single {
	display: flex;
	justify-content: space-between;
}

.hapy-traveler-area .client-content {
	width: 60%;
	text-align: right;
	background: #fff;
	padding: 40px;
	border-radius: 10px;
}

.hapy-traveler-area .icon-box {
	width: 38%;
}

.hapy-traveler-area .client-content p {
	font-size: 20px;
}

.hapy-traveler-area .client-content h5 {
	font-weight: 500;
}

.hapy-traveler-area .client-content h6 {
	font-weight: 400;
	color: #666;
}

.hapy-traveler-area .client-content h3 {
	font-size: 34px;
	position: relative;
}

.hapy-traveler-area .client-content h3:before {
	content: "";
	position: absolute;
	margin-top: -40px;
	background-image: url(../img/testimonial/icon.png);
	background-size: 100% 100%;
	width: 48px;
	height: 42px;
	left: 0;
}

.hapy-traveler-area .layer-style h2 {
	top: -80px;
	color: #fecf67;
}

.hapy-traveler-area .shape-style1 {
	top: -200px;
	left: -100px;
}

.hapy-traveler-area .shape-style2 {
	top: -60px;
	left: -250px;
}

.hapy-traveler-area .shape-style3 {
	width: 80px;
	height: 80px;
	top: 85%;
	right: 0;
}

.hapy-traveler-area .shape-style4 {
	width: 120px;
	height: 120px;
	bottom: -70px;
	right: 40px;
}

.hapy-traveler-area .section-title * {
	color: #fff;
}

@media only screen and (max-width: 1200px) {
	.hapy-traveler-area .client-content h3 {
		font-size: 24px;
	}
	.hapy-traveler-area .client-content p {
		font-size: 16px;
	}
}

@media only screen and (max-width: 767px) {
	.hapy-traveler-area .client-content {
		width: 100%;
		margin-top: -35px;
	}
	.hapy-traveler-area {
		padding: 70px 0;
	}
	.hapy-traveler-area .testimonial-single {
		flex-wrap: wrap;
		flex-direction: column-reverse;
		align-items: flex-end;
	}
	.hapy-traveler-area .icon-box {
		margin-right: 35px;
	}
	.hapy-traveler-area .client-content p {
		font-size: 17px;
	}
	.hapy-traveler-area .client-content h3 {
		font-size: 24px;
	}
}

@media only screen and (max-width: 360px) {
	.move-slide-arrow.pt-5.mt-4 {
		padding-top: 0 !important;
	}
	.hapy-traveler-area {
		padding: 60px 0;
	}
}


/*
-----------------------------------------------------------------------
	Contact  section CSS 
-----------------------------------------------------------------------
*/

.contact-section {
	padding: 200px 0;
	position: relative;
}

.contact-block {
	border-radius: 10px;
	height: 500px;
	background-image: url(../img/home-photos/contact-bg.jpg);
	width: 100%;
	background-position: top center;
}

.contact-form {
	position: absolute;
	right: 15%;
	max-width: 600px;
	background: #fff;
	box-shadow: 0 0 3px 1px #f2f2f2;
	border-radius: 10px;
	padding: 70px;
	top: 50%;
	transform: translate(0, -50%);
}

.contact-form .form-control,
.contact-form textarea {
	background: #f3f5f5;
	border: none;
	width: 100%;
	min-height: 44px;
}

.contact-form label {
	padding-left: 15px;
	color: #999;
	display: block;
	margin-bottom: 10px;
}

.contact-form textarea {
	height: 100px;
	resize: none;
	padding: 15px;
	border-radius: 4px;
}

.contact-form .btn.btn-theme {
	border: 2px solid #f3f5f5;
	padding: 12px 40px;
	color: #000;
}

.contact-section .layer-style h2 {
	bottom: 40%;
	left: 12%;
	color: rgba(255, 255, 255, 0.3);
}

@media only screen and (max-width: 767px) {
	.contact-form {
		right: 30px;
		max-width: 440px;
		padding: 40px;
	}
	.contact-form {
		right: 0;
	}
}

@media only screen and (max-width: 360px) {
	.contact-section {
		padding: 100px 0;
	}
	.contact-form {
		max-width: 280px;
		padding: 20px;
	}
}

.footer-area {
	background: #184150;
	padding: 100px 0 0 0;
}


/*
-----------------------------------------------------------------------
	Footer section CSS 
-----------------------------------------------------------------------
*/

.footer-area h4,
.footer-area p {
	color: #fff;
}

.footer-bottom {
	background: #315663;
	padding: 15px 0;
}

.footer-area .nav-menu.nav li {
	width: 100%;
}

.footer-area .nav-menu.nav li a {
	color: #f7f8f8;
	padding: 2px 0;
	display: block;
}

.footer-area .nav-menu.nav li a:hover,
.footer-area .nav-menu.nav li a:focus {
	color: #fec225;
}

.widget-newsletter form {
	display: flex;
}

.widget-newsletter form .form-control {
	background: transparent;
	color: #fff;
	margin-right: 15px;
}

.widget-newsletter form button {
	background: transparent;
	border: none;
	padding: 0;
	font-size: 30px;
	color: #fff;
}

.widget-newsletter form button:hover,
.widget-newsletter form button:focus {
	color: #fec225;
}

.widget-social-icons {
	display: flex;
}

.widget-social-icons a {
	display: block;
	color: #fff;
	margin-right: 15px;
}

.widget-social-icons a:hover,
.widget-social-icons a:focus {
	color: #fec225;
}

.event-info {
	display: flex;
}

.avatar {
	margin-right: 15px;
}

.avatar img {
	border-radius: 4px;
	max-width: 90px;
}

.media-body span {
	display: block;
}

.poster-tem,
.event-date {
	color: #666;
	font-size: 17px;
	font-weight: 400;
}

span.js-lists-values-employee-name {
	font-size: 20px;
	font-weight: 500;
}

.custom-event-table tr th {
	font-weight: 400;
}

.custom-event-table tbody tr td {
	background-color: rgba(255, 255, 255, 0.5);
	font-weight: 500;
	color: #000;
	vertical-align: middle;
}

.custom-event-table tbody tr td:last-child {
	border-radius: 0 6px 6px 0;
}

.custom-event-table tbody tr td:first-child {
	border-radius: 6px 0 0 6px;
}

.custom-event-table tbody tr:nth-child(odd) td {
	background-color: #fff;
}

.event-info-block {
	max-height: 500px;
	overflow: hide;
	overflow-y: auto;
	padding-right: 10px;
}

.event-info-block::-webkit-scrollbar {
	width: 10px;
}


/* Track */

.event-info-block::-webkit-scrollbar-track {
	box-shadow: inset 0 0 5px #fff;
	border-radius: 10px;
}


/* Handle */

.event-info-block::-webkit-scrollbar-thumb {
	background: #fff;
	border-radius: 10px;
}

.short-filter input.form-control {
	max-width: 270px;
	background: transparent;
	border: 1px solid #fff;
	color: #fff;
	padding-right: 30px;
}

.short-filter .btn {
	color: #fff;
	margin-left: -45px;
}

.short-filter .custom-select-form .nice-select {
	width: 12rem;
	padding-top: 0.15rem;
	background-color: transparent;
	border: 1px solid #fff;
	color: #fff;
	margin-left: 10px;
	height: 2.6rem;
	line-height: 36px
}

.short-filter .custom-select-form .nice-select::after {
	border-bottom: 2px solid #fff;
	border-right: 2px solid #fff;
}

.custom-event-table {
	min-width: 600px;
	border-collapse: separate;
    border-spacing: 0 0.6em;
}
.btn-dark:hover {opacity:0.8}
.short-filter input::-webkit-input-placeholder {
	color: #fff;
}

.short-filter input:-ms-input-placeholder {
	color: #fff;
}

.short-filter input::placeholder {
	color: #fff;
}

@media only screen and (max-width: 360px) {
	.footer-area {
		padding: 60px 0 0 0;
	}
}


/*
-----------------------------------------------------------------------
  Event Page CSS
-----------------------------------------------------------------------
*/

.mw-120 {
	min-width: 120px
}

.events-tab .nav-item .nav-link {
	background: #fff3d3;
	color: #000;
}

.second-block .tab-content {
	max-width: 100%
}

.inner-pages-banner {
	position: relative
}

.inner-pages-banner .shape-style4 {
	width: 300px;
	height: 150px;
	bottom: 0;
	right: 180px;
}

.inner-pages-banner .shape-style3 {
	height: 220px;
	bottom: 0;
	right: 50px;
	top: auto
}

.charges-block {
	background-color: #fff9e9;
	padding: 40px 30px;
	text-align: center;
	border-radius: 4px 4px 0 0;
	border-bottom: 2px dotted #999;
}

.event-pack-info {
	background-color: #ffff;
	padding: 30px;
	text-align: center;
	border-radius: 0 0 4px 4px;
	position: relative
}

.event-pack-info::after,
.event-pack-info::before {
	content: "";
	position: absolute;
	top: -19px
}

.event-pack-info::after {
	width: 0;
	height: 0;
	border-left: 22px solid #fec225;
	border-top: 18px solid transparent;
	border-bottom: 18px solid transparent;
	left: 0;
}

.event-pack-info::before {
	width: 0;
	height: 0;
	border-right: 22px solid #fec225;
	border-top: 18px solid transparent;
	border-bottom: 18px solid transparent;
	right: 0;
}

.event-price.active .charges-block,
.event-price:hover .charges-block {
	background: #184150
}

.event-price.active .charges-block h3,
.event-price:hover .charges-block h3 {
	color: #fff
}

#staticBackdrop .btn-close {
	background: none;
	position: absolute;
	right: 10px;
	font-size: 24px;
	color: #fff;
	z-index: 99
}

.event-price:hover .btn-outline-dark,
.event-price.active .btn-outline-dark {
	color: #fff;
	background-color: #212529;
	border-color: #212529;
}

.create-events-tab li img {
	max-width: 160px;
	border-radius: 4px;
}

.create-events-tab li button.nav-link {
	padding: 0;
	position: relative;
	background: #000;
	border-radius: 4px;
}

.create-events-tab li button.nav-link.active {
	background: #fff;
	box-shadow: 0 0 5px 4px #ccc
}

.events-list .col-auto span {
	text-align: center;
	display: block;
	font-weight: 600;
	text-transform: uppercase;
	font-size: 13px;
	padding-top: 10px
}

.events-list a {
	background: #fff2d0;
	width: 100px;
	height: 100px;
	display: block;
	text-align: center;
	border-radius: 50%;
	line-height: 92px;
	margin: 0 auto;
	border: 4px solid #fff
}

.events-list a:hover,
.events-list a.active {
	background: #fec225;
	box-shadow: 0 0 0 2px #fec225
}

.events-list a img:last-child,
.events-list a:hover img:first-child,
.events-list a.active img:first-child {
	display: none
}

.events-list a:hover img:last-child {
	display: inline
}

.events-list a.active img:last-child {
	display: inline;
}

.block-title {
	position: relative;
	z-index: 2;
	font-size: 1.3rem;
	margin-top: 15px
}

.block-title::before {
	content: "";
	background: #fff2d0;
	width: 46px;
	height: 46px;
	border-radius: 50%;
	position: absolute;
	z-index: -1;
	margin: -12px 0 0 -15px;
}

.public-private-block .btn {
	background: #fff2d0;
	width: 120px;
	height: 46px;
}

.public-private-block .btn.active {
	background: #ffe6a5;
	border: 2px solid #fec225;
}

.public-private-block div {
	background: #fff2d0;
	border-radius: 4px;
	width: max-content;
}

.custom-input-block .form-group .form-control,
.custom-input-block .input-group-prepend {
	min-height: 46px;
	border: 2px solid #ddd
}

.custom-input-block .form-group .input-group-merge .form-control {
	border-right: none
}

.custom-input-block .input-group-prepend {
	border-radius: 0 4px 4px 0;
	border-left: none
}

.custom-input-block .input-group-prepend .input-group-text,
.custom-input-style .input-group-prepend .input-group-text {
	height: 100%;
	background: transparent;
	border: none;
	color: #f98f17
}

.custom-input-style .input-group-prepend .input-group-text {
	background-color: #fff3d3;
}

.custom-input-block .input-group {
	max-width: 220px
}

.w-380 {
	max-width: 380px
}

.upload-btn {
	background: #fff8e5;
	border: 2px dotted #fec225;
	border-radius: 4px;
	position: relative
}

.upload-btn img {
	max-width: 58px
}

.upload-btn span {
	padding-top: 10px;
	display: block
}

.upload-btn input {
	position: absolute;
	left: 0;
	top: 0;
	height: 100%;
	width: 100%;
	opacity: 0
}

.w-120 {
	min-width: 120px
}

.tab-content .border.rounded {
	height: 100%;
	background: #fffefb
}

.event-create-step .step-tab .nav-link.active {
	background: #fec225;
	border: 1px solid #fec225;
	color: #fff
}

.event-create-step .step-tab .nav-link {
	background: #fff8e7;
	border: 1px solid #fff8e7;
	border-radius: 4px;
	text-transform: capitalize;
	padding: 15px 35px;
	margin: 0 50px;
	position: relative;
}

.event-create-step .step-tab .nav-link,
.event-create-step .step-tab .nav-link strong {
	font-weight: 500
}

.event-create-step .step-tab .nav-link.active strong {
	color: #fff
}

.event-create-step .step-tab .nav-link:after {
	content: "";
	position: absolute;
	height: 2px;
	width: 60px;
	background: #fec225;
	border-radius: 4px;
	right: -75px;
	top: 50%;
	margin-top: -1px
}

.event-create-step .step-tab .nav-item:last-child .nav-link::after {
	display: none
}

.event-create-step .nav-tabs {
	border-bottom: none;
}

.create-events-tab .nav-item {
	margin: 0 15px
}

.event-create-step .nav-tabs .nav-link img {
	opacity: 0.5;
	border-radius: 4px;
	width: 100%;
	height: 100%;
}

.event-create-step .nav-tabs .nav-link.active img {
	border: 3px solid #fff;
	border-radius: 6px;
	opacity: 1;
}

.event-create-step .nav-tabs .nav-link span {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	font-weight: 500;
	color: #fff;
}

.event-create-step .nav-tabs .nav-link.active span {
	top: 125%;
	color: #333
}

.create-events-tab .nav-item .nav-link.active:after {
	content: "";
	position: absolute;
	top: 142%;
	width: 0;
	height: 0;
	border-bottom: 10px solid #dee2e6;
	border-left: 10px solid transparent;
	border-right: 10px solid transparent;
	left: 0;
	right: 0;
	margin: 0 auto;
}

.text-right {
	text-align: right
}

.back-btn {
	border: none;
	margin-right: 25px
}

.btn {
	min-height: 42px
}

.events-list.nav-pills .nav-link {
	background: #fff3d3;
	color: #222;
}


/*-------- Sign_In CSS --------*/

.sign-in-block {
	background: url(../img/home-photos/sign-in.jpg);
	background-position: right;
	background-repeat: no-repeat;
	border: none;
}

.sing-up-wrap {
	padding: 120px 40px 120px 120px
}

.sing-up-wrap .form-control {
	background: #305462;
	border: none;
	color: #fff;
	height: 42px
}

.sing-up-wrap .form-group label,
.sing-up-wrap a {
	color: #fff
}

.sing-up-wrap img.logo-pick {
	max-width: 60px;
}

.sing-up-wrap p {
	color: #999
}

.sing-up-wrap h6 {
	margin: 0;
	color: #fff;
	letter-spacing: 4px;
	font-weight: 400;
	text-transform: uppercase;
	font-size: 12px;
}

.sing-up-wrap h3 {
	font-size: 2.5rem;
	color: #fff;
}

.sing-up-wrap .d-flex {
	justify-content: space-between;
}

.sing-up-wrap .d-flex .btn {
	flex-basis: 47%
}

.go-btn {
	background: #fec225;
	color: #fff;
	font-weight: 700
}

.google-btn {
	border: 1px solid #fff
}

.google-btn:hover {
	opacity: 0.8
}

.google-btn img {
	max-width: 14px
}

#login_tab .btn-close,
#signup_tab .btn-close {
	position: absolute;
	right: 15px;
	top: 10px;
	color: #fff;
	font-size: 24px;
	padding: 0;
	z-index: 99;
	background: none
}

.sign-in-block .bg-green,
.sign-up-block .bg-green {
	position: relative;
	max-width: 45%;
}

.sign-in-block .bg-green::after {
	content: "";
	position: absolute;
	right: -93px;
	background: url(../img/home-photos/sign-in-bg-shape.png);
	top: 0;
	height: 100%;
	height: 100%;
	width: 93px;
	background-size: contain;
	background-repeat: no-repeat;
}

.numbers-row {
	position: relative;
	width: 120px;
	height: 40px;
	overflow: visible;
	margin: auto;
}

input.qty2 {
	position: relative;
	width: 40px;
	height: 40px;
	text-align: center;
	background: none;
	padding: 5px;
	border: 1px solid #ddd;
	border-radius: 4px;
}

.button_inc {
	cursor: pointer;
	position: absolute;
	width: 33px;
	height: 40px;
	line-height: 38px;
	text-align: center;
	z-index: 2;
	font-size: 26px;
	font-size: 1.625rem;
	font-weight: 300 !important;
	color: #999;
}

.inc {
	right: 0;
	top: 0;
}

.dec {
	left: 0;
	top: 0;
}

.visible-hide {
	opacity: 0
}

.inc.button_inc.active {
	color: #333
}


/*-------- Event & Create Event Mobile CSS --------*/

@media only screen and (max-width: 1200px) {
	.events-list a {
		width: 80px;
		height: 80px;
		line-height: 72px;
	}
	.events-list .col span {
		font-size: 11px;
	}
	.block-title {
		font-size: 1.1rem;
	}
}

@media only screen and (max-width: 991px) {
	.inner-pages-banner .content h2 {
		font-size: 40px;
	}
	.inner-pages-banner img {
		min-height: 160px
	}
	.mtb-80 {
		margin: 60px 0;
	}
	.event-create-step .step-tab .nav-link {
		padding: 15px 15px;
		margin: 0 5px;
	}
	.event-create-step .step-tab .nav-link::after {
		display: none
	}
	.create-events-tab li img {
		max-width: 100px;
	}
	.create-events-tab .nav-item {
		margin: 0 5px;
	}
	.create-events-tab .nav-item .nav-link.active::after {
		top: 168%;
	}
}

@media only screen and (max-width: 991px) {
	.ticket-block {
		margin-bottom: 25px
	}
}

@media only screen and (max-width: 460px) {
	.event-create-step ul.step-tab li {
		width: 100%;
		margin: 0
	}
	.event-create-step .step-tab .nav-link {
		margin: 0 0;
		width: 100%
	}
	.event-create-step .nav-tabs .nav-link span {
		font-size: 12px;
	}
}

@media only screen and (max-width: 420px) {
	.step-block-3 {
		flex-wrap: wrap;
	}
	.step-block-3 .form-group.mr-10 {
		margin: 0 0 15px
	}
}

@media only screen and (max-width: 375px) {
	.create-events-tab li img {
		max-width: 80px;
	}
	.create-events-tab .nav-item .nav-link.active::after {
		top: 183%;
	}
	.public-private-block .btn {
		width: 110px;
	}
}


/*-------- Sign_Up CSS --------*/

.sign-up-block {
	background: url(../img/home-photos/sign-up.jpg);
	background-position: -140px center;
	background-repeat: no-repeat;
	border: none;
}

.sign-up-block .sing-up-wrap {
	padding: 80px 120px 80px 40px;
}

.sign-up-block .sing-up-wrap .d-flex .btn {
	flex-basis: 100%;
}

.sign-up-block .bg-green::before {
	content: "";
	position: absolute;
	left: -60px;
	background: url(../img/home-photos/sign-up-bg-shape.png);
	top: 0;
	height: 100%;
	height: 100%;
	width: 93px;
	background-size: contain;
	background-repeat: no-repeat;
}


/*-------- Sign_In MObile CSS --------*/

@media only screen and (max-width: 1200px) {
	.sing-up-wrap {
		padding: 60px 40px 60px 60px;
	}
	.sign-up-block .sing-up-wrap {
		padding: 60px 40px 60px 30px;
	}
}

@media only screen and (max-width: 991px) {
	.sign-in-block .bg-green,
	.sign-up-block .bg-green {
		max-width: 100%;
	}
	.sign-in-block .bg-green::after {
		display: none
	}
	.sing-up-wrap {
		padding: 60px 60px 60px 60px;
	}
	.sign-up-block .bg-green::before {
		display: none
	}
	.sign-up-block .sing-up-wrap {
		padding: 60px 60px 60px 60px;
	}
}

@media only screen and (max-width: 420px) {
	.sing-up-wrap {
		padding: 30px 30px 30px 30px;
	}
	.sign-up-block .sing-up-wrap {
		padding: 30px 30px 30px 30px;
	}
}


/*-------- nice-select CSS --------*/

.nice-select {
	-webkit-tap-highlight-color: transparent;
	background-color: #fff3d3;
	border-radius: 5px;
	border: solid 1px #fff3d3;
	box-sizing: border-box;
	clear: both;
	cursor: pointer;
	display: block;
	float: left;
	font-family: inherit;
	font-size: 14px;
	font-weight: normal;
	height: 50px;
	line-height: 48px;
	outline: none;
	padding-left: 18px;
	padding-right: 30px;
	position: relative;
	text-align: left !important;
	-webkit-transition: all 0.2s ease-in-out;
	transition: all 0.2s ease-in-out;
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
	white-space: nowrap;
	width: auto;
}

.nice-select:hover {
	border-color: #fff3d3;
}

.nice-select:active,
.nice-select.open,
.nice-select:focus {
	border-color: #fff3d3;
}

.nice-select:after {
	border-bottom: 2px solid #fec225;
	border-right: 2px solid #fec225;
	content: '';
	display: block;
	height: 8px;
	margin-top: -4px;
	pointer-events: none;
	position: absolute;
	right: 12px;
	top: 50%;
	-webkit-transform-origin: 66% 66%;
	-ms-transform-origin: 66% 66%;
	transform-origin: 66% 66%;
	-webkit-transform: rotate(45deg);
	-ms-transform: rotate(45deg);
	transform: rotate(45deg);
	-webkit-transition: all 0.15s ease-in-out;
	transition: all 0.15s ease-in-out;
	width: 8px;
}

.nice-select.open:after {
	-webkit-transform: rotate(-135deg);
	-ms-transform: rotate(-135deg);
	transform: rotate(-135deg);
}

.nice-select.open .list {
	opacity: 1;
	pointer-events: auto;
	-webkit-transform: scale(1) translateY(0);
	-ms-transform: scale(1) translateY(0);
	transform: scale(1) translateY(0);
}

.nice-select.disabled {
	border-color: #ededed;
	color: #999;
	pointer-events: none;
}

.nice-select.disabled:after {
	border-color: #cccccc;
}

.nice-select.wide {
	width: 100%;
}

.nice-select.wide .list {
	left: 0 !important;
	right: 0 !important;
}

.nice-select.right {
	float: right;
}

.nice-select.right .list {
	left: auto;
	right: 0;
}

.nice-select.small {
	font-size: 12px;
	height: 36px;
	line-height: 34px;
}

.nice-select.small:after {
	height: 4px;
	width: 4px;
}

.nice-select.small .option {
	line-height: 34px;
	min-height: 34px;
}

.nice-select .list {
	background-color: #fff;
	border-radius: 3px;
	box-shadow: 0 0 0 1px rgba(68, 68, 68, 0.11);
	box-sizing: border-box;
	margin-top: 4px;
	opacity: 0;
	overflow: hidden;
	padding: 0;
	pointer-events: none;
	position: absolute;
	top: 100%;
	left: 0;
	-webkit-transform-origin: 50% 0;
	-ms-transform-origin: 50% 0;
	transform-origin: 50% 0;
	-webkit-transform: scale(0.75) translateY(-21px);
	-ms-transform: scale(0.75) translateY(-21px);
	transform: scale(0.75) translateY(-21px);
	-webkit-transition: all 0.2s cubic-bezier(0.5, 0, 0, 1.25), opacity 0.15s ease-out;
	transition: all 0.2s cubic-bezier(0.5, 0, 0, 1.25), opacity 0.15s ease-out;
	z-index: 10;
}

.nice-select .list:hover .option:not(:hover) {
	background-color: transparent !important;
}

.nice-select .option {
	cursor: pointer;
	font-weight: 400;
	line-height: 40px;
	list-style: none;
	min-height: 40px;
	outline: none;
	padding-left: 18px;
	padding-right: 29px;
	text-align: left;
	-webkit-transition: all 0.2s;
	transition: all 0.2s;
	color: #212529;
}

.nice-select .option:hover,
.nice-select .option.focus,
.nice-select .option.selected.focus {
	background-color: #f6f6f6;
}

.nice-select .option.selected {
	font-weight: bold;
}

.nice-select .option.disabled {
	background-color: transparent;
	color: #212529;
	cursor: default;
}

.no-csspointerevents .nice-select .list {
	display: none;
}

.no-csspointerevents .nice-select.open .list {
	display: block;
}
.select_role{
	color:#ccc;
}
.login{
	margin-top: 16px;
	font-size: 16px;
}
.slct_role_main label{
	margin-left:5px;
	color:#000 !important;
	background:#ccc;
	width:100%;
	padding: 7px 13px 7px 13px;
	text-align:center;
	cursor:pointer;
	border-radius: 5px;
    border-right: 2px solid #000;
}
.slct_role_main .active{
	background: #fec225;
}
.slct_role_main label:hover,.slct_role_main label:active,.slct_role_main label:focus{
	background: #fec225;
}
input#user,input#driver,input#admin,input#reg_user,input#reg_driver,input#reg_admin{
	display:none;
}
.slct_role_main .col-sm-4{
	margin:0 !important;
	padding:0 !important;
}

.info, .success, .warning, .error, .validation {
	border: 1px solid;
	margin: 10px 0px;
	padding: 15px 10px 15px 0px;
	background-repeat: no-repeat;
	background-position: 10px center;
}
.error{
	color: #D8000C;
	background-color: #FFBABA;
	background-image: url('https://i.imgur.com/GnyDvKN.png');
}

/* Event List on Home ** Style */
.event-card-Image-wrapper {
	min-height: 18rem;
	overflow: hidden;
	position: relative; /* Add this line */
}

.event-card-Image-wrapper::before { /* Add this block */
	content: "";
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	background: linear-gradient(to bottom, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0));
	z-index: 1;
}

.event-card-Image-wrapper img {
	width: 100%;
	height: 18rem;
	object-fit: cover;
	position: relative;
	z-index: 0;
	transition: transform 0.3s ease-in-out; /* Add this line */
}

.event-card-Image-wrapper:hover img { /* Add this block */
	transform: scale(1.1);
}
.event-card .category-badge {
    position: absolute !important;
    font-size: 0.7rem !important;
	z-index: 9;
	top:2%;
    /* transform: translateY(-90%); */
}
.event-card .location-badge{
	color: #fff;
	position: absolute;
	top: 17px;
	right: 15px;
	font-size: 17px;
	font-weight: 500;
	z-index: 9;
}



.event-card .card-body{
	padding: 2rem 2rem;
}

.event-card .card-body h5 a{
	font-size: 17px;
	font-weight: 600;
	line-height: 29px;
	text-align: left;
	transition: all ease-in-out .2s;
	overflow: hidden;
	text-overflow: ellipsis;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	color: #000;
}
.card-body h5 a:hover, .card-body h5 a:focus, .card-body h5 a:active, .card-body h5 a:visited{
	color: #000 !important;
}
.event-card{
	border: 1px solid #e5e5e5;
	border-radius: 10px;
	overflow: hidden;
	margin-bottom: 20px;
	box-shadow: 0 0 20px rgb(0 0 0 / 7%);
}

.event-price{
	font-weight: 600;
	font-size: 17px;
	line-height: 27px;
	color: #000;
	padding: 15px 0 10px 0;
}
.event-days{
	font-size: 14px;
	line-height: 22px;
	color: #000;
	padding: 15px 0 10px 0;
}
.event-days i {
	font-size: 20px;
}
.event-date, .event-duration{
	font-size: 14px;
	line-height: 22px;
	color: #000;
	margin-bottom: 10px;
}