/************************************/
/***       06. About Us css       ***/
/************************************/

.about-us{
	position: relative;
	padding: 160px 0 80px;
}
.about-us::before{
    content: '';
    display: block;
    position: absolute;
    right: -20px;
    bottom: 80px;
    background: url(../images/resources/section-bg-shape-1.png) no-repeat;
    background-position: right bottom;
    background-size: cover;
    width: 250px;
    height: 250px;
    transform: rotate(10deg);
    opacity: 40%;
    animation: circlerotate 10s infinite linear;
    animation-direction: alternate;
    z-index: -1;
}
@keyframes circlerotate{
	0%{
		transform: translateY(0) rotate(0);
	}
	100%{
		transform: translateY(-100%) rotate(360deg);
	}
}
.about-us-images{
    position: relative;
    padding: 110px 195px 150px 20px;
    margin-right: 50px;
}
.about-image-1 figure,
.about-image-2 figure,
.about-image-3 figure{
	display: block;
	border-radius: 30px;
	overflow: hidden;
}
.about-image-1 img,
.about-image-2 img,
.about-image-3 img{
	width: 100%;
	object-fit: cover;
	border-radius: 30px;
}
.about-image-1{
	transform: rotate(-7deg);
}
.about-image-1 img{
	aspect-ratio: 1 / 1.265;
}
.about-image-2{
	position: absolute;
	top: 10px;
    right: 5px;
	width: 100%;
	max-width: 340px;
	transform: rotate(5deg);
}
.about-image-2 img{
	aspect-ratio: 1 / 0.521;
}
.about-image-3{
	position: absolute;
	bottom: 15px;
    right: 20px;
	width: 100%;
	max-width: 255px;
	transform: rotate(9deg);
}
.about-image-3 figure img{
	aspect-ratio: 1 / 1.199;
}
.about-image-circle{
    position: absolute;
    top: 0;
    left: 50%;
	width: 100%;
	max-width: 160px;
	transform: translate(-50%, -65%) rotate(-9deg);
	animation: about-infiniterotate 25s infinite linear;
}
.about-image-circle a{
	display: block;
}
@keyframes about-infiniterotate{
	from{
		transform: translate(-50%, -65%) rotate(0deg);
	}
	to{
		transform: translate(-50%, -65%) rotate(360deg);
	}
}
.about-us-list,
.about-us-body{
	margin-bottom: 40px;
}
.about-us-list ul{
	list-style: none;
	margin: 0;
	padding: 0;
}
.about-us-list ul li{
	position: relative;
	text-transform: none;
	line-height: normal;
	padding-left: 30px;
	margin-bottom: 20px;
}
.about-us-list ul li:last-child{
	margin-bottom: 0;
}
.about-us-list ul li::before{
	content: '\f192';
    font-family: 'Font Awesome 6 Free';
	position: absolute;
    font-size: 18px;
    color: var(--accent-color);
    top: 3px;
    left: 0;
}
.about-us-body{
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 30px;
}
.about-body-image,
.about-body-content{
	/* width: calc(50% - 15px); */  width: calc(60% - 15px);
}
.about-body-image figure{
	display: block;
	border-radius: 20px;
}
.about-body-image img{
	width: 100%;
	object-fit: cover;
	aspect-ratio: 1 / 0.34;
	border-radius: 20px;
}
.about-body-content h3{
	font-size: 22px;
	line-height: 1.4em;
}
.about-body-content h3 span{
	color: var(--accent-color);
}
.about-us-footer{
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 20px 40px;
}
.about-contact-box{
	display: flex;
	align-items: center;
}
.about-contact-box .icon-box{
	position: relative;
	width: 54px;
	height: 54px;
	display: flex;
	align-items: center;
	justify-content: center;
	border: 1px solid var(--accent-color);
	border-radius: 50%;
	margin-right: 20px;
	overflow: hidden;
	transition: all 0.5s ease-in-out;
}
.about-contact-box:hover .icon-box{
	border-color: transparent;
}
.about-contact-box .icon-box::before{
	content: '';
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--primary-color);
    width: 100%;
    height: 100%;
	border-radius: 50%;
	transform: scale(0);
    transition: all 0.4s ease-in-out;
    z-index: -1;
}
.about-contact-box:hover .icon-box::before{
	transform: scale(1);
}
.about-contact-box .icon-box img{
	width: 100%;
	max-width: 25px;
	transition: all 0.4s ease-in-out;
}
.about-contact-box:hover .icon-box img{
	filter: brightness(0) invert(0);
}
.about-contact-content p{
	margin-bottom: 5px;
}
.about-contact-content h3{
	font-size: 22px;
}
.about-contact-content h3 a{
	color: inherit;
}


/************************************/
/***     07. Our Services css     ***/
/************************************/

.our-services{
	padding: 80px 0;
}
.our-services-content{
	position: sticky;
	top: 30px;
	margin-right: 30px;
}
.service-list-item{
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	border-bottom: 1px solid var(--divider-color);
	margin-bottom: 40px;
	padding-bottom: 40px;
}
.service-list-item:last-child{
	border-bottom: none;
	margin-bottom: 0;
	padding-bottom: 0;
}
.service-item{
	display: flex;
	width: calc(100% - 38px);
}
.service-item .icon-box{
	position: relative;
	height: 60px;
	width: 60px;
	display: flex;
	justify-content: center;
	align-items: center;
	border: 1px solid var(--accent-color);
	border-radius: 50%;
	margin-right: 20px;
	transition: all 0.5s ease-in-out;
}
.service-list-item:hover .service-item .icon-box{
    border-color: transparent;
}
.service-item .icon-box::before{
	content: '';
	display: block;
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: var(--accent-color);
	border-radius: 50%;
	transform: scale(0);
	transition: all 0.4s ease-in-out;
}
.service-list-item:hover .service-item .icon-box::before{
	transform: scale(1);
}
.service-item .icon-box img{
	position: relative;
	max-width: 30px;
	transition: all 0.4s ease-in-out;
	z-index: 1;
}
.service-list-item:hover .service-item .icon-box img{
	filter: brightness(0) invert(0);
}
.service-list-content{
	width: calc(100% - 80px);
}
.service-list-content h3{
	font-size: 22px;
	text-transform: capitalize;
	margin-bottom: 10px;
}
.service-list-content p{
	margin: 0;
}
.service-readmore-btn{
	margin-left: 20px;
}
.service-readmore-btn a{
	display: inline-block;
}
.service-readmore-btn a img{
	max-width: 18px;
	transition: all 0.4s ease-in-out;
}
.service-readmore-btn a:hover img{
	transform: rotate(45deg);
}



/************************************/
/***     09. Why Choose Us css    ***/
/************************************/
.why-choose-us{
	position: relative;
	padding: 80px 0;
}
.why-choose-us::before{
    content: '';
    display: block;
    position: absolute;
    left: -70px;
    bottom: 100px;
    background: url(../images/resources/section-bg-shape-3.png) no-repeat;
    background-position: left bottom;
    background-size: contain;
    opacity: 50%;
    width: 325px;
    height: 325px;
    animation: squrerotate 10s infinite linear;
	animation-iteration-count: infinite;
	animation-direction: alternate;
    z-index: -1;
}
@keyframes squrerotate{
	0%{
		transform: translate(0, 0) rotate(0deg);
    }
	50%{
		transform: translate(-50px, -50%) rotate(180deg);
	}
    100%{
        transform: translate(0, -120%) rotate(360deg);
    }
}
.why-choose-list-item{
	border-bottom: 1px solid var(--divider-color);
	margin-bottom: 60px;
	padding-bottom: 60px;
}
.why-choose-list-item:last-child{
	border-bottom: none;
	margin-bottom: 0;
	padding-bottom: 0;
}
.why-choose-list-item h3{
	position: relative;
	font-size: 22px;
	text-transform: capitalize;
	margin-bottom: 20px;
	padding-left: 30px;
}
.why-choose-list-item h3::before{
	content: '';
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    background: url(../images/resources/icon-sub-heading.svg) no-repeat;
    background-position: left center;
    background-size: cover;
    width: 20px;
    height: 20px;
}
.why-choose-list-item p{
	margin-bottom: 0;
}

.why-choose-images{
	position: relative;
}
.why-choose-circle{
	position: relative;
	z-index: 2;
}
.why-choose-circle img{
	animation: infiniterotate 30s infinite linear;
}
@keyframes infiniterotate{
	from{
		transform: rotate(0deg);
	  }
	to{
		transform: rotate(360deg);
	}
}
.why-choose-img{
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    max-width: 380px;
	transform: translate(-50%, -50%);
}
.why-choose-img img{
	width: 100%;
	aspect-ratio: 1 / 1.132;
	object-fit: cover;
}




/************************************/
/***      34. Responsive css      ***/
/************************************/

@media only screen and (max-width: 991px){
    /* ****** ABOUT US SECTION ****** */
	.about-us{
		padding: 80px 0 40px;
	}
	.about-us::before{
		bottom: 40px;
		width: 170px;
		height: 170px;
		opacity: 20%;
	}
	.about-us-images{
		max-width: 70%;
		margin: 0 auto 30px;
	}
	.about-image-circle{
		position: absolute;
		max-width: 130px;
		transform: translate(-50%, -55%) rotate(-9deg);
	}
	.about-us-list,
	.about-us-body{
		margin-bottom: 30px;
	}
	.about-us-list ul li{
		padding-left: 25px;
		margin-bottom: 15px;
	}

	.about-us-list ul li::before{
		font-size: 16px;
	}
	.about-body-content h3{
		font-size: 20px;
	}
	.about-contact-content h3{
		font-size: 20px;
	}


    /* ****** SERVICE SECTION ****** */
    .our-services{
		padding: 40px 0;
	}
	.our-services-content{
		position: initial;
		margin: 0 0 30px 0;
	}
    .service-list-item{
		margin-bottom: 30px;
		padding-bottom: 30px;
	}
	.service-item .icon-box{
		height: 50px;
		width: 50px;
	}
	.service-item .icon-box img{
		max-width: 25px;
	}
	.service-list-content{
		width: calc(100% - 70px);
	}
	.service-list-content h3{
		font-size: 20px;
	}


    /* ****** WHY CHOOSE SECTION ****** */
    .why-choose-us{
		padding: 40px 0;
	}
	.why-choose-us::before{
        left: -40px;
        height: 180px;
        width: 180px;
        opacity: 30%;
    }
	.why-choose-list-item{
		margin-bottom: 30px;
		padding-bottom: 30px;
	}
	.why-choose-list-item h3{
		font-size: 20px;
		margin-bottom: 15px;
		padding-left: 25px;
	}
	.why-choose-list-item h3::before{
		width: 18px;
		height: 18px;
	}
	.why-choose-images{
		width: 100%;
		max-width: 80%;
		margin: 30px auto 0;
	}
	.why-choose-img{
		max-width: 360px;
	}
}



@media only screen and (max-width: 767px){
    /* ****** ABOUT US SECTION ****** */
	.about-us-images{
		max-width: 100%;
		padding: 80px 70px 130px 16px;
	}
	.about-image-1 figure,
	.about-image-2 figure,
	.about-image-3 figure,
	.about-image-1 img,
	.about-image-2 img,
	.about-image-3 img{
		border-radius: 20px;
	}
	.about-image-2{
		max-width: 240px;
	}
	.about-image-3{
		max-width: 190px;
	}
	.about-image-circle{
		max-width: 100px;
		top: 15px;
	}
	.about-us-body{
		gap: 20px;
	}
	.about-body-image,
	.about-body-content{
		width: 100%;
	}
	.about-body-content h3{
        font-size: 18px;
    }
	.about-contact-box .icon-box{
		width: 45px;
		height: 45px;
	}
	.about-contact-box .icon-box{
		margin-right: 10px;
	}
	.about-contact-box .icon-box img{
		max-width: 20px;
	}
	.about-contact-content h3{
        font-size: 18px;
    }


    /* ****** SERVICE SECTION ******  */
    .service-list-item{
		align-items: start;
        margin-bottom: 20px;
        padding-bottom: 20px;
    }
	.service-item{
		width: calc(100% - 24px);
	}
	.service-item .icon-box{
        height: 40px;
        width: 40px;
		margin-right: 10px;
    }
	.service-item .icon-box img{
        max-width: 20px;
    }
	.service-list-content{
        width: calc(100% - 50px);
    }
	.service-list-content h3{
        font-size: 16px;
    }
	.service-list-content p{
		font-size: 14px;
	}
	.service-readmore-btn{
		margin-left: 10px;
	}
	.service-readmore-btn a img{
        max-width: 14px;
    }


    /* ****** WHY CHOOSE SECTION ****** */
    .why-choose-list-item:last-child,
	.why-choose-list-item:nth-child(2n + 2){
		border-bottom: 1px solid var(--divider-color);
		margin-bottom: 20px;
        padding-bottom: 20px;
	}
	.why-choose-us .col-md-6:last-child .why-choose-list-item:last-child{
		border: none;
		padding-bottom: 0;
		margin-bottom: 0;
	}
	.why-choose-list-item{
        margin-bottom: 20px;
        padding-bottom: 20px;
    }
	.why-choose-list-item h3{
        font-size: 18px;
		margin-bottom: 10px;
    }
	.why-choose-images{
        max-width: 100%;
		padding: 0 10px 10px;
    }
	.why-choose-img{
        max-width: 180px;
    }
}


.services-img{
	margin-top: 90px;
}











/************************************/
/***   	09. Our Projects css	  ***/
/************************************/

.our-project{
	padding: 80px 0 50px;
}

.our-Project-nav{
	text-align: center;
	margin-bottom: 80px;
}

.our-Project-nav ul{
	position: relative;
	list-style: none;
	text-align: center;
	display: inline-flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: center;
	backdrop-filter: blur(100px);
	-webkit-backdrop-filter: blur(100px);
	border-radius: 100px;
	gap: 10px;
	padding: 10px;
	margin: 0;
	overflow: hidden;
}

.our-Project-nav ul:before{
	content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--primary-color);
    opacity: 20%;
    z-index: -1;
}

.our-Project-nav ul li a{
	position: relative;
	display: inline-block;
	background-color: transparent;
	border-radius: 100px;
	color: var(--primary-color);
	font-weight: 500;
	line-height: 1.2em;
	text-transform: capitalize;
	transition: all 0.3s ease-in-out;
	padding: 12px 20px;
    overflow: hidden;
}

.our-Project-nav ul li a::before{
	content: '';
    display: block;
    position: absolute;
    top: 0;
    bottom: 0;
    left: auto;
	right: 0;
    width: 0;
    height: 100%;
    background: var(--accent-color);
	border-radius: 100px;
    transition: all 0.4s ease-in-out;
    z-index: -1;
}

.our-Project-nav ul li a.active-btn:before,
.our-Project-nav ul li a:hover:before{
	width: 100%;
    left: 0;
	right: auto;
}

.our-Project-nav ul li a.active-btn,
.our-Project-nav ul li a:hover{
	color: var(--dark-color);
}

.project-item{
	position: relative;
	border: 1px solid var(--divider-color);
	backdrop-filter: blur(100px);
	-webkit-backdrop-filter: blur(100px);
	border-radius: 30px;
	height: calc(100% - 30px);
	margin-bottom: 30px;
	padding: 20px;
	overflow: hidden;
}

.project-item::before{
	content: '';
	position: absolute;
	left: 0;
	right: 0;
	bottom: 0;
	background: var(--secondary-color);
	opacity: 40%;
	height: 100%;
	width: 100%;
}

.project-image{
	position: relative;
	margin-bottom: 20px;
}

.project-image::before{
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: var(--dark-color);
	height: 100%;
	width: 100%;
	border-radius: 20px;
	opacity: 40%;
	transform: scale(0);
	transition: all 0.4s ease-in-out;
	z-index: 1;
}

.project-item:hover .project-image::before{
	transform: scale(1);
}

.project-image figure{
	border-radius: 20px;
	overflow: hidden;
}

.project-image figure img{
	width: 100%;
	aspect-ratio: 1 / 0.69;
	object-fit: cover;
	border-radius: 20px;
	transition: all 0.4s ease-in-out;
}

.project-item:hover .project-image figure img{
	transform: scale(1.1);
}

.project-image .project-btn{
	position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0);
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease-in-out;
    z-index: 1;
}

.project-item:hover .project-btn{
	opacity: 1;
	visibility: visible;
	transform: translate(-50%, -50%) scale(1);
}

.project-image .project-btn a{
	position: relative;
    display: block;
    background-color: var(--accent-color);
    border-radius: 50%;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease-in-out;
}

.project-image .project-btn a:hover{
    background-color: var(--primary-color);
}

.project-image .project-btn a img{
    width: 100%;
    max-width: 38px;
    transition: all 0.3s ease-in-out;
}

.project-image .project-btn a:hover{
	transform: rotate(45deg);
}

.project-content{
	position: relative;
	z-index: 1;
}

.project-content p{
	text-transform: capitalize;
	color: var(--accent-color);
	margin-bottom: 10px;
}

.project-content h3{
	font-size: 22px;
	text-transform: capitalize;
}

.project-content h3 a{
	color: inherit;
}

.our-Project-nav ul li{
	line-height: 0;
}






