/* ----------------------------------------------------------------------------------------
* Author        : Harpreet
* ---------------------------------------------------------------------------------------- */
/* INDEX
----------------------------------------------------------------------------------------
01. Global Variables
02. General css
03. Header css
04. Hero css
05. Scrolling Ticker css
06. About Us css
07. Our Collection css
08. Why Choose Us css
09. Our Exhibitions css
10. Our Events css
11. Our Team css
12. Who We Are css
13. Our Testimonials css
14. Our Blog css
15. Footer css
16. About Us Page css
17. Collection Page css
18. Collection Single css
19. Blog Archive css
20. Blog Single css
21. Events Page css
22. Event Single css
23. Team Page css
24. Team Single css
25. Testimonials Page css
26. Image Gallery css
27. Video Gallery css
28. FAQ's Page css
29. Contact Us Page css
30. 404 Error Page css
31.	Responsive css
-------------------------------------------------------------------------------------- */

/************************************/
/*** 	 01. Global Variables	  ***/
/************************************/

:root{
	--primary-color				: #000000;
	--secondary-color			: #FFFFFF;
	--bg-color					: #F5F4F4;
	--text-color				: #000000;
	--accent-color				: #ec0e0e;
	--white-color				: #FFFFFF;
	--divider-color				: #0000001A;
	--dark-divider-color		: #FFFFFF52;
	--error-color				: rgb(230, 87, 87);
	--default-font				: "DM Sans", sans-serif;
	--accent-font				: "eras_bold_itcregular";
}

/************************************/
/*** 	   02. General css		  ***/
/************************************/

html, body{ width: 100%; overflow-x: clip; }
body{ font-family: var(--default-font); font-size: 16px; font-weight: 400; line-height: 1em; color: var(--text-color); }
@font-face {
    font-family: 'eras_bold_itcregular';
    src: url('../webfonts/erasbd-webfont.eot');
    src: url('../webfonts/erasbd-webfont.eot?#iefix') format('embedded-opentype'), 
         url('../webfonts/erasbd-webfont.woff2') format('woff2'),
         url('../webfonts/erasbd-webfont.woff') format('woff'), 
         url('../webfonts/erasbd-webfont.ttf') format('truetype'), 
         url('../webfonts/erasbd-webfont.svg#eras_bold_itcregular') format('svg');
    font-weight: normal;
    font-style: normal;
}

::-webkit-scrollbar-track{
	background-color: var(--primary-color);
	border-left: 1px solid var(--primary-color);
}
::-webkit-scrollbar{
	width: 7px;
	background-color: var(--primary-color);
}

::-webkit-scrollbar-thumb{
	background: var(--accent-color);
}

::selection{
	color: var(--primary-color);
	background-color: var(--white-color);
	filter: invert(1);
}

p{
	line-height: 1.6em;
	margin-bottom: 1em; text-align: justify;
}

h1,
h2,
h3,
h4,
h5,
h6{
	font-family: var(--accent-font);
	font-weight: 400;
	line-height: 1.5em;
	color: var(--primary-color);
	margin: 0;
}

figure{
	margin: 0;
}

img{
	max-width: 100%;
}

a{
	text-decoration: none;
}

a:hover{
	text-decoration: none;
	outline: 0;
}

a:focus{
	text-decoration: none;
	outline: 0;
}

.container{
	max-width: 1300px;
}

.container,
.container-fluid,
.container-lg,
.container-md,
.container-sm,
.container-xl,
.container-xxl{
    padding-right: 15px;
    padding-left: 15px;
}

.image-anime{
	position: relative;
	overflow: hidden;
}

.image-anime:after{
	content: "";
	position: absolute;
    width: 200%;
    height: 0%;
    left: 50%;
    top: 50%;
    background-color: rgba(255,255,255,.3);
    transform: translate(-50%,-50%) rotate(-45deg);
    z-index: 1;
}

.image-anime:hover:after{
    height: 250%;
    transition: all 600ms linear;
    background-color: transparent;
}

.reveal{
	position: relative;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    visibility: hidden;
    overflow: hidden;
}

.reveal img{
    height: 100%;
    width: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    -webkit-transform-origin: left;
    transform-origin: left;
}

.row{
    margin-right: -15px;
    margin-left: -15px;
}

.row > *{
	padding-right: 15px;
	padding-left: 15px;
}

.row.no-gutters{
    margin-right: 0px;
    margin-left: 0px;
}

.row.no-gutters > *{
    padding-right: 0px;
    padding-left: 0px;
}

.btn-default, .btn-default2{
	position: relative;
	display: inline-block;
	vertical-align: middle;
	font-size: 16px;
	font-weight: 700;
	line-height: 1em;
	text-transform: capitalize;
	color: var(--white-color);
	background: var(--accent-color);
	border-radius: 30px;
	border: none;
	padding: 17px 46px 17px 24px;
	transition: all 0.5s ease-in-out;
	overflow: hidden;
	z-index: 1;
}
.btn-default::before, .btn-default2::before{
	content: '';
	position: absolute;
    top: 50%;
    right: 24px;
    width: 12px;
    height: 12px;
    background-image: url('../images/arrow-white.svg');
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    transform: translateY(-50%);
    transition: all 0.4s ease-in-out;
}

.btn-default:hover::before{
	transform: translateY(-50%) rotate(45deg);
}

.btn-default::after{
	content: '';
    display: block;
    position: absolute;
    top: 0;
    bottom: 0;
    left: -15%;
	right: 0;
    width: 0;
    height: 106%;
    background: var(--primary-color);
    transform: skew(45deg);
    transition: all 0.4s ease-in-out;
    z-index: -1;
}

.btn-default:hover::after{
	width: 100%;
    transform: skew(0deg);
    left: 0;
}

.btn-default.btn-highlighted:hover,
.btn-default.btn-border:hover{
	color: var(--primary-color);
}

.btn-default.btn-highlighted:hover::before,
.btn-default.btn-border:hover:before{
	background-image: url('../images/arrow-primary.svg');
}

.btn-default.btn-highlighted::after{
	background: var(--white-color);
}
.btn-default2 { padding: 14px 14px 14px 14px; font-size: 14px; }
.btn-default2::before { display: none; }
.header-btn a:last-child { background: #871f1f; }


header.main-header .header-sticky.active .btn-default2 { padding: 10px 20px; font-size: 14px; }

.readmore-btn{
	position: relative;
    display: inline-block;
	font-size: 16px;
    font-weight: 700;
    line-height: 1.5em;
    text-transform: capitalize;
    color: var(--white-color);
    padding: 0 32px 0 0;
	transition: all 0.3s ease-in-out;
}
.readmore-btn:hover{
	color: var(--accent-color);
}

.readmore-btn::before{
	content: '';
    position: absolute;
    top: 50%;
    right: 0;
	width: 24px;
	height: 24px;
	background-color: var(--accent-color);
	border-radius: 50%;
	transform: translateY(-50%);
	background-image: url('../images/arrow-white.svg');
	background-repeat: no-repeat;
	background-position: center center;
	background-size: 10px auto;
    transition: all 0.4s ease-in-out;
}

.readmore-btn:hover::before{
	transform: translateY(-50%) rotate(45deg);
}

.cb-cursor:before{
	background: var(--accent-color);
}

.preloader{
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: 1000;
	background: var(--primary-color);
	display: flex;
	align-items: center;
	justify-content: center;
}

.loading-container,
.loading{
	position: relative;
	height: 100px;
	width: 100px;
	border-radius: 100%;
}

.loading-container{
	margin: 40px auto;
}

.loading{
	border: 1px solid transparent;
	border-color: transparent var(--white-color) transparent var(--white-color);
	animation: rotate-loading 1.5s linear 0s infinite normal;
	transform-origin: 50% 50%;
}

.loading-container:hover .loading,
.loading-container .loading{
	transition: all 0.5s ease-in-out;
}

#loading-icon{
	position: absolute;
	top: 50%;
	left: 50%;
	max-width: 66px;
	transform: translate(-50%, -50%);
}

@keyframes rotate-loading{
	0%{
		transform: rotate(0deg);
	}
	100%{
		transform: rotate(360deg);
	}
}

.dark-section {
    background-color: var(--primary-color);
    background-image: url(../images/dark-section-bg-image.png);
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
}

.section-row {
    margin-bottom: 30px;
}

.section-row .section-title{
	margin-bottom: 0;
}

.section-row .section-title.section-title-center{
	width: 100%;
	max-width: 800px;
	margin: 0 auto;
	text-align: center;
}

.section-btn{
	text-align: right;
}

.section-content-btn .section-btn{
	margin-top: 30px;
	text-align: left;
}

.section-title-content p{
	margin-bottom: 20px;
}

.section-title-content p:last-child{
	margin-bottom: 0;
}

.section-title{
	margin-bottom: 40px;
}

.section-title .section-sub-title{
	position: relative;
	display: inline-block;
	font-size: 14px;
	font-weight: 600;
	line-height: 1em;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: var(--primary-color);
	border: 1px solid var(--divider-color);
	border-radius: 100px;
	padding: 9px 20px 9px 48px;
    margin-bottom: 15px;
}

.section-title .section-sub-title::before{
	content: '';
    position: absolute;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
    background: url('../images/icon-sub-heading.svg') no-repeat;
	background-position: center center;
	background-size: cover;
    width: 16px;
    height: 16px;
}

.section-title h1{
	font-size: 45px;
	line-height: 1.3em;
	margin-bottom: 0;
	cursor: none;
}

.section-title h2{
	font-size: 40px;
    line-height: 1.4em;
	margin: 0px 0 10px 0;
	cursor: none;
}

.section-title p{
	margin-top: 15px;
	margin-bottom: 0;
}

.dark-section .section-title .section-sub-title{
	border-color: var(--dark-divider-color);
}

.dark-section .section-title .section-sub-title,
.dark-section .section-title h1,
.dark-section .section-title h2,
.dark-section .section-title p,
.dark-section .section-title-content p{
	/*color: var(--white-color);*/
}

.help-block.with-errors ul{
	margin: 0;
	text-align: left;
}

.help-block.with-errors ul li{
	color: var(--error-color);
	font-weight: 500;
	font-size: 14px;
}

/************************************/
/**** 	    03. Header css		 ****/
/************************************/

.main-header{ position: sticky; top: 0; z-index: 100; }
header.main-header .header-sticky{ position: relative; background: #fff; border-radius: 0;	z-index: 100; }
header.main-header .header-sticky.hide{ transform: translateY(-100%); transition: transform 0.3s ease-in-out; }
header.main-header .header-sticky.active{
	top: 0;
	left: 0;
	right: 0;
	border-radius: 0;
    transform: translateY(0);
    box-shadow: rgba(0, 0, 0, 0.05) 0px 4px 12px;
}
.navbar{ padding: 10px 0px;	align-items: center; }
.navbar-brand{ padding: 0; margin: 0; }

@media only screen and (min-width: 481px){
	header.main-header .header-sticky.active .navbar-brand img { max-width: 70% }
}

header.main-header .header-sticky.active .navbar{ padding: 5px 0px; }
.main-menu .nav-menu-wrapper{ flex: 1; text-align: center; margin: 0 1.042vw; }
.main-menu .nav-menu-wrapper > ul{ align-items: center;	display: inline-flex; }
.main-menu ul li{ margin: 0 9px; position: relative; }
.main-menu ul li a{ font-size: 15px; font-weight: 600; line-height: 1.2em; padding: 12px 3px!important;
	color: #000; background: transparent; border-radius: 0px; text-transform: capitalize; transition: all 0.3s ease-in-out; }
.main-menu ul li.submenu > a:after{
	content: '\f107';
	font-family: 'FontAwesome';
	font-weight: 900;
	font-size: 14px;
	margin-left: 8px;
}
.main-menu ul li a:hover,
.main-menu ul li a:focus, 
.main-menu ul li a.activee{
	color: #ff2632;
}
.main-menu ul ul{
	position: absolute;
	left: 0;
	top: 100%;
	padding: 0;
	margin: 0;
	list-style: none;
	width: 245px;
	background: var(--accent-color);
	border-radius: 14px;
	text-align: left;
	transition: all 0.3s ease-in-out;
	transform: scale(1,0.8);
	transform-origin: top;
	visibility: hidden;
	opacity: 0;
}

.main-menu ul li.submenu:first-child ul{
    width: 235px;
}

.main-menu ul ul ul{
	left: 100%;
	top: 0;
	text-align: left;
}

.main-menu ul li:hover > ul{
	visibility: visible;
	opacity: 1;
	transform: scale(1,1);
    padding: 5px 0;
}

.main-menu ul li.submenu ul li.submenu > a:after{
    content: '\f105';
    float: right;
}

.main-menu ul ul li{
	margin: 0;
	padding: 0;
}

.main-menu ul ul li a{
	color: var(--white-color);
	padding: 8px 20px !important;
	transition: all 0.3s ease-in-out;
}

.main-menu ul ul li a:hover,
.main-menu ul ul li a:focus{
	color: #ffbec0;
	background-color: transparent;
	padding: 8px 20px 8px 23px !important;
}
.main-menu ul li.highlighted-menu{
    display: none;
}

.header-btn{
	line-height: 0;
}

.responsive-menu,
.navbar-toggle{
	display: none;
}

.responsive-menu{
	position: relative;
	top: 0;
}

.slicknav_btn {
	background: var(--accent-color);
	padding: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 30px;
	height: 28px;
	border-radius: 6px;
	margin: 0;
}

.slicknav_icon .slicknav_icon-bar{
	display: block;
	width: 100%;
	height: 2px;
	width: 19px;
	background-color: var(--white-color);
	border-radius: 6px;
	margin: 4px auto !important;
	transition: all 0.1s ease-in-out;
}

.slicknav_icon .slicknav_icon-bar:first-child{
	margin-top: 0 !important;
}

.slicknav_icon .slicknav_icon-bar:last-child{
	margin-bottom: 0 !important;
}

.navbar-toggle a.slicknav_btn.slicknav_open .slicknav_icon span.slicknav_icon-bar:nth-child(1){
    transform: rotate(-45deg) translate(-5px, 4px);
}

.navbar-toggle a.slicknav_btn.slicknav_open .slicknav_icon span.slicknav_icon-bar:nth-child(2){
    opacity: 0;
}

.navbar-toggle a.slicknav_btn.slicknav_open .slicknav_icon span.slicknav_icon-bar:nth-child(3){
    transform: rotate(45deg) translate(-4px, -4px);
}

.slicknav_menu{
	position: absolute;
    width: 100%;
	background: #a30e0e;
	padding: 0;
}

.slicknav_menu ul{
	margin: 5px 0;
}

.slicknav_menu ul ul{
	margin: 0;
}

.slicknav_nav .slicknav_row,
.slicknav_nav li a{
	position: relative;
	font-size: 16px;
	font-weight: 500;
	text-transform: capitalize;
	padding: 5px 20px;
	color: var(--white-color);
	line-height: normal;
	margin: 0;
	border-radius: 0 !important;
	transition: all 0.3s ease-in-out;
}

.slicknav_nav a:hover,
.slicknav_nav a:focus,
.slicknav_nav .slicknav_row:hover{
	/*background-color: transparent;
	color: var(--primary-color);*/
}

.slicknav_menu ul ul li a{
    padding: 5px 20px 5px 30px;
}

.slicknav_arrow{
	font-size: 0 !important;
}

.slicknav_arrow:after{
	content: '\f107';
	position: absolute;
	font-family: 'FontAwesome';
	font-weight: 900;
	font-size: 12px;
	margin-left: 8px;
	color: var(--white-color);
	right: 15px;
	top: 50%;
	transform: translateY(-50%);
	transition: all 0.3s ease-out;
}

.slicknav_open > a .slicknav_arrow:after{
    transform: translateY(-50%) rotate(-180deg);
	color: var(--primary-color);
}

/************************************/
/*** 	    04. Hero css	      ***/
/************************************/

.hero{
	position: relative;
    padding: 0px 0 50px;
	overflow: hidden;
}

.hero.hero-image-layout,
.hero.hero-video,
.hero.hero-slider-layout{
	min-height: 100vh;
	align-content: center;
}

.hero.hero-image-layout{
	background: url('../images/hero-bg-image.jpg') no-repeat;
	background-position: center center;
	background-size: cover;
}

.hero.hero-image-layout::before,
.hero.hero-slider-layout .hero-image-slider .hero-slider-image figure::before{
	content: '';
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
  	background: var(--primary-color);
	opacity: 5%;
    z-index: 1;
}

.hero.hero-slider-layout .hero-content,
.hero.hero-image-layout .hero-content{
	/*max-width: 840px; margin: 0 auto;*/
}

.hero.hero-slider-layout .hero-content .section-title p,
.hero.hero-image-layout .hero-content .section-title p{
	font-size: 18px;
	max-width: 750px;
	margin-left: auto;
	margin-right: auto;
}

.hero.hero-video-layout .hero-bg-video{
	position: absolute;
	top: 0;
	right: 0;
	left: 0;
	bottom: 0;
	width: 100%;
	height: 100%;
}

.hero.hero-video-layout .hero-bg-video video{
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.hero.hero-slider-layout::before{
	display: none;
}

.hero.hero-slider-layout{
	background: none;
}

.hero.hero-slider-layout .hero-image-slider{
	position: absolute;
	top: 0;
	right: 0;
	left: 0;
	bottom: 0;
	width: 100%;
	height: 100%;
}

.hero.hero-slider-layout .hero-image-slider .swiper,
.hero.hero-slider-layout .hero-image-slider .hero-slider-image,
.hero.hero-slider-layout .hero-image-slider .hero-slider-image figure{
	position: relative;
	height: 100%;
	overflow: hidden;
}

.hero.hero-slider-layout .hero-image-slider .hero-slider-image img{
	width: 100%;
	height: 100%;
	object-fit: cover;
    transform: scale(1);
    animation: smoothZoom 10s ease-in-out infinite alternate;
    will-change: transform;
}

@keyframes smoothZoom {
    from {
        transform: scale(1);
    }
    to {
        transform: scale(1.02);
    }
}

.hero .container{
	position: relative;
    z-index: 2;
}

.hero-content{
	height: 100%;
	align-content: center;
}

.hero-image{
	height: 100%;
}

.hero-image figure{
	height: 100%;
	margin-bottom: -50px;
	align-content: end;
}

.hero-image figure img{
	width: 100%;
	aspect-ratio: 1 / 1.125;
	object-fit: cover;
}


.hero-content .section-title .section-sub-title { border-color: var(--accent-color); color: var(--accent-color); }


/************************************/
/***   05. Scrolling Ticker css	  ***/
/************************************/

.our-scrolling-ticker{
	background: var(--accent-color);
	padding: 21px 0;
}

.scrolling-ticker-box{
	--gap: 40px;
	position: relative;
	display: flex;
	overflow: hidden;
	user-select: none;
	gap: var(--gap);
	align-items: center;
}

.scrolling-content{
	flex-shrink: 0;
	display: flex;
	gap: var(--gap);
	min-width: 100%;
	animation: scroll 50s linear infinite;
}

.scrolling-content span{
	font-family: var(--accent-font);
	display: inline-flex;
	align-items: center;
	gap: var(--gap);
	font-size: 20px;
	line-height: normal;
	text-transform: uppercase;
	color: var(--white-color);
	vertical-align: middle;
}

.scrolling-content span img{
	width: 100%;
	max-width: 20px;
}

@keyframes scroll{
	from{
		transform: translateX(0);
	}

	to{
		transform: translateX(calc(-100% - var(--gap)));
	}
}

/************************************/
/*** 	   06. About Us css	      ***/
/************************************/

.about-us{
	position: relative;
	padding: 50px 0 100px 0;
	overflow: hidden;
}

.about-us::before{
	content: '';
    position: absolute;
    bottom: 0;
    right: -50px;
    width: 284px;
    height: 313px;
    background-image: url('../images/section-bg-image-shape-1.png');
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
}

.about-us .container{
	position: relative;
	z-index: 2;
}

.about-us-image-box{
	position: relative;
	display: flex;
	flex-wrap: wrap;
	align-items: center;
    margin-right: 15px;
    height: 100%;
}

.about-us-image.box-1{
	position: absolute;
	right: -30px;
	bottom: 0px;
	width: 35%;
	z-index: 2;
/* Name | Duration | Timing | Iteration Count | Direction */
  animation: moveLeftRight 3s ease-in-out infinite alternate;
}

@keyframes moveLeftRight {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(10px); /* Adjust distance as needed */
  }
}




.about-us-image.box-2{
	width: 80%;
}

.about-us-image.box-2 figure img,
.about-us-image.box-2 figure,
.about-us-image.box-2{
	height: 100%;
}

.about-us-image figure{
	display: block;
	border-radius: 20px;
}

.about-us-image figure img{
	max-width: 100%;
	aspect-ratio: 1 / 1.175;
	object-fit: cover;
	border-radius: 20px;
}

.about-us-image.box-1 figure{
	/*border: 10px solid var(--bg-color);
	border-radius: 150px 150px 0 0;*/
	margin-right: -156px;
}

/*.about-us-image.box-1 figure img{
	aspect-ratio: 1 / 1.39;
	border-radius: 120px 120px 0 0;
}*/

.about-us-content{
	height: 100%;
	align-content: center;
}

.about-us-item-list{
	display: flex;
	flex-wrap: wrap;
	gap: 30px;
}

.about-us-item{
	width: calc(50% - 15px);
	display: flex;
	flex-wrap: wrap;
	gap: 15px;
}

.about-us-item .icon-box img{
    width: 100%;
    max-width: 50px;
}

.about-us-item-content{
	width: calc(100% - 65px);
}

.about-us-item-content h3{
	font-size: 20px; margin-bottom: 0;
}

.about-us-item-content p{
	margin: 0px 0 0 0;
}

.about-us-footer{
	display: flex;
	flex-wrap: wrap;
	align-items: center;
    gap: 20px 40px;
	border-top: 1px solid var(--divider-color);
	margin-top: 40px;
	padding-top: 40px;
}

.about-author-box{
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 15px;
}

.about-author-box-image figure{
	display: block;
	border-radius: 50%;
}

.about-author-box-image img{
	width: 100%;
	max-width: 50px;
	aspect-ratio: 1 / 1;
	object-fit: cover;
	border-radius: 50%;
}

.about-author-box-content{
	width: calc(100% - 65px);
}

.about-author-box-content h3{
	font-size: 16px;
}

.about-author-box-content p{
	line-height: normal;
	margin: 5px 0 0;
}

.about-contact-item-content h3 a{
	color: inherit;
	transition: all 0.3s ease-in-out;
}

.about-contact-item-content h3 a:hover{
	color: var(--accent-color);
}

.dark-section .about-contact-item .icon-box::before{
	background: var(--white-color);
}

.dark-section .about-contact-item:hover .icon-box img{
	filter: brightness(1) invert(1);
}

.dark-section .about-contact-item-content p,
.dark-section .about-contact-item-content h3{
	color: var(--white-color);
}

/************************************/
/***    07. Our Collection css    ***/
/************************************/

.our-collection { background: var(--bg-color); padding: 60px 0px 80px 0px; }
.collection-item{
	position: relative;
	background-color: var(--white-color);
	border-radius: 20px;
	text-align: center;
	
	/*height: calc(100% - 30px);*/
	/*overflow: hidden;*/

	margin-bottom: 30px;
}

.collection-item-image a{
	display: block;
	cursor: none;
}

.collection-item-image a::before{
	/*content: '';*/
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	width: 100%;
	height: 100%;
	background: linear-gradient(180deg, rgba(0, 0, 0, 0.00) 50%, rgba(0, 0, 0, 0.56) 70.24%, rgba(0, 0, 0, 0.80) 100%);
	z-index: 1;
}

.collection-item-image figure{
	position: relative; background: #000; border-radius: 25px 25px 0 0;
	min-height: 315px; display: flex; align-items: center; justify-content: center;
}
.collection-item-image figure img{
	max-width: 100%; border-radius: 20px 20px 0 0;
	transition: all 0.8s ease-in-out;
}

.collection-item:hover .collection-item-image figure img{
	/*transform: scale(1.05) rotate(2deg);*/
	opacity: 0.8;
}

.collection-items-list .col-xl-4:nth-child(3n + 2) .collection-item:hover .collection-item-image figure img{
	transform: scale(1.05) rotate(-2deg);
}

.collection-item-content{
	position: relative; min-height: 130px; padding: 20px 10px 0px 10px;
	z-index: 2;
}

.collection-item-content h2{
	font-size: 23px;
	line-height: 1.4em; margin-bottom: 0;
}
.collection-item-content h2 a{
	color: var(--accent-color);
	transition: all 0.3s ease-in-out;
}
.collection-item-content h2 a:hover{
	color: #000;
}

.collection-item-content p{
	margin: 5px 0 0 0; text-align: center;
}

.section-footer-text{
	margin-top: 30px;
	text-align: center;
}

.section-footer-text p{
	color: var(--primary-color);
	margin-bottom: 0;
}

.section-footer-text p span{
	display: inline-block;
	font-size: 16px;
	font-weight: 700;
	line-height: 1em;
	color: var(--white-color);
	background: var(--accent-color);
	border-radius: 100px;
	padding: 4px 10px;
	margin-right: 10px;
}

.section-footer-text p a{
	display: inline-block;
	font-weight: 700;
	text-transform: capitalize;
	text-decoration: underline;
	text-underline-offset: 3px;
	color: var(--accent-color);
	transition: all 0.3s ease-in-out;
}

.section-footer-text p a:hover{
	color: var(--primary-color);
}

.section-footer-text ul{
	width: 100%;
	padding: 0;
	margin: 10px 0 0;
	list-style: none;
}

.section-footer-text ul li{
	display: inline-block;
	line-height: normal;
	font-weight: 600;
	color: var(--primary-color);
	margin-right: 10px;
}

.section-footer-text .section-footer-border-list li{
	border-right: 1px solid var(--divider-color);
	padding-right: 10px;
}

.section-footer-text .section-footer-border-list li:last-child{
	padding-right: 0;
	border-right: none;
	margin-right: 0;
}

.section-footer-text ul li b{
	font-weight: 600;
}

.section-footer-text ul li i{
	width: auto;
	font-size: 16px;
	color: var(--accent-color);
}

.satisfy-client-images{
	display: inline-flex;
	align-items: center;
}

.satisfy-client-image{
	position: relative;
	display: inline-block;
	border: 1px solid var(--white-color);
	border-radius: 50%;
	margin-left: -14px;
	overflow: hidden;
	z-index: 1;
}

.satisfy-client-image:first-child{
	margin-left: 0;
}

.satisfy-client-image figure{
	display: block;
}

.satisfy-client-image img{
	width: 100%;
	max-width: 50px;
}

.satisfy-client-image.add-more{
	background-color: var(--accent-color);
	width: 52px;
	height: 52px;
	display: flex;
    align-items: center;
    justify-content: center;
    margin-left: -10px;
}

.satisfy-client-image.add-more img{
	max-width: 18px;
}

.satisfy-client-image.add-more i{
	font-size: 18px;
	color: var(--white-color);
}

.section-footer-text.section-satisfy-img{
	display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.section-footer-text.section-satisfy-img .satisfy-client-image figure img{
	max-width: 30px;
}

.section-footer-text.section-satisfy-img .satisfy-client-image.add-more{
	width: 32px;
	height: 32px;
}

.section-footer-text.section-satisfy-img .satisfy-client-image.add-more img{
	max-width: 16px;
}

.section-footer-text.section-satisfy-img .satisfy-client-image.add-more i{
	font-size: 14px;
}

.section-footer-text.section-satisfy-img ul{
	margin: 5px 0 0;
}

.dark-section .section-footer-text p,
.dark-section .section-footer-text ul li{
	color: var(--white-color);
}

.dark-section .section-footer-text p a:hover{
	color: var(--white-color);
}

.dark-section .section-footer-text ul li{
	border-color: var(--dark-divider-color);
}

.dark-section .satisfy-client-image{
	border-color: var(--primary-color);
}

/************************************/
/***     08. Why Choose Us css    ***/
/************************************/

.why-choose-us{
	background: var(--white-color);
	padding: 60px 0 80px 0;
}

.why-choose-items-list{
	display: flex;
	flex-wrap: wrap;
	gap: 80px;
}

.why-choose-item{
	width: 100%;
}

.why-choose-item-header{
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 15px;
	margin-bottom: 20px;
}

.why-choose-item .icon-box img{
	width: 100%;
	max-width: 50px;
}

.why-choose-item-counter-title{
	width: calc(100% - 65px);
}

.why-choose-item-counter-title h2{
	font-size: 30px;
}

.why-choose-item-title h3{
	font-size: 16px;
}

.why-choose-item-content{
	border-top: 1px solid var(--divider-color);
	padding-top: 20px;
	margin-top: 20px;
}

.why-choose-item-content p:last-child{
	margin: 0;
}

.why-choose-author-box{
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 20px;
	border-top: 1px solid var(--divider-color);
	padding-top: 40px;
	margin-top: 40px;
}

.why-choose-author-image figure{
	display: block;
	border-radius: 50%;
}

.why-choose-author-image figure img{
	width: 100%;
	max-width: 100px;
	aspect-ratio: 1 / 1;
	object-fit: cover;
	border-radius: 50%;
}

.why-choose-author-content{
	width: calc(100% - 120px);
}

.why-choose-author-content h3{
	font-size: 22px;
}

.why-choose-author-content p{
	margin: 15px 0 0 0;
}

.why-choose-image{
	text-align: center;
	max-width: 525px;
	margin: 0 auto;
}

.why-choose-image figure{
	display: block;
	border-radius: 20px;
}

.why-choose-image figure img{
	width: 100%;
	aspect-ratio: 1 / 1.048;
	object-fit: cover;
	border-radius: 20px;
}

/************************************/
/***    09. Our Exhibitions css   ***/
/************************************/

.our-exhibitions{
	background: var(--bg-color); padding: 60px 0 70px;
}

.exhibition-item{
	display: flex;
	flex-direction: column;
	border-radius: 200px;
	gap: 10px;
	height: calc(100% - 30px);
	margin-bottom: 30px;
	overflow: hidden;
}

.exhibition-items-list .col-xl-4:nth-child(3n + 2) .exhibition-item{
	flex-direction: column-reverse;
}

.exhibition-item-header{
	background: linear-gradient(180deg, rgba(255, 255, 255, 0.05) 34.24%, rgba(0, 0, 0, 0.00) 100%), rgba(255, 255, 255, 0.05);
	backdrop-filter: blur(15px);
	-webkit-backdrop-filter: blur(15px);
	text-align: center;
	padding: 45px;
	padding-top: 60px;
}

.exhibition-items-list .col-xl-4:nth-child(3n + 2) .exhibition-item .exhibition-item-header{
	background: linear-gradient(0deg, rgba(195, 36, 45, 0.10) 34.24%, rgba(0, 0, 0, 0.00) 100%), rgba(255, 255, 255, 0.05);
	padding-top: 45px;
	padding-bottom: 60px;
}

.exhibition-item-header .icon-box{
	margin-bottom: 50px;
}

.exhibition-item-header .icon-box img{
	width: 100%;
	max-width: 50px;
}

.exhibition-item-content h3{
	font-size: 16px;
	color: var(--white-color);
}

.exhibition-item-content p{
	color: var(--white-color);
	margin: 10px 0 0 0;
}

.exhibition-item-image{
	height: 100%;
}

.exhibition-item-image figure{
	display: block;
	height: 100%;
	overflow: hidden;
}

.exhibition-item-image figure img{
	width: 100%;
	height: 100%;
	aspect-ratio: 1 / 0.72;
	object-fit: cover;
	transition: all 0.6s ease-in-out;
}

.exhibition-item:hover .exhibition-item-image figure img{
	transform: scale(1.05) rotate(2deg);
}

/************************************/
/***       10. Our Events css     ***/
/************************************/

.our-events{
	background: var(--bg-color);
	padding: 60px 0 70px;
}
.event-item{
	background: var(--white-color);
	border-radius: 20px;
	height: calc(100% - 30px);
	margin-bottom: 30px;
	padding: 10px;
}

.event-item-header{
	position: relative;
	margin-bottom: 10px;
}

.event-item-image a,
.event-item-image figure{
	display: block;
	border-radius: 10px;
	overflow: hidden;
	cursor: none;
}

.event-item-image figure img{
	width: 100%;
	object-fit: cover;
	border-radius: 10px;
	aspect-ratio: 1 / 0.745;
	transition: all 0.6s ease-in-out;
}

.event-item:hover .event-item-image figure img{
	transform: scale(1.06) rotate(2deg);
}
.event-item-btn{
	position: absolute;
	top: 20px;
	right: 20px;
	transform: scale(0);
	transition: all 0.4s ease-in-out;
	z-index: 1;
}
.event-item:hover .event-item-btn{
	transform: scale(1);
}
.event-item-btn a{
	display: inline-block;
	background: var(--accent-color);
	border-radius: 50%;
	width: 50px;
	height: 50px;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: all 0.4s ease-in-out;
}
.event-item-btn a:hover{
	background: var(--primary-color);
}
.event-item-btn a img{
	width: 100%;
	max-width: 16px;
	transition: all 0.4s ease-in-out;
}
.event-item-btn a:hover img{
	transform: rotate(45deg);
}

.event-item-body{
	padding: 20px 0px;
}

.event-item-content h2{
	font-size: 20px; line-height: 1.3em; text-transform: none;
}

.event-item-content h2 a{
	color: inherit;
}
.event-item-content h2 a:hover { color: var(--accent-color); }

.event-item-content p{
	margin: 8px 0 0;
}

.event-item-meta{
	margin-top: 20px;
}

.event-item-meta ul{
    list-style: none;
    padding: 0;
    margin: 0;
}

.event-item-meta ul li{
	display: flex;
	align-items: center;
	gap: 10px;
	align-items: center;
    line-height: 1.5em;
	margin-bottom: 15px;
}
.event-item-meta ul li:last-child{
	margin-bottom: 0;
}
.event-item-meta ul li img{
	max-width: 22px;
}

/************************************/
/***       11. Our Team css       ***/
/************************************/

.our-team { padding: 60px 0 70px; }
.team-item { text-align: center; height: calc(100% - 30px); margin-bottom: 30px; padding-bottom: 10px; }
.team-item-header{ position: relative; margin-bottom: 10px; overflow: hidden; }
.team-item-image a, .team-item-image figure { position: relative; display: block; border-radius: 20px; overflow: hidden; }
.team-item-image figure::before{
    content: ""; position: absolute; top: 0; bottom: 0; left: 0; right: 0; border-radius: 20px;
	background: linear-gradient(180deg, rgba(0, 0, 0, 0.00) 50%, rgb(0 0 0 / 4%) 70.24%, rgba(0, 0, 0, 0.80) 100%);
    width: 100%; height: 100%; transition: all 0.6s ease-in-out; z-index: 1; 
}
.team-item-image a{ cursor: none; }
.team-item-image img{ width: 100%; aspect-ratio: 1 / 1.155; object-fit: cover; transition: all 0.6s ease-in-out; }
.team-item:hover .team-item-image img{ transform: scale(1.04); }

.team-item-social-list { position: absolute; right: 20px; bottom: 20px;	left: 20px; transform: translateY(100%) scaleY(0); transition: all 0.4s ease-in-out; z-index: 1; }
.team-item:hover .team-item-social-list{ transform: translateY(0%) scaleY(1); }
.team-item-social-list ul{ list-style: none; margin: 0;	padding: 0; display: flex; flex-wrap: wrap;	align-items: center; justify-content: center; gap: 12px; }
.team-item-social-list ul li a{ width: 40px; height: 40px; border: 1px solid var(--dark-divider-color); background: var(--divider-color); backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px); color: var(--white-color); border-radius: 50%; display: flex; align-items: center; justify-content: center;	cursor: pointer; transition: all 0.4s ease-in-out; }
.team-item-social-list ul li a:hover{ background: var(--accent-color); }
.team-item-social-list ul li a i{ font-size: 19px; color: inherit; }
.team-item-content{ text-align: center; }
.team-item-content h2 { font-size: 22px; margin-bottom: 5px; /*color: var(--white-color);*/ }
.team-item-content h6 { font-size: 14px; line-height: 1.3; font-style: italic; display: inline-block; color: var(--accent-color); background: var(--bg-color); border-radius: 15px; padding: 3px 10px; min-width: 50%; }
.team-item-content h2 a{ color: inherit; }
.team-item-content h2 a:hover { color: var(--accent-color); }
.team-item-content p { font-size: 14px; line-height: 1.4; margin: 8px 0 0; text-align: center; }

/************************************/
/***      12. Who We Are css      ***/
/************************************/

.who-we-are{ background: var(--white-color); position: relative; padding: 50px 0; overflow: hidden; }
.who-we-are::before{
	content: '';
    position: absolute;
    bottom: -30px;
    left: 0px;
    width: 450px;
    height: 400px;
    background-image: url('../images/section-bg-image-shape-2.webp');
    background-repeat: no-repeat;
    background-position: center center;
	z-index: 2;
}

.who-we-are-box{
	position: relative;
}

.who-we-are-title{
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
}

.who-we-are-title h2{
	position: relative;
	font-size: 19.792vw;
	line-height: 1.3em;
	color: var(--divider-color);
	transition: all 0.5s ease-in-out;

	text-transform: uppercase;
}

.who-we-are-title h2::before{
    content: attr(data-text);
    position: absolute;
    top: 0;
    left: 0;
    color: var(--accent-color);
    width: 0;
    overflow: hidden;
    white-space: nowrap;
    transition: width 0.5s ease-in-out;

    text-transform: uppercase;
}

.who-we-are-box:hover .who-we-are-title h2::before{
    width: 100%;
}

.who-we-are-image-boxes{
	position: relative;
	max-width: 740px;
	margin: 0 auto;
	padding: 20px 0;
	z-index: 3;
}

.who-we-are-image-box-1,
.who-we-are-image-box-2{
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
}

.who-we-are-image-box-2{
	margin-top: -38px;
}

.who-we-are-image{
	width: 250px;
	transition: all 0.8s ease-in-out;
}

.who-we-are-image.img-1{
	transform: rotate(-10deg);
	margin-right: -10px;
}

.who-we-are-image-boxes:hover .who-we-are-image.img-1{
	transform: translateY(-15px);
}

.who-we-are-image.img-2{
	transform: rotate(10deg);
	margin-left: -10px;
}
.who-we-are-image-boxes:hover .who-we-are-image.img-2{
	transform: translateY(-15px);
}

.who-we-are-image.img-3{
	transform: rotate(-10deg);
	margin-right: -30px;
}

.who-we-are-image-boxes:hover .who-we-are-image.img-3{
	transform: rotate(0deg) translateY(15px);
}

.who-we-are-image.img-4{
	position: relative;
	z-index: 3;
}

.who-we-are-image-boxes:hover .who-we-are-image.img-4{
	transform: translateY(15px);
}

.who-we-are-image.img-5{
	transform: rotate(10deg);
	margin-left: -30px;
}

.who-we-are-image-boxes:hover .who-we-are-image.img-5{
	transform: translateY(15px);
}

.who-we-are-image figure{
	display: block;
	border: 10px solid var(--white-color);
	transition: all 1s ease-in-out;
}

.who-we-are-image figure img{
	width: 100%;
	/*aspect-ratio: 1 / 1.41;
	object-fit: cover;*/
}

.who-we-are .section-footer-text{
	position: relative;
	margin-top: 40px;
	z-index: 3;
}

/************************************/
/***   13. Our Testimonials css   ***/
/************************************/

.our-testimonials{
	padding: 50px 0;
}

.testimonial-slider .swiper .swiper-wrapper{
	cursor: none;
}

.testimonial-item{
	height: 100%;
	min-height: 385px;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	gap: 30px;
	background-color: var(--dark-divider-color);
	background-image: url('../images/icon-testimonial-item-quote.svg');
	background-repeat: no-repeat;
	background-position: top 30% center;
	background-size: 240px auto;
	backdrop-filter: blur(10px);
	-webkit-backdrop-filter: blur(10px);
	border-radius: 20px;
	padding: 40px;
}

.testimonial-item-rating{
	margin-bottom: 15px;
}

.testimonial-item-rating i{
	width: auto;
	font-size: 16px;
    color: var(--accent-color);
}

.testimonial-item-content p{
	font-size: 18px;
	font-weight: 500;
	color: var(--white-color);
}

.testimonial-item-content p:last-child{
	margin: 0px;
}

.testimonial-item-author{
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 15px;
	border-top: 1px solid var(--dark-divider-color);
	padding-top: 30px;
}

.testimonial-author-image figure{
	display: block;
	border-radius: 50%;
}

.testimonial-author-image img{
	width: 100%;
	max-width: 50px;
	aspect-ratio: 1 / 1;
	object-fit: cover;
	border-radius: 50%;
}

.testimonial-author-content{
	width: calc(100% - 65px);
}

.testimonial-author-content h2{
	font-size: 16px;
	color: var(--white-color);
}

.testimonial-author-content p{
	line-height: normal;
	color: var(--white-color);
	margin: 5px 0 0;
}

.our-testimonials .section-footer-text{
	margin-top: 60px;
}

/************************************/
/***       14. Our Blog css       ***/
/************************************/

.our-blog{
	padding: 60px 0 70px; border-top: 1px solid #ccc;
}

.post-item{
	position: relative;
	background-color: var(--divider-color);
	border-radius: 20px;
	height: calc(100% - 30px);
    margin-bottom: 30px;
	overflow: hidden;
}

.post-featured-image a{
	cursor: none;
    display: block;
    overflow: hidden;
}

.post-featured-image figure{
	position: relative;
	display: block;
}

.post-featured-image figure::before{
	content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
	background: linear-gradient(180deg, rgba(13, 13, 13, 0.00) 53.65%, rgba(13, 13, 13, 0.67) 69.05%, rgba(13, 13, 13, 0.90) 100%);
    width: 100%;
    height: 100%;
    transition: all 0.6s ease-in-out;
    z-index: 1;
}

.post-featured-image img{
	width: 100%;
    aspect-ratio: 1 / 1.2;
    object-fit: cover;
    transition: all 0.8s ease-in-out;
}

.post-item:hover .post-featured-image img{
	transform: scale(1.05) rotate(2deg);
}

.post-item-body{
	position: absolute;
	bottom: 40px;
	left: 40px;
	right: 40px;
	z-index: 2;
}

.post-item-content h2{
    font-size: 16px;
	line-height: 1.8em;
	color: var(--white-color);
}

.post-item-content h2 a{
    color: inherit;
}

.post-item-btn{
	border-top: 1px solid var(--dark-divider-color);
	margin-top: 20px;
	padding-top: 20px;
}

/************************************/
/***         15. Footer css       ***/
/************************************/

.main-footer{ background: #621616; padding: 70px 0 30px 0px; }
.footer-header{
	display: flex; flex-wrap: wrap;	justify-content: space-between; align-items: center;
	gap: 25px; border-bottom: 1px solid var(--dark-divider-color);
	padding-bottom: 70px; margin-bottom: 70px;
}

.footer-header .section-title{
	max-width: 525px;
	margin-bottom: 0;
}

.footer-newsletter-box{
	width: 100%;
	max-width: 415px;
}

.footer-newsletter-box h3{
	font-size: 16px;
	color: var(--white-color);
	margin-bottom: 20px;
}

.footer-newsletter-box .form-group{
	display: flex;
}

.footer-newsletter-box .form-group .form-control{
	width: calc(100% - 50px);
	font-size: 16px;
	line-height: 1.5em;
	color: var(--white-color);
	background: var(--dark-divider-color);
	backdrop-filter: blur(30px);
	-webkit-backdrop-filter: blur(30px);
	border-radius: 40px;
	border: none;
	outline: none;
	box-shadow: none;
	padding: 6px 15px 6px 20px;
}

.footer-newsletter-box .form-group .form-control::placeholder{
	color: var(--white-color);
	opacity: 50%;
}

.footer-newsletter-box .form-group .newsletter-btn{
	width: 50px;
	height: 50px;
	display: flex;
	justify-content: center;
	align-items: center;
	background-color: var(--accent-color);
	border: none;
	padding: 0;
	border-radius: 50%;
	transition: all 0.4s ease-in-out;
}

.footer-newsletter-box .newsletter-btn:hover{
	background-color: var(--white-color);
}

.footer-newsletter-box .form-group .newsletter-btn i{
	font-size: 24px;
	color: var(--white-color);
	transition: all 0.4s ease-in-out;
}

.footer-newsletter-box .newsletter-btn:hover i{
	color: var(--accent-color);
}
.main-footer { position: relative; }
.footer-links h2{position:relative;padding-bottom:20px}

.footer-links h2:before {
	content: '';
    position: absolute;
    left: 0;
    width: 30px;
    height: 5px;
    background: #e21212;
    bottom: -2px;
    animation: lineMove 4s linear infinite;
    z-index: 1;

    border-radius: 10px;
}

@keyframes lineMove{
    0%{
        left: 0;
    }
    50%{
        left: 35px;
    }
    100%{
        left: 0;
    }
}




.footer-links h2:after {
	content: '';
    position: absolute;
    left: 0;
    width: 165px;
    height: 1px;
    bottom: 0;
    background: rgba(255, 255, 255, 0.8);
    z-index: 0;
}



.main-footer.dark-section::before {
    content: "";
	position: absolute;
	left: 20%;
	right: 20%;
	top: 0px;
	height: 40px;
	background: #fe0000;
	clip-path: polygon(100% 0, 0 0, 50% 100%);
	z-index: 1;
}
.footer-logo img{
    max-width: 100%;
}
.about-footer-content{
	margin-top: 20px;
}

.about-footer-content p{
	color: var(--white-color);
	margin-bottom: 0;
}

.footer-social-links{
	margin-top: 50px;
}

.footer-social-links ul{
	list-style: none;
	display: flex;
	align-items: center;
	gap: 15px;
	padding: 0;
	margin: 0;
}

.footer-social-links ul li a{
	width: 40px;
	height: 40px;
	color: #395498;
	background: var(--white-color);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: all 0.4s ease-in-out;
}
.footer-social-links ul li:nth-child(2) a { color: #2d74b0 }
.footer-social-links ul li:nth-child(3) a i{ font-size: 22px;
	background: linear-gradient(45deg, #f9ce34, #ee2a7b, #6228d7);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent; }
.footer-social-links ul li:nth-child(4) a { color: #000 }
.footer-social-links ul li:nth-child(5) a { color: #ff0000 }
.footer-social-links ul li a:hover{ transform: scale(1.1) rotate(-15deg); }

.footer-social-links ul li a i{
	font-size: 18px;
	color: inherit;
}

.footer-links-box{
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	gap: 30px;
	margin-left: 60px;
}

.footer-opening-hour-box,
.footer-links{
	max-width: 30%;
}

.footer-links h2{
	font-size: 22px;
	color: var(--white-color);
	margin-bottom: 25px;
}

.footer-links ul{
	list-style: none;
	margin: 0;
	padding: 0 0 0 10px;
}
.footer-links ul li{
	font-size: 14px;
	line-height: 1.4em;
	color: var(--white-color);
	margin-bottom: 9px;
	position: relative;
	padding-left: 20px;
}

.footer-links ul li:last-child{
	margin-bottom: 0;
}

.footer-links ul li:before{ content: "\f101"; font-family: "Font Awesome 6 Pro"; font-weight: 400; margin-right: 10px; font-size: 12px; position: absolute; left: 0; }
.footer-links ul.contactlist li { padding-left: 0px; }
.footer-links ul.contactlist li:before{ display: none; }

.footer-links ul li::marker{ color: #fff; }

.footer-links ul li a{
	color: inherit;
	transition: all 0.3s ease-in-out;
}

.footer-links ul li a:hover{
	color: #ff9ea4;
}

.footer-opening-hour-box .footer-links{
	max-width: 100%;
	margin-bottom: 40px;
}

.footer-opening-hour-box .footer-links:last-child{
	margin-bottom: 0;
}

.footer-opening-hour-box .footer-links ul{
	list-style: none;
	padding: 0;
}

.footer-opening-hour-box .footer-links ul li{
	line-height: 1.6em;
}

.footer-opening-hour-box .footer-links ul li span{
	display: block;
	width: 100%;
}

.footer-copyright{
    /* border-top: 1px solid var(--dark-divider-color); */

    padding: 12px 0;
    /*background: linear-gradient(90deg, rgb(211 25 25) 0%, #621616 50%, rgb(211 25 25) 100%);*/

    background: linear-gradient(90deg, rgb(211 25 25) 0%, #621616 48%, #621616 60%, rgb(211 25 25) 100%);
    margin-top: 40px;
	border-radius: 12px;
}

.chat-icon {
    position: fixed;
    display: inline-block;
    right: 18px;
    bottom: 97px;
    z-index: 99;
}
 
.chat-icon a {
    position: relative;
    display: inline-block;
    width: 50px;
    height: 50px;
    line-height: 50px;
    text-align: center;
    font-size: 32px;
    color: #fff;
    border-radius: 50%;
    box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.20);
    background: #29d143;
    animation: rotate 5s infinite;
}
@keyframes rotate {50% {transform: rotate(180deg);}}
 

.backToTopBtn:not(.active) {
    z-index: 9990;
    opacity: 1;
    pointer-events: auto;
}

.backToTopBtn {
    position: fixed;
    bottom: 29px;
    right: 15px;
    z-index: 1;
    height: 52px;
    width: 52px;
    border-radius: 44px;
    font-size: 20px;
    border: 2px solid var(--white-color);
    color: rgb(255, 255, 255);
	background-color: #f70000;
    transition: 0.5s;
    cursor: pointer;
}
.backToTopBtn:hover {
    background: #f70000;
}



.footer-copyright-text p{
	color: var(--white-color);
	margin-bottom: 0;
}

/************************************/
/*** 	16. About Us Page css     ***/
/************************************/

.page-header{
	position: relative;
	background-image: url('../images/page-header-bg.jpg');
	background-position: center center;
	background-repeat: no-repeat;
	background-size: 100% auto;
	padding: 50px 0 59px;
	overflow: hidden;
}

.page-header-box h1{
	display: inline-block;
	font-size: 50px;
	color: var(--white-color);
	margin-bottom: 10px;
	cursor: none;
}

.page-header-box ol{
	margin: 0;
	padding: 0;
}

.page-header-box ol li.breadcrumb-item{ font-size: 16px; font-weight: 400; line-height: normal; text-transform: capitalize; color: var(--white-color); margin-left: 8px; }

.page-header-box ol li.breadcrumb-item a{
    color: inherit;
}
.page-header-box ol li.breadcrumb-item a:hover { color: var(--accent-color); text-decoration: underline; }

.page-header-box ol .breadcrumb-item+.breadcrumb-item::before{
	content: "\f054"; font-family: "Font Awesome 6 Pro"; font-weight: 900; color: #ff5959; font-size: 10px; margin: 6px 5px 0 0; }

.our-approach{
    padding: 50px 0;
}

.approach-item{
	min-height: 400px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 30px;
    background: var(--dark-divider-color);
	backdrop-filter: blur(30px);
	-webkit-backdrop-filter: blur(30px);
    border-radius: 20px;
	height: calc(100% - 30px);
	margin-bottom: 30px;
    overflow: hidden;
    padding: 40px;
	transition: all 0.6s ease-in-out;
}

.approach-item:hover{
	transform: scale(1.01);
}

.approach-item .icon-box img{
	max-width: 100px;
	max-height: 50px;
}

.approach-item-content h3{
    font-size: 16px;
	color: var(--white-color);
}

.approach-item-content p{
	color: var(--white-color);
	margin: 10px 0 0 0;
}

.approach-item-content ul{
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    list-style: none;
	border-top: 1px solid var(--dark-divider-color);
    margin: 40px 0 0 0;
    padding: 40px 0 0 0;
}

.approach-item-content ul li{
    position: relative;
	display: inline-block;
	font-size: 14px;
	font-weight: 500;
	line-height: 1em;
	text-transform: capitalize;
	color: var(--white-color);
	border: 1px solid var(--dark-divider-color);
	border-radius: 100px;
	padding: 9px 20px 9px 45px;
}

.approach-item-content ul li::before{
	content: '';
    position: absolute;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
    background: url('../images/icon-sub-heading.svg') no-repeat;
	background-position: center center;
	background-size: cover;
    width: 16px;
    height: 16px;
}

.our-history{
	padding: 50px 0;
}

.our-history-content{
	height: 100%;
	align-content: center;
	margin-right: 15px;
}

.history-items-list{
	display: flex;
	flex-wrap: wrap;
	gap: 30px;
}

.history-item{
	width: 100%;
	height: 100%;
	background: var(--secondary-color);
	border-radius: 10px;
	display: flex;
	/*flex-wrap: wrap;*/
	align-items: center;
	gap: 5px;
	padding: 20px 10px 20px 15px;
}

.history-item-content{
	width: calc(100% - 73px);
}

.history-item-content h2{
	font-size: 16px;
}

.history-item-content p{
	line-height: normal;
	margin: 10px 0 0 0;
}

.history-btn{
	margin-top: 60px;
}

.history-images-boxes{
	display: flex;
	flex-wrap: wrap;
	align-items: end;
}

.history-image.box-1{
	width: 58%;
	height: 100%;
}

.history-image.box-2{
	position: relative;
	width: 42%;
	margin-bottom: 25px;
	z-index: 2;
}

.history-image figure{
	display: block;
	border-radius: 20px;
}

.history-image figure img{
	width: 100%;
	aspect-ratio: 1 / 1.115;
	object-fit: cover;
	border-radius: 20px;
}

.history-image.box-1 figure{
	height: 100%;
	margin-right: -180px;
}

.history-image.box-2 figure{
	border: 6px solid var(--bg-color);
	border-radius: 26px;
}

.history-image.box-2 figure img{
	aspect-ratio: 1 / 1.01;
}

.history-image.box-2 .video-play-button{
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
}





.video-play-button a{
	position: relative;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 15px;
	cursor: none;
	z-index: 1;
}

.video-play-button a span{
	position: relative;
	height: 40px;
	width: 40px;
	background: var(--accent-color);
	border-radius: 50%;
	color: var(--white-color);
	display: flex;
	justify-content: center;
	align-items: center;
}

.video-play-button a span.bg-effect{
	position: relative;
}

.video-play-button a span.bg-effect:before,
.video-play-button a span.bg-effect:after{
	content: '';
	position: absolute;
    width: 150%;
    height: 150%;
    border: 25px solid var(--white-color);
	opacity: 50%;
	border-radius: 50%;
	transform: scale(0.6);
	z-index: -1;
	animation: border-zooming 1.2s infinite linear;
}

.video-play-button a span.bg-effect:after{
	animation-delay: .3s;
}

@keyframes border-zooming{
	100%{
		transform: scale(1);
		opacity: 0;
	}
}

.video-play-button a span i{
	font-size: 14px;
	color: inherit;
	margin-left: 2px;
}

.video-play-button p{
	font-family: var(--accent-font);
	font-weight: 600;
	color: var(--white-color);
	margin: 0;
}

.our-faqs{
	padding: 50px 0;
}

.faq-content-box{
    height: 100%;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
}

.faq-cta-box{
    max-width: 330px;
    background-color: var(--primary-color);
    border-radius: 20px;
    padding: 30px;
    z-index: 1;
}

.faq-cta-box-title h2{
	font-size: 16px;
	color: var(--white-color);
}

.faq-cta-btn{
	margin-top: 25px;
}

.our-faqs .faq-accordion{
	margin-left: 40px;
}

.faq-accordion .accordion-item{
    position: relative;
    background: var(--secondary-color);
    border-radius: 10px;
    margin-bottom: 20px;
    overflow: hidden;
}

.faq-accordion .accordion-item:last-child{
    margin-bottom: 0;
}

.faq-accordion .accordion-header .accordion-button{
	font-size: 16px;
    font-weight: 400;
    line-height: 1.75em;
    background: transparent;
    color: var(--primary-color);
    padding: 20px 55px 20px 30px;
    transition: all 0.4s ease-in-out;
}

.faq-accordion .accordion-item .accordion-button::after,
.faq-accordion .accordion-item .accordion-button.collapsed::after{
    content: '\2b';
    font-family: 'Font Awesome 7 Free';
    position: absolute;
    right: 30px;
    top: 50%;
    font-size: 20px;
    font-weight: 600;
    transform: translateY(-50%);
    color: var(--primary-color);
    transition: all 0.4s ease-in-out;
}

.faq-accordion .accordion-button:not(.collapsed)::after{
	content: '\f068';
}

.faq-accordion .accordion-item .accordion-body{ 
	border-top: 1px solid var(--divider-color);
    background-color: transparent;  
    padding: 20px 0px;
	margin: 0 30px;
}

.faq-accordion .accordion-item .accordion-body p:last-child{
    margin: 0;
}

.cta-box{
	padding: 100px 0 70px;
}

.cta-box-item{
	min-height: 360px;
	background: var(--secondary-color);
	border-radius: 20px;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	gap: 30px;
	height: calc(100% - 30px);
	margin-bottom: 30px;
	padding: 40px;
}

.cta-box-item .icon-box{
	position: relative;
	height: 60px;
	width: 60px;
	background-color: var(--bg-color);
	border-radius: 10px;
	display: flex;
	align-items: center;
	justify-content: center;
}

.cta-box-item .icon-box:before{
	content: '';
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--accent-color);
    border-radius: 10px;
    transform: scale(0);
    transition: all 0.4s ease-in-out;
}

.cta-box-item:hover .icon-box:before{
	transform: scale(1) rotate(180deg);
}

.cta-box-item .icon-box img{
	position: relative;
	width: 100%;
	max-width: 30px;
	transition: all 0.4s ease-in-out;
	z-index: 1;
}

.cta-box-item:hover .icon-box img{
	filter: brightness(1) invert(1);
}

.cta-box-item-content h3{
	font-size: 16px;
}

.cta-box-item-content p{
	margin: 10px 0 0 0;
}

.cta-box-item-content ul{
	list-style: none;
	padding: 0;
	margin: 40px 0 0 0;
}

.cta-box-item-content ul li{
	font-size: 18px;
	font-weight: 600;
	line-height: 1.4em;
	color: var(--primary-color);
	margin-bottom: 10px;
	transition: all 0.4s ease-in-out;
}

.cta-box-item-content ul li:last-child{
	margin-bottom: 0;
}

.cta-box-item-content ul li:hover{
	color: var(--accent-color);
}

.cta-box-item-content ul li a{
	color: inherit;
}

/************************************/
/***    17. Collection Page css   ***/
/************************************/

.page-collection{
    padding: 100px 0 70px;
}

/************************************/
/***   18. Collection Single css  ***/
/************************************/

.page-collection-single{
	padding: 50px 0;
}

.page-single-sidebar{
	position: sticky;
    top: 30px;
    margin-right: 25px;
}

.page-category-list{
	background: var(--secondary-color);
    border-radius: 20px;
    margin-bottom: 30px;
    overflow: hidden;
}

.page-category-list .page-category-list-title{
	font-size: 16px;
    line-height: normal;
	color: var(--white-color);
	background: var(--accent-color);
	padding: 17px 30px;
}

.page-category-list ul{
	list-style: none;
    margin: 0;
	padding: 30px;
}

.page-category-list ul li{
	line-height: 1.5em;
    border-bottom: 1px solid var(--divider-color);
    padding-bottom: 20px;
    margin-bottom: 20px;
}

.page-category-list ul li:last-child{
    border-bottom: none;
    margin: 0;
    padding: 0;
}

.page-category-list ul li a{
    position: relative;
    display: block;
    text-transform: capitalize;
	color: inherit;
    padding-right: 25px;
    transition: all 0.4s ease-in-out;
}

.page-category-list ul li a:hover{
    color: var(--accent-color);
}

.page-category-list ul li a::before{
    content: '';
    position: absolute;
    top: 50%;
    right: 0;
	background: url('../images/arrow-primary.svg') no-repeat;
    background-size: cover;
	background-position: center center;
    width: 12px;
    height: 12px;
	transform: translateY(-50%);
    transition: all 0.4s ease-in-out;
}

.page-category-list ul li a:hover::before{
    transform: translateY(-50%) rotate(45deg);
}

.sidebar-cta-box{
	position: relative;
    background: var(--primary-color) url('../images/sidebar-cta-bg-image.jpg') no-repeat;
	background-position: center center;
	background-size: 100% 100%;
    border-radius: 20px;
	min-height: 360px;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	gap: 30px;
    padding: 40px;
    overflow: hidden;
}

.sidebar-cta-box-header .icon-box img{
    position: relative;
    width: 100%;
    max-width: 50px;
    z-index: 1;
}

.sidebar-cta-box-content{
	border-top: 1px solid var(--dark-divider-color);
	padding-top: 30px;
}

.sidebar-cta-box-content h2{
    font-size: 16px;
	line-height: 1.7em;
	color: var(--white-color);
}

.sidebar-cta-box-content ul{
	list-style: none;
	padding: 0;
	margin: 30px 0 0 0;
}

.sidebar-cta-box-content ul li{
	display: flex;
	align-items: center;
	gap: 12px;
	font-size: 18px;
	font-weight: 600;
    line-height: 1.3em;
	color: var(--white-color);
	margin-bottom: 15px;
}

.sidebar-cta-box-content ul li:last-child{
	margin-bottom: 0;
}

.sidebar-cta-box-content ul li a{
	color: inherit;
	transition: all 0.4s ease-in-out;
}

.sidebar-cta-box-content ul li a:hover{
	color: var(--accent-color);
}

.sidebar-cta-box-content ul li img{
	max-width: 20px;
}

.page-single-image{
	margin-bottom: 40px;
}

.page-single-image figure{
	display: block;
	border-radius: 20px;
}

.page-single-image img{
	width: 100%;
	aspect-ratio: 1 / 0.6;
	object-fit: cover;
	border-radius: 20px;
}

.collection-entry{
    margin-bottom: 80px;
}

.collection-entry p{
    margin-bottom: 20px;
}

.collection-entry h2{
    font-size: 30px;
    margin-bottom: 20px;
}

.collection-entry h3{
    font-size: 16px;
	margin-bottom: 8px;
}

.collection-entry p:last-child,
.collection-entry h2:last-child,
.collection-entry h3:last-child{
    margin-bottom: 0;
}

.collection-entry ul{
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
	list-style: none;
    margin: 40px 0 0;
    padding: 0;
}

.collection-entry ul li{
    position: relative;
    width: calc(50% - 10px);
	font-family: var(--accent-font);
	line-height: 1.6em;
	text-transform: uppercase;
	color: var(--primary-color);
	padding-left: 35px;
}

.collection-entry ul li::before{
	content: '\f058';
    position: absolute;
    font-family: 'Font Awesome 7 Free';
    font-size: 22px;
    font-weight: 900;
    color: var(--accent-color);
    top: 0;
    left: 0;
}

.collection-highlights-box,
.collection-feature-box{
    margin-top: 80px;
}

.collection-highlights-counter-box{
	background: var(--secondary-color);
	border-radius: 20px;
	padding: 10px;
	margin-top: 40px;
}

.collection-highlights-image{
	margin-bottom: 10px;
}

.collection-highlights-image figure{
    display: block;
    border-radius: 14px;
}

.collection-highlights-image img{
    width: 100%;
    aspect-ratio: 1 / 0.43;
    object-fit: cover;
    border-radius: 14px;
}

.collection-highlights-item-list{
    display: flex;
	flex-wrap: wrap;
	gap: 40px 60px;
	padding: 20px;
}

.collection-highlights-item{
    position: relative;
	width: calc(33.33% - 40px);
	display: flex;
	flex-wrap: wrap;
	gap: 20px;
}

.collection-highlights-item::before{
	content: '';
	position: absolute;
	top: 0;
	bottom: 0;
	right: -30px;
	background: var(--divider-color);
	width: 1px;
	height: 100%;
}

.collection-highlights-item:nth-child(3n + 3):before,
.collection-highlights-item:last-child:before{
    display: none;
}

.collection-highlights-item .icon-box img{
    width: 100%;
    max-width: 50px;
}

.collection-highlights-item-content{
    width: calc(100% - 70px);
}

.collection-highlights-item-content h2{
	font-size: 30px;
    line-height: 1.5em;
	margin: 0;
}

.collection-highlights-item-content p{
	line-height: normal;
	margin: 5px 0 0 0;
}

.collection-feature-item-list{
	margin-top: 40px;
}

.collection-feature-item{
	display: flex;
	flex-wrap: wrap;
	gap: 15px;
    border-bottom: 1px solid var(--divider-color);
	margin-bottom: 40px;
	padding-bottom: 40px;
}

.collection-feature-item:last-child{
	border-bottom: none;
	margin-bottom: 0;
	padding-bottom: 0;
}

.collection-feature-item .icon-box img{
    width: 100%;
    max-width: 60px;
}

.collection-feature-item-content{
	width: calc(100% - 75px);
}
/************************************/
/*** 	 19. Blog Archive css     ***/
/************************************/

.page-blog{
    padding: 50px 0;
}

.page-pagination{
    margin-top: 30px;
    text-align: center;
}

.page-pagination ul{
    justify-content: center;
    padding: 0;
    margin: 0;
}

.page-pagination ul li a,
.page-pagination ul li span{
    display: flex;
    text-decoration: none;
    justify-content: center;
    align-items: center;
    background: var(--secondary-color);
    color: var(--primary-color);
	border-radius: 10px;
    width: 40px;
    height: 40px;
    font-weight: 600;
	line-height: 1em;
    margin: 0 5px;
    transition: all 0.3s ease-in-out;
}

.page-pagination ul li.active a, 
.page-pagination ul li a:hover{
    background: var(--accent-color);
	color: var(--white-color);
}

/************************************/
/*** 	 20. Blog Single css      ***/
/************************************/

.page-single-post{
	padding: 50px 0;
}

.post-single-meta ol li{
	font-size: 18px;
	color: var(--white-color);
	margin-right: 15px;
}

.post-single-meta ol li:last-child{
	margin-right: 0;
}

.post-single-meta ol li i{
	width: auto;
    font-size: 18px;
    color: var(--white-color);
    margin-right: 5px;
}

.post-image{
	position: relative;
	margin-bottom: 30px;
}

.post-image figure{
	display: block;	
	border-radius: 20px;
	overflow: hidden;
}

.post-image img{
	width: 100%;
	aspect-ratio: 1 / 0.5;
	object-fit: cover;
	border-radius: 20px;
}

.post-content{
	width: 100%;
	max-width: 1100px;
	margin: 0 auto;
}

.post-entry{
	border-bottom: 1px solid var(--divider-color);
	padding-bottom: 30px;
    margin-bottom: 30px;
}

.post-entry:after{
    content: '';
    display: block;
    clear: both;
}

.post-entry a{
    color: var(--accent-color);
}

.post-entry h1,
.post-entry h2,
.post-entry h3,
.post-entry h4,
.post-entry h5,
.post-entry h6{
	font-family: var(--accent-font);
	font-weight: 400;
	line-height: 1.5em;
	margin: 0 0 0.5em;
}

.post-entry h1{
	font-size: 50px;
}

.post-entry h2{
	font-size: 30px;
}

.post-entry h3{
	font-size: 242px;
}

.post-entry h4{
	font-size: 20px;
}

.post-entry h5{
	font-size: 24px;
}

.post-entry h6{
	font-size: 16px;
}

.post-entry p{
	margin-bottom: 20px;
}

.post-entry p:last-child{
	margin-bottom: 0;
}

.post-entry p strong{
	color: var(--primary-color);
	font-size: 18px;
	font-weight: 600;
}

.post-entry ol{
    margin: 0 0 30px;
}

.post-entry ul{
	padding: 0;
	margin: 20px 0 20px;
	padding-left: 20px;
}

.post-entry ol:last-child,
.post-entry ul:last-child{
    margin-bottom: 0;
}

.post-entry ol li,
.post-entry ul li{
    position: relative;
	font-size: 18px;
    line-height: 1.5em;
    color: var(--text-color);
    margin-bottom: 10px;
}

.post-entry ul li:last-child{
	margin-bottom: 0;
}

.post-entry ul ul,
.post-entry ul ol,
.post-entry ol ol,
.post-entry ol ul{
    margin-top: 20px;
    margin-bottom: 0;
}

.post-entry ul ul li:last-child,
.post-entry ul ol li:last-child,
.post-entry ol ol li:last-child,
.post-entry ol ul li:last-child{
    margin-bottom: 0;
}

.post-entry blockquote{
	background: var(--accent-color) url('../images/icon-blockquote.svg');
	background-repeat: no-repeat;
	background-position: 30px 30px;
    background-size: 45px;
	border-radius: 14px;
    padding: 30px 30px 30px 90px;
    margin-bottom: 20px;
}

.post-entry blockquote p{
	font-family: var(--accent-font);
	font-size: 16px;
	font-weight: 400;
	line-height: 2em;
	color: var(--white-color);
}

.post-entry blockquote p:last-child{
	margin-bottom: 0;
}

.tag-links{
	font-family: var(--accent-font);
    font-size: 16px;
	font-weight: 400;
    text-transform: capitalize;
	color: var(--primary-color);
	display: inline-flex;
	align-items: center;
	flex-wrap: wrap;
	gap: 15px;
}

.post-tags .tag-links a{
    display: inline-block;
	font-family: var(--default-font);
    font-size: 16px;
    font-weight: 500;
    text-transform: capitalize;
    line-height: 1em;
	background: var(--accent-color);
    color: var(--white-color);
	border-radius: 100px;
    padding: 12px 20px;
	transition: all 0.4s ease-in-out;
}

.post-tags .tag-links a:hover{
	background: var(--primary-color);
}

.post-social-sharing{
    text-align: right;
}

.post-social-sharing ul{
    list-style: none;
    padding: 0;
    margin: 0;
}

.post-social-sharing ul li{
    display: inline-block;
    margin-right: 10px;
}

.post-social-sharing ul li:last-child{
	margin-right: 0;
}

.post-social-sharing ul li a{
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
	border: 1px solid var(--divider-color);
    color: var(--primary-color);
	border-radius: 100px;
    width: 40px;
    height: 40px;
    transition: all 0.4s ease-in-out;
}

.post-social-sharing ul li:hover a{
	background: var(--accent-color);
	color: var(--white-color);
}

.post-social-sharing ul li a i{
    font-size: 18px;
    color: inherit;
}

/************************************/
/***      21. Events Page css     ***/
/************************************/

.page-events{
	padding: 100px 0 70px;
}

/************************************/
/***    22. Event Single css      ***/
/************************************/

.page-event-single{
	padding: 50px 0;
}

.event-category-item-list{
    padding: 30px;
}

.event-category-item{
    display: flex;
    flex-wrap: wrap;
	align-items: center;
    gap: 10px;
    border-bottom: 1px solid var(--divider-color);
    padding-bottom: 20px;
    margin-bottom: 20px;
}

.event-category-item img{
    width: 100%;
    max-width: 24px;
}

.event-category-item p{
	width: calc(100% - 34px);
	display: flex;
    flex-wrap: wrap;
	align-items: center;
    justify-content: space-between;
    gap: 5px;
	line-height: normal;
	margin: 0;
}

.event-category-item p span{
	display: block;
	font-weight: 600;
	color: var(--primary-color);
}

.event-category-social-links{
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	align-items: center;
	gap: 10px;
}

.event-category-social-links p{
	font-weight: 600;
	color: var(--primary-color);
	margin: 0;
}

.event-category-social-links ul{
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	padding: 0;
}

.event-category-social-links ul li{
	border: none;
	margin: 0;
	padding: 0;
}

.event-category-social-links ul li a{
	width: 30px;
	height: 30px;
	color: var(--primary-color);
	border: 1px solid var(--divider-color);
	border-radius: 50%;
	display: flex;
	justify-content: center;
	align-items: center;
	padding: 0;
}

.event-category-social-links ul li a:hover{
	color: var(--white-color);
	background: var(--accent-color);
}

.event-category-social-links ul li a::before{
	display: none;
}

.page-category-list .event-category-social-links ul li a i{
	font-size: 14px;
	color: inherit;
}

.event-entry{
    margin-bottom: 80px;
}

.event-entry p{
    margin-bottom: 20px;
}

.event-entry h2{
    font-size: 30px;
    margin-bottom: 20px;
}

.event-entry h3{
    font-size: 16px;
	margin-bottom: 8px;
}

.event-entry p:last-child,
.event-entry h2:last-child,
.event-entry h3:last-child{
    margin-bottom: 0;
}

.event-information-box,
.event-exhibition-box,
.event-featured-box{
	margin-top: 80px;
}

.event-info-items-list{
	display: flex;
	flex-wrap: wrap;
	gap: 30px;
	margin: 30px 0 25px;
}

.event-info-item{
	width: calc(50% - 15px);
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 15px;
	background: var(--secondary-color);
	border-radius: 20px;
	padding: 30px;
}

.event-info-item .icon-box{
	position: relative;
	height: 50px;
	width: 50px;
	background-color: var(--accent-color);
	border-radius: 10px;
	display: flex;
	align-items: center;
	justify-content: center;
	overflow: hidden;
}

.event-info-item .icon-box:before{
	content: '';
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--primary-color);
    border-radius: 10px;
    transform: scale(0);
    transition: all 0.4s ease-in-out;
}

.event-info-item:hover .icon-box:before{
	transform: scale(1) rotate(180deg);
}

.event-info-item .icon-box img{
	position: relative;
	width: 100%;
	max-width: 24px;
	transition: all 0.4s ease-in-out;
	z-index: 1;
}

.event-exhibition-items-list{
	display: flex;
	flex-wrap: wrap;
	gap: 30px;
	margin-top: 40px;
}

.event-exhibition-items-list .team-item{
	width: calc(33.33% - 20px);
	height: auto;
	margin: 0;
}

.event-exhibition-items-list .team-item .team-item-content h2{
	font-size: 16px;
	color: var(--primary-color);
	margin: 0px;
}

.event-exhibition-items-list .team-item .team-item-social-list ul{
	gap: 8px;
}

.event-exhibition-items-list .team-item .team-item-social-list ul li a{
	width: 36px;
	height: 36px;
}

.event-exhibition-items-list .team-item .team-item-content p{
	color: var(--text-color);
}

.event-feature-items-list{
	display: flex;
	flex-wrap: wrap;
	gap: 30px;
	margin-top: 40px;
}

.event-feature-item{
	position: relative;
	width: calc(50% - 15px);
	min-height: 330px;
	background-color: var(--secondary-color);
	border-radius: 20px;
	padding: 30px;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	gap: 30px;
	overflow: hidden;
}

.event-feature-item::before{
	content: '';
	position: absolute;
	right: 0;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 0;
	background: var(--accent-color);
	border-radius: 999px 999px 0 0;
	transition: all 0.4s ease-in-out;
}

.event-feature-item:hover:before{
	height: 100%;
	border-radius: 0;
}

.event-feature-item .icon-box{
	position: relative;
	z-index: 2;
}

.event-feature-item .icon-box img{
	width: 100%;
	max-width: 50px;
	transition: all 0.5s ease-in-out;
}

.event-feature-item:hover .icon-box img{
	filter: brightness(0) invert(1);
}

.event-feature-item-content{
	position: relative;
	border-top: 1px solid var(--divider-color);
	padding-top: 30px;
	transition: all 0.4s ease-in-out;
	z-index: 2;
}

.event-feature-item:hover  .event-feature-item-content{
	border-color: var(--dark-divider-color);
}

.event-feature-item-content h3,
.event-feature-item-content p{
	transition: all 0.3s ease-in-out;
}

.event-feature-item:hover .event-feature-item-content h3,
.event-feature-item:hover .event-feature-item-content p{
	color: var(--white-color);
}

/************************************/
/***    	23. Team Page css     ***/
/************************************/

.page-team{
	padding: 100px 0 70px;
}

.page-team .team-item-content h2{
	color: var(--primary-color);
}

.page-team .team-item-content p{
	color: var(--text-color);
}

/************************************/
/***  	24. Team Single css       ***/
/************************************/

.page-team-single{
	padding: 50px 0;
}

.team-single-image{
	margin-bottom: 30px;
}

.team-single-image figure{
	display: block;
	border-radius: 20px;
}

.team-single-image figure img{
	width: 100%;
	aspect-ratio: 1 / 1.155;
	object-fit: cover;
	border-radius: 20px;
}

.team-member-about{
	margin-bottom: 80px;
}

.team-contact-list{
	display: flex;
	flex-wrap: wrap;
	gap: 30px;
}

.team-contact-item{
	width: calc(50% - 15px);
	background: var(--secondary-color);
	border-radius: 20px;
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 15px;
	padding: 30px;
}

.team-contact-item .icon-box{
	position: relative;
	height: 50px;
	width: 50px;
	background-color: var(--accent-color);
	border-radius: 10px;
	display: flex;
	align-items: center;
	justify-content: center;
	overflow: hidden;
}

.team-contact-item .icon-box:before{
	content: '';
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--primary-color);
    border-radius: 10px;
    transform: scale(0);
    transition: all 0.4s ease-in-out;
}

.team-contact-item:hover .icon-box:before{
	transform: scale(1) rotate(180deg);
}

.team-contact-item .icon-box img{
	position: relative;
	width: 100%;
	max-width: 24px;
	transition: all 0.4s ease-in-out;
	z-index: 1;
}

.team-contact-item-content{
	width: calc(100% - 65px);
}

.team-contact-item-content h3{
	font-size: 16px;
}

.team-contact-item-content p{
	margin: 5px 0 0 0;
}

.team-member-expertise-box{
	margin-bottom: 80px;
}

.member-expertise-items-list{
	display: flex;
	flex-wrap: wrap;
	gap: 30px;
}

.member-expertise-item{
	width: calc(50% - 15px);
	display: flex;
	flex-wrap: wrap;
	gap: 15px;
}

.member-expertise-item .icon-box img{
	width: 100%;
	max-width: 50px;
}

.member-expertise-item-content{
	width: calc(100% - 65px);
}

.member-expertise-item-content h3{
	font-size: 16px;
}

.member-expertise-item-content p{
	margin: 8px 0 0 0;
}

.team-skillbar-image-box{
	display: flex;
	flex-wrap: wrap;
	gap: 30px 50px;
	border-top: 1px solid var(--divider-color);
	margin-top: 40px;
	padding-top: 40px;
}

.team-expert-skills-list,
.team-skillbar-image{
	width: calc(50% - 25px);
	align-content: center;
}

.skills-progress-bar{
	margin-bottom: 30px;
}

.skills-progress-bar:last-child{
	margin-bottom: 0px;
}

.skills-progress-bar .skill-data{
    display: flex;
	align-items: center;
    justify-content: space-between;
    gap: 15px;
    margin-bottom: 15px;
}

.skills-progress-bar .skill-data .skill-title,
.skills-progress-bar .skill-data .skill-no{
	font-size: 16px;
	font-weight: 400;	
    line-height: normal;
}

.skills-progress-bar .skillbar .skill-progress{
    position: relative;
    width: 100%;
    height: 10px;
    background: var(--white-color);
    border-radius: 10px;
    overflow: hidden;
}

.skills-progress-bar .skillbar .skill-progress .count-bar{
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    background: var(--accent-color);
    border-radius: 10px;
}

.team-skillbar-image figure{
	display: block;
	height: 100%;
	border-radius: 20px;
}

.team-skillbar-image figure img{
	width: 100%;
	height: 100%;
	aspect-ratio: 1 / 0.61;
	object-fit: cover;
	border-radius: 20px;
}

/************************************/
/***  25. Testimonials Page css   ***/
/************************************/

.page-testimonials{
	padding: 100px 0 70px;
}

.page-testimonials .testimonial-item{
	background-color: var(--secondary-color);
	background-image: url('../images/icon-testimonial-item-quote-2.svg');
	height: calc(100% - 30px);
	margin-bottom: 30px;
}

.page-testimonials .testimonial-item .testimonial-item-author{
	border-color: var(--divider-color);
}

.page-testimonials .testimonial-item .testimonial-author-content p,
.page-testimonials .testimonial-item .testimonial-item-content p{
	color: var(--text-color);
}

.page-testimonials .testimonial-item .testimonial-author-content h2{
	color: var(--primary-color);
}

/************************************/
/*** 	26. Image Gallery css     ***/
/************************************/

.page-gallery{
	padding: 100px 0 70px;
}

.page-gallery-box .photo-gallery{
	height: calc(100% - 30px);
	margin-bottom: 30px;
}

.page-gallery-box .photo-gallery a{
	cursor: none;
}

.page-gallery-box .photo-gallery figure{
	display: flex; align-items: center; justify-content: center;
	border-radius: 20px;
	min-height: 295px;
	border: 1px solid #ccc;
}
.page-gallery-box .photo-gallery img{
	max-width: 100%;
	max-height: 295px;
	border-radius: 20px;
}

/************************************/
/*** 	27.  Video Gallery css    ***/
/************************************/

.page-video-gallery{
	padding: 100px 0 70px;
}

.video-gallery-image{
	height: calc(100% - 30px);
	margin-bottom: 30px;
	overflow: hidden;
}

.video-gallery-image a{
	position: relative;
	display: block;
	border-radius: 20px;
	cursor: none;
	overflow: hidden;
}

.video-gallery-image a::before{
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background-color: var(--primary-color);
	border-radius: 20px;
    opacity: 0%;
    visibility: hidden;
    width: 100%;
    height: 100%;
    z-index: 1;
    transform: scale(0);
    transition: all 0.4s ease-in-out;
}

.video-gallery-image:hover a::before{
    opacity: 50%;
    visibility: visible;
    transform: scale(1);
}

.video-gallery-image a::after{
    content: '\f04b';
	font-family: 'FontAwesome';
    position: absolute;
    top: 50%;
    left: 50%;
    right: 0;
    transform: translate(-50%, -50%);
	font-size: 20px;
	background: var(--accent-color);
	color: var(--white-color);
    border-radius: 50%;
    height: 60px;
    width: 60px;
    cursor: none;
	display: flex;
	align-items: center;
	justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.5s ease-in-out;
    z-index: 1;
}

.video-gallery-image:hover a::after{
    opacity: 1;
    visibility: visible;
}

.video-gallery-image img{
	width: 100%;
	aspect-ratio: 1 / 0.82;
	object-fit: cover;
	border-radius: 20px;
}

/************************************/
/*** 	  28. FAQ's Page css      ***/
/************************************/

.page-faqs{
    padding: 50px 0;
}

.page-faqs .page-single-faqs{
    margin-bottom: 80px;
}

.page-faqs .page-single-faqs:last-child{
    margin-bottom: 0px;
}

/************************************/
/***   29. Contact Us Page css    ***/
/************************************/

.page-contact-us{
    padding: 100px 0 50px;
}

.contact-us-content{
	margin-right: 20px;
}

.contact-us-item{
	height: 100%;
	background: var(--secondary-color);
	border-radius: 10px;
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 15px;
	padding: 15px 0px 15px 15px;
	margin-bottom: 15px;
}

.contact-us-item:last-child{
	margin-bottom: 0;
}

.contact-us-item .icon-box img{
	width: 100%;
    max-width: 40px;
}

.contact-us-item-content{
	width: calc(100% - 55px);
}

.contact-us-item-content p{
	margin: 0 0 0px;
}

.contact-us-item-content h3{
	font-size: 16px;
}

.contact-us-item-content h3 a{
	color: inherit;
	transition: all 0.3s ease-in-out;
}

.contact-us-item-content h3 a:hover{
	color: var(--accent-color);
}

.contact-us-form{
    background: var(--secondary-color);
    border-radius: 20px;
    padding: 40px;
}

.contact-us-form .section-title{
	margin-bottom: 30px;
}

.contact-us-form .section-title h2{
	font-size: 24px;
}

.contact-us-form .section-title p{
	margin: 10px 0 0 0;
}

.contact-form .form-group{
	margin: 0 0 20px 0;
}
.contact-form .form-group label { font-size: 14px; }


.contact-form .form-control, .contact-form .form-select {
	font-size: 16px;
	font-weight: 400;
	line-height: 1.25em;
	background-color: var(--bg-color);
	color: var(--primary-color);
	border-radius: 8px;
	padding: 12px 15px;
	border: none;
	box-shadow: none;
	outline: none;
}

.contact-form .form-control::placeholder{
	color: var(--primary-color);
	opacity: 50%;
}

.contact-form-btn{
	margin-top: 10px;
}

.google-map{
    padding: 50px 0 100px;
}

.google-map-iframe{
	width: 100%;
	height: 600px;
	border-radius: 20px;
	overflow: hidden;
}

.google-map-iframe iframe{
	width: 100%;
	height: 100%;
}

/************************************/
/***    30. 404 Error Page css    ***/
/************************************/

.error-page{
	padding: 50px 0;
}

.error-page-image{
	text-align: center;
	margin-bottom: 30px;
}

.error-page-image img{
	width: 100%;
	max-width: 600px;
}

.error-page-content{
	text-align: center;
}

.error-page-content .section-title{
	margin-bottom: 15px;
}


/*harpreet css start*/
.howitwork { border: 1px solid #e1e1e1; border-radius: 30px; padding: 0px 30px 0px 30px; position: relative;
  transition: all 0.3s ease-in-out; box-shadow: rgba(0, 0, 0, 0.05) 0px 25px 10px -5px; }
.howitwork:hover {box-shadow: rgba(0, 0, 0, 0.25) 0px 25px 50px -12px; }
.howitwork h4 { text-transform: none; font-size: 22px; margin-bottom: 5px; }
.howitwork span { font-size: 16px; font-weight: 600; width: 40px; height: 40px; background: var(--accent-color); color: #fff; border-radius: 100%; display: inline-flex; align-items: center; justify-content:center; margin: 0px 0 0px 0; top: -20px; position: relative; }
.lablelogo { width: 100%; min-height: 130px; background: #fff; border: 1px solid #efefef; display: flex; align-items: center; justify-content: center; }
.lablelogo img { max-width: 90%; max-height: 80px; }
.footer-add i{ margin-top: 5px; margin-right: 12px; font-size: 16px; color: #fff;}
.greybg { background: var(--bg-color); }
.eventdetails-item { padding: 8px; margin: 0px 0px 10px 0px; background: var(--white-color); border-radius: 10px; }
.eventdetails-item .event-item-image { max-width: 120px; margin-right: 10px; }
.eventdetails-item .event-item-content h2 { font-size: 16px; line-height: 1.2em; }
.eventdetails-item .event-item-content p { font-size: 12px; line-height: 1.5em; margin: 0px 0px 5px 0px; }
.eventdetails-item .event-item-content p img { max-height: 15px; }
.eventdetails-item .event-item-body { padding: 0px; }
.event-det-header h2 { font-size: 25px; margin: 15px 0px 10px 0px; padding-left: 10px; border-left: 5px solid var(--accent-color); }
.eventdate { background: var(--accent-color); display: inline-block; padding: 5px 10px; color: var(--white-color); border-radius: 5px; }
.eventright { top: 100px; z-index:0 }
.gallerytab { border:0; }
.gallerytab li { margin: 0px 8px 10px 8px; }
.gallerytab li .nav-link { border: 0!important; background: var(--bg-color); border-radius: 10px!important; padding: 20px 20px; color: #000; }
.gallerytab li .nav-link.active { background: var(--accent-color); color: var(--white-color); }
.videogallery { margin-bottom: 20px; }
.videogallery iframe { width: 100%; min-height: 300px; }
.servicedet-cont { min-height: 170px; }
.about-section2 { background: var(--accent-color); }
.about-section2 h2 { font-size: 30px; margin: 0px 0px 0px 0px; padding: 0px; }
.about-section2 p { margin: 0px; padding: 0px; }
.centerhd { text-align: center; }
.centerhd strong { padding: 10px 45px; display: inline-block; position: relative; font-weight: 600; color: var(--accent-color); text-transform: uppercase; letter-spacing: 1px; }
.centerhd strong:before, .centerhd strong:after { content: ''; position: absolute; width: 30px; height: 2px; background: var(--accent-color); top: 17px; left:0 }
.centerhd strong:after { left: auto; right: 0; }
.centerhd h2 span { color: var(--accent-color); }
.centerhd p { max-width: 700px; display: inline-block; padding: 10px 0 20px 0px; position: relative; }
.centerhd p:after { content: ''; position: absolute; width: 50px; height: 2px; background: var(--accent-color); bottom: 0; left:0; right:0; margin: auto }
.journeylist { list-style: none; }
.journeylist>li { margin: 10px 0 20px 0; padding: 10px 0px 0px 80px; position: relative; }
.journeylist>li:before { content: ''; position: absolute; width: 2px; height: 80%; background: #fde6eb; top: 60px; left: 25px; z-index: 0 }

.journeylist.nobefor { padding: 0px; }
.journeylist.nobefor>li:before { display: none; }
.journeylist>li h6 { font-size: 22px; margin: 0px 0px 10px 0px; }
.journeylist>li img { position: absolute; left: 0; top: 0; z-index: 1 }
.journeylist ol { margin: 0px 0px 0px 0px; }
.journeylist ol li { margin: 0px 0px 15px 0px; }
.journey-highlight { background: #fde6eb; padding: 15px 10px 15px 50px; margin: 0px 0px 20px 0px; border-radius: 8px; position: relative; }
.journey-highlight p { text-align: left; margin: 0px }
.journey-highlight:before { content: '"'; position: absolute; top: 50px; left: 15px; color: var(--accent-color); font-size: 85px; }
.journey-highlight span { background: var(--accent-color); height: 2px; width: 50px; display: inline-block; }
.loginmodal .btn-close { position: absolute; right: 15px; top: 30px; font-size: 9px; }
.teamcont { border-top: 1px solid rgba(0, 0, 0, 0.1); padding: 60px 0 0 0; }
.about-section3 { background: #f7f7f7; }


/*harpreet css end*/

/************************************/
/***      31. Responsive css      ***/
/************************************/

@media only screen and (max-width: 1366px){
	.who-we-are::before{ width: 400px; height: 403px; }
}

@media only screen and (max-width: 1024px){
	.main-menu ul li{
		margin: 0;
	}

	.section-title-content{
        margin-top: 10px;
    }

	.section-title-content p{
		margin-bottom: 10px;
	}

	.section-title p{
		margin-top: 10px;
	}

	.section-content-btn .section-btn{
        margin-top: 20px;
    }

	.section-btn{
        text-align: left;
        margin-top: 15px;
	}
	
	.hero-content{
		height: auto;
		margin-bottom: 30px;
	}

	.hero-image{
		height: auto;
		max-width: 500px;
		margin: 0 auto;
	}

	.about-us-image-box{
		height: auto;
		max-width: 740px;
		margin: 0 auto 30px;
	}

	.about-us-image.box-2 figure img,
	.about-us-image.box-2 figure,
	.about-us-image.box-2{
		height: auto;
	}

	.about-us-image figure img{
		aspect-ratio: 1 / 1.1;
	}

	.about-us::before{
		right: -40px;
    	width: 224px;
    	height: 250px;
		opacity: 50%;
	}

	.why-choose-items-list{
		gap: 40px;
	}

	.why-choose-item-content{
		padding-top: 10px;
		margin-top: 15px;
	}

	.why-choose-image{
		margin-top: 30px;
	}

	.exhibition-items-list .col-xl-4:nth-child(3n + 2) .exhibition-item{
		flex-direction: column;
	}
	
	.exhibition-items-list .col-xl-4:nth-child(3n + 2) .exhibition-item .exhibition-item-header{
		padding-top: 60px;
		padding-bottom: 45px;		
	}

	.team-item-header{
		margin-bottom: 20px;
	}

	/*.team-item-image img{
		aspect-ratio: 1 / 1;
	}*/

	.who-we-are::before{
		opacity: 60%;
        width: 180px;
        height: 290px;
        background-size: 100%;
    }

	.testimonial-item{
		min-height: 340px;
		background-size: 180px auto;
		padding: 30px;
	}

	.footer-header{
		padding-bottom: 30px;
		margin-bottom: 30px;
	}

	.about-footer{
		margin-bottom: 30px;
	}

	.about-footer-content{
		margin-top: 15px;
	}

	.footer-social-links{
		margin-top: 20px;
	}

	.footer-links-box{
		margin-left: 0;
	}

	.footer-links h2{
		margin-bottom: 20px;
	}

	.footer-links ul li{
		margin-bottom: 10px;
	}

	.footer-opening-hour-box .footer-links{
		margin-bottom: 30px;
	}

	.footer-copyright{
		margin-top: 30px;
		padding: 30px 0;
	}

	.our-history-content{
		height: auto;
		margin: 0 0 30px 0;
	}

	.history-btn{
		margin-top: 30px;
	}

	.history-images-boxes{
		max-width: 740px;
		margin: 0 auto;
	}

	.faq-content-box{
		height: auto;
		margin: 0 0 30px 0;
	}

	.our-faqs .faq-accordion{
		margin-left: 0px;
	}

	.page-single-sidebar{
		margin-right: 0;
	}

	.page-category-list .page-category-list-title{
		font-size: 14px;
		padding: 15px 20px;
	}

	.page-category-list ul{
		padding: 20px;
	}

	.page-category-list ul li{
		margin-bottom: 15px;
		padding-bottom: 15px;
	}

	.sidebar-cta-box{
		padding: 30px;
	}

	.page-single-image{
		margin-bottom: 30px;
	}

	.collection-entry{
		margin-bottom: 50px;
	}

	.collection-entry ul{
		margin-top: 30px;
	}

	.collection-entry ul li{
		font-size: 14px;
		padding-left: 30px;
	}

	.collection-entry ul li::before{
		font-size: 20px;
	}

	.collection-highlights-box,
	.collection-feature-box{
		margin-top: 50px;
	}

	.collection-highlights-counter-box{
		margin-top: 30px;
	}

	.collection-highlights-item-list{
		gap: 30px;
	}

	.collection-highlights-item{
		width: calc(33.33% - 20px);
		gap: 10px;
	}

	.collection-highlights-item::before{
		right: -15px;
	}

	.collection-highlights-item .icon-box img{
		max-width: 44px;
	}

	.collection-highlights-item-content{
		width: calc(100% - 54px);
	}

	.collection-highlights-item-content h2{
		font-size: 24px;
	}

	.collection-feature-item-list{
		margin-top: 30px;
	}

	.collection-feature-item{
		gap: 15px 10px;
		margin-bottom: 30px;
		padding-bottom: 30px;
	}

	.collection-feature-item .icon-box img{
		max-width: 50px;
	}

	.collection-feature-item-content{
		width: calc(100% - 60px);
	}

	.event-category-item-list{
		padding: 20px;
	}

	.event-category-item{
		margin-bottom: 15px;
		padding-bottom: 15px;
	}

	.event-category-item img{
		max-width: 20px;
	}

	.event-category-item p{
		width: calc(100% - 30px);
	}

	.event-category-social-links ul{
		padding: 0;
	}

	.event-category-social-links ul li{
		margin: 0;
		padding: 0;
	}

	.event-entry{
		margin-bottom: 50px;
	}

	.event-information-box,
	.event-exhibition-box,
	.event-featured-box{
		margin-top: 50px;
	}

	.event-info-item{
		padding: 20px;
	}

	.event-exhibition-items-list .team-item{
		width: calc(50% - 15px);
	}

	.event-exhibition-items-list,
	.event-feature-items-list{
		margin-top: 30px;
	}

	.team-member-about{
		margin-bottom: 50px;
	}

	.team-contact-item{
		padding: 20px;
	}

	.team-member-expertise-box{
		margin-bottom: 50px;
	}

	.team-skillbar-image-box{
		gap: 30px;
		margin-top: 30px;
		padding-top: 30px;
	}

	.team-expert-skills-list, .team-skillbar-image{
		width: calc(50% - 15px);
	}

	.contact-us-content{
		margin: 0 0 30px;
	}

	.contact-us-item{
		min-width: 100%;
		padding: 20px;
		margin-bottom: 20px;
	}
	.google-map-iframe{
		height: 500px;
	}
}

@media only screen and (max-width: 991px){

	.btn-default{
		padding: 15px 40px 15px 20px;
	}

	.btn-default::before{
		right: 20px;
	}

	.navbar{
		padding: 20px 0;
	}

	.responsive-menu,
    .navbar-toggle{
        display: block;
    }

	.slicknav_nav li,
	.slicknav_nav ul{
        display: block;
    }

	.header-btn{
		display: none;
	}

	.section-row{
		margin-bottom: 40px;
	}
	
	.section-title{
		margin-bottom: 30px;
	}

	.section-title.section-sub-heading,
	.section-title .section-sub-title{
		margin-bottom: 10px;
	}

	.section-title .section-sub-title{
		padding: 7px 15px 7px 35px;
	}

	.section-title .section-sub-title::before{
		left: 15px;
		width: 14px;
    	height: 14px;
	}

	.section-title h1{
		font-size: 38px;
	}

	.section-title h2{
		font-size: 24px;
	}

	.hero{
		padding: 140px 0 50px;
	}

	.hero.hero-image-layout,
	.hero.hero-video,
	.hero.hero-slider-layout{
		min-height: 750px;
	}

	.hero.hero-slider-layout .hero-content .section-title p,
	.hero.hero-image-layout .hero-content .section-title p{
		font-size: 16px;
	}

	.hero-image figure{
		height: auto;
	}

	.our-scrolling-ticker{
		padding: 15px 0;
	}

	.scrolling-ticker-box{
		--gap: 30px;
	}

	.scrolling-content span{
		font-size: 18px;
	}

	.about-us{
		padding: 50px 0;
	}

	.about-us-footer{
		margin-top: 30px;
		padding-top: 30px;
	}

	.about-author-box{
		gap: 10px;
	}

	.about-author-box-image img{
		max-width: 46px;
	}
	
	.about-author-box-content {
		width: calc(100% - 56px);
	}

	.our-collection{
		padding: 50px 0;
	}

	/*.collection-item-content{
		bottom: 20px;
		left: 20px;
		right: 20px;
	}*/

	.section-footer-text{
		margin-top: 10px;
	}

	.why-choose-us{
		padding: 50px 0;
	}

	.why-choose-item-counter-title h2{
		font-size: 26px;
	}

	.our-exhibitions{
		padding: 50px 0 20px;
	}

	.exhibition-items-list .col-xl-4:nth-child(3n + 2) .exhibition-item .exhibition-item-header,
	.exhibition-item-header{
		padding: 50px 40px 40px;
	}

	.exhibition-item-header .icon-box{
		margin-bottom: 30px;
	}

	.our-events{
		padding: 50px 0 20px;
	}

	.event-item-body{
		padding: 10px;
	}

	.event-item-content h2{
		font-size: 18px;
	}

	.event-item-content p{
		margin: 5px 0 0;
	}

	.event-item-meta{
		margin-top: 15px;
	}

	.event-item-meta ul li{
		margin-bottom: 10px;
	}

	.event-item-meta ul li img{
		max-width: 18px;
	}

	.our-team{
		padding: 50px 0 20px;
	}

	.who-we-are{
		padding: 50px 0;
	}

	.who-we-are-image{
		width: 200px;
	}

	.who-we-are-image-box-2{
		margin-top: -160px;
	}

	.who-we-are .section-footer-text{
		margin-top: 25px;
	}

	.our-testimonials{
		padding: 50px 0;
	}

	.our-testimonials .section-footer-text{
		margin-top: 40px;
	}

	.our-blog{
		padding: 50px 0 20px;
	}

	.post-item-body{
		bottom: 20px;
		left: 20px;
		right: 20px;
	}

	.post-item-btn{
		margin-top: 15px;
		padding-top: 15px;
	}

	.main-footer{
		padding: 50px 0 0 0;
	}

	.footer-header .section-title,
	.footer-newsletter-box{
		max-width: 100%;
	}

	.footer-newsletter-box h3{
		font-size: 14px;
		margin-bottom: 15px;
	}

	.page-header{
		padding: 30px 0 39px;
	}

	.page-header-box h1{
		font-size: 38px;
	}

	.our-approach{
		padding: 50px 0;
	}

	.approach-item{
		min-height: 370px;
		padding: 30px;
	}

	.approach-item-content ul{
		margin-top: 30px;
		padding-top: 30px;
	}

	.our-history{
		padding: 50px 0;
	}

	.our-faqs{
		padding: 50px 0;
	}

	.faq-accordion .accordion-header .accordion-button{
		font-size: 14px;
		padding: 16px 45px 16px 20px;
	}

	.faq-accordion .accordion-item .accordion-button::after,
	.faq-accordion .accordion-item .accordion-button.collapsed::after{
		right: 20px;
		font-size: 18px;
	}

	.faq-accordion .accordion-item .accordion-body{
		padding: 16px 0px;
		margin: 0 20px;
	}

	.cta-box{
		padding: 50px 0 20px;
	}

	.cta-box-item{
		min-height: 300px;
		padding: 30px;
	}

	.cta-box-item-content ul{
		margin-top: 30px;
	}

	.page-collection{
		padding: 50px 0 20px;
	}

	.page-collection-single{
		padding: 50px 0;
	}

	.page-single-sidebar{
		position: initial;
		margin-bottom: 30px;
	}

	.sidebar-cta-box{
		min-height: 300px;
	}

	.collection-entry h2{
		font-size: 24px;
		margin-bottom: 15px;
	}

	.collection-entry p{
		margin-bottom: 15px;
	}

	.collection-highlights-item-content h2{
        font-size: 24px;
		margin-bottom: 5px;
    }

	.collection-feature-item{
        margin-bottom: 20px;
        padding-bottom: 20px;
    }

	.page-blog{
		padding: 50px 0;
	}

	.page-pagination{
		margin-top: 10px;
	}

	.page-single-post{
        padding: 50px 0;
    }
    
    .post-image{
        margin-bottom: 20px;
    }
    
    .post-entry h2{
        font-size: 24px;
    }
    
    .post-entry p{
        margin-bottom: 15px;
    }

	.post-entry ol li,
	.post-entry ul li{
		font-size: 16px;
		margin-bottom: 10px;
	}
    
    .post-entry blockquote{
        background-position: 20px 25px;
        background-size: 35px;
        padding: 20px 20px 20px 70px;
        margin-bottom: 15px;
    }
    
    .post-entry blockquote p{
        font-size: 14px;
    }
    
    .post-tags{
        margin-bottom: 20px;
    }
    
    .post-tags .tag-links a{
        padding: 12px 15px;
    }
    
    .post-social-sharing ul{
        text-align: left;
    }

	.page-events{
		padding: 50px 0 20px;
	}

	.page-event-single{
		padding: 50px 0;
	}

	.event-entry p{
		margin-bottom: 15px;
	}

	.event-entry h2{
		font-size: 24px;
		margin-bottom: 15px;
	}

	.event-info-items-list{
		margin: 20px 0 15px;
	}

	.event-feature-item{
		min-height: 300px;
		padding: 20px;
	}

	.page-team{
		padding: 50px 0 20px;
	}

	.page-team-single{
		padding: 50px 0;
	}

	.team-single-image figure img{
		aspect-ratio: 1 / 0.8;
	}

	.page-testimonials{
		padding: 50px 0 20px;
	}

	.page-gallery{
		padding: 50px 0 20px;
	}

	.page-video-gallery{
		padding: 50px 0 20px;
	}

	.page-faqs{
		padding: 50px 0;
	}

	.page-faqs .page-single-faqs{
		margin-bottom: 50px;
	}

	.page-contact-us{
		padding: 50px 0 25px;
	}

	.contact-us-form{
		padding: 30px;
	}

	.contact-us-form .section-title h2{
		font-size: 22px;
	}

	.google-map{
		padding: 25px 0 50px;
	}

	.error-page{
		padding: 50px 0;
	}
}

@media only screen and (max-width: 768px){

	.section-row{
		margin-bottom: 30px;
	}

	.section-title h1{
		font-size: 20px;
	}

	.section-title h2{
		font-size: 20px;
	}

	.hero-image{
		max-width: 280px;
	}

	.our-scrolling-ticker{
		padding: 12px 0;
	}

	.scrolling-ticker-box{
        --gap: 20px;
    }

	.scrolling-content span{
        font-size: 16px;
    }

	.about-us-image.box-1 figure{
		border-width: 5px;
		margin-right: -80px;
	}

	.about-us-item-list{
		gap: 20px;
	}

	.about-us-item{
		width: 100%;
		gap: 10px;
	}

	.about-us-item .icon-box img{
		max-width: 40px;
	}

	.about-us-item-content{
		width: calc(100% - 50px);
	}

	.about-us-item-content h3{
		font-size: 14px;
	}

	.about-us-item-content p{
		margin: 5px 0 0 0;
	}

	.about-us-footer{
		gap: 20px;
	}

	.about-author-box-content h3{
		font-size: 14px;
	}

	.collection-item-content h2{
		font-size: 20px;
	}

	.section-footer-text ul li{
		font-size: 14px;
	}

	.section-footer-text ul li{
		margin-right: 5px;
	}

	.section-footer-text .section-footer-border-list li{
		padding-right: 7px;
	}

	.why-choose-items-list{
		gap: 30px;
	}

	.why-choose-item-header{
		margin-bottom: 15px;
	}

	.why-choose-item-counter-title h2{
		font-size: 22px;
	}

	.why-choose-item-title h3{
		font-size: 14px;
	}

	.why-choose-image{
		margin: 30px 0;
	}

	.exhibition-item-content h3{
		font-size: 14px;
	}

	.exhibition-item-content p{
		margin-top: 5px;
	}

	.event-item-btn a{
		width: 40px;
		height: 40px;
	}

	.event-item-btn a img{
		max-width: 12px;
	}

	.team-item-header{
        margin-bottom: 15px;
    }

	.team-item-content h2{
		font-size: 18px;
	}

	.team-item-content p{
		margin-top: 5px;
	}

	.who-we-are::before{
        width: 150px;
        height: 201px;
    }

	.who-we-are-image-boxes{
		padding: 20px 0 10px;
	}

	.who-we-are-image{
        width: 120px;
    }

	.who-we-are-image-box-2{
        margin-top: -90px;
    }

	.who-we-are-image figure{
		border-width: 5px;
	}

	.testimonial-item{
        min-height: auto;
		gap: 20px;
		background-position: top 25% center;
        background-size: 140px auto;
        padding: 20px;
    }

	.testimonial-item-rating{
		margin-bottom: 10px;
	}

	.testimonial-item-content p{
		font-size: 16px;
	}

	.testimonial-item-author{
		padding-top: 20px;
	}

	.testimonial-author-content h2{
		font-size: 14px;
	}

	.post-item-content h2{
		font-size: 14px;
	}

	.footer-newsletter-box h3{
		font-size: 12px;
	}

	.footer-newsletter-box .form-group .form-control{
		width: calc(100% - 40px);
	}

	.footer-newsletter-box .form-group .newsletter-btn{
		width: 44px;
		height: 44px;
	}

	.footer-newsletter-box .form-group .newsletter-btn i{
		font-size: 20px;
	}

	.footer-social-links ul{
		gap: 10px;
	}

	.footer-opening-hour-box,
	.footer-links{
		max-width: 100%;
	}

	.footer-links h2{
		font-size: 14px;
		margin-bottom: 15px;
	}

	.footer-copyright{
        padding: 15px 0;
    }

	.page-header-box h1{
        font-size: 26px;
    }

	.approach-item{
        min-height: 300px;
        padding: 20px;
    }

	.approach-item-content h3{
		font-size: 14px;
	}

	.approach-item-content ul{
        margin-top: 20px;
        padding-top: 20px;
    }

	.approach-item-content ul li{
		padding: 8px 15px 8px 38px;
	}

	.approach-item-content ul li::before{
		left: 15px;
		width: 14px;
    	height: 14px;
	}

	.history-items-list{
		gap: 15px;
	}

	.history-item{
		/*width: calc(50% - 7.5px);
		flex-direction: column-reverse;*/
		/*text-align: center;*/

		height: auto;
		padding: 15px 12px;
		margin-bottom: 15px;
	}

	.history-item-content{
		width: 100%;
	}

	.history-image.box-1 figure{
		height: auto;
		margin-right: -90px;
	}

	.history-image.box-2 figure{
		border-width: 3px;
		border-radius: 23px;
	}

	.faq-cta-box{
		max-width: 100%;
		padding: 20px;
	}

	.faq-cta-box-title h2{
		font-size: 14px;
	}

	.faq-cta-btn{
		margin-top: 20px;
	}

	.faq-accordion .accordion-item{
		margin-bottom: 15px;
	}

	.faq-accordion .accordion-header .accordion-button{
        font-size: 12px;
        padding: 12px 35px 12px 15px;
    }

	.faq-accordion .accordion-item .accordion-button::after,
	.faq-accordion .accordion-item .accordion-button.collapsed::after{
        right: 15px;
        font-size: 16px;
    }

	.faq-accordion .accordion-item .accordion-body{
        padding: 12px 0px;
        margin: 0 15px;
    }

	.cta-box-item{
        min-height: auto;
        padding: 20px;
    }

	.cta-box-item .icon-box{
		width: 50px;
		height: 50px;
	}

	.cta-box-item .icon-box img{
		max-width: 24px;
	}

	.cta-box-item-content h3{
		font-size: 14px;
	}

	.cta-box-item-content p{
		margin: 5px 0 0 0;
	}

	.cta-box-item-content ul{
        margin-top: 20px;
    }

	.page-category-list .page-category-list-title{
		font-size: 12px;
	}

	.sidebar-cta-box{
		min-height: 270px;
		gap: 20px;
		padding: 20px;
    }

	.sidebar-cta-box-content{
		padding-top: 20px;
	}

	.sidebar-cta-box-content h2{
		font-size: 14px;
	}

	.sidebar-cta-box-content ul{
		margin-top: 20px;
	}

	.sidebar-cta-box-content ul li{
		font-size: 16px;
		gap: 8px;
		margin-bottom: 10px;
	}

	.sidebar-cta-box-content ul li img{
		max-width: 18px;
	}

	.page-single-image{
        margin-bottom: 20px;
    }

    .page-single-image img{
        aspect-ratio: 1 / 0.72;
    }

	.collection-entry{
        margin-bottom: 40px;
    }

	.collection-entry h2{
		font-size: 20px;
		margin-bottom: 10px;
	}

	.collection-entry h3{
		font-size: 14px;
	}

	.collection-entry ul{
		gap: 15px;
		margin-top: 20px;
	}

	.collection-entry ul li{
		width: 100%;
        font-size: 12px;
        padding-left: 25px;
    }

	.collection-entry ul li::before{
        font-size: 18px;
    }

	.collection-highlights-box,
	.collection-feature-box{
        margin-top: 40px;
    }

	.collection-highlights-image img{
		aspect-ratio: 1 / 0.55;
	}

	.collection-highlights-item-list{
        gap: 20px;
		padding: 10px;
    }

	.collection-highlights-item{
		width: calc(33.33% - 13.33px);
		flex-direction: column;
		text-align: center;
	}

	.collection-highlights-item::before{
        right: -10px;
    }

	.collection-highlights-item .icon-box img{
        max-width: 40px;
    }

	.collection-highlights-item-content{
		width: 100%;
	}

	.collection-highlights-item-content h2{
		font-size: 20px;
		margin-bottom: 5px;
	}

	.collection-highlights-item-content p{
		font-size: 14px;
	}

	.collection-feature-item-content{
        width: 100%;
    }

	.post-single-meta ol li,
	.post-single-meta ol li i{
		font-size: 16px;
	}

	.post-image img{
		aspect-ratio: 1 / 0.7;
	}

	.post-entry blockquote{
		background-position: 20px 20px;
		padding: 60px 20px 20px 20px;
	}

	.post-entry blockquote p{
		font-size: 12px;
	}

	.post-entry h2{
		font-size: 20px;
	}
	
	.tag-links{
		font-size: 14px;
		gap: 12px;
	}

	.event-entry{
        margin-bottom: 40px;
    }

	.event-entry h2{
		font-size: 20px;
		margin-bottom: 10px;
	}

	.event-entry h3{
		font-size: 14px;
	}

	.event-information-box,
	.event-exhibition-box,
	.event-featured-box{
		margin-top: 40px;
	}

	.event-info-items-list{
		gap: 20px;
	}

	.event-info-item{
		width: 100%;
		padding: 15px;
	}

	.event-exhibition-items-list{
		gap: 20px;
	}

	.event-exhibition-items-list .team-item{
        width: 100%;
    }

	.event-exhibition-items-list .team-item .team-item-content h2{
		font-size: 14px;
	}

	.event-feature-items-list{
		gap: 20px;
	}

	.event-feature-item{
		width: 100%;
		min-height: 250px;
		gap: 20px;
	}

	.event-feature-item-content{
		padding-top: 20px;
	}

	.team-single-image figure img{
        aspect-ratio: 1 / 1;
    }

	.team-member-about{
        margin-bottom: 40px;
    }

	.team-contact-list{
		gap: 20px;
	}

	.team-contact-item{
        width: 100%;
		padding: 15px;
    }

	.team-contact-item-content h3{
		font-size: 14px;
	}

	.member-expertise-item{
		width: 100%;
	}

	.member-expertise-item .icon-box img{
		max-width: 40px;
	}

	.member-expertise-item-content{
		width: calc(100% - 55px);
	}

	.member-expertise-item-content h3{
		font-size: 14px;
	}

	.member-expertise-item-content p{
		margin-top: 5px;
	}

	.team-expert-skills-list,
	.team-skillbar-image{
        width: 100%;
    }

	.skills-progress-bar{
		margin-bottom: 20px;
	}

	.skills-progress-bar .skill-data{
		margin-bottom: 10px;
	}

	.page-faqs .page-single-faqs{
        margin-bottom: 40px;
    }

	.page-faqs .page-single-faqs .section-title{
		margin-bottom: 20px;
	}

	.contact-us-item{
        padding: 15px;
		gap: 10px;
        margin-bottom: 20px;
    }

	.contact-us-item .icon-box img{
		max-width: 34px;
	}

	.contact-us-item-content h3{
		font-size: 14px;
	}

	.contact-us-item-content{
		width: calc(100% - 44px);
	}

	.contact-us-form{
        padding: 20px;
    }

	.contact-us-form .section-title{
		margin-bottom: 20px;
	}

	.contact-us-form .section-title h2{
		font-size: 20px;
	}

	.contact-us-form .section-title p{
		margin-top: 5px;
	}

	.contact-form .form-group{
		margin: 0 0 20px 0;
	}

	.google-map-iframe{
        height: 350px;
    }

    .howitwork { margin: 0px 0px 40px 0; }
    .who-we-are-image-box-2 { margin-top: 0px; }
    .hero.hero-image-layout, .hero.hero-video, .hero.hero-slider-layout {
        min-height: 535px;
    }
    .hero { padding: 0px 0 0px; }
    .collection-item-image figure { background: #fff; min-height: 270px; }
    .team-item-social-list { transform: translateY(0%) scaleY(1); }

}
/*768 end*/

@media only screen and (max-width: 480px){
	p { text-align: left; }
	.navbar-brand { max-width: 78%;	}
	.hero.hero-image-layout, .hero.hero-video, .hero.hero-slider-layout { min-height: 500px; }
	.hero { padding: 20px 0px 0px; }
	.hero .section-title .section-sub-title { font-size: 10px; }
	.hero .section-title h1 { font-size: 19px; }
	.hero.hero-slider-layout .hero-content .section-title p { font-size: 11px; line-height: 1.2; display: none; }
	.hero-btn .btn-default { padding: 9px 12px 9px 5px; font-size: 12px; }
	.hero-btn .btn-default::before { display: none; }
	.hero.hero-slider-layout { min-height: 285px; }
	.hero .section-title { margin-bottom: 8px; }
	.hero-content { margin-bottom: 12px; }
	.section-title h1 { font-size: 17px; }
	.section-title h2 { font-size: 19px; }
	.event-item-content h2 { font-size: 13px; }
	.footer-links h2 { font-size: 11px; }
	.chat-icon a { width: 40px; height: 40px; line-height: 40px; font-size: 28px; }
	.collection-item-image figure { background: #fff; min-height: 235px; }
	.who-we-are-image-box-2 { margin-top: -16px; }
	.about-us-image.box-1 { right: 0 }
	.backToTopBtn { height: 45px; width: 45px; border-radius: 45px; }
	.footer-copyright-text{ text-align: center; }
	.footer-copyright-text p { font-size: 13px; text-align: center; }
	.about-us::before { right: 0px; width: 140px; background-size: 100%; }
	.howitwork { padding: 0px 15px 0px 15px; }

	.page-header { padding: 8px 0 10px; }
	.page-header-box ol li.breadcrumb-item { font-size: 12px; }
	.page-header-box ol .breadcrumb-item+.breadcrumb-item::before { margin: 4px 5px 0 0; }
	.about-us-item-content h3 { font-size: 16px; }
	.who-we-are::before{ width: 100px; height: 151px; }
	.btn-default { padding: 10px 40px 10px 20px; }
	.journeylist { padding-left: 0; }
	.journeylist>li { padding: 10px 0px 0px 47px; }
	.journeylist>li img { max-width: 40px; top: 7px; }
	.journeylist>li:before { top: 43px; left: 19px; height: 97%; }

}
/*480 end*/