/* INDEX
----------------------------------------------------------------------------------------
01. Global Variables
02. General css
03. Header css
04. Hero css
05. About Us css
06. Our Service css
07. Our Story css
08. What We Do css
09. Our Work css
10. Our Process css
11. Our Pricing css
12. Our Testimonial css
13. Our Blog css
14. Footer css
15. About Us Page css
16. Services Page css
17. Services Single css
18. Blog Archive css
19. Blog Single css
20. Project Page css
21. Project Single css
22. Team Page css
23. Team Page css
24. Pricing Page css
25. Testimonial Page css
26. Image Gallery css
27. Video Gallery css
28. FAQs Page css
29. Contact Us Page css
30. 404 Page css
31. Responsive css
-------------------------------------------------------------------------------------- */

/************************************/
/*** 	 01. Global Variables	  ***/
/************************************/	

:root{
	--primary-color			: #404040;
	--secondary-color		: #F5F5F5;
	--darkgrey-color		: #3c3c3c;
	--text-color			: #000000;
	--accent-color			: #ac3a3a;
	--white-color			: #FFFFFF;
	--divider-color			: #EBEBEB;
	--dark-divider-color	: #FFFFFF1A;
	--error-color			: rgb(230, 87, 87);
	--default-font			: "Manrope", sans-serif;
}

/************************************/
/*** 	   02. General css		  ***/
/************************************/

body{
	font-family: var(--default-font);
	font-size: 14px;
	font-weight: 400;
	line-height: 1.7em;
	color: var(--text-color);
}
p { line-height: 1.5em; margin-bottom: 1.6em; text-align: justify; }
p a { color: var(--accent-color); }

h1, h2, h3, h4, h5, h6{	margin: 0px; font-weight: 700; line-height: 1.2em; color: var(--primary-color); }
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; }
html, body{	width: 100%; overflow-x: clip; } 

.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); z-index: 1;
    transform: translate(-50%,-50%) rotate(-45deg);
}

.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{
	position: relative;
	display: inline-block;
	font-size: 16px;
	font-weight: 600;
	line-height: 0.6em;
	text-transform: capitalize;
	color: var(--primary-color);
	background-color: var(--accent-color);
	border-radius: 10px;
	padding: 2px 40px 2px 2px;
	border: none;
	overflow: hidden;
	transition: all 0.5s ease-in-out;
}

.btn-default:hover{
	background-color: transparent;
}

.btn-default::before{
	content: '';
	position: absolute;
	top: 50%;
	right: 0;
	bottom: 0;
	width: 12px;
	height: 12px;
	background-image: url('../images/arrow-white.svg');
	background-repeat: no-repeat;
	background-position: center center;
	background-size: 24px auto;
	transform: translate(-15px, -50%);
	transition: all 0.4s ease-in-out;
	z-index: 1;
}

.btn-default:hover::before{
	transform: translate(-15px, -50%) rotate(45deg);
}

.btn-default::after{
	content: '';
    display: block;
    position: absolute;
	top: 0;
    left: auto;
	right: 0;
    bottom: 0;
	width: 0;
	height: 100%;
	border-radius: 8px;
    background: var(--primary-color);
    transition: all 0.4s ease-in-out;
	z-index: 0;
}

.btn-default:hover::after{
	width: 100%;
	left: 0;
	right: auto;
}

.btn-default span{
	position: relative;
	display: inline-block;
	font-size: 16px;
	font-weight: 600;
	line-height: 1em;
	background-color: var(--white-color);
	color: var(--primary-color);
	border-radius: 8px;
	padding: 15px 20px;
	overflow: hidden;
	z-index: 1;
	transition: all 0.5s ease-in-out;
}

.btn-default:hover span{
	background-color: transparent;
	color: var(--white-color);
}

.btn-default span::after{
	content: '';
    display: block;
    position: absolute;
	top: 0;
    left: auto;
	right: 0;
    bottom: 0;
	width: 0;
	height: 100%;
	border-radius: 8px;
    background: var(--accent-color);
    transition: all 0.4s ease-in-out;
	z-index: -1;
}

.btn-default:hover span::after{
	width: 100%;
	left: 0;
	right: auto;
}

.btn-highlighted{
	background-color: var(--white-color);
}

.btn-highlighted:hover{
	background-color: var(--primary-color);
}

.btn-highlighted::before{
	background-image: url('../images/arrow-dark.svg');
}

.btn-highlighted:hover::before{
	filter: brightness(0) invert(1);
}

.btn-highlighted span{
	color: var(--white-color );
	background-color: var(--accent-color);
}

.btn-highlighted:hover span{
	color: var(--primary-color);
}

.btn-highlighted span::after{
    background: var(--white-color);
}

.cb-cursor:before{
	background: var(--accent-color);
}



.preloader{
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: 1000;
	background-color: var(--accent-color);
	display: flex;
	align-items: center;
	justify-content: center;
}

.loading-container,
.loading{
	height: 100px;
	position: relative;
	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);
	}
}

.section-row{
	position: relative;
	margin-bottom: 80px;
	z-index: 1;
}

.section-row .section-title{
	margin-bottom: 0;
}

.section-title-content{
	margin-left: 90px;
}

.section-title-content p{
	margin: 0;
}

.section-btn{
	text-align: right;
}

.section-title{
	margin-bottom: 40px;
}

.section-title h3{
	display: inline-block;
	position: relative;
	font-size: 14px;
    font-weight: 700;
	line-height: normal;
	letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--accent-color);
	padding-left: 26px;
    margin-bottom: 15px;
}

.section-title h3::before{
	content: '';
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    background: url('../images/icon-sub-heading.svg') no-repeat;
    background-position: left center;
    background-size: cover;
    width: 16px;
    height: 16px;
}

.section-title h1{
	font-size: 70px;
	font-weight: 300;
	line-height: 1.2em;
	letter-spacing: -0.01em;
	color: var(--primary-color);
	margin-bottom: 0;
	/* cursor: none; */
}

.section-title h2{
	font-size:38px;
	/* font-weight: 300; */
	line-height: 1.2em;
	letter-spacing: -0.01em;
	color: black !important;
	margin-bottom: 0;
	/* cursor: none; */
}
.section-color-p{color: black !important; font-weight: 600 !important;font-size: 15px !important;}


.section-title h1 span,
.section-title h2 span{
	font-weight: 700;
	color: var(--accent-color);
}

.section-title p{
	margin-top: 20px;
	margin-bottom: 0;
	color: black !important;
}

.section-title-content.dark-section p,
.section-title.dark-section p,
.section-title.dark-section h1,
.section-title.dark-section h2,
.section-title.dark-section h3{
	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		 ****/
/************************************/

.topbar{
	padding: 20px 0;
}

.topbar-contact-info{
	display: flex;
	align-items: center;
	justify-content: end;
}

.topbar-contact-info ul{ 
	margin: 0;
	padding: 0;
	list-style: none;
	margin-right: 60px;
	padding-right: 60px;
	border-right: 1px solid var(--divider-color);
}

.topbar-contact-info ul li{
	display: inline-block;
	margin-right: 15px;
}

.topbar-contact-info ul li:last-child{
	margin-right: 0;
}

.topbar-contact-info ul li a{
	display: flex;
	align-items: center;
	justify-content: center;
}

.topbar-contact-info ul li .icon-box{
	display: flex;
	align-items: center;
	justify-content: center;
	width: 40px;
	height: 40px;
	background: var(--accent-color);
	border-radius: 10px;
	margin-right: 20px;
	transition: all 0.3s ease-in-out;
}

.topbar-contact-info ul li:hover .icon-box{
	background: var(--primary-color);
}

.topbar-contact-info li .icon-box img{
	max-width: 24px;
}

.topbar-contact-info ul li p{
	color: var(--primary-color);
	font-size: 20px;
	font-weight: 700;
	width: calc(100% - 60px);
	margin: 0;
}

.topbar-qoute-btn { line-height: 1em; }
.topbar-qoute-btn .btn-default span{ font-size: 15px; padding: 10px 13px; }
.topbar-qoute-btn .btn-default::before { background: transparent; content: "\f023"; font-family: "Font Awesome 6 Pro"; font-weight: 400; color: #fff; }

header.main-header{	margin-top: 15px; border-radius: 15px }
.absolute-hdr { position: absolute; display: block; width: 100%; left: 0; }
header.main-header .header-sticky{ position: relative; top: 0; z-index: 100; }
header.main-header .header-sticky.hide{ transform: translateY(-100%); transition: transform 0.3s ease-in-out; border-radius: 0; }
header.main-header .header-sticky.active{ position: fixed; top: 0; left: 0;	right: 0; border-radius: 0;
    transform: translateY(0); background: var(--dark-color); border-bottom: 1px solid var(--dark-divider-color);
}
.navbar{
	padding: 10px 0px;
	align-items: center;
	background: var(--white-color);
	border-radius: 20px;
	box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
}

.main-header .header-sticky.active-sticky-header.hide .navbar{
	padding: 20px 0;
}

.main-header .navbar-brand{
	padding: 0;
	margin: 0;
}
.main-header .navbar-brand img { max-height: 50px; margin: 5px 0px 3px 10px; }
.main-header .header-sticky.active-sticky-header.hide .navbar-brand{ display: block; margin-right: 40px; }
.main-menu .nav-menu-wrapper{ flex: 1; text-align: left; margin-right: 20px; }

.main-menu .nav-menu-wrapper > ul{
	align-items: center;
	display: inline-flex;
}

.main-menu ul li{
	margin: 0;
	position: relative;
}

.main-menu ul li.nav-item .nav-link{
	font-size: 15px;
    font-weight: 500;
    padding: 3px 14px;
	/*color: var(--white-color);*/
	text-transform: capitalize;
	transition: all 0.3s ease-in-out;
}

.main-menu ul li.nav-item:first-child .nav-link{
	padding-left: 0;
}

.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 .nav-link:hover,
.main-menu ul li .nav-link:focus, .main-menu ul li .nav-link.activee{
	color: var(--accent-color);
}

.main-menu ul ul{
	visibility: hidden;
	opacity: 0;
	transform: scaleY(0.8);
	transform-origin: top;
	padding: 0;
	margin: 0;
	list-style: none;
	width: 230px;
	border-radius: 8px;
	position: absolute;
	left: 0;
	top: 100%;
	background: #4d4d4d;
	text-align: left;
	transition: all 0.3s ease-in-out;
}

.main-menu ul>li.submenu ul{
    width: 200px;
}

.main-menu ul ul ul{
	left: 100%;
	top: 0;
	text-align: left;
}

.main-menu ul li:hover > ul{
	visibility: visible;
	opacity: 1;
	transform: scaleY(1);
    padding: 5px 0;
}

.main-menu ul li.submenu ul li.submenu > a:after{
    content: '\f105';
    float: right;
	transition: all 0.3s ease-in-out;
}

.main-menu ul li.submenu ul li.submenu > a:hover:after{
	transform: rotate(90deg);
}

.main-menu ul ul li{
	margin: 0;
	padding: 0;
	border-bottom: 1px dashed rgb(255 255 255 / 6%);
}

.main-menu ul ul li.nav-item .nav-link{
	font-size: 13px;
	color: var(--white-color);
	padding: 4px 20px !important;
	transition: all 0.3s ease-in-out;
}

.main-menu ul li:hover > ul{
	visibility: visible;
	opacity: 1;
	transform: scaleY(1);
    padding: 5px 0;
}

.main-menu ul ul li .nav-link:hover,
.main-menu ul ul li .nav-link:focus{
	color: #bdbdbd;
	background-color: transparent;
	padding: 4px 20px 4px 23px !important;
}

.header-social-links ul{
	list-style: none;
	padding: 0;
	margin: 0;
}

.header-social-links ul li{
	display: inline-block;
	margin-right: 20px;
}

.header-social-links ul li:last-child{
	margin-right: 0;
}

.header-social-links ul li a{
	color: var(--accent-color);
	transition: all 0.3s ease-in-out;
}

.header-social-links ul li:hover a{
	color: var(--white-color);
}

.header-social-links ul li a i{
	font-size: 20px;
}

.responsive-menu,
.navbar-toggle{
	display: none;
}

.responsive-menu{
	top: 0;
	position: relative;
}

.slicknav_btn{
	background: var(--white-color);
	padding: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 38px;
	height: 38px;
	margin: 0;
	border-radius: 8px;
}

.slicknav_icon .slicknav_icon-bar{
	display: block;
	width: 100%;
	height: 3px;
	width: 22px;
	background-color: var(--accent-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, 5px);
}

.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(-5px, -5px);
}

.slicknav_menu{
	position: absolute;
    width: 100%;
	padding: 0;
	background: var(--darkgrey-color);
}

.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: 8px 20px;
	color: var(--dark-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: #bdbdbd;
}

.slicknav_menu ul ul li a{
    padding: 8px 20px 8px 30px;
}

.slicknav_arrow{
	font-size: 0 !important;
}

.slicknav_arrow:after{
	content: '\f107';
	font-family: 'FontAwesome';
	font-weight: 900;
	font-size: 12px;
	margin-left: 8px;
	color: var(--dark-color);
	position: absolute;
	right: 15px;
    top: 15px;
	transition: all 0.3s ease-out;
}

.slicknav_open > a .slicknav_arrow:after{
    transform: rotate(-180deg);
	color: #bdbdbd;
}

/************************************/
/***        04. Hero css	      ***/
/************************************/


.hero{
	padding: 150px 0 40px;
	position: relative;
	background: url('../images/hero-bg.jpg') no-repeat;
	background-position: center center;
	background-size: cover;
}

.hero::before{
    content: '';
    display: block;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(270deg, transparent 42.92%, rgba(0, 0, 0, 0.5) 100%);
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero.hero-video .hero-bg-video{
	position: absolute;
	top: 0;
	right: 0;
	left: 0;
	bottom: 0;
	width: 100%;
	height: 100%;
}

.hero.hero-video .hero-bg-video video{
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.hero.hero-slider-layout{
	background: none;
	padding: 0;
}

.hero.hero-slider-layout .hero-slide{
	position: relative;
    padding: 210px 0;
    min-height: 530px;
}

.hero.hero-slider-layout .hero-slide::before{
	content: '';
	display: block;
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	background: linear-gradient(270deg, rgba(30, 30, 30, 0) 0.02%, rgba(30, 30, 30, 0.9) 100%), linear-gradient(0deg, rgba(0, 0, 0, 0) 87.63%, rgba(30, 30, 30, 0.6) 100.45%);
	width: 100%;
	height: 100%;
	z-index: 1;
	opacity: 0.5;
}

.hero.hero-slider-layout .hero-slide .hero-slider-image{
	position: absolute;
	top: 0;
	right: 0;
	left: 0;
	bottom: 0;
}

.hero.hero-slider-layout .hero-slide .hero-slider-image img{
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.hero.hero-slider-layout .hero-pagination{
	position: absolute;
    bottom: 10px;
	text-align: right;
	padding-right: calc(((100vw - 1300px) / 2));
	z-index: 2;
}

.hero.hero-slider-layout .hero-pagination .swiper-pagination-bullet{
    width: 12px;
    height: 12px;
    background: var(--white-color);
    opacity: 1;
    transition: all 0.3s ease-in-out;
    margin: 0 5px;
}

.hero.hero-slider-layout .hero-pagination .swiper-pagination-bullet-active{
    background-color: var(--accent-color);
}

.hero-content{
	position: relative;
	z-index: 1;
}

.excellence-innovating-list{
	position: relative;
	border-top: 1px solid var(--dark-divider-color);
	padding-top: 50px;
	margin-top: 150px;
	z-index: 1;
}

.excellence-innovating-list ul{
	margin: 0;
	padding: 0;
	list-style: none;
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 20px 100px;
}

.excellence-innovating-list ul li{
	position: relative;
	color: var(--white-color);
	padding-left: 40px;
}

.excellence-innovating-list ul li:before{
	content: '';
	position: absolute;
	width: 24px;
	height: 24px;
	top: 50%;
	transform: translateY(-50%);
	left: 0;
	background: url('../images/icon-check.svg') no-repeat center left;
	background-size: cover;
}

/************************************/
/***      05. About Us css	      ***/
/************************************/

.about-us{
	padding: 30px 0;
    /* background: url(../images/bg-aboutus.png) ; */
	background: #fff4f4;
    background-size: cover; 
	background-repeat: no-repeat;
}
.about-image{
	position: relative;
	display: flex;
	justify-content: end;
	padding-top: 150px;
	margin-right: 40px;
}

.about-img-1{
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	max-width: 300px;
}

.about-img-2 figure,
.about-img-1 figure{
	display: block;
	border-radius: 40px;
}

.about-img-1 figure img{
	border-radius: 40px;
}

.about-img-2 img{
	border: 10px solid var(--white-color);
	aspect-ratio: 1 / 1.22;
	object-fit: cover;
	border-radius: 40px;
}
.about-img-3 figure{
	display: block;
	border-radius: 40px;
}

.about-img-3 img{
	border: 10px solid var(--white-color);
	aspect-ratio: auto;
	object-fit: cover;
	border-radius: 40px;
}

.company-experience
 {
    position: absolute;
    top: 50px;
    right: 10px;
    display: block;
    align-items: center;
    padding: 20px;
    max-width: 250px;
    background: var(--accent-color);
    border: 8px solid white;
    border-radius: 38px;
}

.company-experience-counter{
	text-align: center;
}

.company-experience-counter h2{
	font-size: 50px;
	color: white;
	text-align: center;
}

.company-experience-content p{
	font-size: 18px;
	line-height: 1.4em;
	text-transform: capitalize;
	color: white;
	margin: 0;
}

.about-content-list{
	margin-bottom: 40px;
}

.about-content-list ul{
	margin: 0;
    padding: 0;
    list-style: none;
}

.about-content-list ul li{
	position: relative;
    color: var(--primary-color);
	text-transform: capitalize;
    padding-left: 40px;
	margin-bottom: 20px;
}

.about-content-list ul li:last-child{
	margin-bottom: 0;
}

.about-content-list ul li:before{
    content: '';
    position: absolute;
    width: 24px;
    height: 24px;
    top: 50%;
    transform: translateY(-50%);
    left: 0;
    background: url('../images/icon-check.svg') no-repeat center left;
    background-size: cover;
}

.genuine-rating-counter{
	background: var(--secondary-color);
	border-radius: 40px;
	padding: 50px;
	text-align: center;
}

.genuine-rating-counter .about-counter{
	margin-bottom: 5px;
}

.genuine-rating-counter .about-counter h2{
    background: url('../images/genuine-rating-counter-bg.jpg');
    background-size: cover;
	background-clip: text;
    -webkit-text-fill-color: transparent;
	font-size: 80px;
	font-weight: 900;
}

.genuine-rating{
	margin-bottom: 20px;
}

.genuine-rating ul{
	margin: 0;
	padding: 0;
	list-style: none;
}

.genuine-rating ul li{
	margin-right: 5px;
}

.genuine-rating ul li:last-child{
	margin-right: 0;
}

.genuine-rating ul li i{
	color: var(--accent-color);
}

.genuine-rating-counter-content p{
	text-transform: capitalize;
	margin: 0;
}

/************************************/
/***     06. Our Service css      ***/
/************************************/

.our-services{
	position: relative;
	padding: 100px 0 280px;
	background: url('../images/our-service-bg.jpg') no-repeat center center;
	background-size: cover;
}

.our-services:before{
	content: '';
    display: block;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--primary-color);
	opacity: 70%;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.our-services .container{
	position: relative;
	z-index: 1;
}

.our-services-list{
	position: relative;
	z-index: 2;
	margin-top: -180px;
}

.services-list-box{
	background: var(--white-color);
	border: 1px solid var(--secondary-color);
	border-radius: 40px;
	padding: 60px;
	box-shadow: 0px 4px 30px 0px #0000000A;
	display: flex;
	flex-wrap: wrap;
	gap: 30px 60px;
}

.services-list-box .service-item{
	width: calc(25% - 45px);
	position: relative;
}

.services-list-box .service-item:after{
	content: '';
	position: absolute;
	width: 1px;
	height: 100%;
	top: 0;
	right: -30px;
	bottom: 0;
	left: auto;
	border-right: 1px solid var(--divider-color);
}

.services-list-box .service-item:nth-child(4n + 4):after{
	display: none;
}

.service-item .icon-box{
	margin-bottom: 30px;
}

.service-item .icon-box img{
	max-width: 60px;
}

.service-body{
	margin-bottom: 60px;
}

.service-body h3{
	font-size: 20px;
	font-weight: 600;
	text-transform: capitalize;
}

.service-item .service-footer a{
	background: var(--secondary-color);
	border-radius: 8px;
	width: 70px;
	height: 40px;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: all 0.3s ease-in-out;
}

.service-item:hover .service-footer a{
	background: var(--accent-color);
}

.service-item .service-footer a img{
	max-width: 18px;
	transform: rotate(45deg);
	transition: all 0.3s ease-in-out;
}

.service-item .service-footer a:hover img{
	filter: brightness(0) invert(1);
}

/************************************/
/***       07. Our Story css      ***/
/************************************/

.our-story{
	padding: 100px 0;
}

.our-story-header-img{
	display: flex;
	flex-wrap: wrap;
	gap: 30px;
}

.our-story-header-img figure{
	width: calc(50% - 15px);
	display: block;
	border-radius: 40px;
}

.our-story-header-img figure img{
	aspect-ratio: 1 / 0.71;
	object-fit: cover;
	border-radius: 40px;
}

.our-story-img{
	margin-right: 40px;
}

.our-story-img figure,
.our-story-img img{
	width: 100%;
	display: block;
	border-radius: 40px;
}

.our-story-img img{
	aspect-ratio: 1 / 0.85;
	object-fit: cover;
}

.our-story-content-body{
	border-bottom: 1px solid var(--divider-color);
	margin-bottom: 60px;
	padding-bottom: 60px;
}

.our-story-content-body p:last-child{
	margin: 0;
}

.our-story-counters{
	display: flex;
	flex-wrap: wrap;
	gap: 30px;
	margin-bottom: 60px;
}

.our-story-counter{
	width: calc(33.33% - 20px);
}

.our-story-counter h3{
	font-size: 50px;
	font-weight: 700;
	color: var(--accent-color);
	margin-bottom: 5px;
}

.our-story-counter p{
	font-size: 20px;
	font-weight: 600;
	line-height: 1.4em;
	text-transform: capitalize;
	color: var(--primary-color);
	margin: 0;
}

.our-story-intro-video{
	display: flex;
	align-items: center;
}

.our-story-client-img{
	margin-right: 50px;
}

.our-story-client-img .client-image{
    display: inline-block;
	border: 1px solid var(--white-color);
	border-radius: 50%;
    margin-left: -18px;
	overflow: hidden;
}

.our-story-client-img .client-image:first-child{
    margin: 0;
}

.our-story-client-img .client-image figure{
	display: block;
}

.our-story-client-img .client-image img{
    max-width: 60px;
}

.video-play-button{
	display: flex;
	align-items: center;
	justify-content: center;
}

.video-play-button a{
	border: 6px solid var(--accent-color);
	border-radius: 50%;
	height: 66px;
	width: 66px;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-right: 20px;
	/* cursor: none; */
	transition: all 0.3s ease-in-out;
}

.video-play-button:hover a{
	border-color: var(--primary-color);
}

.video-play-button a i{
	font-size: 22px;
	color: var(--accent-color);
	transition: all 0.3s ease-in-out;
}

.video-play-button:hover a i{
	color: var(--primary-color);
}

.video-play-button p{
	color: var(--primary-color);
	font-weight: 600;
	text-transform: capitalize;
	margin: 0;
}

/************************************/
/***       08. What We Do css     ***/
/************************************/

.what-we-do{
	background: url('../images/what-we-do-bg.svg'), var(--primary-color);
	background-repeat: no-repeat;
	background-position: bottom left;
	background-size: auto;
}

.what-we-do .container-fluid{
	padding: 0;
}

.what-we-do-content{
	padding: 100px 120px;
	height: 100%;
}

.what-we-do-list{
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 30px;
}

.what-we-do-list-box-1,
.what-we-do-list-box-2{
	display: flex;
	flex-wrap: wrap;
	gap: 30px;
}

.what-we-do-item{
	width: calc(50% - 15px);
	border: 1px solid var(--dark-divider-color);
	border-radius: 40px;
	padding: 30px;
}

.what-we-do-list-box-1 .what-we-do-item:nth-child(even){
	background: var(--dark-divider-color);
}

.what-we-do-list-box-2 .what-we-do-item:nth-child(odd){
	background: var(--dark-divider-color);
}

.what-we-do-item .icon-box{
	margin-bottom: 30px;
}

.what-we-do-item .icon-box img{
	max-width: 50px;
}

.what-we-item-content h3{
	font-size: 20px;
	font-weight: 600;
	text-transform: capitalize;
	color: var(--white-color);
	margin-bottom: 10px;
}

.what-we-item-content p{
	color: var(--white-color);
	opacity: 80%;
	margin: 0;
}

.what-we-do-footer{
	margin-top: 40px;
}

.what-we-do-footer p{
	color: var(--white-color);
	margin: 0;
}
.what-we-do-footer p span{
	color: var(--accent-color);
	text-decoration: underline;
}
.what-we-do-image{
	position: relative;
}
.contact-now-circle{
	content: '';
	position: absolute;
	display: block;
	left: 0;
	top: 50%;
	transform: translate(-50% , -50%);
	z-index: 1;
}
.contact-now-circle img{
	width: 130px;
	height: 130px;
	animation: contactrotate 20s infinite linear;
}
@keyframes contactrotate{
	from{
		transform: rotate(0deg);
	  }
	to{
		transform: rotate(360deg);
	}
}
.what-we-do-image,
.what-we-do-image figure,
.what-we-do-image figure img{
	width: 100%;
	height: 100%;
}
.what-we-do-image figure img{
	aspect-ratio: 1 / 0.97;
	object-fit: cover;
}

/************************************/
/***       09. Our Work css       ***/
/************************************/

.our-work{
	padding: 100px 0 60px;
}

.our-Project-nav{
	text-align: center;
	margin-bottom: 60px;
}

.our-Project-nav ul{
	list-style: none;
	text-align: center;
	display: inline-flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: center;
	gap: 10px 60px;
	padding: 0;margin: 0;
}

.our-Project-nav ul li a{
	position: relative;
	display: inline-block;
	color: var(--primary-color);
	font-weight: 600;
	line-height: 1.2em;
	text-transform: capitalize;
	transition: all 0.3s ease-in-out;
}

.our-Project-nav ul li a:before{
    content: '/';
    position: absolute;
    top: 0;
	bottom: 0;
    right: -35px;
}

.our-Project-nav ul li:last-child a:before{
	display: none;
}

.our-Project-nav ul li a.active-btn,
.our-Project-nav ul li a:hover{
	color: var(--accent-color);
}

.project-item{
	position: relative;
	height: calc(100% - 40px);
	margin-bottom: 40px;
	text-align: center;
	overflow: hidden;
}

.project-image{
	position: relative;
	margin-bottom: 30px;
}

.project-image figure{
	display: block;
	border-radius: 20px;
	overflow: hidden;
}

.project-image img{
	width: 100%;
	aspect-ratio: 1 / 0.7;
	object-fit: cover;
	border-radius: 20px;
	transition: all 0.4s ease-in-out;
}

.project-item:hover .project-image figure img{
	transform: scale(1.1);
}

.project-tag{ position: absolute; top: 20px; left: 20px; z-index: 2; }
.project-tag a{
	position: relative;
	display: block;
	backdrop-filter: blur(50px);
	-webkit-backdrop-filter: blur(50px);
	color: var(--white-color)!important;
	border-radius: 5px;
	font-size: 14px;
	font-weight: 400;
	line-height: 1.1em;
	text-transform: capitalize;
	padding: 7px 10px;
	overflow: hidden;
}

.project-tag  a::before{
    content: '';
    position: absolute;
    display: block;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: var(--accent-color);
	opacity: 90%;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.project-content{
	text-align: center;
}

.project-content h3{
	font-size: 18px;
	font-weight: 600;
	text-transform: capitalize;
}

.project-content h3 a{
	color: inherit;
}

/************************************/
/***      10. Our Process css     ***/
/************************************/

.our-process{
	background: var(--secondary-color);
	padding: 100px 0;
}

.our-process-image{
	margin-right: 30px;
}

.our-process-image figure{
	display: block;
	border-radius: 40px;
	overflow: hidden;
}

.our-process-image img{
	width: 100%;
	aspect-ratio: 1 / 0.93;
	object-fit: cover;
	border-radius: 40px;
}

.process-step-item{
	position: relative;
	/* border: 1px solid var(--divider-color); */
	border-radius: 40px;
	display: flex;
	align-items: center;
	padding: 30px;
	margin-bottom: 30px;
	transition: all 0.3s ease-in-out;
	overflow: hidden;
}

.process-step-item:last-child{
	margin-bottom: 0;
}

.process-step-item::before{
	content: '';
    display: block;
    position: absolute;
    top: auto;
	bottom: 0;
	left: 0;
    right: 0;
    background: var(--accent-color);
	width: 100%;
    height: 0;
    transition: all 0.4s ease-in-out;
	z-index: 0;
}

.process-step-item.active:before,
.process-step-item:hover:before{
	height: 100%;
	top: 0;
	bottom: auto;
}

.process-step-no{
	position: relative;
	margin-right: 20px;
	z-index: 1;
}

.process-step-no h2{
	font-size: 50px;
	font-weight: 700;
	color: var(--accent-color);
	transition: all 0.3s ease-in-out;
}

.process-step-content{
	position: relative;
	z-index: 1;
}

.process-step-content h3{
	font-size: 20px;
	font-weight: 600;
	text-transform: capitalize;
	margin-bottom: 10px;
	transition: all 0.3s ease-in-out;
}

.process-step-content p{
	margin: 0;
	transition: all 0.3s ease-in-out;
}

.process-step-item.active .process-step-content p,
.process-step-item.active .process-step-content h3,
.process-step-item.active .process-step-no h2,
.process-step-item:hover .process-step-content p,
.process-step-item:hover .process-step-content h3,
.process-step-item:hover .process-step-no h2{
	color: var(--white-color);
}

/************************************/
/***      11. Our Pricing css     ***/
/************************************/

.our-pricing{
    padding: 100px 0;
}

.pricing-box{
	position: relative;
	background-color: var(--secondary-color);
	border-radius: 40px;
    height: calc(100% - 30px);
    margin-bottom: 30px;
    padding: 50px;
	overflow: hidden;
}

.pricing-box::before{
	content: '';
	position: absolute;
	top: -25px;
	right: -25px;
	background-repeat: no-repeat;
	background-position: top  right;
	background-size: cover;
	width: 150px;
	height: 150px;
	z-index: 0;
}

.pricing-box.highlighted-box::before{
	filter: brightness(0) invert(1);
}

.pricing-box.box-1::before{
	background-image: url('../images/icon-pricing-box-1.svg');
}

.pricing-box.box-2::before{
	background-image: url('../images/icon-pricing-box-2.svg');
}

.pricing-box.box-3::before{
	background-image: url('../images/icon-pricing-box-3.svg');
}

.pricing-box.highlighted-box{
	background-color: var(--accent-color);
}

.pricing-title{
    margin-bottom: 60px;
}

.pricing-title h2{
    font-size: 60px;
	font-weight: 700;
    color: var(--accent-color);
	margin-bottom: 10px;
}

.pricing-box.highlighted-box .pricing-title h2{
    color: var(--white-color);
}

.pricing-title h2 sup{
	font-size: 30px;
}

.pricing-title h2 sub{
    font-size: 16px;
	font-weight: 400;
    color: var(--text-color);
    bottom: 0;
}

.pricing-box.highlighted-box .pricing-title h2 sub{
	color: var(--white-color);
}

.pricing-title h3{
    font-size: 20px;
	font-weight: 600;
    text-transform: capitalize;
}

.pricing-box.highlighted-box .pricing-title h3{
    color: var(--white-color);
}

.pricing-list{
	margin-bottom: 60px;
}

.pricing-list ul{
    margin: 0;
    padding: 0;
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.pricing-list ul li{
	width: 100%;
    position: relative;
    color: var(--primary-color);
	text-transform: capitalize;
    padding-left: 40px;
}

.pricing-box.highlighted-box .pricing-list ul li{
    color: var(--white-color);
}

.pricing-list ul li::before{
    content: '';
    position: absolute;
    width: 24px;
    height: 24px;
    top: 50%;
    transform: translateY(-50%);
    left: 0;
    background: url('../images/icon-check.svg') no-repeat center left;
    background-size: cover;
}

.pricing-box.highlighted-box .pricing-list ul li::before{
    filter: brightness(0) invert(1);
}

.pricing-btn{
	line-height: 1em;
}

.pricing-benefit-list{
	margin-top: 30px;
}

.pricing-benefit-list ul{
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	flex-wrap: wrap;
    justify-content: center;
	gap: 20px 40px;
}

.pricing-benefit-list ul li{
	color: var(--primary-color);
	font-weight: 500;
    display: inline-flex;
    align-items: center;
}

.pricing-benefit-list ul li img{
	max-width: 20px;
	margin-right: 15px;
}

/************************************/
/***    12. Our Testimonial css   ***/
/************************************/

.our-testimonial{
	background: url('../images/testimonial-bg.png');
	background-repeat: no-repeat;
	background-position: center center;
	background-size: cover;
	padding: 100px 0;
}

.our-testimonial-image{
	margin-right: 30px;
}

.our-testimonial-image figure{
	display: block;
	border-radius: 40px;
	overflow: hidden;
}

.our-testimonial-image img{
	aspect-ratio:  1 / 1.05;
	border-radius: 40px;
	object-fit: cover;
}

.testimonial-slider .swiper-wrapper{
	/* cursor: none; */
}

.testimonial-rating{
	margin-bottom: 20px;
}

.testimonial-item .testimonial-rating i{
	color: var(--accent-color);
}

.testimonial-content{
	margin-bottom: 60px;
}

.testimonial-content p{
	font-size: 20px;
	font-weight: 500;
	margin: 0;
}

.testimonial-body{
	display: flex;
	align-items: center;
}

.testimonial-body .author-image{
	margin-right: 15px;
}

.testimonial-body .author-image img{
	width: 60px;
	height: 60px;
	border-radius: 10px;
}

.testimonial-body .author-content{
	width: calc(100% - 75px);
}

.testimonial-body .author-content h3{
	font-size: 20px;
	text-transform: capitalize;
	margin-bottom: 5px;
}

.testimonial-body .author-content p{
	margin: 0;
}

.testimonial-btn{
	position: absolute;
	bottom: 0;
	right: 0;
	display: flex;
	align-items: center;
	justify-content: right;
	margin-top: 30px;
	z-index: 2;
}

.testimonial-slider .testimonial-button-next,
.testimonial-slider .testimonial-button-prev{
	position: relative;
	width: 56px;
	height: 56px;
	background: var(--accent-color);
	border-radius: 10px;
	transition: all 0.4s ease-in-out;
}

.testimonial-slider .testimonial-button-next{
	margin-left: 30px;
}


.testimonial-slider .testimonial-button-next:hover,
.testimonial-slider .testimonial-button-prev:hover{
	background: var(--primary-color);
}

.testimonial-slider .testimonial-button-next::before,
.testimonial-slider .testimonial-button-prev::before{
	content: '';
	position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
	background: url('../images/arrow-white.svg');
	background-repeat: no-repeat;
	background-position: center center;
	background-size: 24px auto;
	transform: rotate(45deg);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s ease-in-out;
}

.testimonial-slider .testimonial-button-prev::before{
	transform: rotate(225deg);
}

.testimonial-slider .testimonial-button-next:hover:before,
.testimonial-slider .testimonial-button-prev:hover:before{
	color: var(--primary-color);
}

.testimonial-company-slider{
	border-top: 1px solid var(--divider-color);
	padding-top: 80px;
	margin-top: 80px;
}

.testimonial-company-slider .company-logo{
	text-align: center;
}

.testimonial-company-slider .company-logo img{
	width: 100%;
	max-height: 40px;
}

/************************************/
/***       13. Our Blog css       ***/
/************************************/

.our-blog{
	padding: 100px 0 70px;
}

.post-item{
    height: calc(100% - 30px);
    margin-bottom: 30px;
}

.post-featured-image{
    margin-bottom: 30px;
}

.post-featured-image a{
    /* cursor: none; */
}

.post-featured-image figure,
.post-featured-image a{
    display: block;
	border-radius: 40px;
}

.post-featured-image img{
    width: 100%;
    aspect-ratio: 1 / 0.63;
    object-fit: cover;
	border-radius: 40px;
    transition: all 0.4s ease-in-out;
}

.post-item:hover .post-featured-image img{
    transform: scale(1.1);
}

.post-item-body{
	display: flex;
	align-items: center;
	justify-content: space-between;
}

.post-item-content{
	width: 65%;
}

.post-item-content h2{
    font-size: 20px;
	font-weight: 600;
	line-height: 1.4em;
}

.post-item-content h2 a{
    color: inherit;
}

.post-item-btn{
	text-align: right;
	margin-left: 20px;
}

.post-item-btn a{
	background-color: var(--accent-color);
	border-radius: 10px;
	width: 50px;
	height: 50px;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: all 0.3s ease-in-out;
}

.post-item-btn a:hover{
	background-color: var(--primary-color);
}

.post-item-btn a img{
	max-width: 24px;
	transition: all 0.3s ease-in-out;
}

.post-item-btn a:hover img{
	transform: rotate(45deg);
}

/************************************/
/***        14. Footer css        ***/
/************************************/

.main-footer{
	/*url(../images/footer-bg.jpg),*/
	background: #e4e4e4;
    background-repeat: no-repeat;
    background-position: bottom center;
    background-size: cover;
	padding: 70px 0 20px;
	position: relative;
	z-index: 1;

}

.footer-header{
	display: flex;
	align-items: center;
	justify-content: space-between;
	border-bottom: 1px solid var(--dark-divider-color);
	margin-bottom: 60px;
	padding-bottom: 60px;
}

.footer-header .section-title{
	margin-bottom: 0;
}

.footer-contact-circle{
	margin-left: 20px;
}

.footer-contact-circle img{
	max-width: 130px;
	animation: contactrotate 20s infinite linear;
}

.about-footer{
	width: 100%;
	max-width: 400px;
}

.footer-logo{
	margin-bottom: 10px;
}

.footer-logo img{
	max-width: 190px; margin-bottom: 10px;
	/*filter: brightness(0) invert(1);*/
}
.about-footer-content{
	margin-bottom: 20px;
}

.about-footer-content p{
	/*color: var(--white-color);*/
	margin: 0;
}

.footer-social-links ul{
	list-style: none;
	padding: 0;
	margin: 0;
}

.footer-social-links ul li{
	display: inline-block;
	border-radius: 50%;
	margin-right: 15px;
}

.footer-social-links ul li:last-child{
	margin-right: 0;
}

.footer-social-links ul li a { display: flex; align-items: center; color: #08598b; }
.footer-social-links ul li a i{
	border: 1px solid #ffffff73;
	border-radius: 50%;
	width: 36px;
	height: 36px;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: all 0.3s ease-in-out;
}

.footer-social-links ul li:hover a{
	border-color: var(--white-color);
}

.footer-social-links ul li a i{
	color: var(--accent-color);
	font-size: 18px;
	transition: all 0.3s ease-in-out;
}
.footer-social-links ul li a i.fa-linkedin-in { background-color: #0074bc; border-color: #0074bc; color: #fff!important; transition: all 0.3s ease-in-out }
.footer-social-links ul li a i.fa-linkedin-in { color: #fff!important; }
.footer-social-links ul li a:hover { color: #23abff!important; }
.footer-social-links ul li a:hover i.fa-linkedin-in { color: #23abff!important; background: #fff; transform: rotate(-45deg); }
.footer-links { background: #ebebeb; padding-top: 20px; border-radius: 13px; }
.footer-links h3{
	font-size: 17px;
	font-weight: 600;
	text-transform: capitalize;
	/*color: var(--white-color);*/
	margin-bottom: 20px; padding-bottom: 20px; position: relative;
}
.footer-links h3:before,
.footer-links h3:after{
    content: '';
    position: absolute;
    left: 0;
}

.footer-links h3:before{
    width: 15px;
    height: 3px;
    background: var(--accent-color);
    bottom: -1px;
    animation: lineMove 4s linear infinite;
}

.footer-links h3:after{
    width: 50px;
    height: 1px;
    bottom: 0;
    background: rgb(131 131 131 / 30%);
    z-index: -1;
}

@keyframes lineMove{
    0%{
        left: 0;
    }
    50%{
        left: 35px;
    }
    100%{
        left: 0;
    }
}



.footer-links ul{
	list-style: none;
	margin: 0;
	padding: 0;
}

.footer-links ul li{ margin-bottom: 10px; }
.footer-links ul li:last-child{ margin-bottom: 0; }
.footer-links ul li a{ color: #000; transition: all 0.3s ease-in-out; }
.footer-links ul li a i{ font-size: 9px; margin: 0px 5px 0px 0px; vertical-align: middle; color: var(--accent-color); }
.footer-links ul li:hover a{ color: var(--accent-color); }
.footer-copyright{
	text-align: center;
    /* border-top: 1px solid #ffffff40; */
    padding: 4px 0;
    margin: 60px 0px 0px 0px;
    padding: 8px 15px 5px 15px;
    border-radius: 10px;
    /*background: var(--accent-color)87;*/

    background: #8f0e0e;
    background: linear-gradient(90deg, rgb(255 255 255 / 90%) 0%, rgb(255 255 255) 50%, rgb(255 255 255 / 87%) 100%);
    box-shadow: rgba(50, 50, 93, 0.25) 0px 50px 100px -20px, rgba(0, 0, 0, 0.3) 0px 30px 60px -30px;
}

.footer-copyright-text p{
	margin: 0;
}
.footer-copyright-text ul { list-style: none; color: #fff; margin: 0px; padding: 0px; }
.footer-copyright-text ul li { display: inline-block; margin: 0px 15px 5px 0px; font-size: 13px; }
.footer-copyright-text ul li:last-child { margin: 0px 0px 0px 0px; }
.footer-copyright-text ul li a { color: rgba(0, 0, 0, 0.8); }
.footer-copyright-text ul li a:hover { color: rgba(0, 0, 0, 1); }
.footcontact li { position: relative; padding-left: 40px; margin-bottom: 15px!important; }
.footcontact li i { position: absolute; left: 0; width: 30px; height: 30px; border: 1px solid rgb(212 212 212); border-radius: 100%; color: var(--accent-color);
 display: flex; align-items: center; justify-content: center; transition: all 0.3s ease-in-out; }
.footcontact li:hover i { border: 1px solid rgba(255, 255, 255, 1); color: var(--accent-color); background: #fff; }


/************************************/
/***     15. About Us Page css    ***/
/************************************/
.page-header{
	position: relative;
	background: url('../images/iner-banner.jpg') no-repeat center center;
	background-size: auto!important;
	padding: 170px 0 130px 0;
}

.team-hdr { background-image: url('../images/team-banner.jpg'); }
.team-hdr.page-header::before, .career-hdr.page-header::before { background: transparent!important; }

.career-hdr { background-image: url('../images/career-banner.jpg'); }
.about-hdr { background-image: url('../images/about-banner.jpg'); }
.ask-hdr { background-image: url('../images/ask-banner.jpg'); padding: 120px 0 30px 0; }
.asklogo { margin-bottom: 20px; }
.asklogo img { border-radius: 20px; position: relative; margin-top: -10px }
.page-header::before{
	content: '';
    display: block;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
	background: linear-gradient(270deg, rgba(0, 0, 0, 0) 23.99%, rgba(0, 0, 0, 0.8) 100%);
    width: 100%;
    height: 100%;
    z-index: 0;
}

.page-header-box{
	position: relative;
	z-index: 1;
}

.page-header-box h1{
    color: var(--white-color);
    font-size: 70px;
    font-weight: 300;
    line-height: 1.2em;
    letter-spacing: -0.01em;
    margin-bottom: 5px;
    margin-top: 15px;
    /* cursor: none; */
}

.page-header-box h1 span{
	font-weight: 700;
}

.page-header-box ol{
	margin: 0;
	padding: 0;
}

.page-header-box ol li.breadcrumb-item{
	text-transform: capitalize;
	color: var(--white-color);
}

.page-header-box ol li.breadcrumb-item a{
    color: inherit;
}

.page-header-box ol li.breadcrumb-item.active{
	color: var(--accent-color);
}

.page-header-box ol .breadcrumb-item+.breadcrumb-item::before{
	content: "\f111";
    font-family: "FontAwesome";
	font-size: 6px;
    color: var(--accent-color);
}

.our-mission-vision{
	position: relative;
}

.mission-vision-bg{
	position: relative;
    /* background: url(../images/our-service-bg.jpg); */
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    padding: 0px 100px 0 30px;
}

.mission-vision-bg:before{
    content: '';
    display: block;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    /* background: var(--primary-color); */
    opacity: 70%;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.mission-vision-box{
	position: relative;
	border: 1px solid var(--dark-divider-color);
	box-shadow: 0px 4px 30px 0px #0000000A;
	border-radius: 40px;
	margin-top: -200px;
	overflow: hidden;
	z-index: 1;
}

.mission-vision-nav ul{
	list-style: none;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    margin: 0;
	background-color: var(--white-color);
	border-bottom: 1px solid var(--divider-color);
	overflow: hidden;
}

.mission-vision-nav ul li{
	width: 33.33%;
	position: relative;
    display: inline-block;
	text-align: center;
}

.mission-vision-nav ul li:last-child{
	padding-right: 0;
}

.mission-vision-nav ul li .nav-link{
	display: block;
	width: 100%;
    background: transparent;
	border: none;
	border-radius: 0;
    color: var(--primary-color);
	font-size: 20px;
    font-weight: 600;
    line-height: 1.2em;
	padding: 30px;
    text-transform: capitalize;
    transition: all 0.3s ease-in-out;
}

.mission-vision-nav ul li .nav-link.active,
.mission-vision-nav ul li .nav-link:hover{
    background: var(--accent-color);
    color: var(--white-color);
	border-radius: 0;
}

.mission-vision-nav ul li .nav-link img{
	max-width: 40px;
	margin-right: 20px;
	transition: all 0.3s ease-in-out;
}

.mission-vision-nav ul li .nav-link.active img,
.mission-vision-nav ul li .nav-link:hover img{
	filter: brightness(0) invert(1);
}

.mission-vision-item{
	background-color: var(--white-color);
	padding: 80px;
}

.mission-vision-content-header{
	margin-bottom: 40px;
}

.mission-vision-content-header p{
	margin: 0;
}

.mission-vision-content-list ul{
	margin: 0;
    padding: 0;
    list-style: none;
}

.mission-vision-content-list ul li{
	position: relative;
    color: var(--primary-color);
	text-transform: capitalize;
    padding-left: 40px;
	margin-bottom: 20px;
}

.mission-vision-content-list ul li:last-child{
	margin-bottom: 0;
}

.mission-vision-content-list ul li:before{
    content: '';
    position: absolute;
    width: 24px;
    height: 24px;
    top: 50%;
    transform: translateY(-50%);
    left: 0;
    background: url('../images/icon-check.svg') no-repeat center left;
    background-size: cover;
}

.mission-vision-image figure{
	display: block;
	border-radius: 40px;
	overflow: hidden;
}

.mission-vision-image img{
	width: 100%;
	aspect-ratio: 1 / 0.63;
	object-fit: cover;
	border-radius: 40px;
}

.our-history{
	padding: 100px 0;
}

.our-history-box{
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 50px;
}

.our-history-nav{
	width: calc(30% - 25px);
}

.our-history-nav ul{
	list-style: none;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    margin: 0;
	background-color: var(--white-color);
	border: 1px solid var(--secondary-color);
	box-shadow: 0px 4px 30px 0px #0000000A;
	border-radius: 20px;
	overflow: hidden;
}

.our-history-nav ul li{
	width: 100%;
	position: relative;
    display: inline-block;
	text-align: center;
}

.our-history-nav ul li:last-child{
	border: none;
}

.our-history-nav ul li .nav-link{
	display: block;
	width: 100%;
    background: transparent;
	border-radius: 0;
    color: var(--primary-color);
	font-size: 20px;
    font-weight: 600;
    line-height: 1.2em;
    text-transform: capitalize;
	border-bottom: 1px solid var(--divider-color);
	padding: 30px;
    transition: all 0.3s ease-in-out;
}

.our-history-nav ul li .nav-link.active,
.our-history-nav ul li .nav-link:hover{
    background: var(--accent-color);
    color: var(--white-color);
	border-radius: 0;
}

.our-history-item{
	width: calc(70% - 25px);
}

.our-history-list ul{
	margin: 0;
    padding: 0;
    list-style: none;
}

.our-history-list ul li{
	position: relative;
    color: var(--primary-color);
	text-transform: capitalize;
    padding-left: 40px;
	margin-bottom: 20px;
}

.our-history-list ul li:last-child{
	margin-bottom: 0;
}

.our-history-list ul li:before{
    content: '';
    position: absolute;
    width: 24px;
    height: 24px;
    top: 50%;
    transform: translateY(-50%);
    left: 0;
    background: url('../images/icon-check.svg') no-repeat center left;
    background-size: cover;
}

.our-history-image figure{
	display: block;
	border-radius: 40px;
	overflow: hidden;
}

.our-history-image img{
    width: 100%;
	aspect-ratio: 1 / 0.96;
    object-fit: cover;
    border-radius: 40px;
}

.our-features{
	padding: 100px 0;
}

.our-features-boxes{
	display: flex;
	flex-wrap: wrap;
	border: 1px solid var(--divider-color);
	border-radius: 40px;
	overflow: hidden;
}

.our-features-item{
	position: relative;
	width: 50%;
	padding: 50px;
	overflow: hidden;
}

.our-features-item:nth-child(1n + 1){
	border-right: 1px solid var(--divider-color);
	border-bottom: 1px solid var(--divider-color);
}

.our-features-item:nth-child(2n + 2){
	border-right: none;
}

.our-features-item::before{
    content: '';
    position: absolute;
    top: 100%;
    right: 0;
    left: 0;
    background-color: var(--accent-color);
    border-radius: 0;
    height: 100%;
    width: 100%;
    transition: all 0.4s ease-in-out;
    opacity: 0;
    z-index: -1;
}

.our-features-item:hover::before{
    top: 0;
    border-radius: 0;
    opacity: 1;
}

.our-features-item .icon-box{
	margin-bottom: 30px;
}

.our-features-item .icon-box img{
	max-width: 50px;
	transition: all 0.4s ease-in-out;
}

.our-features-item:hover .icon-box img{
	filter: brightness(0) invert(1);
}

.features-item-content h3{
	font-size: 20px;
	font-weight: 600;
	text-transform: capitalize;
	margin-bottom: 20px;
	transition: all 0.3s ease-in-out;
}

.features-item-content p{
	margin: 0;
	transition: all 0.3s ease-in-out;
}

.our-features-item:hover .features-item-content p,
.our-features-item:hover .features-item-content h3{
	color: var(--white-color);
}

.our-features-item.features-image-box{
	border: none;
	padding: 0;
}

.our-features-item.features-image-box figure{
	display: block;
	height: 100%;
}

.our-features-item.features-image-box img{
	width: 100%;
	height: 100%;
	aspect-ratio: 1 / 0.485;
    object-fit: cover;
}

.our-team{
	padding: 100px 0 70px;
}

.team-member-item{
	height: calc(100% - 30px);
	margin-bottom: 30px;
}

.team-image{
	position: relative;
	border-radius: 20px;
	margin-bottom: 20px;
    overflow: hidden;
}

.team-image a{
	display: block;
	/* cursor: none; */
}

.team-image figure{
	position: relative;
}

.team-image figure::before{
	content: '';
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	background: linear-gradient(180deg, rgba(0, 0, 0, 0) 71.93%, rgba(0, 0, 0, 0.8) 95.83%);
	width: 100%;
	height: 100%;
	opacity: 0;
	visibility: hidden;
	transition: all 0.3s ease-in-out;
	z-index: 1;
}

.team-member-item:hover .team-image figure::before{
	opacity: 1;
	visibility: visible;
}

.team-image img{
	width: 100%;
	aspect-ratio: 1 / 1.15;
	object-fit: cover;
	border-radius: 20px;
	transition: all 0.5s ease-in-out;
	position: relative;
	z-index: 1;
}
.team-member-item:hover .team-image img{
    transform: scale(1.1);
}

.team-social-icon{
	position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
	margin: 0 auto; 
	transform: translateY(100%);
	text-align: center;
	z-index: 2;
    transition: all 0.5s ease-in-out;
}

.team-member-item:hover .team-social-icon{
	bottom: 20px;
	transform: translateY(0);
}

.team-social-icon ul{
	list-style: none;
	margin: 0;
	padding: 0;
}

.team-social-icon ul li{
	display: inline-block;
    text-align: center;
    margin-right: 20px;
}

.team-social-icon ul li:last-child{
	margin-right: 0;
}

.team-social-icon ul li a{
    color: var(--white-color);
	cursor: pointer;
    transition: all 0.3s ease-in-out;
}

.team-social-icon ul li a i{
    font-size: 20px;
    color: inherit;
}

.team-social-icon ul li a:hover{
	color: var(--accent-color);
}

.team-content{
	text-align: center;
}

.team-content h3{
	font-size: 20px;
	font-weight: 600;
	text-transform: capitalize;
	margin-bottom: 5px;
	transition: all 0.3s ease-in-out;
}

.team-content h3:hover{
	color: var(--accent-color);
}

.team-content h3 a{
	color: inherit;
}

.team-content p{
	text-transform: capitalize;
	margin: 0;
}

.our-faqs{
	padding: 100px 0;
}

.our-faqs-images{
	position: relative;
}

.our-faqs-img figure{
	position: relative;
	display: block;
	border-radius: 40px;
	overflow: hidden;
}

.our-faqs-img figure::before{
	content: '';
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	background: linear-gradient(180deg, rgba(34, 34, 34, 0) 64.31%, rgba(34, 34, 34, 0.8) 100%);
	width: 100%;
	height: 100%;
	z-index: 1;
}

.our-faqs-img figure img{
	width: 100%;
	aspect-ratio:  1 / 0.99;
	object-fit: cover;
}

.faqs-img-cta-box{
	position: absolute;
	bottom: 40px;
	left: 40px;
	right: 40px;
	z-index: 1;
}

.faqs-img-cta-box ul{
	list-style: none;
	padding: 0;
	margin: 0;
	text-align: center;
}

.faqs-img-cta-box ul li{
	display: inline-block;
	margin-right: 40px;
}

.faqs-img-cta-box ul li:last-child{
	margin-right: 0;
}

.faqs-img-cta-box ul li a img{
	max-width: 30px;
	margin-right: 15px;
}

.faqs-img-cta-box ul li a{
	font-size: 20px;
	font-weight: 600;
	color: var(--white-color);
	transition: all 0.3s ease-in-out;
}

.faqs-img-cta-box ul li:hover a{
	color: var(--accent-color);
}

.our-faq-section .accordion-item{
	padding: 0;
	border: 1px solid var(--divider-color);
	border-radius: 10px;
	overflow: hidden;
	margin-bottom: 30px;
	transition: all 0.3s ease-in-out;
}

.our-faq-section .accordion-item:last-child{
	margin-bottom: 0;
}

.our-faq-section .accordion-header .accordion-button{
	font-size: 20px;
	font-weight: 600;
	line-height: 1.2em;
	background-color: transparent;
	color: var(--white-color);
	padding: 15px 50px 15px 20px;
	transition: all 0.3s ease-in-out;
}

.our-faq-section .accordion-button:not(.collapsed){
	background: var(--accent-color);
   	color: var(--white-color);
   	border-bottom: 1px solid var(--dark-divider-color);
}

.our-faq-section .accordion-header .accordion-button.collapsed{
	background-color: transparent;
	color: var(--primary-color);
}

.our-faq-section .accordion-item .accordion-button::after, 
.our-faq-section .accordion-item .accordion-button.collapsed::after{
    content: '\f077';
    font-family: 'FontAwesome';
    position: absolute;
    right: 20px;
    top: 50%;
	transform: translateY(-50%);    
    font-size: 16px;
    color: var(--primary-color);
    transition: all 0.3s ease-in-out;
}

.our-faq-section .accordion-button:not(.collapsed)::after{
    transform: translateY(-50%) rotate(180deg);
    color: var(--white-color);
}

.our-faq-section .accordion-item .accordion-body{
	background: var(--accent-color);
	padding: 15px 50px 15px 20px;
}

.our-faq-section .accordion-item .accordion-body p{
    color: var(--white-color);
	margin: 0;
}

/************************************/
/***     16. Services Page css    ***/
/************************************/

.page-services{
	padding: 100px 0 70px;
}

.page-services .service-item{
	border: 1px solid var(--divider-color);
	border-radius: 40px;
	height: calc(100% - 30px);
	margin-bottom: 30px;
	padding: 30px;
	transition: all 0.3s ease-in-out;
}

.page-services .service-item:hover{
	border-color: var(--secondary-color);
	box-shadow: 0px 4px 30px 0px #0000000A;
}

/************************************/
/***   17. Services Single css    ***/
/************************************/

.page-service-single{
    padding: 100px 0;
}

.service-sidebar{
    position: sticky;
    top: 30px;
    margin-right: 20px;
}

.service-catagery-list{
	border: 1px solid var(--secondary-color);
    border-radius: 20px;
    margin-bottom: 60px;
	box-shadow: 0px 4px 30px 0px #0000000A;
	overflow: hidden;
}

.service-catagery-list h3{
	font-size: 18px;
    font-weight: 600;
    text-transform: capitalize;
    background-color: var(--accent-color);
    color: var(--white-color);
    padding: 19px 15px;
}

.service-catagery-list ul{
    list-style: none;
    margin: 0;
    padding: 20px 15px; background: #fff;
}

.service-catagery-list ul li{
    border-bottom: 1px solid var(--divider-color);
    padding-bottom: 20px;
    margin-bottom: 20px;
    font-weight: 500;
    font-size: 18px;
    transition: all 0.3s ease-in-out;
}
.service-catagery-list ul li:last-child{
    margin: 0;
    padding: 0;
    border-bottom: none;
}
.service-catagery-list ul li a{
	padding-left: 25px;
    position: relative; display: block; text-transform: capitalize;
    color: var(--text-color);
    transition: all 0.3s ease-in-out;
}
.service-catagery-list ul li a i { position: absolute; left: 0; top: 2px; color: var(--accent-color); }
.service-catagery-list ul li a:hover{
    color: var(--accent-color);
}
.service-catagery-list ul li a::before{
	content: '';
	position: absolute;
	top: 50%;
	right: 0;
	background: url(../images/arrow-dark.svg) no-repeat;
	background-size: cover;
	width: 24px;
	height: 24px;
    transform: translateY(-50%);
	transition: all 0.3s ease-in-out;
}
.service-catagery-list ul li a:hover:before{
	transform: translateY(-50%) rotate(45deg);
}
.sidebar-cta-box{
	position: relative;
	background-image: url(../images/sidebar-cta-bg-img.jpg);
	background-repeat: no-repeat;
	background-position: center center;
	background-size: cover;
    border-radius: 20px;
	padding: 40px;
    overflow: hidden;
	z-index: 1;
}

.sidebar-cta-box::before{
	content: '';
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	background-color: var(--primary-color);
	opacity: 70%;
	height: 100%;
	width: 100%;
	z-index: 0;
}

.sidebar-cta-logo{
	position: relative;
	margin-bottom: 30px;
}

.sidebar-cta-logo img{
    width: 100%;
	max-width: 160px;	
}

.sidebar-cta-content{
	position: relative;
    margin-bottom: 30px;
}

.sidebar-cta-content h3{
    font-size: 40px;
	font-weight: 300;
	color: var(--white-color);
    margin-bottom: 10px;
}

.sidebar-cta-content h3 span{
	font-weight: 700;
}

.sidebar-cta-content p{
	color: var(--white-color);
    margin-bottom: 0;
}

.sidebar-cta-contact-list{
	position: relative;
}

.sidebar-cta-contact-item{
    margin-bottom: 20px;
    display: flex;
    align-items: center;
}

.sidebar-cta-contact-item:last-child{
    margin: 0;
}

.sidebar-cta-contact-item .icon-box{
	position: relative;
	height: 40px;
	width: 40px;
	display: flex;
	justify-content: center;
	align-items: center;
	border-radius: 10px;
	margin-right: 15px;
	backdrop-filter: blur(4px);
	-webkit-backdrop-filter: blur(4px);
	overflow: hidden;
	z-index: 1;
}

.sidebar-cta-contact-item .icon-box::before{
	content: '';
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	background-color: var(--white-color);
	opacity: 16%;
	height: 100%;
	width: 100%;
	border-radius: 10px;
	z-index: 0;
}

.sidebar-cta-contact-item img{
	position: relative;
    max-width: 24px;
	z-index: 1;
}

.cta-contact-item-title h3{
	font-size: 20px;
	font-weight: 600;
	color: var(--white-color);
	transition: all 0.3s ease-in-out;
}

.sidebar-cta-contact-item:hover .cta-contact-item-title h3{
	color: var(--accent-color);
}

.service-featured-image{
    margin-bottom: 30px;
}

.service-featured-image figure{
    display: block;
    border-radius: 40px;
    overflow: hidden;
}

.service-featured-image img{
    border-radius: 40px;
    width: 100%;
    aspect-ratio: 1 / 0.67;
    object-fit: cover;
}

.service-entry{
    margin-bottom: 40px;
}

.service-entry h2{
    font-size: 50px;
    font-weight: 300;
    margin-bottom: 20px;
}

.service-entry h2 span{
    font-weight: 700;
}

.service-entry p{
    margin-bottom: 20px;
}

.service-entry p:last-child{
    margin-bottom: 0;
}

.service-entry ul{
	padding: 0;
    margin-bottom: 40px;
    list-style: none;
	display: flex;
	gap: 20px 30px;
	flex-wrap: wrap;
}

.service-entry ul li{
	position: relative;
	width: calc(33.33% - 20px);
    color: var(--primary-color);
    text-transform: capitalize;
	padding-left: 40px;
}

.service-entry ul li::before{
    content: '';
    position: absolute;
    width: 24px;
    height: 24px;
    top: 50%;
    transform: translateY(-50%);
    left: 0;
    background: url(../images/icon-check.svg) no-repeat center left;
    background-size: cover;
}

.service-entry-box{
	display: flex;
	gap: 80px 30px;
	flex-wrap: wrap;
	margin: 40px 0;
}

.service-entry-item{
	position: relative;
	width: calc(50% - 15px);
}

.service-entry-item::before{
	content: '';
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	background-color: var(--divider-color);
	height: 1px;
	width: 100%;
	transform: translateY(40px);
}

.service-entry-item:nth-last-child(-n + 2)::before{
	display: none;
}

.service-entry-item .icon-box{
	margin-bottom: 30px;
}

.service-entry-item .icon-box img{
	max-width: 50px;
}

.service-entry-item-content h3{
	font-size: 20px;
	font-weight: 600;
	text-transform: capitalize;
	margin-bottom: 20px;
}

.service-entry-item-content p{
	margin-bottom: 0;
}

.service-entry-images{
	display: flex;
	gap: 30px;
	flex-wrap: wrap;
}

.service-entry-img{
	width: calc(50% - 15px);
}

.service-entry-img figure{
	display: block;
	border-radius: 40px;
	overflow: hidden;
}

.service-entry-img img{
	width: 100%;
	aspect-ratio: 1 / 0.96;
	object-fit: cover;
	border-radius: 40px;
}

/************************************/
/***     18. Blog Archive css     ***/
/************************************/

.page-blog{
	padding: 100px 0;
}

.page-blog .post-item{
    height: calc(100% - 40px);
    margin-bottom: 40px;
}

.page-blog .post-featured-image img{
    aspect-ratio: 1 / 0.91;
}

.page-blog .post-item .post-item-body{
	display: block;
}

.page-blog .post-item .post-item-content{
	width: 100%;
	margin-bottom: 20px;
}

.post-readmore-btn a{
	position: relative;
	font-size: 16px;
	font-weight: 600;
	color: var(--accent-color);
	padding-right: 34px;
	transition: all 0.3s ease-in-out;
}

.post-readmore-btn a:hover{
	color: var(--primary-color);
}

.post-readmore-btn a::before{
	content: '';
	position: absolute;
	top: 50%;
    right: 0;
    width: 24px;
    height: 24px;
    background-image: url(../images/arrow-accent.svg);
    background-repeat: no-repeat;
    background-position: center right;
    background-size: cover;
    transform: translateY(-50%);
    transition: all 0.3s ease-in-out;
    z-index: 1;
}

.post-readmore-btn a:hover::before{
	transform: translateY(-50%) rotate(45deg);
	filter: brightness(0) invert(0);
}

.page-pagination{
    margin-top: 10px;
    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(--divider-color);
    color: var(--primary-color);
	border-radius: 10px;
    width: 40px;
    height: 40px;
    margin: 0 5px;
    font-weight: 700;
	line-height: 1em;
    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);
}

/************************************/
/***      19. Blog Single css     ***/
/************************************/

.page-single-post{
	padding: 100px 0;
}

.post-image{
	position: relative;
	margin-bottom: 30px;
}

.post-image figure{
	display: block;
	border-radius: 40px;
	overflow: hidden;
}

.post-image figure,
.post-image img{
	aspect-ratio: 1 / 0.50;
	border-radius: 40px;
	object-fit: cover;
}

.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-weight: 700;
	line-height: 1.2em;
	margin: 0 0 0.6em;
}

.post-entry h1{
	font-size: 70px;
}

.post-entry h2{
	font-size: 50px;
}

.post-entry h3{
	font-size: 46px;
}

.post-entry h4{
	font-size: 30px;
}

.post-entry h5{
	font-size: 24px;
}

.post-entry h6{
	font-size: 18px;
}

.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 ol li{
    margin-bottom: 20px;
    font-size: 18px;
    font-weight: 600;
    color: var(--text-color);
}

.post-entry ul{
	padding: 0;
	margin: 20px 0 20px;
	padding-left: 20px;
}

.post-entry ul li{
	font-size: 18px;
    font-weight: 500;
    color: var(--text-color);
    position: relative;
    margin-bottom: 15px;
}

.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: url(../images/icon-blockquote.svg), var(--primary-color);
	background-repeat: no-repeat;
	background-position: 35px 30px;
    background-size: 58px;
    border-radius: 30px;
    padding: 30px 30px 30px 100px;
    margin-bottom: 30px;
}

.post-entry blockquote p{
	font-family: var(--accent-font);
	font-size: 20px;
	font-weight: 600;
	line-height: 1.4em;
	color: var(--white-color);
}

.post-entry blockquote p:last-child{
	margin-bottom: 0;
}

.tag-links{
	font-size: 20px;
	font-weight: 700;
	color: var(--primary-color);
	display: inline-flex;
	align-items: center;
	flex-wrap: wrap;
	gap: 10px;
}

.post-tags .tag-links a{
    display: inline-block;
    font-size: 16px;
    font-weight: 600;
    text-transform: capitalize;
    background: var(--accent-color);
    color: var(--white-color);
	border-radius: 10px;
    padding: 6px 20px;
	transition: all 0.3s 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;
	background: var(--accent-color);
    color: var(--white-color);
	border-radius: 10px;
    width: 36px;
    height: 36px;
    transition: all 0.3s ease-in-out;
}

.post-social-sharing ul li:hover a{
	background: var(--primary-color);
}

.post-social-sharing ul li a i{
    font-size: 18px;
    color: inherit;
}

/************************************/
/***     20. Project Page css     ***/
/************************************/

.page-projects{
	padding: 100px 0 60px;
}

/************************************/
/***    21. Project Single css    ***/
/************************************/

.page-project-single{
	padding: 100px 0;
}

.project-sidebar{
	position: sticky;
	top: 30px;
	margin-right: 20px;
}

.project-detail-box{
	border: 1px solid var(--secondary-color);
	box-shadow: 0px 4px 30px 0px #0000000A;
	border-radius: 20px;
	margin-bottom: 60px;
	overflow: hidden;
}

.project-detail-title{
	background-color: var(--accent-color);
	padding: 20px 30px;
}

.project-detail-title h3{
	font-size: 20px;
	font-weight: 600;
	text-transform: capitalize;
	color: var(--white-color);
}

.project-detail-list{
	padding: 30px;
}

.project-detail-item{
	display: flex;
	align-items: center;
	border-bottom: 1px solid var(--divider-color);
	padding-bottom: 20px;
	margin-bottom: 20px;
}

.project-detail-item:last-child{
	border: none;
	margin-bottom: 0;
	padding-bottom: 0;
}

.project-detail-item .icon-box{
	background-color: var(--accent-color);
	border-radius: 10px;
	width: 40px;
	height: 40px;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-right: 20px;
	transition: all 0.3s ease-in-out;
}

.project-detail-item:hover .icon-box{
	background-color: var(--primary-color);
}

.project-detail-item .icon-box img{
	max-width: 20px;
}

.project-detail-content{
	width: calc(100% - 60px);
}

.project-detail-content h3{
	font-size: 16px;
	font-weight: 600;
	text-transform: capitalize;
	margin-bottom: 5px;
}

.project-detail-content p{
	margin-bottom: 0;
}

.project-single-image{
    margin-bottom: 30px;
}

.project-single-image figure{
    display: block;
    border-radius: 40px;
    overflow: hidden;
}

.project-single-image img{
    border-radius: 40px;
    width: 100%;
    aspect-ratio: 1 / 0.67;
    object-fit: cover;
}

.project-entry{
    margin-bottom: 60px;
}

.project-info,
.project-goal{
	margin-bottom: 60px;
}

.project-entry h2{
    font-size: 50px;
    font-weight: 300;
    margin-bottom: 20px;
}

.project-entry h2 span{
    font-weight: 700;
}

.project-entry p{
    margin-bottom: 20px;
}

.project-entry p:last-child{
    margin-bottom: 0;
}

.project-entry ul{
	padding: 0;
    margin-bottom: 20px;
    list-style: none;
	display: flex;
	gap: 20px 30px;
	flex-wrap: wrap;
}

.project-entry ul li{
	position: relative;
	width: calc(50% - 15px);
    color: var(--primary-color);
    text-transform: capitalize;
	padding-left: 40px;
}

.project-entry ul li::before{
    content: '';
    position: absolute;
    width: 24px;
    height: 24px;
    top: 50%;
    transform: translateY(-50%);
    left: 0;
    background: url(../images/icon-check.svg) no-repeat center left;
    background-size: cover;
}

.project-query-item{
	width: 100%;
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 30px;
	margin-bottom: 60px;
}

.project-query-item:last-child{
	margin-bottom: 0;
}

.project-query-item:nth-of-type(even){
	flex-direction: row-reverse;
}

.project-query-content{
	width: calc(50% - 15px);
}

.project-query-box ul{
	margin-bottom: 0;
}

.project-query-box ul li{
	width: 100%;
}

.project-query-img{
	width: calc(50% - 15px);
}

.project-query-img figure{
	display: block;
	border-radius: 40px;
	overflow: hidden;
}

.project-query-img img{
	width: 100%;
	aspect-ratio: 1 / 0.73;
	object-fit: cover;
	border-radius: 40px;
}

/************************************/
/***      22. Team Page css       ***/
/************************************/

.page-team{ padding: 100px 0 70px; background: #fff4f4; }

/************************************/
/***      23. Team Single css     ***/
/************************************/

.page-team-single { padding: 100px 0; }
.team-member-sidebar{ position: sticky;	top: 20px; margin-right: 30px; }
.team-member-box{
	background-color: var(--white-color);
	box-shadow: 0px 4px 30px 0px #0000000A;
	border: 1px solid var(--secondary-color);
	border-radius: 40px;
	padding: 30px;
	margin-bottom: 60px;
}

.team-member-image{
	margin-bottom: 30px;
}

.team-member-image figure{
	display: block;
	border-radius: 30px;
	overflow: hidden;
}

.team-member-image img{
	width: 100%;
	aspect-ratio: 1 / 1.15;
	object-fit: cover;
	border-radius: 30px;
	transition: all 0.4s ease-in-out;
}

.team-member-box:hover .team-member-image img{
    transform: scale(1.1);
}

.team-member-name{
	text-align: center;
	margin-bottom: 20px;
}
	
.team-member-name h3{
	font-size: 20px;
	font-weight: 600;
	color: var(--accent-color);
	text-transform: capitalize;
	margin-bottom: 5px;
}

.team-member-name p{
	text-transform: capitalize;
	margin: 0;
}

.team-member-social-list ul{
	margin: 0;
	padding: 0;
	list-style: none;
	text-align: center;
}

.team-member-social-list ul li{
	display: inline-block;
    margin-right: 20px;
}

.team-member-social-list ul li:last-child{
	margin: 0;
}

.team-member-social-list ul li a{
	color: var(--accent-color);
    cursor: pointer;
    transition: all 0.3s ease-in-out;
}

.team-member-social-list ul li a:hover{
    color: var(--primary-color);
}

.team-member-social-list ul li a i{
    font-size: 20px;
    color: inherit;
}

.team-detail-box{
	border: 1px solid var(--secondary-color);
	box-shadow: 0px 4px 30px 0px #0000000A;
	border-radius: 20px;
	overflow: hidden;
}

.team-detail-title{
	background-color: var(--accent-color);
	padding: 22px 30px;
}

.team-detail-title h3{
	font-size: 20px;
	font-weight: 600;
	text-transform: capitalize;
	color: var(--white-color);
}

.team-detail-list{
	padding: 30px;
}

.team-detail-item{
	display: flex;
	align-items: center;
	border-bottom: 1px solid var(--divider-color);
	padding-bottom: 20px;
	margin-bottom: 20px;
}

.team-detail-item:last-child{
	border: none;
	margin-bottom: 0;
	padding-bottom: 0;
}

.team-detail-item .icon-box{
	background-color: var(--accent-color);
	border-radius: 10px;
	width: 40px;
	height: 40px;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-right: 20px;
	transition: all 0.3s ease-in-out;
}

.team-detail-item:hover .icon-box{
	background-color: var(--primary-color);
}

.team-detail-item .icon-box img{
	max-width: 20px;
}

.team-detail-content{
	width: calc(100% - 60px);
}

.team-detail-content h3{
	font-size: 16px;
	font-weight: 500;
	text-transform: capitalize;
	margin-bottom: 5px;
}

.team-detail-content p{
	margin-bottom: 0;
}

.team-member-info,
.team-member-skills-feature{
	margin-bottom: 60px;
}

.team-member-content h2{
	font-size: 40px;
    font-weight: 300;
    margin-bottom: 20px;
}

.team-member-content h2 span{
    font-weight: 700;
}

.team-member-content p{
	margin-bottom: 20px;
}

.team-member-content p:last-child{
	margin-bottom: 0;
}

.team-member-skills-feature{
	display: flex;
	flex-wrap: wrap;
	gap: 30px;
}

.team-member-skills,
.team-member-feature{
	width: calc(50% - 15px);
}

.skills-progress-bar{
    margin-bottom: 20px;
}

.skills-progress-bar:last-child{
	margin-bottom: 0;
}

.skills-progress-bar .skill-data{
	display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
}

.skills-progress-bar .skill-data .skill-title{
    font-size: 15px;
    font-weight: 400;
    color: var(--text-color);
	text-transform: capitalize;
}

.skills-progress-bar .skill-data .skill-no{
    font-size: 15px;
    font-weight: 400;
	color: var(--primary-color);
}

.skills-progress-bar .skillbar .skill-progress{
	position: relative;
	width: 100%;
	height: 16px;
	background: var(--divider-color);
	border-radius: 100px;
    overflow: hidden;
}

.skills-progress-bar .skillbar .skill-progress .count-bar{
	position: absolute;
	top: 0;
	left: 0;
	bottom: 0;
	background-color: var(--accent-color);
	border-radius: 100px;
}

.team-member-content ul{
    padding: 0;
    margin: 0;
    list-style: none;
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.team-member-content ul li{
    position: relative;
	width: 100%;
    color: var(--primary-color);
    text-transform: capitalize;
    padding-left: 40px;
}

.team-member-content ul li::before{
    content: '';
    position: absolute;
    width: 24px;
    height: 24px;
    top: 50%;
    transform: translateY(-50%);
    left: 0;
    background: url(../images/icon-check.svg) no-repeat center left;
    background-size: cover;
}

/************************************/
/***     24. Pricing Page css     ***/
/************************************/

.page-pricing{
	padding: 100px 0;
}

/************************************/
/***   25. Testimonial Page css   ***/
/************************************/

.page-testimonial{
	padding: 100px 0 70px;
}

.client-testimonial-item{
	height: calc(100% - 30px);
	border: 1px solid var(--divider-color);
	border-radius: 40px;
	padding: 40px;
	margin-bottom: 30px;
}

.client-testimonial-item-content{
	margin-bottom: 40px;
}

.client-testimonial-rating{
	margin-bottom: 20px;
}

.client-testimonial-rating i{
	color: var(--accent-color);
}

.client-testimonial-content p{
	margin-bottom: 0;
}

.client-testimonial-author{
	display: flex;
	align-items: center;
}

.client-testimonial-author-content{
	width: calc(100% - 55px);
	display: flex;
	align-items: center;
}

.client-author-image{
	margin-right: 15px;
}

.client-author-image figure{
	display: block;
	border-radius: 10px;
	overflow: hidden;
}

.client-author-image img{
	width: 60px;
	height: 60px;
	border-radius: 10px;
}

.client-author-content{
	width: calc(100% - 75px);
}

.client-author-content h3{
	font-size: 20px;
	font-weight: 600;
	text-transform: capitalize;
	margin-bottom: 5px;
}

.client-author-content p{
	margin: 0;
}

.client-testimonial-quote{
	margin-left: 15px;
}

.client-testimonial-quote img{
	max-width: 40px;
}

/************************************/
/***     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{
	border-radius: 20px;
}

.page-gallery-box .photo-gallery img{
	aspect-ratio: 1 / 0.7;
	object-fit: cover;
	border-radius: 20px;
}

/************************************/
/***     27. Video Gallery css    ***/
/************************************/

.page-video-gallery{
	padding: 100px 0 70px;
}

.video-gallery-image{
	border-radius: 20px;
	overflow: hidden;
	height: calc(100% - 30px);
	margin-bottom: 30px;
}

.video-gallery-image a{
	position: relative;
	display: block;
	/* cursor: none; */
}

.video-gallery-image a::before{
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 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{
	aspect-ratio: 1 / 0.7;
	object-fit: cover;
	border-radius: 20px;
}

/************************************/
/***      28. FAQs Page css       ***/
/************************************/

.page-faqs{
	padding: 100px 0;
}

.faq-sidebar{
	position: sticky;
	top: 30px;
	margin-right: 20px;
}

.faq-catagery-list{
	border: 1px solid var(--secondary-color);
	box-shadow: 0px 4px 30px 0px #0000000A;
	border-radius: 20px;
	padding: 30px;
	margin-bottom: 60px;
}

.faq-catagery-list ul{
	list-style: none;
	margin: 0;
	padding: 0;
}

.faq-catagery-list ul li{
    border-bottom: 1px solid var(--divider-color);
    padding-bottom: 20px;
    margin-bottom: 20px;
    transition: all 0.3s ease-in-out;
}

.faq-catagery-list ul li:last-child{
	border-bottom: none;
	margin-bottom: 0;
	padding-bottom: 0;
}

.faq-catagery-list ul li a{
	position: relative;
    display: block;
    color: var(--text-color);
    text-transform: capitalize;
    transition: all 0.3s ease-in-out;
}

.faq-catagery-list ul li:hover a{
	color: var(--accent-color);
}

.faq-catagery-list ul li a::after{
	content: '';
    position: absolute;
    top: 50%;
    right: 0;
	transform: translateY(-50%);
    background: url('../images/arrow-dark.svg') no-repeat;
    background-position: right center;
    background-size: cover;
    width: 24px;
    height: 24px;
    transition: all 0.3s ease-in-out;
}

.faq-catagery-list ul li:hover a::after{
	transform: translateY(-50%) rotate(45deg);
}

.our-faq-section.page-faq-accordion{
    margin-bottom: 60px;
}

.our-faq-section.page-faq-accordion:last-child{
    margin-bottom: 0;
}

/************************************/
/***   29. Contact Us Page css    ***/
/************************************/

.page-contact-us{
    padding: 100px 0;
	background: url(../images/about-us-bg.svg) no-repeat;
    background-position: bottom left;
    background-size: auto;
}

.contact-information{
	margin-right: 40px;
}

.contact-info-box { padding-top: 20px; }
.contact-info-item{
    display: flex;
    flex-wrap: wrap;
	align-items: center;
	border-bottom: 1px solid #ccc;
	padding-bottom: 20px;
    margin-bottom: 20px;
}

.contact-info-item:last-child{
	border: none;
	padding-bottom: 0;
    margin-bottom: 0;
}

.contact-info-item .icon-box{
	position: relative;
	background: var(--accent-color);
	border-radius: 10px;
	height: 60px;
	width: 60px;
	display: flex;
	justify-content: center;
	align-items: center;
    margin-right: 20px;
	transition: all 0.5s ease-in-out;
}

.contact-info-item:hover .icon-box{
	background-color: transparent;
}

.contact-info-item .icon-box::before{
	content: '';
    display: block;
    position: absolute;
    top: 0;
    left: 0;
	right: 0;
	bottom: 0;
    background: var(--primary-color);
    border-radius: 10px;
    width: 100%;
    height: 100%;
    transform: scale(0);
    transition: all 0.4s ease-in-out;
    z-index: 0;
}

.contact-info-item:hover .icon-box::before{
	transform: scale(1);
}

.contact-info-item .icon-box img{
	position: relative;
	z-index: 1;
}

.contact-info-content{
    width: calc(100% - 80px);
}

.contact-info-content h3{
    font-size: 20px;
	font-weight: 600;
	text-transform: capitalize;
	margin-bottom: 5px;
}

.contact-info-content p{
    margin-bottom: 0;
}
.contact-info-content p a{ color: #000; }
.contact-info-content p a:hover { color: var(--accent-color); }

.contact-us-form{
	background-color: var(--white-color);
	border: 1px solid var(--secondary-color);
	box-shadow: 0px 4px 30px 0px #0000000A;
	border-radius: 40px;
    padding: 40px;
}

.contact-form .form-control{
    font-size: 14px;
	font-weight: 400;
    background-color: var(--white-color);
    color: var(--text-color);
	border: 1px solid var(--divider-color);
    border-radius: 5px;
    outline: none;
    box-shadow: none;
    padding: 10px 15px;
}

.contact-form .form-control::placeholder{
	color: var(--text-color);
}

.google-map-iframe,
.google-map-iframe iframe{
    height: 600px;
    width: 100%;
}

.google-map-iframe iframe{
    filter: grayscale(1);
    transition: all 0.4s ease-in-out;
}

.google-map-iframe iframe:hover{
    filter: grayscale(0);
}

/************************************/
/***      30. 404 Page css        ***/
/************************************/

.error-page{
	padding: 100px 0;
}

.error-page-image{
	text-align: center;
	margin-bottom: 30px;
}

.error-page-image img{
	width: 100%;
	max-width: 50%;
}

 .error-page-content{
	text-align: center;
}

.error-page-content .section-title{
	margin-bottom: 20px;
}

.error-page-content-body p{
	margin-bottom: 20px;
}


/*harpreet css start*/
.main-menu { flex-grow: unset!important; justify-content: space-around; }
.container-fluid { max-width: 1600px; }
.bannertxt h2 { font-size: 35px; font-weight: 800; line-height: 1.3em; color: var(--primary-color); margin-top: 0; padding-bottom: 20px; /* cursor: none; */ }
.bannertxt h2 span  { color: var(--accent-color); }

.hero-buttons{ display:flex; gap:20px; margin-bottom:40px; }
.btn-outline-custom{ padding: 5px 40px 5px 20px; background:#1e84b5 !important; border-color: #0e577a!important; color: #fff!important;
    border-radius:12px; text-decoration:none; font-weight:600; transition:0.3s ease; display:inline-flex;
    align-items:center; gap:10px; position: relative; }
.btn-primary-custom, .btn-outline-custom:hover { background: var(--accent-color)!important; border-color: var(--accent-color)!important; }

.btn-outline-custom::before {
    content: '';
    position: absolute;
    top: 50%;
    right: 0;
    bottom: 0;
    width: 12px;
    height: 12px;
    background-image: url(../images/arrow-white.svg);
    background-repeat: no-repeat;
    background-position: center center;
    background-size: 24px auto;
    transform: translate(-15px, -50%);
    transition: all 0.4s ease-in-out;
    z-index: 1;
}
.btn-primary-custom{
    background:#14c7e5;
    color:#fff;
    box-shadow:0 4px 12px rgba(20,199,229,0.3);
}

.btn-primary-custom:hover{
    transform:translateY(-2px);
}

.btn-outline-custom{
    border: 2px solid #d7d7d7;
    color: #222;
    background: #fff;
}

.hero-features{
    display:flex; gap: 50px; flex-wrap: wrap; margin-top: 60px; background: #f7f7f7;
    padding: 15px; border-radius: 20px; position: relative; z-index: 1;
}

.feature-item{
    display:flex;
    align-items:center;
    gap: 8px;
}

.feature-icon{
    width:35px;
    height:35px;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:18px;
    font-weight:bold;
}

.feature-item h4{ font-size: 16px; font-weight: 600; color:#222; margin-bottom:4px; }
.feature-item p{ font-size: 14px; margin-bottom: 0; line-height: 1; }
.market-card{
    width: 100%; min-height: 355px;
    border-radius:24px;
    padding:18px 18px 0px 18px;
    position:relative;
    overflow:hidden;
    background: linear-gradient(180deg, #1a2232 0%, #091422 100%);
    box-shadow:0 10px 25px rgba(0,0,0,0.25);
}

/* glowing background */
.market-card::before{
    content:"";
    position:absolute;
    width:500px;
    height:500px;
    background: radial-gradient(circle, rgb(73 171 255 / 35%) 0%, transparent 70%);
    bottom:-250px;
    left:-100px;
}
.market-card2 { background: linear-gradient(180deg, #1a4442 0%, #0a1414 100%); }
.market-card2::before{ background: radial-gradient(circle, rgb(26 68 66 / 75%) 0%, transparent 70%); }
.market-card2 .card-top { background: rgb(19 44 43); }

.market-card3 { background: linear-gradient(180deg, #3c2016 0%, #1e110c 100%); }
.market-card3::before{ background: radial-gradient(circle, rgb(96 53 39) 0%, transparent 70%); }
.market-card3 .card-top { background: rgb(72 40 29); }

.card-top{
	background:rgba(26,48,70,0.95);
    border-radius:18px;
    padding:14px;
    display:flex;
    justify-content:space-between;
    align-items:flex-start;
    margin-bottom:18px;
    position:relative;
    z-index:2;
}

.top-left{
    display:flex;
    gap:12px;
}

.icon-box{
    width:52px;
    height:52px;
    border-radius:14px;
    background:linear-gradient(180deg, #daedff, #bcdeff);
    display:flex;
    justify-content:center;
    align-items:center;
    flex-shrink:0;
    font-size: 28px;
    color: var(--accent-color);
}
.market-card2 .icon-box { background: linear-gradient(180deg, #6bc5c0, #81f3f0); }
.market-card3 .icon-box { background: linear-gradient(180deg, #ebbaaa, #ffebe5); }

.icon-box img { width: 37px; height: 37px; }
.top-content { display: flex; align-items: center; justify-content: center; }

.top-content h3{
    color:#55bbec;
    font-size:18px;
    margin-bottom:6px;
    line-height:1.3;
}

.top-content p{
    color:#fff;
    font-size:12px;
    line-height:1.5; margin: 0;
}

.arrow-btn{
    width:40px;
    height:40px;
    border-radius:50%;
    background:#fff;
    color:#111;
    display:flex;
    justify-content:center;
    align-items:center;
    font-size:20px;
    cursor:pointer;
    flex-shrink:0;
    transition: all 0.3s ease-in-out;
}
.arrow-btn a{
    color:#111;
}
.arrow-btn:hover { transform: scale(1.1) rotate(-45deg); }

.category-box{
    border:1px solid rgba(255,255,255,0.15);
    border-radius:18px;
    padding:18px 20px;
    position:relative;
    z-index:2;
    backdrop-filter:blur(8px);
}

.category-box ul{
    list-style:none;
}

.category-box li{
    display:flex;
    justify-content:space-between;
    align-items:center;
    color:#fff;
    font-size:16px;
    padding:12px 0;
    border-bottom:1px solid rgba(255,255,255,0.08);
}

.category-box li:last-child{
    border-bottom:none;
}

.plus{
    color:#a78bfa;
    font-size:22px;
}

.explore-btn-wrap{
    display:flex;
    justify-content:center;
    margin-top:28px;
    position:relative;
    z-index:2;
}

.explore-btn{
    text-decoration:none;
    color:#fff;
    border:2px solid rgba(255,255,255,0.5);
    padding:12px 34px;
    border-radius:14px;
    font-size:18px;
    transition:0.3s;
    background:rgba(0,0,0,0.25);
}

.explore-btn:hover{
    background:#fff;
    color:#111;
}
.catbox { background: rgba(255, 255, 255, 0.5); padding: 0px 5px 5px 5px; border-radius: 15px; margin: 15px 0;
display: flex; align-items: center; justify-content: center; flex-direction: column; font-size: 13px; font-weight: 600; min-height: 80px; transition: all 0.3s ease-in-out; position: relative; z-index: 1 }
.catbox span { background: rgba(255, 255, 255, 1); width: 45px; height: 45px; border-radius: 100%; display: flex; align-items: center; justify-content: center; margin-top: -20px; margin-bottom: 10px; font-size: 20px; color: #000; transition: all 0.3s ease-in-out; }
.catbox a { color: #fff; }
.catbox:hover { background: rgb(255 255 255 / 15%); }
.catbox:hover span { transform: rotate(45deg) scale(1.2); color: var(--accent-color) }





/*diagram start*/
/* MAIN CIRCLE */
.main-wrapper{
    position: relative;
    width: 100%;
    min-height: 200px;
}

/* DOTTED RING */
.outer-ring{
    position:absolute;
    top:50%;
    left:50%;
    width: 200px;
    height: 200px;
    border:2px dashed rgba(255,255,255,0.25);
    border-radius:50%;
    transform:translate(-50%,-50%);
 /* Rotation Animation */
    animation: rotateRing 12s linear infinite;
}

@keyframes rotateRing {
    from {
        transform: translate(-50%, -50%) rotate(0deg);
    }
    to {
        transform: translate(-50%, -50%) rotate(360deg);
    }
}

/* CENTER CIRCLE */
.center-circle{
    position:absolute;
    top:50%;
    left:50%;
    width: 60px;
    height: 60px;
    background:#fff;
    border-radius:50%;
    transform:translate(-50%,-50%);
    display:flex;
    justify-content:center;
    align-items:center;
    box-shadow:0 0 25px rgba(255,255,255,0.15);
}

.center-circle i{
    font-size:30px;
    color:#111;
}

/* SMALL ICON CIRCLES */
.circle-item{
    position:absolute;
    width:70px;
    text-align:center;
    color:#fff;
    font-size: 11px;
}

.main-wrapper .icon-box{
    width: 30px;
    height: 30px;
    background:#0f2a36;
    border-radius:50%;
    display:flex;
    justify-content:center;
    align-items:center;
    position: absolute;
    box-shadow:0 0 15px rgba(0,0,0,0.4);
    border:1px solid rgba(255,255,255,0.08);
}
.main-wrapper .icon-box i{
    color:#7de3c8;
    font-size:14px;
}

/* POSITIONS */

.main-wrapper .top{
    top: -2%;
    right: 42px;
    /*transform:translateX(-50%);*/
    text-align: left;
}
.main-wrapper .top .icon-box { margin: 0 0 0 -39px; }



.main-wrapper .right-top{
    top: 82px;
    right: 30px;
    padding-left: 40px;
}
.main-wrapper .right-top .icon-box { left:0; }




.main-wrapper .right-bottom{
	width: 104px;
    bottom: 4px;
    right: 40px;
    padding-left: 40px;
    text-align: left;
}
.main-wrapper .right-bottom .icon-box { margin: 0 0 0 -39px; }



.main-wrapper .left-bottom{
    bottom: 22px;
    left: 19px;
    text-align: right;
    padding-right: 10px;
}
.main-wrapper .left-bottom .icon-box { right: -30px }



.main-wrapper .left-top{
    top: 20px;
    left: 15px;
}
.main-wrapper .left-top .icon-box { right: -40px; }

.main-wrapper .label{
    margin:0px;
    line-height:1.2;
    font-weight:600;
}
/*diagram end*/

/*.category-boxx { max-height: 230px; overflow-y: auto; }
.category-boxx::-webkit-scrollbar{ width:8px; }
.category-boxx::-webkit-scrollbar-thumb{ background:#00c2ff; border-radius:10px; }*/


.category-boxx { }
.cardd{ background:#fff;
      border-radius:14px;
      overflow:hidden;
      display:flex;
      align-items:center;
      margin-bottom: 5px;
      border:3px solid #2b1d16;
      box-shadow:0 3px 8px rgba(0,0,0,0.2);
      position: relative; z-index: 1;
    }

    .cardd img{
      width: 70px;
      height: 70px;
      object-fit:cover;
    }

    .contentt{
      padding: 0px 12px;
      flex:1;
    }

    .tagg{
        font-size: 10px;
	    font-weight: bold;
	    color: #7b6b63;
	    margin-bottom: 6px;
	    text-transform: uppercase;
	    line-height: 1;
    }

    .titlee{
        font-size: 14px;
	    font-weight: 700;
	    line-height: 1.2;
	    color: #111;
	    margin-bottom: 5px;
    }
    .titlee a { color: #111; }
    .titlee a:hover { color: #000; }

    .datee{
    	font-size: 12px;
    	color: #666;
    	font-weight: 600;
    	line-height: 1.3;
    }
	.service-catagery-list .active{color: var(--accent-color);}
    .service-cont { min-height:-webkit-fill-available;; margin-bottom: 40px; }
    .service-cont::before { z-index:0 }
    .service-cont .icon-box {
	    width: 100px;
	    height: 100px;
	    font-size: 50px;
	    color: var(--accent-color);
	    margin-bottom: 40px;
	    border-radius: 100%;
	}
    .service-cont .icon-box img {
	    width: auto;
	    height: auto;
	}
	.service-cont h3 { min-height: 60px; font-size: 22px; line-height: 1.3; position: relative; z-index:1 }
	.service-cont h3 a { color: #fff; }
	.service-cont h3 a:hover { color: var(--accent-color); }
	.service-cont .btn-default span { font-size: 13px; line-height: 1; padding: 8px 10px; }
	.loginpop .modal-dialog { max-width: 400px; }
	.poplogo {
	    text-align: center;
	    margin: 5px 0px 15px 0px;
	}
	.poplogo img { max-width: 180px;	}
	.loginpop h5 {
	    font-size: 16px !important;
	    text-align: center;
	    margin: 0px 0px 15px 0px;
	}
	.loginformrow {
		margin: 10px;
	}

	.loginformrow label {
		margin: 5px 0 5px 0;
		font-size: 13px;
	}

	.loginformrow input {
		font-size: 12px;
		padding: 9px 15px;
		border-radius: 8px;
	}
	.login-btn { width: 100%!important; display: block!important; padding: 10px 10px!important; line-height: 1.3!important; border-radius: 8px; color: #fff; background: var(--accent-color); text-align: center; position: relative; overflow: hidden; }
	.login-btn span { position: relative; z-index:1 }
	.login-btn:hover { color: #fff; }
	.login-btn:after { content: ''; width: 0; height: 100%; position: absolute; left:0; top:0; background: #000; z-index:0; transition: all 0.5s ease-in-out; }
	.login-btn:hover:after { width: 100%; }
	.service-box { border-radius: 15px; background: #fff; box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px; padding: 2px; margin-bottom: 25px; }
	.serviceimg { width: 100%; min-height: 162px; position:relative; border-radius: 15px 15px 0 0; overflow: hidden; }
	.serviceimg img { max-width: 100%; max-height: 162px; position: absolute; top: 0; right: 0; bottom: 0; left: 0; border-radius: 15px 15px 0 0; transition: all 0.3s ease-in-out; }
	.service-box:hover .serviceimg img { transform: scale(1.1); }
	.service-box .icon-box { background: #fff; margin: -40px 0 0 10px; position: relative; z-index:1; border-radius: 8px; }
	.service-box .icon-box img { width: auto; height: auto; max-height: 32px; }
	.servicedet { padding: 5px 15px 0px 15px; }
	.servicedet h3 { font-size: 16px; min-height: 45px; }
	.servicedet h3 a { color: #1e84b5; }
	.servicedet h3 a:hover { color: #000; }
	.servicedet .btn-default { border-radius: 5px; }
	.servicedet .btn-default span { padding: 5px 10px; border-radius: 5px; font-size: 13px; }
	.cathd { margin-bottom: 20px; padding-bottom: 20px; position: relative; }
	.cathd span { color: #1e84b5 }
	.cathd:before, .cathd:after{ content: ''; position: absolute; left: 0; }
	.cathd:before{ width: 30px; height: 3px; background: var(--accent-color); bottom: -1px; animation: lineMove 4s linear infinite;	}
	.cathd:after{ width: 60px; height: 1px; bottom: 0; background: rgba(0,0,0,0.2);	}

	.bloghd { margin-bottom: 20px; padding-bottom: 20px; position: relative; font-size: 25px; }
	.bloghd em { color: #1e84b5; font-style: normal; }
	.bloghd span { background: #fff; box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px; padding: 5px 30px; border-radius: 20px; border-right: 4px solid var(--accent-color); border-left: 4px solid var(--accent-color); }

	/*report start*/
	.report-wrapper { border: 1px solid #ccc; padding: 30px; background: #fff4f4; }
	.report-wrapper2 { display: flex; align-items: center; justify-content:center; }
	.report-wrapper2 h2 { font-size: 2rem; color: var(--accent-color); }
	.report-wrapper2 h6 { border: 2px dashed var(--accent-color); border-radius: 0px 20px 20px 0px; padding: 20px; position: relative; }
	.report-wrapper2 h6:before { content: "\f0d9"; position: absolute; font-family: "Font Awesome 6 Pro"; font-size: 50px; font-weight: 600; left: -40px; color: var(--accent-color); 
        animation: myAnimation 3s infinite; }
	@keyframes myAnimation {
	  0%   { left: -40px; }
	  25%  { left: -35px; }
	  50%  { left: -40px; }
	  75%  { left: -35px; }
	  100% { left: -40px; }
	}


    .report-wrapper .top-label{
        color:#ac3a3a;
        font-size:22px;
        font-weight:800;
        text-transform:uppercase;
        margin-bottom:10px;
    }

    .report-wrapper .main-title{
        margin-bottom:5px;
    }

    .report-wrapper .main-title span{
        color:#4e4e4e;
    }

    .report-wrapper .sub-title{ font-size: 18px; color:#555; margin-bottom:20px; font-weight: 600; }
    .report-wrapper .section-title{
        color:#ac3a3a;
        font-weight:700;
        text-transform:uppercase;
        margin-bottom:15px;
        padding-bottom:8px;
        border-bottom:3px solid #ac3a3a;
    }
    .report-wrapper .section-content{ color:#333; margin-bottom: 5px; }
    .report-wrapper .stats-box{
        border:1px solid #ccc;
        display:flex;
        flex-wrap:wrap;
        margin: 20px 0 50px 0;
    }

    .stat-item{
        width:50%;
        padding: 23px 0px 16px 0px;
        text-align:center;
        border-right:1px solid #ccc;
        border-bottom:1px solid #ccc;
    }

    .stat-item:nth-child(2),
    .stat-item:nth-child(4){
        border-right:none;
    }

    .stat-item:nth-child(3),
    .stat-item:nth-child(4){
        border-bottom:none;
    }

    .stat-number{
        color:#404040;
        font-size: 36px;
        font-weight:700;
        margin-bottom:10px;
    }

    .stat-text{
        font-size: 16px;
        color:#444;
    }

    .report-table{
        width:100%;
        border-collapse:collapse;
        margin: 20px 0;
    }

    .report-table td{
        border: 1px solid #cfcfcf;
        padding: 8px 16px;
        vertical-align: top;
        font-size: 14px;
    }

    .report-table td:first-child{
        width:38%;
        font-weight:700;
        color:#ac3a3a;
        background:#fafafa;
    }

    @media(max-width:768px){

        .main-title{
            font-size:36px;
        }

        .sub-title{
            font-size:20px;
        }

        .section-content{
            font-size:17px;
        }

        .stat-item{
            width:100%;
            border-right:none;
        }

        .stat-item:nth-child(3){
            border-bottom:1px solid #ccc;
        }

        .stat-number{
            font-size:34px;
        }

        .stat-text{
            font-size:17px;
        }

        .report-table td{
            font-size:15px;
        }
    }

    .fans-subcategory-section{ margin-bottom: 30px; }

.fans-subcategory-title{
    font-size:22px;
    font-weight:700;
    color:#111;
    margin-bottom:8px;
}

.fans-subcategory-desc{
    color:#555;
    margin-bottom:20px;
}

.fans-subcategory-list{
    background:#efe7e7;
    border:1px solid #ddd;
    padding: 12px 15px;
    display:flex;
/*    justify-content:space-between;*/
justify-content: space-around;
    flex-wrap:wrap;
    gap:15px;
}

.fans-subcategory-item{
    color:#ac3a3a;
    font-size: 16px;
    font-weight:700;
}


/* =========================
   MARKET REPORT SECTION
========================= */

.fans-market-report-section{
    margin-top:40px;
}

.fans-market-report-title{
    font-weight:700;
    color:#404040;
    border-bottom: 2px solid #ac3a3a;
    padding-bottom:10px;
    margin-bottom:20px;
}

.fans-market-report-text{
    color:#444;
}

.fans-report-grid{
    display:flex;
    flex-direction:column;
    gap: 10px;
}

.fans-report-card{
    display:flex;
    border:1px solid #ddd;
    background:#fff;
}

.fans-report-strip{
    width: 15px;
    background:#ac3a3a;
}

.fans-report-content{
    padding: 10px 20px;
    flex:1;
}

.fans-report-content h3{
    font-size: 22px;
    color: #111;
    margin: 8px 0px 8px 0px;
    font-weight: 700;
}

.fans-report-content p{
    margin-bottom:8px;
}

/* anurag css start 27-05-26 */

.section-title_main{ font-size:24px; color:#ac3a3a; font-weight:700; margin-bottom:8px; padding-bottom:8px; border-bottom:3px solid #ac3a3a; }
.section-title_main2{ font-size:24px; color:#555; font-weight:500; margin-bottom:15px;}

.report-wrapper .bold_border{ background: #ac3a3a; height: 10px; margin: 0px 0px 50px 0px;}

.title_main_1{ float: right;}

.matrix_all_india_main{ align-items: center; margin: 60px 0px 0px 0px; }
.matrix_all_india_main_inner{ margin-right: 30px; }
.matrix_all_india_font{ font-size:28px; color: #5a5a5a; margin-bottom:15px; font-weight: 500; }
.matrix_all_india_font2{ font-size:30px; color: #000000; margin-bottom:15px; font-weight: 500; }
.matrix_all_india_main_inner2{ font-size:35px; color: #ac3a3a; }
.matrix_all_india_main_inner2 i{ font-size:32px; color: #ac3a3a; }
.matrix_all_india_main_inner2 span{ font-weight: 800; }
.matrix_all_india_main_inner2 p{ margin-bottom: 10px; }
.why_trust_title{ color:#ac3a3a; font-weight:700; }

.infobox_main{ background: #f7f7f7!important;}
.infoGrid{ display:grid; grid-template-columns:repeat(2,1fr); border:1px solid #d8d8d8;}
.infoBox{ padding: 20px 20px; border-right:1px solid #d8d8d8;border-bottom:1px solid #d8d8d8;background:#ffffff;}
.infoBox:nth-child(2),
.infoBox:nth-child(4){ border-right:none; }
.infoBox h3{ font-size:26px; color:#8a1730; margin-bottom:8px; font-weight:700; }
.infoBox p{ margin-bottom: 0; }
.faq-box{ display:flex; align-items:flex-start; gap: 15px; padding: 20px 0px 0px 0px; }
.faq-line{ width: 6px; min-height: 23px; background:#8a1730; }
.faq-content h2{ margin:0 0 10px; font-size: 17px; font-weight:700; color:#111; line-height:1.2; }
.faq-content h2 span{ margin-right:10px; }
.faq-content p{ margin: 0; }
.get_this_report{ padding: 25px; background: #7b1c2e; color: #fff; border-radius: 20px; }
.get_this_report_inner2 p{ margin:0px;}
.get_this_report_inner_text{ font-weight: 700; }
.get_this_report .get_this_report_inner p{ text-align: center;}
.fans-market-report-title2{ font-size:24px; font-weight:700; color:#fff; border-bottom:2px solid #c0475a; padding-bottom:10px; margin-bottom:20px; }
.totalrow { margin-top: 15px; }
.totalcont img { margin-right: 10px; }

.price-select-box {
    display: block;
    cursor: pointer;
    margin: 0;
    position: relative;
}
.price-select-box h6{text-transform: uppercase;}
.price-select-box input[type="radio"] {
    display: none;
}

.totalcont {
    box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
    padding: 10px;
    border-radius: 15px;
    background: #fff;
    border: 2px solid transparent;
    transition: all 0.3s ease;
    height: 100%;
}

.totalcont span {
    font-weight: 700;
    font-size: 20px;
    color: #ca0e18;
    display: block;
    margin-top: 5px;
}

/* Hover Effect */
.price-select-box:hover .totalcont {
    transform: translateY(-3px);
    border-color: #ca0e18;
}

/* Selected Box */
.price-select-box input[type="radio"]:checked + .totalcont {
    border-color: #ca0e18;
    background: #fff5f5;
    transform: translateY(-3px);
    box-shadow: rgba(202, 14, 24, 0.25) 0px 5px 20px;
}


@media(max-width:768px){

    .faq-box{
        gap:15px;
        padding:15px;
    }

    .faq-line{
        width:5px;
        min-height:60px;
    }

    .faq-content h2{
        font-size:26px;
    }

    .faq-content p{
        font-size:18px;
    }
}

.chatwindow { max-width: 600px; margin: 0px auto 40px auto;	background: #efefef; box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 12px;  border-radius: 15px; }
.chathead h5 { background: var(--primary-color); color: #fff; padding: 10px 15px; border-radius: 15px 15px 0 0 }
.chatbody { background: #fff; border: 1px solid #fff; border-top: 0; border-radius: 0 0 15px 15px }
.chatmsg { background: #efefef; margin: 0px 0px 20px 0px; padding: 10px 20px; border-radius: 15px; }
.chatmsg h6 { margin: 5px 0px 5px 0px; font-weight: 700; }
.chatmsg p { margin: 0px; padding: 0; line-height: 1.3 }
.yellow { color: yellow; }
.chatmsg2 { background: #eaf3ff; }
.sendmsg-area { position: relative; }
.sendmsg-area textarea { width: 100%; height: 100px; padding: 10px; border-radius: 5px; border: 2px solid #efefef; resize: none; }
.sendmsg-area a { position: absolute; right: 10px; bottom: 15px; }
.sendmsg-area a span { background: #000; }
.sendmsg-area a:hover span { background: var(--accent-color); }
.sendmsg-area a span:after { background: var(--accent-color); }
.formrow { font-size: 13px; margin: 10px 0 0 0;  }
.formrow label { font-size: 13px; font-weight: 600; margin: 0px 0 3px 0; padding:0  }
.formrow input, .formrow select { font-size: 13px; height: 35px; }
.pricebar { background: #000; color: #fff; padding: 30px; border-radius: 10px 10px 0 0; }
.pricebar p { margin-bottom: 0; }
.pricebar ul { list-style: none; margin: 0px; padding: 0px!important; }
.pricebar ul li { padding: 0px 0px 5px 20px!important; position: relative; }
.pricebar ul li span { left: 0px; position: absolute; }
.pricebar-cont1 { position: relative; padding: 20px 20px 20px 0px; }
.pricebar-cont1:after { content:''; position: absolute; width: 1px; height:100%; right: 0; top:0; background: #fff; opacity: 0.3 }
.pricebar-cont1 span { background: #fff; min-width: 100px; height: 100px; margin: 0px 20px 0 0; border-radius: 100%; display: flex; align-items: center; justify-content: center; 
	color: var(--accent-color); flex-grow: 1; font-size: 40px; }
.pricebar-cont2 { position: relative; padding: 0px 20px 0px 0px; }
.pricebar-cont2:after { content:''; position: absolute; width: 1px; height:100%; right: 0; top:0; background: #fff; opacity: 0.3 }

.pricebar-cont3 { position: relative; }
.pricebar-cont3 strong { font-size: 2.2rem; display: block; margin: 15px 0; }
.pricebar-cont3 span { font-size: 1.1rem; }
.pricebar-cont3 a { display: block; width: 100%; margin: 10px 0 0 0; text-align: center; }
.pricebar-cont3 a span { padding: 15px 0; background: var(--accent-color); }
.sendmsg-area a:hover span { background: var(--accent-color); }
.sendmsg-area a span:after { background: var(--accent-color); }
.bazar-hd3 h2:after { width: 100%!important; left: 0; }
.bazar-hd3 h2 em { padding: 0px 30px!important; }
.bazar-hd3 h2 span { color: var(--accent-color); }


/* Responsive */

@media(max-width:768px){

    .infoGrid{
        grid-template-columns:1fr;
    }

    .infoBox{
        border-right:none;
    }

    .infoBox h3{
        font-size:24px;
    }

    .infoBox p{
        font-size:18px;
    }

}


/* anurag css end 27-05-26 */

/* =========================
   RESPONSIVE
========================= */

@media(max-width:768px){

    .fans-subcategory-list{
        justify-content:flex-start;
    }

    .fans-subcategory-item{
        width:100%;
        font-size:18px;
    }

    .fans-market-report-title{
        font-size:30px;
    }

    .fans-market-report-text{
        font-size:17px;
    }

    .fans-report-content h3{
        font-size:22px;
    }

    .fans-report-content p{
        font-size:15px;
    }

}
/*report end*/

/* CANVAS */
#particleCanvas{
    position:fixed;
    inset:0;
    width:100%;
    height:100%;
    z-index:0;
    opacity: 0.5;
}
.section-title2 h2 { font-weight:700; margin-bottom:15px; padding-bottom:8px; }
.section-title2 h2 span { font-weight: 900; margin-bottom:15px; padding-bottom:8px; color:#ac3a3a; }
.text-anime-style-3 { text-transform: none; }
.redcolor { color: var(--accent-color); }

/*faq start*/
/* FAQ Accordion CSS */
.faq-accordion .accordion-item{
    border: none;
    border-radius: 0;
    margin-bottom: 15px;
    
    overflow: hidden;
}

.faq-accordion .accordion-button{
    color: #111;
    font-size: 16px;
    font-weight: 700;
    padding: 5px 60px 5px 30px;
    box-shadow: none;
    border: none;
    position: relative;
    line-height: 1.4;
}

/* Left red line */
.faq-accordion .accordion-button::before{
    content: "";
    position: absolute;
    left: 0;
    top: 5px;
    width: 4px;
    height: 25px;
    background: #7d0d18;
}

/* Plus / Minus Icon */
.faq-accordion .accordion-button::after{
    background-image: none !important;
    content: "+";
    font-size: 28px;
    font-weight: 300;
    color: #111;
    position: absolute;
    right: 25px;
    top: 50%;
    transform: translateY(-50%);
    width: auto;
    height: auto;
}

.faq-accordion .accordion-button:not(.collapsed)::after{
    content: "−";
}

/* Remove bootstrap active blue */
.faq-accordion .accordion-button:not(.collapsed){
    
    color: #111;
    box-shadow: none;
}

/* Body */
.faq-accordion .accordion-body{
    padding: 0 30px 25px 30px;
    
}

.faq-accordion .accordion-body p{
    margin: 0;
    line-height: 1.8;
    color: #333;
}

/* Mobile Responsive */
@media(max-width:767px){

    .faq-accordion .accordion-button{
        font-size: 18px;
        padding: 18px 50px 18px 20px;
    }

    .faq-accordion .accordion-body{
        padding: 0 20px 20px 20px;
    }

    .faq-accordion .accordion-body p{
        font-size: 15px;
    }

    .faq-accordion .accordion-button::before{
        top: 18px;
        height: 24px;
    }
}
/*faq end*/

.bkbmenu { position: sticky; top:0; z-index: 2; }
.bkbmenu ul { list-style: none; margin: 0px; padding: 0px; display: flex; flex-wrap: wrap; }
.bkbmenu ul li { flex-grow: 1; text-align: center; }
.bkbmenu ul li a { display: block; padding: 17px 0px; background: #1e84b5; font-size: 17px; color: #fff; font-weight: 600; }
.bkbmenu ul li:nth-child(1) a { background: var(--accent-color); }
.bkbmenu ul li a:hover { background: #000; }
.newscarousal { padding-bottom: 30px; }
.newscarousal .swiper-button-prev, .newscarousal .swiper-button-next { width: 45px; height: 45px; border-radius: 100%; 
   /* The element must be partially transparent to see the blur behind it */
  background-color: rgba(255, 255, 255, 0.5); 
  
  /* Applies the blur effect strictly to the area behind the element */
  backdrop-filter: blur(10px); 
  -webkit-backdrop-filter: blur(10px); /* For older Safari support */
 }
.newscarousal .swiper-button-prev:hover, .newscarousal .swiper-button-next:hover { background-color: rgba(255, 255, 255, 1); }
.newscarousal .swiper-button-prev:after, .newscarousal .swiper-button-next:after { font-size: 20px; font-weight: 500; color: #fff; }
.newscarousal .swiper-button-prev:hover:after, .newscarousal .swiper-button-next:hover:after { color: #000; }
.newscarousal .swiper-pagination { bottom: 0px!important; }
.newscarousal .swiper-pagination-bullet { width: 12px; height: 12px; }
.newscarousal .swiper-pagination-bullet-active { background: var(--accent-color); }
.newstarget-link { position: relative; top: -60px;}
.news-header { background-image: url(../images/news-banner.jpg); padding: 120px 0 40px 0; }
.news-header h1 { font-size: 43px; }
.borderbot { padding-bottom: 10px; position: relative; }
.borderbot:after { content:''; width: 40px; height: 3px; position: absolute; left:0; bottom:0; background: var(--accent-color); }


.creambg { background: #f1e7dd; }
.insight-list { margin: 15px; padding: 0px 0px 20px 0px; display: flex; align-items: center; justify-content: center; position: relative; }
.insight-list:after { content:''; width: 80%; height: 2px; position: absolute; left:0; right:0; bottom:0;
	 background: #e8e8e8;
	 background: linear-gradient(86deg, rgba(0, 0, 0, 0.2) 0%, rgba(255, 255, 255, 1) 100%);
}
.insight-list:last-child { padding-bottom: 0; }
.insight-list:last-child:after { display: none; }

.insight-list .datee { font-size: 14px; }
.insight-list i { margin-right: 5px; color: var(--accent-color); }
.insight-list img { border-radius: 10px; max-width: 100px; max-height: 100px; }
.newshd { font-size: 16px; line-height: 1.5; font-weight: 700; color: #000; margin-bottom: 5px; }
.newshd a { color: #000; }
.newshd a:hover { color: #1e84b5; }
.newsdet-img { float: left; margin: 0px 20px 10px 0px; }
.newsdet-img img { border-radius: 10px; }
.insight-listouter { max-height: 320px; overflow-y: auto; }
.insight-listouter::-webkit-scrollbar{ width:8px; background:#efefef; border-radius:10px; }
.insight-listouter::-webkit-scrollbar-thumb{ background: #1e84b5; border-radius:10px; }
.myacc-list li { font-size: 15px!important; padding-bottom: 10px!important; margin-bottom: 10px!important; }
.myacc-list li a:before { display: none!important; }
.myacc-list li:last-child { padding-bottom: 0px!important; margin-bottom: 0px!important; }

.dashboard-card{
    background:#fff;
    padding: 15px;
    border-radius:15px;
    box-shadow:0 5px 20px rgba(0,0,0,.08);
    height:100%;
}

.stat-card{
    text-align:center;
}
.stat-card p { text-align:center!important; margin-bottom:0!important; padding-bottom:0!important; }

.stat-card h2{
    font-size:42px;
    font-weight:700;
    color:var(--accent-color);
    margin-bottom:10px;
}

.activity-list{
    list-style:none;
    padding:0;
    margin:0;
}

.activity-list li{
    padding:12px 0;
    border-bottom:1px solid #eee;
}

.status-active{
    color:#28a745;
    font-weight:600;
}


/*go to top start*/
#scrollTopBtn {
    position: fixed;
    bottom: 70px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: #d9232d;
    color: #fff;
    border-radius: 50%;
    text-align: center;
    line-height: 50px;
    font-size: 18px;
    text-decoration: none;
    display: none;
    z-index: 9999;
    transition: all 0.3s ease;
}

#scrollTopBtn:hover {
    background: #b71c24;
    color: #fff;
    transform: translateY(-3px);
}
/*go to top end*/

.bazar-hd { margin-bottom: 15px; }
.bazar-hd h2 { position: relative; margin-bottom: 0px; padding-bottom: 0px; }
.bazar-hd h2 em { font-style: normal; padding: 0px 30px 0px 0px; background: #fff; position: relative; z-index: 1; }
.bazar-hd h2:after { content:''; background: var(--primary-color); position: absolute; z-index: 0; right:0; bottom: 16px; width: 90%; height: 3px;  }

.latest-hd { position: relative; }
.latest-hd h4 { font-size: 22px; color: var(--accent-color); }
.latest-hd a { font-size: 13px; background-color: var(--accent-color); font-weight: 600;
    color: #fff; padding: 0px 11px; border-radius: 6px; }
.latest-hd a img { transform: rotate(45deg); }
.latest-hd a:hover { background-color: #000; }
.insight-col { background: #fff; border-radius: 10px; box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 6px -1px, rgba(0, 0, 0, 0.06) 0px 2px 4px -1px; position: relative; transition: all 0.3s ease-in-out; }
.insight-col:hover { box-shadow: rgba(0, 0, 0, 0.3) 0px 4px 6px -1px, rgba(0, 0, 0, 0.06) 0px 2px 4px -1px; position: relative; }
.insight-img { position: relative; border-radius: 10px 10px 0 0; overflow: hidden; min-height: 218px; }
.insight-img img { border-radius: 10px 10px 0 0; max-width: 100%; max-height: 100%; max-height: 218px; transition: all 0.3s ease-in-out }
.insight-img2 { min-height: 228px; }
.insight-img2 img { max-height: 228px; }

.insight-img span { position: absolute; top: 20px; left: 20px; z-index:1; background: var(--accent-color); color: #fff; padding: 0px 8px; border-radius: 5px; }
.insight-img .image-anime:hover:after { height: 1200%; }
.insight-img .image-anime:hover img { transform: scale(1.05); }
.insight-content { padding: 10px 15px; }
.insightdate { font-weight: 600; color: var(--accent-color); }
.mydate { position: absolute; right: 40px; margin-top: -40px; background: #fff; border-radius: 5px; padding: 2px 10px; }

.insight-content h4 { font-size: 18px; margin: 5px 0px; line-height: 1.3; color: #000; min-height: 52px; }
.insight-content h4 a { color: #000; }
.detailhd { font-size: 22px!important; min-height: 1px!important; margin: 5px 0px 10px 0px!important; padding: 5px 10px 5px 15px; line-height: 1.3; 
	color: var(--accent-color)!important; background: #fff; display: block; border-radius: 0px 10px 10px 0px; border-left: 3px solid var(--accent-color); }

.insight-more { color: var(--accent-color); font-weight: 600; }
.insight-more:hover { color: #000; }
.othermarket-hd { position: relative; margin-bottom: 20px; }
.othermarket-hd span { color: #fff; background: var(--accent-color); color: #fff; padding: 5px 30px; border-radius: 7px; display: inline-block; }

.row.equal-height { display: flex; flex-wrap: wrap; }
.row.equal-height > div { display: flex; }
.marketreport { flex: 1; background: #d7e8f4; border-radius: 15px; margin: 10px 0px 20px 0px; padding: 15px 20px; border: 1px solid #ebf3fb; position: relative; }
.report-hd { display: flex; align-items: center; justify-content: flex-start; margin-bottom: 20px; }
.report-hd h4 { font-size: 1.3rem; font-weight: 700; position: relative; padding-bottom: 10px; text-transform: uppercase; color: var(--accent-color); }
.report-hd h4 span { font-style: italic; }
/*.marketreport .report-hd h4 { color: #083a9d; }*/
.report-hd h4:after { content:''; background: #083da2; position: absolute; z-index: 0; left:0; bottom: 0; width: 32px; height: 1px;  }
.report-hd img { margin: 0px 15px 0px 0px; box-shadow: rgba(0, 0, 0, 0.1) 0px 0px 8px -1px, rgba(0, 0, 0, 0.06) 0px 2px 4px -1px; border-radius: 100%; }

.report-content h6 { position: relative; padding-bottom: 10px; margin-bottom: 7px; }
.report-content p { text-align: left; }
.report-content h6:after { content:''; background: #083da2; position: absolute; z-index: 0; left: 30%; bottom: 0; width: 32px; height: 1px;  }
.btn-default2{
	position: relative;
	display: inline-block;
	font-size: 14px;
	font-weight: 600;
	line-height: 0.6em;
	color: var(--primary-color);
	border-radius: 5px;
	border: none;
	overflow: hidden;
	transition: all 0.5s ease-in-out;
}
.btn-default2:hover{
	background-color: transparent;
}
.btn-default2::after{
	content: '';
    display: block;
    position: absolute;
	top: 0;
    left: auto;
	right: 0;
    bottom: 0;
	width: 0;
	height: 100%;
	border-radius: 5px;
    background: var(--primary-color);
    transition: all 0.4s ease-in-out;
	z-index: 0;
}

.btn-default2:hover::after{
	width: 100%;
	left: 0;
	right: auto;
}

.btn-default2 span{
	display: block;
	background-color: #01359b;
	color: #fff;
	padding: 10px 20px;
	overflow: hidden;
	z-index: 1;
	transition: all 0.5s ease-in-out;
	position: relative;
}

.btn-default2:hover span{
	background-color: transparent;
	color: var(--white-color);
}

.btn-default2 span::after{
	content: '';
    display: block;
    position: absolute;
	top: 0;
    left: auto;
	right: 0;
    bottom: 0;
	width: 0;
	height: 100%;
	border-radius: 8px;
    background: #18346c;
    transition: all 0.4s ease-in-out;
	z-index: -1;
}

.btn-default2:hover span::after{
	width: 100%;
	left: 0;
	right: auto;
}

.askreport { background: #fff4f4; border-radius: 15px; margin: 10px 0px 20px 0px; padding: 15px 20px; border: 1px solid #ffe9e9; position: relative; }
.askreport .report-hd h4:after { background: var(--accent-color); }
.askreport .report-content h6 { margin-bottom: 10px; padding-bottom: 0px; }
.askreport .report-content h6:after { display: none; }
.askreport .btn-default2 span{ background-color: var(--accent-color)!important; }
.askreport .btn-default2::after{ background: var(--accent-color)!important; }
.askpoint { font-size: 12px; font-weight: 600; line-height: 1.2; position: relative; padding: 0px 15px 0px 22px; margin: 15px 0; }
.askpoint i { font-size: 18px; color: var(--accent-color); position: absolute; left:0; top: 5px; }
.askwhitecont { background: #fff; border-radius: 20px; padding: 20px 0px; margin: 6px 0 0 0; }
.askstats { padding: 8px 0 8px 15px; }
.askstats img { margin: 0px 10px 0px 0px; }
.askstats span { font-size: 16px; font-weight: 700; line-height: 1; color: var(--accent-color) }
.askstats p { font-size: 12px; margin: 0px; padding: 0px; text-align: left; line-height: 1; }
.page-hd { margin-bottom: 20px; }
.page-hd h2 { position: relative; padding-bottom: 20px; font-size: 24px; }
.page-hd h2::after{
	content: '';
    display: block; position: absolute;
	bottom: 0; left: 0; right: 0;
    margin: auto;
	height: 4px;
	width: 50px;
    background: var(--accent-color);
}

.whatouter { padding: 40px 0; background-color: #f5f9fe; }
.whatbox { border-bottom: 1px solid #efefef;
	display: flex; align-items: center; justify-content: flex-start; 
	padding: 0px 0px 8px 0px; margin: 5px 0 8px 0;
}
.whatbox:last-child { border-bottom: 0; }
.whaticon { flex-grow: 1; margin: 0px 15px 0px 0px; min-width: 60px; max-width: 60px; height: 60px; 
	border-radius: 100%; display: flex; align-items: center; justify-content: center; background: #ffe8e8; }
.whatcontent h6 { font-size: 18px; line-height: 1.4 }
.whatbox:hover .whaticon { background: #efefef }

.howbox { margin: 20px 0px; position: relative; }
.how-icon { width: 95px; height: 95px; display: flex; align-items: center; justify-content: center; border-radius: 100%; background: #efefef; }
.howbox span { width: 30px; height: 30px; display: flex; align-items: center; justify-content: center; border-radius: 100%; background: var(--accent-color); color: #fff; font-size: 15px; position: absolute; left: -30px; }
.how-content h3 { margin: 40px 0 20px 0; font-size: 18px; font-weight: 700; line-height: 1.5 }
.how-content p { font-size: 13px; font-weight: 600; text-align: left; max-width: 200px; }
.howarrow-icon { position: absolute; right: 80px; }
.bluecolor { color: #01359b!important; }
.discountline { margin-bottom: 5px; position: absolute; right: 2%; top: 8%; }
.discountline em { background: #ac3a3a; color: #fff; font-style: normal; font-size: 13px;
    padding: 4px 10px; border-radius: 5px; }
.industpol-hd h4 { font-size: 22px; line-height: 1.2; color: var(--accent-color); position: relative; padding-left: 35px; margin-bottom: 20px; }
.industpol-hd h4 i { position: absolute; left: 5px; top: 2px; }
.industpol-hd h4 span { position: relative; padding-bottom: 8px; }
.industpol-hd h4 span::after{ content: ''; display: block; position: absolute; 
	bottom: 0; left: 0; height: 3px; width: 50px; background: var(--accent-color); }
.industpol-hd a { font-weight: 600; color: var(--accent-color); }
.industpol-hd a:hover { color: #000; }


.pol-column { margin: 8px 0px 10px 0px; padding: 15px 8px 9px 15px; border-radius: 8px; box-shadow: rgba(0, 0, 0, 0.1) 0px 0px 5px 0px, rgba(0, 0, 0, 0.1) 0px 0px 1px 0px; }
.pol-column h5 { font-size: 16px; line-height: 1.2; text-transform: uppercase; color: var(--accent-color); position: relative; margin-bottom: 10px; }
.pol-column h5 span { width: 25px; height: 25px; border: 1px solid var(--accent-color); border-radius: 100%; display: inline-flex; align-items: center; justify-content: center; margin: 0px 5px 0px 0px; }
.pol-column h6 { font-size: 14px; line-height: 1.4; margin-bottom: 10px; }
.pol-column a { font-size: 13px; overflow: hidden; background-color: var(--accent-color); font-weight: 600; position: relative;
    color: #fff; margin: 15px 0 0 0; padding: 5px 21px; border-radius: 6px; text-align: center; display: inline-block; }
.pol-column a span { position: relative; z-index: 1 }
.pol-column a:before { content: ''; background-color: #580c11; width: 0%; height: 100%; left: 0; top: 0; position: absolute; transition: all 0.3s ease-in-out }
.pol-column a:hover:before { width: 100%; }

.radio-wrapper-1 {
    color: #212529;
    font-family: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
    font-weight: 400;
    line-height: 1.5;
  }
  
  .radio-wrapper-1 label {
    display: inline-block;
    padding-left: .25em;
  }
  
  .radio-wrapper-1 input[type=radio] {
    font-family: inherit;
    font-size: inherit;
    line-height: inherit;
    margin-bottom: 0;
    margin-right: 0;
  }
  
  .radio-wrapper-1 input[type=radio] {
    background-position: center center;
    -webkit-print-color-adjust: exact;
    appearance: none;
    background-color: #fff;
    background-repeat: no-repeat;
    background-size: contain;
    border: 1px solid rgba(0, 0, 0, .25);
    height: 1.2em;
    width: 1.3em;
    margin-top: .25em;
    vertical-align: top;
    border-radius: 100%;
  }
  
  .radio-wrapper-1 input[type=radio]:active {
    filter: brightness(90%);
  }
  
  .radio-wrapper-1 input[type=radio]:focus {
    border-color: #86b7fe;
    box-shadow: rgba(0, 0, 3, .10) 0 0 0 .15rem;
    outline: 0;
  }
  
  .radio-wrapper-1 input[type=radio]:checked {
    background-color: var(--accent-color);
    border-color: var(--accent-color);
  }
  
  .radio-wrapper-1 input[type=radio]:checked {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3e%3ccircle r='2' fill='%23fff'/%3e%3c/svg%3e");
  }
  
  .radio-wrapper-1 input[type=radio]:disabled {
    filter: none;
    opacity: .5;
    pointer-events: none;
  }
  
  .radio-wrapper-1 input[type=radio]:disabled ~ label {
    opacity: .5;
  }

  /*video clip start*/
	  .video-card{
		    width:100%; background:#fff;		    
		    border-radius: 8px; margin: 7px 0px 10px 0px; overflow:hidden;
		    box-shadow: rgba(0, 0, 0, 0.1) 0px 0px 5px 0px, rgba(0, 0, 0, 0.1) 0px 0px 1px 0px;
		    transition:.3s;
		}

		.video-card:hover{
		    transform:translateY(-5px);
		}

		.video-thumb{
		    position:relative;
		    height:150px;
		    overflow:hidden;
		}

		.video-thumb img{
		    width:100%;
		    height:100%;
		    object-fit:cover;
		    display:block;
		}

		.play-btn{
		    position:absolute;
		    top:50%;
		    left:50%;
		    transform:translate(-50%,-50%);
		    width: 45px;
		    height: 45px;
		    border:3px solid #fff;
		    border-radius:50%;
		    display:flex;
		    align-items:center;
		    justify-content:center;
		    color:#fff;
		    font-size:20px;
		    backdrop-filter:blur(2px);
		    cursor:pointer;
		}

		.card-content{
		    padding: 5px 10px 15px 10px;
		}

		.category{
		    color:#b22222;
		    font-size:13px;
		    font-weight:700;
		    text-transform:uppercase;
		    margin-bottom: 5px;
		}
		.card-content h3{
		    margin:0;
		    color:#222;
		    font-size: 16px;
		    line-height: 1.5;
		    font-weight:700;
		}

		.watch-link{
		    display:flex;
		    align-items: center;
		    justify-content: space-between;
		    gap:12px;
		    margin-top: 12px;
		    text-decoration:none;
		    color:#000000;
		    font-size: 13px;
		    font-weight:700;
		    border-bottom: 1px solid #efefef;
		}

		.watch-link:hover{
		    gap:16px;
		}

		.watch-link i{
		    transition:.3s;
			color:#b22222 ;
		}
  /*video clip end*/
  .newslettr-column { background-color: #000; margin: 20px 0px 0 0; padding: 20px; border-radius: 8px;  }
  .newsleter-left { display: flex; align-items: center; justify-content: flex-start; }
  .newsleter-left span { display: flex; align-items: center; justify-content: center;
   width: 100px; height: 100px;
    min-width: 100px; /* Prevent shrinking */
    flex-shrink: 0;   /* Prevent flexbox from reducing size */
    border-radius: 100%; font-size: 3rem; color: #fff;
  background-color: #bb0f1d; margin-right: 10px; }
  .newsleter-left h3 { color: #fff; margin-bottom: 5px; }
  .newsleter-left p  { color: #fff; }
  .newsletter-field { background: #fff; padding: 2px; border-radius: 5px; display: flex; align-items: flex-start; justify-content: flex-start; }
  .newsletter-field input { flex-grow: 1; border: 0; padding: 10px; height: 40px; }  
  .newsletter-field a { font-size: 16px; padding: 10px 30px; background-color: var(--accent-color); font-weight: 500; position: relative;
    color: #fff; margin: 0px 0 0 5px; border-radius: 6px; text-align: center; }
  .newsletter-field a span { position: relative; z-index: 1 }
  .newsletter-field a:before { content: ''; background-color: #580c11; width: 0%; height: 100%; left: 0; top: 0; position: absolute; transition: all 0.3s ease-in-out }
  .newsletter-field a:hover:before { width: 100%; }
  .askmtrixsec1 { background: #fff4f4; padding: 0px 0 60px 0px; }
  .ask-metrixleft h5 { font-size: 12px; color: var(--accent-color); text-transform: uppercase; margin-bottom: 10px; position: relative; padding: 0px 0px 0px 60px; }
  .ask-metrixleft h5:before { content: ''; position: absolute; left: 0; top: 8px; width: 50px; height: 3px; background: var(--accent-color); }
  .ask-metrixleft h1 { font-size: 3.6rem; line-height: 1.1; font-style: italic; font-weight: 800!important; color: var(--accent-color); text-transform: uppercase; margin-bottom: 10px; position: relative; padding: 0px 0px 10px 0px; }
  .ask-metrixleft h1 span { color: var(--primary-color); display: block; position: relative; padding: 0px 0px 20px 0px; }
  .ask-metrixleft h1 span:before { content: ''; position: absolute; left: 0; bottom: 0px; width: 50px; height: 3px; background: var(--accent-color); }

  .ask-metrixleft h6 { font-size: 24px; color: var(--primary-color); margin-bottom: 10px; }
  .ask-metrixleft p span { font-weight: 700; color: var(--accent-color); }
  .ask-metrixright { background: #fff; padding: 10px 20px 0px 20px; border-radius: 40px; box-shadow: 0px 4px 30px 0px #0000000A; }
  .marketperfsec1 { background: #fff4f4; padding: 0px 0 30px 0px; }
  .marketperfleft h2 { font-size: 3rem; line-height: 1.1; font-style: italic; font-weight: 800 !important;
    color: var(--accent-color); margin-bottom: 10px; position: relative; padding: 0px 0px 10px 0px; }
  .marketperfleft h2 span { color: var(--primary-color); }
  .marketperfleft h2:before { content: ''; position: absolute; left: 0; bottom: 0px; width: 50px; height: 3px; background: var(--accent-color); }
  .marketperfleft h6 { font-size: 34px; color: var(--primary-color); margin-bottom: 10px; }
  .marketperfleft p span { font-weight: 700; color: var(--accent-color); }
  .insight-detcol { background: #fff4f4; padding: 20px 10px; margin-bottom: 40px; border-radius: 20px; position: relative; }
  .insight-detcol img { border-radius: 15px; }

  .insight-detcol img { float: left; margin: 0px 20px 20px 0px; }
  #typingText { margin: 0px 0px 30px 0px; padding: 40px 0 0 0; color: var(--accent-color); }
  #typingText::after { content: "|"; animation: blink 0.7s infinite; }
	  @keyframes blink { 
	  	 50% { opacity: 0; }
	  }

  /*start*/
  .cooktop-infographic{
	    background:#f8f9fb;
	    padding:60px 0;
	    font-family:Arial,sans-serif;
	}

	.cooktop-infographic .container{
	    max-width:1200px;
	    margin:auto;
	}

	.header{
	    text-align:center;
	    margin-bottom:30px;
	}

	.header h1{
	    font-size:56px;
	    font-weight:700;
	    color:#0a2e63;
	    line-height:1.1;
	}

	.header p{
	    font-size:20px;
	    color:#555;
	}

	.hero-image{
	    text-align:center;
	    margin-bottom:30px;
	}

	.hero-image img{
	    max-width:500px;
	    width:100%;
	}

	.headline{
	    text-align:center;
	    color:#0a2e63;
	    margin-bottom:40px;
	}

	.section-title{
	    padding:15px;
	    font-size:15px;
	    font-weight:600;
	    margin-bottom:20px;
	    /* text-align:center; */
	    border-radius:8px;
	}

	.stats-grid{
	    display:grid;
	    grid-template-columns:repeat(5,1fr);
	    gap:20px;
	    margin-bottom:40px;
	}

	.stat-box{
	    background:#fff;
	    padding:25px;
	    text-align:center;
	    border-radius:10px;
	    box-shadow:0 5px 15px rgba(0,0,0,.08);
	}

	.stat-box h3{
	    color:#d61f26;
	    font-size:36px;
	    margin-top:10px;
	}

	.shift-grid{
	    display:grid;
	    grid-template-columns:repeat(3,1fr);
	    gap:20px;
	    margin-bottom:40px;
	}

	.shift-box{
	    background:#fff;
	    padding:25px;
	    text-align:center;
	    border-radius:10px;
	    box-shadow:0 5px 15px rgba(0,0,0,.08);
	}

	.shift-box h4{
	    color:#0a2e63;
	    margin-bottom:10px;
	}

	.infrared-box,
	.insight-box,
	.footer-box{
	    background:#fff;
	    padding:30px;
	    border-radius:10px;
	    box-shadow:0 5px 15px rgba(0,0,0,.08);
	    margin-bottom:30px;
	}

	.growth{
	    display:flex;
	    justify-content:center;
	    align-items:center;
	    gap:50px;
	    margin-bottom:20px;
	}

	.growth h3{
	    color:#d61f26;
	    font-size:48px;
	}

	.arrow{
	    font-size:40px;
	    color:#0a2e63;
	}

	.infrared-box ul{
	    padding-left:20px;
	}

	.infrared-box li{
	    margin-bottom:10px;
	}

	.footer-box{
	    text-align:center;
	}

	.highlight{
	    background:#d61f26;
	    color:#fff;
	    padding:15px;
	    border-radius:8px;
	    margin-top:20px;
	    font-size:22px;
	    font-weight:600;
	}

	@media(max-width:991px){

	    .stats-grid{
	        grid-template-columns:repeat(2,1fr);
	    }

	    .shift-grid{
	        grid-template-columns:1fr;
	    }

	    .header h1{
	        font-size:40px;
	    }
	}

	@media(max-width:576px){

	    .stats-grid{
	        grid-template-columns:1fr;
	    }

	    .growth{
	        flex-direction:column;
	        gap:15px;
	    }
	}
  /*end*/

  .transparent-hdr { background:#fff; padding: 70px 0 75px 0; }
  .transparent-hdr:before { display:none; }
  .meinhd h2 { font-size: 35px; font-weight: 800; line-height: 1.3em; color: var(--primary-color); }
  .meinhd h2 span { color: var(--accent-color); }

  .mytable { width: 100%; }
  .mytable thead { background: rgba(255, 255, 255, 1.0); border-radius: 20px;  }
  .mytable thead th:first-child { border-radius: 10px 0px 0px 10px; }
  .mytable thead th:last-child { border-radius: 0px 10px 10px 0px; }
  .mytable thead th { padding: 10px; line-height: 1; font-size: 17px; text-align: left; vertical-align: top; color: var(--accent-color); }
  .mytable td { padding: 10px; line-height: 1.5; font-size: 14px; text-align: left; vertical-align: top; border-bottom: 1px dashed rgba(0, 0, 0, 0.2); }
  .mytable tr:last-child td { border-bottom: 0; }
  .blogright { max-height: 900px; overflow-y: auto; padding-right: 10px; }
  .notecontent { background: rgba(255, 255, 255, 0.5); padding: 10px 20px; margin-top: 20px; border-radius: 10px; box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 6px -1px, rgba(0, 0, 0, 0.06) 0px 2px 4px -1px; }


  /*scrollbar css start*/
	#style-2::-webkit-scrollbar-track
	{
		-webkit-box-shadow: inset 0 0 6px rgba(0,0,0,0.3);
		border-radius: 10px;
		background-color: #F5F5F5;
	}

	#style-2::-webkit-scrollbar
	{
		width: 8px;
		background-color: #F5F5F5;
	}

	#style-2::-webkit-scrollbar-thumb
	{
		border-radius: 10px;
		-webkit-box-shadow: inset 0 0 6px rgba(0,0,0,.3);
		background-color: var(--accent-color);
	}
  /*scrollbar css start*/

  .reportlist-cont { padding: 10px; margin-top: 10px; border-radius: 15px;
  	box-shadow: rgba(0, 0, 0, 0.1) 0px 0px 6px 0px, rgba(0, 0, 0, 0.03) 0px 2px 4px 0px; 
  	display:flex; flex-direction:column;
  }
  .reportlist-cont h2 { color: var(--accent-color);   position: relative;font-size: 18px;text-align: center;font-weight: 800;margin: 10px;padding: 5px 0px 0px 5px;margin-bottom: 10px;}
  .reportlist-cont h2 span { position: absolute; height: 35px; width: 35px; left: 0px; top: 0px; background: var(--accent-color); color: var(--white-color); display: flex; align-items: center; justify-content: center; border-radius: 100%; }
  .reportlist-cont .btn-default2 { min-width: 80%; margin-top:auto; /* pushes button to bottom */ }
  .reportlist-cont .btn-default2 span { background-color: var(--accent-color)!important; padding: 13px 0px; text-align: center; }
  .reportlist-cont .btn-default2 span::after { background-color: #70151b; }

  .reportlist-img  { margin-top: 20px !important; width: 100px;height: 100px;background: #fff4f4;margin: auto;border-radius: 50%;display: flex;align-items: center;margin-bottom: 20px;justify-content: center; }
  .reportlist-img i { font-size: 51px;color: var(--accent-color); }
  .reportlist-content { display:flex; flex-direction:column; flex:1; }
  .reportlist-content h5 { font-size: 18px; margin: 0px 0px 10px 0px; color: var(--accent-color); }
  .reportlist-content ul { margin: 0px 0px 0px 0px; padding: 0px 0px 0px 0px; list-style: none; }
  .reportlist-content ul li { position: relative; padding-left: 0px; font-weight: 600; }
  /*.reportlist-content ul li::before { content: "•"; color: var(--accent-color); font-size: 20px; position: absolute; left: 0; }*/

  /* amaan css start  ( 10-06-2026) */
    .bottomsafter{position: relative;}
  	/* .bottomsafter::before{content: "" ;  width:100%; height: 2px; background:#ffbabe;display: block;margin: auto;left: 0px;right: 0px;bottom: -11px;position: absolute;} */
  	/* .bottomsafter::after{content: "" ;  width:100px; height: 4px; background:#a30f16;display: block;left: 60px;bottom: -12px;position: absolute;border-radius:20px;animation: bgMove 8s ease infinite;}
	@keyframes bgMove {
    0% { left:100px; } 50% {  right: 0px; } 75%{left: 0px;} 100% { left:100px ; }
} */
  	/*.reportlist-cont h2::after{ content: "" ;  width:80px; height: 2px; background: var(--accent-color);display: block;margin: auto;left: 0px;right: 0px;bottom: -11px;position: absolute; }*/
  	.report-provide{ background:#fff4f4;  border-radius:10px; padding:30px; }
	.title-wrap{ position:relative; }
	.title-wrap h2{ display:inline-block;color:#ac3a3a;font-size:30px;font-weight:700;position:relative;padding:0 25px;font-family: var(--default-font);} 
	.title-wrap h2:before,
	.title-wrap h2:after{content:"";width:45px;height:2px;background:#ac3a3a;position:absolute;top:50%;}
	.title-wrap h2:before{ left:-45px;}
	.title-wrap h2:after{right:-45px;}
	.item{text-align:center;padding:25px 15px;border-right:1px solid #e7e7e7;height:100%;}
	.item i{font-size:42px;color:#ac3a3a;margin-bottom:8px;display:block;}
	.item h6{font-size:17px;font-weight:700;margin:0;color:#222;line-height:1.4;}
  	.iner-abouts h4{font-size:20px;font-weight:800 !important;}
    .check-circle{background: var(--accent-color);min-width:30px;height: 30px;color: white;text-align:center;justify-content: center;align-content: center;border-radius: 50%;}
	.check-circle i{font-size: 20px;line-height:30px;}
	.reportlist-img img{max-width:60px;}
	.footer-contact {display: flex;gap: 15px;}
  	.footer-contact_icon {background: rgba(255, 255, 255, 1);border: 1px solid rgba(255, 255, 255, 0.34);border-radius: 50%;color: var(--white-color);font-size: 24px;position: relative;z-index: 1;}
  	.icon-btn {display: inline-block;width: 30px;height: 30px;background-color: #ffffff;text-align: center;border-radius: 50%;border: none;}
  	.footer-contact_icon i {font-size: 15px;color: #ac3a3a;font-weight: 600;line-height: 20px;width: 100%;height: 100%;}

  	.footer-contact_text {font-size: 18px;font-weight: 800;
  		color:#ac3a3a;margin-bottom: 0;}
  	
  	.media-body {max-width: 290px;}
  	.footer-contact_link{color: black;}
	.media-body p{justify-content: left;}


@media(max-width:991px){

    .report-box .col{
        flex:0 0 50%;
        max-width:50%;
    }

    .item{
        border-bottom:1px solid #e8e8e8;
    }
}

@media(max-width:576px){

    .report-box .col{
        flex:0 0 100%;
        max-width:100%;
    }

    .title-wrap h2{
        font-size:24px;
    }
}



/* about us css start */



  /* amman css end */

/*harpreet css end*/

/************************************/
/***      31. Responsive css      ***/
/************************************/

@media only screen and (max-width: 1366px){

	.what-we-do-content{
		padding: 100px 80px 100px 15px;
	}

	.contact-now-circle img{
		width: 100px;
		height: 100px;
	}
}
/*1366 end*/

@media only screen and (max-width: 1024px){

	.what-we-do-content{
		padding: 100px 50px 100px 15px;
	}

	.contact-now-circle img{
		width: 80px;
		height: 80px;
	}
}
/*1024 end*/

@media only screen and (max-width: 991px){

	.btn-default span{
		padding: 12px 15px;
	}

	.topbar{
		padding: 15px 0;
	}

	.site-logo{
		display: none;
	}

	.topbar-contact-info{
		justify-content: center;
	}

	.topbar-contact-info ul{
		margin-right: 40px;
		padding-right: 40px;
	}

	.topbar-contact-info ul li .icon-box{
		width: 35px;
		height: 35px;
		margin-right: 15px;
	}

	.topbar-contact-info li .icon-box img{
		max-width: 20px;
	}

	.topbar-contact-info ul li p{
		font-size: 18px;
		width: calc(100% - 50px);
	}

	.navbar{
		padding: 15px 0;
	}

	.main-header .navbar-brand{
		display: block;
	}

	.main-header .navbar-brand img{
		max-width: 130px;
	}

	.slicknav_nav li,
	.slicknav_nav ul{
        display: block;
    }

	.responsive-menu,
    .navbar-toggle{
        display: block;
    }

	.section-row{
		margin-bottom: 50px;
	}

	.section-title-content{
		margin-left: 0px;
		margin-top: 15px;
	}

	.section-btn{
		text-align: left;
		margin-top: 15px;
	}

	.section-title{
		margin-bottom: 30px;
	}

	.section-title h3{
		margin-bottom: 15px;
	}

	.section-title h1{
		font-size: 54px;
	}

	.section-title h2{
		font-size: 40px;
	}

	.section-title p{
		margin-top: 15px;
	}

	.section-title-content{
		margin-top: 15px;
	}

	.header-social-links{
		display: none;
	}

	.hero{
		padding: 80px 0 40px;
	}

	.hero.hero-slider-layout .hero-slide{
		padding: 100px 0 150px;
	}

	.hero.hero-slider-layout .hero-pagination{
		padding-left: 15px;
		bottom: 30px;
	}

	.excellence-innovating-list{
		padding-top: 30px;
		margin-top: 80px;
	}

	.excellence-innovating-list ul{
		gap: 20px 30px;
	}

	.excellence-innovating-list ul li{
		font-size: 14px;
		padding-left: 30px;
	}

	.excellence-innovating-list ul li:before{
		width: 20px;
		height: 20px;
	}

	.about-us{
		padding: 50px 0;
		/* background-size: 50% auto; */
	}

	.about-image{
		max-width: 80%;
		margin: 0 auto;
		margin-bottom: 30px;
		padding-top: 120px;
	}

	.company-experience{
		top: 30px;
		max-width: 195px;
	}

	.company-experience-counter h2{
		font-size: 40px;
	}

	.company-experience-content p{
		font-size: 16px;
	}

	.about-img-2 img{
		aspect-ratio: 1 / 1.1;
	}

	.about-content-list ul li{
		margin-bottom: 15px;
	}

	.about-content-list{
		margin-bottom: 30px;
	}

	.about-content-list ul li{
		padding-left: 30px;
	}

	.about-content-list ul li:before{
		width: 20px;
		height: 20px;
	}

	.genuine-rating-counter{
		padding: 40px;
	}

	.genuine-rating-counter .about-counter h2{
		font-size: 60px;
	}

	.genuine-rating-counter .genuine-rating{
		margin-bottom: 10px;
	}

	.our-services{
		padding: 50px 0 180px;
	}

	.services-list-box{
		padding: 40px;
	}

	.services-list-box .service-item{
		width: calc(50% - 30px);
	}

	.services-list-box .service-item:nth-child(2n + 2):after{
		display: none;
	}

	.service-item .icon-box{
		margin-bottom: 20px;
	}

	.service-item .icon-box img{
		max-width: 50px;
	}

	.service-body{
		margin-bottom: 30px;
	}

	.our-story{
		padding: 50px 0;
	}

	.our-story .section-row{
		margin-bottom: 30px;
	}

	.our-story-header-img{
		margin-top: 20px;
	}

	.our-story-img{
		margin-right: 0px;
		margin-bottom: 30px;
	}

	.our-story-img img{
		aspect-ratio: 1 / 0.55;
	}

	.our-story-content-body{
		margin-bottom: 40px;
		padding-bottom: 40px;
	}

	.our-story-counters{
		margin-bottom: 40px;
	}

	.our-story-counter h3{
		font-size: 40px;
	}

	.our-story-counter p{
		font-size: 18px;
	}

	.our-story-client-img .client-image img{
		max-width: 50px;
	}

	.what-we-do{
		background-position: bottom 50% left;
	}

	.what-we-do-content{
		padding: 50px 15px 70px;
		height: auto;
	}

	.what-we-do-item{
		padding: 30px 20px;
	}

	.what-we-do-item .icon-box{
		margin-bottom: 20px;
	}

	.what-we-do-footer{
		margin-top: 30px;
	}

	.what-we-do-image,
	.what-we-do-image figure,
	.what-we-do-image figure img{
		height: auto;
	}

	.what-we-do-image figure img{
		aspect-ratio: 1 / 0.77;
	}

	.contact-now-circle{
		left: 50%;
		top: 0;
		transform: translate(-50%, -50%);
	}

	.contact-now-circle img{
        width: 100px;
        height: 100px;
    }

	.our-work{
		padding: 50px 0 20px;
	}

	.project-item{
		height: calc(100% - 30px);
		margin-bottom: 30px;
	}

	.our-Project-nav{
		margin-bottom: 40px;
	}

	.our-Project-nav ul{
		gap: 10px 30px;
	}

	.our-Project-nav ul li a:before{
		right: -20px;
	}

	.our-Project-nav ul li a{
		font-size: 14px;
	}

	.project-image{
		margin-bottom: 20px;
	}

	.project-tag{
		top: 15px;
		left: 15px;
	}

	.project-tag a{
		font-size: 14px;
	}

	.project-image figure{
		border-radius: 20px;
	}

	.project-image img{
		aspect-ratio: 1 / 0.7;
		border-radius: 30px;
	}

	.our-process{
		padding: 50px 0;
	}

	.our-process-image{
		margin-right: 0px;
		margin-bottom: 30px;
	}

	.our-process-image img{
		aspect-ratio: 1 / 0.73;
		border-radius: 30px;
	}

	.process-step-item{
		border-radius: 30px;
		padding: 20px;
	}

	.process-step-no h2{
		font-size: 40px;
	}

	.our-pricing{
		padding: 50px 0;
	}

	.pricing-box{
		border-radius: 30px;
		padding: 30px;
	}

	.pricing-box::before{
		width: 100px;
		height: 100px;
	}

	.pricing-title{
		margin-bottom: 40px;
	}

	.pricing-title h2{
		font-size: 45px;
	}

	.pricing-title h2 sup{
		font-size: 24px;
	}

	.pricing-list{
		margin-bottom: 40px;
	}

	.pricing-list ul{
		gap: 15px;
	}

	.pricing-benefit-list{
		margin-top: 10px;
	}

	.our-testimonial{
		padding: 50px 0;
	}

	.our-testimonial-image{
		margin-right: 0px;
		margin-bottom: 30px;
	}

	.our-testimonial-image figure,
	.our-testimonial-image img{
		aspect-ratio: 1 / 0.8;
		border-radius: 30px;
	}

	.testimonial-rating{
		margin-bottom: 10px;
	}

	.testimonial-content{
		margin-bottom: 40px;
	}

	.testimonial-content p{
		font-size: 18px;
	}

	.testimonial-slider .testimonial-button-next,
	.testimonial-slider .testimonial-button-prev{
		width: 46px;
		height: 46px;
	}

	.testimonial-company-slider{
		padding-top: 40px;
		margin-top: 40px;
	}

	.our-blog{
		padding: 50px 0 20px;
	}

	.post-featured-image{
		margin-bottom: 20px;
	}

	.post-featured-image figure, 
	.post-featured-image a,
	.post-featured-image img{
		aspect-ratio: 1 / 0.73;
		border-radius: 30px;
	}

	.post-item-content{
		width: auto;
	}

	.post-item-content h2{
		font-size: 18px;
	}

	.post-item-btn{
		margin-left: 10px;
	}

	.post-item-btn a{
		width: 40px;
		height: 40px;
	}

	.main-footer{
		background-size: 50% auto;
		padding: 50px 0 0;
	}

	.footer-header{
		margin-bottom: 30px;
		padding-bottom: 30px;
	}

	.about-footer{
		max-width: 100%;
		margin-bottom: 30px;
	}

	.footer-links h3{
		margin-bottom: 20px;
	}

	.footer-links ul li{
		margin-bottom: 10px;
	}

	.footer-copyright{
		padding: 30px 0;
		margin-top: 30px;
	}

	.page-header{
		padding: 80px 0;
	}

	.page-header-box h1{
		font-size: 54px;
	}

	.mission-vision-bg{
		padding: 50px 0 150px;
	}

	.mission-vision-box{
		border-radius: 30px;
		margin-top: -150px;
	}

	.mission-vision-nav ul li .nav-link{
		font-size: 18px;
		padding: 20px;
	}

	.mission-vision-nav ul li .nav-link img{
		max-width: 30px;
		margin-right: 10px;
	}

	.mission-vision-item{
		padding: 30px;
	}

	.mission-vision-content{
		margin-bottom: 30px;
	}

	.mission-vision-content-header{
		margin-bottom: 20px;
	}

	.mission-vision-content-list ul li{
		margin-bottom: 15px;
	}

	.mission-vision-image figure{
		border-radius: 30px;
	}

	.mission-vision-image img{
		aspect-ratio: 1 / 0.53;
		border-radius: 30px;
	}

	.our-history{
		padding: 50px 0;
	}

	.our-history-box{
		gap: 30px;
	}

	.our-history-item,
	.our-history-nav{
		width: 100%;
	}

	.our-history-nav ul li .nav-link{
		padding: 20px;
	}

	.our-history-content{
		margin-bottom: 30px;
	}

	.our-history-list ul li{
		margin-bottom: 15px;
	}

	.our-history-image figure{
		border-radius: 30px;
	}

	.our-history-image img{
		aspect-ratio: 1 / 0.56;
		border-radius: 30px;
	}

	.our-features{
		padding: 50px 0;
	}

	.our-features-boxes{
		border-radius: 30px;
	}

	.our-features-item{
		padding: 20px;
	}

	.our-features-item .icon-box{
		margin-bottom: 20px;
	}

	.features-item-content h3{
		font-size: 18px;
		margin-bottom: 10px;
	}

	.our-team{
		padding: 50px 0 20px;
	}

	.team-image img{
		aspect-ratio: 1 / 1.1;
	}

	.team-image{
		margin-bottom: 15px;
	}

	.our-faqs{
		padding: 50px 0;
	}

	.our-faqs-img{
		margin-bottom: 30px;
	}

	.our-faqs-img figure{
		border-radius: 30px;
	}

	.our-faqs-img figure img{
		aspect-ratio: 1 / 0.69;
		border-radius: 30px;
	}

	.faqs-img-cta-box{
		bottom: 20px;
		left: 20px;
		right: 20px;
	}

	.our-faq-section .accordion-header .accordion-button{
		font-size: 18px;
	}

	.page-services{
		padding: 50px 0 20px;
	}

	.page-service-single{
		padding: 50px 0;
	}

	.service-sidebar{
		position: initial;
		margin-right: 0;
		margin-bottom: 30px;
	}

	.service-catagery-list{
		margin-bottom: 30px;
	}

	.service-catagery-list h3{
		padding: 15px 30px;
	}

	.service-catagery-list ul li{
		padding-bottom: 15px;
		margin-bottom: 15px;
	}

	.sidebar-cta-box{
		padding: 30px;
	}

	.sidebar-cta-logo{
		margin-bottom: 20px;
	}

	.sidebar-cta-content{
		margin-bottom: 20px;
	}

	.sidebar-cta-content h3{
		font-size: 34px;
	}

	.service-featured-image{
		margin-bottom: 20px;
	}

	.service-featured-image figure{
		border-radius: 30px;
	}

	.service-featured-image img{
		aspect-ratio: 1 / 0.6;
		border-radius: 30px;
	}

	.service-entry{
		margin-bottom: 30px;
	}

	.service-entry h2{
		font-size: 40px;
	}

	.service-entry-box{
		gap: 40px 30px;
		margin: 20px 0;
	}

	.service-entry-item::before{
		transform: translateY(20px);
	}

	.service-entry-item .icon-box{
		margin-bottom: 20px;
	}

	.service-entry-item .icon-box img{
		max-width: 40px;
	}

	.service-entry-item-content h3{
		margin-bottom: 15px;
	}

	.service-entry-img figure,
	.service-entry-img img{
		aspect-ratio: 1 / 0.89;
		border-radius: 30px;
	}

	.page-blog{
		padding: 50px 0;
	}

	.page-blog .post-item{
		height: calc(100% - 30px);
		margin-bottom: 30px;
	}

	.page-blog .post-featured-image img{
		aspect-ratio: 1 / 0.81;
	}

	.page-blog .post-item .post-item-content{
		margin-bottom: 15px;
	}

	.page-pagination{
        margin-top: 10px;
    }

	.page-projects{
		padding: 50px 0 20px;
	}

	.page-single-post{
		padding: 50px 0;
	}

	.post-image{
		margin-bottom: 20px;
	}

	.post-entry blockquote{
		background-position: 25px 25px;
        background-size: 50px;
        padding: 25px 25px 25px 90px;
        margin-bottom: 20px;
	}

	.post-entry blockquote p{
		font-size: 18px;
	}

	.post-entry h2{
		font-size: 40px;
	}

	.post-entry ul li{
		font-size: 16px;
	}

	.post-tags{
		margin-bottom: 20px;
	}

	.post-social-sharing ul{
		text-align: left;
	}

	.tag-links{
		font-size: 22px;
	}

	.post-tags .tag-links a{
		font-size: 16px;
		padding: 6px 15px;
	}

	.page-project-single{
		padding: 50px 0;
	}

	.project-sidebar{
		position: initial;
		margin-right: 0px;
		margin-bottom: 30px;
	}

	.project-detail-box{
		margin-bottom: 30px;
	}

	.project-detail-title{
		padding: 15px 30px;
	}

	.project-detail-list{
		padding: 30px;
	}

	.project-detail-item{
		padding-bottom: 15px;
		margin-bottom: 15px;
	}

	.project-single-image{
		margin-bottom: 20px;
	}

	.project-single-image figure{
		border-radius: 30px;
	}

	.project-single-image img{
        aspect-ratio: 1 / 0.6;
		border-radius: 30px;
    }

	.project-entry{
		margin-bottom: 30px;
	}

	.project-info,
	.project-goal{
		margin-bottom: 30px;
	}

	.project-entry h2{
		font-size: 40px;
	}

	.project-entry ul{
		gap: 10px;
	}

	.project-entry ul li{
		width: calc(50% - 5px);
		padding-left: 30px;
		font-size: 14px;
	}

	.project-entry ul li::before{
		width: 20px;
		height: 20px;
	}

	.project-query-item{
		margin-bottom: 30px;
	}

	.project-query-box ul{
		margin-bottom: 0;
	}

	.project-query-box ul li{
		width: 100%;
	}

	.project-query-img figure,
	.project-query-img img{
		border-radius: 30px;
	}

	.page-team{
		padding: 50px 0 20px;
	}

	.page-team-single{
		padding: 50px 0;
	}

	.team-member-sidebar{
		position: initial;
		margin-right: 0;
		margin-bottom: 30px;
	}

	.team-member-box{
		padding: 20px;
		margin-bottom: 30px;
	}

	.team-member-image{
		margin-bottom: 20px;
	}

	.team-member-image img{
		aspect-ratio: 1 / 0.85;
		object-position: top center;
	}

	.team-detail-title{
		padding: 15px 20px;
	}

	.team-detail-list{
		padding: 20px;
	}

	.team-detail-item{
		padding-bottom: 15px;
		margin-bottom: 15px;
	}

	.team-member-info,
	.team-member-skills-feature{
		margin-bottom: 30px;
	}

	.team-member-content h2{
		font-size: 34px;
	}

	.skills-progress-bar{
		margin-bottom: 15px;
	}

	.skills-progress-bar .skillbar .skill-progress{
		height: 12px;
	}

	.team-member-content ul li{
		padding-left: 30px;
	}

	.team-member-content ul li::before{
		width: 20px;
		height: 20px;
	}

	.page-pricing{
		padding: 50px 0;
	}

	.page-testimonial{
		padding: 50px 0 20px;
	}

	.client-testimonial-item{
		padding: 30px;
	}

	.client-testimonial-item-content{
		margin-bottom: 30px;
	}

	.client-testimonial-rating{
		margin-bottom: 10px;
	}

	.client-author-image{
		margin-right: 10px;
	}

	.client-author-image img{
		width: 50px;
		height: 50px;
		border-radius: 10px;
	}

	.client-author-content{
		width: calc(100% - 60px);
	}

	.client-author-content h3{
		font-size: 18px;
	}

	.page-gallery{
		padding: 50px 0 20px;
	}

	.page-video-gallery{
		padding: 50px 0 20px;
	}

	.page-faqs{
		padding: 50px 0;
	}
	
	.faq-sidebar{
		position: initial;
		margin-right: 0;
		margin-bottom: 30px;
	}
	
	.faq-catagery-list{
		margin-bottom: 30px;
	}
	
	.faq-catagery-list ul li{
		padding-bottom: 15px;
		margin-bottom: 15px;
	}
	
	.faq-catagery-list ul li a::after{
		width: 22px;
		height: 22px;
	}
	
	.our-faq-section.page-faq-accordion{
		margin-bottom: 30px;
	}	

	.page-contact-us{
		padding: 50px 0;
		background-size: 50% auto;
	}

	.contact-information{
		margin-right: 0;
		margin-bottom: 30px;
	}

	.contact-info-item{
		padding-bottom: 30px;
		margin-bottom: 30px;
	}

	.contact-info-item .icon-box{
		height: 50px;
		width: 50px;
	}

	.contact-info-item .icon-box img{
		max-width: 24px;
	}

	.contact-info-content{
		width: calc(100% - 70px);
	}

	.contact-us-form{
		border-radius: 30px;
		padding: 30px;
	}

	.google-map-iframe,
	.google-map-iframe iframe{
		height: 450px;
	}

	.error-page{
		padding: 50px 0;
	}
	
	.error-page-image{
		margin-bottom: 20px;
	}

	.error-page-image img{
		max-width: 80%;
	}
}

/*991 end*/

@media only screen and (max-width: 768px){

	.topbar{
        padding: 10px 0;
    }

	.topbar-contact-info ul{
        margin-right: 0px;
        padding-right: 0px;
		border: none;
    }

	.topbar-contact-info ul li .icon-box{
        width: 30px;
        height: 30px;
        margin-right: 10px;
    }

	.topbar-contact-info li .icon-box img{
        max-width: 16px;
    }

	.topbar-contact-info ul li p{
        font-size: 14px;
        width: calc(100% - 40px);
	}

	.topbar-qoute-btn{
		display: none;
	}

	.section-row{
        margin-bottom: 30px;
    }

	.section-title h1{
        font-size: 34px;
    }

	.section-title h2{
        font-size: 23px;
    }

	.excellence-innovating-list ul{
		gap: 15px;
	}

	.excellence-innovating-list ul li{
		width: 100%;
	}

	.about-image{
		max-width: 100%;
		padding-top: 90px;
	}

	.about-img-1{
		max-width: 200px;
	}

	.about-img-2 figure,
	.about-img-1 figure{
		border-radius: 30px;
	}

	.about-img-2 img,
	.about-img-1 figure img{
		border-radius: 30px;
	}

	.about-img-2{
		max-width: 250px;
	}
	
	.company-experience{
		display: block;
		top: 15px;
	}

	.company-experience-counter{
		width: 100%;
	}

	.company-experience-counter h2{
        font-size: 30px;
    }

	.company-experience-content{
		width: 100%;
	}

	.company-experience-content p{
        font-size: 14px;
    }

	.about-list-btn{
		margin-bottom: 30px;
	}

	.genuine-rating-counter{
		border-radius: 30px;
        padding: 30px;
    }

	.genuine-rating-counter .about-counter h2{
		font-size: 40px;
	}

	.services-list-box{
		border-radius: 30px;
        padding: 20px 15px;
		gap: 30px 10px;
    }

	.services-list-box .service-item{
        width: 100%;
    }

	.services-list-box .service-item:after{
		display: none;
	}

	.service-body,
	.service-item .icon-box{
        margin-bottom: 15px;
    }

	.service-body{
		margin-bottom: 20px;
	}

	.service-body h3{
        font-size: 18px;
    }

	.service-item .service-footer a{
		width: 60px;
		height: 30px;
	}

	.our-story-img figure,
	.our-story-img img,
	.our-story-header-img figure,
	.our-story-header-img figure img{
		border-radius: 20px;
	}

	.our-story-content-body{
        margin-bottom: 30px;
        padding-bottom: 30px;
    }

	.our-story-counters{
		gap: 15px;
		margin-bottom: 30px;
	}

	.our-story-counter{
		width: calc(33.33% - 10px);
	}

	.our-story-counter h3{
        font-size: 30px;
    }

	.our-story-counter p{
		font-size: 16px;
	}

	.our-story-client-img{
		margin-right: 30px;
	}

	.video-play-button a{
		height: 56px;
		width: 56px;
		margin-right: 10px;
	}

	.what-we-do-item{
		border-radius: 30px;
		width: 100%;
	}

	.what-we-do-list-box-2 .what-we-do-item:nth-child(odd){
		background: transparent;
	}

	.what-we-do-list-box-2 .what-we-do-item:nth-child(even){
		background: var(--dark-divider-color);
	}

	.what-we-item-content h3{
		font-size: 18px;
	}

	.project-tag a{
		padding: 8px 10px;
	}

	.project-content h3{
		font-size: 18px;
	}

	.process-step-no{
		margin-right: 10px;
	}

	.process-step-no h2{
        font-size: 30px;
    }

	.process-step-content h3{
		font-size: 18px;
	}

	.pricing-box{
        padding: 30px 20px;
    }

	.pricing-title{
        margin-bottom: 30px;
    }

	.pricing-title h2{
        font-size: 30px;
    }

	.pricing-title h2 sup{
        font-size: 18px;
    }

	.pricing-title h3{
		font-size: 18px;
	}

	.pricing-list{
        margin-bottom: 30px;
    }

	.pricing-list ul li{
		padding-left: 30px;
	}

	.pricing-list ul li::before{
		width: 20px;
		height: 20px;
	}

	.pricing-benefit-list ul{
        gap: 10px 15px;
    }

    .pricing-benefit-list ul li{
        width: calc(50% - 7.5px);
        font-size: 12px;
    }

    .pricing-benefit-list ul li img{
        max-width: 18px;
        margin-right: 5px;
    }

	.testimonial-content{
		margin-bottom: 20px;
	}

	.testimonial-content p{
		font-size: 16px;
	}

	.testimonial-body .author-content h3{
		font-size: 18px;
	}

	.testimonial-btn{
		position: initial;
		justify-content: left;
	}

	.testimonial-slider .testimonial-button-next,
	.testimonial-slider .testimonial-button-prev{
		width: 40px;
		height: 40px;
	}

	.testimonial-slider .testimonial-button-next{
		margin-left: 15px;
	}

	.testimonial-company-slider{
		padding-top: 30px;
		margin-top: 30px;
	}

	.main-footer{
        background-size: 100% auto;
    }

	.footer-header{
		display: block;
	}

	.footer-contact-circle{
		margin-left: 0;
		margin-top: 20px;
	}

	.footer-contact-circle img{
		max-width: 100px;
	}

	.footer-links{
		margin-bottom: 30px;
        padding: 0px 0px 15px 0px;
	}

	.footer-links h3{
		font-size: 18px;
        margin-bottom: 15px;
    }

	.footer-copyright{
        padding: 25px 0;
        margin-top: 0px;
    }

	.page-header-box h1{
        font-size: 34px;
    }

	.mission-vision-nav ul li .nav-link{
		display: grid;
		justify-content: center;
        font-size: 16px;
        padding: 10px;
    }

	.mission-vision-nav ul li .nav-link img{
        max-width: 25px;
        margin: 0 auto;
		margin-bottom: 5px;
    }

	.mission-vision-item{
        padding: 20px 15px;
    }

	.mission-vision-content-list ul li{
		font-size: 14px;
		padding-left: 30px;
		margin-bottom: 10px;
	}

	.mission-vision-content-list ul li:before{
		width: 20px;
		height: 20px;
	}

	.mission-vision-image img{
        aspect-ratio: 1 / 0.73;
    }

	.our-history-nav ul li .nav-link{
        padding: 10px;
		font-size: 18px;
    }

	.our-history-list ul li{
		font-size: 14px;
		padding-left: 30px;
		margin-bottom: 10px;
	}

	.our-history-list ul li:before{
		width: 20px;
		height: 20px;
	}

	.our-history-image img{
        aspect-ratio: 1 / 0.76;
    }

	.our-features-item{
       width: 100%;
    }

	.our-features-item:nth-child(1n + 1){
		border-right: none;
	}

	.our-features-item.features-image-box img{
		aspect-ratio: 1 / 0.81;
	}

	.team-content h3{
		font-size: 18px;
	}

	.our-faqs-img figure img{
        aspect-ratio: 1 / 0.89;
    }

	.faqs-img-cta-box ul li{
		margin-right: 0px;
		margin-bottom: 5px;
	}

	.faqs-img-cta-box ul li:last-child{
		margin-bottom: 0;
	}

	.faqs-img-cta-box ul li a img{
		max-width: 24px;
		margin-right: 10px;
	}

	.faqs-img-cta-box ul li a{
		font-size: 18px;
	}

	.our-faq-section .accordion-header .accordion-button{
		font-size: 16px;
		padding: 12px 35px 12px 12px;
	}

	.our-faq-section .accordion-item .accordion-button::after,
	.our-faq-section .accordion-item .accordion-button.collapsed::after{
		right: 12px;
		font-size: 14px;
	}

	.our-faq-section .accordion-item .accordion-body{
		background: var(--accent-color);
		padding: 12px;
	}

	.page-services .service-item{
		border-radius: 30px;
		padding: 20px 15px;
	}

	.service-catagery-list h3{
		font-size: 18px;
		padding: 15px 20px;
	}

	.service-catagery-list ul{
		padding: 20px;
	}

	.service-catagery-list ul li a::before{
		width: 20px;
		height: 20px;
	}

	.sidebar-cta-box{
        padding: 20px;
    }

	.sidebar-cta-content h3{
        font-size: 28px;
    }

	.cta-contact-item-title h3{
		font-size: 18px;
	}

	.service-featured-image img{
        aspect-ratio: 1 / 0.85;
    }

	.service-entry h2{
        font-size: 28px;
    }

	.service-entry-item{
		width: 100%;
	}

	.service-entry-item:nth-last-child(-n + 2)::before{
		display: block;
	}

	.service-entry-item:last-child::before{
		display: none;
	}

	.service-entry-item-content h3{
		font-size: 18px;
		margin-bottom: 10px;
	}

	.service-entry ul{
		gap: 10px;
		margin-bottom: 30px;
	}

	.service-entry ul li{
		width: 100%;
		padding-left: 30px;
	}

	.service-entry ul li::before{
		width: 20px;
		height: 20px;
	}

	.service-entry-img{
		width: 100%;
	}

	.post-image figure,
	.post-image img{
		aspect-ratio: 1 / 0.70;
		border-radius: 30px;
	}

	.post-entry blockquote{
		background-position: 15px 15px;
        padding: 65px 15px 15px 15px;
	}
	
	.post-entry h2{
		font-size: 28px;
	}

	.tag-links{
		font-size: 20px;
	}

	.project-detail-title{
        padding: 15px 20px;
    }

	.project-detail-title h3{
		font-size: 18px;
	}

	.project-detail-list{
        padding: 20px;
    }

	.project-detail-content h3{
		margin-bottom: 0;
	}

	.project-single-image img{
        aspect-ratio: 1 / 0.85;
    }

	.project-entry h2{
        font-size: 28px;
		margin-bottom: 15px;
    }

	.project-entry p{
		margin-bottom: 15px;
	}

	.project-entry ul{
        margin-bottom: 15px;
    }

	.project-entry ul li{
		width: 100%;
    }

	.project-query-content,
	.project-query-img{
		width: 100%;
	}

	.project-query-item{
		gap: 20px;
	}

	.project-query-box ul{
        margin-bottom: 0;
    }

	.team-member-image img{
        aspect-ratio: 1 / 0.99;
    }

	.team-member-name{
		margin-bottom: 15px;
	}

	.team-member-name h3{
		font-size: 18px;
	}

	.team-detail-title h3{
		font-size: 18px;
	}

	.team-member-info,
	.team-member-skills-feature{
        margin-bottom: 20px;
    }

	.team-member-content h2{
        font-size: 28px;
		margin-bottom: 15px;
    }

	.team-member-content p{
		margin-bottom: 15px;
	}

	.team-member-skills-feature{
		gap: 20px;
	}

	.team-member-skills,
	.team-member-feature{
		width: 100%;
	}

	.client-testimonial-item{
		border-radius: 30px;
		padding: 20px;
	}

	.client-testimonial-item-content{
        margin-bottom: 20px;
    }

	.faq-catagery-list{
		padding: 20px;
	}

	.contact-info-item{
        margin-bottom: 20px;
    }

	.contact-info-item .icon-box{
		margin-right: 10px;
    }

	.contact-info-content{
        width: calc(100% - 60px);
    }

	.contact-info-content h3{
		font-size: 18px;
	}

	.contact-us-form{
        padding: 20px;
    }

	.contact-form .form-control{
		padding: 12px;
	}

	.google-map-iframe,
	.google-map-iframe iframe{
        height: 350px;
    }

    .bannertxt h2 { font-size: 29px; }
    .hero-features { gap: 18px; margin-top: 30px; }
    .feature-item h4 { font-size: 15px; font-weight: 700; margin-bottom: 0; }
    .market-card { margin-bottom: 30px; min-height: 50px; }
    .main-wrapper { width: 360px; margin: 0 auto; }
    .section-title_main, .section-title_main2 { font-size: 15px; }
    .report-wrapper .bold_border { margin-bottom: 20px; }
    .top-label { font-size: 19px; }
    .report-wrapper2 { padding: 15px; }
    .report-wrapper2 h5 { font-size: 15px; }
    .whaticon { margin: 0px 10px 0px 0px; min-width: 40px; max-width: 40px; height: 40px; }

    .howbox { justify-content: center; display: flex; flex-direction: column; align-items: center; text-align: center; }
    .how-content p { text-align: center; max-width: 100%; }
    .howarrow-icon { right: 30px; transform: rotate(89deg); }
    .howbox span { left: 30% }
    .pricebar-cont1, .pricebar-cont2, .pricebar-cont3 { padding-right: 0px; }
    .pricebar-cont1:after, .pricebar-cont2:after, .pricebar-cont3:after { display: none; }

}

/*768 end*/

@media only screen and (max-width: 580px){
    .pricebar-cont1 span { max-width: 70px; max-height: 70px; min-height: 100px; margin-bottom: 15px; }
}

@media only screen and (max-width: 480px){
   header.main-header { width: 100%; }
   .title_main_1 { float: none; }
    .report-wrapper { border:0; padding:0; }
    .report-wrapper .main-title { font-size: 24px; }
    .report-wrapper .section-title, .fans-market-report-title { font-size: 19px; margin-bottom: 15px; }
    .report-wrapper .section-content, .report-table td, 
    .fans-market-report-text, .fans-report-content p, .infoBox p, .faq-content p { font-size: 14px; line-height: 1.5; }
    .report-wrapper .stat-number { font-size: 24px; }
    .report-wrapper .stat-text { font-size: 13px; font-weight: 600; }
    .stat-item { padding: 12px 0px 10px 0px; }
    .fans-subcategory-list { gap: 5px; }
    .fans-subcategory-item { font-size: 15px; }
    .get_this_report { padding: 15px; }
    .fans-market-report-title2 { font-size: 13px; }
    .faq-content h2 { font-size: 17px; }
    .faq-content h2 span { margin-right: 5px; }
    .infoBox h3, .fans-report-content h3 { font-size: 17px; margin-bottom: 0; }
    .totalcont { padding: 4px; }
    .totalcont h6 { font-size: 13px; }
    .totalcont span { font-size: 16px; }
    .about-footer-content p{ text-align: left; font-size: 11px; }
	.footer-copyright-text p { margin-top: 11px; margin-bottom: 0px; color:#000000ab; text-align: center; font-size: 12px;}
	.top-content h3 { font-size: 15px; }
	.outer-ring { left: 50%; width: 100px; height: 100px; transform: translate(-50%, -50%); }
	.center-circle { left: 50%;	}
	.main-wrapper { width: 100% }
	.outer-ring, .center-circle { top: 40%; }
	.main-wrapper .left-top { top: 8px; left: 0 }
	.main-wrapper .top { top: 8px; right: 0; } 
	.main-wrapper .left-bottom { bottom: 30px; }
	.main-wrapper .right-bottom { bottom: 30px; right: 0; }
	.serviceimg { min-height: 200px; }
	.serviceimg img { width: 100%; max-height: 200px; }
	.servicedet h3 { min-height: 1px; }
	.page-header { padding: 80px 0px 50px 0px; }
	.page-header-box h1 { font-size: 27px; margin: 50px 0 0 0; }
	.bkbmenu ul li a { font-size: 15px; }
	.main-footer { background-size: 200% 100%; }
	.project-item { margin-bottom: 10px; }
	.whatcontent h6 { font-size: 12px; line-height: 1.2; }
	.howbox span { left: 10%; margin-top: -60px; }
	.pricebar-cont1 { position: relative; padding: 20px 20px 20px 0px; }

}
/*480 end*/
/*==============25-6-26================*/

.terms-card {
	background: #fff4f4;
    padding: 0px 0 30px 0px; 
}
.terms-card h2 {
	font-size:30px;
	margin-bottom: 15px;
	font-weight: 700;
}
.terms-card h3 { 
	margin-bottom:10px;
	font-size:22px;
}
.terms-card p,  .terms-card li {
	color: var(--text-color);
	line-height: 1.8;
}
.last-updated {
	color: #888;
	font-size: 15px;
	margin-bottom: 20px;
}
.terms-card ul {
    list-style: none;
    padding: 0;
    margin: 20px 0;
}

.terms-card ul li {
    position: relative;
    padding:0px 0 10px 20px; 
    line-height: 1.8;
}

.terms-card ul li::before {
    content: "\f058"; /* fa-circle-check */
    font-family: "Font Awesome 6 Pro";
    font-weight: 900;
    position: absolute;
    left: 0;
    top: 0px; 
    font-size: 16px;
    color:#ac3a3a;
}


/*===================================user-panel============================*/

.user-section{
    background:#fff4f4;
}

/*.user-panel{

    background:#fff;
    border-radius:15px;
    overflow:hidden;
    box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 6px -1px, rgba(0, 0, 0, 0.06) 0px 2px 4px -1px;
    position: relative;

}*/

.user-info{

    padding:30px 20px;
    background:#ac3a3a;
    color:#fff;

}

.user-img{

    width:90px;
    height:90px;
    border-radius:50%;
    object-fit:cover;
    border:4px solid rgba(255,255,255,.3);
    margin-bottom:15px;

}

.user-info h5{

    margin-bottom:5px;

}

.user-info p{

    margin:0;
    font-size:14px;
    opacity:.8;

}

.user-panel{
    background:#ffffff;
    border-radius:6px;
    overflow:hidden;
    border:1px solid #e9e9e9;
   box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 6px -1px, rgba(0, 0, 0, 0.06) 0px 2px 4px -1px;
    position: relative;
    min-height:280px;
}

.user-menu{
    list-style:none;
    margin:0;
    padding:18px;
}

.user-menu li{
    margin-bottom:10px;
}

.user-menu li:last-child{
    margin-bottom:0;
}

.user-menu li a{
    display:flex;
    align-items:center;
    gap:8px;
    padding:10px 10px;
    background: #fff0f0;
    border: 1px solid #f5d5d5;
    border-radius:6px;
    text-decoration:none;
    color:#404040;
    font-size:15px;
    font-weight:600;
    transition:all .35s ease;

    /* Raised Effect */
    box-shadow:0 4px 12px rgba(0,0,0,.06);
}

.user-menu li a i{
    width:20px;
    text-align:center;
    color:#ac3a3a;
    font-size:17px;
    transition:.35s;
}

/* Hover */

.user-menu li a:hover{
    background:#fff0f0;
    border-color:#f5d5d5;
    color:#404040;
    transform:translateX(5px);
}

/* Active */

.user-menu li a.active{
    background:#ac3a3a;
    border-color:#ac3a3a;
    color:#fff;
    box-shadow:0 8px 20px rgba(172,58,58,.20);
}

.user-menu li a.active i{
    color:#fff;
}

/*.user-menu li a::after{
    content:"\f105";
    font-family: "Font Awesome 6 Pro";
    font-weight:900;
    margin-left:auto;
    opacity:0;
    transition:.3s;
}*/

.user-menu li a:hover::after,
.user-menu li a.active::after{
    opacity:1;
}

.content-box{
    background:#fff;
    border-radius:6px;
    padding:20px;
    min-height:282px;
    box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 6px -1px, rgba(0, 0, 0, 0.06) 0px 2px 4px -1px;
    position: relative;

}
.content-box h3{font-size: 24px;}


/*==========================================*/

 

.dashboard-card2{
    background: linear-gradient(135deg, #ffffff 0%, #f5f9ff 100%);
    border: 1px solid #e3ecff;
    border-radius: 6px;
    padding: 10px;
    text-align: center;
    height: 100%;
    transition: .35s ease;
}

.dashboard-card:hover{
    transform:translateY(-6px);
    border-color:#ac3a3a;
    box-shadow:0 12px 30px rgba(0,0,0,.08);
}

.card-icon{
    width:50px;
    height:50px;
    margin:auto auto 10px;
    border-radius:50%;
    background:#fce1e1;
    display:flex;
    align-items:center;
    justify-content:center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, .08);
}

.card-icon i{
    color:#ac3a3a;
    font-size:20px;
}

.dashboard-card2 h5{
    color: #000000;
    font-weight: 600;
    margin-bottom:5px;
    font-size: 16px;
}

.dashboard-card2 p{
     
    font-size:14px;
/*    min-height:30px;*/
    text-align: center;
}

.btn-theme{
    background:#ac3a3a;
    color:#fff;
    border-radius:30px;
    padding:8px 20px;
}

.btn-theme:hover{
    background:#404040;
    color:#fff;
}

.status{
    display:inline-block;
    padding:8px 16px;
    border-radius:30px;
    background:#d7e8f4;
    color:#404040;
    font-weight:600;
}

.status i{
    color:#28a745;
    margin-right:5px;
}

.dashboard-box{
    background:#d7e8f4;
    border-radius:16px;
    padding:25px;
}

.activity-list{
    margin:0;
    padding:0;
    list-style:none;
}

.activity-list li{
    display:flex;
    justify-content:space-between;
    align-items:center;
    background:#fff;
    padding:14px 18px;
    border-radius:12px;
    margin-bottom:12px;
}

.activity-list li:last-child{
    margin-bottom:0;
}

.activity-list li i{
    color:#ac3a3a;
    margin-right:10px;
}

.activity-list span{
    color:#888;
    font-size:13px;
}



/*============================change-password*/

.password-box{
    max-width:600px;
}

.form-label{
    font-weight:600;
    color:#404040;
    margin-bottom:8px;
}

.input-group{
    border-radius:6px;
     
     
}

.input-group-text{
    background:#fce1e1;
    border:1px solid #fce1e1;
    color:#ac3a3a;
    min-width:55px;
    justify-content:center;
}

.form-control{
    height:40px;
    border:1px solid #fce1e1;
    box-shadow:none;
    box-shadow:0 4px 12px rgba(0,0,0,.08);
}

.form-control:focus{
    border-color:#ac3a3a;
    box-shadow:0 0 0 .15rem rgba(172,58,58,.12);
}

.btn-theme{
    background:#ac3a3a;
    color:#fff;
    padding:7px 20px;
    border-radius:6px;
    border:none;
    font-weight:600;
    transition:.3s;
}

.btn-theme:hover{
    background:#404040;
    color:#fff;
}

.bg-success { 
    background-color: rgb(172 58 58) !important;
}


/*============================ listing page ===============================*/


.card-1{
    background: #fff;
    padding: 20px;
    border-radius: 8px;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.card-inner {
    height: 228px;
    position: relative;
    border-radius: 10px 10px 0 0; 
    margin: 0 auto;
    border-bottom: 1px solid #ccc;
}
.card-inner img{ 
	position: absolute;
	max-width:100%; 
	max-height:228px;
	top:0;
	bottom:0;
	left:0;
	right:0;
	margin: auto;
	border-radius: 10px 10px 0 0;
}
.card-inner span {
    position: absolute;
    top: 20px;
    left: 20px;
    z-index: 1;
    background: var(--accent-color);
    color: #fff;
    padding: 0px 8px;
    border-radius: 5px;
}








