html,
body {
	-webkit-tap-highlight-color:transparent;
	-webkit-touch-callout:none;
	-webkit-text-size-adjust:100%;
	-webkit-font-smoothing:antialiased;
	-moz-osx-font-smoothing:grayscale;
	/* font-smoothing: antialiased; */
}

body {
	/* font-family: 'Dancing Script', cursive !important; -- used on some heading */
	font-family: 'Exo', sans-serif !important;
	font-size: 18px;
	font-weight: 400;
	line-height: 1.5;
	color: #777777;
	background-color: #fff;
	position: relative;
}

body:after {
	content: "";
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    z-index: 1;
    background: url(../images/noise.png) repeat;
	background-color: #fff;
    opacity: 0.1;
    pointer-events: none;
	display: none;
}

p {
	margin: 0;
}

a {
	text-decoration: none !important;
	color: #777777;
}

a:focus,
a:hover {
	color: #A53939;
}

@font-face {
    font-family: 'Palatino Linotype';
    src: url('../fonts/PalatinoLinotype-Roman.eot');
    src: url('../fonts/PalatinoLinotype-Roman.eot?#iefix') format('embedded-opentype'),
        url('../fonts/PalatinoLinotype-Roman.woff2') format('woff2'),
        url('../fonts/PalatinoLinotype-Roman.woff') format('woff'),
        url('../fonts/PalatinoLinotype-Roman.ttf') format('truetype'),
        url('../fonts/PalatinoLinotype-Roman.svg#PalatinoLinotype-Roman') format('svg');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Palatino Linotype';
    src: url('../fonts/PalatinoLinotype-Bold.eot');
    src: url('../fonts/PalatinoLinotype-Bold.eot?#iefix') format('embedded-opentype'),
        url('../fonts/PalatinoLinotype-Bold.woff2') format('woff2'),
        url('../fonts/PalatinoLinotype-Bold.woff') format('woff'),
        url('../fonts/PalatinoLinotype-Bold.ttf') format('truetype'),
        url('../fonts/PalatinoLinotype-Bold.svg#PalatinoLinotype-Bold') format('svg');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

.form-control {
	box-shadow: none !important;
	outline: none !important;
}

.btn {
	box-shadow: none !important;
	outline: none !important;
}

.btn-plain {
	box-shadow: none !important;
	outline: none !important;
	border: none !important;
	border-radius: 0;
	padding: 0;
	background: none;
}

.btn-primary {
    background-color: #A53939 !important;
    border-color: #A53939 !important;
}

.btn-primary:hover,
.btn-primary:focus {
    background-color: #802929 !important;
    border-color: #802929 !important;
}

.btn-yellow {
	background-color: #FFCC00 !important;
    border-color: #FFCC00 !important;
	color: #A53939;
}

.btn-yellow:hover,
.btn-yellow:focus {
	background-color: #e8bc0a !important;
    border-color: #e8bc0a !important;
}

.container, 
.container-fluid, 
.container-lg, 
.container-md, 
.container-sm, 
.container-xl, 
.container-xxl {
  --bs-gutter-x: 30px !important;
}

.row {
  --bs-gutter-x: 30px !important;
}

.g-0, .gy-0 {
  --bs-gutter-y: 0 !important;
}
.g-0, .gx-0 {
  --bs-gutter-x: 0 !important;
}

.z-index-lg {
	z-index: 11000;
}

.z-index-xl {
	z-index: 12000;
}

.bg-none {
	background: none !important;
}

.img-scale {
	overflow: hidden;
}

.img-scale a img {
	transition: 0.2s ease-in-out 0s;
}

.img-scale a:hover img {
	transform: scale(1.1);
}

.scale-02 {
	transition: 0.2s ease-in-out 0s;
}

.scale-02:hover,
.scale-02:focus {
	transform: scale(1.02);
}

.custom-fluid {
	padding-left: 72px !important;
	padding-right: 72px !important;
}

.link-cover {
	position: absolute;
	left: 0;
	right: 0;
	top: 0;
	bottom: 0;
	z-index: 3;
}

.btn-custom {
	height: 56px;
    border-radius: 8px;
    display: inline-flex;
    align-items: center;
    font-weight: 500;
    font-size: 20px;
    padding: 10px 24px;
}

.btn-custom-sm {
	height: 42px;
    border-radius: 6px;
    display: inline-flex;
    align-items: center;
    font-weight: 400;
    font-size: 16px;
    padding: 10px 24px;
}

.pb-72 {
	padding-bottom: 72px !important;
}

.pt-72 {
	padding-top: 72px !important;
}

.mb-48 {
	margin-bottom: 48px !important;
}

.mb-30 {
	margin-bottom: 30px !important;
}

.mb-55 {
	margin-bottom: 55px !important;
}

.mb-84 {
	margin-bottom: 84px !important;
}

.link-primary {
    color: #A53939!important;
}

.link-primary:focus, 
.link-primary:hover {
    color: #802929!important;
}

.form-check {
    padding-left: 33px;
	margin-bottom: 12px;
}

.form-check-input {
    border-color: #707070 !important;
	box-shadow: none !important;
	margin-left: -33px !important;
}

.form-check-input:checked[type=radio],
.form-check-input:checked[type=checkbox]{
    background-color: #fff;
	position: relative;
}

.form-check-input:checked[type=radio]::after {
	position: absolute;
    content: "";
    width: 9px;
    height: 9px;
    border-radius: 100%;
    background-color: #2D2D2D;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.form-check-input:checked[type=checkbox]::after {
	position: absolute;
    content: "\f00c";
	font-weight: 900;
	font-family: "Font Awesome 6 Free";
	top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
	font-size: 12px;
}

.form-check-input[type=checkbox] {
	border-radius: 2px !important;
}

.form-check-label {
	font-weight: 400;
	font-size: 16px;
	color: #2D2D2D;
}

.custom-form-control {
	border: 1px solid #DFDFDF;
	border-radius: 4px;
	min-height: 48px;
	padding-left: 20px;
	padding-right: 20px;
}

.custom-form-control:focus {
    border-color: #A53939;
}

.form-label {
	font-weight: 700;
	font-size: 17px;
	line-height: 26px;
	color: #383838;
	margin-bottom: 8px;
}

.custom-modal .modal-header,
.custom-modal .modal-body {
	padding: 25px;
}

.custom-modal .modal-title {
	font-weight: 600;
    font-size: 18px;
    line-height: 27px;
    color: #222222;
}

.custom-modal .modal-body iframe {
	width: 100%;
	height: 100%;
}

.modal-backdrop {
    opacity: 0.8 !important;
}

@media (max-width: 1399px) {
	.custom-fluid {
		padding-left: 50px !important;
		padding-right: 50px !important;
	}

	.pb-72 {
		padding-bottom: 44px !important;
	}

	.pt-72 {
		padding-top: 44px !important;
	}

	.mb-48 {
		margin-bottom: 30px !important;
	}

	.mb-30 {
		margin-bottom: 20px !important;
	}

	.mb-55 {
		margin-bottom: 45px !important;
	}

	.mb-84 {
		margin-bottom: 75px !important;
	}

	.custom-form-control {
		min-height: 42px;
		padding-left: 16px;
		padding-right: 16px;
	}

	.form-label {
		font-size: 15px;
		line-height: 24px;
	}
}

@media (max-width: 991px) {
	.custom-fluid {
		padding-left: 15px !important;
		padding-right: 15px !important;
	}

	.pb-72 {
		padding-bottom: 36px;
	}

	.pt-72 {
		padding-top: 36px !important;
	}

	.mb-84 {
		margin-bottom: 45px !important;
	}
}


.text-focus-in.nav-link:not(.active):hover {
	-webkit-animation: text-focus-in 1s cubic-bezier(0.550, 0.085, 0.680, 0.530) both;
	        animation: text-focus-in 1s cubic-bezier(0.550, 0.085, 0.680, 0.530) both;
}

@-webkit-keyframes text-focus-in {
	0% {
		-webkit-filter: blur(1px);
				filter: blur(1px);
	}
	100% {
		-webkit-filter: blur(0px);
				filter: blur(0px);
	}
	}
	@keyframes text-focus-in {
	0% {
		-webkit-filter: blur(1px);
				filter: blur(1px);
	}
	100% {
		-webkit-filter: blur(0px);
				filter: blur(0px);
	}
}

/* Common css ends here  */

/* header starts  */
.header {
	background-color: #A53939;
	position: -webkit-sticky;
	position: sticky;
	top: 0;
	z-index: 9;
	transition: transform 0.4s;
	z-index: 999999;
}

.logo-black,
.menu-black {
	display: none;
}
   
.inner-header {
	min-height: 120px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	position: relative;
	transition: 0.4s ease-in-out 0s;
}

.header-social {
	display: flex;
	align-items: center;
}

.header-social a {
	display: inline-flex;
	color: #fff !important;
	font-size: 34px;
}

.header-social a i {
	transition: 0.4s ease-in-out 0s;
}

.header-social a:hover i {
	transform: translateY(-5px);
}

.header-social a:not(:last-child) {
	margin-right: 30px;
}

.navbar-toggler img,
.header-mid img {
	transition: 0.4s ease-in-out 0s;
	max-height: 100px;
}

.scroll-up .trigger-menu-wrapper,
.scroll-down .trigger-menu-wrapper {
	transform: translate3d(0, -100%, 0);
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
}

.scroll-up .trigger-menu-wrapper {
	transform: none;
	box-shadow: 0 0 10px hsl(0deg 49% 44%);
}

.scroll-down .trigger-menu-wrapper .inner-header,
.scroll-up .trigger-menu-wrapper .inner-header {
	min-height: 70px;
}

.scroll-down .trigger-menu-wrapper .header-mid img,
.scroll-up .trigger-menu-wrapper .header-mid img {
	max-height: 28px;
}

.scroll-down .trigger-menu-wrapper .navbar-toggler img,
.scroll-up .trigger-menu-wrapper .navbar-toggler img {
    max-height: 34px;
}

.scroll-down .trigger-menu-wrapper .header-social a,
.scroll-up .trigger-menu-wrapper .header-social a {
    font-size: 20px;
}

.scroll-down .trigger-menu-wrapper .header-social a:not(:last-child),
.scroll-up .trigger-menu-wrapper .header-social a:not(:last-child) {
    margin-right: 18px;
	transition: 0.2s ease-in-out 0s;
}

.header-mid {
	position: absolute;
	color: #fff;
	font-size: 40px;
	left: 50%;
	transform: translateX(-50%);
	text-align: center;
	display: none !important;
}

body:not(.scroll-up) .timeline-body-sec .header{
	background: none;
}

@media (max-width: 1399px) {
	.navbar-toggler img {
		width: 44px;
	}

	.inner-header {
		min-height: 100px;
	}

	.header-mid img {
		max-width: 80%;
	}

	.header-social a {
		font-size: 30px;
	}

	.header-social a:not(:last-child) {
		margin-right: 26px;
	}
}

@media (max-width: 991px) {
	.navbar-toggler img {
		width: 40px;
	}

	.inner-header {
		min-height: 80px;
	}

	.header-mid {
		font-size: 26px;
	}

	.header-social a {
		font-size: 26px;
	}

	.header-social a:not(:last-child) {
		margin-right: 20px;
	}
}

@media (max-width: 767px) {

	.navbar-toggler img {
		width: 32px;
	}

	.inner-header {
		min-height: 70px;
	}

	.header-mid {
		font-size: 18px;
	}

	.header-social a {
		font-size: 20px;
	}

	.header-social a:not(:last-child) {
		margin-right: 10px;
	}

	.scroll-down .trigger-menu-wrapper .header-social a:not(:last-child),
	.scroll-up .trigger-menu-wrapper .header-social a:not(:last-child) {
		margin-right: 8px;
	}

	.scroll-down .trigger-menu-wrapper .inner-header,
	.scroll-up .trigger-menu-wrapper .inner-header {
		min-height: 50px;
	}
}

@media (max-width: 480px) {

	.header-mid {
		position: relative;
		left: 0;
		transform: none;
	}

	.header-mid img {
		max-width: 70%;
	}
}

.offcanvas.offcanvas-start {
	height: 100vh;
	width: 500px;
}

.offcanvas-header {
	padding: 32px 20px 32px 72px !important;
}

.offcanvas-header .btn-menu-close {
	box-shadow: none !important;
	outline: none !important;
	border: none !important;
	padding: 0 !important;
	background: none !important;
}

.offcanvas-title img {
    max-height: 35px;
}

.offcanvas-body {
	padding: 3px 20px 32px 72px !important;
}

.header .navbar-nav > .nav-item {
	margin-bottom: 36px;
}

.header .navbar-nav > .nav-item > .nav-link {
	white-space: nowrap;
    text-transform: uppercase;
	font-weight: 500;
	font-size: 28px;
	line-height: 37px;
	color: #444444;
	padding: 0 !important;
	position: relative;
	display: inline-block;
}

.header .navbar-nav > .nav-item > .nav-link::before {
	position: absolute;
	content: "";
	left: 0;
	bottom: -14px;
	height: 3px;
	width: 0;
	overflow: hidden;
	background-color: #FFA000;
	transition: 0.2s ease-in-out 0s;
}

.header .navbar-nav .nav-link:hover,
.header .navbar-nav .nav-link:focus,
.header .navbar-nav .nav-link.active {
	color: #FFA000 !important;
}

.header .navbar-nav .nav-link:hover::before,
.header .navbar-nav .nav-link:focus::before,
.header .navbar-nav .nav-link.active::before {
	width: 120px;
}

@media(max-width: 1399px){
	.offcanvas.offcanvas-start {
		width: 400px;
	}

	.offcanvas-header {
		padding: 26px 15px 26px 50px !important;
	}

	.offcanvas-body {
		padding: 3px 15px 26px 50px !important;
	}

	.header .navbar-nav > .nav-item {
		margin-bottom: 30px;
	}

	.header .navbar-nav > .nav-item > .nav-link {
		font-size: 22px;
		line-height: 30px;
	}

	.header .navbar-nav > .nav-item > .nav-link::before {
		bottom: -10px;
	}

	.header .navbar-nav .nav-link:hover::before, 
	.header .navbar-nav .nav-link:focus::before, 
	.header .navbar-nav .nav-link.active::before {
		width: 100px;
	}

	.btn-menu-close img {
		width: 90%;
	}
}

@media(max-width: 991px){
	.offcanvas-header,
	.offcanvas-body {
		padding-left: 30px !important;
	}

	.header .navbar-nav > .nav-item {
		margin-bottom: 25px;
	}

	.header .navbar-nav > .nav-item > .nav-link {
		font-size: 18px;
		line-height: 26px;
	}

	.header .navbar-nav .nav-link:hover::before, 
	.header .navbar-nav .nav-link:focus::before, 
	.header .navbar-nav .nav-link.active::before {
		width: 80px;
	}

	.header .navbar-nav > .nav-item > .nav-link::before {
		bottom: -8px;
		height: 2px;
	}
}
/* header ends  */


/* footer started */

.footer {
	background-color: #A53939;
	position: relative;
}

.footer-content {
	padding: 52px 0;
}

.footer-info-dtl,
.footer-contact-dtl {
    height: 100%;
}

.footer-info-dtl {
	border-right: solid 1px rgba(255, 255, 255, 0.10);
	padding-right: 160px;
}

.footer-info-dtl h6 {
	font-weight: 700;
	font-size: 32px;
	line-height: 42px;
	color: #fff;
	margin-bottom: 32px;
}

.footer-call {
	display: flex;
	align-items: flex-end;
	margin-bottom: 25px;
}

.footer-call span {
	margin-right: 10px;
	width: 40px;
}

.footer-call a {
	font-size: 26px;
	color: #fff;
	font-weight: 700;
	margin-right: 8px;
	transition: 0.2s ease-in-out 0s;
}

.footer-call a:hover,
.footer-call a:focus {
	color: #FFA000 !important;
}

.footer-call a:last-child {
	margin-right: 0;
}

.footer-info-dtl p {
	font-size: 20px;
	line-height: 30px;
	color: rgba(255, 255, 255, 1);
}

.footer-contact-dtl p {
	color: #fff;
	margin-bottom: 40px;
	font-size: 24px;
	line-height: 32px;
}

.footer-btn {
	border: solid 1px #FFA000;
    border-radius: 8px;
    color: #fff !important;
    font-size: 20px;
    display: inline-block;
    display: inline-flex;
    align-items: center;
    padding: 16px 28px 16px 24px;
	margin-bottom: 36px;
}

.footer-btn:hover,
.footer-btn:focus {
	color: #fff !important;
}

.footer-btn i {
	color: #FFA000;
	margin-left: 15px;
}

.footer-btn {
    display: inline-block;
    vertical-align: middle;
    -webkit-transform: perspective(1px) translateZ(0);
    transform: perspective(1px) translateZ(0);
    box-shadow: 0 0 1px rgb(0 0 0 / 0%);
    -webkit-transition-duration: 0.3s;
    transition-duration: 0.3s;
}

/* Icon Wobble Horizontal */
.hvr-icon-wobble-horizontal i {
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
}

.hvr-icon-wobble-horizontal:hover i, 
.hvr-icon-wobble-horizontal:focus i, 
.hvr-icon-wobble-horizontal:active i {
    -webkit-animation-name: hvr-icon-wobble-horizontal;
    animation-name: hvr-icon-wobble-horizontal;
    -webkit-animation-duration: 1s;
    animation-duration: 1s;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
    -webkit-animation-iteration-count: 1;
    animation-iteration-count: 1;
}

.hvr-icon-wobble-horizontal {
	display: inline-block;
	vertical-align: middle;
	-webkit-transform: perspective(1px) translateZ(0);
	transform: perspective(1px) translateZ(0);
	box-shadow: 0 0 1px rgba(0, 0, 0, 0);
	-webkit-transition-duration: 0.3s;
	transition-duration: 0.3s;
}
 
@-webkit-keyframes hvr-icon-wobble-horizontal {
	16.65% {
	  -webkit-transform: translateX(6px);
	  transform: translateX(6px);
	}
	33.3% {
	  -webkit-transform: translateX(-5px);
	  transform: translateX(-5px);
	}
	49.95% {
	  -webkit-transform: translateX(4px);
	  transform: translateX(4px);
	}
	66.6% {
	  -webkit-transform: translateX(-2px);
	  transform: translateX(-2px);
	}
	83.25% {
	  -webkit-transform: translateX(1px);
	  transform: translateX(1px);
	}
	100% {
	  -webkit-transform: translateX(0);
	  transform: translateX(0);
	}
  }
  @keyframes hvr-icon-wobble-horizontal {
	16.65% {
	  -webkit-transform: translateX(6px);
	  transform: translateX(6px);
	}
	33.3% {
	  -webkit-transform: translateX(-5px);
	  transform: translateX(-5px);
	}
	49.95% {
	  -webkit-transform: translateX(4px);
	  transform: translateX(4px);
	}
	66.6% {
	  -webkit-transform: translateX(-2px);
	  transform: translateX(-2px);
	}
	83.25% {
	  -webkit-transform: translateX(1px);
	  transform: translateX(1px);
	}
	100% {
	  -webkit-transform: translateX(0);
	  transform: translateX(0);
	}
  }

  .viewTime {
	color: #A53939;
	font-weight: 500;
	display: inline-flex;
	align-items: center;
	height: 56px;
	padding: 8px 24px;
	transition: 0.2s ease-in-out 0s;
	position: relative;
	z-index: 3;
}


.viewTime:before {
	position: absolute;
	content: "";
	transition: 0.5s ease-in-out 0s;
	left: 0;
	top: 0;
	height: 100%;
	width: 56px;
	border-radius: 56px;
	background: rgba(165, 57, 57, 0.20);
	z-index: -1;
}

.viewTime i {
	margin-left: 6px;
}

.viewTime:hover,
.viewTime:focus,
.item-inner-videos:hover .viewTime {
	color: #fff !important;
}

.viewTime:hover::before,
.viewTime:focus::before,
.item-inner-videos:hover .viewTime::before {
	width: 100%;
	border-radius: 28px;
	background: rgba(165, 57, 57, 1);
}

.viewTime-sm {
	height: 48px;
	font-size: 14px;
	padding: 6px 20px;
}

.viewTime-sm:before {
	width: 48px;
	border-radius: 48px;
}

.footer-info-dtl,
.footer-contact-dtl {
	padding: 20px 0;
}

@media (max-width: 1399px) {
	.viewTime {
		height: 50px;
		padding-left: 20px;
		padding-right: 20px;
	}

	.viewTime:before {
		width: 50px;
	}

	.viewTime:hover::before,
	.viewTime:focus::before {
		border-radius: 25px;
	}

	.viewTime-sm {
		height: 44px;
		font-size: 13px;
		padding-left: 17px;
		padding-right: 17px;
	}

	.viewTime-sm:before {
		width: 44px;
	}
}

@media (max-width: 991px) {
	.viewTime {
		height: 44px;
		padding-left: 17px;
		padding-right: 17px;
		font-size: 14px;
	}

	.viewTime:before {
		width: 44px;
	}
}

.viewTime-white {
	color: #fff;
	font-size: 20px;
}

.viewTime-white:hover,
.viewTime-white:focus {
	color: #A53939 !important;
}

.viewTime-white:before {
	background: rgba(255, 255, 255, 0.20);
}

.viewTime-white:hover::before,
.viewTime-white:focus::before {
	background: rgba(255, 255, 255, 1);
}
 
.footer-connected h6 {
	font-size: 20px;
	color: #fff;
	margin-bottom: 15px;
	font-weight: 400;
}

.ft-connect-list {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
}

.ft-connect-list a {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 30px;
	height: 30px;
	border-radius: 100%;
	margin-right: 12.5px;
	margin-bottom: 5px;
	color: #a53939;
	background-color: #fff;
	transition: 0.2s ease-in-out 0s;
}

.ft-connect-list a:last-child {
	margin-right: 0;
}

.ft-connect-list a i {
	font-size: 17px;
}

.ft-connect-list a:hover {
	background: none;
	color: #fff !important;
	outline: solid 1px #fff;
}

@media (max-width: 1399px) {
	.footer-content {
		padding: 40px 0;
	}

	.footer-info-dtl {
		padding-right: 90px;
	}

	.footer-info-dtl h6 {
		font-size: 28px;
		line-height: 35px;
		margin-bottom: 24px;
	}

	.footer-call {
		margin-bottom: 18px;
	}

	.footer-call span {
		width: 34px;
	}

	.footer-call a {
		font-size: 22px;
		margin-right: 6px;
	}

	.footer-info-dtl p {
		font-size: 17px;
		line-height: 30px;
	}

	.footer-contact-dtl p {
		font-size: 22px;
		line-height: 30px;
		margin-bottom: 40px;
	}

	.footer-btn {
		border-radius: 6px;
		font-size: 15px;
		padding: 12px 20px 12px 17px;
		margin-bottom: 26px;
	}

	.footer-btn i {
		margin-left: 15px;
	}

	.viewTime-white {
    	font-size: 18px;
	}

	.footer-connected h6 {
		font-size: 17px;
		margin-bottom: 14px;
	}

	.ft-connect-list a {
		width: 24px;
		height: 24px;
		margin-bottom: 5px;
	}

	.ft-connect-list a i {
		font-size: 13px;
	}
}

@media (max-width: 1199px) {
	.footer-info-dtl, 
	.footer-contact-dtl {
		padding-top: 35px;
	}

	.footer-info-dtl {
		padding-right: 60px;
	}

	.footer-call a {
		font-size: 25px;
	}

	.footer-info-dtl p {
		font-size: 17px;
		line-height: 30px;
	}

	.footer-contact-dtl p {
		font-size: 20px;
		line-height: 30px;
		margin-bottom: 30px;
	}

	.footer-connected h6 {
		font-size: 15px;
		margin-bottom: 13px;
	}
}

@media (max-width: 991px) {
	.footer-info-dtl, 
	.footer-contact-dtl {
		padding-top: 20px;
	}

	.footer-info-dtl {
		padding-right: 0;
	}

	.footer-info-dtl h6 {
		font-size: 20px;
		line-height: 34px;
		margin-bottom: 10px;
	}

	.footer-call {
		margin-bottom: 10px;
	}

	.footer-call span {
		width: 30px;
		margin-right: 7px;
	}

	.footer-call a {
		font-size: 20px;
	}

	.footer-info-dtl p {
		font-size: 15px;
		line-height: 28px;
	}

	.footer-contact-dtl {
		padding-left: 0;
	}

	.footer-contact-dtl p {
		font-size: 18px;
		line-height: 28px;
		margin-bottom: 14px;
	}

	.footer-btn {
		border-radius: 6px;
		font-size: 14px;
		padding: 10px 18px 10px 15px;
		margin-bottom: 18px;
	}

	.footer-btn i {
		margin-left: 12px;
	}

	.footer-connected h6 {
		font-size: 14px;
		margin-bottom: 12px;
	}

	.ft-connect-list a {
		width: 22px;
		height: 22px;
		margin-right: 7px;
	}
}

@media (max-width: 767px) {
	.footer-content-block {
		text-align: center;
	}

	.footer-info-dtl {
		border-right: none;
		border-bottom: solid 1px rgba(255, 255, 255, 0.10);
		padding-bottom: 20px;
	}

	.footer-call,
	.ft-connect-list {
		justify-content: center;
	}
}

.footer-nav {
	border-top: solid 1px rgba(255, 255, 255, 0.10);
	padding: 35px 0;
}

.footer-nav-block > :not(:last-child) {
	margin-bottom: 6px !important;
}

.ul-footer-nav {
	padding: 0;
	margin: 0;
	list-style: none;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-wrap: wrap;
}

.ul-footer-nav li a {
	font-size: 20px;
	color: rgba(255, 255, 255, 1) !important;
	margin: 0 19px 6px;
	display: inline-block;
	white-space: nowrap;
	transition: 0.2s ease-in-out 0s;
}

.ul-footer-nav li a:hover,
.ul-footer-nav li a:focus {
	text-decoration: underline !important;
}

.cpy-rht {
	text-align: center;
	font-size: 16px;
	color: rgba(255, 255, 255, 1);
	margin-bottom: 0;
	font-weight: 400;
}

.cpy-rht a {
	color: rgba(255, 255, 255, 1) !important;
	transition: 0.2s ease-in-out 0s;
}

.cpy-rht a:hover,
.cpy-rht a:focus {
	text-decoration: underline !important;
}

.ofcl-site {
	font-size: 16px;
	font-weight: 600;
	color: #fff;
	text-align: center;
}

@media (max-width:1399px) {
	.footer-nav {
		padding: 25px 0;
	}

	.ul-footer-nav li a {
		font-size: 17px;
   		margin: 0 16px 4px;
	}

	.cpy-rht,
	.ofcl-site {
		font-size: 15px;
	}
}

@media (max-width: 991px) {
	.ul-footer-nav li a {
		font-size: 14px;
		margin: 0 13px 5px;
	}

	.cpy-rht,
	.ofcl-site {
		font-size: 12px;
	}
}

.footer-default {
	background-color: #fff !important;
}

.footer-default-block {
	padding: 15px 0;
	color: #444444;
	text-align: center;
}

.footer-default-block h5 {
	font-size: 16px;
	color: #444444;
	font-weight: 600;
	margin-bottom: 5;
}

.footer-default-block h6 {
	font-size: 16px;
	color: #444444;
	font-weight: 400;
	margin-bottom: 0;
}

@media (max-width: 1399px) {
	.footer-default-block h5 {
		font-size: 15px;
	}
	
	.footer-default-block h6 {
		font-size: 15px;
	}
}

@media (max-width: 991px) {
	.footer-default-block h5 {
		font-size: 14px;
	}
	
	.footer-default-block h6 {
		font-size: 14px;
	}
}

/* footer ends  */


/* home page starts  */
.body-sec {
	position: relative;
}

.image-content-wrap {
	margin-bottom: 62px;
}

.image-content-block {
	position: relative;
	background: #383b7a;
}

.image-content-block > img {
	width: 100%;
    height: 100%;
    object-fit: cover;
	transition: 0.5s ease-in-out 0s;
	opacity: 0.7;
	min-height: 300px;
}

.image-content-txt {
	position: absolute;
	left: 0;
	right: 0;
	top: 0;
	bottom: 0;
	color: #fff;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: flex-end;
	padding: 12% 8%;
	padding-bottom: 9%;
}

.image-content-txt h2 {
	font-size: 40px;
	line-height: 47px;
	font-weight: 400;
	max-width: 815px;
	margin-bottom: 16px;
	text-transform: uppercase;
	text-align: center;
}

.image-content-txt h2 span {
	transition: 0.5s ease-in-out 0s;
	top: 30px;
	position: relative;
	display: inline-block;
}

.image-content-txt h3 {
	font-size: 24px;
	line-height: 34px;
	font-weight: 400;
	max-width: 815px;
	margin-bottom: 0;
	text-transform: capitalize;
	text-align: center;
	transition: 0.5s ease-in-out 0s;
	top: 20px;
	opacity: 0;
	position: relative;
}

.image-inner-border {
	position: absolute;
	border: solid 1px rgba(255, 255, 255, 0.20);
	border-bottom: none;
	top: 10%;
	bottom: 10%;
	left: 6%;
	right: 6%;
	transition: 0.5s ease-in-out 0s;
}

.image-inner-border:before,
.image-inner-border::after {
    content: "";
    position: absolute;
    bottom: 0;
    height: 1px;
    background: rgba(255, 255, 255, 0.20);;
    left: 0;
    width: calc(50% - 54px);
}

.image-inner-border::after {
	left: auto;
	right: 0;
}

.image-content-block:hover .image-inner-border {
	top: 8%;
	bottom: 8%;
	left: 5%;
	right: 5%;
}

.image-content-block:hover > img {
	opacity: 0.50;
}

.image-content-block:hover h2 span {
	top: 0;
}

.image-content-block:hover h3 {
	top: 0;
	opacity: 1;
}

.arrow-icon {
	position: absolute;
	bottom: 0;
	left: 50%;
	transform: translate(-50%, 50%);
	width: 68px;
	height: 68px;
	padding: 11px;
	border: solid 2px #fff;
	border-radius: 100%;
	display: flex;
	justify-content: center;
	align-items: center;
}

.know-more-sec {
	margin-bottom: 14px;
}

.know-more-head {
	margin-bottom: 44px;
	padding-right: 16%;
}

.know-more-head h5 {
	font-weight: 600;
	font-size: 36px;
	line-height: 47px;
	margin-bottom: 16px;
	text-transform: capitalize;
	color: #000000;

}

.know-more-head p {
	font-weight: 400;
	font-size: 20px;
	line-height: 32px;
	text-transform: capitalize;
	margin-bottom: 0;
	color: #000000;
}

.know-more-item {
	height: 280px;
	transition: 0.5s ease-in-out 0s;
	box-shadow: 1px 1px 12px rgba(175, 189, 224, 0.1);
	position: relative;
	background-position: center !important;
	background-size: cover !important;
	background: #192644;
	overflow: hidden;
}

.know-more-item img {
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	opacity: 0.35;
	transition: 0.5s ease-in-out 0s;
}

.know-more-item-content {
	display: flex;
	flex-direction: column;
	justify-content: flex-end;
	align-items: center;
	padding: 25px;
	height: 100%;
	text-align: center;
	position: relative;
}

.know-more-item-content h6 {
	font-weight: 600;
	font-size: 32px;
	line-height: 36px;
	text-transform: uppercase;
	color: #fff;
	transition: 0.5s ease-in-out 0s;
	position: relative;
	/* top: 30px; */
}

.know-more-item-content p  {
	font-size: 16px;
    line-height: 26px;
	color: #fff;
	transition: 0.5s ease-in-out 0s;
	/* top: 20px; */
	position: relative;
	display: none !important;
}

.know-more-slider .owl-stage-outer {
	padding-top: 10px;
	padding-bottom: 10px;
}

.know-more-item:hover img {
	transform: scale(1.2);
}

.owl-arrow .owl-nav {
	position: absolute;
	right: 0;
	bottom: calc(100% + 20px);
	height: 35px;
}

.know-more-slider .owl-nav {
	right: 72px;
}

.owl-arrow .owl-nav button span {
	display: none;
}

.owl-arrow .owl-nav button.owl-next, 
.owl-arrow .owl-nav button.owl-prev {
    width: 35px;
    height: 35px;
    border: 1px solid #707070;
    border-radius: 8px;
    display: inline-flex;
    justify-content: center;
    align-items: center;
	overflow: hidden;
	margin-left: 10px;
	transition: 0.2s ease-in-out 0s;
}

.owl-arrow .owl-nav button {
	position: relative;
}

.owl-arrow .owl-nav button::after {
	position: absolute;
    font-weight: 900;
    font-family: "Font Awesome 6 Free";
    margin: 0;
    border: none;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: auto;
    height: auto;
    font-size: 17px;
}

.owl-arrow .owl-nav button.owl-next:after {
	content: "\f054";
}

.owl-arrow .owl-nav button.owl-prev::after {
	content: "\f053";
}

.owl-arrow .owl-nav button.owl-next:hover, 
.owl-arrow .owl-nav button.owl-prev:hover  {
	border-color: #484444;
	color: #484444;
}

.know-more-social {
	display: flex;
	align-items: center;
	margin-top: 20px;
}

.know-more-social a {
	color: #fff;
	font-size: 20px;
	display: inline-block;
	transition: 0.2s ease-in-out 0s;
}

.know-more-social a:not(:last-child) {
	margin-right: 15px;
}

.know-more-social a:hover {
	color: #A53939;
}

@media (max-width: 1399px){
	.image-content-wrap {
		margin-bottom: 42px;
	}

	.know-more-head {
		margin-bottom: 34px;
	}

	.know-more-head h5 {
		font-size: 32px;
		line-height: 40px;
		margin-bottom: 10px;
	}

	.know-more-head p {
		font-size: 19px;
		line-height: 30px;
	}

	.know-more-item {
		height: 250px;
	}

	.know-more-item-content h6 {
		font-size: 26px;
		line-height: 30px;
	}

	.know-more-item-content p {
		font-size: 14px;
		line-height: 22px;
	}

	.know-more-slider .owl-nav {
		right: 50px;
	}

	.arrow-icon {
		width: 54px;
    	height: 54px;
	}

	.image-content-txt h2 {
		font-size: 38px;
		line-height: 45px;
		max-width: 770px;
		margin-bottom: 13px;
	}

	.image-content-txt h3 {
		font-size: 22px;
		line-height: 30px;
		max-width: 770px;
	}
}

@media (max-width: 991px){
	.image-content-wrap {
		margin-bottom: 30px;
	}
	
	.image-content-txt h2 {
		font-size: 28px;
		line-height: 36px;
		max-width: 100%;
		margin-bottom: 8px;
	}

	.image-content-txt h3 {
		font-size: 18px;
		line-height: 20px;
		max-width: 100%;
	}
	
	.know-more-head {
		padding-right: 120px;
	}

	.know-more-head h5 {
		font-size: 28px;
		line-height: 38px;
		margin-bottom: 8px;
	}

	.know-more-item {
		height: 200px;
	}

	.know-more-item-content h6 {
		font-size: 22px;
		line-height: 26px;
	}

	.know-more-item-content p {
		font-size: 12px;
		line-height: 20px;
	}

	.know-more-slider .owl-nav {
		right: 15px;
	}
}

@media (max-width: 767px){
	.image-content-txt h2 {
		font-size: 18px;
		line-height: 26px;
		margin-bottom: 0;
	}

	/* .image-content-txt h3 {
		font-size: 14px;
		line-height: 18px;
	} */

	.arrow-icon {
		width: 40px;
		height: 40px;
		padding: 8px;
	}

	.image-inner-border:before, 
	.image-inner-border::after {
		width: calc(50% - 34px);
	}

	.image-inner-border {
		top: 30px;
		bottom: 30px;
		left: 30px;
		right: 30px;
	}

	.image-content-block:hover .image-inner-border {
		top: 26px;
		bottom: 26px;
		left: 26px;
		right: 26px;
	}
	
	.know-more-head {
		padding-right: 0;
		margin-bottom: 50px;
	}

	.know-more-slider .owl-nav {
		bottom: calc(100% + 10px);
	}

	.image-content-txt h2 span {
		top: 0;
	}

	.image-content-txt h3 {
		display: none;
	}

	.image-content-block:hover h2 span {
		transform: scale(1.1);
	}

	.image-content-txt {
		padding-bottom: 66px;
	}
}

@media (max-width: 480px) {
	/* .image-content-txt h2 {
		font-size: 15px;
		line-height: 20px;
	} */

	.image-inner-border:before, 
	.image-inner-border::after {
		width: calc(50% - 20px);
	}

	.arrow-icon {
		width: 30px;
		height: 30px;
		padding: 6px;
	}

	.image-inner-border {
		top: 25px;
		bottom: 25px;
		left: 25px;
		right: 25px;
	}

	.image-content-block:hover .image-inner-border {
		top: 20px;
		bottom: 20px;
		left: 20px;
		right: 20px;
	}
}
/* home page ends  */


/* timeline page started */
.timeline-body-sec {
	background-color: #070202;
}

.black-header header {
	background-color: #070202;
}

.bg-none-header header {
	background: none !important;
}

@media (min-width: 992px) {
	.black-header .header .navbar-nav > .nav-item > .nav-link {
		color: #fff !important;
	}
}

.black-header .navbar-brand img.default-logo {
	display: none;
}

.black-header .navbar-brand img.white-logo {
	display: inline-block;
}

.black-header .navbar-toggler {
    border-color: #fff;
    color: #fff;
}

.black-header .navbar-toggler:hover,
.black-header .navbar-toggler:focus {
 color: #A53939;
 background: #fff;
}

.timeline-page-head-content {
    padding: 112px 0;
}

.timleline-page-head-block {
	text-align: center;
}

.timleline-page-head-block h2 {
	font-family: 'Dancing Script', cursive !important;
	color: #A53939;
	font-size: 56px;
	margin-bottom: 0;
}

.timleline-page-head-block p {
	color: #C4CFDE;
	font-size: 22px;
}

.timeline-list-wrap {
	padding-bottom: 136px;
}

.item-timeline-list {
	position: relative;
}

@media (min-width:992px) {
	.item-timeline-list {
		height: 100vh;
	}

	.btn-menu-close {
		display: none;
	}
}

.timeline-midline {
	position: absolute;
	top: 0;
	left: 50%;
	height: 100%;
	width: 8px;
	background-color: #927d7d29;
	margin-left: -2px;
}

.line-dot {
	display: none;
}

.item-timeline-list:first-child .line-dot,
.item-timeline-list:last-child .line-dot {
	content: "";
    position: absolute;
    left: -6px;
    top: -14px;
    width: 21px;
    height: 21px;
    background-color: #A53939;
    border-radius: 100%;
	display: block;
}

.item-timeline-list:last-child .line-dot {
    top: auto;
	bottom: -10px;
}

.col-time,
.col-timedtl {
	height: 100%;
	display: flex;
	align-items: center;
	min-height: 600px;
}

.col-time {
	justify-content: flex-end;
	position: relative;
}

.timeline-date {
	text-align: right;
	padding-right: 130px;
	position: relative;
}

.timeline-date h3 {
	font-size: 24px;
    margin-bottom: 0;
    color: #fff;
    font-weight: 700;
    line-height: 1.35;
	z-index: 9;
}

.item-timeline-list:nth-child(odd) .timeline-date h4 {
	left: 0;
    top: 50%;
    transform: translate(-50%, -50%) !important;
    right: auto;
}

.timeline-date h4 {
	font-size: 28px;
    margin-bottom: 0;
    color: #fff;
    font-weight: 700;
    position: absolute;
    left: auto;
	right: 0;
    top: 50%;
    background: #A53939;
    z-index: 9;
    padding: 10px 20px;
    border-radius: 60px;
    transform: translate(50%, -50%) !important;
	line-height: normal;
}

.spn-bar {
	position: absolute;
    right: 2px;
    top: 50%;
    width: 103px;
    height: 4px;
    background-color: #717274;
    margin-top: -2px;
}

.spn-bar:before {
	position: absolute;
    content: "";
    left: -11px;
    top: -4px;
    width: 12px;
    height: 12px;
    border: solid 3px #717274;
    border-radius: 100%;
}

.spn-bar:after {
	position: absolute;
    content: "";
    right: -8px;
    top: -6px;
    width: 8px;
    height: 16px;
    background-color: #717274;
}

.timeline-dtl {
    display: flex;
    flex-direction: column;
    max-width: 650px;
    margin: auto;
	padding: 25px;
}

.timeline-dtl-txt {
    margin-top: -39px;
    padding: 0 10px 0 28px;
	margin-top: 30px !important;
	opacity: 0;
	visibility: hidden;
	transition: 0.2s ease-in-out 0s;
	display: none !important;
}

.timeline-dtl-img img {
	max-height: 450px;
	transition: 0.2s ease-in-out 0s;
}

.timeline-dtl-img:hover + .timeline-dtl-txt {
	opacity: 1;
	visibility: visible;
	margin-top: 20px !important;
}

@media(max-width:991px){
	.timeline-dtl-txt {
		opacity: 1;
		visibility: visible;
		margin-top: 20px !important;
	}
}

.timeline-dtl-img:hover img {
	transform: scale(1.04);
}

.timeline-dtl-txt h5 {
	font-size: 60px;
	font-weight: 700;
	color: #fff;
	margin-bottom: 8px;
	display: none;
}

.timeline-dtl-txt p,
.timeline-dtl-txt ul li {
	font-size: 17px;
    line-height: 24px;
    color: #FFF !important;
    margin-bottom: 10px;
}

.timeline-dtl-txt ul {
	padding-left: 25px;
}

.item-timeline-list:nth-child(odd) .col-time {
	order: 2;
	justify-content: flex-start;
}

.item-timeline-list:nth-child(odd) .timeline-date {
    text-align: left;
    padding-right: 0;
	padding-left: 130px;
}

.item-timeline-list:nth-child(odd) .timeline-dtl-img {
	text-align: right;
}

.item-timeline-list:nth-child(odd) .spn-bar {
    right: auto;
	left: 2px;
}

.item-timeline-list:nth-child(odd) .spn-bar:before {
    left: auto;
	right: -11px;
}

.item-timeline-list:nth-child(odd) .spn-bar:after {
    right: auto;
	left: -4px;
}

@media (max-width: 1399px) {
	.timeline-page-head-content {
		padding: 60px 0;
	}

	.timleline-page-head-block h2 {
		font-size: 44px;
	}

	.timleline-page-head-block p {
		font-size: 18px;
	}

	.timeline-date {
		padding-right: 100px;
	}

	.item-timeline-list:nth-child(odd) .timeline-date {
		padding-left: 100px;
	}

	.spn-bar {
		width: 80px;
	}

	.col-time, 
	.col-timedtl {
		min-height: 550px;
	}

	.timeline-date h3 {
		font-size: 22px;
	}

	.timeline-date h4 {
		font-size: 26px;
	}

	.timeline-dtl-txt h5 {
		font-size: 50px;
		margin-bottom: 5px;
	}

	.timeline-dtl-txt p,
	.timeline-dtl-txt ul li {
		font-size: 16px;
		line-height: 22px;
		margin-bottom: 8px;
	}

	.timeline-dtl-txt {
		margin-top: -31px;
		padding-left: 20px;
	}

	.timeline-list-wrap {
		padding-bottom: 100px;
	}
}

@media (max-width: 991px) {
	.timeline-page-head-content {
		padding: 40px 0 50px;
	}

	.timleline-page-head-block h2 {
		font-size: 32px;
	}

	.timleline-page-head-block p {
		font-size: 16px;
	}

	.timeline-date h3 {
		font-size: 20px;
	}

	.timeline-date h4 {
		font-size: 18px;
	}

	.spn-bar {
		width: 60px;
	}

	.item-timeline-list:nth-child(odd) .timeline-date {
		padding-left: 80px;
	}

	.timeline-date {
		padding-right: 80px;
	}

	.timeline-dtl-txt h5 {
		font-size: 44px;
	}

	.timeline-dtl-txt {
		margin-top: -27px;
		padding-left: 15px;
	}

	.timeline-list-wrap {
		padding-bottom: 80px;
	}
}

@media (max-width: 767px) {
	.col-time {
		order: 1;
	}

	.col-timedtl {
		order: 2;
	}

	.timeline-midline {
		left: 0;
	}

	.timeline-date {
		text-align: left;
		padding-right: 0;
		padding-left: 26px !important;
	}

	.timeline-date h3 {
		font-size: 22px;
		order: 2;
		line-height: 1.4;
	}

	.col-time {
		justify-content: flex-start;
	}

	.spn-bar {
		width: 53px;
		top: 20px;
		right: auto !important;
		left: 2px !important;
	}

	.spn-bar:before {
		left: auto;
		right: -11px;
	}

	.spn-bar:after {
		right: auto;
		left: -4px;
	}

	.col-time, 
	.col-timedtl {
		min-height: 100px;
	}

	.item-timeline-list {
		padding: 40px 0;
	}

	.timeline-date {
		display: flex;
		flex-direction: column;
		align-items: flex-start;
	}

	.timeline-date h4 {
		font-size: 16px;
		order: 1;
		position: relative;
		top: 0;
		right: auto;
		left: 0;
		transform: none !important;
		margin-bottom: 10px;
	}

	.timeline-list-wrap {
		padding-bottom: 50px;
	}

	.timeline-dtl-txt h5 {
		font-size: 36px;
	}

	.timeline-dtl-txt {
		margin-top: -24px;
	}

	.item-timeline-list:nth-child(odd) .timeline-date h4 {
		transform: none !important;
	}
}

.footer p {
	color: #fff;
}

.footer-default-block p {
    color: rgba(0, 0, 0, 0.5);
    margin-top: 5px;
}

.black-footer {
	background: #070202;
}

.black-footer .footer-nav {
    padding: 54px 0;
}

.black-footer .footer-nav-block > :not(:last-child) {
    margin-bottom: 20px !important;
}

.black-footer .cpy-rht {
	color: rgba(255, 255, 255, 1);
}

@media (max-width: 1399px) {
	.black-footer .footer-nav {
		padding: 44px 0;
	}
	
	.black-footer .footer-nav-block > :not(:last-child) {
		margin-bottom: 18px !important;
	}
}

@media (max-width: 991px) {
	.black-footer .footer-nav {
		padding: 26px 0;
	}
	
	.black-footer .footer-nav-block > :not(:last-child) {
		margin-bottom: 10px !important;
	}
}

.tobe-cntd {
	text-align: center;
	margin-top: 50px;
	color: #fff;
	font-size: 20px;
	position: relative;
	z-index: 9;
	display: none;
}

.timeline-container {
	width: 100%;
	position: relative;
	transition: 0.5s ease 0s;
	background-attachment: fixed;
	background-size: cover;
	background-position: center;

	/* background: url(../images/bio-bg.jpg) !important;
	background-size: cover !important;
    background-position: center !important;
    background-attachment: fixed !important; */
}

 .timeline-container:before {
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.70);
	content: "";
	z-index: 0;
	/* display: none; */
}

.timeline-item {
  opacity: 0.8;
  filter: blur(1.5px);
  transition: 0.5s;
  transform: translateY(-30px);
}

@media(max-width:991px){
	.timeline-item {
		filter: blur(0);
	  }
}

.timeline-active {
  opacity: 1;
  transform: translateY(0);
  filter: blur(0px);
}
/* timeline page ends  */


/* oeuvre page started */
.inner-block-head {
	text-align: center;
}

.inner-block-head h2 {
	font-size: 60px;
	font-weight: 800;
    color: #000;
    margin-bottom: 24px;
    position: relative;
    text-transform: uppercase;
    line-height: 145px;
}

.inner-block-head h2::before {
	content: attr(data-text);
    position: absolute;
    left: 0;
    top: 0;
    text-align: center;
    width: 100%;
    font-size: 96px;
	font-weight: 800;
    color: rgba(0, 0, 0, 0.05);
    text-transform: uppercase;
}

.inner-block-head h3 {
	font-size: 18px;
	line-height: 36px;
	font-weight: 500;
	color: #777777;
	margin-bottom: 50px;
}

.oeuvre-banner-sec {
	height: 663px;
	position: relative;
	background: rgba(206, 35, 35, 0.60);
}

.oeuvre-banner-sec > img {
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	mix-blend-mode: multiply;
}

.oeuvre-banner-sec .main-banner-content {
	padding-top: 0 !important;
	align-items: center !important;
}

.banner-content-outer {
	height: 100%;
	display: flex;
}

.main-banner-content {
	position: relative;
    height: 100%;
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
	padding-top: 22%;
}

.inner-oeuvre-banner-content {
	max-width: 746px;
}

.inner-oeuvre-banner-content h1 {
	font-weight: 700;
	font-size: 49px;
	line-height: 74px;
	color: #FFFFFF;
	margin-bottom: 0;
}

@media(max-width: 1399px) {
	.oeuvre-banner-sec {
		height: 560px;
	}

	.inner-block-head h3 {
		font-size: 17px;
		line-height: 34px;
		margin-bottom: 35px;
	}

	.inner-block-head h2 {
		font-size: 50px;
		margin-bottom: 16px;
		line-height: 100px;
	}

	.inner-block-head h2::before {
		font-size: 76px;
	}

	.inner-oeuvre-banner-content {
		max-width: 600px;
	}

	.inner-oeuvre-banner-content h1 {
		font-size: 40px;
		line-height: 68px;
	}
}

@media(max-width: 991px) {
	.oeuvre-banner-sec {
		height: 400px;
	}

	.inner-oeuvre-banner-content {
		max-width: 440px;
	}

	.inner-oeuvre-banner-content h1 {
		font-size: 30px;
		line-height: 50px;
	}

	.inner-block-head h2 {
		font-size: 40px;
		margin-bottom: 10px;
		line-height: 90px;
	}

	.inner-block-head h2::before {
		font-size: 60px;
	}

	.inner-block-head h3 {
		font-size: 16px;
		line-height: 30px;
		margin-bottom: 30px;
	}
}

@media(max-width:767px) {
	.oeuvre-banner-sec {
		height: 300px;
	}

	.inner-oeuvre-banner-content {
		max-width: 300px;
	}

	.inner-oeuvre-banner-content h1 {
		font-size: 20px;
		line-height: 36px;
	}
}

@media(max-width:575px) {
	.oeuvre-banner-sec {
		height: 200px;
	}

	.inner-oeuvre-banner-content {
		max-width: 240px;
	}

	.inner-oeuvre-banner-content h1 {
		font-size: 16px;
		line-height: 30px;
	}
}

.catg-title {
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin-bottom: 24px;
	flex-wrap: wrap;
	gap: 10px;
}

.catg-title h4 {
	font-size: 20px;
	color: #A53939;
	font-weight: 700;
	line-height: 30px;
	margin-bottom: 0;
}

.item-inner-books {
	position: relative;
	display: table;
	margin: 0 auto 30px;
}

.item-inner-books::before {
	position: absolute;
	content: "";
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	background: transparent linear-gradient(180deg, #260009A3 0%, #3B1018 100%) 0% 0% no-repeat padding-box;
	/* mix-blend-mode: multiply; */
	transition: 0.2s ease-in-out 0s;
	z-index: 0;
	visibility: hidden;
	opacity: 0;
}

.books-hover {
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	transition: 0.2s ease-in-out 0s;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	z-index: 5;
	padding: 60px 5px 30px;
	visibility: hidden;
	opacity: 0;
}

.books-hover h5 {
	color: #fff;
	text-align: center;
	font-size: 24px;
	font-weight: 600;
	opacity: 0;
	transform: translate3d(0,-100px,0);
	transition: 0.3s ease-in-out 0s;
}

.books-hover-btns {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.btn-books-dtl {
	width: 174px;
	height: 56px;
	border: 1px solid #777777;
	border-radius: 8px;
	font-size: 18px;
	font-weight: 500;
	color: #fff;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	transform: translate3d(-100px,0,0);
	opacity: 0;
	transition: 0.3s ease-in-out 0s;
}

.btn-books-dtl:not(:last-child) {
	margin-bottom: 26px;
}

.btn-books-dtl:hover,
.btn-books-dtl:focus {
	background-color: #fff;
	color: #BF7D2E;
}

.btn-buy {
	border-color: #BF7D2E !important;
	color: #BF7D2E;
	transform: translate3d(100px,0,0);
}

.btn-buy:hover,
.btn-buy:focus {
	background-color: #BF7D2E;
	color: #fff !important;
}

.item-inner-books:hover .books-hover,
.item-inner-books:hover::before {
	visibility: visible;
	opacity: 1;
}

.item-inner-books:hover .books-hover h5,
.item-inner-books:hover .btn-books-dtl,
.item-inner-books:hover .btn-buy {
	opacity: 1;
	transform: translateZ(0);
}

@media (max-width: 1399px) {
	.catg-title {
		margin-bottom: 16px;
	}
	
	.catg-title h4 {
		font-size: 18px;
		line-height: 26px;
	}

	.item-inner-books {
		margin-bottom: 20px;
	}

	.books-hover {
		padding: 40px 5px 20px;
	}

	.btn-books-dtl:not(:last-child) {
		margin-bottom: 16px;
	}

	.books-hover h5 {
		font-size: 20px;
	}

	.btn-books-dtl {
		width: 160px;
		height: 50px;
		font-size: 16px;
	}
}

@media (max-width: 575px) {
	.catg-title h4 {
		text-align: center;
	}
}

.viewmore {
	display: inline-block;
	font-size: 20px;
	font-weight: 500;
	color: #383838;
	transition: 0.2s ease-in-out 0s;
}

.viewmore i {
	border: solid 1px #383838;
    width: 24px;
    height: 24px;
    border-radius: 100%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    margin-left: 5px;
	transition: 0.2s ease-in-out 0s;
}

.viewmore:hover,
.viewmore:focus {
	color: #A53939 !important;
}

.viewmore:hover i,
.viewmore:focus i {
	transform: translateX(3px);
	color: #A53939 !important;
	border-color: #A53939 !important;
}

@media (max-width: 1399px) {
	.viewmore {
		font-size: 18px;
	}
	.viewmore i {
		width: 22px;
		height: 22px;
		font-size: 14px;
	}
}

.inner-album-videos-sec {
	position: relative;
}

.item-inner-album {
	position: relative;
	border-radius: 5px;
	overflow: hidden;
	display: table;
    margin: 0 auto 30px;
	height: 260px;
}

.item-inner-album img {
	transform: scale(1);
	transition: 0.2s ease-in-out 0s;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.inner-album-title {
	position: absolute;
	left: 0;
	bottom: 0;
	width: 100%;
	background: rgba(0, 0, 0, 0.12);
	transition: 0.2s ease-in-out 0s;
	padding: 11px 18px;
}

.inner-album-title p {
	font-size: 16px;
	color: #fff;
	font-weight: 600;
}

.item-inner-album:hover .inner-album-title {
	background: rgba(0, 0, 0, 0.50);
}

.item-inner-album:hover img {
	transform: scale(1.1);
}

@media (max-width: 1399px) {
	.item-inner-album {
		margin-bottom: 20px;
		height: 240px;
	}

	.inner-album-title {
		padding: 8px 15px;
	}

	.inner-album-title p {
		font-size: 14px;
	}
}

@media (max-width: 1199px){
	.item-inner-album {
		height: 185px;
	}
}

.item-inner-videos {
	margin: 0 auto 30px;
	max-width: 430px;
	box-shadow: 0px 3px 6px #A2C1FF29;
	border-radius: 8px;
	background-color: #fff;
	overflow: hidden;
	transition: 0.2s ease-in-out 0s;
}

.item-inner-videos:hover {
	box-shadow: 0px 8px 10px #A2C1FF29;
}

.item-inner-videos-img {
	text-align: center;
	height: 295px
}

.item-inner-videos-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.item-inner-videos-cnt {
	padding: 24px;
}

.item-inner-videos-cnt h4 {
	font-size: 20px;
    font-weight: 600;
    line-height: 32px;
    color: #A53939;
    margin-bottom: 8px;
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
}

.item-inner-videos-cnt p {
	font-size: 18px;
    font-weight: 500;
    line-height: 32px;
    color: #222222;
    margin-bottom: 16px;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
}

.item-inner-videos-cnt h5 {
	font-size: 20px;
	font-weight: 600;
	line-height: 32px;
	color: #222222;
	margin-bottom: 24px;
	display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
    overflow: hidden;
}

@media (min-width: 768px) {
	.item-events-bg {
		max-width: 100%;
	}
}

@media (min-width: 992px) {
	.item-events-bg .item-inner-videos-img {
		height: 350px;
	}
}

@media (min-width: 1200px) {
	.item-events-bg .item-inner-videos-img {
		height: 400px;
	}
}

@media (min-width: 1400px) {
	.item-events-bg .item-inner-videos-img {
		height: 450px;
	}
}

@media (max-width: 1399px) {
	.item-inner-videos {
		margin-bottom: 20px;
	}

	.item-inner-videos-cnt {
		padding: 20px;
	}

	.item-inner-videos-cnt h4 {
		font-size: 18px;
		line-height: 28px;
		margin-bottom: 6px;
	}

	.item-inner-videos-cnt p {
		font-size: 16px;
		line-height: 28px;
		margin-bottom: 12px;
	}

	.item-inner-videos-cnt h5 {
		font-size: 18px;
		line-height: 28px;
		margin-bottom: 16px;
	}

	.item-inner-videos-img {
		height: 240px;
	}
}

@media (max-width: 767px){
	.item-inner-videos-img {
		height: 200px;
	}
}

/* oeuvre page ended */


/* project page started */
.project-body-wrap {
	border-bottom: solid 1px #DBDBDB;
}

.project-banner-sec {
	height: 568px;
	position: relative;
	background: #383b7a;
    /* background: rgba(206, 35, 35, 0.60); */
}

.project-banner-sec > img {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
	object-fit: cover;
	opacity: 0.5 !important;
    /* mix-blend-mode: multiply; */
}

.inner-project-banner-content h1 {
	font-weight: 400;
	font-size: 40px;
	line-height: 47px;
	text-align: center;
	text-transform: uppercase;
	color: #FFFFFF;
	max-width: 640px;
    margin-left: auto;
    margin-right: auto;
	margin-bottom: 0;
}

.project-detail-wrap {
	padding-bottom: 60px;
}

.item-project-detail-list {
	padding-bottom: 60px;
}

.project-img img {
	width: 100%;
}

.project-contents-topper > h2 {
	max-width: 1300px;
	padding: 0 15px;
	font-weight: 400;
	font-size: 38px;
	line-height: 48px;
	color: #A53939;
	margin: 0 auto 0;
	margin-bottom: 50px;
	text-align: center;
}

.project-contents {
	padding-top: 56px;
}
.project-contents-topper > h3 {
    max-width: 1300px;
    font-weight: 400;
    font-size: 26px;
    line-height: 40px;
    text-align: center;
    color: #000000;
    margin: 0 auto 0;
    padding: 0 15px;
    margin-bottom: 48px;
}

.project-detail-txt,
.mid-sec,
.item-project-detail-upper-list {
	max-width: 900px;
	padding: 0 15px;
	margin: 0 auto 0;
}

.project-detail-txt h1 {
	font-weight: 700;
    font-size: 40px;
    line-height: 50px;
    color: #A53939;
    margin-bottom: 22px;
}

.project-detail-txt h3 {
	font-weight: 500;
    font-size: 46px;
    line-height: 72px;
    color: #A53939;
    margin-bottom: 28px;
}

.project-detail-txt > p,
.show-description p {
	font-weight: 500;
	font-size: 20px;
	line-height: 36px;
	color: #444444;
	margin-bottom: 38px;
	text-align: justify;
}

.item-project-detail-upper-list {
	position: relative;
	margin-bottom: 48px;
}

.project-name {
	height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
}

.project-name h4 {
	font-weight: 500;
	font-size: 50px;
	line-height: 72px;
	text-align: center;
	color: #A53939;
	margin-bottom: 30px;
}

.ul-award,
.project-detail-wrap ul {
	list-style: none;
	margin: 0 0 12px;
	padding: 0;
}

.ul-award li,
.project-detail-wrap li {
	display: flex;
	align-items: center;
	margin-bottom: 12px;
}

.project-detail-wrap li {
	background: url(../images/icon-award.svg) no-repeat left center;
	padding-left: 50px;
}

.ul-award li span {
	display: inline-flex;
	flex-shrink: 0;
	margin-right: 32px;
}

.ul-award li p,
.project-detail-wrap ul li {
	font-weight: 600;
	font-size: 24px;
	line-height: 48px;
	text-transform: capitalize;
	color: #444444;
	margin-bottom: 0;
}

.link-line,
.link-line a {
	color: #A53939 !important;
}

.link-line a:hover,
.link-line a:focus {
	text-decoration: underline !important;
}

.journey-sec {
	background-color: #fff;
    border-radius: 7px;
    box-shadow: 1px 1px 12px rgb(175 189 224 / 10%);
    padding: 32px;
}

.table-journey tbody tr {
	cursor: default !important;
}

.table-journey tbody tr {
    background: none !important;
}

.table-journey tbody tr:nth-child(even) {
	background:rgba(204, 204, 204, 0.11) !important;
}

@media (max-width:1399px){
	.project-detail-txt h1 {
		font-weight: 700;
		font-size: 36px;
		line-height: 44px;
		color: #000000;
		margin-bottom: 16px;
	}

	.project-contents-topper > h3 {
		max-width: 1200px;
		font-size: 24px;
		line-height: 38px;
		margin-bottom: 40px;
	}

	.inner-project-banner-content h1 {
		font-size: 38px;
		line-height: 45px;
		max-width: 580px;
	}
}

@media(max-width: 1399px){
	.project-banner-sec {
		height: 480px;
	}

	.project-contents {
		padding-top: 50px;
	}

	.project-contents-topper > h2 {
		max-width: 1200px;
		font-size: 30px;
		line-height: 38px;
		margin-bottom: 35px;
	}

	.project-detail-txt,
	.mid-sec,
	.item-project-detail-upper-list {
		max-width: 800px;
	}

	.project-detail-txt > h3 {
		font-size: 36px;
		line-height: 44px;
		margin-bottom: 16px;
	}

	.project-detail-txt > p,
	.show-description p {
		font-size: 19px;
		line-height: 32px;
		margin-bottom: 24px;
	}

	.item-project-detail-upper-list {
		margin-bottom: 38px;
	}

	.item-project-detail-list {
		padding-bottom: 40px;
	}

	.project-name h4 {
		font-size: 38px;
		line-height: 60px;
	}

	.ul-award li,
	.project-detail-wrap ul li {
		margin-bottom: 8px;
	}

	.ul-award li span {
		margin-right: 24px;
	}

	.ul-award li span img {
		width: 90%;
	}

	.ul-award li p,
	.project-detail-wrap ul li {
		font-size: 22px;
		line-height: 45px;
	}

	.project-detail-wrap li {
		padding-left: 40px;
		background-size: 20px;
	}
}

@media(max-width: 991px){
	.project-banner-sec {
		height: 430px;
	}

	.inner-project-banner-content h1 {
		font-size: 20px;
		line-height: 36px;
		max-width: 280px;
	}

	.project-contents {
		padding-top: 40px;
	}

	.project-contents-topper > h2 {
		max-width: 850px;
		font-size: 27px;
		line-height: 34px;
		margin-bottom: 30px
	}

	.project-contents-topper > h3 {
		max-width: 850px;
		font-size: 22px;
		line-height: 36px;
		margin-bottom: 34px;
	}

	.project-detail-txt,
	.mid-sec,
	.item-project-detail-upper-list {
		max-width: 700px;
	}

	.project-detail-txt h1 {
		font-size: 32px;
		line-height: 40px;
		margin-bottom: 14px;
	}

	.project-detail-txt > h3 {
		font-size: 32px;
		line-height: 40px;
		margin-bottom: 14px;
	}

	.project-detail-txt > p,
	.show-description p {
		font-size: 18px;
		line-height: 30px;
		margin-bottom: 20px;
	}

	.project-name h4 {
		font-size: 28px;
		line-height: 46px;
		margin-bottom: 20px;
	}

	.ul-award li span {
		margin-right: 18px;
	}

	.ul-award li p,
	.project-detail-wrap ul li {
		font-size: 20px;
		line-height: 40px;
	}

	.project-detail-wrap li {
		padding-left: 35px;
		background-size: 35px;
	}
}

@media(max-width: 767px) {
	.project-banner-sec {
		height: 344px;
	}

	.inner-project-banner-content h1 {
		font-size: 18px;
		line-height: 26px;
	}

	.table-journey  {
		padding: 20px;
	}

	.item-project-detail-list {
		padding-bottom: 30px;
	}
}

@media(max-width: 575px){
	.project-banner-sec {
		height: 240px;
	}

	.inner-project-banner-content h1 {
		/* max-width: 370px; */
		font-size: 19px;
    	line-height: 30px;
	}
}
/* project page ended */


/* books-details page starts */
.books-details-wrapper {
	padding-bottom: 100px;
}

.breadcrumb {
	margin: 0;
	padding: 35px 0;
}

.breadcrumb-item {
	line-height: 21px;
}

.breadcrumb-item a {
	font-size: 16px;
	color: #8D8D8D;
	transition: 0.2s ease-in-out 0s;
}

.breadcrumb-item a:hover {
	color: #A53939;
}

.breadcrumb-item.active a {
	font-size: 14px;
	font-weight: 500;
	color: #A53939;
	pointer-events: none;
}

.breadcrumb-item+.breadcrumb-item::before {
    font-size: 9px;
    font-weight: 700;
    top: 50%;
    position: relative;
    transform: translateY(-50%);
}

.books-desc-sec {
	display: flex;
	align-items: center;
}

.books-cover {
	flex-shrink: 0;
	margin-right: 48px;
}

.books-cover-block {
	width: 486px;
	position: relative;
	display: inline-flex;
	flex-shrink: 0;
}

.book-tag {
	position: absolute;
    right: -15px;
    bottom: 11%;
    width: 156px;
    height: 92px;
    background-color: #fff;
    border-radius: 11px 0 0 11px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #000;
    font-size: 42px;
    font-weight: 700;
}

.book-tag span {
	color: #bf7d2e;
}

.book-desc-dtl {
    flex-grow: 1;
}

.book-desc-dtl h1 {
	font-weight: 700;
	font-size: 68px;
	line-height: 102px;
	color: #383838;
	margin-bottom: 21px;
}

.book-desc-dtl p {
	font-size: 20px;
	line-height: 30px;
	color: #777777;
	margin-bottom: 36px;
	text-align: justify;
}

.books-avail {
	display: flex;
	margin-bottom: 36px;
}

.books-avail span {
	display: inline-flex;
	flex-shrink: 0;
	font-weight: 500;
	font-size: 24px;
	line-height: 36px;
	color: #000000;
	margin-right: 17px;
}

.books-avail-list {
	gap: 10px 15px;
    display: inline-flex;
    flex-wrap: wrap;
}

.modalReadingbook .modal-content {
	border-radius: 16px;
}

.modalReadingbook .modal-body {
	padding: 48px 30px 72px;
	background: url(../images/reading-bg-left.png) left bottom, url(../images/reading-bg-right.png) right top;
	background-repeat: no-repeat;
	text-align: center;
}

.modalReadingbook .btn-close {
    position: absolute;
    right: 20px;
    top: 20px;
	box-shadow: none !important;
}

.icon-div {
	margin-bottom: 22px;
}

.icon-div span {
	width: 116px;
	height: 116px;
	border-radius: 100%;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	background:#F3F3F3;
	padding: 25px;
}

.reading-pop-sec h2 {
	font-weight: 600;
	font-size: 24px;
	line-height: 36px;
	text-align: center;
	color: #000000;
	max-width: 42%;
	margin: 0 auto 16px;
}

.reading-pop-sec h3 {
	font-size: 20px;
	line-height: 30px;
	text-align: center;
	color: #777777;
	max-width: 65%;
	margin: 0 auto 24px;
}

.form-reading {
    display: flex;
    margin: auto;
    text-align: center;
    max-width: 82%;
}

.form-reading .form-control {
	height: 72px;
	background-color: #F3F3F3;
	border: none;
	border-radius: 8px;
	font-size: 20px;
	color: #000;
	padding-left: 24px;
	padding-right: 24px;
}

.form-reading .form-control::-webkit-input-placeholder { /* Chrome/Opera/Safari */
    color: #000 !important;
}

.form-reading .form-control::-moz-placeholder { /* Firefox 19+ */
    color: #000 !important;
}

.form-reading .form-control:-ms-input-placeholder { /* IE 10+ */
    color: #000 !important;
}

.form-reading .form-control:-moz-placeholder { /* Firefox 18- */
    color: #000 !important;
}

.btn-submit {
	height: 72px;
	font-size: 24px;
	font-weight: 600;
	text-transform: uppercase;
	padding-left: 56px;
	padding-right: 56px;
}

/* 3d books effect started */
.DDDbooks-cover {
	align-items: center;
	display: flex;
	justify-content: center;
	perspective: 1000px;
	transform-style: preserve-3d;
}

.DDDbooks-cover .DDDbooks-cover-block:after {
	background: #000;
	transform: rotateY(90deg);
	transform-origin: left;
	width: 60px;
	content: '';
	height: 100%;
	left: 1px;
	position: absolute;
	top: 0;
}

.DDDbooks-cover .DDDbooks-cover-block {
	box-shadow: 20px 20px 20px rgba(0, 0, 0, 0.2);
	position: relative;
	transform-style: preserve-3d;
	transition: box-shadow 0.5s ease,
							transform 0.5s ease;

}

.DDDbooks-cover .DDDbooks-cover-block:hover,
.DDDbooks-cover .DDDbooks-cover-block:focus {
	box-shadow: 0px 20px 20px rgba(0, 0, 0, 0.2);
	transform: rotateY(35deg);
}

.DDDbook-spine {
    position: absolute;
    bottom: 0;
    top: 0;
    width: 46px;
    z-index: 5;
    overflow: hidden;
    -webkit-transform: rotateY(-90deg) translateX(-49px);
    -moz-transform: rotateY(-90deg) translateX(-49px);
    transform: rotateY(-90deg) translateX(-49px);
    -webkit-transform-origin: 0 0;
    -moz-transform-origin: 0 0;
    transform-origin: 0 0;
    left: 0px;
}

.DDDbook-spine span {
    display: block;
    width: 290px;
    text-align: center;
    color: #fff;
    position: absolute;
    top: 0;
    left: 35px;
    text-indent: 0;
    text-transform: uppercase;
    font-family: Helvetica, Arial, sans-serif;
    font-size: 2em;
    opacity: 0.75;
    font-weight: normal;
    -webkit-font-smoothing: antialiased;
    -webkit-transform: rotateZ(90deg);
    -moz-transform: rotateZ(90deg);
    transform: rotatez(90deg) translateX(-50%);
    -webkit-transform-origin: 0 0;
    -moz-transform-origin: 0 0;
    transform-origin: 0 0;
    font-size: 22px;
    font-weight: 600;
    top: 50%;
    letter-spacing: 1px;
    word-spacing: 10px;
}

.inner-books-dtl .DDDbooks-cover .DDDbooks-cover-block:after {
    width: 50px;
}

.inner-books-dtl .DDDbook-spine span {
    font-size: 18px;
}

@media (max-width: 575px){
	.DDDbook-spine span {
		font-size: 16px;
	}
}

/* 3d books effect ended */

@media (min-width: 576px) {
	.modalReadingbook .modal-dialog {
		max-width: 1180px;
		padding-left: 0.5rem;
		padding-right: 0.5rem;
	}
}

@media (min-width: 1400px) {
	.modalReadingbook .modal-dialog {
		max-width: 1350px;
	}
}

@media (max-width: 1399px) {
	.breadcrumb {
		padding-top: 30px;
		padding-bottom: 30px;
	}

	.books-cover {
		margin-right: 38px;
	}

	.books-cover-block {
		width: 400px;
	}

	.book-tag {
		width: 130px;
		height: 80px;
		border-radius: 9px 0 0 9px;
		font-size: 37px;
		right: -10px;
	}

	.book-desc-dtl h1 {
		font-size: 58px;
		line-height: 80px;
		margin-bottom: 16px;
	}

	.book-desc-dtl p {
		font-size: 18px;
		line-height: 28px;
		margin-bottom: 28px;
	}

	.books-avail {
		margin-bottom: 28px;
	}

	.books-avail span {
		font-size: 22px;
		line-height: 30px;
		margin-right: 14px;
	}

	.btn-custom {
		height: 50px;
		border-radius: 7px;
		font-size: 18px;
		padding: 8px 20px;
	}

	.btn-custom-sm {
		height: 40px;
		border-radius: 5px;
		font-size: 15px;
		padding: 8px 20px;
	}

	.modalReadingbook .modal-body {
		padding: 38px 30px 60px;
	}

	.icon-div {
		margin-bottom: 18px;
	}

	.icon-div span {
		width: 100px;
		height: 100px;
	}

	.reading-pop-sec h2 {
		font-size: 21px;
		line-height: 33px;
		margin-bottom: 12px;
	}

	.reading-pop-sec h3 {
		font-size: 18px;
		line-height: 28px;
		margin-bottom: 21px;
	}

	.form-reading .form-control {
		height: 60px;
		font-size: 18px;
		padding-left: 22px;
		padding-right: 22px;
	}

	.btn-submit {
		height: 60px;
		font-size: 20px;
		padding-left: 50px;
		padding-right: 50px;
	}
}

@media (max-width: 991px) {
	.breadcrumb {
		padding-top: 25px;
		padding-bottom: 25px;
	}
	
	.books-desc-sec {
		flex-wrap: wrap;
	}
	
	.books-cover {
		margin-right: 0;
		width: 100%;
		display: flex;
		justify-content: center;
		margin-bottom: 25px;
	}

	.books-cover-block {
		width: 100%;
		max-width: 400px;
	}

	.book-tag {
		width: 120px;
		height: 66px;
		font-size: 30px;
	}

	.book-desc-dtl h1 {
		font-size: 35px;
		line-height: 60px;
		margin-bottom: 10px;
	}

	.book-desc-dtl p {
		font-size: 17px;
		line-height: 30px;
		margin-bottom: 36px;
	}

	.books-avail {
		margin-bottom: 20px;
	}

	.books-avail span {
		font-size: 20px;
	}

	.btn-custom {
		font-size: 16px;
	}

	.btn-custom-sm {
		font-size: 14px;
	}
	
	.modalReadingbook .modal-dialog {
		max-width: 1350px;
	}

	.reading-pop-sec h2 {
		font-size: 19px;
		max-width: 70%;
	}

	.reading-pop-sec h3 {
		font-size: 17px;
		max-width: 98%;
	}

	.form-reading .form-control {
		height: 54px;
		font-size: 16px;
		padding-left: 20px;
		padding-right: 20px;
	}

	.btn-submit {
		height: 54px;
		font-size: 18px;
	}
}

@media (max-width: 575px) {
	.form-reading {
		max-width: 100%;
	}
}
/* books-details page ends */


/* events page started */
.upcoming-events-sec {
	padding-top: 36px;
}

.events-head h2 {
	font-weight: 700;
	font-size: 28px;
	line-height: 42px;
	margin-bottom: 24px;
	color: #212428;
}

.inner-upcoming-events-block {
	box-shadow: 0px 3px 6px #a2c1ff29;
    border-radius: 8px;
    background-color: #fff;
	padding: 36px;
	display: flex;
	gap: 30px;
}

.upcoming-img {
	flex-shrink: 0;
	overflow: hidden;
	width: 430px;
	height: 296px;
	border-radius: 8px;
}

.upcoming-img img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.upcoming-desc {
	flex-grow: 1;
	padding-top: 4px;
}

.upcoming-location {
	display: flex;
	gap: 10px 27px;
	margin-bottom: 16px;
	flex-wrap: wrap;
}

.upcoming-location label {
	font-weight: 500;
	font-size: 16px;
	line-height: 24px;
	color: #777777;
}

.upcoming-location label i {
	margin-right: 8px;
}

.upcoming-desc h3 {
	font-weight: 700;
	font-size: 32px;
	line-height: 48px;
	margin-bottom: 11px;
	color: #A53939;
	display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
}

.upcoming-desc p {
	font-size: 20px;
	line-height: 30px;
	color: #777777;
	margin-bottom: 19px;
	display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
	text-align: justify;
}

.events-list-wrapper {
	padding-bottom: 18px;
}

.item-events-list .item-inner-videos-cnt {
    padding-top: 16px;
}

.item-events-list .upcoming-location {
	margin-bottom: 8px;
}

.item-events-list .item-inner-videos-cnt h4 {
    font-weight: 700;
    line-height: 30px;
    margin-bottom: 12px;
}

.item-events-list .item-inner-videos-cnt p {
    font-weight: 400;
    line-height: 27px;
    color: #777777;
    margin-bottom: 24px;
	text-align: justify;
}

@media(max-width: 1399px){
	.upcoming-events-sec {
		padding-top: 28px;
	}

	.events-head h2 {
		font-size: 25px;
		line-height: 38px;
		margin-bottom: 20px;
	}

	.inner-upcoming-events-block {
		padding: 26px;
		gap: 20px;
	}

	.upcoming-img {
		width: 370px;
    	height: 254px;
	}

	.upcoming-location {
		gap: 7px 20px;
		margin-bottom: 13px;
	}

	.upcoming-location label {
		font-size: 15px;
		line-height: 22px;
	}

	.upcoming-desc h3 {
		font-size: 30px;
		line-height: 42px;
	}

	.upcoming-desc p {
		font-size: 18px;
		line-height: 28px;
		margin-bottom: 16px;
	}

	.events-head h2 {
		font-size: 23px;
		line-height: 33px;
		margin-bottom: 16px;
	}

	.item-events-list .upcoming-location {
		margin-bottom: 6px;
	}

	.item-events-list .upcoming-location label {
		font-size: 14px;
		line-height: 20px;
	}

	.item-events-list .item-inner-videos-cnt h4 {
		line-height: 28px;
		margin-bottom: 9px;
	}

	.item-events-list .item-inner-videos-cnt p {
		line-height: 25px;
		margin-bottom: 18px;
	}
}

@media (max-width: 1199px){
	.upcoming-img {
		width: 340px;
		height: 234px;
	}
	
	.upcoming-desc h3 {
		font-size: 26px;
		line-height: 36px;
	}

	.upcoming-desc p {
		font-size: 17px;
		line-height: 26px;
		margin-bottom: 14px;
	}
}

@media(max-width: 991px){
	.inner-upcoming-events-block {
		flex-wrap: wrap;
	}

	.upcoming-img {
		max-width: 340px;
		width: 100%;
		height: auto;
		margin: auto;
	}
}
/* events page ended */


/* events details page started */
.events-details-banner {
    border-radius: 15px;
    overflow: hidden;
	margin-bottom: 24px;
}

.events-details-contents .upcoming-location {
	margin-bottom: 24px;
}

.events-details-contents h1,
.events-details-contents h2,
.events-details-contents h3,
.events-details-contents h4,
.events-details-contents h5,
.events-details-contents h6 {
	font-weight: 700;
	font-size: 28px;
	line-height: 42px;
	margin-bottom: 24px;
	color: #000000;
}

.events-details-contents h2 {
    font-size: 26px;
}

.events-details-contents h3 {
    font-size: 25px;
}

.events-details-contents h4 {
    font-size: 24px;
}

.events-details-contents h5 {
    font-size: 22px;
}

.events-details-contents h6 {
    font-size: 20px;
}

.events-details-contents p {
	font-size: 20px;
	line-height: 27px;
	color: #333;
	margin-bottom: 30px;
	text-align: justify;
}

.share-sec {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 12px;
}

.share-sec label {
	font-weight: 400;
	font-size: 20px;
	line-height: 30px;
	color: #383838;
}

.share-listing {
	display: flex;
	flex-wrap: wrap;
	gap: 8px 13px;
}

.share-listing a {
	display: inline-flex;
	width: 69px;
	height: 40px;
	border: 1px solid #CCCCCC;
	border-radius: 8px;
	align-items: center;
	justify-content: center;
	font-size: 14px;
}

.share-listing a span {
	display: inline-flex;
	justify-content: center;
	align-items: center;
	width: 24px;
	height: 24px;
	border-radius: 100%;
	background-color: #383838;
	color: #fff;
	transition: 0.2s ease-in-out 0s;
}

.share-listing a:hover span {
	background-color: #A53939;
}

.sidebar-events {
	margin-bottom: 36px;
}

.side-head {
	margin-bottom: 16px;
}

.side-head h2 {
	font-weight: 600;
	font-size: 24px;
	line-height: 30px;
	color: #000000;
}

.item-side-events-list {
	display: flex;
	align-items: center;
	border-radius: 8px;
	overflow: hidden;
	background-color: #fff;
	box-shadow: 0px 3px 6px #a2c1ff29;
	position: relative;
}

.item-side-events-img {
	width: 143px;
	height: 125px;
	overflow: hidden;
	flex-shrink: 0;
}

.item-side-events-img img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
}

.item-side-events-txt {
	padding: 16px;
}

.item-side-events-txt h3 {
	font-weight: 500;
	font-size: 18px;
	line-height: 24px;
	margin: 0;
	color: #A53939;
}

.source-txt {
	display: flex;
	font-size: 20px;
	color: #000;
}

.source-txt label {
	flex-shrink: 0;
	margin-right: 8px;
}

.label-date {
	display: block;
	font-weight: 500;
	font-size: 14px;
	line-height: 18px;
	color: #777777;
	margin-bottom: 9px;
}

.label-date i {
	margin-right: 10px;
}


@media(max-width: 1399px){
	.events-details-contents .upcoming-location {
		margin-bottom: 20px;
	}

	.events-details-contents h1, 
	.events-details-contents h2, 
	.events-details-contents h3, 
	.events-details-contents h4, 
	.events-details-contents h5, 
	.events-details-contents h6 {
		font-weight: 700;
		font-size: 26px;
		line-height: 34px;
		margin-bottom: 20px;
		color: #A53939;
	}

	.events-details-contents h2 {
		font-size: 24px;
	}
	
	.events-details-contents h3 {
		font-size: 23px;
	}
	
	.events-details-contents h4 {
		font-size: 22px;
	}
	
	.events-details-contents h5 {
		font-size: 21px;
	}
	
	.events-details-contents h6 {
		font-size: 20px;
	}

	.events-details-contents p {
		font-size: 19px;
		line-height: 26px;
		margin-bottom: 20px;
	}

	.share-sec label {
		font-size: 18px;
	}

	.item-side-events-img {
		width: 135px;
		height: 120px;
	}

	.item-side-events-txt h3 {
		font-size: 17px;
		line-height: 23px;
	}

	.source-txt {
		font-size: 18px;
	}

	.side-head h2 {
		font-size: 22px;
	}

	.label-date {
		font-size: 13px;
		line-height: 16px;
		margin-bottom: 6px;
	}
	
	.label-date i {
		margin-right: 7px;
	}
}

@media(max-width: 991px){
	.events-details-contents h1 {
		font-size: 24px;
	}
	
	.events-details-contents h2 {
		font-size: 23px;
	}
	
	.events-details-contents h3 {
		font-size: 22px;
	}
	
	.events-details-contents h4 {
		font-size: 21px;
	}
	
	.events-details-contents h5 {
		font-size: 20px;
	}
	
	.events-details-contents h6 {
		font-size: 19px;
	}

	.events-details-contents p {
		font-size: 18px;
	}
}
/* events details page ended */


/* contact page started */
.contact-wrapper {
	padding-top: 78px;
	padding-bottom: 72px;
}

.contact-header-left h1 {
	font-weight: 700;
	font-size: 32px;
	line-height: 48px;
	text-transform: capitalize;
	margin-bottom: 7px;
	color: #000000;
}

.contact-header-left p {
	font-size: 18px;
	line-height: 27px;
	color: #777777;
}

.contact-proceed {
	background-color: #fff;
	border-radius: 8px;
	padding: 32px 32px 44px 32px;
	box-shadow: 0px 3px 6px #a2c1ff29;
}

.inquiry-block h3 {
	font-weight: 600;
	font-size: 24px;
	line-height: 36px;
	margin-bottom: 8px;
	text-transform: capitalize;
	color: #000000;
}

.inquiry-block h4 {
	font-weight: 500;
	font-size: 18px;
	line-height: 34px;
	margin-bottom: 16px;
	color: #000000;
}

.contact-address {
	background-color: #fff;
	border-radius: 8px;
	padding: 32px 86px 44px 32px;
	box-shadow: 0px 3px 6px #a2c1ff29;
}

.item-cont-add-list:not(:last-child) {
	border-bottom: solid 1px rgba(0, 0, 0, 0.10);
	padding-bottom: 30px;
	margin-bottom: 30px;
}

.item-cont-add-list h5 {
	font-weight: 400;
	font-size: 18px;
	line-height: 27px;
	margin-bottom: 4px;
	color: #000000;
}

.item-cont-add-list h6 {
	font-weight: 600;
	font-size: 20px;
	line-height: 30px;
	margin-bottom: 0;
	color: #A53939;
}

.item-cont-add-list h6 a {
	font-weight: 600;
	font-size: 20px;
}

.item-cont-add-list h6 i {
	margin-right: 10px;
}

.inquiry-type {
	margin-bottom: 24px;
}

@media(max-width: 1399px){
	.contact-wrapper {
		padding-top: 50px;
		padding-bottom: 55px;
	}

	.contact-header-left h1 {
		font-size: 28px;
		line-height: 44px;
		margin-bottom: 5px;
	}

	.contact-header-left p {
		font-size: 17px;
		line-height: 25px;
	}

	.contact-proceed {
		padding: 30px 30px 38px 30px;
	}

	.inquiry-block h3 {
		font-size: 22px;
		line-height: 35px;
		margin-bottom: 6px;
	}

	.inquiry-block h4 {
		font-size: 17px;
		margin-bottom: 14px;
	}

	.item-cont-add-list h5 {
		font-size: 17px;
		line-height: 26px;
	}

	.contact-address {
		padding: 30px 50px 38px 30px;
	}

	.item-cont-add-list h6,
	.item-cont-add-list h6 a {
		font-size: 17px;
	}
}

@media(max-width: 991px){
	.contact-wrapper {
		padding-top: 40px;
		padding-bottom: 45px;
	}

	.contact-header-left h1 {
		font-size: 26px;
		line-height: 44px;
	}

	.contact-header-left p {
		font-size: 16px;
	}

	.inquiry-block h3 {
		font-size: 20px;
	}

	.contact-address {
		padding-right: 30px;
	}

	.item-cont-add-list h5 {
		font-size: 16px;
	}

	.item-cont-add-list h6, 
	.item-cont-add-list h6 a {
		font-size: 15px;
	}
}
/* contact page ended */


/* gallery page started */
.gallery-header {
	margin-bottom: 24px;
}

.gallery-header h1 {
	font-weight: 700;
	font-size: 40px;
	line-height: 60px;
	color: #000000;
	margin-bottom: 0;
}

.gallery-header h2 {
	font-size: 24px;
	line-height: 36px;
	color: #000000;
	margin-top: -5px;
	margin-bottom: 0;
}

.item-gallery {
	position: relative;
	border-radius: 7px;
	overflow: hidden;
}

.item-gallery a {
	display: block;
	height: 191px;
}

.item-gallery img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
}

.mfp-bg {
	opacity: 0.9;
}

.mfp-container {
	padding-left: 20px;
	padding-right: 20px;
}

.mfp-image-holder .mfp-content {
    max-width: 1360px;
}

.mfp-counter,
.mfp-title {
    color: #fff;
    font-weight: 700;
    font-family: 'Poppins';
    padding-top: 10px;
	font-size: 16px;
    line-height: 24px;
}

.mfp-title {
	padding-right: 50px !important;
}

button.mfp-arrow {
    border: solid 2px #F5F5F5;
    border-radius: 100%;
    width: 50px;
    height: 50px;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    margin-top: -25px;
	opacity: 0.5;
}

button.mfp-arrow:active {
	margin-top: -24px
}

button.mfp-arrow-left {
	left: 9%;
}

button.mfp-arrow-right {
	right: 9%;
}

.mfp-arrow:after {
	display: none;
}

.mfp-arrow::before {
	position: absolute;
    font-weight: 900;
    font-family: "Font Awesome 6 Free";
    margin: 0;
    border: none;
    opacity: 1;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    display: inline-flex;
    justify-content: center;
    align-items: center;
	width: auto;
	height: auto;
	color: #F5F5F5;
	font-size: 20px;
}

.mfp-arrow-left::before {
	content: "\f053";
}

.mfp-arrow-right::before {
	content: "\f054";
}

.mfp-zoom-out-cur {
	overflow: hidden;
}

@media(max-width: 1399px){
	.mfp-image-holder .mfp-content {
		max-width: 1140px;
	}

	button.mfp-arrow-left {
		left: 25px;
	}

	button.mfp-arrow-right {
		right: 25px;
	}

	.mfp-counter, .mfp-title {
		font-size: 14px;
		line-height: 22px;
	}

	.gallery-header {
		margin-bottom: 20px;
	}

	.gallery-header h1 {
		font-size: 35px;
		line-height: 54px;
	}

	.gallery-header h2 {
		font-size: 22px;
		line-height: 34px;
		margin-top: -3px;
	}
}

@media (max-width: 991px){
	.gallery-header h1 {
		font-size: 30px;
		line-height: 50px;
	}

	.gallery-header h2 {
		font-size: 20px;
		line-height: 28px;
	}
}
/* gallery page ended */


/* video list page started */
.videos-banner-sec {
	height: 757px;
	position: relative;
	background: rgba(206, 35, 35, 0.60);
}

.videos-banner-sec > img {
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	mix-blend-mode: multiply;
}

.videos-wrapper .breadcum-sec {
	position: absolute;
	left: 0;
	top: 0;
}

.videos-wrapper .breadcrumb-item.active a,
.videos-wrapper .breadcrumb-item a:hover {
    color: #fff;
}

.inner-videos-banner-content {
	max-width: 794px;
}

.inner-videos-banner-content h1 {
	font-weight: 400;
	font-size: 26px;
	line-height: 38px;
	margin-bottom: 5px;
	color: #FFFFFF;
}

.inner-videos-banner-content h2 {
	font-weight: 500;
	font-size: 75px;
	line-height: 96px;
	color: #FFFFFF;
	margin-bottom: 0;
}

.portfolio-header {
	display: flex;
	justify-content: space-between;
	align-items: center;
	border-bottom: solid 2px rgba(0, 0, 0, 0.1);
	padding-bottom: 15px;
}

.ul-filter-btn {
	display: flex;
	align-items: center;
	margin: 0;
	padding: 0;
	list-style: none;
	gap: 15px 50px;
	flex-wrap: wrap;
}

.ul-filter-btn li a {
	font-weight: 500;
	font-size: 18px;
	line-height: 27px;
	color: #000000;
	transition: 0.2s ease-in-out 0s;
	position: relative;
	background: none !important;
	padding: 0 !important;
}

.ul-filter-btn li a:hover{
	color: #A53939 !important;
}

.ul-filter-btn li a.active {
	color: #A53939 !important;
	/* transform: scale(1.23); */
	font-size: 24px;
	font-weight: 700;
}

.ul-filter-btn li a:after {
	position: absolute;
	content: "";
	bottom: -27px;
	left: 0;
	width: 0;
	height: 2px;
	background-color: #A53939;
	border-radius: 5px;
	overflow: hidden;
	transition: 0.2s ease-in-out 0s;
}

.ul-filter-btn li a.active:after {
	width: 92px;
}

.search-group .form-control {
	height: 47px;
    border-color: #CCCCCC !important;
    padding: 5px 0 5px 15px ;
    border-radius: 5px;
    font-weight: 500;
    font-size: 16px;
	border-right: none;
}

.search-group .input-group-text {
    border-radius: 5px;
    background: #fff;
    border-left: none;
    color: #CCCCCC;
    font-size: 20px;
}

.search-group .form-control::-webkit-input-placeholder { /* Chrome/Opera/Safari */
    color: #CCCCCC !important;
}

.search-group .form-control::-moz-placeholder { /* Firefox 19+ */
    color: #CCCCCC !important;
}

.search-group .form-control:-ms-input-placeholder { /* IE 10+ */
    color: #CCCCCC !important;
}

.search-group .form-control:-moz-placeholder { /* Firefox 18- */
    color: #CCCCCC !important;
}

@media(max-width: 1399px){
	.videos-banner-sec {
		height: 644px;
	}

	.inner-videos-banner-content {
		max-width: 690px;
	}

	.inner-videos-banner-content h1 {
		font-size: 23px;
		line-height: 35px;
	}

	.inner-videos-banner-content h2 {
		font-size: 65px;
		line-height: 80px;
	}

	.ul-filter-btn {
		gap: 15px 30px;
	}

	.ul-filter-btn li a {
		font-size: 17px;
		line-height: 25px;
	}

	.ul-filter-btn li a.active {
		font-size: 22px;
	}

	.search-group .form-control {
		height: 42px;
	}

	.ul-filter-btn li a:after {
		bottom: -25px;
	}
	
}

@media(max-width: 1199px){
	.ul-filter-btn {
		gap: 20px 20px;
	}

	.ul-filter-btn li a {
		font-size: 15px;
	}

	.ul-filter-btn li a.active {
		font-size: 18px;
	}
}

@media(max-width:991px){
	.videos-banner-sec {
		height: 460px;
	}

	.inner-videos-banner-content {
		max-width: 485px;
	}

	.inner-videos-banner-content h1 {
		font-size: 17px;
		line-height: 28px;
	}

	.inner-videos-banner-content h2 {
		font-size: 46px;
		line-height: 56px;
	}

	.portfolio-header {
		flex-wrap: wrap;
	}

	.ul-filter-btn {
		margin-bottom: 20px;
	}

	.ul-filter-btn li a:after {
		bottom: -5px;
	}

	.ul-filter-btn li a.active:after {
		width: 74px;
	}
}

@media(max-width: 767px){
	.videos-banner-sec {
		height: 350px;
	}

	.inner-videos-banner-content {
		max-width: 340px;
	}

	.inner-videos-banner-content h1 {
		font-size: 14px;
	}

	.inner-videos-banner-content h2 {
		font-size: 30px;
		line-height: 42px;
	}
}

@media (max-width: 575px){
	.videos-banner-sec {
		height: 250px;
	}

	.inner-videos-banner-content {
		max-width: 240px;
	}

	.inner-videos-banner-content h2 {
		font-size: 22px;
		line-height: 30px;
	}
}

/* video list page ended */


/* videos details started page */
.videos-display-sec {
	padding-top: 35px;
}

.videos-show-block {
	background: #fff;
	border-radius: 0 0 12px 12px;
	height: 100%;
    display: flex;
    flex-direction: column;
}

.videos-show {
    position: relative;
	background-color: #000;
	height: 100%;
	border-radius: 12px;
	overflow: hidden;
	flex-grow: 1;
}

.videos-show:before {
    content: "Loading...";
    position: absolute;
    z-index: 0;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
}

.videos-show iframe {
	width: 100%;
	height: 100%;
	position: relative;
}

.videos-cnts {
	flex-shrink: 0;
	padding: 24px 36px;
}

.videos-cnts .videos-catg-tag {
	margin-bottom: 5px;
}

.videos-cnts h2 {
	font-weight: 600;
	font-size: 24px;
	line-height: 36px;
	color: #A53939;
	margin-bottom: 3px;
}

.videos-cnts h3 {
	font-weight: 500;
	font-size: 18px;
	line-height: 27px;
	color: #222222;
	margin-bottom: 0;
}

.col-videos-show,
.col-playlist {
	height: 626px;
}

.videos-playlist-sec {
	box-shadow: 0px 3px 6px #a2c1ff29;
	background-color: #fff;
	border-radius: 9px;
}

.videos-playlist-sec {
	display: flex;
	flex-direction: column;
	height: 100%;
}

.videos-playlist-head {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 24px 24px 14px;
	flex-shrink: 0;
}

.videos-playlist-head h3 {
	font-weight: 500;
	font-size: 16px;
	line-height: 24px;
	color: #000000;
	margin-bottom: 0;
}

.videos-playlist-head p {
	font-weight: 500;
	font-size: 16px;
	line-height: 24px;
	color: #000000;
}

.videos-playlist-body {
	flex-grow: 1;
	overflow: auto;
}

.item-videos-playlist {
	display: flex;
    align-items: center;
    transition: 0.2s ease-in-out 0s;
    padding: 8px 36px;
    margin-bottom: 7px;
    position: relative;
}

.item-videos-playlist::after {
	content: "";
    position: absolute;
    left: 13px;
    top: 50%;
    transform: translateY(-50%);
    border-style: solid;
    border-width: 6px 11px;
    border-color: transparent transparent transparent #a53939;
	opacity: 0;
	transition: 0.2s ease-in-out 0s;
}

.item-videos-playlist:hover,
.item-videos-playlist.active {
	background: rgba(165, 57, 57, 0.05);
}

.item-videos-playlist.active::after {
	opacity: 1;
}

.videos-playlist-img {
	width: 147px;
	height: 89px;
	margin-right: 15px;
	border-radius: 7px;
	overflow: hidden;
	flex-shrink: 0;
}

.videos-playlist-img img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
}

.videos-playlist-txt h3 {
	font-weight: 600;
	font-size: 16px;
	line-height: 24px;
	margin-bottom: 8px;
	color: #A53939;
	display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
}

.videos-catg-tag {
	font-size: 10px;
}

.videos-catg-tag span {
	background: rgba(165, 57, 57, 0.10);
	line-height: 15px;
	color: #A53939;
	border-radius: 20px;
	display: inline-block;
	padding: 3px 12px;
}

.popular-videos-slider {
	position: relative;
}

.videos-slider-sec .catg-title {
	padding-right: 90px;
}

@media(min-width:992px){
	.col-playlist {
		max-width: 380px;
	}
}

@media(min-width:1200px){
	.col-playlist {
		max-width: 430px;
	}
}

@media(min-width:1400px){
	.col-playlist {
		max-width: 486px;
	}
}

@media (max-width:1399px){
	.col-videos-show, 
	.col-playlist {
		height: 590px;
	}

	.videos-playlist-head {
		padding: 20px 20px 12px;
	}

	.videos-playlist-head h3,
	.videos-playlist-head p {
		font-size: 15px;
	}

	.videos-playlist-img {
		width: 140px;
		height: 83px;
	}

	.videos-playlist-txt h3 {
		font-size: 15px;
		line-height: 23px;
	}

	.videos-cnts h2 {
		font-size: 22px;
		line-height: 30px;
	}

	.videos-cnts h3 {
		font-size: 17px;
		line-height: 24px;
	}

	.videos-cnts {
		padding: 22px 30px;
	}
}

@media(max-width: 1199px){
	.col-videos-show, 
	.col-playlist {
		height: 466px;
	}

	.videos-playlist-head h3, 
	.videos-playlist-head p {
		font-size: 14px;
	}
	
	.videos-playlist-img {
		width: 130px;
		height: 79px;
	}

	.videos-playlist-txt h3 {
		font-size: 13px;
		line-height: 20px;
	}

	.videos-catg-tag {
		font-size: 9px;
	}

	.videos-catg-tag span {
		padding: 2px 10px;
	}
}

@media(max-width: 991px){
	.videos-display-sec {
		padding-top: 25px;
	}
	
	.col-lg.col-videos-show {
		margin-bottom: 30px;
		height: 400px;
	}
} 

@media(max-width: 767px){
	.col-lg.col-videos-show {
		height: 350px;
	}
}
/* videos details ended page */


/* media and news page started */
.media-news-wrapper {
	padding-top: 65px;
}

.latest-news-banner {
	position: relative;
	height: 670px;
	border-radius: 5px;
	overflow: hidden;
	box-shadow: 0px 3px 6px #a2c1ff29;
}

.item-sidebar-latest-news-img {
	position: relative;
	overflow: hidden;
}

.latest-news-banner > img,
.item-sidebar-latest-news-img > img {
	transition: 0.3s ease-in-out 0s;
	width: 100%;
    height: 100%;
    object-fit: cover;
}

.latest-news-banner:hover > img,
.item-sidebar-latest-news:hover > .item-sidebar-latest-news-img > img {
	transform: scale(1.1);
}

.latest-news-cnt {
	position: absolute;
	right: 0;
	bottom: 0;
	background-color: #fff;
	border-radius: 7px 0 0 0;
	padding: 21px 32px 26px 21px;
	max-width: 545px;
	width: 100%;
}

.latest-news-cnt label {
	font-weight: 500;
	font-size: 16px;
	line-height: 24px;
	color: #444444;
	display: block;
	margin-bottom: 15px;
}

.latest-news-cnt h5 {
	font-weight: 600;
	font-size: 28px;
	line-height: 42px;
	color: #A53939;
	margin-bottom: 0;
}

.item-sidebar-latest-news {
	position: relative;
	border-radius: 5px;
	overflow: hidden;
	box-shadow: 0px 3px 6px #a2c1ff29;
	margin-bottom: 16px;
}

.item-sidebar-latest-news-img {
	height: 183px;
}

.news-intrv-content {
	padding: 18px 24px 30px;
	background-color: #fff;
}

.news-intrv-content label {
	font-weight: 500;
	font-size: 14px;
	line-height: 21px;
	color: #444444;
	margin-bottom: 10px;
	display: block;
	white-space: nowrap;
	text-overflow: ellipsis;
	overflow: hidden;
}

.news-intrv-content h4 {
	font-weight: 600;
	font-size: 22px;
	line-height: 27px;
	color: #A53939;
	margin-bottom: 7px;
	display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
	height: 54px;
}

.news-intrv-content p {
	font-weight: 500;
	font-size: 14px;
	line-height: 21px;
	color: #383838;
}

.item-sidebar-latest-news .news-intrv-content {
	padding: 13px 16px 22px !important;
}

.item-sidebar-latest-news .news-intrv-content label {
	margin-bottom: 6px !important;
}

.item-media-records-img {
	margin-bottom: 10px;
}

.item-media-records-img img {
	width: 100%;
}

.item-media-records-cnt h4 {
	font-weight: 700;
	font-size: 20px;
	line-height: 30px;
	margin-bottom: 0;
	color: #000000;
}

@media (min-width: 1200px) {
	.media-records-dtl > .row > [class^="col"]  {
		width: 20% !important;	
	}	
}

@media (max-width: 1399px){
	.media-news-wrapper {
		padding-top: 50px;
	}
	
	.latest-news-cnt {
		max-width: 500px;
	}

	.latest-news-cnt label {
		font-size: 15px;
		line-height: 22px;
		margin-bottom: 10px;
	}

	.latest-news-cnt h5 {
		font-size: 26px;
		line-height: 38px;
	}

	.item-media-records-img {
		margin-bottom: 8px;
	}

	.item-media-records-cnt h4 {
		font-size: 18px;
		line-height: 26px;
	}

	.news-intrv-content h4 {
		font-size: 20px;
		line-height: 25px;
		margin-bottom: 5px;
	}
}

@media(max-width:1199px){
	.media-news-wrapper {
		padding-top: 40px;
	}
	
	.latest-news-banner {
		height: 600px;
	}
}

@media(max-width:991px){
	.media-news-wrapper {
		padding-top: 30px;
	}
	
	.latest-news-banner {
		height: 500px;
	}

	.latest-news-cnt {
		max-width: 430px;
	}

	.latest-news-cnt label {
		font-size: 14px;
		line-height: 20px;
		margin-bottom: 7px;
	}

	.latest-news-cnt h5 {
		font-size: 23px;
		line-height: 34px;
	}

	.item-media-records-cnt h4 {
		font-size: 17px;
		line-height: 24px;
	}
}

@media(max-width:767px){
	.latest-news-banner {
		height: 400px;
	}
	
	.latest-news-cnt {
		max-width: 350px;
	}

	.latest-news-cnt h5 {
		font-size: 18px;
		line-height: 28px;
	}
}
/* media and news page ended */


/* media record page started */
.media-record-area {
	background-color: #fff;
	border-radius: 8px;
	box-shadow: 0px 3px 6px #a2c1ff29;
	padding: 48px 48px 0;
}

.media-record-header {
	margin-bottom: 40px;
}

.media-record-title {
	margin-bottom: 20px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	flex-wrap: wrap;
	gap: 15px;
}

.media-record-title h2 {
	font-weight: 700;
	font-size: 20px;
	line-height: 30px;
	margin-bottom: 0;
	color: #212428;
}

.ul-media-record {
	display: flex;
	gap: 20px;
}

.ul-media-record li a {
    width: 80px;
    height: 80px;
    border-radius: 100% !important;
    overflow: hidden;
    box-shadow: 0 0 4px 1px #a2c1ff29;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 6px;
    transition: 0.2s ease-in-out 0s;
    position: relative;
    background: #fff !important;
    overflow: hidden;
    border: solid 2px #fff !important;
}


.ul-media-record li a img {
	position: relative;
	z-index: 1;
	max-height: 100%;
}

.ul-media-record li a:after {
    content: "";
    position: absolute;
    left: 6px;
    right: 6px;
    top: 6px;
    bottom: 6px;
    background: #fff;
    z-index: 0;
    border-radius: 100%;
}

.ul-media-record li a:hover,
.ul-media-record li a.active {
	box-shadow: 0 0 4px 1px #a53939;
}

.media-records-block {
	padding-bottom: 45px;
}

.media-catg-title {
	margin-bottom: 36px;
}

.media-catg-title h4 {
	font-weight: 700;
	font-size: 24px;
	line-height: 36px;
	margin-bottom: 0;
	color: #A53939;
}

.year-select {
	height: 48px;
	border-color: #A53939 !important;
	font-size: 16px;
	font-weight: 500;
	color: #A53939;
	padding: 10px 40px 10px 16px !important;
	box-shadow: none !important;
	min-width: 120px;
}

@media(max-width:1399px){
	.media-record-area {
		padding: 40px 40px 0;
	}

	.media-record-title h2 {
		font-size: 18px;
		line-height: 28px;
	}

	.media-record-header {
		margin-bottom: 34px;
	}

	.ul-media-record {
		gap: 18px;
	}

	.ul-media-record li a {
		width: 76px;
		height: 76px;
	}

	.media-records-block {
		padding-bottom: 35px;
	}

	.media-catg-title {
		margin-bottom: 30px;
	}

	.media-catg-title h4 {
		font-size: 22px;
		line-height: 33px;
	}

	.year-select {
		height: 44px;
		min-width: 110px;
	}
}
/* media record page ended */


/* music page started */
.music-wrapper {
	font-family: 'Palatino Linotype';
	font-weight: 400;
}

.album-slider-sec {
	padding-top: 20px;
}

.album-slider-sec .catg-title h4 {
	font-weight: 700;
	font-size: 68px;
	line-height: 89px;
	color: #383838;
}

.album-slider-sec .owl-arrow .owl-nav {
    bottom: calc(100% + 46px);
}

.slider-album-title a {
	font-weight: 700;
	font-size: 20px;
	line-height: 27px;
	color: #000000;
	transition: 0.2s ease-in-out 0s;
}

.slider-album-title a:hover {
	color: #A53939;
}

.outer-item-album .item-inner-album {
	margin-bottom: 20px !important;
	height: 330px;
}

.outer-item-album .item-inner-album img {
    height: 100%;
    object-fit: cover;
}

.music-main-sec {
	background-color: #e3e3e3;
	overflow: hidden;
}

.music-main-content {
	padding-bottom: 20px;
	display: flex;
    flex-direction: column;
    width: 100%;
	padding-top: 64px;
}

.main-music-block {
    overflow: auto;
}

.popular-songs-sec {
	padding-top: 50px;
	padding-bottom: 50px;
}

.music-main-head {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-bottom: 33px;
	gap: 20px;
	flex-wrap: wrap;
	flex-shrink: 0;
}

.album-playing {
	display: flex;
}

.album-playing-img {
	width: 174px;
	height: 150px;
	margin-right: 30px;
	border-radius: 10px;
	overflow: hidden;
}

.album-playing-img img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.album-name-dtl h3 {
	font-weight: 700;
	font-size: 36px;
	color: #000000;
	margin-bottom: 10px;
}

.album-name-dtl h4 {
	font-weight: 700;
	font-size: 18px;
	color: #000000;
	margin-bottom: 7px;
}

.album-name-dtl p {
	font-weight: 500;
	font-size: 20px;
	color: #444444;
	line-height: 26px;
}

.share-social p {
	font-weight: 500;
	font-size: 20px;
	color: #444444;
	margin-bottom: 5px;
	text-align: right;
	padding-right: 5px;
}

.table-songs tr th,
.table-songs tr td {
	font-size: 18px;
	color: #000;
	padding-top: 20px;
	padding-bottom: 20px;
}

.table-songs thead th {
	background: rgba(0,0,0,0.05);
	font-weight: 700;
	padding-top: 14px;
	padding-bottom: 14px;
	white-space: nowrap;
}

.table-songs tbody td {
	border: none;
}

.table-songs tbody tr {
	cursor: pointer;
	transition: 0.2s ease-in-out 0s;
}

.td-play-pause i {
	font-size: 20px;
}

.td-play-pause .fa-circle-pause {
	display: none;
}

.td-play-pause .fa-circle-stop {
    display: none;
}

.table-songs tbody tr.active,
.table-songs tbody tr:hover {
	background: rgba(165, 57, 57, 0.05);
}

.table-songs tbody tr.active .td-play-pause .fa-circle-pause {
	display: inline-block;
}

.table-songs tbody tr.active td {
	color: #A53939;
}

.table-songs tbody tr.active .td-play-pause .fa-circle-pause {
	display: inline-block;
}

.table-songs tbody tr.active .td-play-pause .fa-circle-stop {
    display: inline-block;
}

.table-songs tbody tr.active .td-play-pause .fa-circle-play {
	display: none;
}

.popular-songs-block {
	background-color: #fff;
	border-radius: 7px;
	box-shadow: 1px 1px 12px rgba(175, 189, 224, 0.1);
	padding: 32px;
}

.popular-filter {
	margin-bottom: 24px;
}

.popular-filter h4 {
	font-weight: 700;
	font-size: 24px;
	line-height: 31px;
	color: #A53939;
	margin-bottom: 0;
}

.popular-filter {
	display: flex;
	align-items: center;
	justify-content: space-between;
	flex-wrap: wrap;
	gap: 20px;
}

.custom-nav .page-link {
	border: none !important;
	background: #eeebeb;
    border-radius: 5px;
    margin: 4px 10px;
    padding: 3px 11px;
    height: 30px;
    line-height: 30px;
    font-size: 15px;
	transition: 0.2s ease-in-out 0s;
	box-shadow: none !important;
	outline: none !important;
}

.custom-nav .page-item:not(.disabled) .page-link {
	color: #a53939 !important;
}

.custom-nav .page-link:hover {
	background: #e4d7d7;
}

.custom-nav .page-item:not(.disabled) .page-link.active {
	background: #A53939;
	color: #fff !important;
}

.music-player-sec {
	position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 99999;
    background: #fff;
    display: flex;
    align-items: center;
    box-shadow: 2px 2px 12px rgb(175 189 224 / 50%);
    transition: 0.5s ease-in-out 0s;
    transform: translateY(100%);
}

.music-player-sec.show {
    transform: translateX(0);
}

body.player-show {
	padding-bottom: 120px;
}

.btn-player-close {
    position: absolute;
    top: -1px;
    right: 32px;
    color: #000 !important;
    font-size: 17px;
    z-index: 99;
    transition: 0.2s ease-in-out 0s;
}

.btn-player-close:hover {
	transform: scale(1.1);
}

/* .music-player-sec:not(.show) .btn-player-close {
	top: -30px;
    transform: rotate(180deg);
    font-size: 20px;
	color: #000 !important;
} */

.btn-circle-up {
    top: -30px;
    transform: rotate(180deg);
    font-size: 20px;
    color: #000 !important;
}

.music-player-sec:not(.show) .btn-circle-up {
    transform: rotate(180deg);
}

.music-player-block {
	position: relative;
	height: 120px;
	padding: 20px 0;
}

.music-player-sec iframe {
	width: 100%;
	border-radius: 0 !important;
	overflow: hidden;
}

.row-music-main {
	height: 800px;
}

.col-music-left,
.col-music-right {
	height: 100%;
	display: flex;
}

.music-main-img {
	width: 753px;
	margin-right: -284px;
}

.music-main-img img {
	width: 100%;
    height: 100%;
    object-fit: cover;
}

@media (max-width: 1399px){
	.album-slider-sec {
		padding-top: 10px;
	}
	
	.album-slider-sec .catg-title h4 {
		font-size: 55px;
		line-height: 80px;
	}

	.outer-item-album .item-inner-album {
		margin-bottom: 20px !important;
		height: 270px;
	}
	
	.slider-album-title a {
		font-size: 18px;
	}

	.album-slider-sec .owl-arrow .owl-nav {
		bottom: calc(100% + 30px);
	}

	.popular-songs-sec {
		padding-top: 40px;
		padding-bottom: 40px;
	}

	.popular-filter h4 {
		font-size: 22px;
	}

	.table-songs tr th, 
	.table-songs tr td {
		font-size: 16px;
		padding-top: 18px;
    	padding-bottom: 18px;
	}

	.table-songs thead th {
		padding-top: 12px;
		padding-bottom: 12px;
	}

	.td-play-pause i {
		font-size: 18px;
	}

	.album-playing-img {
		width: 164px;
		height: 140px;
		margin-right: 20px;
	}

	.album-name-dtl h3 {
		font-size: 33px;
		margin-bottom: 8px;
	}

	.album-name-dtl h4 {
		font-size: 17px;
		margin-bottom: 4px;
	}

	.album-name-dtl p {
		font-size: 18px;
	}

	.share-social p {
		font-size: 18px;
		margin-bottom: 3px;
	}

	.row-music-main {
		height: 720px;
	}
}

@media (max-width: 991px){
	.album-slider-sec .catg-title h4 {
		font-size: 45px;
		line-height: 70px;
	}

	.outer-item-album .item-inner-album {
		height: 200px;
	}

	.slider-album-title a {
		font-size: 16px;
		line-height: 20px;
	}

	.col-music-right {
		display: none;
	}

	.row-music-main {
		height: auto;
	}

	.main-music-block {
		height: 420px;
	}
}

@media (max-width: 767px){
	.album-slider-sec {
		padding-top: 0;
	}

	.album-slider-sec .catg-title h4 {
		font-size: 40px;
		line-height: 50px;
	}

	.album-slider-sec .owl-arrow .owl-nav {
		bottom: calc(100% + 20px);
	}

	.popular-songs-block {
		padding: 20px;
	}

	.album-playing-img {
		width: 140px;
		height: 125px;
	}

	.album-name-dtl h3 {
		font-size: 28px;
	}

	.album-name-dtl h4 {
		font-size: 15px;
	}

	.album-name-dtl p {
		font-size: 17px;
	}
	
	
}
/* music page ended */


/* 404 page started */
.error-wrapper {
	height: 100vh;
	display: flex;
	flex-direction: column;
}

.error-wrapper .header {
	flex-shrink: 0;
}

.error-page-sec {
	flex-grow: 1;
	overflow: auto;
	display: flex;
	align-items: center;
	justify-content: center;
	text-align: center;
}

.error-page-block {
	max-width: 753px;
	padding: 30px;
}

.error-page-block h1 {
	font-weight: 600;
	font-size: 345px;
	line-height: 55.5%;
	color: #000000;
	margin-bottom: 100px;
}

.error-page-block h2 {
	font-size: 26px;
	line-height: 40px;
	text-align: center;
	color: #000000;
	font-weight: 400;
	margin-bottom: 30px;
}

@media (max-width: 1399px) {
	.error-page-block h1 {
		font-size: 300px;
		margin-bottom: 90px;
	}

	.error-page-block h2 {
		font-size: 24px;
		line-height: 38px;
		margin-bottom: 25px;
	}
}

@media (max-width: 991px){
	.error-page-block h1 {
		font-size: 250px;
		margin-bottom: 70px;
	}
}

@media (max-width: 575px) {
	.error-page-block h1 {
		font-size: 150px;
		margin-bottom: 50px;
	}

	.error-page-block h2 {
		font-size: 22px;
		line-height: 30px;
	}
}
/* 404 page ended */


.point-listing {
	margin-bottom: 40px;
}


.ul-point li {
	background: none !important;
    font-weight: 500 !important;
    font-size: 18px !important;
    line-height: 32px !important;
	position: relative;
	padding-left: 48px !important;
}

.ul-point li:before {
	position: absolute;
    content: "";
    width: 7px;
    height: 7px;
    border-radius: 100%;
    background-color: #444444;
    left: 26px;
    top: 50%;
    margin-top: -4px;
}

.art-books-sec,
.art-albums-sec,
.art-video-sec,
.art-award-sec {
	padding-top: 80px;
}

.art-title {
	margin-bottom: 50px;
}

.art-title h4 {
	font-weight: 500;
	font-size: 50px;
	line-height: 44px;
}

.art-books-sec .books-hover h5 {
    font-size: 14px !important;
}

.art-books-sec .btn-books-dtl {
    width: 140px !important;
    height: 40px !important;
    border-radius: 6px !important;
    font-size: 14px !important;
}

.art-books-sec .inner-books-dtl .DDDbook-spine span {
    font-size: 14px !important;
}

.art-albums-sec .item-inner-album {
    height: 170px !important;
}

.art-video-sec .item-inner-videos-img {
    height: 184px !important;
}

.art-video-sec .item-inner-videos-cnt {
    padding: 15px !important;
}

.art-video-sec .item-inner-videos-cnt h4 {
    font-size: 18px !important;
    line-height: 26px !important;
    margin-bottom: 5px !important;
}

.art-video-sec .item-inner-videos-cnt p {
    font-size: 16px !important;
    line-height: 30px !important;
    margin-bottom: 15px !important;
    height: 60px !important;
}

.award-listing-block ul li {
	align-items: flex-start !important;
	justify-content: space-between;
	font-size: 20px !important;
	margin-bottom: 15px !important;
	padding-left: 40px !important;
    background-size: 16px !important;
	line-height: 40px !important;
	background-position: left top 6px !important;
}

.spn-award-date {
	flex-shrink: 0;
	padding-left: 30px;
}

.btn-view-resume {
	text-transform: capitalize;
	font-weight: 700;
	font-size: 16px;
	color: #FFFFFF !important;
	height: 40px;
	background: rgba(255, 255, 255, 0.1);
	border: 1px solid rgba(255, 255, 255, 0.3);
	border-radius: 10px;
	padding: 8px 20px;
	transition: 0.2s ease-in-out 0s;
	position: relative;
	margin-bottom: 16px;
	display: inline-block;
}

.btn-view-resume:hover {
	border-color: rgba(255, 255, 255, 0.8);
}

.other-sec {
    padding-top: 40px;
}

.other-sec-list .accordion-button::after {
	width: auto !important;
	height: auto !important;
    content: "\f078" !important;
    background: none !important;
    font-weight: 900 !important;
    font-family: "Font Awesome 6 Free" !important;
	color: #777777 !important;
	font-size: 20px;
}

.other-sec-list .accordion-item {
	background: none !important;
}

.other-sec-list .accordion-button {
    font-weight: 500;
    font-size: 23px;
    color: #444444;
    text-transform: uppercase;
    padding: 18px 0;
	background: none !important;
	box-shadow: none !important;
	outline: none !important;
}

.sector-body {
	padding-left: 0 !important;
	padding-right: 0 !important;
	padding-top: 0 !important;
}

.sector-logo-list {
	display: flex;
	flex-wrap: wrap;
	gap: 25px 48px;
}

.item-sector-logo {
    height: 133px;
    display: flex;
    align-items: center;
}

.item-sector-logo img {
	max-height: 100%;
}

.visited-sec {
    padding: 55px 15px;
}

.visited-block {
	text-align: center;
}

.visited-inner-block {
	position: relative;
	display: inline-block;
}

.point {
    cursor: pointer;
    position: absolute;
    width: 1px;
    height: 1px;
    background: rgba(165, 57, 57, 1);
    border-radius: 50px;
    box-shadow: 0 0 0 rgba(165, 57, 57, 0.4);
}

.point-mark {
	transition: all .3s ease;
    will-change: transform, box-shadow;
    transform: translate(-50%, -50%);
    animation: pulse 3s infinite;
}

.point:hover .point-mark {
	animation: none;
	transform:  translate(-50%, -50%) scale3D(1.2, 1.2 ,1);
	box-shadow: 0 3px 6px rgba(0,0,0,0.16), 0 3px 6px rgba(0,0,0,0.23);
}

.point:hover .point-dtl {
	opacity: 1;
	visibility: visible;
	transform: translate(-50%, -12px);
}

.sikkim-india { 
	top: 49.5%;
    left: 72.8%;
}

 .baltimore-usa {
    top: 41.5%;
    left: 24.2%;
	z-index: 1;
}

.dallas-usa {
	top: 46%;
    left: 18%;
}

.atlanta-usa {
    top: 45.3%;
    left: 21.9%;
}

.pokhara-nepal {
	top: 48.4%;
    left: 71.5%;
    z-index: 1;
}

.canada {
    top: 33%;
    left: 12%;
}

.newyork-usa {
	top: 41%;
    left: 24.8%;
}

.dc-usa {
	top: 42.7%;
    left: 23.8%;
}

.london-uk {
	top: 29%;
    left: 45.5%;
}

.dubai-uae {
	top: 50%;
    left: 62.5%;
}

.tokyo-japan {
	top: 47.4%;
    left: 87.2%;
}

.hongkong {
	top: 53.6%;
    left: 80.7%;
}

.singapore {
    top: 65.4%;
    left: 77.1%;
}

.melbourne-australia {
    top: 91.3%;
    left: 88%;
}

.sydney-australia {
    top: 89.3%;
    left: 90.3%;
}

.kathmandu-nepal {
    top: 49%;
    left: 72%;
}

.colorado-usa {
	top: 44%;
    left: 14%;
}

.devdaha-nepal {
	top: 48.3%;
    left: 71%;
}

@keyframes pulse {
	0% { box-shadow: 0 0 0 0 rgba(165, 57, 57, 0.5); }
	70% { box-shadow: 0 0 5px 10px rgba(165, 57, 57, 0); }
	100% { box-shadow: 0 0 0 0 rgba(165, 57, 57, 0); }
  }

@media(max-width: 1399px){
	.art-books-sec,
	.art-albums-sec,
	.art-video-sec,
	.art-award-sec {
		padding-top: 50px;
	}

	.art-title {
		margin-bottom: 40px;
	}

	.art-title h4 {
		font-size: 40px;
		line-height: 40px;
	}

	.award-listing-block ul li {
		font-size: 18px !important;
		line-height: 34px !important;
	}

	.btn-view-resume {
		font-size: 15px;
		color: #FFFFFF !important;
		height: 36px;
		padding: 6px 16px;
		margin-bottom: 14px;
	}

	.other-sec {
		padding-top: 30px;
	}

	.other-sec-list .accordion-button {
		font-size: 21px;
		padding: 16px 0;
	}

	.other-sec-list .accordion-button::after {
		font-size: 18px;
	}

	.sector-logo-list {
		gap: 20px 35px;
	}

	.visited-sec {
		padding-top: 40px;
		padding-bottom: 40px;
	}
}

@media (max-width: 1199px) {
	.visited-sec {
		padding-top: 30px;
		padding-bottom: 30px;
	}
}

@media (max-width: 991px) {
	.item-sector-logo {
		height: 120px;
	}

}

@media (max-width:480px){
	.award-listing-block ul li {
		flex-direction: column;
	}

	.spn-award-date {
		padding-left: 0;
	}
}


/* under taking slider started  */
.undertakings-slider {
	position: relative;
}

.undertakings-slider .owl-nav {
	display: none !important;
}

.undertakings-slider .owl-dots {
	position: absolute;
	left: 50%;
	top: calc(100% + 10px);
	transform: translateX(-50%);
	display: flex;
	align-items: center;
}

.undertakings-slider .owl-theme .owl-dots .owl-dot span {
    width: 8px;
    height: 8px;
    margin: 0 3px;
    background: rgba(68, 68, 68, 0.5);
}

.undertakings-slider .owl-theme .owl-dots .owl-dot.active span, 
.undertakings-slider .owl-theme .owl-dots .owl-dot:hover span {
	width: 12px;
    height: 12px;
    background: rgba(68, 68, 68, 1);
}

/* under taking slider ended */

/* read more toggle started */
.show-description .show-more-height { 
    max-height: 315px; 
    overflow:hidden; 
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 5;
    overflow: hidden;
  }

  .show-description .show-more-height { 
	max-height: 315px; 
	overflow:hidden; 
  }

  .show-more-outer {
    /* box-shadow: 0 -15px 20px 10px rgb(245 245 245); */
    position: relative;
    z-index: 5;
    margin: 30px 0 20px;
  }

  .spn-rd-txt {
    width: px;
    display: inline-block;
	position: relative;
}

.show-more-outer i {
	transform: rotate(90deg) !important;
}

.spn-rd-txt:after {
	content: "Read More";
}

:not(.show-more-height) + .show-more-outer .spn-rd-txt:after {
	content: "Read Less";
}

:not(.show-more-height) + .show-more-outer i {
	transform: rotate(270deg) !important;
}
/* read more toggle ended */

/* more from started */
.more-from-sec {
	padding-top: 130px;
}

.more-from-head {
	text-align: center;
	margin-bottom: 32px;
}

.more-from-head h5 {
	position: relative;
	margin-bottom: 0;
}

.more-from-head h5 label {
	font-size: 128px;
	line-height: 167px;
	color: rgba(0,0,0,0.10);
	text-transform: uppercase;
}

.more-from-head h5 span {
	position: absolute;
    font-family: arial;
    font-size: 18px;
    line-height: 36px;
    color: rgba(68, 68, 68, 1);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-transform: uppercase;
    padding: 10px 0 0 9px;
	white-space: nowrap;
}

.more-from-content {
	display: flex;
	justify-content: center;
	gap: 45px;
}

.item-more-from {
	width: 544px;
	height: 300px;
	overflow: hidden;
	position: relative;
}

.item-more-from img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.item-more-txt {
	position: absolute;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    z-index: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-end;
    background: rgba(25, 38, 68, 0.5);
    transition: 0.2s ease-in-out 0s;
    padding: 0 15% 7%;
    text-align: center;
}

.item-more-txt h6 {
	font-size: 29px;
    line-height: 38px;
    font-weight: 500;
    color: #fff;
    text-transform: uppercase;
	position: relative;
	top: 0;
	transition: 0.5s ease-in-out 0s;
}

.item-more-txt p {
	font-size: 18px;
    line-height: 23px;
    color: #fff;
    margin-bottom: 34px;
    padding: 0 10%;
	position: relative;
	top: 30px;
	transition: 0.5s ease-in-out 0s;
	opacity: 0;
	display: none !important;
}

.spn-more-icon {
    width: 33px;
    height: 33px;
    border-radius: 100%;
    border: solid 2px #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff;
    font-size: 16px;
}

.item-more-from:hover .item-more-txt {
	background: rgba(25, 38, 68, 0.7);
}

.item-more-from:hover .item-more-txt h6 {
	top: -20px;
}

.item-more-from:hover .item-more-txt p {
	top: 0;
	opacity: 1;
}


@media (max-width: 1399px) {
	.more-from-sec {
		padding-top: 110px;
	}

	.more-from-head h5 label {
		font-size: 120px;
		line-height: 150px;
	}

	.more-from-head h5 span {
		font-size: 17px;
		line-height: 32px;
	}

	.more-from-head {
		margin-bottom: 28px;
	}

	.more-from-content {
		gap: 40px;
	}

	.item-more-from {
		width: 530px;
		height: 290px;
	}

	.item-more-txt h6 {
		font-size: 27px;
		line-height: 37px;
	}

	.item-more-txt p {
		font-size: 17px;
		line-height: 22px;
		margin-bottom: 28px;
	}
}

@media (max-width:1199px) {
	.more-from-sec {
		padding-top: 100px;
	}

	.more-from-head {
		margin-bottom: 25px;
	}

	.more-from-head h5 label {
		font-size: 100px;
		line-height: 130px;
	}

	.more-from-head h5 span {
		font-size: 14px;
		line-height: 30px;
		padding-left: 23px;
	}

	.more-from-content {
		gap: 30px;
	}

	.item-more-from {
		width: 400px;
		height: 230px;
	}

	.item-more-txt h6 {
		font-size: 19px;
		line-height: 28px;
	}

	.item-more-txt p {
		font-size: 15px;
		line-height: 20px;
		margin-bottom: 15px;
		padding: 0;
	}
}

@media (max-width: 991px) {
	.more-from-head h5 label {
		font-size: 80px;
		line-height: 100px;
	}

	.more-from-head h5 span {
		font-size: 12px;
	}

	.more-from-content {
		gap: 20px;
	}

	.item-more-from {
		width: 300px;
		height: 200px;
	}

	.item-more-txt {
		padding: 0 10% 6%;
	}

	.item-more-txt h6 {
		font-size: 17px;
    	line-height: 24px;
	}

	.item-more-txt p {
		font-size: 14px;
	}

	.spn-more-icon {
		width: 30px;
		height: 30px;
		font-size: 14px;
	}
}

@media (max-width: 767px) {
	.more-from-content {
		flex-direction: column;
	}

	.item-more-from {
		margin: auto;
	}
}

@media (max-width: 575px) {
	.item-more-from {
		width: 250px;
		height: 150px;
	}

	.item-more-txt h6 {
		font-size: 12px;
		line-height: 18px;
	}

	.item-more-txt p {
		font-size: 13px;
		line-height: 16px;
		margin-bottom: 10px;
	}

	.item-more-from:hover .item-more-txt h6 {
		top:-5px;
	}
}

/* more from ended */

/* new home page started ########################################################################## */
.no-bg:after {
	display: none;
}

.wrapper {
	position: relative;
}

.wrapper.overlay-inner:before {
	content: "";
	position: absolute;
	left: 0;
	right: 0;
	top: 0;
	bottom: 0;
	z-index: 9999;
	background: url(../images/noise.png) repeat;
	opacity: 0.1;
	pointer-events: none;
}

.wrapper.overlay-outer:after {
	content: "";
	position: absolute;
	left: 0;
	right: 0;
	top: 0;
	bottom: 0;
	z-index: 10500;
	background: url(../images/gradiant.png) repeat;
	background-size: 100%;
	pointer-events: none;
	display: none;
}

.wave-down:after {
	position: absolute;
	content: "";
	left: 0;
	bottom: 0;
	width: 100%;
	height: 100%;
	background: url(../images/wave-down.png) repeat-x center bottom;
    pointer-events: none;
    z-index: 9;
 }

 .wave-top:before {
	position: absolute;
	content: "";
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	background: url(../images/wave-top.png) repeat-x center top;
    pointer-events: none;
    z-index: 9;
 }

 .home-feature-sec {
	position: relative;
}

.home-feature-sec .header {
	background: none;
}

.scroll-up .home-feature-sec .header,
.scroll-down .home-feature-sec .header {
	background: #A53939;
}

.home-feature-sec .header-social a {
	color: #424242 !important;
}

.home-feature-sec .header .logo-default,
.home-feature-sec .header .menu-default {
	display: none;
}

.home-feature-sec .header .logo-black,
.home-feature-sec .header .menu-black {
	display: inline-block;
}

.scroll-up .home-feature-sec .header .logo-default,
.scroll-up .home-feature-sec .header .menu-default,
.scroll-down .home-feature-sec .header .logo-default,
.scroll-down .home-feature-sec .header .menu-default {
	display: inline-block;
}

.scroll-up .home-feature-sec .header .logo-black,
.scroll-up .home-feature-sec .header .menu-black,
.scroll-down .home-feature-sec .header .logo-black,
.scroll-down .home-feature-sec .header .menu-black {
	display: none;
}

.scroll-up .home-feature-sec .header-social a,
.scroll-down .home-feature-sec .header-social a {
	color: #fff !important;
}

 @media (max-width: 1399px) {
	.wave-down:after,
	.wave-top:after {
		background-size: 100% 80px;
	}
 }
 
 @media (max-width: 991px) {
	.wave-down:after,
	.wave-top:after {
		background-size: 150% 50px;
	}
 }

.bg-image {
	background: url(../images/bg.jpg) repeat;
}

.feature-sec-content {
	padding: 75px 0 10px;
	position: relative;
	overflow: hidden;
}

.feature-img-outer {
	height: 100%;
	display: flex;
	align-items: flex-end;
	margin-left: -20px;
}

.feature-img {
	position: relative;
}

.feature-bg {
    position: absolute;
    left: 0;
    right: 0;
    top: -130px;
    bottom: 0;
}

.feature-img > img {
	position: relative;
	z-index: 5;
}

.feature-bg img {
	max-height: 100%;
}

.feature-content {
	display: flex;
	align-items: center;
	height: 100%;
	padding-left: 30px;
}

.feature-dtl {
	margin-bottom: 40px;
}

.feature-dtl h1 {
	font-size: 43px;
    line-height: 54px;
    color: #A53939;
    margin-bottom: 24px;
}

.feature-dtl h1 .spn-quote-left {
	font-size: 92%;
}

.feature-item a {
	display: block;
}

.feature-item img {
	border-radius: 5px;
}

@media (max-width: 1399px) {
	.feature-sec-content {
		padding-top: 45px;
	}

	.feature-dtl h1 {
		font-size: 37px;
		line-height: 45px;
		margin-bottom: 20px;
	}

	.feature-bg {
		top: -90px;
	}

	.feature-content {
		padding-left: 20px;
	}
}

@media (max-width: 1199px) {
	.feature-sec-content {
		padding-top: 30px;
	}

	.feature-dtl h1 {
		font-size: 28px;
		line-height: 35px;
		margin-bottom: 15px;
	}

	.feature-bg {
		top: -70px;
	}
}

@media (max-width: 991px) {
	.feature-sec-content {
		padding-left: 15px;
		padding-right: 15px;
	}

	.feature-img-outer {
		margin: 0 auto 15px;
		justify-content: center;
		max-width: 430px;
	}

	.feature-dtl {
		max-width: 100%;
		text-align: center;
		padding: 34px 0;
	}

	.feature-dtl h1 {
		font-size: 26px;
    	line-height: 36px;
	}
}

@media (max-width: 575px) {
	.feature-dtl h1 {
		font-size: 23px;
		line-height: 32px;
	}

	.basanta-logo {
		display: inline-block;
	}

	.basanta-logo img {
		max-width: 80%;
	}
}

@media (max-width: 420px) {
	.feature-dtl {
		padding: 25px 0;
	}
	
	.feature-dtl h1 {
		font-size: 20px;
		line-height: 28px;
	}
}

.block-title {
	display: flex;
	justify-content: center;
	margin-bottom: 70px;
}

.block-title h3 {
	font-family: 'Dancing Script', cursive !important;
	font-size: 56px;
	font-weight: 700;
	color: #383838;
	margin: 0;
	padding: 0 50px;
	position: relative;
	text-align: center;
}

.block-title h3:before {
	content: "";
	position: absolute;
	left: 0;
	right: 0;
	top: 0;
	bottom: 0;
	z-index: -1;
	background: url(../images/title-bg.png) no-repeat center bottom 6px;
	background-size: 100% 28px;
    max-width: 402px;
    margin: auto;
}

.block-title h3 span {
	color: #A53939;
	display: inline-block;
}

.block-title h3 strong {
	display: inline-block;
}

@media (min-width: 992px) {
	.item-home-about:nth-child(2n) :first-child {
		order: 2;
	}
	
	.item-home-about:nth-child(2n) :last-child {
		order: 1;
	}
}

.feature-tab-sec .nav.nav-pills {
    display: flex;
    justify-content: center;
	gap: 16px;
}

.feature-tab-sec .nav.nav-pills .nav-link {
	min-height: 56px;
    background: rgba(0, 0, 0, 0.05);
    padding: 10px 55px;
    border-radius: 18px 0;
    font-size: 18px;
    color: #454545;
    border: solid 1px rgba(0, 0, 0, 0.14);
	transition: 0.2s ease-in-out 0s;
}

.feature-tab-sec .nav.nav-pills .nav-link:hover,
.feature-tab-sec .nav.nav-pills .nav-link.active {
	color: #fff;
	background: #A53939 !important;
	border-color: #A53939 !important;;
}

.home-about-sec {
	padding: 70px 0 20px;
}

.home-about-img {
	border-radius: 6px;
    display: flex;
    align-items: center;
    height: 100%;
}

.home-about-img img {
	max-height: 368px;
	border-radius: 8px;
}

.col-home-img,
.col-home-about-dtl {
	margin-bottom: 50px;
}

.col-home-about-dtl {
	display: flex;
	align-items: center;
}

.home-about-dtl h4 {
	font-size: 32px;
    color: #A53939;
    font-weight: 700;
    margin-bottom: 24px;
    text-transform: capitalize;
}

.home-about-dtl p {
	margin-bottom: 24px;
    line-height: 36px;
    font-size: 20px;
    color: #444444;
	text-align: justify;
}
.readmore {
	border: solid 1px #777777;
    border-radius: 8px;
    display: inline-block;
    min-width: 174px;
    transition: 0.2s ease-in-out 0s;
    font-weight: 500;
    padding: 13px 18px;
    text-align: center;
}

.readmore:focus,
.readmore:hover {
	background-color: #A53939;
	color: #fff !important;
}

.readmore-sm {
    min-width: 120px !important;
    font-size: 15px !important;
    padding: 6px 8px !important;
}

.readmore-md {
    min-width: 150px !important;
    padding: 12px 13px !important;
}

.home-about-sec-2 {
	padding: 200px 0 140px;
}

@media (max-width: 1399px) {
	.feature-tab-sec .nav.nav-pills .nav-link {
		min-height: 54px;
		padding-left: 48px;
		padding-right: 48px;
	}
	
	.viewTime {
		height: 50px;
		padding-left: 20px;
		padding-right: 20px;
	}

	.viewTime:before {
		width: 50px;
	}

	.viewTime:hover::before,
	.viewTime:focus::before {
		border-radius: 25px;
	}

	.viewTime-sm {
		height: 44px;
		font-size: 13px;
		padding-left: 17px;
		padding-right: 17px;
	}

	.viewTime-sm:before {
		width: 44px;
	}
	
	.home-about-sec {
		padding: 45px 0 15px;
	}

	.block-title {
		margin-bottom: 45px;
	}

	.block-title h3 {
		font-size: 46px;
		padding: 0 45px;
	}

	.block-title h3:before {
		background-size: 100% 22px;
		max-width: 335px;
	}

	.col-home-img,
	.col-home-about-dtl {
		margin-bottom: 30px;
	}

	.home-about-dtl h4 {
		font-size: 30px;
		margin-bottom: 15px;
	}

	.home-about-dtl p {
		margin-bottom: 20px;
		line-height: 30px;
	}

	.readmore {
		min-width: 160px;
		padding: 10px 14px;
	}

	.readmore-sm {
		min-width: 110px !important;
		font-size: 12px !important;
		padding: 6px 6px !important;
	}

	.readmore-md {
		min-width: 130px !important;
		padding: 9px 11px !important;
		font-size: 14px;
	}

	.home-about-img img {
		max-height: 300px;
	}

	.home-about-sec-2 {
		padding: 180px 0 130px;
	}
}

@media (max-width: 1199px) {
	.home-about-dtl h4 {
		font-size: 25px;
		margin-bottom: 10px;
	}

	.home-about-dtl p {
		margin-bottom: 15px;
		line-height: 28px;
		font-size: 19px;
	}

	.home-about-sec-2 {
		padding: 170px 0 110px;
	}
}

@media (max-width: 991px) {
	.feature-tab-sec .nav.nav-pills {
		gap: 12px;
	}
	
	.feature-tab-sec .nav.nav-pills .nav-link {
		min-height: 46px;
		padding-left: 30px;
		padding-right: 30px;
		font-size: 16px;
	}
	
	.block-title {
		margin-bottom: 35px;
	}
	
	.viewTime {
		height: 44px;
		padding-left: 17px;
		padding-right: 17px;
		font-size: 14px;
	}

	.viewTime:before {
		width: 44px;
	}

	.home-about-img {
		justify-content: center;
	}
	.home-about-dtl {
		text-align: center;
	}

	.home-about-sec {
		padding-top: 20px;
	}

	.col-home-img {
		margin-bottom: 20px;
	}

	.home-about-sec-2 {
		padding: 150px 0 100px !important;
	}
}

@media (max-width: 767px) {
	.block-title h3 {
		font-size: 40px;
		padding: 0 25px;
	}

	.block-title h3:before {
		background-size: 100% 12px;
		max-width: 230px;
	}

	.home-about-dtl h4 {
		font-size: 23px;
		margin-bottom: 10px;
	}
}

@media (max-width: 575px) {
	.block-title {
		margin-bottom: 30px;
	}
	
	.block-title h3 {
		font-size: 34px;
		padding: 0 15px;
	}
}

@media (max-width: 420px) {
	.block-title {
		margin-bottom: 25px;
	}
	
	.block-title h3 {
		font-size: 28px;
		padding: 0 5px;
	}
}

.home-songs-books-sec {
    position: relative;
    padding: 80px 0 30px;
}

.home-songs-sec {
	margin-bottom: 100px;
}

@media (max-width: 1399px) {
	.home-songs-books-sec {
		padding-top: 60px;
	}
	
	.home-songs-sec {
		margin-bottom: 60px;
	}
}

@media (max-width: 991px) {
	.home-songs-sec {
		margin-bottom: 50px;
	}
}

.songs-by-block {
	background-position: center;
	background-size: cover;
	height: 100%;
	position: relative;
	border-right: solid 1px #392d36;
	display: flex;
    align-items: center;
	justify-content: center;
	height: 540px;
}

.songs-by-block img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.songs-by-block::after {
	content: "";
	position: absolute;
	left: 0;
	right: 0;
	top: 0;
	bottom: 0;
	/* background: rgba(236, 24, 45, 0.51);
	mix-blend-mode: color-burn; */
	z-index: 0;
}

.songs-by-head {
	position: absolute;
	z-index: 5;
	left: 0;
	bottom: 0;
	padding: 35px;
}

.songs-by-head h3 {
	color: #fff;
	font-size: 32px;
	font-weight: 700;
	margin-bottom: 7px;
	position: relative;
}

.songs-by-head p {
	color: #fff;
	font-weight: 700;
}

.songs-listed-com {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
}

.songs-listed-com a {
	display: inline-block;
	margin: 3px 12px 3px 0;
}

.songs-listed-com a:last-child {
	margin-right: 0;
}

.songs-playlist-block {
	display: flex;
	flex-direction: column;
	background: url(../images/songs-playlist-bg.png) center;
	background-color: #21232d;
	background-size: cover;
	color: #fff;
	height: 540px;
}

.songs-playlist-head,
.songs-playlist-player {
	flex-shrink: 0;
}

.songs-playlist-head {
	padding: 40px 35px 20px;
}

.songs-playlist-head h4 {
	font-size: 16px;
	color: #fff;
	margin-bottom: 8px;
}

.songs-playlist-head h5 {
	font-size: 24px;
	font-weight: 700;
	color: #fff;
	margin-bottom: 0;
}

.songs-playlist-body {
	flex-grow: 1;
	overflow: auto;
	padding: 10px 20px 35px 35px;
}

.songs-playlist-player {
    min-height: 70px;
    /* border-top: solid 2px rgba(196, 207, 222, 0.20); */
}

.ul-songs {
	list-style: none;
	margin: 0;
	padding: 0;
	height: 100%;
	overflow: auto;
}

.ul-songs li {
	margin-bottom: 25px;
}

.ul-songs li label {
	display: inline-flex;
	font-size: 22px;
	color: #8A8A8A;
	transition: 0.2s ease-in-out 0s;
	cursor: pointer;
}

.ul-songs li label:hover {
	color: #cbbebe;
}

.ul-songs li.active label {
	color: #fff;
}

.ul-songs li i {
	margin-right: 24px;
	margin-top: 7px;
	color: #A53939 !important;
}

.ul-songs li label .fa-circle-stop {
    display: none;
}

.ul-songs li.active label .fa-circle-stop {
    display: inline-block;
}

.ul-songs li.active label .fa-circle-play {
    display: none;
}

@media (max-width: 1399px){
	.songs-by-head {
		padding: 25px;
	}

	.songs-by-head h3 {
		font-size: 25px;
		margin-bottom: 3px;
	}

	.songs-by-head p {
		font-size: 15px;
	}

	.songs-listed-com img {
		max-height: 25px;
	}

	.songs-playlist-head {
		padding: 35px 25px 15px;
	}

	.songs-playlist-body {
		padding: 10px 15px 25px 25px;
	}
}

@media (max-width: 1199px) {
	.ul-songs li {
		margin-bottom: 20px;
	}
}

@media (max-width: 991px) {
	.songs-by-block {
		height: 240px;
		background-position: top;
	}

	.songs-playlist-block {
		height: 440px;
		background-position: top;
	}

	.ul-songs li {
		margin-bottom: 15px;
	}

	.ul-songs li label {
		font-size: 20px;
	}
}

.home-books-block {
	position: relative;
	z-index: 10;
}

.col-books-dtl {
	display: flex;
	align-items: center;
}

.books-dtl {
	margin-bottom: 30px;
}

.books-dtl h3 {
	font-size: 32px;
	font-weight: 700;
	color: #A53939;
	position: relative;
	margin-bottom: 24px;
}

.books-dtl p {
	line-height: 36px;
    margin-bottom: 24px;
    font-size: 20px;
    color: #444444;
	text-align: justify;
}

.avlb-at {
	display: flex;
}

.avlb-at strong {
	font-weight: 500;
	color: #000;
	margin-right: 10px;
	flex-shrink: 0;
}

.avlb-logos {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	padding-top: 5px;
}

.avlb-logos a {
	display: inline-block;
	margin-right: 10px;
	margin-bottom: 5px;
}

@media (max-width: 1399px) {
	.books-dtl h3 {
		font-size: 30px;
		margin-bottom: 15px;
	}

	.books-dtl p {
		margin-bottom: 20px;
		line-height: 30px;
	}
}

@media (max-width: 1199px) {
	.books-dtl h3 {
		font-size: 25px;
    	margin-bottom: 10px;
	}

	.books-dtl p {
		margin-bottom: 15px;
		line-height: 28px;
		font-size: 19px;
	}
}

@media (max-width: 767px) {
	.books-dtl h3 {
		font-size: 23px;
		margin-bottom: 10px;
	}
}

.books-carousel .owl-item,
.books-carousel .owl-item img {
  transform: scale(1);
  transition: 0.6s ease-in-out 0s;
}

.books-carousel .owl-item .books-item {
  background: #fff;
  border-radius: 8px;
  padding: 7px;
}

.books-carousel .owl-stage {
	display: flex;
}

.books-carousel .owl-nav {
	display: block !important;
}

.books-carousel .owl-nav .owl-prev,
.books-carousel .owl-nav .owl-next {
	position: absolute;
	top: 50%;
	width: 52px;
	height: 52px;
	border-radius: 100%;
	border: solid 2px rgba(51, 51, 51, 0.84) !important;
	margin-top: -26px;
	transition: 0.2s ease-in-out 0s;
}

.books-carousel .owl-nav .owl-prev span,
.books-carousel .owl-nav .owl-next span {
	display: none;
}

.books-carousel .owl-nav .owl-prev {
	left: -15px;
	background: url(../images/owl-previous.svg) no-repeat center !important;
	background-color: rgba(0, 0, 0, 0.84) !important;
}

.books-carousel .owl-nav .owl-next {
	right: -15px;
	background: url(../images/owl-next.svg) no-repeat center !important;
	background-color: rgba(0, 0, 0, 0.84) !important;
}

.books-carousel .owl-nav .owl-prev:hover,
.books-carousel .owl-nav .owl-prev:focus,
.books-carousel .owl-nav .owl-next:hover,
.books-carousel .owl-nav .owl-next:focus {
	background-color: rgba(0, 0, 0, 1) !important;
}

@media (max-width: 1399px) {
	.books-carousel .owl-nav .owl-prev, .books-carousel .owl-nav .owl-next {
		width: 42px;
		height: 42px;
		margin-top: -21px;
	}
}

@media(min-width: 1200px) {
	.books-carousel.owl-carousel {
		width: 711px;
		margin-left: auto;
	}
	.books-carousel .owl-item {
		display: flex;
		align-items: center;
		justify-content: center;
		height: 404px !important;
	}
	.books-carousel .owl-item.active {
		width: 280px !important;
	}
	.books-carousel .owl-item.active + .owl-item.active {
		width: 230px !important;
	}
	.books-carousel .owl-item.active + .owl-item.active + .owl-item.active {
		width: 170px !important;
	}
}

@media(min-width: 1400px) {
	.books-carousel.owl-carousel {
	  width: 886px;
	  margin-left: auto;
	}
	.books-carousel .owl-item {
	  display: flex;
	  align-items: center;
	  justify-content: center;
	  height: 518px !important;
	}
	.books-carousel .owl-item.active {
	  width: 357px !important;
	}
	.books-carousel .owl-item.active + .owl-item.active {
	  width: 287px !important;
	}
	.books-carousel .owl-item.active + .owl-item.active + .owl-item.active {
	  width: 212px !important;
	}
}
  
@media (max-width: 767px) {
  .books-carousel .owl-carousel {
    padding: 0 20px;
  }
}

@media (max-width: 575px) {
	.books-carousel .owl-nav .owl-prev {
		left: -10px;
	}
	
	.books-carousel .owl-nav .owl-next {
		right: -10px;
	}
}

@media (max-width: 449px) {
  .books-carousel .owl-item {
    padding: 0 40px;
  }
}

@media (max-width: 449px) {
	.books-carousel .owl-nav .owl-prev {
		left: 20px;
	}
	
	.books-carousel .owl-nav .owl-next {
		right: 20px;
	}
}

.home-message-content {
    position: relative;
}

.home-message-sec {
	position: relative;
	padding: 220px 0;
}

.home-message-content h5 {
	font-size: 36px;
    font-weight: 500;
    line-height: 46px;
    text-align: center;
    color: #000;
    margin-bottom: 48px;
}

.home-message-content h5 strong {
	font-weight: 700;
	font-size: 40px;
	display: block;
	color: #A53939;
}

.col-message p {
	font-size: 40px;
    line-height: 54px;
    color: rgba(33, 36, 40, 0.90);
    text-align: center;
}

.spn-quote-left,
.spn-quote-right {
	color: #a53939;
}

@media (max-width: 1399px) {
	.home-message-sec {
		padding: 170px 0;
	}
	
	.home-message-content h5 {
		font-size: 34px;
		line-height: 44px;
		margin-bottom: 40px;
	}

	.home-message-content h5 strong {
		font-size: 38px;
	}

	.col-message p {
		font-size: 38px;
		line-height: 50px;
	}
}

@media (max-width: 1199px) {
	.home-message-sec {
		padding: 140px 0;
	}

	.home-message-content h5 {
		font-size: 30px;
		line-height: 40px;
		margin-bottom: 25px;
	}

	.home-message-content h5 strong {
		font-size: 34px;
	}

	.col-message p {
		font-size: 28px;
    	line-height: 40px;
	}
}

@media (max-width: 991px) {
	.home-message-sec {
		padding: 130px 0 100px;
	}

	.home-message-content h5 {
		font-size: 26px;
		line-height: 38px;
		margin-bottom: 20px;
	}

	.home-message-content h5 strong {
		font-size: 30px;
	}

	.col-message p {
		font-size: 22px;
    	line-height: 32px;
	}
}
/* new home page ended */

 .close {
    float: right;
    font-size: 1.35rem;
    font-weight: 700;
    line-height: 1;
    color: #000;
    text-shadow: 0 1px 0 #fff;
    opacity: 0.5;
    text-decoration: none;
}

.close:hover {
    color: #000;
    text-decoration: none;
}

body:not(.no-bg) .body-sec {
	z-index: 2 !important;
}

body:not(.no-bg) {
	background: url(../images/bg.jpg) repeat;
}

.award-listing-block {
	padding-top: 40px;
}

.award-listing-block ul li {
	background: none;
	padding-left: 0 !important;
	align-items: center !important;
	justify-content: flex-start !important;
	margin-bottom: 24px !important;
}

.award-listing-block ul li .spn-award-date {
	margin-left: auto !important;
}

.award-img {
	flex-shrink: 0;
	width: 171px;
	height: 123px;
	border-radius: 8px;
	background-color: #D9D9D9;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	margin-right: 48px;
	overflow: hidden;
}

.award-img img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: 0.2s ease-in-out 0s;
}

.award-img:hover img {
	transform: scale(1.1);
}

.point-mark {
	position: relative;
}

.point-mark img {
	position: absolute;
	bottom: 0;
	left: 50%;
	transform: translateX(-50%);
}

.point-dtl {
	position: absolute;
    width: 230px;
    padding: 8px;
    background: #fff;
    border-radius: 4px;
    box-shadow: 0px 4px 4px 0px #00000029;
    z-index: 5;
    bottom: 48px;
    left: 50%;
    transform: translate(-50%, 10px);
	transition: 0.3s ease-in-out 0s;
	opacity: 0;
	visibility: hidden;
}

.point-dtl:after {
    border-style: solid;
    border-width: 10px 10px 0px 10px;
    position: absolute;
    top: 100%;
    left: 50%;
    z-index: 29;
    border-color: #fff transparent transparent transparent;
    content: "";
    transform: translateX(-50%);
}

.point-cnt {
    padding: 10px 0 5px;
	text-align: center;
}

.point-cnt h3 {
    font-size: 18px;
	line-height: 20px;
	margin-bottom: 5px;
	color: #444444;
}

.point-cnt h4 {
    font-size: 14px;
	line-height: 20px;
	color: #444444;
	margin-bottom: 0;
}

.point.canada .point-dtl {
	display: block;
}

@media (max-width: 1399px) {
	.award-img {
		width: 167px;
		height: 120px;
		margin-right: 42px;
	}

	.point-mark img {
		width: 20px;
	}
}

@media (max-width: 991px) {
	.award-listing-block {
		padding-top: 20px;
	}

	.award-img {
		width: 150px;
		height: 110px;
		margin-right: 30px;
	}

	.point-mark img {
		width: 15px;
	}

	.point-dtl {
		bottom: 40px;
		width: 180px;
		padding: 5px;
	}

	.point-cnt {
		padding-top: 5px;
	}

	.point-cnt h3 {
		font-size: 16px;
		line-height: 16px;
		margin-bottom: 0;
	}

	.point-cnt h4 {
		font-size: 12px;
		line-height: 16px;
	}
}

@media (max-width: 767px) {
	.award-img {
		margin-bottom: 10px;
	}
	
	.award-listing-block ul li {
		flex-direction: column;
		line-height: 26px !important;
	}

	.award-img {
		margin-right: 0;
	}

	.award-listing-block ul li .spn-award-date {
		margin-right: auto !important;
		padding-left: 0 !important;
	}

	.point-mark img {
		width: 10px;
	}

	.point-dtl {
		bottom: 32px;
	}
}

.icon-instagram i {
	background-clip: text;
	background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%,#d6249f 60%,#285AEB 90%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
}

.icon-facebook i {
	color: #3b5998;
}

.icon-twitter i {
	color: #00acee;
}

.icon-linkedin i {
	color: #0072b1;
}

.icon-youtube i {
	color: #fd5949;
}

.icon-tiktok i {
	color: #000;
}

.text-nowrap{
	color: #a53939;
}

.grid:after {
	content: '';
	display: block;
	clear: both; 
}

.scrollTopouter {
	position: fixed;
	z-index: 99999;
	right: 30px;
	bottom: 30px;
	display: flex;
	justify-content: flex-end;
	transition: 0.3s ease-in-out 0s;
	opacity: 0;
}

.scrollTop {
	background-color: #fff;
	border-radius: 12px;
	box-shadow: 0px 4px 17px 0px rgba(0, 0, 0, 0.06);
	padding: 10px 6px;
	display: flex;
	align-items: center;
	transition: 0.3s ease-in-out 0s;
	overflow: hidden;
}

.scroll-logo img {
	max-height: 42px;
}

.scroll-txt img {
	max-height: 29px;
}

.scroll-txt {
	width: 0;
	transition: 0.3s ease-in-out 0s;
	overflow: hidden;
}

.scrollTop:hover .scroll-txt {
	width: 76px;
}

@media(min-width:992px){
	.offcanvas {
		visibility: visible !important;
	}

	.canvasShow {
		transform: none !important;
	}

	.bodyfix {
		overflow: hidden;
		padding-right: 15px;
	}

	.bodyfix .header-menu:before {
		position: fixed;
		top: 0;
		left: 0;
		z-index: 1040;
		width: 100vw;
		height: 100vh;
		background-color: #000;
		content: "";
		opacity: 0.5;
	}
}

img.mfp-img {
	padding-top: 80px !important;
	padding-bottom: 80px !important;
}

.mfp-figure:after {
    top: 80px !important;
    bottom: 80px !important;
}

.mfp-bottom-bar {
    margin-top: -60px !important;
}

.home-quote {
	padding: 70px 0;
}

.col-quote p {
    font-size: 28px;
    line-height: 1.4;
    color: #333333;
    text-align: center;
}

.col-quote .spn-quote-left {
	font-size: 92%;
}

.cr-name {
	font-weight: 600;
	font-size: 26px;
	color: #A53939;
	display: block;
	margin-top: 7px;
}

.item-connect-us {
	border-radius: 8px;
	height: 400px;
	overflow: hidden;
}

.item-connect-us iframe {
	width: 100%;
	height: 100%;
}

.twitter-connect {
	overflow: auto;
}

.back-music {
	opacity: 0;
	visibility: hidden;
	position: absolute;
}

@media(max-width:1399px){
	.home-quote {
		padding: 45px 0;
	}

	.col-quote p {
		font-size: 26px;
	}
}

@media(max-width:991px){
	.home-quote {
		padding: 30px 0;
	}

	.col-quote p {
		font-size: 24px;
	}

	.item-connect-us {
		margin: 0 auto 30px;
		max-width: 400px;
	}

	.timeline-list-wrap .container {
		max-width: 100% !important;
	}
}

.mfp-bg {
    z-index: 9999991 !important;
}

.mfp-wrap {
    z-index: 9999992 !important;
}

/* .timeline-list-block {
	scroll-snap-type: y mandatory;
}

.item-timeline-list {
	scroll-snap-align: start none;
} */

  
  