@import url('https://fonts.googleapis.com/css2?family=Jost:wght@100..900&display=swap');

:root {
	--theme-primary-color: #fff000;
	--theme-secondary-color: #000000;
	--text-color: #575757;
	--text-size: 1rem;

}
.theme-text-content{
	color: var(--text-color) !important;
}
li{
	margin-bottom: 3px;
}

.page-link {
	--bs-pagination-color: var(--theme-secondary-color);
	--bs-pagination-active-bg: var(--theme-primary-color);
	--bs-pagination-active-color: var(--theme-secondary-color);
	--bs-pagination-active-border-color: var(--theme-secondary-color);
}

input:focus,
.form-control:focus,
.form-select:focus {
	box-shadow: none !important;
}

.color-inherit {
	color: inherit !important;
}

::selection {
	background: var(--theme-primary-color);
	color: var(--theme-secondary-color);
}

/* Scroll Top - Start */
.progress-wrap {
	position: fixed;
	right: 50px;
	bottom: 50px;
	height: 46px;
	width: 46px;
	cursor: pointer;
	display: block;
	border-radius: 50px;
	box-shadow: inset 0 0 0 2px rgba(255, 255, 255, 0.2);
	z-index: 10000;
	opacity: 0;
	visibility: hidden;
	background-color: var(--theme-secondary-color);
	transform: translateY(15px);
	-webkit-transition: all 200ms linear;
	transition: all 200ms linear;
}

.progress-wrap.active-progress {
	opacity: 1;
	visibility: visible;
	transform: translateY(0);
}

.progress-wrap svg.progress-circle path {
	stroke: var(--theme-primary-color);
	stroke-width: 4;
	box-sizing: border-box;
	-webkit-transition: all 200ms linear;
	transition: all 200ms linear;
}

.progress-wrap svg path {
	fill: none;
}

.progress-wrap::after {
	position: absolute;
	font-family: "FontAwesome";
	content: "\f077";
	text-align: center;
	line-height: 46px;
	font-size: 18px;
	color: var(--theme-primary-color);
	left: 0;
	top: 0;
	height: 46px;
	width: 46px;
	cursor: pointer;
	display: block;
	z-index: 1;
	-webkit-transition: all 200ms linear;
	transition: all 200ms linear;
}

/* Scroll Top - End */

/* ==== Common - CSS Start ==== */
* {
	font-family: "Jost", sans-serif;
}

a {
	text-decoration: none;
}
.text-theme-primary{
	color: var(--theme-primary-color) !important;
}
.text-theme-secondary,
.text-theme-secondary-all * {
	color: var(--theme-secondary-color) !important;
}

p {
	color: var(--text-color);
	font-size: var(--text-size);

}

.mt-10 {
	margin-top: calc(3rem * 2);
}

.theme-btn {
	padding: .5rem 1rem;
	border: 1px solid var(--theme-secondary-color);
	border-radius: .35rem;
	font-size: 1rem;
	transition: .3s ease;
	display: inline-block;
	text-align: center;
}

.theme-btn-primary {
	background: var(--theme-primary-color);
	color: var(--theme-secondary-color);
}

.theme-btn-primary:hover {
	background: var(--theme-secondary-color);
	color: var(--theme-primary-color);
}

.theme-btn-secondary {
	background: var(--theme-secondary-color);
	color: #fff;
}

.theme-btn-secondary:hover {
	background: var(--theme-primary-color);
	color: var(--theme-secondary-color);
}

.theme-btn-sm {
	padding: .4rem 2rem;
	font-size: .8rem;
}

.theme-bg-primary {
	background-color: var(--theme-primary-color) !important;
}
.theme-bg-secondary {
	background-color: var(--theme-secondary-color) !important;
}

.theme-bg-light {
	background-color: #f7f7f7;
}

.underline-hover {
	display: inline;
	background-image: linear-gradient(to bottom, #000 0%, #000 98%);
	background-repeat: no-repeat;
	background-position: left 100%;
	background-size: 0% 1px;
	transition: all 0.8s ease-in-out;
}

.underline-hover:hover {
	background-size: 100% 1px;
}

.fs-14 {
	font-size: 14px !important;
}
.fs-1rem{
	font-size: 1rem !important;
}
.fs-18{
	font-size: 18px !important;
}

.theme-border-light {
	border-color: #a3a3a3;
}

/* ==== Common - CSS End ==== */

/* ==== Topbar - CSS Start ==== */
.info-head {
	text-align: left;
	padding: 5px 0;
	background-color: var(--theme-primary-color);
	position: relative;
	z-index: 99;
}

.info-head::before {
	content: '';
	position: absolute;
	width: 100%;
	height: 100%;
	background-color: var(--theme-secondary-color);
	top: 0;
	left: 0;
	--bg-clip: 64%;
	clip-path: polygon(var(--bg-clip) 0%, 100% 0, 100% 100%, calc(var(--bg-clip) + 5%) 100%);
}

.info-head ul {
	padding: 5px 0;
	margin: 0;
}

.info-head ul li {
	list-style: none;
	display: inline-flex;
	align-items: center;
	gap: .5rem;
	--list-space: 15px;
	padding-left: var(--list-space);
	color: #fff;
}

.info-head ul li:first-child {
	--list-space: 0;
}

.info-head .icon-list-round li i {
	--iconSize: 30px;
	width: var(--iconSize);
	height: var(--iconSize);
	line-height: var(--iconSize);
	text-align: center;
	border-radius: 50%;
	font-size: 14px;
	background-color: transparent;
	transition: .3s ease;
}

.info-head .icon-hover-secondary li a:hover i {
	background-color: var(--theme-secondary-color);
	color: #fff !important;
}

.info-head .icon-hover-primary li a:hover i {
	background-color: var(--theme-primary-color);
	color: var(--theme-secondary-color) !important;
}

.info-head ul li a {
	color: #fff;
	transition: all .3s ease-in-out;
	font-size: 14px;
	font-weight: 500;
}

.top-social-icons {
	position: relative;
}

/* ==== Topbar - CSS End ==== */

/* ==== Site Header - CSS Start ==== */
.site-header {
	box-shadow: rgba(0, 0, 0, 0.1) 0px 1px 2px;
	position: sticky;
	top: 0;
	z-index: 999;
	background: #fff;
}

.site-header .navbar .navbar-brand img {
	width: 100%;
	--site-logo: 180px;
	max-width: var(--site-logo);
}

.site-header li.nav-item:not(:last-child) {
	--site-nav-gap: 10px;
	margin-right: var(--site-nav-gap);
}

.site-header .nav-item .nav-link {
	--bs-nav-link-font-size: 1.1rem;
	--bs-nav-link-hover-color: var(--theme-secondary-color);
	--bs-nav-link-color: var(--theme-secondary-color);
	--bs-nav-link-padding-y: 4px;
	position: relative;
}

.site-header .nav-item .nav-link::before {
	content: '';
	position: absolute;
	bottom: 0;
	left: 50%;
	transform: translateX(-50%);
	--nav-animate-width: 0%;
	width: var(--nav-animate-width);
	height: 2px;
	background: var(--theme-secondary-color);
	transition: .3s ease;
}

/* ==== Site Header - CSS End ==== */

/* ==== About Us - CSS Start ==== */
.about-us .about-image {
	width: 400px;
	height: 400px;
	object-fit: cover;
	box-shadow: 0 15px 25px rgba(10, 10, 10, 0.06);
}

/* ==== About Us - CSS End ==== */

/* ==== Tour Cards - CSS Start ==== */
.sticky-contact-bar, section.partners {
	background-image: url('../images/layer-light-bg.png');
	background-repeat: no-repeat;
	background-size: cover;
}

.tourCard-img {
	position: relative;
	overflow: hidden;
}

.tourCard-img img {
	width: 100%;
	height: 280px;
	object-fit: cover;
	transition: .3s ease;
}

.tourCard:hover .tourCard-img img {
	transform: scale(1.15) rotate(5deg);
}

.tourCard-img::before {
	content: '';
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	background: rgba(0, 0, 0, 0.2);
	z-index: 2;
	transition: .3s ease;
}

.tourCard-body {
	padding: 1rem;
}

.tourCard {
	border-radius: 10px;
	overflow: hidden;
	background: #fff;
}

.tourCard:hover .underline-hover {
	background-size: 100% 1px;
}

.tourCard-title {
	font-size: 22px;
	font-weight: 700;
	color: #21212d;
}

.tourCard-Tags {
	position: absolute;
	right: 10px;
	top: 10px;
	z-index: 2;
}

.tourCard-Tags>span {
	background: var(--theme-primary-color);
	color: var(--theme-secondary-color);
	padding: .2rem .5rem;
	font-size: 12px;
	border-radius: 4px;
	font-weight: 700;
}

.tourCard-Tags>span:nth-child(even) {
	background: var(--theme-secondary-color);
	color: #fff;
	font-weight: 400;
}

.tourPackageInfoIcon {
	display: grid;
	--grids: 5;
	grid-template-columns: repeat(var(--grids), 1fr);
	gap: .8rem;
	text-align: center;
}

.tourPackageInfoIcon .item--icon {
	display: grid;
	gap: .4rem;
	font-size: 1.1rem;
	justify-content: center;
}

.tourPackageInfoIcon .item--icon img {
	display: block;
	height: 30px;
	margin: auto;
}

.tourCard-body .priceCard .price {
	font-size: 20px;
	line-height: 1.2;
	font-weight: 600;
	color: var(--theme-secondary-color);
	letter-spacing: -1.2px;
	display: inline-grid;
	text-align: end;
	background: var(--theme-primary-color);
	padding: 3px 10px 3px 20px;
	border-radius: 0 3px 3px 0;
	position: relative;
	left: 20px;
	min-height: 42px;
	align-items: center;
}

.tourCard-body .priceCard .price::after {
	background: transparent;
	--shapeBorder: 20px;
	border-bottom: var(--shapeBorder) solid transparent;
	border-left: 18px solid var(--theme-primary-color);
	border-top: var(--shapeBorder) solid transparent;
	content: '';
	position: absolute;
	left: -18px;
	top: 0;
	bottom: 0;
	transform: rotateY(180deg);
}

.tourCard-body .priceCard .price::before {
	background: #fff;
	border-radius: 10px;
	box-shadow: inset 0 1px rgba(0, 0, 0, 0.25);
	content: '';
	height: 6px;
	left: 0;
	position: absolute;
	width: 6px;
	top: 50%;
	transform: translateY(-50%);
}

.price-cut {
	text-decoration: line-through;
	color: var(--theme-secondary-color);
	font-weight: 400;
	letter-spacing: 0;
	font-size: 12px !important;
}

.sticky-innerForm {
	padding: 1.5rem;
	background: var(--theme-secondary-color);
	border: 1px solid #e1e1e1;
	border-radius: 20px;
	box-shadow: 0 20px 35px rgba(20, 20, 20, 0.08);
	margin-top: -7.5rem;
}

.tag-rope {
	position: absolute;
	top: 0;
}

.tag-rope::before {
	content: '';
	position: absolute;
	width: 46px;
	height: 15px;
	border-style: solid;
	border-width: 0px 1px 2px 1px;
	border-color: var(--bs-dark);
	border-radius: 100%;
	left: -42px;
	top: 16px;
	z-index: 1;
}

.sticky-innerForm .form-control {
	border-color: #fff !important;
}

div:has(>.sticky-innerForm-title) {
	position: relative;
}

div:has(>.sticky-innerForm-title)::before {
	content: '';
	position: absolute;
	top: 50%;
	width: 100%;
	height: 1px;
	left: 0;
	background: #e1e1e1;
}

.sticky-innerForm-title {
	display: inline-block;
	background: var(--theme-secondary-color);
	color: var(--theme-primary-color);
	position: relative;
	padding-right: 20px;
	margin: 0;
}

.input-counter-wrap input[type="number"]::-webkit-outer-spin-button,
.input-counter-wrap input[type="number"]::-webkit-inner-spin-button {
	-webkit-appearance: none;
	margin: 0;
}

.sticky-innerForm-inputs {
	display: grid;
	--grids: 6;
	grid-template-columns: repeat(var(--grids), 1fr);
	gap: 10px;
}

.input-counter-wrap button {
	padding: 0;
	height: 38px;
	width: 30px;
	border-radius: 0;
}

.input-counter-wrap input {
	height: 38px;
	text-align: center;
	width: 50px;
	border-radius: 0;
}

.sticky-submit-btn button {
	height: 38px;
	padding: 0 1rem;
	width: 100%;
}

.sticky-submit-btn button:hover {
	border-color: var(--theme-primary-color);
}

/* ==== Tour Cards - CSS End ==== */

/* ==== Contact - CSS Start ==== */
.pre-title {
	width: fit-content;
	margin: auto;
	display: block;
	font-size: 0.9rem;
	font-weight: 700;
	text-transform: uppercase;
	color: var(--theme-secondary-color);
}

section.contact {
	position: relative;
}

.contact .form-control {
	width: 100%;
	height: 50px;
	background: no-repeat;
	box-shadow: none;
	padding: 1rem;
	background-color: rgba(0, 0, 0, 0.075);
	border: none;
	border-radius: 4px;
	line-height: 1.2;
	color: #21212d;
}

.contact textarea.form-control {
	height: 100px;
}

.contact .contacts i, section.partners i {
	width: 45px;
	height: 45px;
	background: #ffee00a4;
	border-radius: 100px;
	text-align: center;
	line-height: 45px;
	font-size: 20px;
}

section.contact::before,
section.contact::after {
	content: '';
	position: absolute;
	width: 100%;
	height: 100%;
	left: 0;
	top: 0;
	z-index: -1;
	background-image: url('../images/container-shape.png');
	background-repeat: no-repeat;
	background-position: bottom left;
	opacity: 0.7;
}

section.contact::after {
	transform: rotateY(180deg);
}

/* ==== Contact - CSS End ==== */

/* ==== Footer - CSS Start ==== */
.footer-shape::before {
	content: '';
	position: absolute;
	width: 100%;
	height: 100%;
	left: 0;
	top: 0;
	background-image: url('../images/Footer-BG.png');
	background-position: center left;
	background-size: cover;
	background-repeat: no-repeat;
}

footer {
	position: relative;
	background-color: #111117;
	color: #e0e0e0;
}

footer p {
	color: #e0e0e0 !important;
}

footer .card h4.title {
	margin: 1.5rem 0;
	font-size: 1.5rem;
	font-weight: 700;
	line-height: 1.2;
	color: #e0e0e0;
}

footer .card {
	background-color: #ffffff09 !important;
	padding: 1.5rem;
}

footer .card i {
	margin-right: 10px;
	color: #e0e0e0;
}

footer .items .card a {
	margin: 0 0 0.5rem;
	color: inherit;
	font-size: 14px;
}

footer .items .card a:hover {
	color: var(--theme-primary-color);
}

footer .navbar-brand img {
	max-width: 200px;
}

footer .navbar-brand .featured .first {
	position: relative;
	margin-right: -10px;
}

footer .brand .logo {
	font-size: 2.5rem;
	font-weight: 700;
	line-height: 0.8;
}

footer .brand a:hover {
	text-decoration: none;
}

footer .title {
	margin-top: 0;
}

footer .nav-item {
	margin: 0;
}

footer .nav-item .nav-link {
	font-weight: 400;
	line-height: 1.4;
	color: inherit;
}

footer .nav-item .nav-link:hover {
	color: var(--theme-primary-color);
}

footer .copyright p {
	font-size: 14px;
	line-height: 1.8;
}

.copyright {
	border-top: 1px solid #4c4c4c;
}

/* ==== Footer - CSS End ==== */



/* ==== Package Details - CSS Start ==== */
.packageSlides .swiper-button-prev,
.packageSlides .swiper-button-next {
	--size: 40px;
	width: var(--size);
	height: var(--size);
	background: #151515;
	border-radius: 100px;
	--swiper-navigation-size: 16px;
	--swiper-navigation-color: var(--theme-primary-color);
	font-weight: bold;
	border: 1px solid;
}

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

.package-desc-title {
	/* text-decoration: underline; */
	margin: 0px;
	padding: 10px 0px;
	font-size: 18px;
	position: relative;
	font-weight: 700;
}

.package--description {
	padding: 20px;
	border: 1px solid #eeeeee;
	background-color: #fff;
	border-radius: 16px;
	box-shadow: rgba(0, 0, 0, 0.1) 0px 1px 2px;
	/* box-shadow: 0 0 7px rgba(0, 0, 0, .20); */
}

.scroll-box {
	border: 1px solid #eeeeee;
	margin: 10px;
	padding: 5px 0 15px 15px;
	border-radius: 1rem;
	box-shadow: rgba(0, 0, 0, 0.1) 0px 1px 2px;
}

.pricelist-wrapper h3 {
	font-size: 22px;
	font-weight: 600;
	color: var(--theme-secondary-color);
	padding: 10px;
	background: var(--theme-primary-color);
	text-align: center;
}

.package-detail-price .price {
	font-size: 24px !important;
	font-weight: 600;
	color: #d81a0c;
}

.pricelist-wrapper button {
	background: #2196f3;
	border-color: #2196f3;
}

.pricelist-wrapper button:hover,
.pricelist-wrapper button:focus {
	background: #1c75bb;
	color: #FFF;
	border-color: #1c75bb;
}

.scroll-content {
	max-height: 250px;
	overflow: auto;
}

.scroll-content::-webkit-scrollbar {
	width: 2px;
}

.scroll-content::-webkit-scrollbar-track {
	box-shadow: inset 0 0 5px grey;
	border-radius: 10px;
}

.scroll-content::-webkit-scrollbar-thumb {
	background: #2196F3;
	border-radius: 10px;
}

.scroll-content::-webkit-scrollbar-thumb:hover {
	background: #1a69aa;
}

.package-overview h3 {
	font-size: 17px;
	font-weight: 600;
	color: #000;
	font-family: Poppins, sans-serif !important;
}

.package-overview {
	position: relative;
}

.package-overview::before {
	content: '';
	position: absolute;
	left: 0;
	top: 12px;
	background: #2196f3;
	height: 30px;
	width: 5px;
}

h2.package-title {
	font-weight: 700;
	font-size: 22px;
}

.scroll-box.scroll-green {
	background-color: #87ceeb29;
	position: relative;
}

.scroll-box.scroll-red {
	background-color: #ffd9c06b;
	position: relative;
}

.scroll-box.scroll-green::before {
	content: '';
	position: absolute;
	left: 0;
	top: 9px;
	background: #71d2ff;
	height: 22px;
	width: 4px;
	padding: 0 !important;
}

.scroll-box.scroll-red::before {
	content: '';
	position: absolute;
	left: 0;
	top: 9px;
	background: #ffaa76;
	height: 22px;
	width: 4px;
	padding: 0 !important;
}

.heading-title h3 {
	font-size: 18px;
	text-align: center;
	font-weight: 600;
}

.heading-title h4 {
	font-size: 14px;
	text-align: center;
	color: #626262;
}

.qtySelector {
	height: 35px;
	border-radius: 4px;
	border: 1px solid var(--theme-secondary-color);
	display: flex;
	overflow: hidden;
}

.qtySelector .fa {
	padding: 13px 5px;
	height: 100%;
	width: 50px;
	cursor: pointer;
	text-align: center;
	font-size: 9px;
}

.qtySelector .fa-minus {
	border-right: 1px solid #bdbdbd;
}

.qtySelector .fa-plus {
	border-left: 1px solid #bdbdbd;
}

.package-detail-sticky-form {
	position: sticky;
	top: 130px;
}

.package--description:has(>.helpBox) {
	background-color: #fff;
}

.contact-social {
	flex-direction: row;
}

.contact-social li {
	margin-right: 10px;
}

.package-inc {
	display: inline-block;
	background: #fff;
	padding: 6px 8px;
	border: 1px solid #BCBCBC;
	border-radius: 36px;
	width: 100%;
	max-width: 250px;
	font-size: 12px;
	font-weight: 500;
	background: #eee;
}

.package_btn {
	text-align: center;
	margin-top: -15px;
}

.package-detail-wrapper,
.blog-wrapper {
	background-image: url('../images/layer-light-bg.png');
	background-attachment: fixed;
}

/* ==== Package Details - CSS End ==== */
/* ==== Sticky Query Button - CSS Start ==== */
.tourCard-body .priceCard .price span[data-bs-toggle="modal"] {
	cursor: pointer;
}

.submit-query-sticky {
	position: fixed;
	top: 60%;
	right: 0;
	width: 100px;
	padding: 10px 5px;
	border-radius: 5px 0 0 5px;
	border: 1px solid #e2e2e2;
	background: #eaf6ff;
	text-align: center;
	box-shadow: -1px 1px 5px 0px rgba(50, 50, 50, 0.20);
	cursor: pointer;
	z-index: 10;
}

.submit-query-sticky i {
	max-width: 35px;
	height: 35px;
	display: grid;
	place-content: center;
	margin: auto;
	font-size: 14px;
	background: #2196f3;
	color: #fff;
	border-radius: 50%;
	margin-bottom: 5px;
}

.query-btn {
	background: #000;
	color: var(--theme-primary-color) !important;
}

.query-btn:hover {
	background: var(--theme-primary-color) !important;
	color: #000 !important;
}

.thank {
	background-image: url(../images/layer-light-bg.png);
	background-repeat: no-repeat;
	background-size: cover;
}

.thank .thankyou {
	text-align: center;
}

.thank .thankyou h3 {
	font-size: 50px;
	margin-bottom: 20px;
}

.thank .thankyou h4 {
	font-size: 30px;
	margin-bottom: 10px;
}

.thank .thankyou p {
	font-size: 20px;
	margin-bottom: 15px;
}

.thank .thankyou a {
	background: #000;
	color: var(--theme-primary-color);
	padding: 10px 20px;
	border-radius: 5px;
	font-size: 18px;
	display: inline-block;
}

.thank .thankyou a:hover,
.thank .thankyou a:focus {
	background: var(--theme-primary-color);
	color: #000;
}

.modal-btn-ui {
	position: absolute;
	right: -8px;
	top: -8px;
	width: 40px;
	height: 40px;
	border: 1px solid var(--theme-primary-color);
	border-radius: 100%;
	background: var(--theme-secondary-color);
	color: var(--theme-primary-color);
	font-size: 24px;
	transition: .3s ease;
}

.modal-btn-ui .closeIcon {
	position: relative;
	bottom: 2px;
}

.modal-btn-ui:hover {
	transform: rotate(90deg);
}

/* ==== Sticky Query Button - CSS End ==== */

/* ==== Album - CSS Start ==== */
section.page-banner {
	background-position: center center;
	background-size: cover;
	min-height: 300px;
	display: grid;
	place-content: center;
	color: #fff;
	position: relative;
}

section.page-banner::before {
	content: '';
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	background: #000;
	opacity: .7;
	z-index: 1;
}

section.page-banner .page-title h1 {
	position: relative;
	z-index: 2;
	font-size: 55px;
}

section.page-banner .page-title h1::before {
	position: absolute;
	content: "";
	height: 2px;
	width: 100px;
	bottom: -10px;
	left: 50%;
	transform: translateX(-50%);
	background: #dedede;
}

section.page-banner .page-title h1:after {
	position: absolute;
	content: "";
	height: 8px;
	width: 8px;
	border-radius: 50px;
	background-color: var(--theme-primary-color);
	right: 0px;
	left: 50%;
	bottom: -13px;
	transform: translateX(-50%);
	animation: pulseX 5s ease infinite alternate;
}

@keyframes pulseX {
	0% {
		transform: translateX(calc(-50% + -50px));
	}

	100% {
		transform: translateX(calc(-50% + 50px));
	}
}

.album-banner-img {
	background-image: url('../images/album.webp');
}

.article-banner-img {
	background-image: url('../images/article-banner.webp');
}

ul#albumTabs {
	max-width: fit-content;
	margin: auto;
	background-color: var(--theme-secondary-color);
	color: #fff;
	position: relative;
	border-radius: 60px;
	padding: 6px 8px;
}

ul#albumTabs .nav-link {
	--bs-nav-link-padding-x: 1.5rem;
	color: inherit;
	font-weight: 600;
	background: transparent !important;
	position: relative;
	z-index: 2;
}

ul#albumTabs .nav-link.active {
	color: var(--theme-secondary-color);
}

ul#albumTabs .active-bg {
	border-radius: 50px;
	top: 5px;
	bottom: 5px;
	left: 0px;
	right: 0px;
	position: absolute;
	z-index: 1;
	background: var(--theme-primary-color);
	transition: .5s ease;
}

.album-img-row .album-img img,
.album-video-row .album-img img {
	--height: 300px;
	height: var(--height);
	width: 100%;
	object-fit: cover;
}

.album-video-row .album-img {
	position: relative;
}

.album-video-row .album-img::before {
	content: '';
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, .5);
}

.album-video-row .album-img .play-btn {
	position: absolute;
	left: 50%;
	top: 50%;
	transform: translate(-50%, -50%);
	color: #fff;
	font-size: 30px;
	transition: .3s ease;
	cursor: pointer;
}

.album-video-row .album-img .play-btn:hover {
	transform: translate(-50%, -50%) scale(1.14);
}

/* ==== Album - CSS End ==== */

/* ==== Album Pagination - CSS Start ==== */
.album-pagination .pagination-outer {
	text-align: center;
}

.album-pagination .pagination {
	padding: 12px 10px;
	display: inline-flex;
	position: relative;
}

.album-pagination .pagination li a.page-link {
	color: #333;
	background: #eee;
	font-size: 18px;
	font-weight: 600;
	line-height: 35px;
	height: 35px;
	width: 35px;
	padding: 0;
	margin: 0 5px;
	border: none;
	border-radius: 5px;
	overflow: hidden;
	position: relative;
	z-index: 1;
	transition: all 0.4s ease 0s;
}

.album-pagination .pagination li:first-child a.page-link,
.album-pagination .pagination li:last-child a.page-link {
	color: var(--theme-secondary-color);
	font-size: 30px;
	line-height: 34px;
	font-weight: 400;
}

.album-pagination .pagination li a.page-link:hover,
.album-pagination .pagination li a.page-link:focus,
.album-pagination .pagination li.active a.page-link:hover,
.album-pagination .pagination li.active a.page-link {
	color: var(--theme-secondary-color);
	background: transparent;
}

.album-pagination .pagination li a.page-link:before {
	content: '';
	background-color: var(--theme-secondary-color);
	height: 100%;
	width: 100%;
	border-radius: 5px;
	border: 5px solid #fff;
	box-shadow: 0 0 0 3px var(--theme-secondary-color);
	opacity: 0;
	transform: scale(2);
	position: absolute;
	left: 0;
	bottom: 0;
	transition: all 0.3s ease 0s;
}

.album-pagination .pagination li a.page-link:hover:before,
.album-pagination .pagination li a.page-link:focus:before,
.album-pagination .pagination li.active a.page-link:hover:before,
.album-pagination .pagination li.active a.page-link:before {
	opacity: 1;
	background-color: transparent;
	transform: scale(0.85);
}

@media only screen and (max-width: 480px) {
	.album-pagination .pagination {
		font-size: 0;
		display: inline-block;
	}

	.album-pagination .pagination li {
		display: inline-block;
		vertical-align: top;
		margin: 10px 0;
	}
}

/* ==== Album Pagination - CSS End ==== */

/* ==== Blog Detail - CSS Start ==== */
.blog-detail-wrapper .quote {
	border-radius: 14px;
	position: relative;
	padding: 52px 50px 30px 40px;
	background: #f7f7f7;
}

.blog-detail-wrapper .quote::after {
	position: absolute;
	content: "";
	left: 0;
	top: 0;
	background: var(--theme-secondary-color);
	width: 10px;
	height: 100%;
	border-radius: 14px 0px 0px 14px;
}
.blog-detail-wrapper .quote.text-theme-primary::after{
	background: var(--theme-primary-color) !important;
}

.blog-detail-wrapper .quote .quote-icon {
	position: absolute;
	top: 20px;
	left: 38px;
}

.blog-detail-wrapper .sidebar-post {
	background: #fff;
	border-radius: 10px;
	overflow: hidden;
	align-items: center;
	border: 1px solid #ebebeb;
	box-shadow: rgb(0 0 0 / 4%) 0px 2px 10px;
}

.blog-detail-wrapper .sidebar-post-img img {
	--imgSize: 80px;
	width: var(--imgSize);
	height: var(--imgSize);
	object-fit: cover;
}

.blog-sidebar {
	position: sticky;
	top: 120px;
}

.sidebar-post-title {
	font-size: 20px;
}

/* ==== Blog Detail - CSS End ==== */