

:root{
	--primary-color				: #000000;
	--secondary-color			: #FFFFFF;
	--bg-color					: #F7F7F7;
	--text-color				: #2B2B2B;
	--accent-color				: #FC5220;
	--white-color				: #FFFFFF;
	--divider-color				: #0000001A;
	--dark-divider-color		: #FFFFFF1A;
	--error-color				: rgb(230, 87, 87);
	--default-font				: "DM Sans", sans-serif;
	--accent-font				: "ClashGrotesk-Variable";
}

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

html,
body{
	width: 100%;
	overflow-x: clip;
}

body{
	font-family: var(--default-font);
	font-size: 16px;
	font-weight: 400;
	line-height: 1em;
	color: var(--text-color);
	background: var(--bg-color);
}

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

::-webkit-scrollbar{
	width: 7px;
	background-color: var(--primary-color);
}

::-webkit-scrollbar-thumb{
	background: #a903f6;
}

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

p{
	line-height: 1.6em;
	margin-bottom: 1.5em;
}

h1,
h2
{
	font-family: var(--accent-font);
	font-weight: 500;
	line-height: 1.4em;
	color: var(--primary-color);
	margin: 0;
}

h3,
h4,
h5,
h6{

	font-weight: 500;
	line-height: 1.4em;
	color: var(--primary-color);
	margin: 0;
}

figure{
	margin: 0;
}

img{
	max-width: 100%;
}

a{
	text-decoration: none;
}

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

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

.container{
	max-width: 1300px;
}

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

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

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

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

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

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

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

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

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

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

.btn-default{
	position: relative;
	display: inline-block;
	font-family: var(--accent-font);
	font-size: 16px;
	font-weight: 600;
	line-height: 1em;
	text-transform: capitalize;
	color: var(--white-color);
	background: #a903f6;
	border-radius: 5px;
	padding: 17px 54px 17px 24px;
	border: none;
	overflow: hidden;
	transition: all 0.4s ease-in-out;
	z-index: 1;
}

.btn-default:hover{
	color: var(--white-color);
}

.btn-default::before{
	content: '';
	position: absolute;
    top: 50%;
    right: 24px;
    width: 20px;
    height: 20px;
    background-image: url('../images/arrow-white.svg');
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    transform: translateY(-50%);
	transition: all 0.4s ease-in-out;
}

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

.btn-default::after{ 
	content: '';
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    width: 0;
    height: 100%;
    background: var(--primary-color);
    transition: all 0.4s ease-in-out;
    z-index: -1;
}

.btn-default:hover::after{
	right: auto;
	left: 0;
    width: 100%;
}

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

.btn-default.btn-highlighted:hover:before{
	filter: brightness(0) invert(0);
}

.btn-default.btn-highlighted::after{
	background: var(--white-color);
}

.readmore-btn{
	position: relative;
	display: inline-block;
	color: var(--primary-color);
	font-family: var(--accent-font);
	font-weight: 600;
	line-height: 1.25em;
	text-transform: capitalize;
	padding-right: 30px;
}

.readmore-btn::before{
	content: '';
    position: absolute;
    top: 50%;
    right: 0;
	width: 20px;
	height: 20px;
	transform: translateY(-50%);
	background-image: url('../images/arrow-primary.svg');
	background-repeat: no-repeat;
	background-position: center center;
	background-size: cover;
    transition: all 0.4s ease-in-out;
}

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

.cb-cursor:before{
	background: #a903f6;
}

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

.loading-container,
.loading{
	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);
	}
}

.light-section{
	background-color: var(--white-color);
}

.light-section .container-fluid{
	padding: 0;
}

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

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

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

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

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

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

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

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

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

.section-title .section-sub-title{
	position: relative;
	display: inline-block;
	font-size: 14px;
	font-weight: 500;
	text-transform: capitalize;
	line-height: 1em;
	color: var(--primary-color);
	background: var(--white-color);
	border-radius: 100px;
	padding: 10px 16px 10px 31px;
    margin-bottom: 15px;
}

.section-title .section-sub-title::before{
	content: '';
    position: absolute;
    left: 16px;
    top: 50%;
    transform: translateY(-50%);
    background: #a903f6;
	border-radius: 50%;
    width: 5px;
    height: 5px;
}

.section-title h1{
	font-size: 60px;
	line-height: 1.1em;
	letter-spacing: -0.01em;
	margin-bottom: 0;
	cursor: none;
}

.section-title h2{
	font-size: 48px;
	line-height: 1.1em;
	letter-spacing: -0.01em;
	margin-bottom: 0;
	cursor: none;
}

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

.light-section .section-title .section-sub-title{
	background: var(--bg-color);
}

.dark-section .section-title .section-sub-title{
	background: var(--dark-divider-color);
	backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
	color: var(--white-color);
}

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

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

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

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

header.main-header{
/*	position: absolute;
	top: 30px;
    left: 15px;
    right: 15px;
	z-index: 100;*/
}

header.main-header .header-sticky{
	position: relative;

	top: 0;
	background: var(--white-color);
	border-radius: 14px;
	margin: 0 auto;
	z-index: 100;
}

header.main-header .header-sticky.hide{
	transform: translateY(-100%);
	transition: transform 0.3s ease-in-out;
}

header.main-header .header-sticky.active{
	position: fixed;
    top: 15px;
    left: 15px;
    right: 15px;
    transform: translateY(0);
    background: var(--white-color);
	border: 1px solid var(--divider-color);
    border-radius: 14px;
}

.navbar{
	padding: 7px 0px;
	align-items: center;
}

.navbar-brand{
	padding: 0;
	margin: 0;
}

.main-menu .nav-menu-wrapper{
	flex: 1;
	text-align: center;
	margin: 0 1.042vw;
}

.main-menu .nav-menu-wrapper > ul{
	align-items: center;
	display: inline-flex;
}
 .main-menu{
     display: flex;
 }
.main-menu ul li{
	margin: 0 10px;
	position: relative;
}

.main-menu .nav-menu-wrapper ul li a{
	font-size: 16px;
	font-weight: 600;
	line-height: 1.2em;
	padding: 12px 10px !important;
	color: var(--primary-color);
	background: transparent;
	border-radius: 0px;
	text-transform: capitalize;
	transition: all 0.3s ease-in-out;
}

/*.main-menu .nav-menu-wrapper ul li.submenu > a:after{
	content: '\f107';
	font-family: 'FontAwesome';
	font-weight: 900;
	font-size: 14px;
	margin-left: 8px;
}
*/
.main-menu .nav-menu-wrapper ul li a:hover,
.main-menu .nav-menu-wrapper ul li a:focus{
	color: #a903f6;
}

.main-menu .nav-menu-wrapper ul ul{
	position: absolute;
	left: 0;
	top: 100%;
	transform: scale(1,0.8);
	transform-origin: top;
	width: 300px;
	background: #a903f6;
	border-radius: 14px;
	list-style: none;
	padding: 0;
	margin: 0;
	opacity: 0;
	visibility: hidden;
	transition: all 0.3s ease-in-out;
	text-align: left;
}

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

.main-menu .nav-menu-wrapper ul ul ul{
	left: 100%;
	top: 0;
	text-align: left;
	width: 350px;
}

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

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

.main-menu .nav-menu-wrapper ul ul li{
	margin: 0;
	padding: 5px;
}

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

.main-menu .nav-menu-wrapper ul ul li a:hover,
.main-menu .nav-menu-wrapper ul ul li a:focus{
	color: var(--primary-color);
	background-color: transparent;
	padding: 8px 20px 8px 23px !important;
}

.main-menu .nav-menu-wrapper ul li.highlighted-menu{
    display: none;
}



@media (min-width:992px){
    .main-menu{
        display:flex;
    }
}
.responsive-menu,
.navbar-toggle{
	display: none;
}

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

.slicknav_btn{
	background: #a903f6;
	padding: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 38px;
	height: 38px;
	margin: 0;
	border-radius: 6px;
}

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

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

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

.navbar-toggle a.slicknav_btn.slicknav_open .slicknav_icon span.slicknav_icon-bar:nth-child(1){
    transform: rotate(-45deg) translate(-5px, 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: #a903f6;
}

.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: 600;
	text-transform: capitalize;
	padding: 7px 20px;
	color: var(--white-color);
	line-height: normal;
	margin: 0;
	border-radius: 0 !important;
	transition: all 0.3s ease-in-out;
}

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

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

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

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

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

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

.hero{
    position: relative;
    align-content: center;
	background-repeat: no-repeat;
	background-position: center center;
	background-size: cover;
	height: auto;
	min-height: 100vh;
    align-content: center;
    padding: 220px 0 120px;
    overflow: hidden;
}

.hero::before{
	content: '';
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	background: linear-gradient(90deg, rgba(0, 0, 0, 0.90) 0%, transparent 67.71%);
	height: 100%;
	width: 100%;
	z-index: 1;
}

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

.hero-content{
	margin-right: 45px;
}

.hero-content-body{
	display: flex;
	flex-wrap: wrap;
	gap: 30px;
}

.hero-body-item{
	width: calc(50% - 15px);
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 15px;
}

.hero-body-item .icon-box{
	position: relative;
	height: 50px;
	width: 50px;
	background-color: #a903f6;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	overflow: hidden;
}

.hero-body-item .icon-box:before{
	content: '';
	position: absolute;
	top: 0;
	bottom: 0;
	right: 0;
	left: 0;
	background: var(--white-color);
	border-radius: 50%;
	width: 100%;
	height: 100%;
	transform: scale(0);
	transition: all 0.4s ease-in-out;
	z-index: 0;
}

.hero-body-item:hover .icon-box:before{
	transform: scale(1);
}

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

.hero-body-item:hover .icon-box img{
	filter: brightness(0) invert(0);
}

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

.hero-body-item-content h2{
	font-size: 20px;
	color: var(--white-color);
	line-height: 1.4em;
}

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

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

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

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

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

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

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

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

/************************************/
/***       05. About us css       ***/
/************************************/

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

.about-us-image-box{
	position: relative;
	height: 100%;
	margin-right: 15px;
}

.about-us-image{
	height: 100%;
}

.about-us-image figure{
	display: block;
	height: 100%;
	border-radius: 14px;
}

.about-us-image img{
	width: 100%;
	height: 100%;
	aspect-ratio: 1 / 1.032;
	object-fit: cover;
	border-radius: 14px;
}

.about-us-review-box{
	position: absolute;
	bottom: 30px;
	left: 30px;
	right: 30px;
	width: 100%;
	max-width: 345px;
	background: var(--white-color);
	border-radius: 14px;
	padding: 30px;
	z-index: 1;
}

.about-us-review-box-header{
	display: flex;
	align-items: center;
}

.about-us-review-box-header h2{
	font-size: 30px;
	min-width: 85px;
	line-height: 1em;
}

.google-rating-star{
	line-height: normal;
}

.google-rating-star i{
	font-size: 18px;
	color: #a903f6;
}

.about-us-review-box-body{
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 10px;
	margin-top: 20px;
}

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

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

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

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

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

.satisfy-client-image.add-more{
	width: 40px;
	height: 40px;
	background-color: #a903f6;
	display: flex;
	justify-content: center;
	align-items: center;
	transition: all 0.3s ease-in-out;
}

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

.satisfy-client-image.add-more h2{
	font-size: 14px;
	line-height: 1em;
	color: var(--white-color);
}

.satisfy-client-image.add-more img{
	width: 100%;
	max-width: 16px;
}

.satisfy-client-content p{
	margin: 0;
}

.about-us-review-box-body .satisfy-client-content{
	max-width: 55%;
}

.about-us-review-box-body .satisfy-client-content p{
	color: var(--primary-color);
	font-weight: 600;
	line-height: 1.4em;
}

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

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

.about-us-body-content{
	width: calc(100% - 260px);
	align-content: center;
}

.about-us-body-list h3{
	font-size: 20px;
	margin-bottom: 30px;
}

.about-us-body-list ul{
	list-style: none;
	margin: 0;
	padding: 0;
}

.about-us-body-list ul li{
    position: relative;
    line-height: 1.5em;
    padding-left: 25px;
    margin-bottom: 15px;
}

.about-us-body-list ul li:last-child{
	margin-bottom: 0;
}

.about-us-body-list ul li::before{
	content: '\f058';
    position: absolute;
    font-family: 'Font Awesome 7 Free';
    font-size: 18px;
    font-weight: 900;
    color: #a903f6;
    top: 0;
    left: 0;
}

.about-us-btn{
	margin-top: 40px;
}

.about-experience-box{
	width: 100%;
	max-width: 230px;
	background-color: var(--white-color);
	border-radius: 14px;
	text-align: center;
	padding: 30px;
}

.about-experience-content h2{
	font-size: 48px;
}

.about-experience-content p{
	margin: 5px 0 0;
}

.about-experience-box .satisfy-client-images{
	justify-content: center;
	border-top: 1px solid var(--divider-color);
	margin-top: 30px;
	padding-top: 30px;
}

/************************************/
/*** 	  06. Our Services css	  ***/
/************************************/

.our-services{
	background-image: url('../images/service-bg-image.png');
	background-position: center bottom;
	background-repeat: no-repeat;
	background-size: auto;
	padding: 120px 0;
}

.service-item{
	position: relative;
/*	min-height: 430px;*/
	align-content: end;
	border-radius: 14px;
	padding: 10px;
	overflow: hidden;
	border: 1px solid #eee;
}

/*.service-item-image{
	position: absolute;
	top: 0;
	bottom: 0;
	right: 0;
	left: 0;
	width: 100%;
	height: 100%;
}*/

.service-item-image figure,
.service-item-image figure a{
	display: block;
	height: 300px;
	cursor: none;
}

.service-item-image img{
	height: 300px;
	object-fit: cover;
	width: 100%;
    border-radius: 10px;
	transition: all 0.6s ease-in-out;
}

.service-item:hover .service-item-image img{
	transform: scale(1.06);
}

.service-item-body{
	position: relative;
	background: var(--white-color);
	border-radius: 14px;
	padding: 10px;
	z-index: 1;
}

.service-item-content h2{
	font-size: 20px;
	font-family: var(--default-font);
	    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.service-item-content h2 a{
	color: initial;
	font-family: var(--default-font);
	    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

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

.service-item-btn{
	border-top: 1px solid var(--divider-color);
	height: 0;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease-in-out;
}

.service-item:hover .service-item-btn{
	height: 40px;
	margin-top: 20px;
	padding-top: 20px;
    opacity: 1;
    visibility: visible;
}

.service-item-slider .service-pagination{
	margin-top: 40px;
	text-align: center;
}

.service-item-slider .service-pagination .swiper-pagination-bullet{
    position: relative;
    height: 10px;
    width: 10px;
    background: var(--divider-color);
	opacity: 1;
    margin: 0 5px;
	border-radius: 10px;
	transition: all 0.4s ease-in-out;
}

.service-item-slider .service-pagination .swiper-pagination-bullet-active{
	background: #a903f6;
	width: 34px;
}

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

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

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

.section-footer-text p span{
	display: inline-block;
	background: #a903f6;
	color: var(--white-color);
	font-family: var(--accent-font);
	font-size: 14px;
	line-height: 1em;
	padding: 4px 10px;
	border-radius: 20px;
	margin-right: 10px;
}

.section-footer-text p a{
	font-weight: 600;
	text-transform: capitalize;
	text-decoration: underline;
	text-underline-offset: 3px;
	color: #a903f6;
	transition: all 0.3s ease-in-out;
}

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

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

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

.section-footer-text ul li:last-child{
	margin: 0;
}

.section-footer-text ul li i{
	color: #a903f6;
}

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

.section-footer-text.section-footer-contact span{
	width: 30px;
    height: 30px;
    padding: 0;
    display: inline-flex;
    justify-content: center;
	align-items: center;
    margin-right: 10px;
}

.section-footer-text.section-footer-contact span img{
	width: 100%;
	max-width: 20px;
}

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

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

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

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

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

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

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

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

/************************************/
/*** 	07. Why Choose Us css	  ***/
/************************************/

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

.why-choose-item-list{
	display: flex;
	flex-wrap: wrap;
	flex-direction: column;
	gap: 30px;
	margin-right: 15px;
}

.why-choose-item{
	position: relative;
	min-height: 275px;
	align-content: end;
	padding: 30px;
	overflow: hidden;
}

.why-choose-item-image{
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	height: 100%;
	width: 100%;
}

.why-choose-item-image figure{
	position: relative;
	display: block;
	height: 100%;
	border-radius: 14px;
	overflow: hidden;
}

.why-choose-item-image figure:before{
	content: '';
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	background: linear-gradient(180deg, transparent 45%, var(--primary-color) 100%);
	height: 100%;
	width: 100%;
}

.why-choose-item-image img{
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.why-choose-item-content{
	position: relative;
	text-align: center;
	z-index: 1;
}

.why-choose-item-content h2{
	font-size: 20px;
	color: var(--white-color);
}

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

.why-choose-video-counter-box,
.why-choose-video-box{
	position: relative;
	height: 100%;
}

.why-choose-video-btn-box{
	position: absolute;
	top: 0;
	left: 0;
	background-color: var(--bg-color);
	padding: 14px;
    border-radius: 0 0 14px 0;
	z-index: 2;
}

.why-choose-video-btn-box::before,
.why-choose-video-btn-box::after{
	content: '';
	position: absolute;
	width: 20px;
    height: 20px;
	mask: url('../images/image-corner-bg-shape.svg');
	-webkit-mask: url('../images/image-corner-bg-shape.svg');
	background-color: var(--bg-color);
	mask-repeat: no-repeat;
	mask-size: cover;
	z-index: 1;
}

.why-choose-video-btn-box::before{
	top: 0;
	right: -20px;
	left: auto;
}

.why-choose-video-btn-box::after{
	left: 0;
	right: auto;
	bottom: -20px;
}

.why-choose-video-btn a{
	display: flex;
	align-items: center;
	justify-content: center;
	height: 92px;
	width: 92px;
	background-color: #a903f6;
	border-radius: 14px;
	cursor: none;
	transition: all 0.4s ease-in-out;
}

.why-choose-video-btn a:hover{
	background-color: var(--primary-color);
}

.why-choose-video-btn a i{
	font-size: 40px;
	color: var(--white-color);
	margin-left: 5px;
}

.why-choose-video-image{
	height: 100%;
	width: 100%;
}

.why-choose-video-image figure{
	display: block;
	height: 100%;
	border-radius: 14px;
}

.why-choose-video-image img{
	width: 100%;
	height: 100%;
	aspect-ratio: 1 / 0.65;
	object-fit: cover;
	border-radius: 14px;
}

.why-choose-counter-item-list{
	position: absolute;
	bottom: 10px;
	right: 10px;
	width: 100%;
	max-width: 540px;
	display: flex;
	flex-wrap: wrap;
	gap: 30px 60px;
	background-color: var(--white-color);
	border-radius: 14px;
	padding: 40px;
	margin-left: auto;
	z-index: 1;
}

.why-choose-counter-item{
	position: relative;
	width: calc(50% - 30px);
	text-align: center;
}

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

.why-choose-counter-item:nth-child(2n + 2):before,
.why-choose-counter-item:last-child:before{
	display: none;
}

.why-choose-counter-item h2{
	font-size: 48px;
	line-height: 1em;
}

.why-choose-counter-item p{
	margin: 5px 0 0;
}

/************************************/
/*** 	08. Our Features css	  ***/
/************************************/

.our-features{
	position: relative;
	background-image: url('../images/features-bg-image.jpg');
	background-position: center center;
	padding: 120px 0;
}

.our-features:before{
	content: '';
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	height: 100%;
	width: 100%;
	background-color: var(--primary-color);
	opacity: 80%;
	z-index: 1;
}

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

.features-item-list{
	display: flex;
	flex-wrap: wrap;
	gap: 60px;
}

.features-item{
	width: calc(50% - 30px);
}

.circle{
	position: relative;
	display: inline-flex;
	color: #a903f6;
	border-radius: 50%;
}

.circle .progress_value{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    color: var(--white-color);
	font-family: var(--accent-font);
	font-size: 20px;
    font-weight: 500;
    background: transparent;
    border-radius: 50%;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
}

.features-item-content{
	margin-top: 30px;
}

.features-item-content h2{
	color: var(--white-color);
	font-size: 20px;
}

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

.company-slider-box{
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 20px 30px;
	border-top: 1px solid var(--dark-divider-color);
	padding-top: 60px;
	margin-top: 60px;
}

.company-slider-title{
	width: calc(32% - 15px);
	border-right: 1px solid var(--dark-divider-color);
	padding-right: 30px;
}

.company-slider-title h3{
	font-size: 20px;
	color: var(--white-color);
}



.company-supports-logo{
	text-align: center;
}

.company-supports-logo img{
	width: 100%;
	max-width: 164px;
	height: 40px;
}

/************************************/
/*** 	09. Our Projects css	  ***/
/************************************/

.our-projects{
	padding: 120px 0;
}

.project-item{
	position: relative;
	min-height: 450px;
	align-content: end;
	border-radius: 14px;
	padding: 10px;
	overflow: hidden;
}

.project-item-image{
	position: absolute;
	top: 0;
	bottom: 0;
	right: 0;
	left: 0;
	width: 100%;
	height: 100%;
}

.project-item-image figure,
.project-item-image figure a{
	display: block;
	height: 100%;
	cursor: none;
}

.project-item-image img{
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: all 0.6s ease-in-out;
}

.project-item:hover .project-item-image img{
	transform: scale(1.06);
}

.project-item-content{
	position: relative;
	background: var(--white-color);
	border-radius: 14px;
	padding: 30px;
	z-index: 1;
}

.project-item-content ul{
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	list-style: none;
	margin: 0 0 20px;
	padding: 0;
}

.project-item-content ul li{
	position: relative;
	font-size: 14px;
	font-weight: 500;
	color: var(--primary-color);
	line-height: normal;
	padding-left: 15px;
}

.project-item-content ul li:before{
	content: '';
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	left: 0;
	background-color: #a903f6;
	height: 5px;
	width: 5px;
}

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

.project-item-content h2{
	font-size: 20px;
}

.project-item-content h2 a{
	color: initial;
}

.project-item-slider .project-pagination{
	margin-top: 40px;
	text-align: center;
}

.project-item-slider .project-pagination .swiper-pagination-bullet{
    position: relative;
    height: 10px;
    width: 10px;
    background: var(--divider-color);
	opacity: 1;
    margin: 0 5px;
	border-radius: 10px;
	transition: all 0.4s ease-in-out;
}

.project-item-slider .project-pagination .swiper-pagination-bullet-active{
	background: #a903f6;
	width: 34px;
}

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

/************************************/
/*** 	 10. Intro Video css	  ***/
/************************************/

.intro-video{
	position: relative;
	background-position: center center;
	background-size: cover;
	align-content: end;
	min-height: 43.229vw;
	padding: 120px 0 80px;
	overflow: hidden;
}

.intro-video:before{
	content: '';
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	background: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.80) 100%);
	height: 100%;
	width: 100%;
	z-index: 1;
}

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

.intro-video-content{
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}

.intro-video-content .section-title{
    max-width: 640px;
    margin: 0;
}

.intro-video-circle a{
	display: block;
	background-color: var(--dark-divider-color);
	border-radius: 50%;
	backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
	cursor: none;
}

.intro-video-circle a img{
	width: 100%;
	max-width: 140px;
	aspect-ratio: 1 / 1;
	object-fit: cover;
	animation: infiniterotate 20s linear infinite;
}

@keyframes infiniterotate{
	100%{
		transform: rotate(360deg);
	}
}

.intro-video-circle a:hover img{
	animation-play-state: paused;
}

/************************************/
/*** 	 11. Our Expertise css	  ***/
/************************************/

.our-expertise{
	padding: 120px 0;
}

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

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

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

.skillbar .skill-data{
	display: flex;
	justify-content: space-between;
	gap: 10px;
	margin-bottom: 20px;
}

.skill-data .skill-title,
.skill-data .skill-no{
	font-family: var(--accent-font);
	font-size: 16px;
	font-weight: 500;
	color: var(--primary-color);
}

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

.skill-progress .count-bar{
	position: absolute;
	top: 0;
	left: 0;
	bottom: 0;
	background-color: #a903f6;
	border-radius: 10px;
}

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

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

.about-us-contact-box .icon-box{
    position: relative;
    background: #a903f6;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
	transition: all 0.4s ease-in-out;
	overflow: hidden;
}

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

.about-us-contact-box:hover .icon-box::before{
    transform: scale(1);
}

.about-us-contact-box .icon-box img{
    position: relative;
    width: 100%;
    max-width: 24px;
	z-index: 1;
}

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

.about-us-conatct-content p{
	font-weight: 500;
	line-height: normal;
}

.about-us-conatct-content p{
	margin-bottom: 5px;
}

.about-us-conatct-content h3{
	font-size: 20px;
}

.about-us-conatct-content h3 a{
	color: inherit;
    transition: all 0.4s ease-in-out;
}

.about-us-conatct-content h3 a:hover{
	color: #a903f6;
}

.expertise-image-box{
	position: relative;
	height: 100%;
	margin-left: 15px;
}

.expertise-image{
	height: 100%;
}

.expertise-image figure{
	position: relative;
	display: block;
	height: 100%;
	border-radius: 14px;
}

.expertise-image figure:before{
	content: '';
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	background: linear-gradient(180deg, transparent 65.9%, var(--primary-color) 100%);
	border-radius: 14px;
	height: 100%;
	width: 100%;
}

.expertise-image img{
	width: 100%;
	height: 100%;
	aspect-ratio: 1 / 1.04;
	object-fit: cover;
	border-radius: 14px;
}

.expertise-image-content{
	position: absolute;
	right: 40px;
	bottom: 40px;
	left: 40px;
}

.expertise-image-content ul{
	display: flex;
	flex-wrap: wrap;
	gap: 15px 20px;
	list-style: none;
	margin: 0;
	padding: 0;
}

.expertise-image-content ul li{
	position: relative;
	color: var(--white-color);
	width: calc(50% - 10px);
	line-height: 1.5em;
	padding-left: 25px;
}

.expertise-image-content ul li:last-child{
	margin-bottom: 0;
}

.expertise-image-content ul li::before{
	content: '\f058';
    position: absolute;
    font-family: 'Font Awesome 7 Free';
    font-size: 18px;
    font-weight: 900;
    color: #a903f6;
    top: 0;
    left: 0;
}

/************************************/
/*** 	   12. Our Team css		  ***/
/************************************/

.our-team{
	padding: 120px 0;
}

.team-item{
    position: relative;
    border-radius: 14px;
    height: calc(100% - 30px);
    margin-bottom: 30px;
    overflow: hidden;
}

.team-item-image figure,
.team-item-image a{
	position: relative;
    display: block;
	height: 100%;
    cursor: none;
}

.team-item-image figure:before{
	content: '';
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	width: 100%;
	border-radius: 14px;
	background: linear-gradient(180deg, transparent 43.5%, rgba(0, 0, 0, 0.90) 100%);
	z-index: 1;
}

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

.team-item:hover .team-item-image img{
	transform: scale(1.06);
}

.team-item-body{
	position: absolute;
	right: 40px;
	bottom: 40px;
	left: 40px;
    transform: translateY(50%);
	text-align: center;
    transition: all 0.4s ease-in-out;
    z-index: 2;
}

.team-item:hover .team-item-body{
	transform: translateY(0%);
}

.team-item-content h2{
    font-size: 20px;
    color: var(--white-color);
}

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

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

.team-social-list{
	margin-top: 30px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease-in-out;
}

.team-item:hover .team-social-list{
	opacity: 1;
	visibility: visible;
}

.team-social-list ul{
    display: flex;
    flex-wrap: wrap;
	justify-content: center;
    gap: 15px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.team-social-list ul li a{
	color: var(--primary-color);
    width: 36px;
    height: 36px;
    background-color: var(--white-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s ease-in-out;
}

.team-social-list ul li a:hover{
    background: #a903f6;
	color: var(--white-color);
}

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

/************************************/
/*** 	   13. Our FAQs css		  ***/
/************************************/

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

.faq-content{
	background-color: var(--secondary-color);
    border-radius: 14px;
    padding: 20px;
	margin-right: 15px;
}

.faq-info-item{
	background-color: var(--bg-color);
    border-radius: 14px;
    padding: 30px;
	display: flex;
    flex-wrap: wrap;
    gap: 15px;
	margin-bottom: 20px;
}

.faq-info-item .icon-box{
	position: relative;
    height: 50px;
    width: 50px;
    background-color: #a903f6;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

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

.faq-info-item:hover .icon-box::before{
	transform: scale(1);
}

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

.faq-info-content{
	width: calc(100% - 65px);
}

.faq-info-content h3{
	font-size: 20px;
}

.faq-info-content p{
	margin: 5px 0 0 0;
}

.faq-info-body-box{
	padding: 10px;
}

.faq-info-body-box .faq-info-content{
	width: 100%;
}

.faq-contact-list{
	border-top: 1px solid var(--divider-color);
	padding-top: 40px;
	margin-top: 40px;
	display: flex;
	flex-wrap: wrap;
	gap: 30px;
}

.faq-contact-item{
	width: calc(50% - 15px);
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 15px;
}

.faq-contact-item .icon-box{
	position: relative;
    height: 50px;
    width: 50px;
    background-color: #a903f6;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

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


.faq-contact-item:hover .icon-box::before{
	transform: scale(1);
}

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

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

.faq-contact-item-content h3{
	font-size: 20px;
}

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

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

.faq-contact-item-content p a:hover{
	color: #a903f6;
}

.faq-contant-box{
	height: 100%;
	align-content: center;
}

.faq-accordion .accordion-item{
	background: var(--secondary-color);
	border-radius: 14px;
	margin-bottom: 30px;
    padding: 0;
	overflow: hidden;
}

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

.faq-accordion .accordion-header .accordion-button{
	font-size: 18px;
	font-weight: 500;
	line-height: 1.333em;
    background-color: transparent;
    color: var(--primary-color);
    padding: 20px 60px 20px 20px;
	transition: all 0.3s ease-in-out;
}

.faq-accordion .accordion-item .accordion-button::after, 
.faq-accordion .accordion-item .accordion-button.collapsed::after{
    content: '\f0fe';
    font-family: 'FontAwesome';
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 34px;
    color: #a903f6;
    transition: all 0.3s ease-in-out;
}

.faq-accordion .accordion-button:not(.collapsed)::after{
    content: '\f146';
	color: var(--primary-color);
}

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

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

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

/************************************/
/***   14. Our Testimonials css	  ***/
/************************************/

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

.testimonial-item{
    background-color: #04205a;
	backdrop-filter: blur(30px);
    -webkit-backdrop-filter: blur(30px);
    border-radius: 14px;
    padding: 10px 10px 30px;
	height: 100%;
    overflow: hidden;
}

.testimonial-slider .swiper-wrapper .swiper-slide .testimonial-item{
	transform: scale(0.95);
	transition: all 0.6s ease-in-out;
}
   
.testimonial-slider .swiper-wrapper .swiper-slide.swiper-slide-next .testimonial-item{
	transform: scale(1);
}

.testimonial-slider,
.testimonial-slider .swiper,
.testimonial-item{
	height: 100%;
}

.testimonial-slider .swiper{
	cursor: none;
}
 
.testimonial-item-header{
	background-color: #012878;
	border-radius: 10px;
    padding: 40px 40px 70px;
    overflow: hidden;
	text-align: center;
}

.testimonial-item-rating{
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: center;
	gap: 15px;
	margin-bottom: 30px;
}

.testimonial-item-rating p{
	font-family: var(--accent-font);
	font-weight: 500;
	color: var(--white-color);
	margin: 0;
}

.testimonial-item-rating-star i{
	color: #fff;
}

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

.testimonial-author-box{
	text-align: center;
}

.testimonial-author-image{
	margin-top: -30px;
}

.testimonial-author-image figure{
	display: block;
    border-radius: 50%;
	max-width: 60px;
	margin: 0 auto;
}

.testimonial-author-image figure img{
	width: 100%;
    max-width: 60px;
    border-radius: 50%;
}

.testimonial-author-content{
	margin-top: 30px;
}

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

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

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

/************************************/
/***   		15. Our Blog css	  ***/
/************************************/

.our-blog{
	padding: 120px 0 90px;
}

.post-item{
	height: calc(100% - 30px);
    margin-bottom: 30px;
}

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

.post-featured-image{
	border-radius: 14px;
    overflow: hidden;
}

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

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

.post-item:hover .post-featured-image figure img{
	transform: scale(1.06);
}

.post-item-btn{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease-in-out;
    z-index: 1;
}

.post-item:hover .post-item-btn{
	opacity: 1;
	visibility: visible;
	transform: translate(-50%, -50%) scale(1);
}

.post-item-btn a{
    display: block;
    background-color: #a903f6;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s ease-in-out;
}

.post-item-btn a:hover{
	background-color: var(--primary-color);
}

.post-item-btn a img{
	width: 100%;
	max-width: 24px;
	transition: all 0.4s ease-in-out;
}

.post-item-btn a:hover img{
	transform: rotate(45deg);
}

.post-item-meta{
	border-bottom: 1px solid var(--divider-color);
	margin-bottom: 15px;
	padding-bottom: 15px;
}

.post-item-meta ul{
    list-style: none;
    margin: 0;
    padding: 0;
	display: flex;
	flex-wrap: wrap;
	gap: 15px;
}

.post-item-meta ul li{
    line-height: normal;
    display: flex;
    align-items: center;
    gap: 10px;
}

.post-item-meta ul li img{
    width: 100%;
    max-width: 20px;
}

.post-item-content h2{
    font-size: 20px;
	line-height: 1.4em;
}

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

/************************************/
/***   		16. Footer css		  ***/
/************************************/

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

.about-footer{
	height: 100%;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	gap: 30px;
}

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

.footer-social-links ul li a{
	width: 40px;
	height: 40px;
	border: 1px solid var(--dark-divider-color);
	border-radius: 50%;
	color: var(--white-color);
	display: flex;
	align-items: center;
	justify-content: center;
	transition: all 0.4s ease-in-out;
}

.footer-social-links ul li a:hover{
	background-color: #a903f6;
}

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

.footer-logo{
	border-top: 1px solid var(--dark-divider-color);
	padding-top: 50px;
}

.footer-logo img{
	width: 100%;
	max-width: 153px;
}

.footer-content-box{
	background-color: var(--dark-divider-color);
    backdrop-filter: blur(30px);
    -webkit-backdrop-filter: blur(30px);
    border-radius: 14px;
    padding: 50px;
}

.footer-newsletter-box{
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 15px 30px;
	border-bottom: 1px solid var(--dark-divider-color);
	margin-bottom: 50px;
	padding-bottom: 50px;
}

.footer-newsletter-box-title{
	width: calc(45% - 15px);
}

.footer-newsletter-box-title h2{
	font-size: 20px;
	color: var(--white-color);
}

.footer-newsletter-form{
	width: calc(55% - 15px);
}

.footer-newsletter-form .form-group{
	display: flex;
	flex-wrap: wrap;
	background: var(--dark-divider-color);
	backdrop-filter: blur(30px);
	-webkit-backdrop-filter: blur(30px);
	border-radius: 5px;
	padding: 5px;
}

.footer-newsletter-form .form-group .form-control{
	width: calc(100% - 40px);
	font-size: 16px;
	font-weight: 400;
	line-height: 1.4em;
	color: var(--white-color);
	background: transparent;
	border: none;
	border-radius: 0;
	outline: none;
	box-shadow: none;
	padding: 5px 20px;
}

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

.footer-newsletter-form .form-group .newsletter-btn{
	width: 40px;
	height: 40px;
	background: #a903f6;
	border-radius: 5px;
	display: flex;
	justify-content: center;
	align-items: center;
	border: none;
	box-shadow: none;
	outline: none;
	padding: 0;
	transition: all 0.3s ease-in-out;
}

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

.footer-newsletter-form .form-group .newsletter-btn img{
	width: 100%;
	max-width: 20px;
	transition: all 0.3s ease-in-out;
}

.footer-newsletter-form .form-group .newsletter-btn:hover img{
	filter: brightness(0) invert(0);
	transform: rotate(45deg);
}

.footer-links-box{
	display: flex;
    flex-wrap: wrap;
    gap: 30px 5.208vw;
}

.footer-links{
	position: relative;
}

.footer-links::before{
	content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    right: -2.604vw;
    background: var(--dark-divider-color);
    width: 1px;
    height: 100%;
}

.footer-links:last-child::before,
.footer-contact-box::before{
	display: none;
}

.footer-quick-links{
	width: calc(25% - 3.472vw);
}

.footer-service-links{
	width: calc(33% - 3.472vw);
}

.footer-contact-links{
	width: calc(42% - 3.472vw);
}

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

.footer-links ul{
	list-style: disc;
	margin: 0;
	padding: 0 0 0 20px;
}

.footer-links ul li{
	color: var(--white-color);
	text-transform: capitalize;
	line-height: 1.5em;
	margin-bottom: 15px;
}

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

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

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

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

.footer-contact-links ul{
	list-style: none;
    padding: 0;
}

.footer-contact-links ul li{
	display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 10px;
	margin-bottom: 20px;
}

.footer-contact-links ul li span{
	font-weight: 600;
}

.footer-copyright-text{
	padding: 60px 0;
	text-align: center;
}

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

/************************************/
/***    17. About Us Page css	  ***/
/************************************/

.page-header{
	position: relative;
	background-position: center center;
	background-repeat: no-repeat;
	background-size: cover;
	padding: 150px 0;
	overflow: hidden;
}

.page-header:before{
	content: '';
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	height: 100%;
	width: 100%;
	background: var(--primary-color);
    opacity: 60%;
	z-index: 1;
}

.page-header-box{
	position: relative;
    text-align: center;
	z-index: 2;
}

.page-header-box h1{
	display: inline-block;
	font-size: 60px;
	line-height: 1.1em;
	letter-spacing: -0.01em;
	color: var(--white-color);
	margin-bottom: 10px;
	cursor: none;
}

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

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

.page-header-box ol li.breadcrumb-item a{
    color: inherit;
}

.page-header-box ol .breadcrumb-item+.breadcrumb-item::before{
    color: var(--white-color);
}
 .investing_future{
            padding: 70px 0;
        }
 .investing_future_content{
    background: #a903f6a8;
    padding: 30px;
    border-radius: 30px;
    color: #fff;
    line-height: 22px;
}



  .journey-section {
            padding: 90px 20px 120px;
            background: #ffffff;
            overflow: hidden;
        }

        .journey-container {
            max-width: 1200px;
            margin: 0 auto;
        }

        /* Header */

        .journey-header {
            text-align: center;
            max-width: 850px;
            margin: 0 auto 90px;
        }

        .journey-subtitle {
            display: inline-block;
            font-size: 14px;
            font-weight: 600;
            letter-spacing: 2px;
            text-transform: uppercase;
            color: #8fbd24;
            margin-bottom: 15px;
        }

        .journey-header h2 {
            font-size: 48px;
            line-height: 1.2;
            font-weight: 700;
            color: #273b91;
            margin-bottom: 20px;
        }

        .journey-header h2 span {
            color: #94c11f;
        }

        .journey-header p {
            font-size: 16px;
            line-height: 1.8;
            color: #68717d;
        }


        /* =========================
           TIMELINE
        ========================== */

        .timeline {
            position: relative;
            width: 100%;
        }

        /* Center Long Line */

        .timeline::before {
            content: "";
            position: absolute;
            top: 0;
            bottom: 0;
            left: 50%;
            width: 2px;
            background: linear-gradient(
                to bottom,
                transparent,
                #273b91 5%,
                #273b91 95%,
                transparent
            );

            transform: translateX(-50%);
        }


        /* Timeline Item */

        .timeline-item {
            position: relative;
            display: grid;
            grid-template-columns: 1fr 100px 1fr;
            align-items: center;
            margin-bottom: 75px;
        }

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


        /* =========================
           CONTENT CARDS
        ========================== */

        .timeline-content {
            width: 100%;
            max-width: 450px;
            padding: 28px 32px;
            background: #ffffff;
            border: 1px solid #e8ebf0;
            border-radius: 14px;

            box-shadow:
                0 10px 30px rgba(39, 59, 145, 0.06);

            transition:
                transform 0.3s ease,
                box-shadow 0.3s ease,
                border-color 0.3s ease;
        }

        .timeline-content:hover {
            transform: translateY(-5px);
            border-color: #cbd4ed;

            box-shadow:
                0 18px 45px rgba(39, 59, 145, 0.12);
        }


        /* Left Side */

        .timeline-item:nth-child(odd) .timeline-content {
            grid-column: 1;
            justify-self: end;
            text-align: right;
        }

        /* Right Side */

        .timeline-item:nth-child(even) .timeline-content {
            grid-column: 3;
            justify-self: start;
            text-align: left;
        }


        /* =========================
           YEAR
        ========================== */

        .timeline-year {
            font-size: 34px;
            font-weight: 700;
            line-height: 1;
            margin-bottom: 16px;

            background: linear-gradient(
                135deg,
                #273b91,
                #4359b0
            );

            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }


        /* Description */

        .timeline-content p {
            font-size: 15px;
            line-height: 1.8;
            color: #68717d;
        }


        /* =========================
           CENTER DOT
        ========================== */

        .timeline-dot {
            grid-column: 2;
            grid-row: 1;

            width: 20px;
            height: 20px;

            margin: auto;

            background: #ffffff;

            border: 5px solid #273b91;

            border-radius: 50%;

            position: relative;
            z-index: 2;

            box-shadow:
                0 0 0 7px rgba(39, 59, 145, 0.08);

            transition: all 0.3s ease;
        }

        .timeline-item:hover .timeline-dot {
            transform: scale(1.2);
            border-color: #94c11f;

            box-shadow:
                0 0 0 8px rgba(148, 193, 31, 0.15);
        }


        /* =========================
           RESPONSIVE
        ========================== */

        @media (max-width: 768px) {

            .journey-section {
                padding: 70px 20px;
            }

            .journey-header {
                margin-bottom: 60px;
            }

            .journey-header h2 {
                font-size: 36px;
            }

            .journey-header p {
                font-size: 15px;
            }


            /* Move timeline line to left */

            .timeline::before {
                left: 20px;
                transform: none;
            }


            .timeline-item {
                display: grid;
                grid-template-columns: 40px 1fr;
                margin-bottom: 40px;
                align-items: start;
            }


            .timeline-dot {
                grid-column: 1;
                grid-row: 1;

                width: 18px;
                height: 18px;

                margin-top: 30px;
                margin-left: 11px;

                border-width: 4px;
            }


            .timeline-item:nth-child(odd) .timeline-content,
            .timeline-item:nth-child(even) .timeline-content {
                grid-column: 2;
                grid-row: 1;

                justify-self: start;
                text-align: left;

                max-width: 100%;
            }


            .timeline-content {
                padding: 24px;
            }


            .timeline-year {
                font-size: 28px;
            }

        }
       
.our-approach{
	background-image: url('../images/service-bg-image.png');
    background-position: center bottom;
    background-repeat: no-repeat;
    background-size: auto;
    padding: 120px 0;
}

.approach-item{
	background-color: var(--bg-color);
    border-radius: 14px;
    height: calc(100% - 30px);
    margin-bottom: 30px;
    padding: 10px;
	transition: all 0.4s ease-in-out;
}

.approach-item:hover{
	transform: translateY(-5px);
}

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

.approach-item-header .icon-box{
	position: relative;
    width: 40px;
    height: 40px;
    background: #a903f6;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

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

.approach-item:hover .approach-item-header .icon-box::before{
	transform: scale(1);
}

.approach-item-header .icon-box img{
	position: relative;
    width: 100%;
    max-width: 20px;
	z-index: 1;
}

.approach-item-title{
	width: calc(100% - 55px);
}

.approach-item-title h2{
	font-size: 20px;
}

.approach-item-body{
	min-height: 290px;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	gap: 30px;
	background-color: var(--secondary-color);
    border-radius: 10px;
    padding: 30px;
}

.approach-item-body p{
	margin: 0;
}

.approach-item-body-list{
	border-top: 1px solid var(--divider-color);
	padding-top: 30px;
}

.approach-item-body-list ul{
	list-style: none;
    margin: 0;
    padding: 0;
}

.approach-item-body-list ul li{
	position: relative;
    line-height: 1.5em;
    padding-left: 25px;
    margin-bottom: 15px;
}

.approach-item-body-list ul li:last-child{
	margin-bottom: 0;
}

.approach-item-body-list ul li::before{
	content: '\f058';
    position: absolute;
    font-family: 'Font Awesome 7 Free';
    font-size: 18px;
    font-weight: 900;
    color: #a903f6;
    top: 0;
    left: 0;
}

.global-impact{
	padding: 120px 0;
}

.global-impact-list{
	display: flex;
	flex-wrap: wrap;
    gap: 30px;
}

.global-impact-item{
	width: calc(33.33% - 20px);
    background-color: var(--dark-divider-color);
    backdrop-filter: blur(30px);
    -webkit-backdrop-filter: blur(30px);
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	gap: 30px;
    border-radius: 14px;
	padding: 10px;
    overflow: hidden;
}

.global-impact-image{
	height: 100%;
}

.global-impact-image figure{
	display: block;
	height: 100%;
	border-radius: 14px;
}

.global-impact-image figure img{
	width: 100%;
	height: 100%;
	aspect-ratio: 1 / 0.56;
	object-fit: cover;
	border-radius: 14px;
}

.global-impact-body{
	padding: 0 20px 20px;
}

.global-impact-body-list{
	margin-bottom: 30px;
}

.global-impact-body-list ul{
	list-style: square;
    margin: 0;
    padding: 0 0 0 20px;
}

.global-impact-body-list ul li{
	color: var(--white-color);
	font-size: 14px;
    line-height: 1.5em;
    margin-bottom: 15px;
}

.global-impact-body-list ul li:last-child{
	margin-bottom: 0;
}

.global-impact-body-list ul li::marker{
	color: #a903f6;
}

.global-impact-counter-box{
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 20px;
}

.global-impact-counter-box h2{
	width: 90px;
	font-size: 48px;
	line-height: 1em;
	color: var(--white-color);
}

.global-impact-counter-box p{
	width: calc(100% - 110px);
	color: var(--white-color);
	line-height: 1.4em;
	margin: 0;
}

.global-impact-content{
	text-align: center;
	padding: 20px 20px 0;
}

.global-impact-content h3{
	font-size: 20px;
	color: var(--white-color);
}

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

.global-impact-map-image figure{
	display: block;
	width: 100%;
}

.global-impact-map-image{
	margin: 0 -10px -60px -10px;
}

.global-impact-map-image figure{
	display: block;
	border-radius: 14px;
}

.global-impact-map-image figure img{
    aspect-ratio: 1 / 0.48;
	width: 100%;
    border-radius: 14px;
    object-fit: cover;
}

.global-impact-item-header{
	padding: 30px 30px 0;
}

.global-impact-item .icon-box{
	position: relative;
    width: 50px;
    height: 50px;
    background: #a903f6;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

.global-impact-item .icon-box::before{
	content: '';
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--white-color);
    border-radius: 50%;
    transform: scale(0);
    transition: all 0.4s ease-in-out;
    z-index: 0;
}

.global-impact-item:hover .icon-box:before{
	transform: scale(1);
}

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

.global-impact-item:hover .icon-box img{
	filter: brightness(0) invert(0);
}

.global-impact-item.box-3 .global-impact-counter-box{
	border-top: 1px solid var(--dark-divider-color);
	padding: 30px;
}

.global-impact-item.box-3 h2{
	width: 100%;
}

.global-impact-item.box-3 p{
	width: 100%;
}

.what-we-do{
	padding: 120px 0;
}

.what-we-image-box{
	height: 100%;
	display: flex;
	flex-wrap: wrap;
	gap: 30px;
	margin-right: 15px;
}

.what-we-image-box-1{
	width: calc(34% - 15px);
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.what-we-image figure{
	display: block;
    border-radius: 14px;
}

.what-we-image figure img{
	width: 100%;
    object-fit: cover;
    border-radius: 14px;
}

.what-we-image-box-1 .what-we-image figure img{
	aspect-ratio: 1 / 1.64;
}

.what-we-client-served-box{
	padding: 30px 35px;
	background-color: var(--secondary-color);
	border-radius: 14px;
	text-align: center;
	transition: all 0.4s ease-in-out;
}

.what-we-client-served-box:hover{
	background-color: var(--primary-color);
}

.what-we-client-served-box .icon-box{
	margin-bottom: 30px;
}

.what-we-client-served-box .icon-box img{
	width: 100%;
	max-width: 40px;
	transition: all 0.4s ease-in-out;
}

.what-we-client-served-box:hover img{
	filter: brightness(0) invert(1);
}

.what-we-client-content h2{
	font-size: 48px;
	line-height: 1em;
	transition: all 0.4s ease-in-out;
}

.what-we-client-content p{
	margin: 5px 0 0;
	transition: all 0.4s ease-in-out;
}

.what-we-client-served-box:hover .what-we-client-content h2,
.what-we-client-served-box:hover .what-we-client-content p{
	color: var(--white-color);
}

.what-we-image-box-2{
	width: calc(66% - 15px);
}

.what-we-image-box-2{
	height: 100%;
}

.what-we-image-box-2 .what-we-image{
	height: 100%;
}

.what-we-image-box-2 .what-we-image figure{
	height: 100%;
}

.what-we-image-box-2 .what-we-image figure img{
	height: 100%;
	aspect-ratio: 1 / 1.458;
}

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

.what-we-content-list ul{
	list-style: none;
    margin: 0;
    padding: 0;
	display: flex;
	flex-wrap: wrap;
	gap: 30px;
}

.what-we-content-list ul li{
	position: relative;
	line-height: 1.5em;
	width: calc(50% - 15px);
	background-color: var(--secondary-color);
	padding: 13px 16px 13px 44px;
	border-radius: 14px;
	transition: all 0.4s ease-in-out;
}

.what-we-content-list ul li:hover{
	background-color: #a903f6;
	color: var(--white-color);
}

.what-we-content-list ul li::before{
	content: '\f058';
    position: absolute;
    font-family: 'Font Awesome 7 Free';
    font-size: 18px;
    font-weight: 900;
    color: #a903f6;
    top: 12px;
    left: 16px;
	transition: all 0.4s ease-in-out;
}

.what-we-content-list ul li:hover::before{
	color: var(--white-color);
}

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

/************************************/
/***    18. Services Page css	  ***/
/************************************/

.page-services{
	padding: 120px 0 90px;
}

.page-services .service-item{
	height: calc(100% - 30px);
	margin-bottom: 30px;
}

/************************************/
/***    19. Service Single css	  ***/
/************************************/

.page-service-single{
	padding: 120px 0;
}

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

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

.page-category-list .page-category-list-title{
	font-size: 20px;
	line-height: 1.2em;
	color: var(--white-color);
	background: #a903f6;
	padding: 20px 30px;
}

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

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

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

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

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

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

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

.sidebar-cta-box{
	background: var(--primary-color);
	border-radius: 14px;
	padding: 10px;
	text-align: center;
	overflow: hidden;
}

.sidebar-cta-image figure{
	display: block;
	border-radius: 10px;
}

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

.sidebar-cta-box:hover .sidebar-cta-image img{
	transform: scale(1.06);
}

.sidebar-cta-box-header .icon-box{
	position: relative;
	height: 68px;
	width: 68px;
	display: flex;
	align-items: center;
	justify-content: center;
	background-color: #a903f6;
	border: 4px solid var(--primary-color);
	border-radius: 50%;
	margin: -34px auto 0;
}

.sidebar-cta-box-header .icon-box::before{
	content: '';
	position: absolute;
	top: 0;
	bottom: 0;
	right: 0;
	left: 0;
	background: var(--white-color);
	border-radius: 50%;
	width: 100%;
	height: 100%;
	transform: scale(0);
	transition: all 0.4s ease-in-out;
	z-index: 0;
}

.sidebar-cta-box:hover .sidebar-cta-box-header .icon-box::before{
    transform: scale(1);
}

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

.sidebar-cta-box:hover .sidebar-cta-box-header .icon-box img{
    filter: brightness(0) invert(0);
}

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

.sidebar-cta-content-box h2{
	font-size: 30px;
	color: var(--white-color);
}

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

.sidebar-cta-content-box ul li{
    color: var(--white-color);
    line-height: 1.5em;
    margin-bottom: 15px;
}

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

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

.sidebar-cta-content-box ul li a:hover{
    color: #a903f6;
}

.sidebar-cta-content-box ul li a img{
    width: 100%;
    max-width: 20px;
    margin-right: 5px;
}

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

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

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

.service-entry{
    margin-bottom: 60px;
}

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

.service-entry h2{
	font-size: 48px;
    margin-bottom: 20px;
}

.service-entry h3{
	font-size: 20px;
	line-height: 1.3em;
	margin-bottom: 10px;
}

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

.service-entry-info-box,
.service-capability-box,
.service-work-box{
    margin-top: 60px;
}

.service-entry-video-content{
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    margin-top: 40px;
}

.service-entry-image-video{
	position: relative;
	width: calc(63% - 15px);
	border-radius: 14px;
	overflow: hidden;
}

.service-entry-image-video figure{
	display: block;
	height: 100%;
}

.service-entry-image-video figure::before{
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: var(--primary-color);
	opacity: 30%;
	width: 100%;
	height: 100%;
    z-index: 1;
}

.service-entry-image-video figure img{
    width: 100%;
	height: 100%;
	aspect-ratio: 1 / 0.63;
	object-fit: cover;
    transition: all 0.6s ease-in-out;
}

.service-entry-image-video:hover figure img{
    transform: scale(1.06);
}

.service-entry-image-video .video-play-button{
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	z-index: 1;
}

.service-entry-image-video .video-play-button a span{
	width: 55px;
	height: 55px;
}

.service-entry-image-video .video-play-button a span i{
	font-size: 18px;
}

.service-entry-info-item{
    width: calc(37% - 15px);
    background: var(--white-color);
    border-radius: 14px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 10px;
    text-align: center;
    padding: 20px 20px 0;
    overflow: hidden;
}

.service-entry-info-item-content{
    padding: 20px 10px;
}

.service-entry-info-item-image figure{
    display: block;
    max-width: 260px;
    border-radius: 14px 14px 0 0;
    margin: 0 auto -5px;
}

.service-entry-info-item-image figure img{
    width: 100%;
    aspect-ratio: 1 / 0.515;
    object-fit: cover;
    border-radius: 14px 14px 0 0;
}

.service-capability-item-list{
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    margin-top: 40px;
}

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

.service-capability-item .icon-box{
	position: relative;
    height: 50px;
    width: 50px;
    background-color: #a903f6;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

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

.service-capability-item:hover .icon-box::before{
	transform: scale(1);
}

.service-capability-item .icon-box img{
	position: relative;
	width: 100%;
	max-width: 24px;
	z-index: 1;
}

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

.service-work-item-list{
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    margin-top: 40px;
}

.service-work-item{
    position: relative;
    width: calc(33.33% - 20px);
    background: var(--white-color);
    border-radius: 14px;
    text-align: center;
    padding: 30px;
    transition: all 0.5s ease-in-out;
}

.service-work-item:hover{
    transform: translateY(-5px);
}

.service-work-item-image{
    margin-bottom: 30px;
}

.service-work-item-image figure{
    display: block;
    max-width: 140px;
    border-radius: 14px;
    margin: 0 auto;
}

.service-work-item-image img{
    width: 100%;
    aspect-ratio: 1 / 0.858;
    object-fit: cover;
    border-radius: 14px;
}

.service-entry .section-footer-text{
    margin-top: 40px;
}

/************************************/
/***    20. Blog Archive css	  ***/
/************************************/

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

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

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

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

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

/************************************/
/***     21. Blog Single css	  ***/
/************************************/

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

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

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

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

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

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

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

.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: #a903f6;
}

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

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

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

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

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

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

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

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

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

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

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

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

.post-entry ol li,
.post-entry ul li{
    position: relative;
	font-size: 18px;
    font-weight: 400;
    line-height: 1.5em;
    color: var(--text-color);
    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: var(--accent-color) url('../images/icon-blockquote.svg');
	background-repeat: no-repeat;
	background-position: 30px 30px;
    background-size: 45px;
	border-radius: 14px;
    padding: 30px 30px 30px 90px;
    margin-bottom: 30px;
}

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

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

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

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

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

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

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

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

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

.post-social-sharing ul li a{
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
	background: #a903f6;
    color: var(--white-color);
	border-radius: 5px;
    width: 40px;
    height: 40px;
    transition: all 0.4s 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;
}

/************************************/
/***    22. Projects Page css	  ***/
/************************************/

.page-projects{
	padding: 120px 0 90px;
}

.page-projects .project-item{
	height: calc(100% - 30px);
	margin-bottom: 30px;
}

/************************************/
/***    23. Project Single css	  ***/
/************************************/

.page-project-single{
    padding: 120px 0;
}

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

.project-category-item{
    border-bottom: 1px solid var(--divider-color);
    margin-bottom: 20px;
    padding-bottom: 20px;
}

.project-category-item:last-child{
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.project-category-item-header{
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 15px;
    margin-bottom: 10px;
}

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

.project-category-item-header h3{
    font-size: 16px;
}

.project-category-item-content p:last-child{
    margin: 0;
}

.project-entry{
    margin-bottom: 60px;
}

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

.project-entry h2{
	font-size: 48px;
    margin-bottom: 20px;
}

.project-entry h3{
	font-size: 20px;
	line-height: 1.3em;
	margin-bottom: 10px;
}

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

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

.project-entry ul li{
	position: relative;
	width: calc(50% - 10px);
	line-height: 1.5em;
	padding-left: 25px;
}

.project-entry ul li::before{
	content: '\f058';
    position: absolute;
    font-family: 'Font Awesome 7 Free';
    font-size: 18px;
    font-weight: 900;
    color: #a903f6;
    top: 0;
    left: 0;
}

.project-scope-box,
.project-features-box,
.challenge-solution-box{
    margin-top: 60px;
}

.project-scope-image-content{
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    margin-top: 40px;
}

.project-scope-image,
.project-scope-content-box{
    width: calc(50% - 15px);
}

.project-scope-image figure{
    display: block;
    height: 100%;
    border-radius: 14px;
}

.project-scope-image img{
    width: 100%;
    height: 100%;
    aspect-ratio: 1 / 1.127;
    object-fit: cover;
    border-radius: 14px;
}

.project-scope-content-box{
    align-content: center;
}

.project-scope-content-header{
    margin-bottom: 40px;
}

.project-scope-content-header h3{
    font-size: 24px;
    margin-bottom: 10px;
}

.project-scope-item{
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 15px;
    border-bottom: 1px solid var(--divider-color);
    margin-bottom: 30px;
    padding-bottom: 30px;
}

.project-scope-item:last-child{
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.project-scope-item .icon-box{
    position: relative;
    height: 50px;
    width: 50px;
    background-color: #a903f6;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

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

.project-scope-item:hover .icon-box::before{
	transform: scale(1);
}

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

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

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

.project-feature-counter-box{
    background: var(--white-color);
    border-radius: 14px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 20px 60px;
    margin-top: 40px;
    padding: 40px;
}

.project-feature-title{
    width: 140px;
}

.project-feature-counter-list{
    width: calc(100% - 200px);
    display: flex;
    flex-wrap: wrap;
    gap: 30px 3.646vw;
}

.project-feature-counter-item{
    position: relative;
    width: calc(50% - 1.823vw);
    text-align: center;
}

.project-feature-counter-item::before{
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    right: -1.823vw;
    background: var(--divider-color);
    width: 1px;
    height: 100%;
}

.project-feature-counter-item:last-child::before,
.project-feature-counter-item:nth-child(2n + 2)::before{
    display: none;
}

.project-feature-counter-item h2{
	line-height: 1em;
    margin-bottom: 5px;
}

.challenge-solution-item-list{
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    margin-top: 40px;
}

.challenge-solution-item{
    width: calc(50% - 15px);
    background: var(--white-color);
    border-radius: 14px;
    min-height: 370px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 30px;
    padding: 40px;
}

.challenge-solution-item-info{
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.challenge-solution-item-info .icon-box{
	position: relative;
	height: 40px;
	width: 40px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	background-color: #a903f6;
	border-radius: 50%;
}

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

.challenge-solution-item:hover .challenge-solution-item-info .icon-box::before{
    transform: scale(1);
}

.challenge-solution-item-info .icon-box img{
    position: relative;
	width: 100%;
	max-width: 20px;
	z-index: 1;
}

.challenge-solution-item-title{
    width: calc(100% - 55px);
}

.challenge-solution-item-body{
    border-top: 1px solid var(--divider-color);
    padding-top: 30px;
}

.challenge-solution-item-body ul li{
    width: 100%;
}

.project-entry .section-footer-text{
    margin-top: 40px;
}

/************************************/
/***      24. Team Page css 	  ***/
/************************************/

.page-team{
	padding: 120px 0 90px;
}

/************************************/
/***     25. Team Single css	  ***/
/************************************/

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

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

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

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

.team-member-about,
.team-member-skill-expertise,
.team-member-professional{
	margin-bottom: 60px;
}

.team-contact-list-item{
	background-color: var(--white-color);
	border-radius: 14px;
	display: flex;
    flex-wrap: wrap;
}

.team-contact-item{
	width: 50%;
	display: flex;
	flex-wrap: wrap;
	gap: 15px;
	padding: 30px;
	border-bottom: 1px solid var(--divider-color);
    border-right: 1px solid var(--divider-color);
}

.team-contact-item:nth-of-type(2n + 2){
	border-right: none;
}


.team-contact-item:nth-last-child(2):nth-child(odd),
.team-contact-item:last-child{
	border-bottom: none;
}

.team-contact-item .icon-box{
	position: relative;
	height: 50px;
	width: 50px;
	display: flex;
	align-items: center;
	justify-content: center;
	background-color: #a903f6;
	border-radius: 50%;
}

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

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

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

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

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

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

.member-social-list{
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 15px;
	margin-top: 40px;
}

.member-social-list h3{
    font-size: 20px;
}

.member-social-list ul{
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
}

.member-social-list ul li a{
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
	color: var(--primary-color);
    border: 1px solid var(--primary-color);
    border-radius: 50%;
    transition: all 0.3s ease-in-out;
}

.member-social-list ul li:hover a{
    background: #a903f6;
	border-color: #a903f6;
	color: var(--white-color);
}

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

.team-member-skill-image-box{
	display: flex;
	flex-wrap: wrap;
	gap: 30px;
}

.team-member-skill-list{
	width: calc(50% - 15px);
	align-content: center;
}

.team-member-skill-list .skill-data .skill-title, 
.team-member-skill-list .skill-data .skill-no{
	font-size: 18px;
}

.team-member-skill-list .skill-progress{
	height: 14px;
}

.team-member-skill-image{
	width: calc(50% - 15px);
}

.team-member-skill-image figure{
	display: block;
	border-radius: 14px;
	height: 100%;
}

.team-member-skill-image img{
	width: 100%;
	height: 100%;
	aspect-ratio: 1 / 0.62;
	object-fit: cover;
	border-radius: 14px;
}

.team-member-professional-list ul{
	list-style: none;
	display: flex;
	flex-wrap: wrap;
	gap: 15px 20px;
	margin: 0;
	padding: 0;
}

.team-member-professional-list ul li{
	width: calc(50% - 10px);
	position: relative;
    line-height: 1.5em;
    padding-left: 25px;
}

.team-member-professional-list ul li::before{
	content: '\f058';
    position: absolute;
    font-family: 'Font Awesome 7 Free';
    font-size: 18px;
    font-weight: 900;
    color: #a903f6;
    top: 0;
    left: 0;
}

.team-member-professional-content{
	margin-top: 30px;
}

.team-member-professional-content p:last-child{
	margin: 0;
}

.contact-us-form.team-contact-form{
	width: 100%;
	background-color: var(--white-color);
	border-radius: 20px;
}

.contact-us-form.team-contact-form .section-title .section-sub-title{
	background: var(--bg-color);
}

/************************************/
/***   26. Testimonials Page css  ***/
/************************************/

.page-testimonials{
	padding: 120px 0 90px;
}

.page-testimonials .testimonial-item{
	background-color: var(--white-color);
	height: calc(100% - 30px);
	margin-bottom: 30px;
}

.page-testimonials .testimonial-item-header{
	background-color: var(--bg-color);
}

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

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

/************************************/
/***    27. Image Gallery css	  ***/
/************************************/

.page-gallery{
	padding: 120px 0 90px;
}

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

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

.page-gallery-box .photo-gallery figure{
	display: block;
	border-radius: 14px;
}

.page-gallery-box .photo-gallery img{
	width: 100%;
	aspect-ratio: 1 / 0.87;
	object-fit: cover;
	border-radius: 14px;
}

/************************************/
/***    28. Video Gallery css	  ***/
/************************************/


.page-video-gallery{
	padding: 120px 0 90px;
}

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

.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: 14px;
    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: #a903f6;
	color: var(--white-color);
    border-radius: 50%;
    height: 60px;
    width: 60px;
    cursor: none;
	display: flex;
	align-items: center;
	justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.5s ease-in-out;
    z-index: 1;
}

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

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

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

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

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

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

/************************************/
/***   30. Contact Us Page css 	  ***/
/************************************/

.page-contact-us{
	padding: 120px 0 60px;
}

.contact-image-form-box{
	background-color: var(--secondary-color);
	border-radius: 20px;
	display: flex;
	flex-wrap: wrap;
	gap: 20px;
	padding: 20px;
}

.contact-image-box{
    position: relative;
    width: calc(42% - 10px);
}

.contact-us-image{
	height: 100%;
}

.contact-us-image figure{
    position: relative;
    display: block;
    height: 100%;
    border-radius: 14px;
    overflow: hidden;
}

.contact-us-image figure::before{
	content: '';
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	height: 100%;
	width: 100%;
	background: linear-gradient(180deg, rgba(0, 0, 0, 0.00) 50%, rgba(0, 0, 0, 0.80) 100%);
	z-index: 1;
}

.contact-us-image img{
	width: 100%;
	height: 100%;
	aspect-ratio: 1 / 1.36;
	object-fit: cover;
	border-radius: 14px;
}

.contact-info-item-list{
	position: absolute;
	right: 40px;
    bottom: 40px;
    left: 40px;
	z-index: 2;
}

.contact-info-item{
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 15px;
	border-bottom: 1px solid var(--dark-divider-color);
	margin-bottom: 25px;
	padding-bottom: 25px;
}

.contact-info-item:last-child{
	margin-bottom: 0px;
	padding-bottom: 0px;
	border-bottom: none;
}

.contact-info-item .icon-box{
	position: relative;
	height: 50px;
	width: 50px;
	background-color: #a903f6;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	overflow: hidden;
}

.contact-info-item .icon-box::before{
	content: '';
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	background-color: var(--white-color);
	border-radius: 50%;
	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{
	width: 100%;
	max-width: 24px;
	transition: all 0.4s ease-in-out;
	z-index: 1;
}
.contact-info-item:hover .icon-box img{
	filter: brightness(0) invert(0);
}

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

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

.contact-info-item-content h2{
	font-size: 20px;
	color: var(--white-color);
}

.contact-info-item-content h2 a{
	color: inherit;
	transition: all 0.4s ease-in-out;
}

.contact-info-item-content h2 a:hover{
	color: #a903f6;
}

.contact-us-form{
	width: calc(58% - 10px);
	padding: 50px;
}

.page-contact-us .section-title .section-sub-title{
    background: var(--bg-color);
}

.contact-form .form-control{
	font-size: 16px;
	font-weight: 400;
	line-height: 1.5em;
	color: var(--primary-color);
	background: var(--bg-color);
	border: none;
	border-radius: 10px;
	padding: 13px 20px;
	box-shadow: none;
	outline: none;
}

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

.google-map{
    padding: 60px 0 120px;
}

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

.google-map-iframe iframe{
	width: 100%;
	height: 100%;
	filter: grayscale(100%);
	border-radius: 14px;
	transition: all 0.4s ease-in-out;
}

.google-map-iframe iframe:hover{
	filter: grayscale(0);
}

/************************************/
/***     31. 404 Error Page css	  ***/
/************************************/

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

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

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

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

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

/************************************/
/***      32. Responsive css      ***/
/************************************/

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

	

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

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

	.hero-content{
		margin: 0;
	}

	.hero-content-footer{
		margin-top: 30px;
    	padding-top: 30px;
	}

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

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

	.about-us-image img{
		aspect-ratio: 1 / 0.7;
		height: auto;
	}
	
	.about-us-btn{
		margin-top: 30px;
	}

	.why-choose-item-list{
		flex-direction: initial;
		margin: 0 0 30px;
	}

	.why-choose-item{
		width: calc(50% - 15px);
	}

	.why-choose-video-image img,
	.why-choose-video-image figure,
	.why-choose-video-image,
	.why-choose-video-counter-box,
	.why-choose-video-box{
		height: auto;
	}

	.why-choose-counter-item-list{
		padding: 30px;
		gap: 30px;
		max-width: 440px;
	}

	.why-choose-counter-item{
		width: calc(50% - 15px);
	}

	.why-choose-counter-item:before{
		right: -15px;
	}

	.features-content{
		margin-bottom: 30px;
	}

	.features-item-content{
		margin-top: 20px;
	}

	.company-slider-box{
		margin-top: 40px;
		padding-top: 40px;
	}

	.company-supports-logo img{
        max-width: 144px;
        height: 34px;
    }

	.intro-video{
		min-height: 600px;
	}

	.expertise-content{
		height: auto;
		margin-bottom: 30px;
	}

	.expertise-footer{
		gap: 20px 30px;
		margin-top: 30px;
		padding-top: 30px;
	}

	.expertise-image-box{
		height: auto;
		margin: 0;
	}

	.expertise-image,
	.expertise-image figure{
		height: auto;
	}

	.expertise-image img{
		height: auto;
		aspect-ratio: 1 / 0.75;
	}

	.expertise-image-content{
		right: 30px;
		bottom: 30px;
		left: 30px;
	}

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

	.team-item-body{
		right: 30px;
		bottom: 30px;
		left: 30px;
	}

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

	.faq-contact-list{
		margin-top: 30px;
		padding-top: 30px;
	}

	.testimonial-slider .swiper-wrapper .swiper-slide .testimonial-item{
		transform: scale(1);
	}

	.about-footer{
		flex-direction: column-reverse;
		gap: 20px;
		height: auto;
		margin-bottom: 30px;
	}

	.about-footer .section-title{
		margin-bottom: 20px;
	}

	.footer-logo{
		border-top: none;
		padding-top: 0;
	}

	.footer-content-box{
		padding: 30px;
	}

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

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

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

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

	.global-impact-item-header{
		padding: 20px 20px 0;
		gap: 20px;
	}

	.global-impact-item.box-3 .global-impact-counter-box{
		padding: 20px;
	}

	.what-we-image-box{
		max-width: 640px;
		margin: 0 auto 30px;
		height: auto;
	}

	.what-we-footer{
		gap: 20px 30px;
		margin-top: 30px;
        padding-top: 30px;
	}

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

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

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

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

    .page-category-list ul li a::before{
        width: 18px;
        height: 18px;
    }

    .sidebar-cta-box-header .icon-box{
        width: 54px;
        height: 54px;
        margin-top: -27px;
    }

    .sidebar-cta-box-header .icon-box img{
        max-width: 24px;
    }

    .sidebar-cta-content-box{
        padding: 20px 10px;
    }

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

    .service-entry{
        margin-bottom: 40px;
    }

    .service-entry-info-box,
    .service-capability-box,
    .service-work-box{
        margin-top: 40px;
    }

    .service-entry-video-content{
        margin-top: 30px;
    }

    .service-entry-info-item-content{
        padding: 0px;
    }
    
    .service-capability-item-list{
        margin-top: 30px;
    }

    .service-work-item-list{
        gap: 20px;
        margin-top: 30px;
    }

    .service-work-item{
        width: calc(33.33% - 13.33px);
        padding: 20px;
    }

    .service-entry .section-footer-text{
        margin-top: 30px;
    }

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

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

    .project-entry{
        margin-bottom: 40px;
    }

    .project-entry ul li{
        width: 100%;
    }

    .project-scope-box,
    .project-features-box,
    .challenge-solution-box{
        margin-top: 40px;
    }

    .project-scope-image-content{
        margin-top: 30px;
    }

    .project-scope-content-header{
        margin-bottom: 30px;
    }

    .project-scope-item{
        margin-bottom: 20px;
        padding-bottom: 20px;
    }

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

    .project-feature-counter-box{
        gap: 20px;
        margin-top: 30px;
        padding: 30px;
    }

    .project-feature-counter-list{
        width: calc(100% - 160px);
    }

    .challenge-solution-item-list{
        margin-top: 30px;
        gap: 20px;
    }

    .challenge-solution-item{
        width: calc(50% - 10px);
        padding: 25px;
        min-height: auto;
    }

    .project-entry .section-footer-text{
        margin-top: 30px;
    }

	.team-member-about,
	.team-member-skill-expertise,
	.team-member-professional{
		margin-bottom: 40px;
	}

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

	.member-social-list{
		margin-top: 30px;
	}

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

	.team-member-skill-list .skill-progress{
		height: 10px;
	}

	.team-member-professional-list ul li:before{
		font-size: 16px;
	}

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

	.contact-info-item-list{
		right: 30px;
		bottom: 30px;
		left: 30px;
	}

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

	.google-map-iframe{
		height: 450px;
	}
}

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

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

	.btn-default:before{
		right: 15px;
		height: 18px;
		width: 18px;
	}

	header.main-header{
		position: relative;
		top: 0px;
		right: 0px;
		left: 0px;
	}

	header.main-header .header-sticky{
		width: 100%;
		border-radius: 0;
	}

	header.main-header .header-sticky.active{
        width: 100%;
		border-radius: 0;
        top: 0;
		left: 0;
		right: 0;
		border-left: none;
		border-right: none;
		border-top: none;
	}

	

	.responsive-menu,
    .navbar-toggle{
        display: block;
        
    }
.navbar-toggle{
    position: absolute;
    right: 15px;
}
	.slicknav_nav li,
	.slicknav_nav ul{
        display: block;
    }
    .header-cart-items {
        margin-right: 44px;
    }

	.header-btn{
		display: none;
	}

	.light-section .container-fluid{
		padding: 0 15px;
	}

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

	.section-title .section-sub-title{
		padding: 7px 12px 7px 27px;
		margin-bottom: 10px;
	}

	.section-title .section-sub-title::before{
		left: 12px;
	}

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

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

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

	.hero{
		min-height: 750px;
		padding: 60px 0;
	}

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

	.about-us-review-box{
		padding: 20px;
		left: 15px;
		right: 15px;
		bottom: 15px;
	}

	.about-us-review-box-header h2{
		font-size: 26px;
		min-width: 75px;
	}

	.about-us-body-list h3{
		margin-bottom: 20px;
	}

	.about-us-body-list ul li{
		margin-bottom: 10px;
	}

	.about-us-body-list ul li::before{
		font-size: 16px;
	}

	.about-experience-box{
		padding: 20px;
	}

	.about-experience-content h2{
		font-size: 38px;
	}

	.our-services{
		background-size: 100% auto;
		padding: 60px 0;
	}

	

	.service-item-body{
		padding: 20px;
	}

	.service-item-slider .service-pagination{
		margin-top: 30px;
	}

	.our-services .section-footer-text{
		margin-top: 20px;
	}

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

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

	.why-choose-video-btn a{
		height: 80px;
		width: 80px;
	}

	.why-choose-video-btn a i{
		font-size: 30px;
	}

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

	.our-features{
		padding: 60px 0;
	}

	.features-item-list{
		gap: 30px;
	}

	.features-item{
		width: calc(50% - 15px);
	}
	
	.company-slider-title{
		width: 100%;
		text-align: center;
		padding: 0;
		border: none;
	}

	.company-slider-title h3{
		font-size: 18px;
	}

	.company-supports-slider{
		width: 100%;
	}

	.our-projects{
		padding: 60px 0;
	}

	.project-item{
		min-height: 400px;
	}

	.project-item-content{
		padding: 20px;
	}

	.project-item-content ul{
		margin-bottom: 15px;
	}

	.project-item-slider .project-pagination{
		margin-top: 30px;
	}

	.our-projects .section-footer-text{
		margin-top: 20px;
	}

	.intro-video{
		padding: 60px 0;
	}

	.intro-video-circle a img{
		max-width: 110px;
	}

	.our-expertise{
		padding: 60px 0;
	}

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

	.skillbar .skill-data{
		margin-bottom: 15px;
	}

	.about-us-conatct-content h3{
		font-size: 18px;
	}

	.expertise-image-content ul li:before{
		font-size: 16px;
	}

	.our-team{
		padding: 60px 0;
	}

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

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

	.faq-accordion .accordion-item{
		margin-bottom: 20px;
	}

    .faq-accordion .accordion-header .accordion-button{
		padding: 15px 50px 15px 15px;
	}

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

	.faq-accordion .accordion-item .accordion-body{
		padding: 15px;
	}

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

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

	.testimonial-item-header{
		padding: 20px 20px 50px;
	}

	.testimonial-item-rating{
		margin-bottom: 20px;
	}
	
	.testimonial-author-image{
		margin-top: -25px;
	}

	.testimonial-author-image figure img{
		max-width: 50px;
	}

	.testimonial-author-content{
		margin-top: 20px;
	}

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

	.our-blog{
		padding: 60px 0 30px;
	}

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

	.page-header{
        padding: 100px 0;
    }

    .page-header-box h1{
        font-size: 44px;
        margin-bottom: 10px;
    }

	.our-approach{
		background-size: 100% auto;
		padding: 60px 0;
	}

	.approach-item-header{
		padding: 10px;
	}

	.approach-item-body{
		padding: 20px;
		min-height: auto;
	}

	.approach-item-body-list ul li::before{
		font-size: 16px;
	}

	.approach-item-body-list ul li{
		margin-bottom: 10px;
	}

	.global-impact{
		padding: 60px 0;
	}

	.global-impact-item{
		width: calc(50% - 15px);
		gap: 20px;
	}

	.global-impact-body-list{
		margin-bottom: 20px;
	}

	.global-impact-counter-box h2{
		font-size: 38px;
		width: 70px;
	}

	.global-impact-counter-box p{
		width: calc(100% - 90px);
	}

	.what-we-do{
		padding: 60px 0;
	}

	.what-we-client-content h2{
		font-size: 38px;
	}

	.what-we-content-list ul{
		gap: 20px;
	}

	.what-we-content-list ul li{
		width: calc(50% - 10px);
	}

	.what-we-content-list ul li::before{
		font-size: 16px;
	}

	.page-services{
		padding: 60px 0 30px;
	}

	.page-service-single{
        padding: 60px 0;
    }

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

    .page-category-list{
        margin-bottom: 30px;
    }

    .sidebar-cta-image img{
        aspect-ratio: 1 / 0.47;
    }

    .sidebar-cta-content-box h2{
        font-size: 26px;
    }

    .sidebar-cta-content-box ul{
        margin-top: 15px;
    }

    .sidebar-cta-content-box ul li{
        margin-bottom: 10px;
    }

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

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

    .service-entry h2{
        font-size: 38px;
        margin-bottom: 15px;
    }

    .service-work-item-image{
        margin-bottom: 20px;
    }

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

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

	.page-single-post{
        padding: 60px 0;
    }
    
    .post-image{
        margin-bottom: 20px;
    }
    
    .post-entry h2{
        font-size: 38px;
    }
    
    .post-entry p{
        margin-bottom: 15px;
    }
    
    .post-entry ol li,
    .post-entry ul li{
		font-size: 16px;
        margin-bottom: 10px;
    }
    
    .post-entry blockquote{
        background-position: 20px 20px;
        background-size: 40px;
        padding: 20px 20px 20px 70px;
        margin-bottom: 20px;
    }
    
    .post-entry blockquote p{
        font-size: 18px;
    }
    
    .post-tags{
        margin-bottom: 20px;
    }
    
    .post-tags .tag-links a{
        padding: 12px 15px;
    }
    
    .post-social-sharing ul{
        text-align: left;
    }

	.page-projects{
		padding: 60px 0 30px;
	}

	.page-project-single{
        padding: 60px 0;
    }

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

    .project-entry h2{
        font-size: 38px;
        margin-bottom: 15px;
    }

    .project-entry ul{
        gap: 10px;
    }

    .project-entry ul li::before{
        font-size: 16px;
    }

    .project-scope-content-header h3{
        font-size: 22px;
    }

    .project-feature-counter-item h2{
        margin-bottom: 5px;
    }

	.page-team{
		padding: 60px 0 30px;
	}

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

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

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

	.page-testimonials{
		padding: 60px 0 30px;
	}
	
	.page-gallery{
		padding: 60px 0 30px;
	}

	.page-video-gallery{
		padding: 60px 0 30px;
	}

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

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

	.page-contact-us{
		padding: 60px 0 30px;
	}

	.contact-image-box{
		width: 100%;
	}

	.contact-us-form{
		width: 100%;
	}

	.contact-us-image,
	.contact-us-image figure,
	.contact-us-image img{
		height: auto;
	}

	.contact-us-image img{
		aspect-ratio: 1 / 1.05;
	}

	.google-map{
		padding: 30px 0 60px;
	}

	.error-page{
		padding: 60px 0px;
	}
	
	.error-page-image{
		margin-bottom: 20px;
	}
}

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

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

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

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

	.hero-content-body{
		gap: 20px;
	}

	.hero-body-item{
		width: 100%;
	}

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

	.hero-content-footer{
		gap: 25px 20px;
	}

	.hero-content-footer .video-play-button{
		margin-left: 10px;
	}

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

	.about-us-review-box{
		width: auto;
		right: 10px;
		bottom: 10px;
		left: 10px;
		padding: 15px;
	}

	.about-us-review-box-header h2{
        font-size: 22px;
        min-width: 65px;
    }

	.google-rating-star i{
		font-size: 16px;
	}

	.about-us-review-box-body{
		margin-top: 15px;
	}

	.about-us-review-box-body .satisfy-client-content p{
		font-size: 14px;
	}

	.about-us-body-content{
		width: 100%;
	}

	.about-us-body-list h3{
		font-size: 18px;
		margin-bottom: 15px;
	}

	.about-experience-box{
		max-width: 100%;
	}

	.about-experience-content h2{
        font-size: 26px;
    }

	.about-experience-box .satisfy-client-images{
		margin-top: 20px;
		padding-top: 20px;
	}
	
	.service-item-content h2{
		font-size: 18px;
	}

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

	.why-choose-item{
		width: 100%;
		min-height: 210px;
		padding: 20px;
	}

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

	.why-choose-video-btn-box{
		top: 50%;
		left: 50%;
		transform: translate(-50% , -50%);
		padding: 0;
		border-radius: 14px;
	}

	.why-choose-counter-item-list{
		position: initial;
		max-width: 100%;
		padding: 20px;
		margin-top: 30px;
	}

	.why-choose-video-btn a{
		height: 50px;
		width: 50px;
	}

	.why-choose-video-btn a i{
		font-size: 20px;
		margin-left: 3px;
    }

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

	.why-choose-counter-item p{
		font-size: 14px;
	}

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

	.features-item-content p{
		font-size: 14px;
	}

	.company-slider-box{
        margin-top: 30px;
        padding-top: 30px;
    }

	.company-slider-title h3{
		font-size: 16px;
	}

	.project-item-content ul{
        margin-bottom: 10px;
    }

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

	.intro-video{
		align-content: center;
		text-align: center;
        min-height: 500px;
    }

	.intro-video-content{
		justify-content: center;
	}

	.intro-video-circle a img{
		max-width: 90px;
	}

	.expertise-footer{
		gap: 20px;
	}

	.about-us-contact-box{
		gap: 10px;
	}

	.about-us-contact-box .icon-box{
		width: 46px;
		height: 46px;
	}

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

	.about-us-conatct-content h3{
		font-size: 16px;
	}

	.expertise-image img{
        aspect-ratio: 1 / 1.1;
    }

	.expertise-image-content{
        right: 20px;
        bottom: 20px;
        left: 20px;
    }

	.expertise-image-content ul{
		gap: 10px;
	}

	.expertise-image-content ul li{
		width: 100%;
	}

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

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

	.team-social-list{
		margin-top: 20px;
	}

	.faq-content{
		padding: 10px;
	}

	.faq-info-item{
		margin-bottom: 10px;
	}

	.faq-info-content{
		width: 100%;
	}

	.faq-info-content h3{
		font-size: 18px;
	}

	.faq-contact-list{
		gap: 20px;
	}

	.faq-contact-item{
		width: 100%;
	}

	.faq-contact-item-content h3{
		font-size: 18px;
	}

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

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

    .faq-accordion .accordion-item .accordion-body{
        padding: 12px 15px;
    }

	.testimonial-author-content h2{
		font-size: 18px;
	}

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

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

	.about-footer{
		gap: 20px;
	}

	.footer-header .section-title{
		margin-bottom: 20px;
	}

	.footer-content-box{
		padding: 20px;
	}

	.footer-newsletter-box-title,
	.footer-newsletter-form{
		width: 100%;
	}

	.footer-links-box{
		justify-content: space-between;	
		gap: 30px;
	}

	.footer-links{
		width: auto;
	}

	.footer-links::before{
		display: none;
	}

	.footer-links h2{
		font-size: 18px;
		margin-bottom: 15px;
	}

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

	.footer-contact-links{
		width: 100%;
	}

	.footer-copyright-text{
		padding: 15px 0;
	}

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

	.approach-item-title h2{
		font-size: 18px;
	}

	.approach-item-body{
		gap: 20px;
	}

	.approach-item-body-list{
		padding-top: 20px;
	}

	.global-impact-item{
		width: 100%;
	}

	.global-impact-body{
		padding: 0 10px 10px;
	}

	.global-impact-counter-box h2{
		font-size: 26px;
		width: 50px;
	}

	.global-impact-counter-box p{
        width: calc(100% - 70px);
    }

	.global-impact-content{
		padding: 10px 10px 0;
	}

	.global-impact-content h3{
		font-size: 18px;
	}

	.global-impact-item-header{
		padding: 10px 10px 0;
	}

	.global-impact-item.box-3 .global-impact-counter-box{
		padding: 20px 10px 10px;
	}

	.what-we-image-box{
		gap: 20px;
	}

	.what-we-image-box-1{
		width: calc(40% - 10px);
		gap: 20px;
	}

	.what-we-client-served-box{
		padding: 20px 15px;
	}

	.what-we-client-served-box .icon-box{
		margin-bottom: 15px;
	}

	.what-we-client-content h2{
		font-size: 26px;
	}

	.what-we-client-content p{
		font-size: 14px;
	}

	.what-we-image-box-2{
		width: calc(60% - 10px);
		height: auto;
	}

	.what-we-content-list ul{
		gap: 15px;
	}

	.what-we-content-list ul li{
		width: 100%;
	}

	.what-we-footer{
		gap: 20px;
	}

	.page-category-list .page-category-list-title{
        font-size: 18px;
    }

    .sidebar-cta-image img{
        aspect-ratio: 1 / 0.61;
    }

    .sidebar-cta-content-box h2{
        font-size: 22px;
    }

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

    .page-single-image img{
        aspect-ratio: 1 / 0.69;
    }

    .service-entry h2{
        font-size: 26px;
    }

    .service-entry h3{
        font-size: 18px;
    }

    .service-entry-image-video,
    .service-entry-info-item{
        width: 100%;
    }

    .service-capability-item-list{
        gap: 20px;
    }

    .service-capability-item{
        width: 100%;
    }

    .service-work-item{
        width: 100%;
    }

	.post-single-meta ol li,
	.post-single-meta ol li i{
		font-size: 16px;
	}

	.post-image img{
		aspect-ratio: 1 / 0.7;
	}

	.post-entry blockquote{
		padding: 65px 20px 20px 20px;
	}

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

	.post-entry h2{
		font-size: 26px;
	}
	
	.tag-links{
		font-size: 18px;
	}

	.project-entry h2{
        font-size: 26px;
    }

    .project-entry h3{
        font-size: 18px;
    }

    .project-scope-image,
    .project-scope-content-box{
        width: 100%;
    }

    .project-scope-image figure,
    .project-scope-image img{
        height: auto;
    }

	.project-scope-image img{
		aspect-ratio: 1 / 1;
	}

    .project-scope-content-header h3{
        font-size: 20px;
    }

    .project-feature-counter-box{
        padding: 20px;
    }

    .project-feature-title,
    .project-feature-counter-list{
        width: 100%;
    }

    .project-feature-counter-list{
        gap: 20px;
    }

    .project-feature-counter-item{
        width: calc(50% - 10px);
    }

    .project-feature-counter-item::before{
        right: -10px;
    }

	.project-feature-counter-item{
		font-size: 14px;
	}

    .challenge-solution-item{
        width: 100%;
        gap: 20px;
    }

    .challenge-solution-item-info{
        margin-bottom: 15px;
    }

    .challenge-solution-item-body{
        padding-top: 20px;
    }

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

	.team-contact-item{
        width: 100%;
        border-bottom: 1px solid var(--divider-color);
        border-right: none;
    }
    
    .team-contact-item:nth-last-child(-n + 2),
	.team-contact-item:nth-last-child(2):nth-child(odd){
        border-bottom: 1px solid var(--divider-color);
        padding-bottom: 20px;
    }

    .team-contact-item:last-child{
        border-bottom: none;
    }
	
	.team-contact-item-content h3,
	.member-social-list h3{
		font-size: 18px;
	}

	.member-social-list h3{
		font-size: 18px;
	}

	.team-member-skill-list,
	.team-member-skill-image{
		width: 100%;
	}

	.team-member-skill-image figure,
	.team-member-skill-image img{
		height: auto;
	}

	.team-member-professional-list ul{
		gap: 10px;
	}

	.team-member-professional-list ul li{
		width: 100%;
	}

	.contact-us-form.team-contact-form{
		padding: 20px;
	}

	.contact-image-form-box{
		gap: 30px;
		padding: 15px;
	}

	.contact-us-image img{
        aspect-ratio: 1 / 1.2;
    }

	.contact-info-item-list{
        right: 20px;
        bottom: 20px;
        left: 20px;
    }

	.contact-info-item{
		margin-bottom: 15px;
		padding-bottom: 15px;
	}

	.contact-info-item-content p{
		margin-bottom: 5px;
	}

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

	.contact-us-form{
		padding: 0;
	}

	.google-map-iframe{
		height: 350px;
	}
}

/************************************/
/***   33. Home - Version 2 css   ***/
/************************************/

.hero-prime{
	position: relative;
	background-image: url('../images/hero-bg-image-prime.jpg');
	background-position: center center;
	background-size: cover;
	height: 100vh;
    min-height: 970px;
    align-content: end;
    padding: 235px 0 120px;
    overflow: hidden;
}

.hero-prime::before{
	content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, transparent 50%, rgba(0, 0, 0, 0.90) 100%);
    width: 100%;
    height: 100%;
    z-index: 1;
}

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

.hero-content-footer-prime{
	display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 20px 30px;
}

.video-play-button-prime a{
	position: relative;
	display: inline-flex;
	align-items: center;
	gap: 15px;
    cursor: none;
}

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

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

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

.hero-info-box-prime{
	max-width: 415px;
	border: 1px solid var(--dark-divider-color);
    background: var(--divider-color);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 14px;
    padding: 10px;
    margin-left: auto;
}

.google-rating-box-prime{
	display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 15px;
	padding: 20px;
	margin-bottom: 10px;
}

.google-rating-logo-prime img{
	width: 100%;
    max-width: 50px;
}

.google-rating-info-prime{
	width: calc(100% - 65px);
}

.google-rating-info-header-prime{
	display: flex;
    align-items: center;
}

.google-rating-info-header-prime h2{
    font-size: 24px;
	color: var(--white-color);
    min-width: 67px;
    line-height: 1em;
}

.google-rating-star-prime{
	line-height: normal;
}

.google-rating-star-prime i{
	font-size: 18px;
    color: var(--white-color);	
}

.google-rating-info-content-prime{
	margin-top: 5px;
}

.google-rating-info-content-prime p{
	color: var(--white-color);
}

.google-rating-info-content-prime p:last-child{
	margin: 0;
}

.hero-info-image-prime figure{
	display: block;
    border-radius: 14px;
}

.hero-info-image-prime figure img{
    width: 100%;
	aspect-ratio: 1 / 0.66;
    object-fit: cover;
    border-radius: 14px;
}

.about-us-prime{
	background-image: url('../images/about-bg-image-prime.png');
    background-repeat: no-repeat;
    background-position: bottom -30px right -40px;
    background-size: auto;
    padding: 120px 0;
}

.about-us-prime .section-row .section-title.section-title-center{
    max-width: 850px;
}

.about-us-prime .section-title h2 .about-title-images-prime{
	display: inline-block;
}

.about-us-prime .section-title h2 .about-title-images-prime img{
	width: 100%;
	max-width: 40px;
	border-radius: 50%;
	border: 1px solid var(--bg-color);
	margin-left: -14px;
}

.about-us-prime .section-title h2 .about-title-images-prime img:first-child{
	margin: 0;
}

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

.about-us-item-prime{
    width: calc(35% - 33.33px);
    align-content: center;
}

.about-us-item-content-prime{
    border-bottom: 1px solid var(--divider-color);
    margin-bottom: 50px;
    padding-bottom: 50px;
}

.about-us-item-content-prime p{
    margin-bottom: 30px;
}

.about-us-item-content-prime ul{
    list-style: none;
    margin: 0;
    padding: 0;
}

.about-us-item-content-prime ul li{
    position: relative;
    line-height: 1.5em;
    padding-left: 25px;
    margin-bottom: 15px;
}

.about-us-item-content-prime ul li:last-child{
	margin-bottom: 0;
}

.about-us-item-content-prime ul li:before{
    content: '\f058';
    position: absolute;
    font-family: 'Font Awesome 7 Free';
    top: 0;
    left: 0;
    font-size: 18px;
    font-weight: 900;
    color: #a903f6;
}

.about-us-counter-box-prime h2{
    display: inline-block;
    background: url('../images/about-counter-bg-image-prime.jpg');
    background-size: cover;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    font-size: 120px;
    font-weight: 600;
    line-height: 1em;
}

.about-us-counter-box-prime h3{
    font-size: 20px;
    margin-top: 5px;
}

.about-us-image-box-prime{
    position: relative;
    width: calc(32% - 33.33px);
}

.about-us-image-prime{
    height: 100%;
}

.about-us-image-prime figure{
	display: block;
    height: 100%;
    border-radius: 14px;
}

.about-us-image-prime figure img{
    width: 100%;
    height: 100%;
    border-radius: 14px;
    object-fit: cover;
    aspect-ratio: 1 / 1.29;
}

.watch-video-circle-prime{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50% ,-50%);
}

.watch-video-circle-prime a{
    display: block;
    background-color: var(--divider-color);
    border-radius: 50%;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    cursor: none;
}

.watch-video-circle-prime a img{
	width: 100%;
	max-width: 120px;
	aspect-ratio: 1 / 1;
	border-radius: 50%;
    animation: infiniterotate 20s linear infinite;
}

.about-us-info-box-prime{
    width: calc(33% - 33.33px);
    align-content: center;
}

.about-us-info-item-prime{
    border-bottom: 1px solid var(--divider-color);
    padding-bottom: 30px;
    margin-bottom: 30px;
}

.about-us-info-item-prime:last-child{
    border: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.about-us-info-item-prime .icon-box{
    position: relative;
    height: 50px;
    width: 50px;
    background-color: #a903f6;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
    overflow: hidden;
}

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

.about-us-info-item-prime:hover .icon-box::before{
	transform: scale(1);
}

.about-us-info-item-prime .icon-box img{
	position: relative;
	width: 100%;
	max-width: 24px;
	z-index: 1;
}

.about-us-info-item-content-prime h3{
    font-size: 20px;
}

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

.about-us-btn-prime{
    margin-top: 40px;
}

.our-services-prime{
	background-image: url('../images/service-bg-image-prime.png');
    background-position: center bottom;
    background-repeat: no-repeat;
    background-size: auto;
    padding: 120px 0;
}

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

.service-item-prime:hover{
	transform: translateY(-5px);
}

.service-item-content-prime ul{
	display: flex;
	flex-wrap: wrap;
	gap: 15px;
	list-style: none;
	margin: 0 0 20px;
	padding: 0;
}

.service-item-content-prime ul li a{
	display: inline-block;
	backdrop-filter: blur(30px);
    -webkit-backdrop-filter: blur(30px);
    color: var(--white-color);
    border-radius: 5px;
    line-height: normal;
    padding: 6px 15px;
    transition: all 0.4s ease-in-out;
}

.service-item-content-prime ul li a:hover{
	background-color: #a903f6;
}

.service-item-content-prime h2{
	font-size: 20px;
	color: var(--white-color);
}

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

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

.service-item-btn-prime{
	border-top: 1px solid var(--dark-divider-color);
	padding-top: 30px;
}

.service-item-btn-prime .readmore-btn{
	color: var(--white-color);
}

.service-item-btn-prime .readmore-btn::before{
	background-image: url('../images/arrow-white.svg');
}

.service-item-no-prime{
	position: absolute;
	bottom: -35px;
	right: -5px;
	transition: all 0.5s ease-in-out;
}

.service-item-prime:hover .service-item-no-prime{
	transform: translateY(-6px);
}

.service-item-no-prime h2{
	font-size: 120px;
	line-height: 1em;
	color: var(--dark-divider-color);
	transition: all 0.5s ease-in-out;
}

.service-item-prime:hover .service-item-no-prime h2{
	color: #a903f6;
}

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

.why-choose-us-items-list-prime{
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    margin-bottom: 30px;
}

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

.why-choose-item-content-prime h3{
    font-size: 40px;
	line-height: 1.2em;
}

.why-choose-item-content-prime p{
    margin: 5px 0 0;
}

.why-choose-us-item-prime .icon-box{
    position: relative;
    height: 50px;
    width: 50px;
    background-color: #a903f6;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.why-choose-us-item-prime .icon-box::before{
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0;
    left: 0;
    background: var(--primary-color);
    border-radius: 50%;
    width: 100%;
    height: 100%;
    transform: scale(0);
    transition: all 0.4s ease-in-out;
    z-index: 0;
}

.why-choose-us-item-prime:hover .icon-box::before{
	transform: scale(1);
}

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

.why-choose-item-bg-icon-prime{
    position: absolute;
    bottom: -15px;
    right: -15px;
}

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

.why-choose-review-item-prime{
	background: var(--accent-color) url('../images/icon-blockquote-transperant.svg') no-repeat;
	background-position: bottom right;
	background-size: 100px auto;
    border-radius: 14px;
	margin-bottom: 30px;
    padding: 30px;
}

.why-choose-review-item-prime:last-child{
	margin-bottom: 0;
}

.why-choose-review-item-prime p{
    font-size: 20px;
    font-weight: 500;
    color: var(--white-color);
    margin: 0;
}

.why-choose-review-item-prime h3{
    font-size: 20px;
    color: var(--white-color);
    border-top: 1px solid var(--dark-divider-color);
    margin-top: 20px;
    padding-top: 20px;
}

.why-choose-us-image-prime{
    height: 100%;
}

.why-choose-us-image-prime figure{
    display: block;
    height: 100%;
    border-radius: 14px;
}

.why-choose-us-image-prime img{
    height: 100%;
    width: 100%;
    aspect-ratio: 1 / 0.81;
    object-fit: cover;
    border-radius: 14px;
}

.why-choose-us-footer-prime{
    margin-top: 60px;
}

.why-choose-us-footer-list-prime ul{
    display: flex;
    flex-wrap: wrap;
    gap: 30px 20px;
    justify-content: center;
    list-style: none;
    padding: 0;
    margin: 0;
}

.why-choose-us-footer-list-prime ul li{
    position: relative;
    font-weight: 500;
    background-color: var(--secondary-color);
    color: var(--primary-color);
    line-height: 1.25em;
    border-radius: 100px;
    padding: 10px 16px 10px 32px;
}

.why-choose-us-footer-list-prime ul li::before{
    content: '';
    position: absolute;
    top: 50%;
    left: 16px;
    transform: translateY(-50%);
    background-color: #a903f6;
    height: 6px;
    width: 6px;
}

.our-benefits-prime{
    padding: 120px 0;
}

.benefits-item-list-prime{
	background-color: var(--bg-color);
    border-radius: 14px;
	margin-bottom: 40px;
    padding: 30px;
}

.benefits-item-prime{
	display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 30px;
}

.benefits-item-prime:last-child{
	margin-bottom: 0;
}

.benefits-item-prime .icon-box{
    position: relative;
    height: 50px;
    width: 50px;
    background-color: #a903f6;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

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

.benefits-item-prime:hover .icon-box::before{
	transform: scale(1);
}

.benefits-item-prime .icon-box img{
	position: relative;
	width: 100%;
	max-width: 24px;
	z-index: 1;
}

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

.benefits-item-content-prime h3{
    font-size: 20px;
}

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

.our-benefits-skills-list-prime .skills-progress-bar{
    margin-bottom: 30px;
}

.our-benefits-skills-list-prime .skills-progress-bar:last-child{
    margin-bottom: 0;
}

.our-benefits-skills-list-prime .skill-progress{
    background: var(--bg-color);
}

.our-benefits-image-box-prime{
    position: relative;
    background: url('../images/benefits-bg-image-prime.png') no-repeat;
    background-position: top center;
    background-size: 100% auto;
}

.benefits-image-prime figure{
    display: block;
    border-radius: 14px;
    max-width: 400px;
    margin: 0 auto;
}

.benefits-image-prime figure::before{
    content: '';
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.00) 0%, var(--white-color) 88.75%);
    width: 100%;
    height: 80px;
    z-index: 1;
}

.benefits-image-prime figure img{
    width: 100%;
    aspect-ratio: 1 / 1.29;
    object-fit: cover;
    border-radius: 14px;
}

.benefits-review-box-prime{
    position: absolute;
    right: 0;
    bottom: 80px;
    background-color: var(--white-color);
    padding: 30px;
    border-radius: 14px;
    max-width: 345px;
    box-shadow: 0 0 20px 0 rgba(13, 13, 13, 0.06);
    animation: reviewboxmove 4s infinite linear alternate;
    z-index: 1;
}

@keyframes reviewboxmove{
	50%{
		transform: translateX(-25px);
	}
}

.benefits-review-header-prime{
    display: flex;
	align-items: center;
    gap: 10px;
    margin-bottom: 15px;
}

.benefits-review-header-prime h2{
    font-size: 30px;
    line-height: 1em;
	min-width: 78px;
}

.benefits-review-star-prime i{
    color: #a903f6;
}

.benefits-review-body-prime{
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 10px;
}

.benefits-review-body-prime .satisfy-client-content-prime{
    max-width: 150px;
}

.satisfy-client-content-prime h3{
    font-size: 16px;
}

.company-slider-box-prime{
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 15px 2.083vw;
    border-top: 1px solid var(--divider-color);
    padding-top: 60px;
    margin-top: 80px;
}

.company-slider-title-prime{
	width: calc(31% - 1.042vw);
	border-right: 1px solid var(--divider-color);
    padding-right: 15px;
}

.company-slider-title-prime h3{
    font-size: 20px;
}

.company-supports-slider-prime{
	width: calc(69% - 1.042vw);
}

.company-supports-logo-prime{
	text-align: center;
}

.company-supports-logo-prime img{
	width: 100%;
	max-width: 164px;
	height: 40px;
}

.our-impact-prime{
    background: url('../images/our-impact-bg-image-prime.png') no-repeat;
    background-position: bottom -30px left;
    background-size: auto;
    padding: 120px 0;
}

.impact-item-prime{
	display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 30px;
    min-height: 365px;
    background-color: var(--secondary-color);
    border-radius: 14px;
    height: calc(100% - 30px);
    margin-bottom: 30px;
    padding: 40px;
	transition: all 0.4s ease-in-out;
}

.impact-item-prime:hover{
	transform: translateY(-5px);
}

.impact-item-header-prime ul{
    padding-left: 20px;
    margin: 0;
    list-style: square;
}

.impact-item-header-prime ul li{
	font-size: 20px;
    line-height: 1.4em;
    font-weight: 500;
	color: var(--primary-color);
	margin-bottom: 10px;
}

.impact-item-header-prime ul li:last-child{
	margin-bottom: 0;
}

.impact-item-header-prime ul li::marker{
	color: #a903f6;
}

.impact-item-body-prime .icon-box{
    position: relative;
    width: 50px;
    height: 50px;
    background-color: #a903f6;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

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

.impact-item-prime:hover .icon-box::before{
	transform: scale(1);
}

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

.impact-item-content-prime{
    border-top: 1px solid var(--divider-color);
    padding-top: 30px;
    margin-top: 30px;
}

.impact-item-content-prime h2{
    font-size: 48px;
    line-height: 1em;
}

.impact-item-content-prime p{
    margin: 10px 0 0;
}

.intro-video-box-prime{
	position: relative;
}

.intro-video-box-prime .container-fluid{
	padding: 0;
}

.intro-video-image-prime{
	position: relative;
	overflow: hidden;
}

.intro-video-image-prime figure{
	display: block;
}

.intro-video-image-prime figure:before{
	content: '';
	position: absolute;
	top: auto;
	right: 0;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: var(--primary-color);
    opacity: 20%;
	z-index: 1;
}

.intro-video-image-prime img{
	width: 100%;
	aspect-ratio: 1 / 0.443;
	object-fit: cover;
	transition: all 1s ease-in-out;
}

.intro-video-prime:hover .intro-video-image-prime img{
	transform: scale(1.03);
}

.intro-video-prime .video-play-button-prime{
	content: '';
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	z-index: 1;
}

.intro-video-prime .video-play-button-prime a span{
	width: 100px;
	height: 100px;
    font-size: 20px;
	font-weight: 500;
	color: var(--white-color);
	border: 1px solid var(--dark-divider-color);
	background: transparent;
    backdrop-filter: blur(3px);
    -webkit-backdrop-filter: blur(3px);
    transition: all 0.4s ease-in-out;
}

.intro-video-prime .video-play-button-prime a span:hover{
	background: #a903f6;
}

.cta-box-prime{
    background: url('../images/dark-section-bg-image.png'), linear-gradient(180deg, var(--primary-color) 62%, var(--bg-color) 38%);
    background-repeat: no-repeat;
    background-position: top center;
    background-size: cover;
    padding: 120px 0 60px;
}

.cta-title-box-prime{
	max-width: 1100px;
	margin: 0 auto;
}

.cta-title-box-list-prime{
    margin-top: 60px;
}

.cta-title-box-list-prime ul{
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 15px 30px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.cta-title-box-list-prime ul li{
    position: relative;
    color: var(--white-color);
    line-height: 1.5em;
    padding-left: 25px;
}

.cta-title-box-list-prime ul li:before{
    content: '\f058';
    position: absolute;
    font-family: 'Font Awesome 7 Free';
    font-size: 18px;
    font-weight: 900;
    color: #a903f6;
    top: 0;
    left: 0;
}

.get-in-touch-box-prime{
    height: 100%;
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    background-color: var(--secondary-color);
    border-radius: 14px;
    padding: 50px 50px 50px 0;
}

.get-in-touch-image-prime{
    width: calc(41% - 15px);
    align-content: end;
}

.get-in-touch-image-prime figure{
    display: block;
    margin-bottom: -50px;
    border-radius: 14px 14px 0 0;
}

.get-in-touch-image-prime figure img{
    width: 100%;
    aspect-ratio: 1 / 1.63;
    border-radius: 14px 14px 0 0;
    object-fit: cover;
}

.get-in-touch-form-prime{
    width: calc(59% - 15px);
    align-content: center;
}

.get-in-touch-form-prime .section-title h2{
    color: var(--primary-color);
}

.cta-location-box-prime{
	height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 30px;
    background-color: #a903f6;
    border-radius: 14px;
    padding: 40px 40px 0;
}

.cta-location-box-content-prime h3{
    font-size: 20px;
    color: var(--white-color);
    border-bottom: 1px solid var(--dark-divider-color);
    padding-bottom: 20px;
    margin-bottom: 20px;
}

.cta-location-box-content-prime p{
    color: var(--white-color);
}

.cta-location-box-content-prime p:last-child{
    margin-bottom: 0;
}

.cta-location-box-btn-prime{
    margin-top: 30px;
}

.cta-location-box-btn-prime .readmore-btn{
    color: var(--white-color);
}

.cta-location-box-btn-prime .readmore-btn::before{
    background-image: url('../images/arrow-white.svg');
}

.cta-location-box-image-prime{
    margin: 0 -40px;
}
    
.cta-location-box-image-prime figure{
    display: block;
    border-radius: 14px 14px 0 0;
}

.cta-location-box-image-prime figure img{
    width: 100%;
    aspect-ratio: 1 / 0.48;
    border-radius: 14px 14px 0 0;
    object-fit: cover;
}

.our-faqs-prime{
    background-color: var(--bg-color);
	padding: 60px 0 120px;
}

.faq-accordion-prime .accordion-item{
	background: var(--secondary-color);
	border-radius: 14px;
	margin-bottom: 20px;
    padding: 0;
	overflow: hidden;
}

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

.faq-accordion-prime .accordion-header .accordion-button{
	font-size: 18px;
	font-weight: 500;
	line-height: 1.333em;
    background-color: transparent;
    color: var(--primary-color);
    padding: 25px 60px 25px 25px;
	transition: all 0.3s ease-in-out;
}

.faq-accordion-prime .accordion-item .accordion-button::after, 
.faq-accordion-prime .accordion-item .accordion-button.collapsed::after{
    content: '\f0fe';
    font-family: 'FontAwesome';
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 34px;
	line-height: normal;
    color: #a903f6;
    transition: all 0.3s ease-in-out;
}

.faq-accordion-prime .accordion-button:not(.collapsed)::after{
    content: '\f146';
	color: var(--primary-color);
}

.faq-accordion-prime .accordion-item .accordion-body{
	border-top: 1px solid var(--divider-color);
    padding: 25px;
}

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

.faq-image-box-prime{
	position: relative;
	display: flex;
	flex-wrap: wrap;
	align-items: end;
	margin-left: 15px;
}

.faq-image-box-1-prime{
	position: relative;
	width: 68%;
	z-index: 2;
}

.faq-image-prime figure{
	display: block;
	border-radius: 14px;
}

.faq-image-prime figure img{
	width: 100%;
	object-fit: cover;
	border-radius: 14px;
}

.faq-image-box-1-prime .faq-image-prime figure{
	border: 6px solid var(--bg-color);
	border-left: none;
	border-bottom: none;
	border-radius: 14px 18px 14px 14px;
}

.faq-image-box-1-prime .faq-image-prime figure img{
	aspect-ratio: 1 /0.815;
}

.faq-image-box-2-prime{
	width: 32%;
}

.faq-image-box-2-prime .faq-image-prime figure{
	margin-left: -255px;
}

.faq-image-box-2-prime .faq-image-prime figure img{
	aspect-ratio: 1 / 1.24;
}

.faq-counter-box-prime{
	background: #a903f6;
	border-radius: 14px;
	text-align: center;
	align-content: center;
	padding: 35px 20px;
	margin: 20px 0 0 15px;
}

.faq-counter-box-prime h2{
	font-size: 40px;
	line-height: 1em;
	color: var(--white-color);
}

.faq-counter-box-prime p{
	font-weight: 500;
	color: var(--white-color);
	margin: 10px 0 0;
}

.our-testimonials-prime{
    background-image: url('../images/testimonial-bg-prime.jpg');
    background-repeat: no-repeat;
    background-position: center center;
    background-size: auto;
    padding: 120px 0;
}

.testimonials-image-box-prime{
    margin-right: 15px;
}

.testimonials-image-box-prime{
	position: relative;
    height: 100%;
}

.testimonials-image-prime{
	height: 100%;
}

.testimonials-image-prime figure{
	display: block;
    height: 100%;
    border-radius: 14px;
}

.testimonials-image-prime figure img{
    width: 100%;
    height: 100%;
    aspect-ratio: 1 / 1.10;
    object-fit: cover;
    border-radius: 14px;
}

.testimonials-cta-box-prime{
    position: absolute;
    right: 30px;
    bottom: 30px;
    background-color: var(--divider-color);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 14px;
    max-width: 225px;
    padding: 20px;
	animation: reviewboxmove 4s infinite linear alternate;
    z-index: 2;
}

.testimonials-cta-box-prime h2{
    font-size: 18px;
    color: var(--white-color);
    margin-bottom: 25px;
}

.testimonials-cta-box-prime h2 span{
	font-weight: 600;
}

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

.testimonial-item-prime{
	min-height: 440px;
	background-color: var(--bg-color);
	border-radius: 14px;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	gap: 30px;
	padding: 40px;
}

.testimonial-item-rating-prime i{
	color: #a903f6;
}

.testimonial-item-content-prime p{
	font-family: var(--accent-font);
	font-size: 20px;
	font-weight: 500;
	line-height: 1.4em;
	color: var(--primary-color);
}

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

.testimonial-author-content-prime{
	border-top: 1px solid var(--divider-color);
	padding-top: 30px;
	margin-top: 30px;
}

.testimonial-author-content-prime h2{
	font-size: 20px;
}

.testimonial-author-content-prime p{
	margin: 5px 0 0;
}

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

.main-footer-prime{
    padding: 100px 0 0;
}

.footer-scrolling-ticker-prime{
    position: relative;
    border-bottom: 1px solid var(--dark-divider-color);
    padding-bottom: 60px;
    margin-bottom: 60px;
}

.footer-scrolling-box-prime{
    --gap: 20px;
    display: flex;
    overflow: hidden;
    user-select: none;
    align-items: center;
    gap: var(--gap);
}

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

@keyframes scroll{
	from{
		transform: translateX(0);
	}
    to{
		transform: translateX(calc(-100% - var(--gap)));
	}
}

.footer-scrolling-box-prime .scrolling-content-prime span{
    font-family: var(--accent-font);
	display: inline-flex;
	align-items: center;
	font-size: 100px;
	line-height: 1.15em;
	font-weight: 600;
    text-transform: uppercase;
	color: var(--dark-divider-color);
}

.contact-us-circle-prime{
    position: absolute;
    left: 50%;
    top: 0;
    transform: translate(-50% , -15%);
}

.contact-us-circle-prime a{
    display: inline-block;
    border-radius: 50%;
}

.contact-us-circle-prime a img{
    width: 100%;
    max-width: 160px;
    aspect-ratio: 1 / 1;
    border-radius: 50%;
    animation: infiniterotate 20s infinite linear;
}

.contact-us-circle-prime a:hover img{
    animation-play-state: paused;
}

.footer-logo-prime img{
    width: 100%;
    max-width: 153px;
}

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

.about-footer-content-prime p{
    color: var(--white-color);
}

.about-footer-content-prime p:last-child{
    margin: 0;
}

.working-hour-box-prime{
    background-color: var(--dark-divider-color);
    backdrop-filter: blur(50px);
    -webkit-backdrop-filter: blur(50px);
    border-radius: 14px;
    padding: 30px;
    margin-top: 30px;
}

.working-hour-box-prime h2{
    font-size: 20px;
    color: var(--white-color);
}

.working-hour-box-prime ul{
    list-style: none;
    border-top: 1px solid var(--dark-divider-color);
    padding: 20px 0 0;
    margin: 20px 0 0;
}

.working-hour-box-prime ul li{
    display: flex;
    justify-content: space-between;
    gap: 5px;
    text-transform: capitalize;
    color: var(--white-color);
    line-height: 1.5em;
    margin-bottom: 15px;
}

.working-hour-box-prime ul li:last-child{
    margin-bottom: 0;
}

.working-hour-box-prime ul li span{
    font-weight: 500;
}

.footer-links-box-prime{
    display: flex;
    flex-wrap: wrap;
    gap: 30px 7.292vw;
    margin-left: 80px;
}

.footer-links-prime{
    position: relative;
   width: calc(42% - 3.646vw);
}

.footer-links-prime::before{
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    right: -3.646vw;
    background: var(--dark-divider-color);
    width: 1px;
    height: 100%;
}

.footer-links-prime:last-child:before,
.footer-newsletter-form-box-prime::before{
	display: none;
}

.footer-links-prime h2{
    font-size: 20px;
    color: var(--white-color);
    margin-bottom: 30px;
}

.footer-links-prime ul{
    list-style: square;
    margin: 0;
    padding: 0 0 0 20px;
}

.footer-links-prime ul li{
    color: var(--white-color);
    text-transform: capitalize;
    line-height: 1.5em;
    margin-bottom: 15px;
}

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

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

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

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

.footer-newsletter-form-box-prime{
    width: calc(58% - 3.646vw);
}

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

.footer-newsletter-form-prime .form-group{
	display: flex;
	flex-wrap: wrap;
	background: var(--dark-divider-color);
	backdrop-filter: blur(50px);
	-webkit-backdrop-filter: blur(50px);
	border-radius: 5px;
	padding: 5px;
    margin-top: 30px;
}

.footer-newsletter-form-prime .form-group .form-control{
	width: calc(100% - 40px);
	font-size: 16px;
	font-weight: 400;
	line-height: 1.4em;
	color: var(--white-color);
	background: transparent;
	border: none;
	border-radius: 0;
	outline: none;
	box-shadow: none;
	padding: 5px 20px;
}

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

.footer-newsletter-form-prime .form-group .newsletter-btn{
	width: 40px;
	height: 40px;
	background: #a903f6;
	border-radius: 5px;
	display: flex;
	justify-content: center;
	align-items: center;
	border: none;
	box-shadow: none;
	outline: none;
	transition: all 0.3s ease-in-out;
}

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

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

.footer-newsletter-form-prime .form-group .newsletter-btn:hover i{
	color: #a903f6;
}

.footer-social-links-prime{
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    align-items: center;
    justify-content: space-between;
    border-top: 1px solid var(--dark-divider-color);
    padding-top: 30px;
}

.footer-social-links-prime h2{
    font-size: 20px;
    color: var(--white-color);
}

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

.footer-social-links-prime ul li a{
	width: 40px;
	height: 40px;
	border: 1px solid var(--dark-divider-color);
	border-radius: 50%;
	color: var(--white-color);
	display: flex;
	align-items: center;
	justify-content: center;
	transition: all 0.4s ease-in-out;
}

.footer-social-links-prime ul li a:hover{
	background-color: #a903f6;
}

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

.footer-copyright-prime{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 15px 30px;
    border-top: 1px solid var(--dark-divider-color);
    padding: 60px 0;
    margin-top: 60px;
}

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

.footer-menu-prime ul{
    display: flex;
    flex-wrap: wrap;
    gap: 10px 40px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.footer-menu-prime ul li{
    position: relative;
    line-height: 1.5em;
    color: var(--white-color);
}

.footer-menu-prime ul li::before{
    content: '';
    position: absolute;
    top: 50%;
    right: -22px;
    background: #a903f6;
    transform: translateY(-50%);
    width: 5px;
    height: 5px;
}

.footer-menu-prime ul li:last-child::before{
	display: none;
}

.footer-menu-prime ul li a{
    color: inherit;
    transition: all 0.4s ease-in-out;
}

.footer-menu-prime ul li a:hover{
	color: #a903f6;
}

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

    .footer-links-box-prime{
        margin-left: 40px;
    }
}

@media only screen and (max-width: 1024px){
	
	.hero-prime{
		height: auto;
        min-height: 800px;
	}

	.hero-prime::before{
		background: var(--primary-color);
		opacity: 30%;
	}

	.about-us-item-list-prime{
        gap: 30px;
    }

    .about-us-item-prime{
        width: calc(32% - 20px);
    }

    .about-us-item-content-prime{
        margin-bottom: 30px;
        padding-bottom: 30px;
    }

    .about-us-image-box-prime{
        width: calc(35% - 20px);
    }

    .about-us-info-box-prime{
        width: calc(33% - 20px);
    }

	.why-choose-us-content-prime{
        margin-bottom: 30px;
    }

	.why-choose-us-image-prime,
	.why-choose-us-image-prime figure,
	.why-choose-us-image-prime img{
		height: auto;
	}

    .why-choose-us-image-prime img{
        aspect-ratio: 1 / 0.65;
    }

	.our-benefits-content-prime{
        margin-bottom: 30px;
    }

    .our-benefits-image-box-prime{
        max-width: 740px;
        margin: 0 auto;
    }
	
	.intro-video-image-prime img{
        aspect-ratio: 1 / 0.6;
    }

    .get-in-touch-box-prime{
        height: auto;
        padding: 30px 30px 30px 0;
        margin-bottom: 30px;
    }
    
    .get-in-touch-image-prime figure{
        margin-bottom: -30px;
    }
    
    .cta-location-box-prime{
        padding: 30px 30px 0;
        height: auto;
    }
        
    .cta-location-box-image-prime figure{
        max-width: 410px;
        margin: 0 auto;
    }

    .cta-location-box-content-prime h3{
        margin-bottom: 15px;
        padding-bottom: 15px;
    }

	.faqs-content-prime{
		margin-bottom: 30px;
	}

	.faq-image-box-prime{
        max-width: 680px;
        margin: 0 auto;
    }

    .faq-image-box-2-prime .faq-image-prime figure img{
        aspect-ratio: 1 / 1.1;
    }

	.testimonials-image-box-prime{
		max-width: 700px;
		margin: 0 auto 30px;
	}

	.testimonials-image-box-prime,
	.testimonials-image-prime,
	.testimonials-image-prime figure,
	.testimonials-image-prime figure img{
		height: auto;
	}

    .testimonials-image-prime figure img{
        aspect-ratio: 1 / 0.9;
    }

    .footer-scrolling-ticker-prime{
        padding-bottom: 30px;
        margin-bottom: 30px;
    }

    .contact-us-circle-prime{
        transform: translate(-50%, -10%);
    }

    .contact-us-circle-prime a img{
        max-width: 130px;
    }

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

    .working-hour-box-prime{
        max-width: 100%;
    }

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

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

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

	.hero-prime{
		padding: 60px 0;
	}

	.hero-content-prime{
		margin-bottom: 30px;
	}

	.hero-info-box-prime{
		margin-right: auto;
	}

	.video-play-button-prime a span{
		width: 44px;
		height: 44px;
	}

	.video-play-button-prime a span i{
		font-size: 16px;
	}

	.google-rating-info-header-prime h2{
		font-size: 22px;
	}

	.google-rating-star-prime i{
		font-size: 16px;
	}

	.about-us-prime{
		background-size: 350px auto;
        padding: 60px 0;
    }

    .about-us-prime .section-title h2 .about-title-images-prime img{
        max-width: 30px;
        margin-left: -10px;
    }

    .about-us-item-prime{
        width: 100%;
    }

	.about-us-item-content-prime p{
		margin-bottom: 20px;
	}

    .about-us-item-content-prime ul li{
		margin-bottom: 10px;
    }

	.about-us-item-content-prime ul li::before{
		font-size: 16px;
	}

    .about-us-counter-box-prime h2{
        font-size: 80px;
    }

    .about-us-image-box-prime,
	.about-us-info-box-prime{
        width: calc(50% - 15px);
    }

    .watch-video-circle-prime a img{
        max-width: 100px;
    }

	.about-us-btn-prime{
		margin-top: 30px;
	}

	.our-services-prime{
		padding: 60px 0;
		background-size: 100% auto;
	}

	.service-item-prime{
		min-height: 340px;
		padding: 30px;
	}

	.service-item-content-prime ul{
		margin-bottom: 15px;
	}

	.service-item-content-prime ul li a{
		padding: 6px 12px;
	}

	.service-item-no-prime{
		bottom: -30px;
	}

	.service-item-no-prime h2{
		font-size: 90px;
	}
	
	.why-choose-us-prime{
        padding: 60px 0;
    }

    .why-choose-us-item-prime{
        min-height: auto;
    }

    .why-choose-item-content-prime h3{
        font-size: 34px;
    }

	.why-choose-item-bg-icon-prime{
		bottom: -10px;
		right: -10px;
	}

    .why-choose-item-bg-icon-prime img{
        max-width: 80px;
    }

    .why-choose-review-item-prime{
        padding: 20px;
		background-size: 80px auto;
    }

	.why-choose-review-item-prime p{
		font-size: 18px;
	}

    .why-choose-us-footer-prime{
        margin-top: 40px;
    }

    .why-choose-us-footer-list-prime ul{
        gap: 10px;
    }

    .why-choose-us-footer-list-prime ul li{
        font-size: 14px;
        padding: 8px 12px 8px 26px;
    }

    .why-choose-us-footer-list-prime ul li::before{
        left: 12px;
    }

	.why-choose-us-footer-prime .section-footer-text{
		margin-top: 20px;
	}

	.our-benefits-prime{
        padding: 60px 0;
    }

    .benefits-item-list-prime{
        margin-bottom: 30px;
    }

    .benefits-review-box-prime{
        padding: 20px;
        right: 80px;
        bottom: 50px;
    }

    .benefits-review-header-prime h2{
        font-size: 26px;
		min-width: 70px;
    }

    .company-slider-box-prime{
        margin-top: 40px;
        padding-top: 40px;
    }

	.company-slider-box-prime{
		gap: 15px;
	}

    .company-slider-title-prime{
		width: calc(36% - 7.5px);
        text-align: center;
    }

	.company-slider-title-prime h3{
		font-size: 18px;
	}

    .company-supports-slider-prime{
        width: calc(64% - 7.5px);
    }

    .company-supports-logo-prime img{
        max-width: 144px;
        height: 34px;
    }
	
	.our-impact-prime{
        background-size: 350px auto;
        padding: 60px 0;
    }

	.impact-item-prime{
		min-height: auto;
		padding: 30px;
	}

	.impact-item-header-prime ul li{
		font-size: 18px;
	}

    .impact-item-content-prime h2{
        font-size: 38px;
    }

    .intro-video-prime .video-play-button-prime a span{
		font-size: 18px;
        width: 80px;
        height: 80px;
    }

    .cta-box-prime{
        padding: 60px 0 30px;
    }

    .cta-title-box-list-prime{
        margin-top: 30px;
    }

    .cta-title-box-list-prime ul li:before{
        font-size: 16px;
    }

	.our-faqs-prime{
        padding: 30px 0 60px;
    }

	.faq-accordion-prime .accordion-item{
		border-radius: 8px;
	}

	.faqs-content-prime .accordion-header .accordion-button{
		padding: 15px 50px 15px 15px;
	}

	.faqs-content-prime .accordion-item .accordion-button::after,
	.faqs-content-prime .accordion-item .accordion-button.collapsed::after{
		font-size: 28px;
		right: 15px;
	}

	.faqs-content-prime .accordion-item .accordion-body{
		padding: 15px;
	}

    .faq-counter-box-prime h2{
	    font-size: 34px;
    }

	.our-testimonials-prime{
        padding: 60px 0;
    }

    .testimonial-item-prime{
		min-height: auto;
		padding: 30px;
	}

	.testimonial-item-content-prime p{
		font-size: 18px;
	}

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

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

    .footer-scrolling-box-prime .scrolling-content-prime span{
        font-size: 70px;
    }

    .contact-us-circle-prime a img{
        max-width: 100px;
    }

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

    .working-hour-box-prime{
        padding: 20px;
    }

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

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

    .footer-copyright-prime{
        flex-direction: column-reverse;
    }
}

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

	.google-rating-box-prime{
		padding: 10px;
	}

	.google-rating-info-header-prime h2{
		font-size: 20px;
		min-width: 56px;
	}

	.about-us-prime{
		background-size: 250px auto;
	}

	.about-us-image-box-prime,
	.about-us-info-box-prime{
        width: 100%;
    }

    .about-us-item-content-prime{
        margin-bottom: 20px;
        padding-bottom: 20px;
    }

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

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

	.about-us-info-item-prime{
		margin-bottom: 20px;
		padding-bottom: 20px;
	}

	.about-us-info-item-content-prime h3{
        font-size: 18px;
    }

	.service-item-prime{
		padding: 20px;
		min-height: 280px;
	}

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

	.service-item-btn-prime{
		padding-top: 20px;
	}

	.service-item-no-prime{
		bottom: -15px;
		right: -2px;
	}

	.service-item-no-prime h2{
		font-size: 60px;
	}

	.why-choose-us-item-prime{
        width: 100%;
		padding: 20px;
    }

    .why-choose-item-content-prime h3{
        font-size: 28px;
    }

    .why-choose-item-bg-icon-prime{
        bottom: -5px;
        right: -5px;
    }

    .why-choose-item-bg-icon-prime img{
        max-width: 60px;
    }

	.why-choose-review-item-prime{
		background-size: 60px auto;
	}

    .why-choose-review-item-prime p{
        font-size: 16px;
    }

    .why-choose-review-item-prime h3{
        font-size: 18px;
        margin-top: 15px;
        padding-top: 15px;
    }

    .why-choose-us-footer-list-prime ul{
        gap: 6px;
    }

    .why-choose-us-footer-list-prime ul li{
        padding: 7px 9px 7px 22px;
    }

    .why-choose-us-footer-list-prime ul li::before{
        width: 5px;
        height: 5px;
        left: 9px;
    }

    .our-impact-prime{
        background-size: 250px auto;
    }
    
	.benefits-item-list-prime{
        padding: 20px;
    }

    .benefits-item-content-prime{
        width: 100%;
    }

    .benefits-item-content-prime h3{
        font-size: 18px;
    }

   .benefits-review-box-prime{
       bottom: 20px;
       right: 6px;
       padding: 15px;
    }

    .benefits-review-header-prime h2{
        min-width: 60px;
        font-size: 22px;
    }

    .company-slider-box-prime{
        padding-top: 20px;
        margin-top: 20px;
    }

    .company-slider-title-prime,
    .company-supports-slider-prime{
        width: 100%;
    }

    .company-slider-title-prime h3{
        font-size: 16px;
    }

	.impact-item-prime{
        padding: 20px;
    }

    .impact-item-header-prime ul li{
        font-size: 16px;
    }

    .impact-item-content-prime{
        padding-top: 20px;
        margin-top: 20px;
    }

    .impact-item-content-prime h2{
        font-size: 26px;
    }

    .intro-video-image-prime img{
        aspect-ratio: 1 / 0.72;
    }

    .intro-video-prime .video-play-button-prime a span{
        font-size: 16px;
        width: 64px;
        height: 64px;
    }

    .cta-title-box-list-prime ul{
        justify-content: start;
        gap: 10px;
    }

    .get-in-touch-image-prime,
    .get-in-touch-form-prime{
        width: 100%;
    }

    .get-in-touch-box-prime{
        padding: 20px 20px 20px 20px;
        flex-direction: column-reverse;
    }

    .get-in-touch-image-prime figure{
        margin: 0 auto -20px;
        max-width: 200px;
    }

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

    .cta-location-box-content-prime h3{
        font-size: 18px;
    }

    .cta-location-box-btn-prime{
        margin-top: 20px;
    }

    .cta-location-box-image-prime{
        margin: 0 -20px;
    }

	.faq-accordion-prime .accordion-header .accordion-button{
        padding: 12px 45px 12px 15px;
        font-size: 16px;
    }

    .faq-accordion-prime .accordion-item .accordion-button::after, 
    .faq-accordion-prime .accordion-item .accordion-button.collapsed::after{
        font-size: 22px;
    }

    .faq-accordion-prime .accordion-item .accordion-body{
        padding: 12px 15px;
    }

    .faq-image-box-1-prime .faq-image-prime figure{
        border-width: 3px;
    }

    .faq-image-box-1-prime{
        width: 61%;
    }

    .faq-image-box-2-prime{
        width: 39%;
    }

    .faq-image-box-2-prime .faq-image-prime figure{
	    margin-left: -130px;
    }

    .faq-counter-box-prime{
        min-height: 105px;
        padding: 10px;
        margin: 10px 0 0 7px;
    }

    .faq-counter-box-prime h2{
        font-size: 28px;
    }

    .faq-counter-box-prime p{
        font-size: 14px;
        margin: 5px 0 0;
    }

    .testimonials-image-prime figure img{
        aspect-ratio: 1 / 1.10;
    }

    .testimonials-cta-box-prime{
        right: 15px;
        bottom: 15px;
        max-width: 165px;
        padding: 15px;
    }

    .testimonial-author-content-prime{
		padding-top: 20px;
		margin-top: 20px;
	}

    .testimonials-cta-box-prime h2{
        font-size: 16px;
        margin-bottom: 15px;
    }

    .testimonial-item-prime{
        gap: 20px;
        padding: 20px;
    }

    .testimonial-item-content-prime p{
        font-size: 16px;
    }

    .testimonial-author-content-prime h2{
        font-size: 18px;
    }

    .footer-scrolling-box-prime .scrolling-content-prime span{
        font-size: 40px;
    }

    .contact-us-circle-prime{
        transform: translate(-50%, -22%);
    }

    .contact-us-circle-prime a img{
        max-width: 70px;
    }

    .working-hour-box-prime h2{
        font-size: 18px;
    }

    .working-hour-box-prime ul{
        padding: 15px 0 0;
        margin: 15px 0 0;
    }

    .working-hour-box-prime ul li{
        font-size: 14px;
        margin-bottom: 10px;
    }

    .footer-links-prime{
        width: 100%;
    }
        
    .footer-links-prime::before{
        display: none;
    }

    .footer-links-prime h2{
        font-size: 18px;
        margin-bottom: 15px;
    }

    .footer-newsletter-form-prime .form-group{
        margin-top: 20px;
    }

    .footer-newsletter-form-prime .form-group .form-control{
        padding: 5px 12px;
    }

    .footer-social-links-prime{
        padding-top: 20px;
        gap: 10px;
    }

    .footer-social-links-prime h2{
        font-size: 16px;
    }

    .footer-social-links-prime ul{
        gap: 10px;
    }

    .footer-social-links-prime ul li a{
        width: 36px;
        height: 36px;
    }

    .footer-social-links-prime ul li a i{
        font-size: 16px;
    }

    .footer-menu-prime ul{
        justify-content: center;
        gap: 10px 28px;
    }

    .footer-menu-prime ul li{
        font-size: 14px;
    }

    .footer-menu-prime ul li::before{
        right: -16px;
        width: 4px;
        height: 4px;
    }

    .footer-copyright-prime{
        padding: 15px 0;
        margin-top: 20px;
    }
}



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

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

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

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

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

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

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

.hero-image-gold figure{
	position: relative;
	height: 100%;
    border-radius: 14px 14px 999px 999px;
    overflow: hidden;
}

.hero-image-gold figure:before{
	content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
	background: linear-gradient(180deg, rgba(255, 95, 71, 0.00) 0%, #FF5F47 100%);
    width: 100%;
    height: 100%;
    z-index: 0;
}

.hero-image-gold figure img{
	position: relative;
	width: 100%;
	height: 100%;
	aspect-ratio: 1 / 1.62;
	object-fit: cover;
	z-index: 1;
}

.about-us-gold{
    padding: 120px 0;
}

.about-us-image-gold{
    height: 100%;
    margin-right: 15px;
}

.about-us-image-gold figure{
    display: block;
    height: 100%;
    border-radius: 14px;
}

.about-us-image-gold img{
    height: 100%;
    width: 100%;
    aspect-ratio: 1 / 1.09;
    object-fit: cover;
    border-radius: 14px;
}

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

.about-us-body-gold{
    display: flex;
    flex-wrap: wrap;
    align-items: center;
}

.about-us-body-list-gold{
    width: calc(100% - 180px);
    border-right: 1px solid var(--divider-color);
    padding-right: 60px;
    margin-right: 60px;
}

.about-us-body-list-gold ul{
    list-style: none;
    padding: 0;
    margin: 0;
}

.about-us-body-list-gold ul li{
	position: relative;
    line-height: 1.5em;
    padding-left: 25px;
    margin-bottom: 15px;
}

.about-us-body-list-gold ul li:last-child{
	margin-bottom: 0;
}

.about-us-body-list-gold ul li::before{
	content: '\f058';
    position: absolute;
    font-family: 'Font Awesome 7 Free';
    font-size: 18px;
    font-weight: 900;
    color: #a903f6;
    top: 0;
    left: 0;
}

.contact-us-circle-gold a,
.contact-us-circle-gold a figure{
    display: inline-block;
    border-radius: 50%;
}

.contact-us-circle-gold img{
	width: 100%;
	max-width: 120px;
    aspect-ratio: 1 / 1;
	border-radius: 50%;
    animation: infiniterotate 20s infinite linear;
}

.contact-us-circle-gold a:hover img{
    animation-play-state: paused;
}

@keyframes infiniterotate{
	100%{
    	transform: rotate(360deg);
	}
}

.about-us-client-gold{
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 10px 20px;
    margin-top: 40px;
}

.about-us-client-gold .satisfy-client-content-gold p{
    margin: 0;
}

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

.google-rating-box-gold{
	display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 15px;
}

.google-rating-logo-gold img{
	width: 100%;
    max-width: 50px;
}

.google-rating-info-gold{
	width: calc(100% - 65px);
}

.google-rating-info-header-gold{
	display: flex;
    align-items: center;
}

.google-rating-info-header-gold h2{
	font-size: 26px;
    color: var(--primary-color);
    width: 70px;
    line-height: 1em;
}

.google-rating-star-gold{
	line-height: normal;
}

.google-rating-star-gold i{
	font-size: 18px;
    color: #a903f6;
}

.google-rating-info-content-gold p{
	color: var(--primary-color);
    margin: 5px 0 0;
}

.about-us-author-box-gold h3{
    font-size: 20px;
}

.about-us-author-box-gold p{
    margin: 5px 0 0;
}

.our-services-gold{
	background-image: url('../images/service-bg-image.png');
	background-position: center bottom;
	background-repeat: no-repeat;
	background-size: auto;
	padding: 120px 0;
}

.service-item-gold{
	background: var(--bg-color);
	border-radius: 20px;
	height: calc(100% - 30px);
	margin-bottom: 30px;
	padding: 30px;
}

.service-item-header-gold{
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 15px;
	margin-bottom: 30px;
}

.service-item-header-gold .icon-box{
	position: relative;
    width: 50px;
    height: 50px;
    background: #a903f6;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
	overflow: hidden;
}

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

.service-item-gold:hover .service-item-header-gold .icon-box::before{
    transform: scale(1);
}

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

.service-item-title-gold{
	width: calc(100% - 65px);
}

.service-item-title-gold h2{
	font-size: 20px;
}

.service-item-title-gold h2 a{
	color: inherit;
}

.service-item-image-gold{
	margin-bottom: 30px;
}

.service-item-image-gold a{
	cursor: none;
}

.service-item-image-gold figure{
	display: block;
    mask-image: url('../images/service-mask-image-gold.svg');
    background-image: url('../images/service-mask-image-gold.svg');
    mask-repeat: no-repeat;
    mask-position: center center;
    mask-size: cover;
    border-radius: 14px;
}

.service-item-image-gold img{
	width: 100%;
	aspect-ratio: 1 / 0.44;
    object-fit: cover;
	border-radius: 14px;
	transition: all 0.6s ease-in-out;
}

.service-item-gold:hover .service-item-image-gold img{
	transform: scale(1.04);
}

.service-item-body-gold .service-item-content-gold p{
	margin: 0;
}

.service-readmore-btn-gold{
	margin-top: 30px;
}

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

.why-choose-us-content-gold{
    height: 100%;
    align-content: center;
}

.why-choose-item-list-gold{
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.why-choose-item-gold{
    width: calc(50% - 15px);
    background-color: var(--white-color);
    border-radius: 14px;
    padding: 30px;
}

.why-choose-item-gold .icon-box{
	position: relative;
    width: 50px;
    height: 50px;
    background: #a903f6;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    margin-bottom: 30px;
	overflow: hidden;
}

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

.why-choose-item-gold:hover .icon-box::before{
    transform: scale(1);
}

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

.why-choose-item-content-gold h3{
	font-size: 20px;
}

.why-choose-item-content-gold h3 a{
	color: inherit;
}

.why-choose-item-content-gold p{
    margin: 10px 0 0;
}

.why-choose-item-content-gold ul{
    list-style: none;
    border-top: 1px solid var(--divider-color);
    margin: 30px 0 0;
    padding: 30px 0 0;
}

.why-choose-item-content-gold ul li{
	position: relative;
	line-height: 1.5em;
	padding-left: 25px;
    margin-bottom: 15px;
}

.why-choose-item-content-gold ul li:last-child{
    margin-bottom: 0;
}

.why-choose-item-content-gold ul li::before{
	content: '\f058';
    position: absolute;
    font-family: 'Font Awesome 7 Free';
    font-size: 18px;
    font-weight: 900;
    color: #a903f6;
    top: 0;
    left: 0;
}

.why-choose-btn-gold{
    margin-top: 40px;
}

.why-choose-image-box-gold{
	height: 100%;
	display: flex;
	flex-wrap: wrap;
	align-items: end;
	margin-left: 15px;
}

.why-choose-image-gold.image-1{
	width: 45%;
	padding-bottom: 70px;
}

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

.why-choose-image-gold figure img{
    width: 100%;
    object-fit: cover;
    border-radius: 14px;
}

.why-choose-image-gold.image-1 figure{
    position: relative;
    border: 6px solid var(--bg-color);
    border-radius: 18px;
    z-index: 2;
}

.why-choose-image-gold.image-1 figure img{
	aspect-ratio: 1 / 1.28;
}

.why-choose-image-gold.image-2,
.why-choose-image-gold.image-2 figure,
.why-choose-image-gold.image-2 figure img{
    height: 100%;
}

.why-choose-image-gold.image-2{
    width: 55%;
	height: 100%;
}

.why-choose-image-gold.image-2 figure{
    margin-left: -222px;
}

.why-choose-image-gold.image-2 figure img{
	aspect-ratio: 1 / 1.26;
}

.core-features-gold{
    background-image: url('../images/core-feature-bg-image-gold.png');
    background-position: left bottom;
    background-repeat: no-repeat;
    background-size: auto;
	padding: 120px 0;
}

.core-features-item-gold{
    background-color: var(--bg-color);
    border-radius: 14px;
    height: calc(100% - 30px);
    margin-bottom: 30px;
    padding: 20px;
}

.core-features-item-header-gold{
    text-align: center;
    padding: 20px;
}

.core-features-item-header-gold .icon-box{
	position: relative;
    width: 50px;
    height: 50px;
    background: #a903f6;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    margin: 0 auto 30px;
	overflow: hidden;
}

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

.core-features-item-gold:hover .core-features-item-header-gold .icon-box::before{
    transform: scale(1);
}

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

.core-features-item-content-gold h3{
	font-size: 20px;
}

.core-features-item-content-gold h3 a{
	color: inherit;
}

.core-features-item-content-gold p{
    margin: 10px 0 0;
}

.core-features-skill-list-gold{
    background-color: var(--white-color);
    border-radius: 14px;
    padding: 20px;
    margin-top: 20px;
}

.core-features-skill-list-gold .skill-title{
    display: flex;
    align-items: center;
}

.core-features-skill-list-gold .skill-title img{
    width: 100%;
    max-width: 20px;
    margin-right: 15px;
}

.core-features-skill-list-gold .skill-title,
.core-features-skill-list-gold .skill-data .skill-no{
    font-family: var(--default-font);
    color: var(--text-color);
    font-weight: 400;
}

.core-features-skill-list-gold  .skill-progress{
    height: 10px;
}

.core-features-skill-list-gold .skill-progress{
    background: var(--bg-color);
}

.how-it-work-gold{
	padding: 120px 0;
}

.how-work-item-list-gold{
	display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.how-work-item-gold{
	width: calc(33.33% - 20px);
	display: flex;
	flex-wrap: wrap;
	gap: 30px;
}

.how-work-item-gold:nth-child(3n + 2){
	flex-direction: column-reverse;
}

.how-work-item-image-gold{
    flex-grow: 1;
}

.how-work-item-image-gold figure{
	height: 100%;
	display: block;
	border-radius: 14px;
}

.how-work-item-image-gold figure img{
	width: 100%;
	height: 100%;
	aspect-ratio: 1 / 0.765;
    object-fit: cover;
}

.how-work-item-body-gold{
	background-color: var(--secondary-color);
	border-radius: 14px;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	gap: 40px;
	padding: 30px;
	flex-grow: 1;
}

.how-work-item-no-gold h2{
	font-size: 48px;
	line-height: 1.1em;
}

.how-work-item-content-gold{
	border-top: 1px solid var(--divider-color);
	padding-top: 40px;
}

.how-work-item-content-gold h3{
	font-size: 20px;
}

.how-work-item-content-gold p{
	margin: 10px 0 0;
}

.our-excellence-gold{
    padding: 120px 0;
}

.our-excellence-image-gold{
    height: 100%;
    margin-right: 15px;
}

.our-excellence-image-gold figure{
    display: block;
    height: 100%;
    border-radius: 14px;
}

.our-excellence-image-gold img{
    height: 100%;
    width: 100%;
    aspect-ratio: 1 / 0.828;
    object-fit: cover;
    border-radius: 14px;
} 

.our-excellence-items-list-gold{
    height: 100%;
    align-content: center;
}

.our-excellence-item-gold{
    background-color: var(--secondary-color);
    border-radius: 14px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 20px 40px;
    padding: 15px 40px;
    margin-bottom: 30px;
}

.our-excellence-item-gold:last-child{
    margin-bottom: 0;
}

.our-excellence-item-gold figure{
    display: block;
    max-width: 145px;
    border-radius: 14px;
}

.our-excellence-item-gold img{
    width: 100%;
    aspect-ratio: 1 / 0.758;
    object-fit: cover;
    border-radius: 14px;
}

.excellence-item-content-gold{
    width: calc(100% - 185px);
}

.excellence-item-content-gold p{
    margin: 0;
}

.excellence-item-content-gold h3{
    font-size: 20px;
    margin-top: 10px;
}

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

.intro-video-box-gold{
	position: relative;
}

.intro-video-box-gold .container-fluid{
	padding: 0;
}

.intro-video-image-gold{
	position: relative;
	overflow: hidden;
}

.intro-video-image-gold figure{
	display: block;
}

.intro-video-image-gold figure:before{
	content: '';
	position: absolute;
	top: auto;
	right: 0;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: var(--primary-color);
    opacity: 20%;
	z-index: 1;
}

.intro-video-image-gold img{
	width: 100%;
	aspect-ratio: 1 / 0.443;
	object-fit: cover;
	transition: all 1s ease-in-out;
}

.intro-video-gold:hover .intro-video-image-gold img{
	transform: scale(1.03);
}

.intro-video-gold .video-play-button-gold{
	content: '';
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	z-index: 2;
}

.intro-video-gold .video-play-button-gold a span{
	width: 100px;
	height: 100px;
    font-size: 20px;
	font-weight: 500;
	color: var(--white-color);
	border: 1px solid var(--dark-divider-color);
	background: transparent;
    backdrop-filter: blur(3px);
    -webkit-backdrop-filter: blur(3px);
    transition: all 0.4s ease-in-out;
}

.intro-video-gold .video-play-button-gold a span:hover{
	background: #a903f6;
}

.our-testimonials-gold{
	padding: 120px 0;
}

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

.testimonial-review-box-gold{
	display: inline-block;
    background: var(--white-color);
    border-radius: 14px;
    padding: 20px;
}

.testimonial-review-box-gold .satisfy-client-images{
    margin-bottom: 20px;
}

.testimonial-slider-gold{
    background: var(--secondary-color);
	border-radius: 14px;
    min-height: 530px;
	padding: 40px;
}

.testimonial-slider-gold,
.testimonial-slider-gold .swiper,
.testimonial-slider-gold .swiper-wrapper,
.testimonial-slider-gold .swiper-slide,
.testimonial-item-gold{
    height: 100%;
}

.testimonial-item-gold{
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 30px;
}

.testimonial-item-quote-gold img{
	width: 100%;
	max-width: 60px;
}

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

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

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

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

.testimonial-author-image-gold figure img{
	width: 100%;
    max-width: 50px;
    border-radius: 50%;
}

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

.testimonial-author-content-gold h2{
	font-size: 20px;
}

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

.testimonial-slider-btn-gold{
	position: absolute;
	bottom: 0;
	right: 0;
	display: flex;
	align-items: center;
	z-index: 1;
}

.testimonial-slider-gold .testimonial-button-next-gold,
.testimonial-slider-gold .testimonial-button-prev-gold{
	position: relative;
	width: 50px;
	height: 50px;
	background: var(--secondary-color);
	border: 1px solid var(--divider-color);
	border-radius: 50%;
	transition: all 0.4s ease-in-out;
}

.testimonial-slider-gold .testimonial-button-next-gold{
	margin-left: 15px;
}

.testimonial-slider-gold .testimonial-button-next-gold:hover,
.testimonial-slider-gold .testimonial-button-prev-gold:hover{
	background: #a903f6;
}

.testimonial-slider-gold .testimonial-button-next-gold::before,
.testimonial-slider-gold .testimonial-button-prev-gold::before{
    content: '';
	position: absolute;
    top: 50%;
    bottom: 0;
    left: 50%;
    right: 0;
	background: url('../images/arrow-primary.svg');
    background-repeat: no-repeat;
    background-position: center center;
    background-size: 22px auto;
    transform: translate(-50%, -50%) rotate(225deg);
	transition: all 0.4s ease-in-out;
}

.testimonial-slider-gold .testimonial-button-next-gold::before{
	transform: translate(-50%, -50%) rotate(45deg);
}

.testimonial-slider-gold .testimonial-button-next-gold:hover:before,
.testimonial-slider-gold .testimonial-button-prev-gold:hover:before{
	filter: brightness(0) invert(1);
}

.our-faqs-gold{
    padding: 120px 0;
}

.faqs-image-box-gold{
    position: relative;
    margin-right: 15px;
    height: 100%;
}

.faqs-image-gold{
    height: 100%;
}

.faqs-image-gold figure{
    position: relative;
    display: block;
    height: 100%;
    border-radius: 14px;
    overflow: hidden;
}

.faqs-image-gold figure::before{
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(180deg, transparent 33.44%, var(--primary-color) 100%);
    width: 100%;
    height: 100%;
    z-index: 1;
}

.faqs-image-gold figure img{
    width: 100%;
    height: 100%;
    aspect-ratio: 1 / 0.79;
    object-fit: cover;
    border-radius: 14px;
}

.faq-info-box-gold{
    position: absolute;
    left: 40px;
    right: 40px;
    bottom: 40px;
    z-index: 2;
}

.faq-info-content-gold h2{
    font-size: 20px;
    color: var(--white-color);
}

.faq-info-content-gold p{
    color: var(--white-color);
    margin: 10px 0 0;
}

.faq-contact-items-list-gold{
    display: flex;
    flex-wrap: wrap;
    gap: 20px 30px;
    border-top: 1px solid var(--dark-divider-color);
    margin-top: 30px;
    padding-top: 30px;
}

.faq-contact-item-gold{
    width: calc(50% - 15px);
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    align-items: center;
}

.faq-contact-item-gold .icon-box{
	position: relative;
	width: 50px;
	height: 50px;
	background-color: #a903f6;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	overflow: hidden;
}

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

.faq-contact-item-gold:hover .icon-box:before{
	transform: scale(1);
}

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

.faq-contact-item-gold:hover .icon-box img{
	filter: brightness(0) invert(0);
}

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

.faq-contact-item-content-gold h3{
    font-size: 20px;
    color: var(--white-color);
}

.faq-contact-item-content-gold p{
    color: var(--white-color);
    margin: 5px 0 0;
}

.faq-contact-item-content-gold a{
    color: inherit;
    transition: all 0.4s ease-in-out;
}

.faq-contact-item-content-gold a:hover{
    color: #a903f6;
}

.faq-accordion-gold{
    height: 100%;
    align-content: center;
}

.faq-accordion-gold .accordion-item{
    position: relative;
    background: var(--bg-color);
    border-radius: 14px;
    margin-bottom: 30px;
    overflow: hidden;
}

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

.faq-accordion-gold .accordion-header .accordion-button{
    font-size: 20px;
    font-weight: 500;
    line-height: 1.1em;
    background: transparent;
    color: var(--primary-color);
    border: none;
    padding: 20px 60px 20px 24px;
    transition: all 0.4s ease-in-out;
}

.faq-accordion-gold .accordion-item .accordion-button::after, 
.faq-accordion-gold .accordion-item .accordion-button.collapsed::after{
    content: '\f0fe';
    font-family: 'FontAwesome';
    position: absolute;
    right: 24px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 34px;
    line-height: 1em;
    color: #a903f6;
    transition: all 0.4s ease-in-out;
}

.faq-accordion-gold .accordion-button:not(.collapsed)::after{
    content: '\f146';
	color: var(--primary-color);
}

.faq-accordion-gold .accordion-item .accordion-body{
    border-top: 1px solid var(--divider-color);
    padding: 20px 24px;
}

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

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

.main-footer-gold{
    padding: 100px 0 0;
}

.footer-header-gold{
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 20px 30px;
    border-bottom: 1px solid var(--dark-divider-color);
    padding-bottom: 60px;
    margin-bottom: 60px;
}

.footer-header-gold .section-title{
    max-width: 45%;
    margin-bottom: 0;
}

.footer-newsletter-box-gold{
    width: 540px;
    display: flex;
    flex-wrap: wrap;
    gap: 20px 30px;
    background-color: var(--dark-divider-color);
    backdrop-filter: blur(30px);
    -webkit-backdrop-filter: blur(30px);
    border-radius: 14px;
    padding: 30px;
}

.footer-newsletter-form-gold{
    width: calc(68% - 15px);
    align-content: center;
}

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

.footer-newsletter-form-gold .form-group{
	display: flex;
	flex-wrap: wrap;
    background-color: var(--dark-divider-color);
	backdrop-filter: blur(20px);
	-webkit-backdrop-filter: blur(20px);
	border-radius: 10px;
	padding: 5px;
}

.footer-newsletter-form-gold .form-group .form-control{
	width: calc(100% - 40px);
	font-size: 16px;
	font-weight: 400;
	line-height: 1.4em;
	color: var(--white-color);
	background: transparent;
	border: none;
	border-radius: 0;
	outline: none;
	box-shadow: none;
	padding: 5px 20px;
}

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

.footer-newsletter-form-gold .form-group .newsletter-btn-gold{
	width: 40px;
	height: 40px;
	background: #a903f6;
	border-radius: 5px;
	display: flex;
	justify-content: center;
	align-items: center;
	border: none;
	box-shadow: none;
	outline: none;
	transition: all 0.3s ease-in-out;
}

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

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

.footer-newsletter-form-gold .form-group .newsletter-btn-gold:hover i{
	color: var(--primary-color);
}

.footer-newsletter-image-gold{
    width: calc(32% - 15px);
}

.footer-newsletter-image-gold figure{
    display: block;
    height: 100%;
    border-radius: 14px;
}

.footer-newsletter-image-gold figure img{
    width: 100%;
    height: 100%;
    aspect-ratio: 1 / 0.83;
    object-fit: cover;
    border-radius: 14px;
}

.footer-logo-gold img{
    width: 100%;
    max-width: 153px;
}

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

.about-footer-content-gold p{
    color: var(--white-color);
}

.about-footer-content-gold p:last-child{
    margin: 0;
}

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

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

.footer-social-links-gold ul li a{
	width: 40px;
	height: 40px;
	border: 1px solid var(--dark-divider-color);
	border-radius: 50%;
	color: var(--white-color);
	display: flex;
	align-items: center;
	justify-content: center;
	transition: all 0.4s ease-in-out;
}

.footer-social-links-gold ul li a:hover{
	background-color: #a903f6;
}

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

.footer-links-box-gold{
    display: flex;
    flex-wrap: wrap;
    gap: 30px 5.208vw;
    margin-left: 30px;
}

.footer-links-gold{
    position: relative;
}

.footer-links-gold::before{
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    right: -2.604vw;
    background: var(--dark-divider-color);
    width: 1px;
    height: 100%;
}

.footer-links-gold:last-child:before{
	display: none;
}

.footer-quick-links-gold{
    width: calc(25% - 3.472vw);
}

.footer-service-links-gold{
    width: calc(33% - 3.472vw);
}

.footer-links-gold h2{
    font-size: 20px;
    color: var(--white-color);
    margin-bottom: 30px;
}

.footer-links-gold ul{
    list-style: disc;
    margin: 0;
    padding: 0 0 0 20px;
}

.footer-links-gold ul li{
    color: var(--white-color);
    line-height: 1.5em;
    margin-bottom: 15px;
}

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

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

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

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

.footer-contact-box-gold{
    width: calc(42% - 3.472vw);
}

.footer-contact-box-gold ul{
    list-style: none;
    padding: 0;
}

.footer-links-gold.footer-contact-box-gold ul li{
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
}

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

.footer-contact-box-gold ul li span{
    font-weight: 600;
}

.footer-copyright-text-gold{
    border-top: 1px solid var(--dark-divider-color);
    text-align: center;
    padding: 60px 0;
    margin-top: 60px;
}

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



.header-center {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 0px;
  padding: 5px 0;
}
.header-center .header-cart-items {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 2.5rem;
}
.header-center .header-cart-items .cart-item {
  display: flex;
  flex-direction: row;
  align-items: flex-end;
  justify-content: center;
  gap: 5px;
  position: relative;
}
.header-center .header-cart-items .cart-item strong{
    position: absolute;
    left: 21px;
    top: -12px;
    font-size: 11px;
}
.header-center .header-cart-items .cart-item .cart-text {
  font-size: 1.6rem;
  color: #797979;
}
.header-center .header-cart-items .header-cart {
  position: relative;
}
.header-center .header-cart-items .header-cart .cart-submenu {
  position: absolute;
  width: 30rem;
  background: #FFFFFF;
  z-index: 2;
  left: -15rem;
  top: 5rem;
  border-top: 3px solid #1D4744;
  border-radius: 0.5rem;
  opacity: 0;
  visibility: hidden;
  transition: all 0.5s ease-in-out;
  box-shadow: rgba(0, 0, 0, 0.16) 0px 1px 4px;
}
.header-center .header-cart-items .header-cart .cart-submenu .wrapper-title {
  font-size: 2rem;
}
.header-center .header-cart-items .header-cart .cart-submenu .cart-wrapper-item {
  padding: 1rem;
  width: 100%;
  height: 30.1rem;
  overflow-y: scroll;
}
.header-center .header-cart-items .header-cart .cart-submenu .cart-wrapper-item .wrapper {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  justify-content: space-between;
  gap: 0px;
  margin-top: 2rem;
  width: 100%;
}
.header-center .header-cart-items .header-cart .cart-submenu .cart-wrapper-item .wrapper .wrapper-item {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
}
.header-center .header-cart-items .header-cart .cart-submenu .cart-wrapper-item .wrapper .wrapper-item .wrapper-title,
.header-center .header-cart-items .header-cart .cart-submenu .cart-wrapper-item .wrapper .wrapper-item .new-price {
  font-size: 1.2rem;
}
.header-center .header-cart-items .header-cart .cart-submenu .cart-wrapper-item .wrapper .wrapper-item .wrapper-img {
  width: 6.5rem;
  height: auto;
  background: rgba(174, 28, 154, 0.08);
  border-radius: 0.5rem;
}
.header-center .header-cart-items .header-cart .cart-submenu .cart-wrapper-item .wrapper .wrapper-item .wrapper-img img {
  width: 100%;
  height: 100%;
}
.header-center .header-cart-items .header-cart .cart-submenu .cart-wrapper-item::-webkit-scrollbar {
  width: 2px;
  height: 15rem;
  background: rgba(174, 28, 154, 0.08);
}
.header-center .header-cart-items .header-cart .cart-submenu .cart-wrapper-item::-webkit-scrollbar-track {
  background: #e8e8e8;
}
.header-center .header-cart-items .header-cart .cart-submenu .cart-wrapper-item::-webkit-scrollbar-thumb {
  background: #8e8e8e;
}
.header-center .header-cart-items .header-cart .cart-submenu .cart-wrapper-section {
  width: 100%;
  padding: 2rem;
}
.header-center .header-cart-items .header-cart .cart-submenu .cart-wrapper-section .wrapper-line {
  width: 100%;
  height: 1px;
  background: rgba(174, 28, 154, 0.08);
  border-radius: 1rem;
  margin-bottom: 1rem;
}
.header-center .header-cart-items .header-cart .cart-submenu .cart-wrapper-section .wrapper-subtotal {
  width: 100%;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 0px;
}
.header-center .header-cart-items .header-cart .cart-submenu .cart-wrapper-section .cart-btn {
  width: 100%;
  margin-top: 2rem;
}
.header-center .header-cart-items .header-cart .cart-submenu .cart-wrapper-section .cart-btn .shop-btn {
  background: #ddd;
  margin: 0.5rem 0;
  width: 100%;
  border-radius: 0.5rem;
  color: #232532;
  font-weight: 600;
}
.header-center .header-cart-items .header-cart .cart-submenu .cart-wrapper-section .cart-btn .shop-btn::after {
  display: none;
}
.header-center .header-cart-items .header-cart .cart-submenu .cart-wrapper-section .cart-btn .checkout-btn {
  background: #1D4744;
  color: #FFFFFF;
}
.header-center .header-cart-items .header-cart:hover .cart-submenu {
  opacity: 1;
  visibility: visible;
}
.header-center .header-cart-items .header-search {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 0px;
  width: 52px;
  height: 52px;
 
}
.ajax-search-products{
    padding: 0;
    margin: 0;
}
.header-center .header-cart-items .header-search .modal-main {
  height: auto;
  flex-direction: column;
}
.ajax-search-products a{
    display: flex;
    padding: 10px;
    border-bottom: 1px solid #eee;
    color: #000;
}
.search-thumb img{
    height: 60px !important;
    width: auto !important;
    border-radius: 5px; 
}

.cart-item img{
    height: 24px;
}
.search-content h4{
    font-size:15px;
}
.header-center .header-cart-items .header-search .modal-main .wrapper-main {
  width: 62rem;
  height: 6rem;
  border-radius: 3rem;
  border: 1px solid #1D4744;
  overflow: hidden;
}
.header-center .header-cart-items .header-search .modal-main .search-section {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 0px;
  width: 100%;
  height: 100%;
}
.header-center .header-cart-items .header-search .modal-main .search-section input,
.header-center .header-cart-items .header-search .modal-main .search-section button {
  border: none;
  outline: none;
  background: transparent;
  height: 100%;
  padding: 0 2rem;
  font-size: 1.5rem;
  font-weight: 500;
  color: #797979;
  flex: 1 1 0%;
}
.header-center .header-cart-items .header-search .modal-main .search-section input {
  color: #1D4744;
}
.header-center .header-cart-items .header-search .modal-main .search-section .shop-btn {
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
  padding: 2rem 3rem;
}
.header-center .header-cart-items .header-search .modal-main .search-section .shop-btn::after {
  display: none;
}
.header-center .header-cart-items .header-search .modal-wrapper.active {
  display: block;
}
.header-center .header-cart-items .header-user svg {
  fill: currentColor;
  fill: #fff;
  width: 15px;
}
.header-user a{
    color: #a903f6;
    font-size: 22px;
    margin-right: 10px;
}
.modal-wrapper {
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  left: 0;
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 2;
}

.modal-wrapper .anywhere-away {
  position: fixed;
  top: 0;
  left: 0;
  background: rgba(0, 0, 0, 0.37);
  width: 100%;
  height: 100%;
}

.modal-main {
  position: relative;
  background: #FFFFFF;
 
}
.modal-main .wrapper-close-btn {
  position: absolute;
  right: -15px !important;
  top: -15px !important;
  width: 3rem !important;
  height: 3rem !important;
  cursor: pointer;
}
div#ajax-search-result {
    max-width: 600px;
    width: 100%;
}
.search-content{
    margin-left: 15px;
}
.modal-main .wrapper-close-btn svg {
  fill: currentColor;
  fill: red;
  stroke: red;
}
.modal-main .wrapper-main .divider {
  height: 3rem;
  width: 1px;
  background: #e8e8e8;
}
.header-cart-items{
    display: flex;
}
.header-search button{
    background: transparent;
    border:none;
    outline: none;
    font-size: 23px;
    color: #a903f6;
}
.header-favourite ,.header-cart{
    position: relative;
    margin-right:15px;
    margin-left: 15px;
}
.header-cart-items a strong{
    position: absolute;
    top: -15px;
    right: -10px;
    width: 20px;
    background: #a903f6;
    text-align: center;
    height: 20px;
    line-height: 20px;
    font-size: 10px;
    border-radius: 50%;
    color: #fff;
}
.header-favourite i, .header-cart i{
    font-size: 23px;
    color: #a903f6;
}
@media only screen and (max-width: 1024px){
	.hero-content-gold{
		height: auto;
		margin: 0 0 30px;
	}

    .hero-content-footer-gold{
        margin-top: 30px;
        padding-top: 30px;
    }

	.hero-image-gold{
		max-width: 420px;
		margin: 0 auto;
	}

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

    .about-us-image-gold,
    .about-us-image-gold figure,
    .about-us-image-gold img,
    .about-us-content-gold{
        height: auto;
    }

    .about-us-image-gold img{
        aspect-ratio: 1 / 1;
    }
    
    .why-choose-us-content-gold{
        height: auto;
        margin-bottom: 30px;
    }

    .why-choose-image-box-gold{
		max-width: 700px;
		margin: 0 auto;
	}

	.why-choose-image-box-gold,
	.why-choose-image-box-2-gold,
	.why-choose-image-box-2-gold .why-choose-image-gold,
	.why-choose-image-box-2-gold .why-choose-image-gold figure,
	.why-choose-image-box-2-gold .why-choose-image-gold figure img{
		height: auto;
	}

    .why-choose-image-gold.image-2 figure img{
        aspect-ratio: 1 / 1.1;
    }

    .why-choose-image-gold.image-1 figure img{
        aspect-ratio: 1/ 1.05;
    }

	.core-features-item-header-gold{
        padding: 10px;
    }

	.how-work-item-gold{
		width:100%;
	}

	.how-work-item-gold:nth-child(3n + 2){
		flex-direction: row-reverse;
	}

	.how-work-item-image-gold,
	.how-work-item-body-gold{
		width: calc(50% - 15px);
	}

    .how-work-item-body-gold{
        gap: 30px;
    }

    .how-work-item-content-gold{
        padding-top: 30px;
    }

	.our-excellence-image-gold,
    .our-excellence-image-gold figure,
    .our-excellence-image-gold img,
    .our-excellence-items-list-gold{
        height: auto;
    }

    .our-excellence-image-gold{
        max-width: 730px;
        margin: 0 auto 30px;
    }

    .intro-video-image-gold img{
        aspect-ratio: 1 / 0.6;
    }

	.testimonial-content-gold{
        height: auto;
		margin-bottom: 30px;
	}

    .testimonial-slider-gold,
    .testimonial-slider-gold .swiper,
    .testimonial-slider-gold .swiper-wrapper,
    .testimonial-slider-gold .swiper-slide,
    .testimonial-item-gold{
        height: auto;
    }

    .testimonial-slider-gold{
        min-height: auto;
    }

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

    .faqs-image-gold,
    .faqs-image-gold figure,
    .faqs-image-gold figure img,
    .faq-accordion-gold{
        height: auto;
    }

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

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

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

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

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


@media only screen and (max-width: 991px){
    
    header.main-header.header-gold{
        position: absolute;
    }

    header.main-header.header-gold .header-sticky.active{
        border-top: none;
        border-left: none;
        border-right: none;
    }

	header.main-header.header-gold .navbar{
		padding: 20px 0;
	}

	.hero-gold{
		padding: 150px 0 60px;
	}

	.hero-counter-item-gold h2{
		font-size: 38px;
	}

	.about-us-gold{
        padding: 60px 0;
    }
    

    .about-us-body-list-gold{
        width: calc(100% - 140px);
        padding-right: 40px;
        margin-right: 40px;
    }

    .about-us-body-list-gold ul li{
        margin-bottom: 10px;
    }

    .about-us-body-list-gold ul li::before{
        font-size: 16px;
    }

    .contact-us-circle-gold img{
        max-width: 100px;
    }

    .about-us-client-gold{
        gap: 10px;
        margin-top: 20px;
    }

    .google-rating-info-header-gold h2{
        font-size: 24px;
    }

	.our-services-gold{
		padding: 60px 0;
		background-size: 100% auto;
	}

    .service-item-gold{
        padding: 20px;
    }

    .service-item-image-gold,
    .service-item-header-gold{
        margin-bottom: 20px;
    }

    .service-readmore-btn-gold{
        margin-top: 20px;
    }

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

    .why-choose-item-content-gold ul{
        margin: 20px 0 0;
        padding: 20px 0 0;
    }

    .why-choose-item-content-gold ul li::before{
        font-size: 16px;
    }

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

	.core-features-gold{
        background-size: 100% auto;
        padding: 60px 0;
    }

  	.how-it-work-gold{
		padding: 60px 0;
	}

	.how-work-item-no-gold h2{
		font-size: 38px;
	}

	.how-work-item-content-gold{
		padding-top: 30px;
	}

    .our-excellence-gold{
        padding: 60px 0;
    }

    .our-excellence-item-gold{
        gap: 20px 30px;
        padding: 15px 20px;
    }

	.our-excellence-item-gold figure{
        max-width: 120px;
    }

    .excellence-item-content-gold{
        width: calc(100% - 150px);
    }

    .excellence-item-content-gold h3{
        font-size: 18px;
    }

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

    .intro-video-gold .video-play-button-gold a span{
        font-size: 18px;
        width: 80px;
        height: 80px;
    }

	.our-testimonials-gold{
		padding: 60px 0;
	}

	.testimonial-slider-gold{
		padding: 30px;
	}

	.testimonial-item-quote-gold img{
		max-width: 50px;
	}

    .testimonial-item-content-gold p{
        font-size: 16px;
    }

	.testimonial-slider-gold .testimonial-button-next-gold, 
	.testimonial-slider-gold .testimonial-button-prev-gold{
		height: 40px;
		width: 40px;
	}

	.testimonial-slider-gold .testimonial-button-next-gold::before,
	.testimonial-slider-gold .testimonial-button-prev-gold::before{
		background-size: 18px auto;
	}

	.our-faqs-gold{
        padding: 60px 0;
    }

    .faq-info-box-gold{
        left: 30px;
        right: 30px;
        bottom: 30px;
    }

    .faq-accordion-gold .accordion-item{
        margin-bottom: 20px;
    }

    .faq-accordion-gold .accordion-header .accordion-button{
        padding: 15px 50px 15px 20px;
    }

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

    .faq-accordion-gold .accordion-header .accordion-button{
        font-size: 18px;
    }

    .faq-accordion-gold .accordion-item .accordion-body{
        padding: 15px 20px;
    }

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

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

    .footer-header-gold .section-title{
        max-width: 100%;
    }

    .footer-newsletter-box-gold{
        width: 100%;
        padding: 20px;
    }

    .footer-newsletter-image-gold figure img{
        aspect-ratio: 1 / 0.6;
    }

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

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

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

    .footer-links-gold.footer-contact-box-gold ul li{
        margin-bottom: 15px;
    }
}

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

	.hero-item-list-gold{
		gap: 20px;
	}

	.hero-item-gold{
		width: 100%;
	}

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

    .hero-counter-list-gold{
        gap: 20px;
    }

    .hero-counter-item-gold{
        width: calc(33.33% - 13.33px);
		text-align: center;
    }

    .hero-counter-item-gold:before{
        right: -10px;
    }

	.hero-counter-item-gold h2{
		font-size: 26px;
	}

    .hero-content-footer-gold{
        gap: 20px;
    }

	.hero-content-footer-gold .video-play-button-gold{
		margin-left: 10px;
	}

	.about-us-body-list-gold{
        width: 100%;
        border-right: none;
        padding-right: 0;
        margin-right: 0;
    }

    .contact-us-circle-gold{
        display: none;
    }

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

    .google-rating-logo-gold img{
        max-width: 42px;
    }

    .google-rating-info-gold{
        width: calc(100% - 57px);
    }

    .google-rating-info-header-gold h2{
        font-size: 22px;
        width: 60px;
    }

    .google-rating-star-gold i{
        font-size: 16px;
    }
    
    .about-us-author-box-gold h3{
        font-size: 18px;
    }

    .service-item-title-gold h2{
        font-size: 18px;
    }

	.why-choose-item-gold{
        width: 100%;
        padding: 20px;
    }

    .why-choose-item-gold .icon-box{
        margin-bottom: 20px;
    }

    .why-choose-item-content-gold h3{
        font-size: 18px;
    }

    .why-choose-image-gold.image-1{
        padding-bottom: 40px;
    }

    .why-choose-image-gold.image-2 figure{
        margin-left: -100px;
    }

    .core-features-item-header-gold{
        padding: 0;
    }

    .core-features-item-header-gold .icon-box{
        margin-bottom: 20px;
    }

    .core-features-item-content-gold h3{
        font-size: 18px;
    }

    .core-features-skill-list-gold{
        margin-top: 20px;
        padding: 15px;
    }

    .core-features-skill-list-gold .skill-title img{
        width: 100%;
        max-width: 18px;
        margin-right: 15px;
    }

	.how-work-item-image-gold, 
	.how-work-item-body-gold{
		width: 100%;
	}

    .how-work-item-image-gold figure,
    .how-work-item-image-gold figure img{
        height: auto;
    }

	.how-work-item-body-gold{
		padding: 20px;
		gap: 20px;
	}
	
	.how-work-item-no-gold h2{
		font-size: 26px;
	}

	.how-work-item-content-gold{
		padding-top: 20px;
	}

	.how-work-item-content-gold h3{
		font-size: 18px;
	}

	.our-excellence-item-gold{
        gap: 15px;
        padding: 15px;
        margin-bottom: 20px;
    }

	.our-excellence-item-gold figure{
        max-width: 90px;
    }

    .excellence-item-content-gold{
        width: calc(100% - 105px);
    }

    .excellence-item-content-gold h3{
        font-size: 16px;
        margin-top: 5px;
    }

    .intro-video-image-gold img{
        aspect-ratio: 1 / 0.72;
    }

    .intro-video-gold .video-play-button-gold a span{
        font-size: 16px;
        width: 64px;
        height: 64px;
    }

	.testimonial-review-box-gold{
		width: 100%;
	}

	.testimonial-slider-gold{
		padding: 20px;
	}

    .testimonial-item-gold{
        gap: 20px;
    }

	.testimonial-item-quote-gold img{
		max-width: 40px;
	}
    
    .testimonial-item-author-gold{
        padding-top: 20px;
    }

    .testimonial-author-content-gold h2{
        font-size: 18px;
    }

	.testimonial-slider-btn-gold{
		position: initial;
        margin-top: 20px;
        justify-content: center;
	}

	.faqs-image-gold figure img{
        aspect-ratio: 1 / 1.25;
    }

    .faq-info-box-gold{
        left: 15px;
        right: 15px;
        bottom: 15px;
    }

    .faq-info-content-gold h2,
    .faq-contact-item-content-gold h3{
        font-size: 18px;
    }

    .faq-info-content-gold p{
        margin: 5px 0 0;
    }

    .faq-contact-items-list-gold{
        margin-top: 15px;
        padding-top: 15px;
    }

    .faq-contact-item-gold{
        width: 100%;
    }

    .faqs-image-gold figure::before{
        background: var(--primary-color);
        opacity: 40%;
    }

    .faq-accordion-gold .accordion-header .accordion-button{
        font-size: 16px;
        padding: 12px 40px 12px 15px;
    }

    .faq-accordion-gold .accordion-item .accordion-button::after,
    .faq-accordion-gold .accordion-item .accordion-button.collapsed::after{
        right: 15px;
        font-size: 22px;
    }

    .faq-accordion-gold .accordion-item .accordion-body{
        padding: 12px 15px;
    }

	.footer-newsletter-form-gold,
    .footer-newsletter-image-gold{
        width: 100%;
    }

    .footer-newsletter-form-gold h3{
        font-size: 18px;
        margin-bottom: 15px;
    }

    .footer-newsletter-image-gold figure img{
        aspect-ratio: 1 / 0.4;
    }

    .footer-links-box-gold{
        justify-content: space-between;
    }

    .footer-links-gold{
        width: auto;
    }

    .footer-links-gold::before{
        display: none;
    }

    .footer-links-gold h2{
        font-size: 18px;
        margin-bottom: 15px;
    }

    .footer-contact-box-gold{
        width: 100%;
    }

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

    .footer-copyright-text-gold{
        padding: 15px 0;
    }

}



@-webkit-keyframes scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(calc(-250px * 7));
  }
}

@keyframes scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(calc(-250px * 7));
  }
}
.manufacturing_capabilities{
    padding: 70px 0;
}
.manufacturing_capabilities .slider {
  background: white;
  box-shadow: 0 10px 20px -5px rgba(0, 0, 0, 0.125);
  height: 200px;
  margin: auto;
  overflow: hidden;
  position: relative;
  width: 1200px;
}
.manufacturing_capabilities .slider::before, .manufacturing_capabilities .slider::after {
  background: linear-gradient(to right, white 0%, rgba(255, 255, 255, 0) 100%);
  content: "";
  height: 200px;
  position: absolute;
  width: 200px;
  z-index: 2;
}
.manufacturing_capabilities .slider::after {
  right: 0;
  top: 0;
  transform: rotateZ(180deg);
}
.manufacturing_capabilities .slider::before {
  left: 0;
  top: 0;
}
.manufacturing_capabilities .slider .slide-track {
  -webkit-animation: scroll 40s linear infinite;
          animation: scroll 40s linear infinite;
  display: flex;
  width: calc(300px * 14);
}
.manufacturing_capabilities .slider .slide {
  height: 200px;
  width: 300px;
  margin: 0 5px;
}
.manufacturing_capabilities .slider .slide  img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.award_features li{
    width: 50%;
    float: left;
    background: #353685;
    padding: 30px;
    list-style: none;
    border: 1px solid #fff;
}
.award_features li p, .award_features li h4{
    color: #fff;
}
.award_features li h4{
    padding: 10px 0;
}
.certificate_area{
    padding: 70px 0;
}
.certificate_box {
    border: 1px solid #eee;
    border-radius: 5px;
    padding: 5px;
}

.main-menu .header-user > ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.main-menu .header-user .user-menu {
    position: relative;
    display: inline-block;
    margin: 0 0 0 15px;
}

.main-menu .header-user .user-toggle {
    display: flex;
    align-items: center;
    gap: 5px;
    text-decoration: none;
    cursor: pointer;
}



.main-menu .header-user .afterlogin {
    display: none;
    position: absolute;
    top: 100%;
    right: 0;
    min-width: 130px;
    margin: 0;
    padding: 0;
    background: #fff;
    border: 1px solid #eee;
    border-radius: 4px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
    list-style: none;
    z-index: 9999;
}

.main-menu .header-user .afterlogin li {
    margin: 0;
    padding: 0;
    list-style: none;
}

.main-menu .header-user .afterlogin li a {
    display: block;
    padding: 10px 15px;
    color: #333;
    font-size: 14px;
    line-height: 1.4;
    text-decoration: none;
    white-space: nowrap;
    margin-right:0;
}

.main-menu .header-user .afterlogin li a:hover {
    background: #a903f6;
    color: #fff;
}



@media (min-width: 992px) {

    .main-menu .header-user .user-menu:hover .afterlogin {
        display: block;
    }

    /* Hide mobile arrow on desktop */
    .main-menu .header-user .mobile-arrow {
        display: none;
    }

}




@media (max-width: 991px) {

    .main-menu .header-user .mobile-arrow {
       display: inline-flex;
        align-items: center;
        justify-content: center;
        margin-left: 3px;
        font-size: 14px;
        transition: transform 0.3s ease;
        position: absolute;
        right: 0;
    }

    /* Dropdown active */
    .main-menu .header-user .user-menu.active .afterlogin {
        display: block;
    }

    /* Rotate arrow */
    .main-menu .header-user .user-menu.active .mobile-arrow {
        transform: rotate(180deg);
    }

}

/* =========================================
   Professional WooCommerce Product Card
   ========================================= */

.product-wrapper {
    position: relative;
    display: flex;
    flex-direction: column;
    height: 100%;
    overflow: hidden;
    background: #ffffff;
    border: 1px solid #eeeeee;
    border-radius: 16px;
    transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
}

/* Card Hover */
.product-wrapper:hover {
    transform: translateY(-6px);
    border-color: #e5e5e5;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
}

/* =========================================
   Product Image
   ========================================= */

.product-img {
    position: relative;
    width: 100%;
   
    overflow: hidden;
    background: #f7f7f7;
}

/* Image */
.product-img img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.2, 0.7, 0.2, 1);
}

/* Image Zoom on Hover */
.product-wrapper:hover .product-img img {
    transform: scale(1.06);
}

/* =========================================
   Product Information
   ========================================= */

.product-info {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    flex: 1;
    padding: 20px 20px 22px;
    background: #ffffff;
}
.product-sidebar{
    padding: 40px 0;
}
.product-info .product-description {
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding: 0;
}

/* =========================================
   Product Title
   ========================================= */

.product-details {
    display: -webkit-box;
    overflow: hidden;
    color: #222222;
    font-size: 16px;
    font-weight: 600;
    line-height: 1.5;
    text-decoration: none;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    transition: color 0.3s ease;
}

.product-details:hover {
    color: #b08d57;
}

/* =========================================
   Price Section
   ========================================= */

.price {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 9px;
    margin-top: 3px;
    line-height: 1;
}

/* Regular / Old Price */
.discount_price {
    color: #999999;
    font-size: 14px;
    font-weight: 400;
}

.discount_price del {
    text-decoration-thickness: 1px;
}

/* Sale Price */
.real_price {
    color: #111111;
    font-size: 18px;
    font-weight: 700;
    letter-spacing: -0.3px;
}

/* Normal Price */
.single-price {
    color: #111111;
    font-size: 18px;
    font-weight: 700;
    letter-spacing: -0.3px;
}

/* =========================================
   Responsive Design
   ========================================= */

@media (max-width: 767px) {

    .product-wrapper {
        border-radius: 12px;
    }

    .product-info {
        padding: 15px 15px 18px;
    }

    .product-details {
        font-size: 14px;
        line-height: 1.45;
    }

    .real_price,
    .single-price {
        font-size: 16px;
    }

    .discount_price {
        font-size: 13px;
    }
}

/* =========================================
   Accessibility / Reduced Motion
   ========================================= */

@media (prefers-reduced-motion: reduce) {

    .product-wrapper,
    .product-img img,
    .product-details {
        transition: none;
    }

    .product-wrapper:hover {
        transform: none;
    }

    .product-wrapper:hover .product-img img {
        transform: none;
    }
}

/* =========================================================
PROFESSIONAL WOOCOMMERCE PRODUCT DETAILS PAGE
CSS ONLY
========================================================= */

/* ---------- Main Product Section ---------- */

.product-info-img,
.product-info-content {
height: 100%;
}

.product-info-content {
padding: 10px 15px 10px 35px;
}

/* =========================================================
PRODUCT IMAGE GALLERY
========================================================= */

.product-info-img {
position: relative;
}

/* Main Image Slider */

.product-top {
width: 100%;
overflow: hidden;
border-radius: 18px;
background: #f7f7f7;
}

.slider-top-img {
position: relative;
width: 100%;
height: auto;
overflow: hidden;
border-radius: 18px;
background: #f7f7f7;
}

.slider-top-img img {
display: block;
width: 100%;
height: 100%;
object-fit: cover;
transition: transform 0.6s ease;
}

.product-top:hover .slider-top-img img {
transform: scale(1.04);
}

/* ---------- Thumbnail Slider ---------- */

.product-bottom {
margin-top: 15px;
overflow: hidden;
}

.slider-bottom-img {
height: 90px;
padding: 4px;
cursor: pointer;
overflow: hidden;
border: 1px solid #e7e7e7;
border-radius: 10px;
background: #fff;
transition: all 0.3s ease;
}

.slider-bottom-img:hover {
border-color: #111;
transform: translateY(-2px);
}

.slider-bottom-img img {
width: 100%;
height: 100%;
display: block;
object-fit: cover;
border-radius: 7px;
}

/* Active Swiper Thumbnail */

.product-bottom .swiper-slide-thumb-active {
border: 2px solid #111;
}

/* =========================================================
PRODUCT INFORMATION
========================================================= */

.product-info-content h5 {
margin: 0 0 12px;
color: #171717;
font-size: 32px;
font-weight: 600;
line-height: 1.25;
letter-spacing: -0.5px;
}

/* =========================================================
RATINGS
========================================================= */

.ratings {
display: flex;
align-items: center;
gap: 2px;
margin-bottom: 25px;
padding-bottom: 20px;
border-bottom: 1px solid #ededed;
}

.ratings span:not(.text) {
font-size: 20px !important;
line-height: 1;
}

.ratings .text {
margin-left: 8px;
color: #777;
font-size: 14px;
}
.product-info-section{
    padding: 40px 0;
}

/* =========================================================
PRODUCT PRICE
========================================================= */

.product-info-content .price_box,
.product-info-content > .price {
display: flex;
align-items: center;
gap: 12px;
margin-bottom: 18px;
}

.product-info-content .price,
#variation-price {
color: #111;
font-size: 20px;
font-weight: 700;
line-height: 1.2;
}

/* Old Price */

.price-cut,
.discount_price {
color: #999;
font-size: 17px;
font-weight: 400;
text-decoration: line-through;
}

/* Sale Price */

.product-info .new-price,
.product-info .real_price {
color: #111;
font-size: 16px;
font-weight: 700;
}

/* =========================================================
PRODUCT DESCRIPTION
========================================================= */

.content-paragraph {
max-width: 650px;
margin: 0 0 28px;
color: #666;
font-size: 15px;
line-height: 1.8;
}

/* =========================================================
PRODUCT ATTRIBUTES
========================================================= */

.attribute_area {
margin-bottom: 25px !important;
}

.attribute_area strong {
display: block;
margin-bottom: 12px;
color: #222;
font-size: 15px;
font-weight: 600;
}

/* Radio Button Group */

.radio-group {
display: flex;
flex-wrap: wrap;
gap: 10px;
}

/* Hide Native Radio */

.variation-radio input {
position: absolute;
opacity: 0;
pointer-events: none;
}

/* Variation Option */

.variation-radio span {
display: inline-flex;
align-items: center;
justify-content: center;
min-width: 55px;
min-height: 42px;
padding: 8px 18px;
color: #333;
font-size: 14px;
font-weight: 500;
cursor: pointer;
border: 1px solid #ddd;
border-radius: 6px;
background: #fff;
transition: all 0.25s ease;
}

/* Hover */

.variation-radio span:hover {
color: #111;
border-color: #111;
}

/* Selected Variation */

.variation-radio input:checked + span {
color: #fff;
background: #111;
border-color: #111;
box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
}

/* =========================================================
PRODUCT ACTION AREA
========================================================= */

.product_pro_button,
.product-quantity {
display: flex;
align-items: center;
flex-wrap: wrap;
gap: 12px;
}

/* =========================================================
QUANTITY BOX
========================================================= */

.quantity-wrapper {
display: inline-flex;
}

.quantity {
display: flex;
align-items: center;
height: 52px;
overflow: hidden;
border: 1px solid #ddd;
border-radius: 7px;
background: #fff;
}

/* Quantity Buttons */

.quantity .minus,
.quantity .plus {
width: 44px;
height: 100%;
padding: 0;
color: #222;
font-size: 20px;
font-weight: 400;
cursor: pointer;
border: 0;
background: transparent;
transition: all 0.2s ease;
}

.quantity .minus:hover,
.quantity .plus:hover {
color: #fff;
background: #111;
}

/* Quantity Input */

.quantity input {
width: 50px;
height: 100%;
padding: 0;
color: #222;
font-size: 15px;
font-weight: 600;
text-align: center;
border: 0;
outline: none;
background: transparent;
}

/* Remove Number Input Arrows */

.quantity input::-webkit-inner-spin-button,
.quantity input::-webkit-outer-spin-button {
margin: 0;
-webkit-appearance: none;
}

.quantity input[type="number"] {
-moz-appearance: textfield;
}

/* =========================================================
WISHLIST BUTTON
========================================================= */

.wishlist {
display: flex;
align-items: center;
justify-content: center;
}

.wishlist__btn {
display: flex;
align-items: center;
justify-content: center;
width: 52px;
height: 52px;
border: 1px solid #a903f6;
border-radius: 7px;
background: #a903f6;
transition: all 0.3s ease;
}

.wishlist__btn:hover {
border-color: #670893;
background: #670893;
}

.wishlist__btn svg {
width: 21px;
height: 21px;
stroke: #fff;
transition: all 0.3s ease;
}

.wishlist__btn svg path {
stroke: #fff;
}

/* =========================================================
ADD TO CART BUTTON
========================================================= */

.shop-btn {
display: inline-flex !important;
align-items: center;
justify-content: center;
min-width: 170px;
height: 52px;
padding: 0 28px !important;
color: #fff !important;
font-size: 14px !important;
font-weight: 600 !important;
letter-spacing: 0.3px;
text-transform: uppercase;
cursor: pointer;
border: 1px solid #a903f6  !important;
border-radius: 7px !important;
background: #a903f6  !important;
transition: all 0.3s ease !important;
}

.shop-btn:hover {
color: #fff !important;
background: #670893 !important;
transform: translateY(-2px);
box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}



/* =========================================================
SHARE SECTION
========================================================= */

.product-share {
display: flex;
align-items: center;
gap: 15px;
margin-top: 35px;
padding-top: 25px;
border-top: 1px solid #ededed;
}

.product-share p {
margin: 0;
color: #333;
font-size: 14px;
font-weight: 600;
}

.social-icons {
display: flex;
align-items: center;
gap: 8px;
}

.social-icons a {
display: flex;
align-items: center;
justify-content: center;
width: 38px;
height: 38px;
border: 1px solid #e5e5e5;
border-radius: 50%;
background: #fff;
transition: all 0.3s ease;
}

.social-icons a:hover {
border-color: #111;
background: #111;
transform: translateY(-3px);
}

.social-icons a:hover svg path {
fill: #fff;
}

/* =========================================================
RESPONSIVE - TABLET
========================================================= */

@media (max-width: 991px) {


.product-info-content {
    padding: 30px 10px 10px;
}

.slider-top-img {
    height: 500px;
}

.product-info-content h5 {
    font-size: 28px;
}

.product_pro_button,
.product-quantity {
    gap: 10px;
}

.shop-btn {
    min-width: 150px;
}


}


@media (max-width: 767px) {


.product-info-content {
    padding: 25px 0 10px;
}

.slider-top-img {
    height: 400px;
    border-radius: 12px;
}

.product-top {
    border-radius: 12px;
}

.slider-bottom-img {
    height: 70px;
    border-radius: 7px;
}

.product-info-content h5 {
    margin-bottom: 10px;
    font-size: 24px;
}

.ratings {
    margin-bottom: 20px;
    padding-bottom: 15px;
}



.content-paragraph {
    font-size: 14px;
    line-height: 1.7;
}

.product_pro_button,
.product-quantity {
    display: grid;
    grid-template-columns: auto 1fr;
    width: 100%;
}

.quantity-wrapper {
    width: 100%;
}

.quantity {
    width: 100%;
}

.quantity input {
    flex: 1;
    width: auto;
}

.wishlist {
    width: 52px;
}

.shop-btn {
    width: 100%;
    grid-column: 1 / -1;
}


.product-share {
    margin-top: 25px;
    padding-top: 20px;
}


}

/* =========================================================
SMALL MOBILE
========================================================= */

@media (max-width: 400px) {


.slider-top-img {
    height: 350px;
}

.product-info-content h5 {
    font-size: 22px;
}




}

/* =========================================================
REDUCED MOTION
========================================================= */

@media (prefers-reduced-motion: reduce) {


*,
*::before,
*::after {
    transition: none !important;
    animation: none !important;
}


}

/* =========================================================
PROFESSIONAL PRODUCT DESCRIPTION / SPECIFICATION / REVIEW
CSS ONLY
========================================================= */

/* =========================================================
MAIN PRODUCT DETAIL SECTION
========================================================= */

.product-description {
padding: 70px 0;
background: #ffffff;
}

.product-detail-section {
width: 100%;
max-width: 1200px;
margin: 0 auto;
}

/* =========================================================
PRODUCT TABS
========================================================= */

.product-detail-section nav {
margin-bottom: 0;
}

.product-detail-section .nav-tabs {
display: flex;
align-items: center;
gap: 35px;
margin: 0;
padding: 0 5px;
border: 0;
border-bottom: 1px solid #e8e8e8;
}

/* Tab Button */

.product-detail-section .nav-tabs .nav-link {
position: relative;
padding: 18px 5px;
color: #888;
font-size: 15px;
font-weight: 600;
text-transform: uppercase;
letter-spacing: 0.5px;
border: 0 !important;
border-radius: 0;
background: transparent !important;
transition: all 0.3s ease;
}

/* Hover */

.product-detail-section .nav-tabs .nav-link:hover {
color: #a903f6;
}

/* Active Tab */

.product-detail-section .nav-tabs .nav-link.active {
color: #a903f6;
}

/* Active Underline */

.product-detail-section .nav-tabs .nav-link::after {
content: "";
position: absolute;
left: 0;
bottom: -1px;
width: 0;
height: 2px;
background: #a903f6;
transition: width 0.3s ease;
}

.product-detail-section .nav-tabs .nav-link.active::after {
width: 100%;
}

/* =========================================================
TAB CONTENT
========================================================= */

.product-detail-section .tab-content {
padding-top: 45px;
}

.product-detail-section .tab-pane {
outline: none;
}

/* =========================================================
DESCRIPTION SECTION
========================================================= */

.product-intro-section {
max-width: 100%;
margin: 0 auto;
padding: 35px 40px;
border: 1px solid #eeeeee;
border-radius: 14px;
background: #fafafa;
}

.product-intro-section .product-details {
margin: 0;
color: #666;
font-size: 15px;
line-height: 1.9;
}

/* Content inside WooCommerce Description */

.product-intro-section .product-details h1,
.product-intro-section .product-details h2,
.product-intro-section .product-details h3,
.product-intro-section .product-details h4 {
margin-top: 25px;
margin-bottom: 12px;
color: #222;
}

.product-intro-section .product-details p {
margin-bottom: 15px;
}

.product-intro-section .product-details ul,
.product-intro-section .product-details ol {
margin: 15px 0;
padding-left: 22px;
}

.product-intro-section .product-details li {
margin-bottom: 8px;
}

/* =========================================================
SPECIFICATION SECTION
========================================================= */

.product-specification-section {
max-width: 100%;
margin: 0 auto;
}

.specification-wrapper {
overflow: hidden;
border: 1px solid #e8e8e8;
border-radius: 14px;
background: #fff;
box-shadow: 0 10px 35px rgba(0, 0, 0, 0.04);
}

.specification-wrapper .wrapper {
width: 100%;
}

.wrapper-description {
padding: 30px 35px;
}

.wrapper-details {
margin: 0;
color: #555;
font-size: 15px;
line-height: 1.9;
}

/* Specification Content */

.wrapper-details p {
margin-bottom: 12px;
}

.wrapper-details strong {
color: #222;
font-weight: 600;
}

/* =========================================================
CUSTOMER REVIEWS
========================================================= */

.custom-review-section {
max-width: 100%;
margin: 0 auto;
}

/* Main Heading */

.custom-review-section > h3 {
margin: 0 0 30px;
color: #222;
font-size: 26px;
font-weight: 600;
}

/* =========================================================
REVIEW CARD
========================================================= */

.review-card {
position: relative;
margin-bottom: 18px;
padding: 25px 28px;
border: 1px solid #e8e8e8;
border-radius: 12px;
background: #fff;
transition: all 0.3s ease;
}

.review-card:hover {
border-color: #d8d8d8;
box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
transform: translateY(-2px);
}

/* Review Header */

.review-header {
display: flex;
align-items: center;
justify-content: space-between;
gap: 15px;
}

/* Author */

.review-author {
margin: 0;
color: #222;
font-size: 16px;
font-weight: 600;
}

/* Stars */

.review-stars {
color: #f5a623;
font-size: 17px;
letter-spacing: 2px;
}

/* Review Date */

.review-date {
margin-top: 5px;
color: #999;
font-size: 13px;
}

/* Review Text */

.review-card > p {
margin: 15px 0 0;
color: #666;
font-size: 14px;
line-height: 1.8;
}

/* =========================================================
REVIEW FORM
========================================================= */

.review-form-wrapper {
margin-top: 40px;
padding: 35px;
border: 1px solid #e8e8e8;
border-radius: 14px;
background: #fafafa;
}

.review-form-wrapper h4 {
margin: 0 0 25px;
color: #222;
font-size: 21px;
font-weight: 600;
}

/* Form Group */

.review-form-wrapper .form-group {
margin-bottom: 20px;
}

.review-form-wrapper label {
display: block;
margin-bottom: 8px;
color: #333;
font-size: 14px;
font-weight: 600;
}

/* Select */

.review-form-wrapper select {
width: 100%;
height: 50px;
padding: 0 15px;
color: #555;
font-size: 14px;
border: 1px solid #ddd;
border-radius: 7px;
outline: none;
background: #fff;
cursor: pointer;
transition: border-color 0.3s ease;
}

.review-form-wrapper select:focus {
border-color: #111;
}

/* Textarea */

.review-form-wrapper textarea {
display: block;
width: 100%;
min-height: 130px;
padding: 15px;
color: #333;
font-family: inherit;
font-size: 14px;
line-height: 1.6;
border: 1px solid #ddd;
border-radius: 7px;
outline: none;
resize: vertical;
background: #fff;
transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.review-form-wrapper textarea:focus {
border-color: #111;
box-shadow: 0 0 0 3px rgba(0, 0, 0, 0.05);
}

/* Submit Button */

.review-btn {
display: inline-flex;
align-items: center;
justify-content: center;
min-width: 160px;
height: 50px;
padding: 0 25px;
color: #fff;
font-size: 14px;
font-weight: 600;
letter-spacing: 0.3px;
text-transform: uppercase;
cursor: pointer;
border: 1px solid #111;
border-radius: 7px;
background: #111;
transition: all 0.3s ease;
}

.review-btn:hover {
color: #111;
background: #fff;
transform: translateY(-2px);
box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

/* =========================================================
NO REVIEWS / LOGIN MESSAGE
========================================================= */

.custom-review-section > p {
padding: 20px 25px;
color: #777;
font-size: 14px;
border: 1px solid #eeeeee;
border-radius: 10px;
background: #fafafa;
}

/* =========================================================
BOOTSTRAP TAB FADE IMPROVEMENT
========================================================= */

.product-detail-section .tab-pane.fade {
transition: opacity 0.3s ease;
}

/* =========================================================
TABLET RESPONSIVE
========================================================= */

@media (max-width: 991px) {


.product-description {
    padding: 55px 0;
}

.product-detail-section .nav-tabs {
    gap: 25px;
}

.product-detail-section .nav-tabs .nav-link {
    font-size: 14px;
}

.product-intro-section,
.product-specification-section,
.custom-review-section {
    max-width: 100%;
}

}

/* =========================================================
MOBILE RESPONSIVE
========================================================= */

@media (max-width: 767px) {

.product-description {
    padding: 40px 0;
}

/* Tabs become horizontally scrollable */

.product-detail-section .nav-tabs {
    display: flex;
    flex-wrap: nowrap;
    gap: 20px;
    overflow-x: auto;
    overflow-y: hidden;
    padding: 0 5px;
    scrollbar-width: none;
}

.product-detail-section .nav-tabs::-webkit-scrollbar {
    display: none;
}

.product-detail-section .nav-tabs .nav-link {
    flex: 0 0 auto;
    padding: 15px 3px;
    font-size: 12px;
    white-space: nowrap;
}

.product-detail-section .tab-content {
    padding-top: 30px;
}

/* Description */

.product-intro-section {
    padding: 25px 20px;
    border-radius: 10px;
}

.product-intro-section .product-details {
    font-size: 14px;
    line-height: 1.8;
}

/* Specification */

.wrapper-description {
    padding: 25px 20px;
}

.wrapper-details {
    font-size: 14px;
    line-height: 1.8;
}

/* Reviews */

.custom-review-section > h3 {
    font-size: 22px;
}

.review-card {
    padding: 20px;
}

.review-header {
    align-items: flex-start;
    flex-direction: column;
    gap: 8px;
}

.review-stars {
    font-size: 16px;
}

/* Review Form */

.review-form-wrapper {
    padding: 25px 20px;
}

.review-btn {
    width: 100%;
}


}

/* =========================================================
SMALL MOBILE
========================================================= */

@media (max-width: 400px) {

.product-description {
    padding: 30px 0;
}

.product-detail-section .nav-tabs {
    gap: 16px;
}

.product-detail-section .nav-tabs .nav-link {
    font-size: 11px;
}

.review-card {
    padding: 18px;
}

.review-form-wrapper {
    padding: 20px 15px;
}


}

/* Professional Breadcrumb Styling */
.blog-bradcrum {
    background: linear-gradient(135deg, #7b3f98, #c384e1) !important;
    padding: 16px 0 !important;
    color: #fff;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

/* Container */
.blog-bradcrum .container {
    display: flex;
    align-items: center;
}

/* Breadcrumb Text */
.blog-bradcrum span {
    font-size: 15px;
    font-weight: 500;
    line-height: 1.5;
}

/* Links */
.blog-bradcrum span a {
    color: #fff;
    text-decoration: none;
    transition: all 0.3s ease;
}

/* Home Hover */
.blog-bradcrum span a:hover {
    color: #f4e6fa;
    text-decoration: underline;
}

/* Separator */
.blog-bradcrum .devider {
    margin: 0 12px;
    color: rgba(255, 255, 255, 0.65);
    font-size: 18px;
    font-weight: 300;
}

/* Current Page */
.blog-bradcrum span:last-child {
    color: rgba(255, 255, 255, 0.9);
}

/* Mobile Responsive */
@media (max-width: 576px) {
    .blog-bradcrum {
        padding: 13px 0 !important;
    }

    .blog-bradcrum .container {
        padding-left: 15px;
        padding-right: 15px;
    }

    .blog-bradcrum span {
        font-size: 13px;
    }

    .blog-bradcrum .devider {
        margin: 0 8px;
        font-size: 16px;
    }
}




/* =========================================
   SEARCH MODAL OVERLAY
========================================= */

.modal-wrapper.search {
    position: fixed;
    inset: 0;
    width: 100%;
    height: 100vh;
    background: rgba(20, 10, 30, 0.75);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);

    display: flex;
    align-items: flex-start;
    justify-content: center;

    padding-top: 100px;
    z-index: 99999;

    opacity: 0;
    visibility: hidden;
    transition: all 0.35s ease;
}


/* Active Modal */

.modal-wrapper.search.active {
    opacity: 1;
    visibility: visible;
}


/* =========================================
   CLICK OUTSIDE AREA
========================================= */

.modal-wrapper.search .anywhere-away {
    position: absolute;
    inset: 0;
    cursor: pointer;
}


/* =========================================
   SEARCH MODAL BOX
========================================= */

.modal-wrapper.search .modal-main {
    position: relative;
    width: 90%;
    max-width: 750px;

    background: #ffffff;
    border-radius: 18px;

    padding: 45px 40px 35px;

    box-shadow:
        0 25px 80px rgba(0, 0, 0, 0.25);

    transform: translateY(-30px) scale(0.96);
    transition: all 0.35s ease;

    z-index: 2;
}


/* Modal Animation */

.modal-wrapper.search.active .modal-main {
    transform: translateY(0) scale(1);
}


/* =========================================
   CLOSE BUTTON
========================================= */

.wrapper-close-btn {
    position: absolute;
    top: 15px;
    right: 18px;

    width: 38px;
    height: 38px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;
    background: #f7f1fa;

    cursor: pointer;
    transition: all 0.3s ease;
}

.wrapper-close-btn span {
    width: 22px;
    height: 22px;
    display: flex;
}

.wrapper-close-btn svg {
    width: 22px;
    height: 22px;
    stroke: #8e44ad;
}

.wrapper-close-btn:hover {
    background: #8e44ad;
    transform: rotate(90deg);
}

.wrapper-close-btn:hover svg {
    stroke: #ffffff;
}


/* =========================================
   SEARCH SECTION
========================================= */

.search-section {
    width: 100%;
}

.ajax-search-wrap {
    width: 100%;
}


/* =========================================
   SEARCH INPUT
========================================= */

#product-search-form {
    width: 100%;
    position: relative;
}

#ajax-product-search {
    width: 100%;
    height: 62px;

    padding: 0 25px;

    border: 2px solid #eeeeee;
    border-radius: 12px;

    background: #fafafa;

    color: #333;
    font-size: 17px;
    font-weight: 400;

    outline: none;

    transition: all 0.3s ease;

    box-sizing: border-box;
}


/* Input Focus */

#ajax-product-search:focus {
    border-color: #c384e1;
    background: #ffffff;

    box-shadow:
        0 0 0 4px rgba(195, 132, 225, 0.12),
        0 8px 25px rgba(0, 0, 0, 0.06);
}


/* Placeholder */

#ajax-product-search::placeholder {
    color: #999;
    font-size: 16px;
}


/* =========================================
   AJAX SEARCH RESULT
========================================= */

#ajax-search-result {
    margin-top: 20px;
    max-height: 400px;
    overflow-y: auto;
}


/* Scrollbar */

#ajax-search-result::-webkit-scrollbar {
    width: 6px;
}

#ajax-search-result::-webkit-scrollbar-track {
    background: #f5f5f5;
    border-radius: 10px;
}

#ajax-search-result::-webkit-scrollbar-thumb {
    background: #c384e1;
    border-radius: 10px;
}


/* =========================================
   MOBILE RESPONSIVE
========================================= */

@media (max-width: 767px) {

    .modal-wrapper.search {
        padding-top: 60px;
    }

    .modal-wrapper.search .modal-main {
        width: calc(100% - 30px);
        padding: 50px 20px 25px;
        border-radius: 14px;
    }

    #ajax-product-search {
        height: 55px;
        font-size: 15px;
        padding: 0 18px;
    }

    #ajax-product-search::placeholder {
        font-size: 14px;
    }

    .wrapper-close-btn {
        top: 12px;
        right: 12px;
    }
}

.cart-update-message {
    position: fixed;
    top: 25px;
    right: 25px;
    z-index: 9999;

    min-width: 280px;
    max-width: 400px;

    padding: 16px 22px;

    background: #ffffff;
    color: #198754;

    border-left: 5px solid #198754;
    border-radius: 10px;

    font-size: 15px;
    font-weight: 600;
    line-height: 1.5;

    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);

    animation: cartMessageSlideIn 0.4s ease-out;

    transition: all 0.3s ease;
}

/* Hover Effect */
.cart-update-message:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.16);
}


/* Slide In Animation */
@keyframes cartMessageSlideIn {
    from {
        opacity: 0;
        transform: translateX(50px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}


/* Mobile Responsive */
@media (max-width: 576px) {
    .cart-update-message {
        top: 15px;
        right: 15px;
        left: 15px;

        min-width: auto;
        max-width: none;

        padding: 14px 18px;
        font-size: 14px;
    }
}


/* =========================================================
   PROFESSIONAL CART DESIGN
========================================================= */

.product-cart {
    padding: 60px 0 80px;
    background: #f8f9fb;
}




/* =========================================================
   CART TABLE
========================================================= */

.cart-section {
    width: 100%;
    background: #ffffff;
    border-radius: 16px;
    overflow-x: auto;
    box-shadow: 0 8px 35px rgba(0, 0, 0, 0.06);
    border: 1px solid #eeeeee;
}

.cart-section table {
    width: 100%;
    min-width: 850px;
    border-collapse: collapse;
    margin: 0;
}


/* =========================================================
   TABLE HEADER
========================================================= */

.cart-section .table-top-row {
    background: linear-gradient(135deg, #7b3f98, #c384e1);
}

.cart-section .table-top-row .table-wrapper {
    padding: 20px 25px;
    border: none;
}

.cart-section .table-heading {
    margin: 0;
    color: #ffffff;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.8px;
    text-transform: uppercase;
}


/* =========================================================
   TABLE ROW
========================================================= */

.cart-section .ticket-row {
    border-bottom: 1px solid #eeeeee;
    transition: all 0.3s ease;
}

.cart-section .ticket-row:last-child {
    border-bottom: none;
}

.cart-section .ticket-row:hover {
    background: #fcf9fe;
}


/* =========================================================
   TABLE CELLS
========================================================= */

.cart-section .ticket-row .table-wrapper {
    padding: 25px;
    vertical-align: middle;
}

.table-wrapper-center {
    display: flex;
    align-items: center;
    justify-content: center;
}

.cart-section .ticket-row .heading {
    margin: 0;
    color: #333333;
    font-size: 15px;
    font-weight: 600;
    line-height: 1.5;
}


/* =========================================================
   PRODUCT COLUMN
========================================================= */

.wrapper-product {
    width: 38%;
}

.wrapper-product .wrapper {
    display: flex;
    align-items: center;
    gap: 18px;
}


/* Product Image */

.wrapper-product .wrapper-img {
    width: 85px;
    height: 85px;
    min-width: 85px;

    display: flex;
    align-items: center;
    justify-content: center;

    background: #f8f5fa;
    border: 1px solid #eeeeee;
    border-radius: 12px;
    overflow: hidden;
}

.wrapper-product .wrapper-img img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 8px;
    transition: transform 0.3s ease;
}

.ticket-row:hover .wrapper-img img {
    transform: scale(1.06);
}


/* Product Name */

.wrapper-content {
    flex: 1;
}

.wrapper-content .heading {
    color: #222222;
    font-size: 15px;
    font-weight: 600;
    margin-bottom: 8px;
}


/* =========================================================
   PRODUCT VARIATIONS
========================================================= */

.product-box {
    margin-top: 5px;
}

.cart-variation {
    display: flex;
    flex-wrap: wrap;
    gap: 5px 12px;
}

.cart-variation p {
    margin: 0;
    color: #777777;
    font-size: 12px;
    line-height: 1.6;
}

.cart-variation p strong {
    color: #555555;
    font-weight: 600;
}


/* =========================================================
   PRICE & TOTAL
========================================================= */

.cart-section .ticket-row td:nth-child(2) .heading,
.cart-section .ticket-row td:nth-child(4) .heading {
    color: #333333;
    font-size: 15px;
    font-weight: 600;
    white-space: nowrap;
}

.cart-section .ticket-row td:nth-child(4) .heading {
    color: #7b3f98;
    font-weight: 700;
}


/* =========================================================
   QUANTITY BOX
========================================================= */

.custom-qty {
    display: inline-flex !important;
    align-items: center;
    justify-content: center;

    height: 42px;

    border: 1px solid #dddddd;
    border-radius: 8px;

    background: #ffffff;
    overflow: hidden;
}


/* Quantity Buttons */

.custom-qty .qty-minus,
.custom-qty .qty-plus {
    width: 40px;
    height: 40px;

    border: none;
    background: #f7f7f7;

    color: #555555;

    font-size: 18px;
    font-weight: 500;

    cursor: pointer;

    transition: all 0.25s ease;
}

.custom-qty .qty-minus:hover,
.custom-qty .qty-plus:hover {
    background: #7b3f98;
    color: #ffffff;
}


/* Quantity Input */

.custom-qty .quantity {
    margin: 0 !important;
}

.custom-qty input.qty {
    width: 45px !important;
    height: 40px !important;

    padding: 0 !important;

    border: none !important;
    border-left: 1px solid #eeeeee !important;
    border-right: 1px solid #eeeeee !important;

    background: #ffffff !important;

    color: #333333 !important;

    text-align: center !important;

    font-size: 14px !important;
    font-weight: 600 !important;

    outline: none !important;
    box-shadow: none !important;
}


/* Remove Number Arrows */

.custom-qty input::-webkit-outer-spin-button,
.custom-qty input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

.custom-qty input[type=number] {
    -moz-appearance: textfield;
}


/* =========================================================
   REMOVE / DELETE BUTTON
========================================================= */

.cart-section .ticket-row td:last-child a {
    width: 38px;
    height: 38px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background: #fff5f5;
    border: 1px solid #ffe0e0;

    transition: all 0.3s ease;
}

.cart-section .ticket-row td:last-child a svg {
    width: 11px;
    height: 11px;
}

.cart-section .ticket-row td:last-child a:hover {
    background: #dc3545;
    border-color: #dc3545;
    transform: rotate(90deg);
}

.cart-section .ticket-row td:last-child a:hover svg path {
    fill: #ffffff;
}


/* =========================================================
   CART ACTIONS
========================================================= */

.cart-actions {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 15px;

    margin-top: 25px;
}


/* =========================================================
   BUTTONS
========================================================= */

.cart-actions .shop-btn {
    min-width: 170px;
    height: 50px;

    padding: 0 25px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    border: none;
    border-radius: 8px;

    background: linear-gradient(135deg, #7b3f98, #c384e1);

    color: #ffffff !important;

    font-size: 14px;
    font-weight: 600;

    text-decoration: none;
    cursor: pointer;

    transition: all 0.3s ease;

    box-shadow: 0 5px 15px rgba(123, 63, 152, 0.2);
}

.cart-actions .shop-btn:hover {
    color: #ffffff !important;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(123, 63, 152, 0.3);
}


/* Update Cart Button */

.cart-actions .update-btn {
    background: #ffffff;
    color: #7b3f98 !important;

    border: 1px solid #7b3f98;

    box-shadow: none;
}

.cart-actions .update-btn:hover {
    background: #7b3f98;
    color: #ffffff !important;
}


/* =========================================================
   MOBILE RESPONSIVE
========================================================= */

@media (max-width: 991px) {

    .product-cart {
        padding: 40px 0 60px;
    }

    .cart-section {
        border-radius: 12px;
    }

    .cart-section .ticket-row .table-wrapper {
        padding: 18px;
    }

    .wrapper-product .wrapper-img {
        width: 70px;
        height: 70px;
        min-width: 70px;
    }

    .wrapper-product .wrapper {
        gap: 12px;
    }

}


@media (max-width: 767px) {

    .product-cart {
        padding: 30px 0 50px;
    }

    /*
       Horizontal scroll for cart table
       HTML remains unchanged
    */

    .cart-section {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }

    .cart-section table {
        min-width: 850px;
    }

    .cart-actions {
        flex-direction: column;
        align-items: stretch;
        gap: 10px;
    }

    .cart-actions .shop-btn {
        width: 100%;
    }

}


/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 480px) {

   

    .cart-section .table-top-row .table-wrapper {
        padding: 15px;
    }

    .cart-section .ticket-row .table-wrapper {
        padding: 15px;
    }

}

/* =========================================================
   CART MAIN LAYOUT FIX
========================================================= */

.product-cart {
    padding: 50px 0 70px;
    background: #f8f9fb;
}



/* =========================================================
   CART TABLE
========================================================= */

.cart-section {
    width: 100%;
    background: #fff;
    border-radius: 16px;
    overflow-x: auto;
    border: 1px solid #eeeeee;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.05);
}


/* =========================================================
   CART ACTION BUTTONS
========================================================= */

.wishlist-btn.cart-btn.cart-actions {
    width: 100%;

    display: flex;
    justify-content: flex-end;
    align-items: center;

    gap: 15px;

    margin: 20px 0 0;
    padding: 0;
}


/* Buttons */

.wishlist-btn.cart-btn.cart-actions .shop-btn {
    height: 50px;
    min-width: 170px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    padding: 0 25px;

    border-radius: 8px;
    border: none;

    background: linear-gradient(
        135deg,
        #8e44ad,
        #c384e1
    );

    color: #fff !important;

    font-size: 14px;
    font-weight: 600;

    text-transform: uppercase;
    text-decoration: none;

    cursor: pointer;

    box-shadow: 0 5px 15px rgba(142, 68, 173, 0.2);

    transition: all 0.3s ease;
}


.wishlist-btn.cart-btn.cart-actions .shop-btn:hover {
    transform: translateY(-2px);

    box-shadow: 0 8px 20px rgba(142, 68, 173, 0.3);
}


/* Update Cart */
.screen-reader-text {
    display: none;
}
.wishlist-btn.cart-btn.cart-actions .update-btn {
    background: #ffffff;

   /* color: #8e44ad !important;*/

    border: 1px solid #8e44ad;

    box-shadow: none;
}


.wishlist-btn.cart-btn.cart-actions .update-btn:hover {
    background: #8e44ad;

    color: #ffffff !important;
}


/* =========================================================
   ORDER SUMMARY
========================================================= */

.cart-summary {
    width: 100%;
    max-width: 500px;

    margin: 35px 0 0 auto;

    padding: 30px;

    box-sizing: border-box;

    background: #ffffff;

    border: 1px solid #eeeeee;

    border-radius: 16px;

    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.06);
}


/* =========================================================
   SUMMARY TITLE
========================================================= */

.cart-summary h3 {
    margin: 0 0 25px;

    padding-bottom: 18px;

    position: relative;

    color: #222;

    font-size: 22px;
    font-weight: 700;
}


.cart-summary h3::after {
    content: "";

    position: absolute;

    left: 0;
    bottom: 0;

    width: 50px;
    height: 3px;

    border-radius: 10px;

    background: linear-gradient(
        135deg,
        #8e44ad,
        #c384e1
    );
}


/* =========================================================
   SUMMARY ROW
========================================================= */

.cart-summary .summary-row {
    display: flex;

    align-items: center;
    justify-content: space-between;

    gap: 20px;

    padding: 16px 0;

    border-bottom: 1px solid #eeeeee;

    font-size: 14px;
}


.cart-summary .summary-row > span:first-child {
    color: #555;
}


.cart-summary .summary-row > span:nth-child(2) {
    color: #333;

    font-weight: 600;

    white-space: nowrap;
}


/* =========================================================
   TOTAL
========================================================= */

.cart-summary .summary-row.total {
    padding: 22px 0;

    border-bottom: none;
}


.cart-summary .summary-row.total > span:first-child {
    color: #222;

    font-size: 17px;
    font-weight: 700;
}


.cart-summary .summary-row.total > span:nth-child(2) {
    color: #8e44ad;

    font-size: 20px;
    font-weight: 700;
}


/* =========================================================
   CHECKOUT BUTTON
========================================================= */

.cart-summary .checkout-btn {
    width: 100%;

    min-height: 52px;

    display: flex;

    align-items: center;
    justify-content: center;

    margin-top: 10px;

    border-radius: 9px;

    background: linear-gradient(
        135deg,
        #8e44ad,
        #c384e1
    );

    color: #ffffff !important;

    font-size: 15px;
    font-weight: 600;

    text-decoration: none;

    box-shadow: 0 6px 18px rgba(142, 68, 173, 0.25);

    transition: all 0.3s ease;
}


.cart-summary .checkout-btn:hover {
    transform: translateY(-2px);

    color: #ffffff !important;

    box-shadow: 0 10px 25px rgba(142, 68, 173, 0.35);
}


/* =========================================================
   RESPONSIVE
========================================================= */

@media (max-width: 767px) {

    .product-cart {
        padding: 30px 0 50px;
    }

    .wishlist-btn.cart-btn.cart-actions {
        flex-direction: column;

        align-items: stretch;

        gap: 10px;
    }

    .wishlist-btn.cart-btn.cart-actions .shop-btn {
        width: 100%;
    }

    .cart-summary {
        max-width: 100%;

        margin: 25px 0 0;

        padding: 25px 20px;
    }
}
/* =========================================================
   WISHLIST PAGE - SCOPED STYLES
   All styles are limited to .wishlistpage
========================================================= */

.wishlistpage {
    width: 100%;
    background: #f8f9fb;
    padding: 50px 0 80px;
}

.wishlistpage .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px !important;
}


/* =========================================================
   PAGE TITLE
========================================================= */

.wishlistpage h2 {
    position: relative;

    margin: 0 0 30px;
    padding-bottom: 15px;

    color: #222222;

    font-size: 30px;
    font-weight: 700;
    line-height: 1.3;
}

.wishlistpage h2::after {
    content: "";

    position: absolute;
    left: 0;
    bottom: 0;

    width: 55px;
    height: 3px;

    border-radius: 10px;

    background: linear-gradient(
        135deg,
        #8e44ad,
        #c384e1
    );
}


/* =========================================================
   WISHLIST TABLE
========================================================= */

.wishlistpage table {
    width: 100% !important;

    border-collapse: separate !important;
    border-spacing: 0;

    background: #ffffff;

    border: 1px solid #eeeeee;

    border-radius: 14px;

    overflow: hidden;

    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.06);
}


/* =========================================================
   TABLE HEADER
========================================================= */

.wishlistpage table thead {
    background: linear-gradient(
        135deg,
        #7b3f98,
        #c384e1
    );
}

.wishlistpage table thead th {
    padding: 18px 20px !important;

    border: none !important;

    color: #ffffff;

    font-size: 13px;
    font-weight: 700;

    text-align: left;

    text-transform: uppercase;

    letter-spacing: 0.5px;
}


/* =========================================================
   TABLE BODY
========================================================= */

.wishlistpage table tbody tr {
    background: #ffffff;

    transition: all 0.3s ease;
}

.wishlistpage table tbody tr:hover {
    background: #fcf8fe;
}


/* Table Cells */

.wishlistpage table tbody td {
    padding: 20px !important;

    border: none !important;

    border-bottom: 1px solid #eeeeee !important;

    color: #555555;

    font-size: 15px;

    vertical-align: middle;
}


/* Remove last row border */

.wishlistpage table tbody tr:last-child td {
    border-bottom: none !important;
}


/* =========================================================
   PRODUCT IMAGE
========================================================= */

.wishlistpage table tbody td:first-child {
    width: 120px;
}

.wishlistpage table tbody td:first-child a {
    width: 75px;
    height: 75px;

    display: flex;

    align-items: center;
    justify-content: center;

    background: #f8f5fa;

    border: 1px solid #eeeeee;

    border-radius: 10px;

    overflow: hidden;
}

.wishlistpage table tbody td:first-child img {
    width: 100%;
    height: 100%;

    padding: 6px;

    object-fit: contain;

    transition: transform 0.3s ease;
}

.wishlistpage table tbody tr:hover td:first-child img {
    transform: scale(1.08);
}


/* =========================================================
   PRODUCT NAME
========================================================= */

.wishlistpage table tbody td:nth-child(2) {
    width: 45%;
}

.wishlistpage table tbody td:nth-child(2) a {
    color: #222222;

    font-size: 16px;
    font-weight: 600;

    line-height: 1.5;

    text-decoration: none;

    transition: all 0.3s ease;
}

.wishlistpage table tbody td:nth-child(2) a:hover {
    color: #8e44ad;
}


/* =========================================================
   PRICE
========================================================= */

.wishlistpage .discount_price {
    margin-right: 8px;

    color: #999999;

    font-size: 14px;
    font-weight: 500;
}

.wishlistpage .discount_price del {
    text-decoration-thickness: 1px;
}

.wishlistpage .real_price {
    color: #8e44ad;

    font-size: 16px;
    font-weight: 700;
}

.wishlistpage .single-price {
    color: #333333;

    font-size: 16px;
    font-weight: 700;
}


/* =========================================================
   REMOVE BUTTON
========================================================= */

.wishlistpage table tbody td:last-child {
    text-align: left;
}

.wishlistpage table tbody td:last-child a {
    display: inline-flex;

    align-items: center;
    justify-content: center;

    min-width: 90px;
    height: 38px;

    padding: 0 16px;

    border: 1px solid #dc3545;

    border-radius: 7px;

    background: #fff5f5;

    color: #dc3545;

    font-size: 13px;
    font-weight: 600;

    text-decoration: none;

    transition: all 0.3s ease;
}

.wishlistpage table tbody td:last-child a:hover {
    background: #dc3545;

    color: #ffffff;

    transform: translateY(-2px);

    box-shadow: 0 5px 12px rgba(220, 53, 69, 0.2);
}


/* =========================================================
   EMPTY WISHLIST
========================================================= */

.wishlistpage > .container > p {
    margin: 0;

    padding: 50px 30px;

    background: #ffffff;

    border: 1px solid #eeeeee;

    border-radius: 14px;

    color: #777777;

    font-size: 16px;

    text-align: center;

    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.05);
}


/* =========================================================
   RESPONSIVE - TABLET
========================================================= */

@media (max-width: 767px) {

    .wishlistpage {
        padding: 35px 0 50px;
    }

    .wishlistpage .container {
        padding: 0 15px !important;
    }

    .wishlistpage h2 {
        font-size: 25px;
        margin-bottom: 25px;
    }

    /* Horizontal scroll only for wishlist table */

    .wishlistpage table {
        display: block;

        width: 100% !important;

        overflow-x: auto;

        white-space: nowrap;

        -webkit-overflow-scrolling: touch;
    }

    .wishlistpage table thead,
    .wishlistpage table tbody {
        width: 100%;
    }

    .wishlistpage table thead th {
        padding: 15px !important;
        font-size: 12px;
    }

    .wishlistpage table tbody td {
        padding: 15px !important;
        font-size: 14px;
    }

    .wishlistpage table tbody td:first-child a {
        width: 65px;
        height: 65px;
    }
}


/* =========================================================
   RESPONSIVE - MOBILE
========================================================= */

@media (max-width: 480px) {

    .wishlistpage {
        padding: 25px 0 40px;
    }

    .wishlistpage .container {
        padding: 0 12px !important;
    }

    .wishlistpage h2 {
        font-size: 22px;
    }

    .wishlistpage table {
        min-width: 650px;
    }

    .wishlistpage table tbody td {
        padding: 12px !important;
    }

    .wishlistpage .real_price,
    .wishlistpage .single-price {
        font-size: 14px;
    }

    .wishlistpage table tbody td:last-child a {
        min-width: 80px;
        height: 35px;
        padding: 0 12px;
        font-size: 12px;
    }
}

/* =========================================================
   CUSTOM HERO SWIPER
   All styles scoped to custom-hero-slider
========================================================= */

.custom-hero-slider {
    position: relative;
    width: 100%;
    overflow: hidden;
}

.custom-hero-slider .customHeroSwiper {
    width: 100%;
    position: relative;
}

.custom-hero-slider .custom-hero-slide {
    width: 100%;
    position: relative;
    overflow: hidden;
}

.custom-hero-slider .custom-hero-slide a {
    display: block;
    width: 100%;
    line-height: 0;
}

.custom-hero-slider .custom-hero-slide img {
    display: block;

    width: 100%;
    height: auto;

    object-fit: cover;

    transition: transform 0.5s ease;
}


/* =========================================================
   NAVIGATION ARROWS
========================================================= */

.custom-hero-slider .custom-hero-prev,
.custom-hero-slider .custom-hero-next {
    position: absolute;

    top: 50%;
    z-index: 10;

    width: 48px;
    height: 48px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background: rgba(255, 255, 255, 0.95);

    color: #7b3f98;

    cursor: pointer;

    transform: translateY(-50%);

    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);

    transition: all 0.3s ease;
}


/* Previous */

.custom-hero-slider .custom-hero-prev {
    left: 25px;
}


/* Next */

.custom-hero-slider .custom-hero-next {
    right: 25px;
}


/* Arrow */

.custom-hero-slider .custom-hero-prev span,
.custom-hero-slider .custom-hero-next span {
    display: block;

    margin-top: -4px;

    font-size: 35px;
    font-weight: 300;

    line-height: 1;
}


/* Hover */

.custom-hero-slider .custom-hero-prev:hover,
.custom-hero-slider .custom-hero-next:hover {
    background: #7b3f98;

    color: #ffffff;

    transform: translateY(-50%) scale(1.08);
}


/* =========================================================
   HIDE SWIPER PAGINATION
========================================================= */

.custom-hero-slider .swiper-pagination {
    display: none !important;
}


/* =========================================================
   DISABLED ARROW
========================================================= */

.custom-hero-slider .swiper-button-disabled {
    opacity: 0.4;
    cursor: not-allowed;
}
.related_products{
    padding: 50px 0;
}

/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 767px) {

    .custom-hero-slider .custom-hero-prev,
    .custom-hero-slider .custom-hero-next {
        width: 38px;
        height: 38px;
    }

    .custom-hero-slider .custom-hero-prev {
        left: 12px;
    }

    .custom-hero-slider .custom-hero-next {
        right: 12px;
    }

    .custom-hero-slider .custom-hero-prev span,
    .custom-hero-slider .custom-hero-next span {
        font-size: 28px;
    }
    .header-favourite, .header-cart {
        margin-right: 8px;
        margin-left: 6px;
    }
    .main-menu .header-user .user-toggle{
        gap: 0;
    }
    .header-cart-items a strong {
        top: -9px;
        right: -6px; 
    }
    .main-menu ul li{
		margin: 0;
	}
}
.brand_sec{
    padding: 40px 0;
}



.woocommerce-billing-fields h3 {
    display:none;
}
.woocommerce-info{
    display:none;
}





.about_innrer .about-img img{
    width: 100%;
    border-radius:10px;
}
.about_gallery_area{
    padding: 50px 0;
    background: #fff;
}
.about_gallery img{
    width: 100%;
    min-height: 400px;
    object-fit: cover;
    border-radius: 10px;
} 

.uie-about {
    position: relative;
    padding: 100px 20px;
    background: #f7f9fc;
    overflow: hidden;
    font-family: Arial, Helvetica, sans-serif;
}
.uie-about::before {
    content: "";
    position: absolute;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: rgba(15, 71, 128, 0.05);
    top: -180px;
    right: -120px;
}
.uie-container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}
.uie-about-grid {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 80px;
    align-items: center;
} /* ----------------------------------------- LEFT CONTENT ----------------------------------------- */
.uie-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: #0d5aa7;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 18px;
}
.uie-eyebrow::before {
    content: "";
    width: 35px;
    height: 2px;
    background: #f58220;
}
.uie-about-content h2 {
    margin: 0;
    color: #172b4d;
    font-size: 48px;
    line-height: 1.15;
    font-weight: 800;
    letter-spacing: -1px;
}
.uie-about-content h2 span {
    color: #0d63ad;
}
.uie-line {
    width: 70px;
    height: 4px;
    margin: 25px 0;
    background: #f58220;
    border-radius: 10px;
}
.uie-about-content p {
    color: #667085;
    font-size: 16px;
    line-height: 1.8;
    margin: 0 0 18px;
}
.uie-about-content .uie-lead {
    color: #344054;
    font-size: 18px;
    line-height: 1.7;
}
.uie-about-content .uie-lead strong {
    color: #0d5aa7;
}
.uie-btn {
    display: inline-flex;
    align-items: center;
    gap: 18px;
    margin-top: 15px;
    padding: 15px 24px;
    background: #0d5aa7;
    color: #fff;
    text-decoration: none;
    font-size: 15px;
    font-weight: 700;
    border-radius: 5px;
    transition: all 0.3s ease;
}
.uie-btn span {
    font-size: 20px;
    line-height: 1;
    transition: transform 0.3s ease;
}
.uie-btn:hover {
    background: #f58220;
    color: #fff;
    transform: translateY(-2px);
}
.uie-btn:hover span {
    transform: translateX(5px);
} /* ----------------------------------------- EXPERIENCE ----------------------------------------- */
.uie-about-side {
    position: relative;
}
.uie-experience {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 28px 30px;
    margin-bottom: 22px;
    background: #0d5aa7;
    border-radius: 8px;
    box-shadow: 0 15px 35px rgba(13, 90, 167, 0.18);
}
.uie-experience-number {
    color: #fff;
    font-size: 58px;
    line-height: 1;
    font-weight: 800;
}
.uie-experience-number span {
    color: #f58220;
    font-size: 32px;
}
.uie-experience-text {
    display: flex;
    flex-direction: column;
    color: #fff;
}
.uie-experience-text strong {
    font-size: 21px;
    margin-bottom: 5px;
}
.uie-experience-text span {
    font-size: 14px;
    opacity: 0.8;
} /* ----------------------------------------- FEATURE CARDS ----------------------------------------- */
.uie-features {
    display: flex;
    flex-direction: column;
    gap: 15px;
}
.uie-feature {
    display: flex;
    gap: 18px;
    padding: 22px;
    background: #fff;
    border: 1px solid #e8edf3;
    border-radius: 8px;
    transition: all 0.3s ease;
}
.uie-feature:hover {
    transform: translateX(7px);
    border-color: #0d5aa7;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.07);
}
.uie-icon {
    flex: 0 0 48px;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #edf5fc;
    color: #0d5aa7;
    border-radius: 6px;
    font-size: 22px;
    font-weight: 700;
}
.uie-feature h3 {
    margin: 0 0 6px;
    color: #172b4d;
    font-size: 18px;
    font-weight: 700;
}
.uie-feature p {
    margin: 0;
    color: #7a869a;
    font-size: 14px;
    line-height: 1.6;
} /* ----------------------------------------- TRUST BAR ----------------------------------------- */
.uie-trust-bar {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    margin-top: 75px;
    padding: 28px 0;
    border-top: 1px solid #dfe5ec;
    border-bottom: 1px solid #dfe5ec;
}
.uie-trust-item {
    padding: 0 25px;
    border-right: 1px solid #dfe5ec;
}
.uie-trust-item:first-child {
    padding-left: 0;
}
.uie-trust-item:last-child {
    border-right: none;
}
.uie-trust-item strong {
    display: block;
    color: #172b4d;
    font-size: 16px;
    margin-bottom: 5px;
}
.uie-trust-item span {
    color: #7a869a;
    font-size: 13px;
} /* ----------------------------------------- TABLET ----------------------------------------- */
@media (max-width: 991px) {
    .uie-about {
        padding: 80px 20px;
    }
    .uie-about-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    .uie-about-content h2 {
        font-size: 40px;
    }
    .uie-trust-bar {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px 0;
    }
    .uie-trust-item:nth-child(2) {
        border-right: none;
    }
} /* ----------------------------------------- MOBILE ----------------------------------------- */
@media (max-width: 575px) {
    .uie-about {
        padding: 60px 15px;
    }
    .uie-about-content h2 {
        font-size: 32px;
    }
    .uie-about-content p {
        font-size: 15px;
    }
    .uie-about-content .uie-lead {
        font-size: 16px;
    }
    .uie-experience {
        padding: 22px;
    }
    .uie-experience-number {
        font-size: 45px;
    }
    .uie-experience-text strong {
        font-size: 18px;
    }
    .uie-feature {
        padding: 18px;
    }
    .uie-trust-bar {
        grid-template-columns: 1fr;
        gap: 20px;
        margin-top: 50px;
    }
    .uie-trust-item {
        padding: 0 0 20px;
        border-right: none;
        border-bottom: 1px solid #dfe5ec;
    }
    .uie-trust-item:last-child {
        border-bottom: none;
        padding-bottom: 0;
    }
}



.quality-service {
    padding: 100px 20px;
    background: #ffffff;
    font-family: Arial, Helvetica, sans-serif;
}
.quality-container {
    max-width: 1200px;
    margin: 0 auto;
}
.quality-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 90px;
    align-items: center;
} /* Content */
.quality-label {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: #0d5aa7;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 18px;
}
.quality-label::before {
    content: "";
    width: 35px;
    height: 2px;
    background: #f58220;
}
.quality-content h2 {
    margin: 0;
    color: #172b4d;
    font-size: 48px;
    line-height: 1.15;
    font-weight: 800;
    letter-spacing: -1px;
}
.quality-content h2 span {
    color: #0d63ad;
}
.quality-line {
    width: 70px;
    height: 4px;
    margin: 25px 0;
    background: #f58220;
    border-radius: 10px;
}
.quality-content p {
    margin: 0;
    color: #667085;
    font-size: 16px;
    line-height: 1.85;
} /* Features */
.quality-features {
    display: flex;
    flex-direction: column;
    border-top: 1px solid #e3e8ef;
}
.quality-feature {
    display: flex;
    align-items: center;
    gap: 22px;
    padding: 25px 20px;
    border-bottom: 1px solid #e3e8ef;
    transition: all 0.3s ease;
}
.quality-feature:hover {
    background: #f6f9fc;
    padding-left: 28px;
}
.quality-number {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 48px;
    height: 48px;
    border-radius: 50%;
    background: #edf5fc;
    color: #0d5aa7;
    font-size: 13px;
    font-weight: 700;
    transition: all 0.3s ease;
}
.quality-feature:hover .quality-number {
    background: #0d5aa7;
    color: #ffffff;
}
.quality-feature h3 {
    margin: 0;
    color: #172b4d;
    font-size: 17px;
    font-weight: 700;
} /* Tablet */
@media (max-width: 991px) {
    .quality-service {
        padding: 80px 20px;
    }
    .quality-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    .quality-content h2 {
        font-size: 40px;
    }
} /* Mobile */
@media (max-width: 575px) {
    .quality-service {
        padding: 60px 15px;
    }
    .quality-content h2 {
        font-size: 32px;
    }
    .quality-content p {
        font-size: 15px;
        line-height: 1.75;
    }
    .quality-feature {
        padding: 20px 10px;
        gap: 15px;
    }
    .quality-feature:hover {
        padding-left: 15px;
    }
    .quality-feature h3 {
        font-size: 15px;
    }
}


.businesses-section {
    padding: 100px 20px;
    background: #f7f9fc;
    font-family: Arial, Helvetica, sans-serif;
}
.businesses-container {
    max-width: 1200px;
    margin: 0 auto;
} /* ========================================= HEADER ========================================= */
.businesses-header {
    max-width: 850px;
    margin: 0 auto 65px;
    text-align: center;
}
.businesses-label {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: #0d5aa7;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 15px;
}
.businesses-label::before,
.businesses-label::after {
    content: "";
    width: 30px;
    height: 2px;
    background: #f58220;
}
.businesses-header h2 {
    margin: 0;
    color: #172b4d;
    font-size: 48px;
    line-height: 1.15;
    font-weight: 800;
}
.businesses-header h2 span {
    color: #0d63ad;
}
.businesses-line {
    width: 65px;
    height: 4px;
    margin: 22px auto;
    background: #f58220;
    border-radius: 10px;
}
.businesses-header p {
    margin: 0;
    color: #667085;
    font-size: 16px;
    line-height: 1.8;
}
.businesses-header strong {
    color: #0d5aa7;
} /* ========================================= BUSINESS CARDS ========================================= */
.businesses-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
    margin-bottom: 80px;
}
.business-card {
    padding: 35px;
    background: #ffffff;
    border: 1px solid #e3e8ef;
    border-radius: 8px;
    transition: all 0.3s ease;
}
.business-card:hover {
    transform: translateY(-5px);
    border-color: #0d5aa7;
    box-shadow: 0 18px 40px rgba(13, 90, 167, 0.1);
}
.business-card-header {
    display: flex;
    align-items: center;
    gap: 18px;
    margin-bottom: 22px;
}
.business-card-number {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    flex-shrink: 0;
    border-radius: 50%;
    background: #edf5fc;
    color: #0d5aa7;
    font-size: 13px;
    font-weight: 700;
}
.business-card-header h3 {
    margin: 0;
    color: #172b4d;
    font-size: 21px;
    font-weight: 800;
}
.business-card h4 {
    margin: 0 0 20px;
    color: #0d5aa7;
    font-size: 16px;
    font-weight: 600;
} /* ========================================= BUSINESS LIST ========================================= */
.business-list {
    display: flex;
    flex-direction: column;
}
.business-item {
    display: flex;
    gap: 15px;
    padding: 18px 0;
    border-top: 1px solid #e8edf3;
}
.business-icon {
    width: 34px;
    height: 34px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    background: #f58220;
    color: #ffffff;
    border-radius: 4px;
    font-size: 11px;
    font-weight: 700;
}
.business-item h5 {
    margin: 0 0 5px;
    color: #172b4d;
    font-size: 16px;
    font-weight: 700;
}
.business-item p {
    margin: 0;
    color: #7a869a;
    font-size: 14px;
    line-height: 1.6;
} /* ========================================= PRODUCT CATEGORIES ========================================= */
.category-section {
    margin-bottom: 80px;
}
.category-heading {
    margin-bottom: 30px;
}
.category-heading h3 {
    margin: 5px 0 0;
    color: #172b4d;
    font-size: 32px;
    font-weight: 800;
}
.category-heading h3 span {
    color: #0d63ad;
}
.category-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
}
.category-item {
    display: flex;
    align-items: center;
    gap: 15px;
    min-height: 72px;
    padding: 15px 20px;
    background: #ffffff;
    border: 1px solid #e3e8ef;
    border-radius: 5px;
    transition: all 0.3s ease;
}
.category-item span  img{
    height: 60px;
    border-radius: 5px;
}
.category-item:hover {
    background: #0d5aa7;
    border-color: #0d5aa7;
    transform: translateY(-3px);
}
.category-item span {
    color: #f58220;
    font-size: 12px;
    font-weight: 700;
}
.category-item strong {
    color: #344054;
    font-size: 14px;
}
.category-item:hover strong {
    color: #ffffff;
} /* ========================================= VALUE ADDED SERVICES ========================================= */
.value-section {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 70px;
    padding: 55px;
    background: #0d5aa7;
    border-radius: 8px;
    position: relative;
    overflow: hidden;
}
.value-section::after {
    content: "";
    position: absolute;
    width: 300px;
    height: 300px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 50%;
    right: -120px;
    bottom: -160px;
}
.value-content {
    position: relative;
    z-index: 1;
}
.value-content .businesses-label {
    color: #ffffff;
}
.value-content .businesses-label::before,
.value-content .businesses-label::after {
    background: #f58220;
}
.value-content h3 {
    margin: 0 0 20px;
    color: #ffffff;
    font-size: 34px;
    line-height: 1.25;
    font-weight: 800;
}
.value-content h3 span {
    color: #f58220;
}
.value-content p {
    margin: 0;
    color: rgba(255, 255, 255, 0.78);
    font-size: 15px;
    line-height: 1.8;
} /* ========================================= VALUE LIST ========================================= */
.value-list {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.value-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding: 17px 20px;
    background: rgba(255, 255, 255, 0.09);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 5px;
}
.value-check {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 27px;
    height: 27px;
    flex-shrink: 0;
    background: #f58220;
    color: #ffffff;
    border-radius: 50%;
    font-size: 13px;
    font-weight: 700;
}
.value-item p {
    margin: 0;
    color: #ffffff;
    font-size: 14px;
    line-height: 1.6;
}
.value-item strong {
    color: #f58220;
} /* ========================================= TABLET ========================================= */
@media (max-width: 991px) {
    .businesses-section {
        padding: 80px 20px;
    }
    .businesses-header h2 {
        font-size: 40px;
    }
    .businesses-grid {
        grid-template-columns: 1fr;
    }
    .category-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .value-section {
        grid-template-columns: 1fr;
        gap: 40px;
        padding: 40px;
    }
} /* ========================================= MOBILE ========================================= */
@media (max-width: 575px) {
    .businesses-section {
        padding: 60px 15px;
    }
    .businesses-header {
        margin-bottom: 45px;
    }
    .businesses-header h2 {
        font-size: 32px;
    }
    .businesses-header p {
        font-size: 15px;
    }
    .business-card {
        padding: 25px 20px;
    }
    .business-card-header h3 {
        font-size: 18px;
    }
    .category-section {
        margin-bottom: 55px;
    }
    .category-heading h3 {
        font-size: 26px;
    }
    .category-grid {
        grid-template-columns: 1fr;
    }
    .value-section {
        padding: 30px 20px;
        gap: 30px;
    }
    .value-content h3 {
        font-size: 27px;
    }
    .value-item {
        padding: 15px;
    }
}

.procurement-values-section {
    padding: 100px 20px;
    background: #f7f9fc;
    font-family: Arial, Helvetica, sans-serif;
}
.procurement-container {
    max-width: 1200px;
    margin: 0 auto;
} /* ========================================= HEADERS ========================================= */
.procurement-header,
.values-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 55px;
}
.values-header {
    margin-top: 100px;
}
.procurement-label {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: #0d5aa7;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 15px;
}
.procurement-label::before,
.procurement-label::after {
    content: "";
    width: 30px;
    height: 2px;
    background: #f58220;
}
.procurement-header h2,
.values-header h2 {
    margin: 0;
    color: #172b4d;
    font-size: 46px;
    line-height: 1.15;
    font-weight: 800;
}
.procurement-header h2 span,
.values-header h2 span {
    color: #0d63ad;
}
.procurement-line {
    width: 65px;
    height: 4px;
    margin: 22px auto 0;
    background: #f58220;
    border-radius: 10px;
} /* ========================================= PROCUREMENT CARDS ========================================= */
.procurement-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 22px;
}
.procurement-card {
    position: relative;
    padding: 32px;
    background: #ffffff;
    border: 1px solid #e3e8ef;
    border-radius: 8px;
    overflow: hidden;
    transition: all 0.3s ease;
}
.procurement-card::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 4px;
    height: 0;
    background: #f58220;
    transition: height 0.3s ease;
}
.procurement-card:hover {
    transform: translateY(-5px);
    border-color: #0d5aa7;
    box-shadow: 0 18px 40px rgba(13, 90, 167, 0.1);
}
.procurement-card:hover::before {
    height: 100%;
}
.procurement-card-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 25px;
}
.procurement-number {
    color: #0d5aa7;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 1px;
}
.procurement-icon {
    width: 46px;
    height: 46px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #edf5fc;
    color: #0d5aa7;
    border-radius: 6px;
    font-size: 20px;
    font-weight: 700;
    transition: all 0.3s ease;
}
.procurement-card:hover .procurement-icon {
    background: #0d5aa7;
    color: #ffffff;
}
.procurement-card h3 {
    margin: 0 0 15px;
    color: #172b4d;
    font-size: 20px;
    line-height: 1.4;
    font-weight: 750;
}
.procurement-card p {
    margin: 0;
    color: #667085;
    font-size: 15px;
    line-height: 1.8;
} /* ========================================= VALUES ========================================= */
.values-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 22px;
}
.value-card {
    position: relative;
    display: flex;
    gap: 25px;
    padding: 35px;
    background: #0d5aa7;
    border-radius: 8px;
    overflow: hidden;
    transition: all 0.3s ease;
}
.value-card::after {
    content: "";
    position: absolute;
    width: 190px;
    height: 190px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 50%;
    right: -80px;
    bottom: -100px;
}
.value-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(13, 90, 167, 0.18);
}
.value-card-number {
    position: relative;
    z-index: 1;
    flex: 0 0 55px;
    width: 55px;
    height: 55px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    color: #f58220;
    font-size: 14px;
    font-weight: 800;
}
.value-card-content {
    position: relative;
    z-index: 1;
}
.value-card-content h3 {
    margin: 0 0 15px;
    color: #ffffff;
    font-size: 21px;
    line-height: 1.4;
    font-weight: 750;
}
.value-card-content p {
    margin: 0;
    color: rgba(255, 255, 255, 0.78);
    font-size: 15px;
    line-height: 1.8;
} /* ========================================= TABLET ========================================= */
@media (max-width: 991px) {
    .procurement-values-section {
        padding: 80px 20px;
    }
    .procurement-header h2,
    .values-header h2 {
        font-size: 40px;
    }
    .procurement-grid,
    .values-grid {
        grid-template-columns: 1fr;
    }
    .values-header {
        margin-top: 80px;
    }
} /* ========================================= MOBILE ========================================= */
@media (max-width: 575px) {
    .procurement-values-section {
        padding: 60px 15px;
    }
    .procurement-header,
    .values-header {
        margin-bottom: 40px;
    }
    .procurement-header h2,
    .values-header h2 {
        font-size: 31px;
    }
    .procurement-card {
        padding: 25px 20px;
    }
    .procurement-card h3 {
        font-size: 18px;
    }
    .procurement-card p {
        font-size: 14px;
        line-height: 1.7;
    }
    .values-header {
        margin-top: 60px;
    }
    .value-card {
        gap: 18px;
        padding: 25px 20px;
    }
    .value-card-number {
        flex: 0 0 45px;
        width: 45px;
        height: 45px;
    }
    .value-card-content h3 {
        font-size: 18px;
    }
    .value-card-content p {
        font-size: 14px;
        line-height: 1.7;
    }
}



 /* Main Section */
        .branches-section {
            padding: 70px 20px;
        }

        .branches-container {
            max-width: 1200px;
            margin: auto;
        }

        /* Header */
        .branches-header {
            text-align: center;
            margin-bottom: 45px;
        }

        .branches-header .small-title {
            color: #70268f;
            font-size: 15px;
            font-weight: 600;
            letter-spacing: 2px;
            text-transform: uppercase;
            margin-bottom: 10px;
        }

        .branches-header h1 {
            font-size: 42px;
            color: #222;
            margin-bottom: 12px;
        }

        .branches-header h1 span {
            color: #70268f;
        }

        .branches-header p {
            color: #777;
            font-size: 16px;
        }

        /* Branch Grid */
        .branch-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 25px;
        }

        /* Card */
        .branch-card {
            position: relative;
            background: #fff;
            border-radius: 18px;
            padding: 30px 24px;
            min-height: 350px;
            overflow: hidden;

            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);

            transition:
                transform 0.3s ease,
                box-shadow 0.3s ease;
        }

        .branch-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 18px 40px rgba(0, 0, 0, 0.14);
        }

        /* Top decoration */
        .branch-card::before {
            content: "";
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 6px;
            background: #70268f;
        }

        /* Region */
        .region {
            display: inline-block;
            background: #f0e7f5;
            color: #70268f;
            padding: 7px 14px;
            border-radius: 30px;
            font-size: 12px;
            font-weight: bold;
            letter-spacing: 1px;
            margin-bottom: 22px;
        }

        /* Icon */
        .branch-icon {
            width: 55px;
            height: 55px;
            border-radius: 50%;
            background: #70268f;
            color: white;

            display: flex;
            align-items: center;
            justify-content: center;

            font-size: 25px;
            margin-bottom: 20px;
        }

        /* Company */
        .company-name {
            font-size: 17px;
            font-weight: bold;
            color: #70268f;
            line-height: 1.4;
            margin-bottom: 14px;
        }

        /* Address */
        .address {
            font-size: 13px;
            color: #666;
            line-height: 1.7;
            margin-bottom: 15px;
        }

        /* Contact */
        .contact {
            font-size: 13px;
            color: #444;
            line-height: 1.7;
            margin-top: 12px;
        }

        .contact strong {
            color: #70268f;
        }

        /* Email */
        .email {
            font-size: 12px;
            color: #777;
            margin-top: 8px;
            line-height: 1.6;
            word-break: break-word;
        }

        /* Coming Soon */
        .coming-soon-card {
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            text-align: center;
        }

        .coming-soon-card .branch-icon {
            font-size: 28px;
        }

        .coming-soon {
            font-size: 25px;
            font-weight: bold;
            color: #70268f;
            line-height: 1.3;
        }

        .coming-text {
            color: #888;
            font-size: 14px;
            margin-top: 12px;
        }

        /* Card Footer */
        .card-footer {
            position: absolute;
            bottom: 20px;
            left: 24px;
            right: 24px;

            border-top: 1px solid #eee;
            padding-top: 12px;

            font-size: 11px;
            color: #aaa;
        }

        /* Responsive */
        @media (max-width: 1000px) {
            .branch-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        @media (max-width: 600px) {
            .branches-section {
                padding: 45px 15px;
            }

            .branches-header h1 {
                font-size: 32px;
            }

            .branch-grid {
                grid-template-columns: 1fr;
            }

            .branch-card {
                min-height: auto;
                padding-bottom: 30px;
            }

            .card-footer {
                position: static;
                margin-top: 20px;
            }
        }