@font-face {
	font-family: 'montserratregular';
	src: url('../fonts/montserrat-regular-webfont.woff2') format('woff2'),
		url('../fonts/montserrat-regular-webfont.woff') format('woff');
	font-weight: normal;
	font-style: normal;
}

@font-face {
	font-family: 'montserratlight';
	src: url('../fonts/montserrat-light-webfont.woff2') format('woff2'),
		url('../fonts/montserrat-light-webfont.woff') format('woff');
	font-weight: normal;
	font-style: normal;
}

@font-face {
	font-family: 'montserratbold';
	src: url('../fonts/montserrat-bold-webfont.woff2') format('woff2'),
		url('../fonts/montserrat-bold-webfont.woff') format('woff');
	font-weight: normal;
	font-style: normal;

}

*{
    margin: 0px;
    padding: 0px;
}
html{
    scroll-behavior: smooth;
}
h2{
    font-family:'montserratbold';
}
body {
    font-family: "Montserrat",sans-serif;
    font-weight: 400;
    color: #000;
}
/*****************************************/
.socialForResponsive {
    display: none;
}
.navbar-light .navbar-toggler-icon {
    background-image: url(../images/menu.png);
}
/*****************************************/

.deposit-scheme {
	padding: 60px 0;
	background: #e1e0e0;
}
.deposit-scheme form {
padding: 30px;
border: 1px solid #ccc;
background-color:  #fff;
background-image:  url("../images/crowd-hands.png");
background-repeat: no-repeat;
background-size: cover;
position: relative;
}
.deposit-scheme form:before {
	content: "";
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	background-color: rgba(255,255,255,0.5);
} 
.input-go {
	position: relative;
}
.input-go button {
	position: absolute;
	top: 0;
	right: 0;
	background: #303C6C;
	border: none;
	padding: 7px 24px;
	border-radius: 0;
}
.deposit-card {
	float: left;
	width: 100%;
	padding: 20px;
	border-radius: 4px;
	background: #303C6C;
	box-shadow: 0 4px 10px 0 rgba(0,0,0,0.3), 0 4px 20px 0 rgba(0,0,0,0.19);
	/*background-color: #fff;*/
	margin-bottom: 30px;
}
.cartPage-title h4 {
	color: #fff;
	font-family: 'montserratregular';
}
.deposit-card .form-group label {
	color: #fff;
}
.btn-danger {
	background: #23282d;
	border: none;
}

.sticky {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 999;
}

.login-text{
	margin-top:5%;margin-bottom:10%; padding:0 2%;
}

.top-header {
	background: #333;
}

.header-info {
	padding-top: 3px;
}

.header-info ul {
	list-style: none;
	margin: 0;
	padding: 0;
}

.header-info li {
	display: inline;
	color: #fff;
	margin-right: 10px;
	font-size: 14px;
}

.header-info a {
	color: #fff;
	padding-left: 5px;
	text-decoration: none;
	font-family: 'montserratlight';
}

.header-info-right {
	/* background: #000; */
}

.header-info-right ul {
	list-style: none;
	margin: 0;
	padding: 0;
}

.header-info-right li {
	color: #fff;
	font-size: 14px;
	border-right: 1px solid #ccc;
	padding: 6px 12px;
	display: inline-block;
}

.header-info-right a {
	color: #fff;
	padding-left: 5px;
	text-decoration: none;
	position: relative;
	font-family: 'montserratregular';
}

.header-info-right .badge {
	position: absolute;
	top: -3px;
	right: -14px;
	background: #0ab;
	color: #fff;
}

.cart-list {
	position: relative;
}

.dropdown-cart-menu {
	visibility: hidden;
	/* hides sub-menu */
	opacity: 0;
	z-index: 999;
	transform: translateY(-2em);
	transition: all 0.9s ease-in-out 0s, visibility 0s linear 0.3s, z-index 0s linear 0.01s;
}

.cart-list:focus .dropdown-cart-menu,
.cart-list:focus-within .dropdown-cart-menu,
.cart-list:hover .dropdown-cart-menu {
	visibility: visible;
	/* shows sub-menu */
	opacity: 1;
	z-index: 1;
	transform: translateY(0%);
	transition-delay: 0s, 0s, 0.3s;
	/* this removes the transition delay so the menu will be visible while the other styles transition */
}

.dropdown-cart-menu {
	position: absolute;
	top: 0;
	top: 34px;
	right: 0px;
	right: 0;
	background: #4e4e4e;
	z-index: 999;
	width: 300px;
	border-bottom: 3px solid #fff;
}

.dropdown-cart-menu ul {
	list-style: none;
	margin: 0;
	padding: 0;
	max-height: 183px;
	float: left;
	display: inline-block;
	overflow-y: scroll;
}

.dropdown-cart-menu li {
	display: block;
	border: none;
	float: left;
	width: 100%;
	border-bottom: 1px solid #ccc;
	padding: 15px;
}

/* width */
.dropdown-cart-menu ul::-webkit-scrollbar {
	width: 10px;
}

/* Track */
.dropdown-cart-menu ul::-webkit-scrollbar-track {
	box-shadow: inset 0 0 5px grey;
	border-radius: 10px;
}

/* Handle */
.dropdown-cart-menu ul::-webkit-scrollbar-thumb {
	background: red;
	border-radius: 10px;
}

/* Handle on hover */
.dropdown-cart-menu ul::-webkit-scrollbar-thumb:hover {
	background: #b30000;
}

.dropdown-cart-menu li a i {
	width: 16px;
	height: 16px;
	background: #fff;
	display: inline-block;
	float: left;
	text-align: center;
	margin-top: 8px;
	padding-top: 3px;
	margin-right: 5px;
	color: #dc3545;
	font-size: 10px;
	border-radius: 50%;
}

.dropdown-cart-menu li a {
	float: left;
}

.dropdown-cart-menu span {
	width: 30px;
	height: 30px;
	display: inline-block;
	overflow: hidden;
	background: #fff;
	float: left;
}

.dropdown-cart-menu span img {
	width: 100%;
	height: 100%;
}

.dropdown-cart-menu p {
	float: left;
	margin-left: 10px;
	margin-top: 3px;
	margin-bottom: 0;
}

.cart-subtotal {
	float: left;
	width: 100%;
	padding: 0 18px;
	margin-top: 15px;
}

.cart-subtotal h6 {
	float: left;
	padding: 0;
	margin: 0;
}

.cart-subtotal span {
	float: right;
	background: transparent;
	height: auto;
}

.cart-btns {
	float: left;
	width: 100%;
	padding: 15px
}

.cart-btns a {
	padding: 8px 16px;
	border-radius: 4px;
	color: #fff;
}

/*===========================side right===========================*/
.side-nav {
	position: fixed;
	top: 0;
	right: 0;
	width: 0px;
	height: 100%;
	background: #000;
	z-index: 999;
	transform: translate(100%, 0);
}

.side-nav ul {
	list-style: none;
	margin: 0;
	padding: 30px 15px;
}

.side-nav li {
	display: block;
}

.side-nav a {
	color: #fff;
	text-decoration: none;
	padding: 15px;
}

/*===========================side dropdown===========================*/
.sub-menu-parent {
	position: relative;
}

.sub-menu {
	visibility: hidden;
	/* hides sub-menu */
	opacity: 0;
	position: absolute;
	top: 100%;
	right: -1px;
	z-index: 999;
	width: 250px;
	transform: translateY(-2em);
	transition: all 0.9s ease-in-out 0s, visibility 0s linear 0.3s, z-index 0s linear 0.01s;
	background: #4e4e4e;
	border-radius: 4px;
}

.sub-menu-parent:focus .sub-menu,
.sub-menu-parent:focus-within .sub-menu,
.sub-menu-parent:hover .sub-menu {
	visibility: visible;
	/* shows sub-menu */
	opacity: 1;
	transform: translateY(0%);
	transition-delay: 0s, 0s, 0.3s;
	/* this removes the transition delay so the menu will be visible while the other styles transition */
}

.header-dp {
	width: 40px;
	height: 40px;
	overflow: hidden;
	background: #fff;
	float: left;
	margin-right: 10px;
	border-radius: 4px;
}

.header-dp img {
	width: 100%;
	height: 100%;
}

.header-cap h5 {
	color: #fff;
	font-family: 'montserratregular';
	margin-top: 10px;
}

.header-cap span {
	display: block;
	font-size: 14px;
	font-family: 'montserratlight'
}

.sub-menu li {
	width: 100%;
	border-bottom: 1px solid #ccc;
	padding: 15px;
	border-right: none;
}

.sub-menu li:last-child {
	border: none;
}

.sub-menu a {
	color: #fff;
	margin: 0;
}

.sub-menu .badge {
	background: #ca1e2c;
	color: #fff;
	float: right;
	position: static;

}

.sub-menu i {
	margin-right: 5px;
}

/*===========================navigation===========================*/
.navbar-light .navbar-brand {
	color: rgba(0, 0, 0, .9);
	margin-right: 30px;
}

.navbar-brand img{
	max-width: 180px !important; 
}

.navbar-dark .navbar-brand {
	color: #fff;
	margin-right: 40px;
}

.event-btn {
    background: #0ab;
	color: #fff;
	padding: 8px 24px;
	display: inline-block;
	border-radius: 20px;
	font-family: 'montserratregular';
	font-size: 14px;
}

.event-btn:hover {
	text-decoration: none;
	color: #fff;
}

.event-btn i {
	padding-right: 10px;
}

.navigation {
	position: absolute;
	z-index:3;
	top:32px;
	width:100%;
	background-color: rgb(51 51 51 );
	opacity: 50%;
	background-size: cover;
	background-position: 100%;
	background-repeat: no-repeat;
}


@keyframes gradientBG {
                0% {
                    background-position: 0% 50%;
                }
                50% {
                   background-position: 100% 50%;
                }
                100% {
                    background-position: 0% 50%;
                }
}
.navigation .nav-link {
	text-transform: uppercase;
}

.navigation .navigation .navbar-nav .active > .nav-link,
.navigation .navbar-nav .nav-link.active,
.navigation .navbar-nav .nav-link.show,
.navigation .navbar-nav .show > .nav-link {
	color: #ca1e2c;
	font-weight: 600;
}

.navigation .navbar-nav .nav-link {
	color: #fff;
	padding: 0;
	font-weight: 700;
	font-family: 'montserratlight';
}

.navigation .navbar-nav li.nav-item.active {
	position: relative;
}
.navigation .navbar-nav li.nav-item.active:before {
    position: absolute;
    top: 4px;
    left: 18px;
    content: "";
    width: 5px;
    height: 14px;
    display: inline-block;
    background: #0ab;
}
.navigation .navbar-nav li.nav-item.active a {
	font-weight: 700;
	color: #fff;
	font-family: 'montserratbold';
}

.navigation .nav-item {
	padding-left: 30px;
}

.navigation .navbar-nav .nav-link:focus,
.navigation .navbar-nav .nav-link:hover {
	font-weight: 700;
	color: #dedede;
}

/*====================banner===========================*/
.thumnails-slider {
	padding-top: 7px;
}

/*====================main-events===========================*/
.main-events {
	padding: 60px 0;
	margin-top:70px;
	display: inline-block;
	font-family: 'montserratregular';
	width: 100%;
}

.common-title h2 {
	font-size: 36px;
	text-transform: uppercase;
	font-family: 'montserratbold';
}

.common-title h2:before {
	content: "";
	width: 5px;
	height: 28px;
	display: inline-block;
	background: #0ab;
	margin-right: 10px;
}

.common-title p {
	font-family: 'montserratlight';
}

.card {
	position: relative;
}

.card-addTo {
	display: none;
}

.card:hover img {
	transition: .9s ease;
	filter: blur(5px);
	filter: grayscale(100%);
}

.card:hover .card-addTo {
	display: block;
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	width: 100%;
	padding-top: 28%;
	text-align: center;
}

.card {
	box-shadow: 0 2px 2px 0 rgba(0,0,0,0.14), 0 3px 1px -2px rgba(0,0,0,0.12), 0 1px 5px 0 rgba(0,0,0,0.2);
}

.card-title {
	font-size: 16px;
	margin-bottom: 1.75rem;
}

.card-body .card-text {
	font-family: 'montserratlight';
	font-size: 14px;
}

.card-title span {
	display: block;
	font-size: 14px;
	color: #333;
	padding-top: 10px;
	font-weight: 700;
	font-family: 'montserratlight';
}

.card-date {
	position: absolute;
	top: 0;
	left: 0;
	background: rgba(0, 0, 0, 0.6);
	padding: 10px;
	text-align: center;
	min-width: 90px;
}

.card-position {
	position: relative;
}

.card-links {
	position: absolute;
	right: 0;
	bottom: 0;
}

.card-links a {
	background: rgba(0, 0, 0, 0.7);
	border: none;
	border-radius: 0;
}

.card-links a:hover {
	background: #ca1e2c;
}

.card-date .card-text {
	color: #fff;
}

/*.card:hover .date-card {*/
/*	color: red;*/
/*}*/

.date-card {
	font-family: 'montserratregular';
}

.card-date p {
	font-size: 17px;
	font-weight: 400;
	text-align: center;
}

.card-date span {
	display: block;
}

.card-date p span {
	font-family: 'montserratbold';
}

.card-title .fa {
	color:#6b6b6b;
	width:1.5em;
}
.card-title .fa-gbp {
	color: #000;
	width:0.5em;
}

.card-title a {
	color: #0ab !important;
    text-decoration: none;
    font-family: 'montserratlight';
    font-size:18px;
    font-weight: 700;
    text-transform: capitalize;
}

.card-title a:hover {
	color: #ca1e2c;
}

.read-btn {
	display: block;
	border-radius: 4px;
	text-align: center;
	padding: 7px 0px;
	margin-top: 10px;
	text-decoration: none !important;
	color: #fff;
	font-family: 'montserratregular';
	background: #0ab;
	/*background: linear-gradient(to right, #1f1f1f, rgb(31, 31, 31), rgb(202, 30, 44));*/
	position: absolute;
    bottom: 0;
    left: 0;
}

.read-btn:hover {
	color: #fff;
}

.card-img-fixed {
	width:auto ;
	height: 250px;
}

.card-img-fixed img {
	height: 100%;
	width: 100%;
	border-radius: 8px 8px 0px 0px;
    object-fit: cover;
}

.card-timing {
	position: absolute;
border-radius: 20px 0px 0px 20px;
background: linear-gradient(to right, rgba(0, 0, 0, 0.9) , rgba(16, 107, 219, 0.1));
	/*background: linear-gradient(to right, rgb(31, 31, 31), rgba(16, 107, 219, 0.1));*/
	color: #fff;
	    background: #0ab;
	border: 1px solid #fff;
	box-shadow: -3px -1px 10px 5px #fff;
	padding: 10px 15px;
	right: 0;
	bottom: -10px;
	border-bottom: none;
	border-right: none;
}

.card-timing p {
	margin: 0;
	font-family: 'montserratregular';
	font-size: 12px
}

/*====================counter-events===========================*/
.counter-events {
	background: url(../images/share-action.jpg);
	padding: 40px 0;
	position: relative;
	background-size: cover;
	background-position: 100%;
	background-repeat: no-repeat;
}

.counter-events:before {
	content: "";
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	background-image: linear-gradient(to right, #4c5661, #303C6C);
}

.counter-bx {
	text-align: center;
}

.counter-bx i {
	background: #fff;
	width: 60px;
	height: 60px;
	font-size: 26px;
	border-radius: 50%;
	padding-top: 15px;
	color: #303C6C;
}

.counter-bx h4 {
	color: #fff;
	font-size: 60px;
}

.counter-bx h4 .counter {
	font-family: 'montserratbold';
}

.counter-bx span {
	color: #fff;
	font-size: 18px;
	font-family: 'montserratlight';
}

.thumnails-slider .owl-prev {
	position: absolute;
	top: 36%;
	left: 5%;
	background: #000000 !important;
	color: #fff !important;
	width: 40px;
	height: 40px;
	font-weight: bold !important;
}

.thumnails-slider .owl-next {
	position: absolute;
	top: 36%;
	right: 5%;
	background: #000000 !important;
	color: #fff !important;
	width: 40px;
	height: 40px;
	font-weight: bold !important;
}

.thumnails-slider .item {
	border-radius: 4px;
	overflow: hidden;
}

.thumnails-slider .owl-dots {
	position: absolute;
	left: 0;
	right: 0;
	bottom: 0;
}

.thumnails-slider .item {
	border-radius: 4px;
	overflow: hidden;
	height: 170px;
	display: inline-block;
	width:100%;
}



.thumnails-slider .owl-carousel .owl-item img {
	height: 100%;
}

/*====================request-quote===========================*/
.request-quote {
	padding: 60px 0;
	background-size: cover;
}

.request-cap span {
	color: #ff3546;
}

.request-cap h4 {
	color: #000000;
	font-size: 40px;
	text-transform: uppercase;
	font-family: 'montserratbold';
}

.request-cap p {
	color: #000;
	font-size: 14px;
	margin-bottom: 35px;
	font-family: 'montserratlight';
}

.reqs-form {
	display: inline-block;
	width: 60%;
	margin: auto;
}

.request-cap .form-control {
	margin-bottom: 16px;
	border-radius: 4px;
	width: 66%;
	float: left;
	margin-right: 15px;
}
.no-border {
    border: none;
}
/*====================About Us Page===========================*/
.the-story {
	background: #fff;
	padding: 60px 0;
}

.about-us {
	padding: 60px 0;
	border-top: 1px solid #ccc;
}

.site-cover {
	background-image: url(../images/common-bg.jpg);
	background-repeat: no-repeat;
	background-size: cover;
	padding: 15px;
	display:flex;
	align-content:center;
	width: 100%;
	height:200px;
	position: relative;
	border-top: 1px solid #fff;
	/*margin-top: 100px;*/
}
.site-cover-1 {
	background-image: url(../images/common-bg.jpg);
	background-repeat: no-repeat;
	background-size: cover;
	padding: 15px;
	display:flex;
	align-content:center;
	width: 100%;
	height:300px;
	position: relative;
	border-top: 1px solid #fff;
	/*margin-top: 100px;*/
}

.site-cover:before {
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	content: "";
	background: rgba(0, 0, 0, 0.8)
}

.site-nav ul {
	list-style: none;
	margin: 0;
	padding: 0;
}

.site-nav li {
	display: inline;
}

.site-nav a {
	color: #fff;
	text-decoration: none;
}

.site-nav i {
	color: #fff;
	padding: 0px 5px;
}

.about-cover img {
	width: 100%;
}

.padding0 {
	padding: 0;
}

.story-cover img {
	width: 100%;
}

.about-cover {
	position: relative;
}

.about-cover:before {
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	content: "";
	background: rgba(220, 53, 69, 0.7);
}

.about-description {
	padding: 15px;
}

.about-description h4 {
	color: #dc3545;
	font-family: 'montserratbold';
}

.about-description p {
	color: #000;
	font-family: 'montserratlight';
}

.story-description h3 {
	font-family: 'montserratbold';
}

.story-description p {
	font-family: 'montserratlight';
}

/*====================Profie Page===========================*/
.main-profile {
	padding: 60px 0;
	background: #dfdfdf;
}

.site-profie {
		background-image: url(../images/common-bg.jpg);
        background-repeat: no-repeat;
        background-size: cover;
        position: relative;
        border-top: 1px solid #fff;
        height: 150px;
}

.site-profie .container {
	position: relative;
}

.edit-profile {
	position: absolute;
	left: 15px;
	top: 36px;
}

.edit-img {
	width: 120px;
	height: 120px;
	display: inline-block;
}

.edit-img img {
	width: 100%;
	height: 100%;
}

.edit-overlay {
	display: none;
	overflow: hidden;
	width: 120px;
	height: 60px;
}

.edit-overlay a {
	color: #fff;
	text-decoration: none;
	padding-top: 20px;
	display: inline-block;
	font-family: 'montserratbold';
}

.edit-thumb {
	position: relative;
	float: left;
	overflow: hidden;
	background: #ccc;
	border-radius: 6px;
	border: 6px solid #fff;
	box-shadow: 0 4px 10px 0 rgba(0, 0, 0, 0.3), 0 4px 20px 0 rgba(0, 0, 0, 0.19);
}

.edit-thumb:hover .edit-overlay {
	display: block;
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	text-align: center;
	background: rgba(0, 0, 0, 0.7);
	border-bottom: 1px solid #fff;
}

.edit-name {
	float: left;
	margin-top: 30px;
	margin-left: 15px;
}

.edit-name h4 {
	color: #fff;
	font-family: 'montserratregular';
}

.edit-name a {
	color: #fff;
}

.edit-name span {
	display: block;
	font-size: 16px;
	font-family: 'montserratlight';
}

.about-profile .table {
	margin: 0;
}

.about-profile {
	background: #fff;
	border-radius: 4px;
}

.about-title h4 {
	text-transform: uppercase;
	font-family: 'montserratbold';
	color: #dc3545;
}

/*====================Product Event Page===========================*/
.our-product {
	padding: 0px 0;
}

.product-banner {
	height: 250px;
}

.product-banner img {
	width: 100%;
	height: 100%;
}

.product-description span {
	display: block;
	font-size: 14px;
	text-transform: capitalize;
	font-family: 'montserratbold';
}

.product-description i {
	color: #ca1e2c;
}

.product-quantity ul {
	list-style: none;
	margin: 0;
	padding: 0;
}

.product-quantity li {
	float: left;
}

.product-quantity a {
	width: 38px;
	height: 38px;
	display: inline-block;
	text-align: center;
	background: #ca1e2c;
	color: #fff;
	padding-top: 8px;
}

.product-quantity input {
	width: 38px;
	text-align: center;
	height: 38px;
}

.related-events {
	padding-bottom: 60px;
}

.related-events .related-cap {
	padding: 15px;
}

.related-events .related-cap h6 {
	text-transform: capitalize;
	margin-top: 0;
	font-family: 'montserratlight';
	font-size: 13px;
	color: #000;
}

.related-events .related-cap h5 {
	font-family: 'montserratbold';
	font-size: 18px;
}

.related-events .related-cap .event-btn {
	border-radius: 4px;
	padding: 5px 15px;
	font-size: 13px;
}

.product-type select {
	padding: 6px;
	border: 1px solid #ccc;
}

.product-description h1 {
	font-family: 'montserratregular';
	font-size: 30px;
	color: #484848;
}

.product-description p {
	font-family: 'montserratlight';
}
.product-quantity h4 {
	font-family: 'montserratbold';
	font-size: 14px;
}

.product-type h4 {
	font-family: 'montserratbold';
	font-size: 14px;
}

.prdt-price {
	font-family: 'montserratbold';
	font-size: 14px;
}

.pricing-card-title02 {
	font-family: 'montserratlight';
	border: 1px solid #ccc;
	padding: 6px 12px;
	margin: 0;
}

.product-icon {
	padding: 7px 18px;
	border-radius: 0px;
	margin: 0px 0 0px 10px;
}

/*.product-price-col {
    width: 100px;
    margin: auto;
}*/
.pricing-card-title02 p {
	margin-bottom: 0;
}
/*====================main pricing ===========================*/
.main-pricing {
	padding-bottom: 60px;
}
.main-pricing .pricing-cap {
    padding: 20px;
    float: left;
    height: 250px;
    width: 100%;
}
.main-pricing .pricing-cap h4 {
	color: #000;
	text-transform: uppercase;
	font-family: 'montserratregular';
	font-size: 1rem;
}
.main-pricing .pricing-cap p {
    text-align: center;
    font-family: 'montserratregular';
    background-image: linear-gradient(to right, #1f1f1f, rgb(31, 31, 31) , rgb(202, 30, 44));
    height: 60px;
    border-radius: 50%;
    width: 60px;
    margin: auto;
    margin-bottom: 15px;
}
.main-pricing .pricing-cap p i {
    color: #fff;
    font-size: 40px;
    padding-top: 10px;
    text-align: center;
}
.main-pricing .pricing-cap span {
    color: #000;
    font-size: 60px;
    font-family: 'montserratregular';
    text-align: center;
    width: 100%;
    float: left;
}
.main-pricing .pricing-cap h4 i {
	display: block;
    background: #d9d9d9;
    color: #000;
    width: 60px;
    border: 1px solid #0ab;
	height: 60px;
	border-radius: 50%;
	margin: auto;
	margin-bottom: 15px;
	padding-top: 17px;
}
.main-pricing .pricing-sold {
	    background-image: linear-gradient(to right, #1f1f1f, rgb(31, 31, 31) , rgb(202, 30, 44));
	    color: #fff;
	    top: 0;
	    position: absolute;
	    padding: 4px 19px;
	    font-family: 'montserratbold';
	    right: 0px;
	    font-size: 18px;
	    border: 1px solid #ccc;
	    line-height: normal;
	    display: inline-block;
        overflow: hidden;
	}
  
.main-pricing .pricing-f {
	text-align: center;
	padding: 30px;
	display: inline-block;
	width: 100%;
}
.our-product .pricing-cap span i {
	font-size: 24px;
}
.product-description-tabs .event-tab {
    padding: 15px;
}
.product-description-tabs .event-tab h1 {
    font-family: 'montserratbold';
    font-size: 24px;
    color: #484848;
    text-transform: uppercase;
}
.product-description-tabs .event-tab span {
    display: block;
    font-size: 14px;
    text-transform: capitalize;
    font-family: 'montserratlight';
    text-transform: capitalize;
}
.our-product .common-title span i {
     color: #ca1e2c;
     float: left;
     margin-right: 5px;
}
.product-description-tabs {
    margin-top: 15px;
    border: 1px solid #ccc;
}
.product-description-tabs .event-tab p {
    margin-bottom: 6px;
}
.main-pricing .product-description-tabs .nav-tabs .nav-item.show .nav-link, .nav-tabs .nav-link.active {
    color: #ca1e2c;
    border-color: #cb1e2b #dee2e6 #fff;
}
.product-description-tabs .nav-tabs {
    border-bottom: 1px solid #c81e2c;
}
.product-description-tabs .nav-link {
    color: #000;
}
.product-description-tabs .terms-cond {
	/*height: 450px; */
	overflow: auto; 
}
.main-pricing .pricing-f {
	text-align: center;
	padding: 30px;
	width: 100%;
}
.main-pricing .pricing-cap span i {
	font-size: 24px;
}
.main-pricing .pricing-f {
    position: absolute;
    bottom: 0;
    left: 0;
    z-index: 9;
}
.main-pricing .pricing-cap span {
    color: #ffffff;
    font-size: 30px;
    font-family: 'montserratbold';
    text-align: center;
    width: 100%;
    float: left;
    position: absolute !important;
    left: 0;
    top: 0;
    background: rgba(0,0,0, 0.5);
    height: 100%;
    padding-top: 18px;
}
.main-pricing .card-container {
    cursor: pointer;
    height: 460px;
    margin-top:10px;
    position: relative;
    background: #fff;
    box-shadow: 0 4px 10px 0 rgba(0, 0, 0, 0.3), 0 4px 20px 0 rgba(0, 0, 0, 0.19);
    border-radius: 18px;
}
.main-pricing .pricing-cap p {
    position: relative;
    overflow: hidden;
}
.main-pricing .card-ticket .back {
    position: absolute;
    visibility: hidden;
    padding: 15px;
    display: inline-block;
    font-family: "Lucida Console", Monaco, monospace;
    font-size: 14px;
    letter-spacing: 1px;
    cursor: pointer;
    transition: ease-out 1s;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
}
.main-pricing .card-ticket .back p {
    color: #fff;
    text-align: left;
}
.main-pricing .card-container:hover .back {
    visibility: visible;
    box-shadow: inset 0 300px 0 0 rgba(0,0,0);
}
.main-pricing .item {
    position: relative;
}
.main-pricing .middle {
  transition: .5s ease;
  opacity: 0;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  text-align: center;
}
.main-pricing .image {
  opacity: 1;
  display: block;
  width: 100%;
  height: auto;
  transition: .5s ease;
  backface-visibility: hidden;
}
.main-pricing .item:hover .image {
    opacity: 0.3;
}
.main-pricing .item:hover .middle {
    opacity: 1;
}
.main-pricing .card-ticket .side span {
    font-size: 18px;
    color: #fff;
    padding: 4px 15px;
    border: 1px solid #ccc;
    font-family: 'montserratbold';
    line-height: normal;
    display: inline-block;
    overflow: hidden;
    background: linear-gradient(to right, #1f1f1f, rgb(31, 31, 31) , rgb(202, 30, 44));
}
.ticket-list {
    font-size: 11px;font-family: 'montserratregular'; text-align:center;
    margin-top: 25px;
}
.main-pricing .ticket-list ul {
    list-style: none;
    margin: 0;
    padding: 0;
}
.main-pricing .ticket-list li {
    line-height: 20px;
    font-size: 14px;
    border: none !important;
    text-align: left;
    font-family: 'montserratlight';
}
.main-pricing .ticket-list li:last-child {
    border-bottom: none;
}
/*====================contact form===========================*/
.contact-form h4 {
	font-family: 'montserratregular';
}

.contact-form {
	border: 1px solid #ccc;
	padding: 30px;
	background: #f0eded;
}

.form-pding {
	margin-bottom: 60px;
}

.contact-map iframe {
	width: 100%;
	height: 415px;
}

.contacting-bg {
	background-image: url(../images/event3.jpg);
	background-repeat: no-repeat;
	background-size: cover;
	position: relative;
	height: 100%;
}

.contacting-bg:after {
	content: "";
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	background-color: rgba(0, 0, 0, 0.8);
}

.contacting-cap {
	position: absolute;
	z-index: 999;
	padding: 30px;
}

.contacting-cap h3 {
	color: #fff;
}

.contacting-cap p {
	color: #fff;
}
.main-map {
    width: 100%;
    background: #f0eded;
    border: 1px solid #ccc;
    padding: 30px;
}
.list-address ul {
    list-style: none;
    margin: 0;
    padding: 0;
}
.list-address li {
    line-height: 26px;
    margin-bottom: 15px;
    border-bottom: 1px solid #ccc;
    padding-bottom: 15px;
}
.list-address li:last-child {
    border: none;
}
.list-address span {
    font-weight: bold;
    display: block;
}
/*====================view cart===========================*/
.cart-table {
	padding: 60px 0px;
}

.your-dp {
	width: 40px;
	height: 40px;
	display: inline-block;
	margin-top: 10px;
	margin-left: 10px;
	background: #ccc;
	overflow: hidden;
}

.cart-view .form-control {
	width: auto;
	float: left;
	margin-right: 15px;
}

.cart-view .event-btn {
	border-radius: 4px;
	padding: 7px 14px;
}

/*====================checkout page===========================*/
.checkout {
	padding: 60px 0;
}

.checkout-bg {
	border: 1px solid #ccc;
	padding: 15px;
	background: #fff;
}

.margin0 {
	margin: 0;
}

/*====================main footer===========================*/
.main-footer {
    background: #303C6C;
    padding: 0px 0;
    margin-top: 100px;
}

.main-footer .container {
    position: relative;
}

.f-nav-title h5 {
    color: #fff;
    font-family: 'montserratbold';
}

.fa-nav-list ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.fa-nav-list li {
    display: block;
    margin-bottom:10px;
}

.fa-nav-list a {
    text-decoration: none;
    padding-right: 15px;
    color: #fff;
    font-family: 'montserratlight';
}

.fa-nav-list i {
    width: 30px;
    height: 30px;
    background: #ffffff;
    color: #333;
    text-align: center;
    border-radius: 50px;
    padding-top: 6px;
    display: inline-block;
    margin-bottom: 15px;
    margin-right: 10px;
}
.fa-social-list i {
    width: 30px;
    height: 30px;
    background: #ffffff;
    color: #333;
    text-align: center;
    border-radius: 5px;
    /* padding-top: 6px; */
    justify-content: center;
    display: inline-flex;
    align-items: center;
    margin-bottom: 15px;
    margin-right: 10px;
}
.fa-social-list li{
    display:inline-block;
}

.fa-nav-list i:hover {
    background: #fff;
    color: #0ab;
}

.fa-nav-list {
    float: left;
    margin-top: 10px;
}

.f-contact {
    float: left;
    margin-top: 15px;
}

.f-contact ul {
    list-style: none;
    margin: 0 !important;
    padding: 0;
}

.f-contact li {
    color: #fff;
    margin-bottom: 15px;
}

.f-contact li:last-child {
    padding-right: 0;
    display:block;
}

.f-contact i {
    float: left;
    color: #fff;
    padding-right: 10px;
    font-size: 20px;
}

.f-contact span {
    font-family: 'montserratlight';
}

.f-contact a {
    text-decoration: none;
    color: #fff;
    font-family: 'montserratbold';
}

.sub-btn {
    float: left;
}

.sub-btn .event-btn {
    border-radius: 4px;
	padding: 10px;
	
}


/* f */

.f-contact {
    margin-top: 0;
}

.f-nav-title p {
    color: #fff;
}

/*.f-contact li {*/
/*    line-height: 40px;*/
    /*border-bottom: 1px solid #2c2c2c;*/
/*    margin-bottom: 0;*/
/*}*/

.f-contact li:last-child {
    border: none !important;
}

.f-nav-title h5 {
    text-transform: uppercase;
}

.f-event-profile {
    width: 80px;
    height: 80px;
    background: #fff;
    overflow: hidden;
    display: inline-block;
    border-radius: 4px;
}

.f-event-cap {
    display: inline-block;
    width: 250px;
    margin-left: 10px;
}

.f-event-cap h6 {
    font-family: 'montserratbold';
}

.f-event-cap p {
    margin-bottom: 5px;
    font-size: 13px;
}

.f-event-cap p i {
    padding-right: 5px;
}

.f-contact a {
    font-family: 'montserratregular';
}

.f-event-cap p i {
    padding-right: 5px;
    background: none;
    color: #fff;
    width: auto;
    height: auto;
    padding: 0;
    margin-bottom: 0;
}

.f-nav-title h5 {
    display: inline-block;
    position: relative;
}

.f-nav-title h5:before {
    content: "";
    width: 70px;
    height: 2px;
    background: #fff;
    position: absolute;
    left: 0;
    bottom: -15px;
}

.fa-contact li {
    margin-bottom: 10px;
    display:inline-block;
}

.fa-nav-list li:last-child {
    border-bottom: none;
}

.fa-nav-list i {
    border-radius: 4px;
    margin-bottom: 0;
}

.fa-nav-list {
    width: 100%;
}

/*====================bottomTotop===========================*/
.bottomTotop {
	position: absolute;
	top: -80px;
	right: 0;
	z-index: 999;
}

.bottomTotop a {
	width: 40px;
	height: 40px;
	display: inline-block;
	background: #fff;
	text-align: center;
	padding-top: 6px;
	border-radius: 50%;

}

.bottomTotop a:hover {
	background: #ca1e2c;
	color: #fff;
}

/*====================copyright===========================*/
.copyright {
	padding: 10px 0;
	background: #333;
}

.copyright p {
	margin: 0;
	font-size: 14px;
	text-align: center;
	width: 100%;
	color: #fff;
	font-family: 'montserratlight';
}

.copyright .c-policy {
    float: right;
}
.copyright .c-policy a {
    color: #fff;
    text-decoration: none;
}

/*====================login form modal css===========================*/
.main-modal {
    height: 500px;
}
.login-form {
    height: 100%;
    /* height: auto; */
    padding: 30px;
    border-radius: 4px;
}
.login-cap {
    /* background-image: url(../images/event3.jpg); */
    background-repeat: non-repeat;
    background-size: cover;
    position: relative;
    z-index: 1;
    padding: 42px;
    /* height: 400px; */
    height: 100%;
}
.login-cap h4 {
	color: #fff;
	font-family: 'montserratbold';
}

.login-cap p {
	color: #fff;
	text-align: left;
	font-family: 'montserratlight';
}

.login-cap:before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	/*background: linear-gradient(to right, #1f1f1f, rgba(31, 31, 31, 0.8), rgba(202, 30, 44, 0.7));*/
	background-color: #333;
	z-index: -1;
}

.content-modal-bg {
	overflow: hidden;
	border: none;
	position: relative;
}

.content-modal-bg .close {
	position: absolute;
	top: 15px;
	right: 30px;
	z-index: 999;
	font-family: 'montserratbold';
	color: rgb(254, 0, 24);
	opacity: 1;
}

.content-modal-bg .modal-body {
	padding: 0px 15px;
}

.login-form .form-control {
	border: none;
	border-bottom: 1px solid #ccc;
	border-radius: 0;
	padding: 0;
	box-shadow: none;
}
.login-forgot {
	position: relative;
}
.login-form a{
	color: #00aabb !important;
}
.login-forgot a {
	position: absolute;
	top: 5px;
	right: 0;
	font-family: 'montserratbold';
	text-decoration: none;
	color: #00aabb !important;
}

.create-account {
	position: absolute;
	left: 0;
	right: 0;
	bottom: 15px;
	text-align: center;
}

.create-account a {
	font-size: 15px;
	text-decoration: none;
	font-family: 'montserratlight';
}
.swal2-confirm {
    background-color: #23282d !important;
    border: none !important;
}
.no-border {
    border-radius: 4px;
}
.main-events .card-deck {
    width:100%;
}

.read-btn {
    position: absolute;
    /* left: 10px; */
    right: 10px;
    /* bottom: 10px; */
}
.main-pricing .card-container {
    margin-bottom: 30px;
}
.card-start-end-date {
    font-size: 10px;
    font-family: 'montserratbold';
    border-bottom: 1px dashed #ccc;
}
.contact-tikt {
    border: 1px solid #ccc;
    padding: 30px;
    background: #f0eded;
}
.ticket-nav {
	background: #fff;
	padding: 15px;
	text-align:left;
	border: 1px solid #ccc;
}
.ticket-nav2 {
    padding: 0;
	border: none;
}
.bot-15 {
    margin-bottom: 15px;
}
.product-description-tabs .event-tab p {
    font-family: 'montserratlight';
    font-size: 14px;
}
.ticket-nav li {
    font-family: 'montserratlight';
    font-size: 14px;
}
ul.circlearrowlist li {
    font-family: 'montserratlight';
}
p {
    font-family: 'montserratlight !important';
}
.form-list .form-check-input {
    margin-top: 7px;
}
.bg-primary{
    background-color:#0ab !important;
    color:#fff !important;
}
.btn-primary{
    background-color:#0ab !important;
    color:#fff !important;
}


/******************** Home page search wala CSS **************************************************/
/*.home-banner {*/
/*    background-image: url("../images/newbk_2.jpg");*/
/*    background-repeat: no-repeat;*/
/*    background-size: cover;*/
/*    height: 95vh;*/
/*    position: relative;*/
/*}*/
.bg-video-wrap{
    position: relative;
    width: 100%;
    /*max-width:1368px;*/
    max-height:500px;
    height: 100vh;
    background-size: cover;
    background-position: center bottom;
    background-repeat: no-repeat;
    z-index: 1;
    overflow: hidden;
    background: url('https://designsupply-web.com/samplecontent/vender/codepen/20181014.png') no-repeat center center/cover;;
}
video {
    min-width: 100%;
    min-height:100vh;
    z-index: 1;
    object-fit:cover;
    
  }
.videoInsert {
    position: absolute; 
    right: 0; 
    top:100%;
    left:50%;
    transform: translateX(-50%) translateY(-50%);
    min-width: 100%; 
    min-height: 100%;
    width: auto; 
    height: auto; 
    z-index: -100;
    object-fit:cover;
    background-size: cover;
    overflow: hidden;
}
.overlay {
    width: 100%;
    height: 100vh;
    position: absolute;
    top: 0;
    left: 0;
    background-image: linear-gradient(rgb(0 0 0 / 30%), black),url(https://indemand.znsoftech.com/backend/web/backend/uploads/person/20210226112046.png);
    background-size:300px 100px;
    z-index: 2;
  }

.find-form-wrapper .home-cap {
    position: relative;
    z-index:2;
    top: -75px;
    border-radius:10px;
    padding: 15px 15px;
    background: rgb(255, 255, 255, 1);
    box-shadow: 0 4px 10px 0 rgba(0, 0, 0, 0.3), 0 4px 20px 0 rgba(0, 0, 0, 0.19);
}

.find-form-wrapper .form-group {
    position: relative;
}

.find-form-wrapper label {
    position: absolute;
    top: 10px;
    left: 40px;
    color: #0ab;
}

.find-form-wrapper .form-group .form-control {
    padding: 0px 50px;
    border-radius: 5px;
    background: rgb(255, 255, 255, 0.6);
    border: 1px solid #c3c3c3;
}

.upper-content{
    text-align: center;
    color: #fff;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
    z-index: 3;
    /*max-width: 1200px;*/
    width: 100%;
    height: 325px;
  }
.upper-content h1{
    font-size: 4rem ;
    font-weight: 700;
    text-align: left;
  }
  .color-all{
      color:#0ab;
  }
.color-your{
    color:#839cff;
    font-size: 4.8rem !important;
  }
  .ml-event{
    margin-left: 6rem!important;
  }
  .upper-content  h1{
  font-size: 4rem;
  font-weight: 700;
}
.home-search-adv-btn {
    width: 165px;
    margin: auto;
    position: static;
    border-radius: 5px;
    text-transform: uppercase;
    background: #0ab;
    border:1px solid #0ab;
    color: #fff;
}
.bg-grediant {
    background: #333;
    color: #fff;
}
.event-show {
    display: none;
}
.msdgaur {
    background: #333;
    color: #fff;
}


.msditem {
    color: #303C6C;
}
.gap-between-contain{
    margin:50px 0px;
}

.story-description h5, .story-description h4 {
    margin-top:20px;   
}
.story-description P {
    padding:10px 10px;   
}
.story-description ul li{
     list-style-type: square !important;
}
.story-description ul {
    margin:20px;
    padding:20px 50px ;
    border-radius:20px;
    background :#ededdd;
    
}
.site-cover .container{
    position: relative;
    display: flex;
    align-items: flex-end;
	margin-top: 85px !important;
}
.site-nav ul li{
    font-size: 2em;
       font-weight: bold;
    font-style: oblique;
}

/*** checked Button in Partners ***/


.cheked{
    appearance: none;
    outline:none;
    width:38px;
    height:17px;
    position: relative;
    background: linear-gradient(#b3b3b3,#757070);
    border-radius: 40px;
    border-top:solid 2px #000;
    border-bottom:solid 2px #fff;
    cursor:pointer;
    box-shadow: inset 0 0 5px rgba(0,0,0,.2)
                inset 0 0 10px rgba(0,0,0,.2)
                inset 0 0 15px rgba(0,0,0,.2);
}

.cheked:checked{
    background: linear-gradient(rgb(0, 245, 160),rgb(2, 147, 96)); 
}

.cheked::before{
    content:'';
    position:absolute;
    width:24px;
    height:24px;
    top:-6px;
    left:-4px;
    border-radius: 50%;
    border-bottom:solid 2px #000;
    border-top:solid 2px #fff;
    background: linear-gradient(#eee,#ccc);
    transition: .3s;
    box-shadow: 0 0 5px #00000033;
}

.cheked:checked::before{
    left:20px;
}

/************************ Explore by Categories *******************************************************/
.categories{
    margin:1rem 0;
    padding: 1rem;
    width: 100%;
    max-height:200px;
    overflow: hidden;
}
.categories a{
    font-family: 'montserratregular', sans-serif;
    color:#010101;
    text-transform:uppercase;
    font-weight: 500;
    font-size: 0.9rem;
    text-decoration:none !important;
    text-align: center;
}
.categories a .card:hover{
    transform:scale(1.1);
}
.categories-shadow{
    box-shadow: 2px 4px 10px rgba(255, 99, 72, 0.25);
    border-radius: 10px;
}
.categories-primary1{
    background-color: #EEF7FE;
    border-color: #EEF7FE;
}
.categories-primary2{
    background-color: #FBE8A6;
    border-color: #FBE8A6;
}
.categories-primary3{
    background-color: rgba(255, 99, 72, 0.25);
    border-color: rgba(255, 99, 72, 0.25);
}
.categories-primary4{
    background-color: #E1E7FF;
    border-color: #E1E7FF;
}
.categories-primary5{
    background-color: #DEFFD9;
    border-color: #DEFFD9;
}
.categories-primary6{
    background-color: #FFE9D6;
    border-color: #FFE9D6;
}
.categories-primary9{
    background-color: #EEF7FE;
    border-color: #EEF7FE;
}
.categories-primary8{
    background-color: #FBE8A6;
    border-color: #FBE8A6;
}
.categories-primary7{
    background-color: rgba(255, 99, 72, 0.25);
    border-color: rgba(255, 99, 72, 0.25);
}
.categories-primary12{
    background-color: #E1E7FF;
    border-color: #E1E7FF;
}
.categories-primary10{
    background-color: #DEFFD9;
    border-color: #DEFFD9;
}
.categories-primary11{
    background-color: #FFE9D6;
    border-color: #FFE9D6;
}
.categories-shadow h3{
    font-family: 'montserratlight';
    font-weight: 600;
    letter-spacing: 0.051em;
    font-size: 0.8rem;
    text-align: center;
}
.categories img{
    max-height:120px;
}
.opacity-25{
    opacity:25%;
}


 .card-sl {
  border-radius: 8px !important;
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
}

.card-img-fixed-image img {
  width: 100%;
  min-height: 12rem;
  object-fit: cover;
  max-height: 100%;
  max-width: 100%;
  border-radius: 8px 8px 0px 0;
}

.card-action {
  position: relative;
  float: right;
  margin-top: -25px;
  margin-right: 20px;
  /* z-index: 2; */
  color: #E26D5C;
  background: #fff;
  border-radius: 100%;
  padding: 15px;
  font-size: 15px;
  box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.2), 0 1px 2px 0 rgba(0, 0, 0, 0.19);
}

.card-action:hover {
  color: #fff;
  background: #E26D5C;
  -webkit-animation: pulse 1.5s infinite;
}

.card-heading{
  font-family: 'montserratbold';
  text-transform:capitalize;
  color: #0ab;
  font-weight: bold;
  background: #fff;
  padding: 10px 15px;
  cursor: pointer !important;
}
.card-heading a{
  color:#0ab ;
  
}
.chkot-primary{
	background: #0ab !important;
	border-color: #0ab !important;
	box-shadow: 2px 2px 10px 2px #0ab !important;
}
.btn-secondary{
	background: #0ab !important;
	border-color: #0ab !important;
	box-shadow: 2px 2px 10px 2px #0ab !important;
}
.card-text {
  padding: 3px 0px;
  background: #fff;
  font-size: 14px;
  color: #636262;
}

.card-button {
  display: flex;
  justify-content: center;
  padding: 10px 0;
  width: 100%;
  font-weight: 500;
  font-family: 'Poppins';
  background-color: #21B2BB;;
  color: #fff;
  border-radius: 0 0 8px 8px;
}

.card-button:hover {
  text-decoration: none;
  background-color: #226d72;
  color: #fff;

}
.time{
    font-size:1rem;
}

@-webkit-keyframes pulse {
  0% {
      -moz-transform: scale(0.9);
      -ms-transform: scale(0.9);
      -webkit-transform: scale(0.9);
      transform: scale(0.9);
  }

  70% {
      -moz-transform: scale(1);
      -ms-transform: scale(1);
      -webkit-transform: scale(1);
      transform: scale(1);
      box-shadow: 0 0 0 50px rgba(90, 153, 212, 0);
  }

  100% {
      -moz-transform: scale(0.9);
      -ms-transform: scale(0.9);
      -webkit-transform: scale(0.9);
      transform: scale(0.9);
      box-shadow: 0 0 0 0 rgba(90, 153, 212, 0);
  }
}
.menu{
        left: 83% !important;
}

.location-box{
  width:100%;
  border-radius: 4px;
  position: relative;
  overflow: hidden;
  padding:0;
  display: grid;
  place-items: center;
  margin:1em 0 1em;
}

.location-img-overlay {
  width: 60%;
  height: auto;
  position: absolute;
  top: 45%;
  left: 25%;
  color: #fff;
  text-align: center;
  border-radius: 4px;
  background: rgb(0 170 187 / 70%);
  box-shadow: 5px 5px 10px 5px  rgba(255,255,255,0.2);
  /* background: linear-gradient(45deg, rgba(0,0,0,.7) 70%, rgba(0,0,0,.7) 50%); */
  /* background-size: 3px 3px; */
  /* z-index: 2; */
}

.location-box img:hover{ 
  transform: scale(1.1) !important;
}

.location-img-overlay h2{
  font-size: 1.25rem;
  padding: 0.5em;
}

.footer-area{
  background-color: #333;
  padding:2em 1em 0em ;
}
.foot-logo ul{
 margin: 1.5em 0;
 display: flex;
 justify-content: space-around;
}
.foot-logo ul li{
  display: inline;
  list-style: none;
  margin:0 1em;
}
.foot-logo ul li i{
  font-size: 2.5rem;
  color: #fff;
}
.footer-heading{
  font-size: 1.5rem;
  font-weight: 600;
  color: #fff;
}
.footer-area ul{
  list-style-type: none;
  padding: 0;
  margin: 2em 0;
}
.custom-shape-divider-top-1631774151 {
  position: absolute;
  top: -115px;
  left: 0;
  width: 100%;
  overflow: hidden;
  line-height: 0;
}

.custom-shape-divider-top-1631774151 svg {
  position: relative;
  display: block;
  width: calc(111% + 1.3px);
  height: 117px;
}

.custom-shape-divider-top-1631774151 .shape-fill {
  fill: #333;
    transform-origin: inherit;
    transform: rotate(180deg);
}
.help-block{
    margin:20px 0px;
}
.text-small{
    font-size:14px !important;
}
.dropdown-menu.show {
    font-size:12px !important;
}

.badge-overlay {
    position: absolute;
    left: 0%;
    top: 0px;
    width: 100%;
    height: 100%;
    overflow: hidden;
    pointer-events: none;
    z-index: 1;
    -webkit-transition: width 1s ease, height 1s ease;
    -moz-transition: width 1s ease, height 1s ease;
    -o-transition: width 1s ease, height 1s ease;
    transition: width 0.4s ease, height 0.4s ease;
}
.badge-free::before, .onlin-badg-free::before{
    right: 100%;
}
.badge-free::before, .badge-free::after, .onlin-badg-free::before, .onlin-badg-free::after  {
    content: "";
    position: absolute;
    top: 0;
    margin: 0 -1px;
    width: 100%;
    height: 100%;
    background: inherit;
    min-width: 55px;
}
.badge-free {
    margin: 0;
    padding: 0;
    color: white;
    padding: 5px 7px;
    font-size: 15px;
    /*font-family: Arial, Helvetica, sans-serif;*/
    text-align: center;
    line-height: normal;
    text-transform: uppercase;
    background: #139d3d;
}
.free-tag{
    position: absolute;
    top: 0;
    left: 0;
    -ms-transform: translateX(-30%) translateY(0%) rotate(-45deg);
    -webkit-transform: translateX(-30%) translateY(0%) rotate(-45deg);
    transform: translateX(-30%) translateY(0%) rotate(-45deg);
    -ms-transform-origin: top right;
    -webkit-transform-origin: top right;
    transform-origin: top right;
    background: #2ad93f;
}

.free-tag p{
    font-size: 1.6rem;
    font-weight: 400;
     font-family: 'montserratlight';
}

.onlin-badg-free {
    margin: 0;
    padding: 0;
    color: white;
    padding: 5px 15px;
    font-size: 15px;
    /*font-family: Arial, Helvetica, sans-serif;*/
    text-align: center;
    line-height: normal;
    text-transform: uppercase;
    background: #139d3d;
}
.onlin-tag{
    position: absolute;
    top: 10%;
    left: 15px;
    -ms-transform: translateX(-30%) translateY(0%) rotate(-45deg);
    -webkit-transform: translateX(-30%) translateY(0%) rotate(-45deg);
    transform: translateX(-30%) translateY(0%) rotate(-45deg);
    -ms-transform-origin: top right;
    -webkit-transform-origin: top right;
    transform-origin: top right;
    background: #4624ab;
}

.bottom-full {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  text-align: center;
}

.contact-modal ul li span {
    float: right;
    padding-right: 1rem;
}
.nav-pills .nav-link.active{
	background: #0ab !important;
}
.nav-item  button.active{
    color:#fff !important;
}
#pills-tab .nav-pills .nav-link{
	color: #0ab !important;
}
.error-summary {
    color: #fff;
    background-color: #dc3545;
    border-color: #d32535;
    border-radius: 0.25rem;
    padding: 10px;
    margin-top: 5px;
}
.error-summary ul{
	padding: 0 2rem;
}
.swal2-cancel{
	margin-right: 5px !important;
}
.wizard-section
{
	width:100%;padding: 0; margin: 0;
}