@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');

:root {
	--primary-font: "Montserrat", sans-serif;
	--primary-color: #23233b;
	--black-color: #000000;
	--white-color: #ffffff;
	--light-color: #E8E8F7;
	--text-color: #35343B;
	--gradient-bg-color: linear-gradient(90deg, #333398 0%, #EF3B39 100%);
	--primary-transition: all 0.5s ease-in-out 0s;
	--box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.1);
	--base-border-radius: 20px;
}

* {
	scrollbar-color: var(--primary-color) var(--light-color);
	scrollbar-width: thin;
}

ol,
ul {
	padding: 0;
	margin: 0;
}

textarea {
	resize: none;
}

p:last-child {
	margin-bottom: 0;
}

/* width */
::-webkit-scrollbar {
	width: 8px;
}

/* Track */
::-webkit-scrollbar-track {
	background: var(--grey-color);
}

/* Handle */
::-webkit-scrollbar-thumb {
	background: var(--primary-color);
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
	background: var(--primary-color);
}

body {
	font-family: var(--primary-font);
	font-size: 16px;
	color: var(--text-color);
	background: var(--white-color);
	line-height: 1.5;
	overflow-x: hidden;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	text-rendering: optimizeLegibility;
}

.btn-holder {
	display: flex;
	gap: 10px;
}

.rounded {
	border-radius: var(--base-border-radius) !important;
}

.btn-solid {
	gap: 24px;
	border-radius: 100px;
	padding: 10px 10px 10px 24px;
	background: var(--gradient-bg-color);
	color: var(--white-color);
	display: inline-flex;
	align-items: center;
	font-weight: 600;
	transition: var(--primary-transition);
	text-decoration: none;
	height: 50px;
	box-sizing: border-box;
	border: 1px solid #333398;
}

.btn-solid.white {
	background: var(--white-color);
	color: var(--text-color);
	border: 1px solid var(--white-color);
}

.btn-solid span {
	width: 30px;
	height: 30px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	background: #fff;
	color: var(--primary-color);
	transition: var(--primary-transition);
	border-radius: 50%;
	font-size: 14px;
}

.btn-solid.white:hover {
	background: var(--gradient-bg-color);
	color: #fff;
	border: 1px solid var(--white-color);
}

.btn-solid.white span {
	background: var(--gradient-bg-color);
	color: #fff;
}

.btn-solid.white:hover span {
	background: #fff;
	color: var(--text-color);
}

.btn-solid:hover {
	background: var(--white-color);
	color: var(--primary-color);
	border: 1px solid var(--primary-color);
}

.btn-solid:hover span {
	background: var(--gradient-bg-color);
	color: #fff;
}

.btn-bordered {
	gap: 24px;
	border-radius: 100px;
	border: 1px solid var(--white-color);
	padding: 10px 10px 10px 24px;
	background: transparent;
	color: #fff;
	display: inline-flex;
	align-items: center;
	font-weight: 600;
	transition: var(--primary-transition);
	text-decoration: none;
	height: 50px;
	box-sizing: border-box;
	font-size: 14px;
}

.btn-bordered span {
	width: 30px;
	height: 30px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	background: var(--gradient-bg-color);
	color: var(--white-color);
	transition: var(--primary-transition);
	border-radius: 50%;
}

.btn-bordered:hover {
	background: var(--gradient-bg-color);
	color: #fff;
	border: 1px solid var(--white-color);
}

.btn-bordered:hover span {
	background: #fff;
	color: var(--primary-color);
}

.btn-bordered.btn-white {
	color: var(--text-color);
	border: 1px solid var(--text-color);
}

.btn-bordered.btn-white:hover {
	color: #fff;
}

a {
	color: var(--text-color);
}

a:hover {
	color: var(--secondary-color);
}

a,
a:hover {
	text-decoration: none;
}

ul li,
ol li {
	list-style: none;
}

img {
	max-width: 100%;
}

section:has(.fadeInRight),
section:has(.fadeInLeft),
section:has(.fadeInLeftShort),
section:has(.fadeInRightShort) {
	overflow-x: hidden;
}

.slick-dotted.slick-slider {
	margin: 0;
}

.slick-dots {
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
}

.slick-dots li button:before {
	display: none;
}

.slick-dots li {
	display: block;
	border-radius: 5px;
	width: auto;
	height: auto;
	margin: 3px 3px;
}

.slick-dots li button {
	width: 10px;
	height: 5px;
	border-radius: 5px;
	background-color: #DCDCEC;
	padding: 0;
	transition: 0.3s;
	display: block;
}

.slick-dots li.slick-active button {
	background-color: var(--primary-color);
	transition: 0.3s;
	display: block;
	opacity: 1;
	width: 20px;
}

.slick-prev:before,
.slick-next:before {
	font-size: 38px;
	color: var(--text-color);
	display: none;
}

.custom-prev,
.custom-next {
	background: #fff;
	border: 2px solid #918F99;
	color: #918F99;
	border-radius: 50%;
	width: 45px;
	height: 45px;
	display: flex;
	align-items: center;
	justify-content: center;
	position: absolute;
	cursor: pointer;
	z-index: 2;
	transition: all 0.3s ease;
}

.custom-prev:hover,
.custom-next:hover {
	color: var(--text-color);
	border-color: var(--text-color);
}

.slick-prev,
.slick-next {
	font-size: 15px;
}

.slick-prev:hover,
.slick-prev:focus,
.slick-next:hover,
.slick-next:focus {
	color: var(--text-color);
}

.slick-arrow.slick-hidden {
	display: block;
}

h1,
h2,
h3,
h4,
h5,
h6 {
	line-height: 1.2;
	font-family: var(--primary-font);
	color: var(--text-color);
	margin-bottom: 1.2rem;
	font-weight: 500;
}

textarea {
	resize: none;
}

.fs-50 {
	font-size: 50px;
}

.fs-36 {
	font-size: 36px;
}

.default-page-sec h2,
.fs-30 {
	font-size: 30px;
}

.default-page-sec h3,
.fs-28 {
	font-size: 28px;
}

.default-page-sec h5,
.fs-24 {
	font-size: 24px;
}

.default-page-sec h6,
.fs-20 {
	font-size: 20px;
}

.fs-18 {
	font-size: 18px;
}

p {
	margin-bottom: 1.5rem;
}

.sc-pt-120 {
	padding-top: 120px;
}

.sc-pb-120 {
	padding-bottom: 120px;
}

.sc-pt-90 {
	padding-top: 90px;
}

.sc-pb-90 {
	padding-bottom: 90px;
}

.sc-pb-80 {
	padding-bottom: 80px;
}

.sc-pt-60 {
	padding-top: 60px;
}

.sc-pb-60 {
	padding-bottom: 60px;
}


.sc-pt-50 {
	padding-top: 50px;
}

.sc-pb-50 {
	padding-bottom: 50px;
}

.sc-pt-40 {
	padding-top: 40px;
}

.sc-pb-40 {
	padding-bottom: 40px;
}

.sc-pt-30 {
	padding-top: 30px;
}

.sc-pb-30 {
	padding-bottom: 30px;
}

.mc-mb-40 {
	margin-bottom: 40px;
}

.mc-mb-60 {
	margin-bottom: 60px;
}

.mc-mb-100 {
	margin-bottom: 100px;
}

.mc-mt-60 {
	margin-top: 60px;
}

/* main {
	overflow-x: hidden;
} */

.form-control:focus {
	box-shadow: inherit;
	border: 0;
	outline: none;
}

/* buttons */
.button {
	display: inline-block;
	padding: 14px 68px 14px 22px;
	border-radius: calc(var(--base-border-radius) * 2.5);
	color: var(--white-color);
	font-size: 16px;
	transition: all 0.3s;
	position: relative;
	overflow: hidden;
	z-index: 1;
	background: var(--btn-text-color);
}

.button::after {
	content: "";
	position: absolute;
	right: 22px;
	top: 50%;
	transform: translateY(-50%);
	width: 18px;
	height: 13px;
	background-image: url("../images/btn-arrow.svg");
	background-size: contain;
	background-repeat: no-repeat;
	transition: right 0.3s ease, transform 0.3s ease;
}

.button.button-primary::after {
	content: "";
	position: absolute;
	right: 22px;
	top: 50%;
	transform: translateY(-50%);
	width: 18px;
	height: 13px;
	background-image: url("../images/arrow-white.svg");
	background-size: contain;
	background-repeat: no-repeat;
	transition: right 0.3s ease, transform 0.3s ease;
}

.button-line-white {
	color: var(--white-color);
	border-color: var(--white-color);
}

.button-line-white::after {
	background-image: url("../images/arrow-white.svg");
}

.button-line-blue {
	color: var(--blude-btn-color);
	border: 1px solid var(--blude-btn-color);
}

.button-line-blue::after {
	background-image: url("../images/blue-arrow.svg");
}

.button-line-white:hover {
	color: var(--white-color);
}

.button.button-primary:hover {
	color: var(--white-color);
}

.sectionTitle h1,
.sectionTitle h2 {
	margin-bottom: 15px;
}


.sidebar-common .accordion-button:not(.collapsed)::after {
	filter: invert(1);
}

.accordion-button:not(.collapsed) {
	color: var(--white-color);
	background-color: #404061;
}

.accordion-button {
	font-weight: bold;
}

.accordion-button:focus {
	box-shadow: none !important;
}

.accordion-item {
	border: 0;
	border-bottom: 1px solid rgba(0, 0, 0, .125);

}

ul.o-list li {
	margin-bottom: 10px;
}

ul.o-list li:last-child {
	margin-bottom: 0;
}

.c-checkbox input {
	position: absolute;
	opacity: 0;
	visibility: hidden;
}

.c-checkbox .input-checkbox {
	width: 16px;
	height: 16px;
	border: 1px solid #404061;
	box-sizing: border-box;
	border-radius: 3px;
	position: relative;
	margin-right: 9px;
	cursor: pointer;
	display: inline-block;
	vertical-align: middle;
}

.c-checkbox .input-checkbox::before {
	content: "";
	border-radius: 1px;
	background: #404061;
	position: absolute;
	top: 0px;
	right: 0px;
	bottom: 0px;
	left: 0px;
	transition: all 0.1s ease-in;
	opacity: 0;
	visibility: hidden;
}

.c-checkbox .input-checkbox::after {
	content: "";
	position: absolute;
	left: 2px;
	top: 2px;
	width: 11px;
	height: 6px;
	background-size: contain;
	border-left: 1px solid #fff;
	border-bottom: 1px solid #fff;
	transform: rotate(-45deg);
}

.c-checkbox input:checked+.input-checkbox::before,
.c-checkbox input:checked+.input-checkbox::after,
.c-checkbox input[checked]+.input-checkbox::before,
.c-checkbox input[checked]+.input-checkbox::after {
	opacity: 1;
	visibility: visible;
}

.sitemap-menu ul.menu,
.sitemap-menu ul.sub-menu {
	list-style: none;
	padding-left: 0;
	margin: 0 0 20px;
}

.sitemap-menu ul.menu {
	display: flex;
	flex-wrap: wrap;
	flex-direction: column;
}

.sitemap-menu a {
	color: var(--text-color);
	text-decoration: none;
	display: inline-block;
	transition: all 0.2s ease;
	position: relative;
	padding-left: 20px;
}

.sitemap-menu a::before {
	content: "";
	width: 10px;
	height: 10px;
	background: var(--gradient-bg-color);
	border-radius: 50%;
	position: absolute;
	left: 0;
	top: 50%;
	transform: translateY(-50%);
	transition: var(--primary-transition);
}

.sitemap-menu ul.sub-menu {
	padding-left: 20px;
	border-left: 2px dashed #ddd;
	margin-top: 10px;
	margin-left: 4px;
}

.sitemap-menu ul li {
	margin-bottom: 5px;
}

.sitemap-menu ul li ul li ul li a {
	font-weight: 400;
}

.sitemap-menu ul li::before {
	background: transparent !important;
}

/*modified container*/
@media (min-width: 992px) {

	.container-right-end {
		margin-left: calc(50vw - 480px);
	}
}

/* Custom Pagination Styles */
.custom-pagination_html,
.navigation.pagination .nav-links {
	display: flex;
	justify-content: center;
	align-items: center;
	margin-top: 40px;
	margin-bottom: 40px;
	gap: 8px;
}

.custom-pagination_html .page-numbers,
.navigation.pagination .nav-links .page-numbers,
.page-numbers {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 45px;
	height: 45px;
	padding: 10px 15px;
	border-radius: 8px;
	background: var(--white-color);
	color: var(--text-color) !important;
	font-size: 16px;
	font-weight: 500 !important;
	text-decoration: none;
	border: 1px solid #DCDCEC;
	transition: var(--primary-transition);
	box-sizing: border-box;
}

.custom-pagination_html .page-numbers:hover,
.navigation.pagination .nav-links .page-numbers:hover,
.page-numbers:hover {
	background: var(--gradient-bg-color);
	color: var(--white-color) !important;
	border-color: var(--white-color);
	transform: translateY(-2px);
	box-shadow: var(--box-shadow);
}

.custom-pagination_html .page-numbers.current,
.navigation.pagination .nav-links .page-numbers.current,
.page-numbers.current {
	background: var(--gradient-bg-color);
	color: var(--white-color) !important;
	border-color: var(--white-color);
	box-shadow: var(--box-shadow);
	cursor: default;
	height: auto;
	position: relative;
	z-index: 9;
}

.custom-pagination_html .page-numbers.dots {
	border: none;
	background: transparent;
	color: var(--text-color);
	cursor: default;
	min-width: auto;
	padding: 10px 5px;
}

.custom-pagination_html .page-numbers.dots:hover {
	background: transparent;
	transform: none;
	box-shadow: none;
}

.custom-pagination_html .page-numbers.prev,
.custom-pagination_html .page-numbers.next {
	font-weight: 600;
	padding: 10px 20px;
}

.custom-pagination_html .page-numbers.prev:hover,
.custom-pagination_html .page-numbers.next:hover {
	background: var(--primary-color);
	color: var(--white-color) !important;
}

/* No Result Found Message */
#post_data_result .d-flex.justify-content-center.align-items-center {
	min-height: 400px;
	width: 100%;
}

#post_data_result .d-flex.justify-content-center.align-items-center p {
	font-size: 20px;
	font-weight: 500;
	color: var(--text-color);
	text-align: center;
	margin: 0;
	padding: 30px;
	background: var(--light-color);
	border-radius: var(--base-border-radius);
	width: 100%;
	max-width: 500px;
}

/* Read More/Less for Events */
.event-contents.line-clamp-3 {
	display: -webkit-box;
	-webkit-line-clamp: 3;
	line-clamp: 3;
	-webkit-box-orient: vertical;
	overflow: hidden;
	margin-bottom: 5px;
	line-height: 1.6;
}


.event-contents.line-clamp-3 p {
	margin-bottom: 10px;
}

.event-contents.line-clamp-3 p:last-child {
	margin-bottom: 0;
}

.event-contents.line-clamp-3.expanded {
	display: block;
	overflow: visible;
	-webkit-line-clamp: unset;
	line-clamp: unset;
}

.read-more-btn {
	background: transparent;
	border: none;
	color: var(--primary-color);
	font-weight: 600;
	font-size: 14px;
	padding: 0;
	cursor: pointer;
	text-decoration: none;
	transition: var(--primary-transition);
}

.read-more-btn:hover {
	color: var(--black-color);
}



@media (min-width: 1200px) {
	.container-right-end {
		margin-left: calc(50vw - 570px);
	}
}

@media (min-width: 1400px) {
	.container-right-end {
		margin-left: calc(50vw - 660px);
	}
}

@media (max-width: 767px) {
	.sc-pb-60 {
		padding-bottom: 40px;
	}

	.sc-pt-60 {
		padding-top: 40px;
	}

	.sc-pt-90 {
		padding-top: 40px;
	}

	.sc-pb-90 {
		padding-bottom: 65px;
	}

	.fs-36 {
		font-size: 24px;
	}

	.sc-pb-40 {
		padding-bottom: 25px;
	}

	.btn-holder {
		flex-wrap: wrap;
	}
	/* Responsive Pagination */
	.custom-pagination_html,
	.navigation.pagination .nav-links {
		margin-top: 30px;
		margin-bottom: 30px;
		gap: 5px;
		flex-wrap: wrap;
	}

	.custom-pagination_html .page-numbers {
		min-width: 38px;
		height: 38px;
		padding: 8px 12px;
		font-size: 14px;
	}

	.custom-pagination_html .page-numbers.prev,
	.custom-pagination_html .page-numbers.next {
		padding: 8px 15px;
		font-size: 13px;
	}

	/* Responsive No Result Message */
	#post_data_result .d-flex.justify-content-center.align-items-center {
		min-height: 300px;
	}

	#post_data_result .d-flex.justify-content-center.align-items-center p {
		font-size: 16px;
		padding: 20px;
	}
}