.page-header{
    position: relative;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    border-radius: 20px;
    padding: 295px 0 180px;
    margin: 15px 15px 0;
    overflow: hidden;
}
.page-header:before{
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background: linear-gradient(180deg, rgba(2, 22, 35, 0.40) 10%, rgba(2, 22, 35, 0.00) 45%, rgba(2, 22, 35, 0.80) 90%);
    height: 100%;
    width: 100%;
    z-index: 1;
}
.page-header .container,
.page-header .row{
    position: relative;
    z-index: 2;
}
.page-header-box{
    position: relative;
    z-index: 2;
}
.page-header-box h1{
    display: inline-block;
    font-size: 60px;
    line-height: 1.1em;
    color: var(--white-color);
    margin-bottom: 10px;
    cursor: none;
}
.page-header-box nav{
    margin-top: 0;
}
.page-header-box ol{
    margin: 0;
    padding: 0;
}
.page-header-box ol li.breadcrumb-item{
    line-height: 1.5em;
    text-transform: capitalize;
    color: var(--white-color);
}
.page-header-box ol li.breadcrumb-item a{
    color: inherit;
    text-decoration: none;
}
.page-header-box ol .breadcrumb-item + .breadcrumb-item::before{
    color: var(--white-color);
}
.about-page-template .our-approach{
    padding: 120px 0;
}
.about-page-template .approach-item{
    background-color: var(--bg-color);
    border-radius: 20px;
    height: calc(100% - 30px);
    margin-bottom: 30px;
    padding: 40px;
}
.about-page-template .approach-item-image{
    width: 100%;
    max-width: 185px;
    margin-bottom: 40px;
}
.about-page-template .approach-item-image figure{
    display: block;
    background-image: url('../../../images/approach-image-shape.svg');
    mask-image: url('../../../images/approach-image-shape.svg');
    mask-size: cover;
    mask-position: center center;
    mask-repeat: no-repeat;
    width: 100%;
    height: 100%;
    border-radius: 20px;
}
.about-page-template .approach-item-image figure img{
    width: 100%;
    aspect-ratio: 1 / 0.975;
    object-fit: cover;
    border-radius: 20px;
}
.about-page-template .approach-item-contant h3{
    font-size: 26px;
}
.about-page-template .approach-item-contant p{
    border-top: 1px solid var(--divider-color);
    padding-top: 20px;
    margin: 20px 0 0;
}
.about-page-template .our-benefits{
    padding: 120px 0;
}
.about-page-template .benefit-item{
    min-height: 420px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 30px;
    background-color: var(--bg-color);
    border-radius: 20px;
    height: calc(100% - 30px);
    margin-bottom: 30px;
    padding: 40px;
    transition: all 0.4s ease-in-out;
}
.about-page-template .benefit-item-content h3{
    font-size: 26px;
}
.about-page-template .benefit-item-content p{
    margin: 15px 0 0;
}
.about-page-template .benefit-item-counter{
    display: flex;
    align-items: center;
    gap: 10px;
    border-top: 1px solid var(--divider-color);
    padding-top: 30px;
}
.about-page-template .benefit-item-counter h2{
    min-width: 120px;
    font-size: 52px;
}
.about-page-template .benefit-item-counter p{
    max-width: 195px;
    margin: 0;
}

/************************************/
/***     About pricing css      ***/
/************************************/
.about-page-template .our-pricing{
    padding-top: 120px;
}

.about-page-template .text-split{
    display: -webkit-box;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}
.about-page-template .text-split-2{
    -webkit-line-clamp: 2;
    line-clamp: 2;
}
@keyframes infiniterotate{
    100% {
        transform: rotate(360deg);
    }
}

.about-page-template .our-benefits{
    padding: 120px 0;
}
.about-page-template .benefit-item{
    min-height: 420px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 30px;
    background-color: var(--bg-color);
    border-radius: 20px;
    height: calc(100% - 30px);
    margin-bottom: 30px;
    padding: 40px;
    transition: all 0.4s ease-in-out;
}
.about-page-template .benefit-item-content h3{
    font-size: 26px;
}
.about-page-template .benefit-item-content p{
    margin: 15px 0 0;
}
.about-page-template .benefit-item-counter{
    display: flex;
    align-items: center;
    gap: 10px;
    border-top: 1px solid var(--divider-color);
    padding-top: 30px;
}
.about-page-template .benefit-item-counter h2{
    min-width: 120px;
    font-size: 52px;
}
.about-page-template .benefit-item-counter p{
    max-width: 195px;
    margin: 0;
}

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

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

.team-item-image a{
	cursor: none;
}

.team-item-image figure{
	position: relative;
	display: block;
}

.team-item-image figure::before{
	content: "";
	position: absolute;
	left: 0;
	right: 0;
	bottom: 0;
	top: 0;
	background: linear-gradient(180deg, transparent 50%, rgba(2, 22, 35, 0.90) 95%);
	width: 100%;
	height: 100%;
	z-index: 1;
}

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

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

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

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

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

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

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

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

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

.team-item-social-list ul li a:hover{
	background: var(--accent-color);
}

.team-item-social-list ul li a i{
	font-size: 18px;
	color: var(--white-color);
	transition: all 0.4s ease-in-out;
}


.about-page-template .our-testimonials{
    padding: 120px 0;
    background-image: url('../../../images/testimonial-bg-image.png');
    background-repeat: no-repeat;
    background-size: auto;
    background-position: center center;
}
.about-page-template .testimonial-marquee{
    overflow: hidden;
    margin-top: 40px;
}
.about-page-template .testimonial-track{
    display: flex;
    width: max-content;
    gap: 24px;
    animation: testimonial-scroll 30s linear infinite;
}
.about-page-template .testimonial-group{
    display: flex;
    flex-shrink: 0;
    gap: 24px;
}
.about-page-template .testimonial-item{
    width: min(360px, calc(100vw - 40px));
    min-width: 320px;
    height: 100%;
    min-height: 475px;
    background-color: var(--bg-color);
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 30px;
    padding: 40px;
}
.about-page-template .testimonial-item-author{
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 15px;
}
.about-page-template .testimonial-author-image figure{
    display: block;
    border-radius: 50%;
    overflow: hidden;
    margin: 0;
}
.about-page-template .testimonial-author-image figure img{
    width: 100%;
    max-width: 50px;
    border-radius: 50%;
}
.about-page-template .testimonial-author-content{
    width: calc(100% - 65px);
}
.about-page-template .testimonial-author-content h2{
    font-size: 20px;
}
.about-page-template .testimonial-author-content p{
    line-height: normal;
    margin: 5px 0 0;
}
.about-page-template .testimonial-item-rating{
    margin-bottom: 20px;
}
.about-page-template .testimonial-item-rating i{
    font-size: 16px;
    color: var(--accent-color);
}
.about-page-template .testimonial-item-content p{
    font-family: var(--accent-font);
    font-size: 20px;
    font-weight: 500;
    line-height: 1.45em;
    color: var(--primary-color);
    margin-bottom: 20px;
}
.about-page-template .testimonial-item-content p:last-child{
    margin: 0;
}
.about-page-template .testimonial-item-counter{
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 15px;
    border-top: 1px solid var(--divider-color);
    margin-top: 30px;
    padding-top: 30px;
}
.about-page-template .testimonial-item-counter h2{
    min-width: 95px;
    font-size: 52px;
}
.about-page-template .testimonial-item-counter p{
    max-width: 190px;
    margin: 0;
}
.about-page-template .testimonial-marquee:hover .testimonial-track{
    animation-play-state: paused;
}
@keyframes testimonial-scroll{
    from {
        transform: translateX(0);
    }
    to {
        transform: translateX(calc(-50% - 12px));
    }
}
