@import url('https://fonts.googleapis.com/css2?family=Kaushan+Script&family=Poppins:ital,wght@0,300;0,400;0,500;0,600;0,700;0,800;1,300;1,400;1,500;1,600;1,700;1,800&display=swap');
*{
	padding:0;
	margin:0;
	box-sizing:border-box; 
}
body{
	padding:0;
	margin:0;
	font-family: 'Poppins', sans-serif;
	position:relative;
}
a,a:hover{
	text-decoration:none;
}
ol,ul{
	padding:0;
	margin:0;
	list-style-type: none;
}
.container{
	max-width: 1440px;
}


header{
	width: 100%;
	padding: 5px 0px 15px;
	display: block;
	overflow: hidden;
	text-align: center;
}
header a{
	display: inline-block;
}
header a h2{
	font-size: 60px;
    font-family: 'Kaushan Script', cursive;
    margin: 0px;
    line-height: normal;
	color: #0055AA;
}

header span.badge
	{
		background-color: #0055AA;
		color: #fff;
		vertical-align: top;
		font-size: 90%;
	}


.hero{
	display: block;
	width: 100%;
	padding: 120px 15px;
	background-image: url(../img/hero-bg.png);
	background-size: cover;
	background-position: center;
	text-align: center;
}
.hero h1{
	color: #fff;
	font-size: 60px;
	font-weight: 600;
	margin-bottom: 25px;
}
.hero p{
	color: #fff;
	font-size: 18px;
	margin-bottom: 40px;
}
.hero p a{
	color: #fff;
	font-weight: 600;
	text-decoration: underline;
	transition: all 0.3s ease-in;
}
.hero a.button{
	display: inline-block;
	background-color: #0055AA;
	padding: 10px 40px;
	color: #fff;
	border: solid 1px #fff;
	border-radius: 10px;
	font-size: 20px;
	font-weight: 600;
}



.hero .filers{
	background-color: #fff;
    padding: 20px 5px;
    border-radius: 10px;
    display: flex;
    flex-wrap: wrap;
	width: 100%;
    max-width: 1100px;
    margin: 0px auto;
}
.hero .filers .filter-sec{
	position: relative;
	border-right: solid 1px #ddd;
	padding:0px 15px;
}
.hero .filers .filter-sec > label{
	margin: 0px;
    position: absolute;
    left: 30px;
    top: 5px;
    z-index: 1;
    font-size: 14px;
    font-weight: 600;
}
.hero .filers .filter-sec div.btn-group{
	width: 100% !important;
}
.hero .filers .filter-sec button.multiselect{
	width: 100%;
    padding: 25px 30px 5px 15px;
    height: auto;
    text-align: left !important;
    border: solid 1px #ddd;
    border-radius: 10px;
	cursor: pointer;
	color: #000;
}
.hero .filers .filter-sec button.multiselect[aria-expanded="true"]{
	border-color: #999;
}
.hero .filers .filter-sec button.multiselect span{
	width: 100%;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
}
.hero .filers .multiselect-container.dropdown-menu{
	width: 100%;
    border-radius: 20px;
    overflow: hidden;
    max-height: 250px;
	overflow-y: auto;
	padding: 0px 10px 10px 10px;
}

.hero .filers .multiselect-container .multiselect-filter{
	margin-bottom: 10px;
}
.hero .filers .multiselect-container .multiselect-filter svg{
	display: none;
}
.hero .filers .multiselect-container .multiselect-filter input{
	position: relative;
    left: inherit;
    margin: 0px;
    padding: 15px 15px 10px;
	border-radius: 0px;
}
.hero .filers .multiselect-container .multiselect-filter input:focus{
	box-shadow: none;
	border-radius: 0px;
}
.hero .filers .multiselect-container button.multiselect-option:hover,
.hero .filers .multiselect-container button.multiselect-all:hover{
	background-color: #0055AA !important;
	color: #fff;
	border-radius: 5px;
}

.hero .filers .filter-sec.activity{
	width: 35%;
}
.hero .filers .filter-sec.dates{
	width: 25%;
}
.hero .filers .filter-sec.location{
	width: 25%;
}
.hero .filers .filter-sec.search{
	border: none;
	width: 15%;
}
.hero .filers .filter-sec.search button{
	width: 100%;
	height: 100%;
	border: none;
	border-radius: 10px;
	background-color: #0055AA;
	color: #fff;
	cursor: pointer;
	font-size: 20px;
}



.filterSec{
	width: 100%;
	display: block;
	overflow: hidden;
	padding: 60px 15px;
}
.filterSec .col-12{
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
}
.filterSec .filter-col{
	width: calc(20% - 20px);
	position: relative;
}
.filterSec .filter-col .icon{
	position: absolute;
	left: 15px;
	top: 50%;
	transform: translateY(-50%);
}
.filterSec .filter-col .icon img{
	width: 100%;
	max-width: 25px;
}
.filterSec .filter-col input{
	width: 100%;
	background-color: #fff;
	box-shadow: 0px 0px 10px rgb(0 0 0 / 10%);
	border: none;
	padding: 12px 15px 10px 50px;
	border-radius: 5px;
	font-size: 18px;
	color: #333;
	font-weight: 500;
}
.filterSec .filter-col button{
	width: 100%;
	border: none;
	border-radius: 5px;
	background-color: #0055AA;
	color: #fff;
	padding: 11px 15px;
	font-size: 18px;
	text-transform: uppercase;
	font-weight: 600;
	letter-spacing: 1px;
	cursor: pointer;
}

.hero .filers .filter-sec > input{
	width: 100%;
    height: 100%;
    border-radius: 10px;
    border: solid 1px #ddd;
    padding: 25px 30px 5px 15px;
}
.hero .filers .filter-sec > input:focus-visible{
	outline: none;
	border-color: #999;
}

.disclaimertext{
	width: 100%;
	display: block;
	overflow: hidden;
	padding: 60px 0px 15px 15px;
}

.calendar, .page{
	width: 100%;
	display: block;
	overflow: hidden;
	padding: 60px 15px;
}
.calendar img{
	width: 100%;
}
.calendar div.zabuto_calendar .table tr.calendar-month-header td {
    padding: 30px 0px;
    font-size: 24px;
    width: 33.33%;
}
.calendar div.zabuto_calendar .table tr.calendar-month-header td span,
.calendar div.zabuto_calendar .table tr.calendar-month-header td .calendar-month-navigation{
    padding: 0px;
}
.calendar div.zabuto_calendar .table tr.calendar-dow-header th {
    padding: 15px 0px;
    font-size: 18px;
    width: 17%;
}
.calendar div.zabuto_calendar .table tbody > tr {
    width: 100%;
    display: flex;
}
.calendar div.zabuto_calendar .table tr.calendar-dow td{
    display: block;
    height: auto;
    width: 17%;
}
.calendar div.zabuto_calendar .table tr.calendar-dow td > div {
    height: 100%;
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
    color: #000;
    font-size: 16px;
	padding: 5px;
	min-height: 100px;
}
.calendar div.zabuto_calendar .table tr.calendar-dow td.event > div{
    color: #fff;
    background-color: #0055AA;
}
.calendar div.zabuto_calendar .table tr.calendar-dow td > div .eventList{
	overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.faq{
    /* max-width: 800px;
    margin: 0px auto;
    padding-top: 20px; */
}
.faq .panel-group > .panel.panel-default{
    border: none;
    border-radius: 0px !important;
    overflow: hidden;
    padding: 20px 0px;
    background-color: transparent;
}
.faq .panel-default .panel-heading{
    padding: 0px;
    border: none;
    background-color: #fff;
    color: #000;
    border-radius: 5px;
    /*margin-bottom: 20px;*/
    transition:all 0.3s ease-in;
}
.faq .panel-default .panel-heading.in {
    margin-bottom: 0px;
    border-radius: 5px 5px 0px 0px;
}
.faq .panel-heading h4.panel-title{
    margin: 0px;
    font-size: 18px;
    font-weight: 600;
    line-height: normal;
    position: relative;
    padding: 0px 40px 0px 10px;
}
.faq .panel-heading h4.panel-title a{
    width:100%;
    display:block;
    padding: 10px;
    color: #000000;
}
.faq .panel-heading h4.panel-title a:hover,
.faq .panel-heading h4.panel-title a:focus{
    text-decoration:none;
}
.faq .panel-heading h4.panel-title:before{
    content: "";
    position: absolute;
    width: 12px;
    height: 2px;
    background-color: #000;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
}
.faq .panel-heading h4.panel-title:after{
    content: "";
    position: absolute;
    width: 2px;
    height: 12px;
    background-color: #000;
    right: 20px;
    top: 50%;
    opacity:1;
    transform: translateY(-50%);
    transition: all 0.3s ease-in;
}
.faq .panel-heading.in h4.panel-title:after {
    opacity: 0;
}
.faq .panel-default .panel-body{
    border-top: none !important;
}
.faq .panel-default .panel-collapse .panel-body {
    padding: 0px 20px 10px;
    background-color: #fff;
    border-radius: 0px 0px 5px 5px;
    font-size: 16px;
    line-height: 27px;
}

footer{
	width: 100%;
	display: block;
	overflow: hidden;
	background-color: rgb(34 79 165 / 15%);
	padding: 0px 15px;
}
footer .top-footer{
	padding: 50px 0px 10px;
	border-bottom: solid 1px #B7B7B7;
}
footer .top-footer a.logo{
	display: inline-block;
	margin-bottom: 15px;
}
footer .top-footer a.logo h5{
	font-family: 'Kaushan Script', cursive;
	font-size: 36px;
	display: inline-block;
	color: #0055AA;	
}
footer .top-footer p{
	font-size: 16px;
	color: #333;
	font-weight: 500;
	padding-right: 40px;
}
footer .top-footer .links{
	text-align: center;
}
footer .top-footer h3{
	font-size: 22px;
	font-weight: 600;
	color: #0055AA;
	margin-bottom: 20px;
	display: block;
	width: 100%;
}
footer .top-footer .links ul li{
	margin-bottom: 10px;
}
footer .top-footer .links ul li a{
	color: #333;
	font-size: 16px;
	font-weight: 500;
	transition: all 0.3s ease-in;
}
footer .top-footer .links ul li a:hover{
	color: #0055AA;
}
footer .top-footer .social{
	display: flex;
	flex-direction: column;
	align-items: flex-end;
}
footer .top-footer .social ul{
	display: flex;
}
footer .top-footer .social ul li{
	margin-right: 20px;
}
footer .top-footer .social ul li:last-child{
	margin-right: 0px;
}
footer .top-footer .social ul li a{
	width: 45px;
	height: 45px;
	border-radius: 50%;
	background-color: #0055AA;
	border: solid 1px #0055AA;
	color: #fff;
	display: flex;
	justify-content: center;
	align-items: center;
	transition: all 0.3s ease-in;
}
footer .top-footer .social ul li a:hover{
	background-color: #fff;
	color: #0055AA;
}
footer .btm-footer{
	padding: 25px 0px;
}
footer .btm-footer p{
	font-size: 14px;
	color: #333;
	text-align: center;
	margin: 0px;
	font-weight: 500;
}

.modal.fade > .modal-dialog{
	height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0px auto;
    padding: 15px;
    width: 100%;
    max-width: 600px;
    text-align: center;
}
.modal.fade > .modal-dialog .modal-header{
	display: block;
}
.modal.fade > .modal-dialog .modal-header button.close{
	position: absolute;
    right: 20px;
    top: 22px;
}
.modal.fade > .modal-dialog .modal-header h4{
	padding: 0px 30px;
}
.eve_content{cursor: pointer;}
.eve_count{border-radius: 50%;
    width: 35px;
    height: 35px;
    padding: 7px;
    background: #fff;
    color: #0055AA;
    font-weight: 600;
	cursor: pointer;
}
.event_row {
    background: #f9fafc;
    padding: 5px 2px;
    margin-bottom: 5px;
}
button.multiselect-option.dropdown-item {
    white-space: pre-line;
}

.sharethis{
    padding-bottom: 40px;
}
.sharethis ul{
    display: flex;
    padding-top: 20px;
}
.sharethis ul li{
    margin-right: 15px;
    font-size: 18px;
    width: 40px;
    height: 40px;
    border-radius: 50%;
}
.sharethis ul li:last-child{
    margin-right: 0px;
}
.sharethis ul li a{
	width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    border: solid 1px #0055AA;
    border-radius: 5px;
    color: #0055AA;
	transition: all 0.3s ease-in;
	/* transform: translateY(0px); */
}
.sharethis ul li a:hover{
	/* transform: translateY(-5px); */
	border-radius: 50%;
}

.abouUs{
    background-color: #f9f9f9;
    padding: 40px 15px 25px;
}
.abouUs h1{
    font-size: 40px;
    margin-bottom: 20px;
}
.abouUs .page_content ul{
    margin-bottom: 20px;
    padding-left: 30px;
    list-style: disc;
}
.abouUs .page_content ul li{
    margin-bottom: 10px
}
.abouUs .page_content p a:hover{
    text-decoration: underline;
}

.faq{
    padding: 40px 15px;
	background-color: #f9f9f9;
}
.faq h1{
    font-size: 40px;
    margin-bottom: 20px;
}
.faq .faq-box{
    margin-bottom: 15px;
    box-shadow: 0px 0px 10px rgb(0 0 0 / 5%);
}

#cookie-consent {
	position: fixed;
	bottom: 0;
	left: 0;
	width: 100%;
	background-color: rgba(0, 0, 0, 0.8);
	padding: 20px;
	color: #fff;
	text-align: center;
}

#cookie-consent p {
	margin: 0;
}

#cookie-consent button {
	margin-top: 10px;
	border: none;
	border-radius: 10px;
	background-color: #0055AA;
	color: #fff;
	cursor: pointer;
	padding: 5px 10px 5px 10px;
}

@media screen and (max-width:1023px){ 
	button.multiselect-option.dropdown-item {
		pointer-events:none;
	}
  
  	span.form-check input{
		pointer-events: all;
  	}
  	span.form-check label  {
		pointer-events: none;
  	}
}


@media only screen and (max-width: 991px) {
	header a h2{
		font-size: 44px;
	}
	.hero{
		padding: 100px 0px;
	}
	.hero h1 {
		font-size: 42px;
		margin-bottom: 20px;
	}
	.hero p {
		font-size: 16px;
		margin-bottom: 30px;
	}
	.hero a{
		font-size: 18px;
	}
	.filterSec{
		padding: 40px 0px 20px;
	}
	.filterSec .filter-col {
		width: calc(50% - 10px);
		margin-bottom: 20px;
	}
	.filterSec .filter-col .icon img{
		max-width: 20px;
	}
	.filterSec .filter-col .icon{
		left: 10px;
	}
	.filterSec .filter-col input {
		padding: 12px 15px 10px 40px;
		font-size: 16px;
	}
	.filterSec .filter-col:last-child{
		width: calc(100% - 0px);
	}
	.filterSec .filter-col button{
		display: inline-block;
	}
	.calendar, .page{
		padding: 40px 0px;
	}
	footer{
		padding: 0px;
	}
	footer .top-footer a.logo{
		margin-bottom: 10px;
	}
	footer .top-footer a.logo h5{
		font-size: 30px;
	}
	footer .top-footer p{
		font-size: 14px;
		padding-right: 0px;
	}
	footer .top-footer h3{
		font-size: 20px;
		margin-bottom: 20px;
	}
	footer .top-footer .links ul li a{
		font-size: 14px;
	}
	footer .top-footer .links ul li{
		margin-bottom: 8px;
	}
	footer .top-footer .social ul li a{
		width: 40px;
		height: 40px;
	}
	footer .top-footer .social ul li {
		margin-right: 15px;
	}

    .calendar div.zabuto_calendar .table tr.calendar-month-header td {
        padding: 20px 0px;
        font-size: 20px;
        width: 33.33%;
    }
    .calendar div.zabuto_calendar .table tr.calendar-dow-header th {
        padding: 10px 0px;
        font-size: 16px;
        width: 17%;
    }
    .calendar div.zabuto_calendar .table tr.calendar-dow td > div{
        font-size: 14px;
		min-height: 75px;
    }
    .abouUs{
        padding: 40px 0px 25px;
    }
    .faq{
        padding: 40px 0px;
    }
}


@media only screen and (max-width: 767px){
	header a h2 {
		font-size: 30px;
	}
	.hero {
		padding: 60px 0px;
	}
	.hero h1 {
		font-size: 32px;
		margin-bottom: 15px;
	}
	.hero p {
		font-size: 14px;
		margin-bottom: 25px;
	}
	.hero a {
		font-size: 16px;
	}
	.filterSec .filter-col {
		width: calc(50% - 7px);
		margin-bottom: 15px;
	}
	.hero .filers .filter-sec > label{
		left: 17.5px;
		font-size: 12px;
	}
	.hero .filers .filter-sec > input {
		padding: 20px 10px 2px 10px;
		font-size: 14px;
		border-radius: 5px;
	}
	.hero .filers .filter-sec.search button{
		border-radius: 5px;
		margin-top: 12px;
	}
	.hero .filers .filter-sec button.multiselect{
		padding: 20px 26px 2px 10px;
		border-radius: 5px;
		font-size: 14px;
	}
	.filterSec .filter-col button {
		font-size: 16px;
		padding: 10px 15px;
	}
	footer .top-footer {
		padding: 35px 0px 10px;
	}
	footer .top-footer .row .col-4{
		flex: 0 0 100%;
		max-width: 100%;
		text-align: center;
	}
	footer .top-footer a.logo h5 {
		font-size: 28px;
	}
	footer .top-footer p{
		margin-bottom: 25px;
	}
	footer .top-footer h3 {
		font-size: 18px;
		margin-bottom: 15px;
	}
	footer .top-footer .links{
		margin-bottom: 15px;
	}
	footer .top-footer .social{
		align-items: center;
		margin-bottom: 15px;
	}
	footer .btm-footer {
		padding: 20px 0px;
	}
	footer .btm-footer p{
		font-size: 12px;
	}

	.hero .filers{
		padding: 15px 5px;
	}
	.hero .filers .filter-sec{
		padding: 0px 7.5px;
    	border: none;
	}
	.hero .filers .filter-sec.activity {
		width: 100%;
		margin-bottom: 15px;
	}
	.hero .filers .filter-sec.dates {
		width: 100%;
		margin-bottom: 15px;
	}
	.hero .filers .filter-sec.location {
		width: 100%;
	}
	.hero .filers .filter-sec.search {
		width: 100%;
	}
	.calendar div.zabuto_calendar .table tr.calendar-dow td > div {
		font-size: 10px;
		min-height: 55px;
		padding: 5px 0px;
	}
	.calendar div.zabuto_calendar .table tr.calendar-dow-header th{
		font-size: 14px;
	}
	.eve_count{border-radius: 50%;
		width: 25px;
		height: 25px;
		padding: 4px;
	}

    .abouUs h1{
        font-size: 30px;
        margin-bottom: 15px;
    }
    .abouUs .page_content p{
        font-size: 14px;
    }
    .abouUs .page_content ul{
        margin-bottom: 15px;
    }
    .abouUs .page_content ul li{
        font-size: 14px;
    }

    .faq h1{
        font-size: 30px;
        margin-bottom: 15px;
    }
    .faq .panel-heading h4.panel-title{
        font-size: 16px;
    }
    .faq .panel-default .panel-collapse .panel-body{
        padding: 0px 15px 10px;
        font-size: 14px;
        line-height: 24px;
    }
}