/* ----------------------------------------------------------------------------------------
* Author        : Awaiken
* Template Name : Justiq - Attorney Lawyer HTML Template
* File          : CSS File
* Version       : 1.0
* ---------------------------------------------------------------------------------------- */
/* INDEX
----------------------------------------------------------------------------------------
01. Global Variables
02. General css
03. Header css
04. Hero css
05. About Us css
06. Our Awards css
07. Our Services css
08. Why Choose Us css
09. Our History css
10. How It Work css
11. Our Team css
12. Our Testimonial css
13. Our Blog css
14. Footer css
15. About Us Page css
16. Services Page css
17. Service Single css
18. Blog Archive css
19. Blog Single css
20. Case Study Page css
21. Case Study Single css
22. Team Page css
23. Team Single css
24. Testimonials Page css
25. Image Gallery css
26. Video Gallery css
27. FAQs Page css
28. Contact Us Page css
29. 404 Error Page css
30. Responsive css
-------------------------------------------------------------------------------------- */

/************************************/
/*** 	 01. Global Variables	  ***/
/************************************/

:root{
	--primary-color				: #1F3044;
	--secondary-color			: #F4F5EF;
	--text-color				: #8A8A8A;
	--accent-color				: #BC871E;
	--white-color				: #FFFFFF;
	--divider-color				: #1F30441A;
	--dark-divider-color		: #FFFFFF33;
	--error-color				: rgb(230, 87, 87);
	--default-font				: "Inter", sans-serif;
	--accent-font				: "Unbounded", sans-serif;
}


/************************************/
/*** 	   02. General css		  ***/
/************************************/

body{
	position: relative;
	font-family: var(--default-font);
	font-size: 16px;
	font-weight: 400;
	line-height: 1em;
	color: var(--text-color);
	background: var(--secondary-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: var(--accent-color);
}

::selection{
	color: var(--primary-color);
	background-color: var(--text-color);
	filter: invert(1);
}

p{
	line-height: 1.7em;
	margin-bottom: 1.5em;
}

h1,
h2,
h3,
h4,
h5,
h6{
	margin :0;
	font-family: var(--accent-font);
	font-weight: 600;
	line-height: 1.2em;
	color: var(--primary-color);
}

figure{
	margin: 0;
}

img{
	max-width: 100%;
}

a{
	text-decoration: none;
}

a:hover{
	text-decoration: none;
	outline: 0;
}

a:focus{
	text-decoration: none;
	outline: 0;
}

html,
body{
	width: 100%;
	overflow-x: clip;
}

.container{
	max-width: 1300px;
}

.container,
.container-fluid,
.container-lg,
.container-md,
.container-sm,
.container-xl,
.container-xxl{
    padding-right: 15px;
    padding-left: 15px;
}

.image-anime{
	position: relative;
	overflow: hidden;
}

.image-anime:after{
	content: "";
	position: absolute;
    width: 200%;
    height: 0%;
    left: 50%;
    top: 50%;
    background-color: rgba(255,255,255,.3);
    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: 500;
	line-height: 1em;
	text-transform: capitalize;
	background: transparent;
	color: var(--white-color);
	border: none;
	border-radius: 0;
	padding: 20px 30px;
	background: var(--accent-color);
	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: 0;
	bottom: 0;
  	left: 50%;
  	right: 50%;
  	opacity: 0;
	background: var(--primary-color);
	border-radius: 0;
	transition: all 0.4s ease-in-out;
	z-index: -1;
}
  
.btn-default:hover:before{
	left: 0;
  	right: 0;
	opacity: 1;
}

.btn-default.btn-highlighted:hover{
	color: var(--primary-color);
}

.btn-default.btn-highlighted::before{
	background: var(--white-color);
}

.btn-default.btn-highlighted.bg-accent-btn{
	background: var(--primary-color);
}

.cb-cursor:before{
	background: var(--accent-color);
}

.preloader{
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: 1000;
	background: var(--primary-color);
	display: flex;
	align-items: center;
	justify-content: center;
}

.loading-container,
.loading{
	height: 100px;
	position: relative;
	width: 100px;
	border-radius: 100%;
}

.loading-container{
	margin: 40px auto;
}

.loading{
	border: 1px solid transparent;
	border-color: transparent var(--accent-color) transparent var(--accent-color);
	animation: rotate-loading 1.5s linear 0s infinite normal;
	transform-origin: 50% 50%;
}

.loading-container:hover .loading,
.loading-container .loading{
	transition: all 0.5s ease-in-out;
}

#loading-icon{
	position: absolute;
	top: 50%;
	left: 50%;
	max-width: 66px;
	transform: translate(-50%, -50%);
}

@keyframes rotate-loading{
	0%{
		transform: rotate(0deg);
	}

	100%{
		transform: rotate(360deg);
	}
}

.dark-section{
	background-color: var(--primary-color);
}

.section-row{
	margin-bottom: 80px;
}

.section-row .section-title{
	margin-bottom: 0;
}

.section-title{
	margin-bottom: 40px;
}

.section-title h3{
	display: inline-block;
    position: relative;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.6em;
    text-transform: capitalize;
    color: var(--accent-color);
    background: url(../images/icon-sub-heading.svg) no-repeat;
    background-position: left center;
    background-size: 30px auto;
    padding-left: 40px;
    margin-bottom: 20px;
}

.dark-section .section-title h3{
	color: var(--white-color);
}

.section-title h1{
	font-size: 68px;
	font-weight: 500;
	margin-bottom: 0;
	cursor: none;
}

.section-title h2{
	font-size: 40px;
	font-weight: 500;
	margin-bottom: 0;
	cursor: none;
}

.section-title h1 span,
.section-title h2 span{
	color: var(--accent-color);
}

.section-title p{
	margin-top: 20px;
	margin-bottom: 0;
}

.section-content-btn{
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: space-between;
	gap: 20px;
	border-left: 1px solid var(--divider-color);
	padding-left: 50px;
}

.section-content-btn .section-title-content{
	width: calc(62% - 10px);
	max-width: 100%;
	margin: 0;
}

.section-content-btn .section-btn{
	width: calc(38% - 10px);
	text-align: right;
	margin: 0;
}

.dark-section .section-title-content p,
.dark-section .section-title p,
.dark-section .section-title h2,
.dark-section .section-title h1{
	color: var(--white-color);
}

.section-title-content{
	width: 100%;
	max-width: 450px;
	margin: 0 auto;
	margin-right: 0;
}

.section-title-content p{
	margin: 0;
}

.section-btn{
	text-align: right;
}

.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: relative;
	z-index: 100;
}

header.main-header .header-sticky{
	position: relative;
	top: 0;
	z-index: 100;
}

header.main-header .header-sticky.hide{
	transform: translateY(-100%);
	transition: transform 0.3s ease-in-out;
	border-radius: 0;
}

header.main-header .header-sticky.active{
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	border-radius: 0;
    transform: translateY(0);
	background: var(--secondary-color);
	border-bottom: 1px solid var(--divider-color);
}

.navbar{
	padding: 30px 0;
	align-items: center;
}

.navbar-brand{
	padding: 0;
	margin: 0;
}

.main-menu .nav-menu-wrapper{
	flex: 1;
	text-align: right;
	margin: 0 20px;
}

.main-menu .nav-menu-wrapper > ul{
	align-items: center;
	display: inline-flex;
}

.main-menu ul li{
	margin: 0;
	position: relative;
}

.main-menu ul li a{
	font-size: 16px;
	font-weight: 500;
	line-height: normal;
	padding: 12px 15px !important;
	color: var(--primary-color);
	text-transform: capitalize;
	transition: all 0.3s ease-in-out;
}

.main-menu ul li.submenu > a:after{
	content: '\f107';
	font-family: 'FontAwesome';
	font-weight: 900;
	font-size: 14px;
	margin-left: 8px;
	margin-top: 3px;
}

.main-menu ul li a:hover,
.main-menu ul li a:focus{
	color: var(--accent-color);
}

.main-menu ul ul{
	visibility: hidden;
	opacity: 0;
	transform: scale(1,0.8);
	transform-origin: top;
	padding: 0;
	margin: 0;
	list-style: none;
	width: 220px;
	border-radius: 0;
	position: absolute;
	left: 0;
	top: 100%;
	background: var(--accent-color);
	transition: all 0.3s ease-in-out;
	text-align: left;
}

.main-menu ul li.submenu:first-child ul{
    width: 220px;
}

.main-menu ul ul ul{
	left: 100%;
	top: 0;
	text-align: left;
}

.main-menu ul li:hover > ul{
	visibility: visible;
	opacity: 1;
	transform: scale(1,1);
    padding: 5px 0;
}

.main-menu ul li.submenu ul li.submenu > a:after{
    content: '\f105';
    float: right;
}

.main-menu ul ul li{
	margin: 0;
	padding: 0;
}

.main-menu ul ul li a{
	color: var(--white-color);
	padding: 8px 20px !important;
	transition: all 0.3s ease-in-out;
}

.main-menu ul ul li a:hover,
.main-menu ul ul li a:focus{
	color: var(--primary-color);
	background-color: transparent;
	padding: 8px 20px 8px 23px !important;
}

.header-contact-box{
	display: flex;
	align-items: center;
	gap: 15px;
	border-left: 1px solid var(--divider-color);
	padding-left: 35px;
}

.header-contact-box .icon-box img{
	max-width: 30px;
}

.header-contact-box-content p{
	line-height: normal;
	margin-bottom: 5px;
}

.header-contact-box-content h3{
	font-family: var(--default-font);
	font-size: 20px;
}

.header-contact-box-content h3 a{
	color: inherit;
	transition: all 0.3s ease-in-out;
}

.header-contact-box-content h3 a:hover{
	color: var(--accent-color);
}

.main-menu ul li.highlighted-menu{
    display: none;
}

.responsive-menu,
.navbar-toggle{
	display: none;
}

.responsive-menu{
	top: 0;
	position: relative;
}

.slicknav_btn{
	background: var(--accent-color);
	padding: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 38px;
	height: 38px;
	margin: 0;
	border-radius: 0;
}

.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);
	background-color: var(--white-color);
}

.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);
	background-color: var(--white-color);
}

.slicknav_menu{
	position: absolute;
    width: 100%;
	padding: 0;
	background: var(--accent-color);
}

.slicknav_menu ul{
	margin: 5px 0;
}

.slicknav_menu ul ul{
	margin: 0;
}

.slicknav_nav .slicknav_row,
.slicknav_nav li a{
	position: relative;
	font-size: 16px;
	font-weight: 500;
	text-transform: capitalize;
	padding: 8px 20px;
	color: var(--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: 8px 20px 8px 30px;
}

.slicknav_arrow{
	font-size: 0 !important;
}

.slicknav_arrow:after{
	content: '\f107';
	font-family: 'FontAwesome';
	font-weight: 900;
	font-size: 12px;
	margin-left: 8px;
	color: var(--white-color);
	position: absolute;
	right: 15px;
	top: 50%;
	transform: translateY(-50%);
	transition: all 0.3s ease-out;
}

.slicknav_open > a .slicknav_arrow:after{
    transform: translateY(-50%) rotate(-180deg);
	color: var(--primary-color);
}

/************************************/
/***        04. Hero css	      ***/
/************************************/

.hero{
	position: relative;
	padding: 100px 0 80px;
}

.hero.hero-bg-image{
	position: relative;
	background: url('../images/hero-bg.jpg') no-repeat;
	background-position: center center;
	background-size: cover;
	padding: 195px 0;
	text-align: center;
}

.hero.hero-bg-image::before{
	content: '';
    display: block;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--primary-color);
    opacity: 70%;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero.hero-bg-image .hero-content{
	max-width: 80%;
	margin: 0 auto;
}

.hero.hero-bg-image .hero-content .section-title{
	margin-right: 0;
}

.hero-list-btn{
	max-width: 810px;
	margin: 0 auto;
}

.hero-list-btn ul{
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 20px 30px;
}

.hero-list-btn ul li{
	position: relative;
	line-height: 1.5em;
	color: var(--white-color);
	padding-left: 30px;
}

.hero-list-btn ul li:last-child{
	margin-bottom: 0;
}

.hero-list-btn ul li::before{
	content: '\f14a';
    font-family: "FontAwesome";
    position: absolute;
    left: 0;
	top: 0;
    font-size: 20px;
    font-weight: 900;
    color: var(--accent-color);
}

.hero-list-btn .btn-default{
	margin-top: 40px;
}

.hero.hero-video .hero-bg-video{
	position: absolute;
	top: 0;
	right: 0;
	left: 0;
	bottom: 0;
	width: 100%;
	height: 100%;
}

.hero.hero-video .hero-bg-video video{
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.hero.hero-bg-image.hero-slider-layout{
	background: none;
	padding: 0;
}

.hero.hero-bg-image.hero-slider-layout .hero-slide{
	position: relative;
    padding: 195px 0;
}

.hero.hero-bg-image.hero-slider-layout .hero-slide::before{
	content: '';
    display: block;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--primary-color);
	opacity: 70%;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero.hero-bg-image.hero-slider-layout .hero-slide .hero-slider-image{
	position: absolute;
	top: 0;
	right: 0;
	left: 0;
	bottom: 0;
}

.hero.hero-bg-image.hero-slider-layout .hero-slide .hero-slider-image img{
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.hero.hero-bg-image.hero-slider-layout .hero-pagination{
	position: absolute;
    bottom: 50px;
	text-align: center;
	z-index: 2;
}

.hero.hero-bg-image.hero-slider-layout .hero-pagination .swiper-pagination-bullet{
    width: 12px;
    height: 12px;
    background: var(--dark-divider-color);
    opacity: 1;
    transition: all 0.3s ease-in-out;
    margin: 0 5px;
}

.hero.hero-bg-image.hero-slider-layout .hero-pagination .swiper-pagination-bullet-active{
    background-color: var(--accent-color);
}

.hero .container{
	position: relative;
	z-index: 2;
}

.hero .section-title{
	margin-right: 50px;
}

.hero .section-title h1 img{
	height: auto;
	max-width: 58px;
	border: 2px solid var(--white-color);
	border-radius: 50%;
	margin-left: -30px;
}

.hero .section-title h1 img:first-child{
	margin-left: 0;
}

.hero-content-box p{
	color: var(--white-color);
	margin-bottom: 30px;
}

.hero-review-box{
	margin-top: 50px;
}

.hero-review-box ul{
	margin: 0;
	padding: 0;
	list-style: none;
}

.hero-review-box ul li{
	display: inline-block;
	color: var(--secondary-color);
	margin-right: 10px;
}

.hero-review-box ul li:last-child{
	margin: 0;
}

.hero-review-box ul li img{
	max-width: 20px;
}

.hero-review-box ul li i{
	color: var(--accent-color);
}

.hero-cta-item{
	display: flex;
}

.hero-cta-item .icon-box{
	margin-right: 30px;
}

.hero-cta-item .icon-box img{
	width: 100px;
	max-width: 60px;
}

.hero-cta-item-content{
	width: calc(100% - 90px);
}

.hero-cta-item-content h3{
	font-size: 20px;
	line-height: 1.4em;
	margin-bottom: 20px;
}

.readmore-btn{
	position: relative;
	font-size: 18px;
	font-weight: 600;
	text-transform: capitalize;
	color: var(--accent-color);
	padding-right: 30px;
	transition: all 0.3s ease-in-out;
}

.readmore-btn:hover{
	color: var(--primary-color);
}

.readmore-btn::before{
	content: '';
    position: absolute;
	right: 0;
	top: 50%;
    transform: translate(-2px, -50%);
    background: url('../images/arrow-accent.svg');
	background-repeat: no-repeat;
	background-position: center center;
	background-size: cover;
	width: 16px;
	height: 16px;
	transition: all 0.3s ease-in-out;
}

.readmore-btn:hover::before{
	filter: brightness(0) invert(0);
	transform: translate(0, -50%);
}

.hero-image-video{
	position: relative;
	margin-top: -350px;
}

.hero-image{
	margin-left: 10px;
}

.hero-image figure{
	display: block;
}

.hero-image img{
	width: 100%;
	aspect-ratio: 1 / 0.689;
	object-fit: cover;
}

.video-play-button{
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	z-index: 1;
}

.video-play-button a{
	position: relative;
	background: var(--white-color);
	border-radius: 100%;
	width: 80px;
	height: 80px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	cursor: none;
	transition: all 0.4s ease-in-out;
}

.video-play-button a:hover{
	background: var(--primary-color);
}

.video-play-button a i{
	font-size: 34px;
	color: var(--primary-color);
	margin-left: 3px;
	transition: all 0.4s ease-in-out;
}

.video-play-button a:hover i{
	color: var(--white-color);
}

/************************************/
/***       05. About Us css	      ***/
/************************************/

.about-us{
	padding: 100px 0;
}

.about-us-image{
	position: relative;
	padding: 40px 25px 0 0;
	margin-right: 40px;
}

.about-us-image figure{
	display: block;
}

.about-us-image figure img{
	width: 100%;
	aspect-ratio: 1 / 0.935;
	object-fit: cover;
}

.experience-circle{
	position: absolute;
	top: 0;
	right: 0;
	display: inline-flex;
	justify-content: center;
	align-items: center;
	width: 180px;
	height: 180px;
	background: var(--dark-divider-color);
	backdrop-filter: blur(50px);
	--webkit-backdrop-filter: blur(50px);
	border-radius: 50%;
	animation: infiniterotate 20s infinite linear;
	z-index: 1;
}

@keyframes infiniterotate{
	to{
		transform: rotate(360deg);
	}
}

.experience-circle img{
	width: 100%;
	max-width: 145px;
	border-radius: 50%;
}

.about-us-body h2{
	font-size: 20px;
	line-height: 1.4em;
	border-bottom: 1px solid var(--divider-color);
	margin-bottom: 30px;
	padding-bottom: 30px;
}

.about-us-body h2 span{
	color: var(--accent-color);
	margin-right: 15px;
}

.about-us-body h2:last-child{
	border-bottom: none;
	margin-bottom: 0;
	padding-bottom: 0;
}

.about-us-footer{
	margin-top: 40px;
}

/************************************/
/*** 	  06. Our Awards css	  ***/
/************************************/

.our-awards{
	padding: 100px 0;
}

.our-awards .section-title{
	margin-bottom: 0;
}

.award-image{
	text-align: center;
}

.award-image img{
	width: 100%;
	max-width: 150px;
	user-select: none;
}

/************************************/
/*** 	 07. Our Services css	  ***/
/************************************/

.our-services{
	padding: 100px 0;
}

.service-steps-list{
	border-top: 1px solid var(--divider-color);
	padding-top: 40px;
}

.service-step-item{
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: space-between;
	gap: 20px 30px;
	border-bottom: 1px solid var(--divider-color);
	margin-bottom: 40px;
	padding-bottom: 40px;
}

.service-step-item:last-child{
	margin-bottom: 0;
	padding-bottom: 0;
	border-bottom: none;
}

.service-step-box{
	width: calc(60% - 15px);
	display: flex;
	gap: 0 130px;
	align-items: center;
}

.service-step-no{
	width: 40px;
	height: 40px;
	background: var(--accent-color);
	border-radius: 50%;
	display: flex;
	justify-content: center;
	align-items: center;
	transition: all 0.4s ease-in-out;
}

.service-step-item:hover .service-step-no{
	background: var(--primary-color);
}

.service-step-no h3{
	font-size: 16px;
	color: var(--white-color);
}

.service-step-item-content{
	width: calc(100% - 170px);
}

.service-step-item-content h3{
	font-size: 20px;
	margin-bottom: 20px;
}

.service-step-item-content h3 a{
	color: inherit;
}

.service-step-item-content p{
	margin-bottom: 0;
}

.service-step-image{
	width: calc(40% - 15px);
}

.service-step-image a{
	width: 100%;
	max-width: 222px;
	margin: 0 auto;
	margin-right: 0;
}

.service-step-image a,
.service-step-image figure{
	display: block;
	cursor: none;
}

.service-step-image img{
	width: 100%;
	aspect-ratio: 1 / 0.451;
	object-fit: cover;
}

/************************************/
/*** 	 08. Why Choose Us css	  ***/
/************************************/

.why-choose-us{
	background-color: var(--white-color);
	padding: 100px 0;
}

.why-choose-image{
	margin-right: 30px;
}

.why-choose-image figure{
	display: block;
}

.why-choose-image img{
	width: 100%;
    aspect-ratio: 1 / 0.84;
	object-fit: cover;
}

.why-choose-content{
	display: flex;
	flex-wrap: wrap;
	gap: 30px;
}

.why-choose-item{
	position: relative;
	width: calc(50% - 15px);
	background-color: var(--white-color);
	box-shadow: 0px 0px 50px 0px #0000001A;
	overflow: hidden;
	padding: 30px;
}

.why-choose-item:before{
	content: '';
	position: absolute;
	top: 100%;
	right: 0;
	bottom: 0;
	left: 0;
	background-color: var(--accent-color);
	transition: all 0.4s ease-in-out;
}

.why-choose-item.active:before,
.why-choose-item:hover:before{
	top: 0;
}

.why-choose-item .icon-box{
	position: relative;
	margin-bottom: 30px;
	z-index: 1;
}

.why-choose-item .icon-box img{
	width: 100%;
	max-width: 50px;
	transition: all 0.4s ease-in-out;
}

.why-choose-item.active .icon-box img,
.why-choose-item:hover .icon-box img{
	filter: brightness(0) invert(1);
}

.why-choose-item-content{
	position: relative;
	z-index: 1;
}

.why-choose-item-content h3{
	font-size: 20px;
	text-transform: capitalize;
	margin-bottom: 15px;
	transition: all 0.4s ease-in-out;
}

.why-choose-item-content p{
	margin: 0;
	transition: all 0.4s ease-in-out;
}

.why-choose-item.active .why-choose-item-content h3,
.why-choose-item:hover .why-choose-item-content h3,
.why-choose-item.active .why-choose-item-content p,
.why-choose-item:hover .why-choose-item-content p{
	color: var(--white-color);
}

.why-choose-counters{
	display: flex;
	flex-wrap: wrap;
	gap: 30px 60px;
	margin-top: 60px;
	padding-top: 60px;
	border-top: 1px solid var(--divider-color);
}

.why-choose-counter-item{
	position: relative;
	width: calc(20% - 48px);
	text-align: center;
}

.why-choose-counter-item::before{
	content: '';
	position: absolute;
	top: 50%;
	right: -30px;
	background-color: var(--divider-color);
	width: 1px;
	height: 80%;
	transform: translateY(-50%);
}

.why-choose-counter-item:nth-of-type(5n + 5)::before,
.why-choose-counter-item:last-child::before{
	display: none;
}

.why-choose-counter-item .icon-box{
	margin-bottom: 30px;
}

.why-choose-counter-item .icon-box img{
	width: 100%;
	max-width: 50px;
}

.why-choose-counter-content h2{
	font-size: 36px;
	margin-bottom: 10px;
	transition: all 0.3s ease-in-out;
}

.why-choose-counter-item:hover .why-choose-counter-content h2{
	color: var(--accent-color);
}

.why-choose-counter-content p{
	text-transform: capitalize;
	margin-bottom: 0;
}

/************************************/
/*** 	  09. Our History css	  ***/
/************************************/

.our-history{
	padding: 100px 0;
}

.history-box{
	display: flex;
	flex-wrap: wrap;
	gap: 40px 0;
}

.history-item{
	position: relative;
	text-align: center;
	width: 25%;
}

.history-year{
	position: relative;
	border-bottom: 2px solid var(--accent-color);
	margin-bottom: 60px;
	padding-bottom: 60px;
}

.history-year::before{
	content: '';
	position: absolute;
	bottom: 0;
	left: 50%;
	border: 1px solid var(--accent-color);
	background: var(--secondary-color);
	height: 20px;
	width: 20px;
	transform: translate(-50%, 50%);
	transition: all 0.3s ease-in-out;
}

.history-item:hover .history-year::before{
	border-color: var(--primary-color);
	background: var(--primary-color);
}

.history-year::after{
	content: '';
	position: absolute;
	bottom: -6px;
	left: 0;
	background: var(--accent-color);
	border-radius: 50%;
	height: 10px;
	width: 10px;
}

.history-item:not(:first-child) .history-year::after{
	display: none;
}	 

.history-item:last-child .history-year:after{
	left: auto;
	right: 0;
	display: block;
}

.history-year h2{
	font-size: 36px;
}

.history-item-content{
	padding: 0 15px;
}

.history-item-content h3{
	font-size: 20px;
	margin-bottom: 20px;
}

.history-item-content p{
	margin-bottom: 0;
}

/************************************/
/*** 	  10. How It Work css	  ***/
/************************************/

.how-it-work{
	position: relative;
	padding: 100px 0;
}

.how-it-work::before{
	content: '';
	position: absolute;
	top: 0;
	right: 0;
	background-image: url('../images/how-it-work-bg-1.png');
	background-repeat: no-repeat;
	background-position: top right;
	background-size: auto;
	width: 240px;
	height: 240px;
}

.how-it-work::after{
	content: '';
	position: absolute;
	bottom: 0;
	left: 0;
	background-image: url('../images/how-it-work-bg-2.png');
	background-repeat: no-repeat;
	background-position: bottom left;
	background-size: auto;
	width: 240px;
	height: 240px;
}

.how-it-work .container{
	position: relative;
	z-index: 1;
}

.work-step-list{
	margin-top: 45px;
}

.work-step-item{
	display: flex;
	flex-wrap: wrap;
	margin-bottom: 60px;
}

.work-step-item:last-child{
	margin-bottom: 0;
}

.work-step-no{
	width: 40px;
	height: 40px;
	background: var(--accent-color);
	border-radius: 50%;
	display: flex;
	justify-content: center;
	align-items: center;
	margin-right: 20px;
	transition: all 0.4s ease-in-out;
}

.work-step-item:hover .work-step-no{
	background: var(--white-color);
}

.work-step-no h3{
	font-size: 16px;
	color: var(--white-color);
	transition: all 0.4s ease-in-out;
}

.work-step-item:hover .work-step-no h3{
	color: var(--primary-color);
}

.work-step-content{
	width: calc(100% - 60px);
}

.work-step-content h3{
	font-size: 20px;
	color: var(--white-color);
	margin-bottom: 10px;
}

.work-step-content p{
	color: var(--white-color);
	margin-bottom: 0;
}

.work-image-box{
	position: relative;
	margin: 45px 0 0 20px;
}

.work-image figure{
	display: block;
}

.work-image img{
	width: 100%;
	aspect-ratio: 1 / 0.48;
	object-fit: cover;
}

.work-counter-box{
	position: absolute;
	right: 100px;
	top: -45px;
	width: 100%;
	max-width: 465px;
	display: flex;
	background-color: var(--accent-color);
	padding: 20px;
	animation: infinitemove 3s infinite linear alternate;
	z-index: 1;
}

@keyframes infinitemove{
	50%{
		right: 40px;
	}
}

.work-counter-item{
	width: calc(50% - 10px);
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 10px;
	border-right: 1px solid var(--dark-divider-color);
	margin-right: 20px;
	padding-right: 20px;
}

.work-counter-item:last-child{
	margin-right: 0;
	padding-right: 0;
	border-right: none;
}

.work-counter-item h2{
	width: calc(50% - 5px);
	font-size: 36px;
	color: var(--white-color);
}

.work-counter-item p{
	width: calc(50% - 5px);
	text-transform: capitalize;
	color: var(--white-color);
	margin-bottom: 0;
}

/************************************/
/*** 	    11. Our Team css	  ***/
/************************************/

.our-team{
	padding: 100px 0 70px;
}

.team-item{
	height: calc(100% - 30px);
	margin-bottom: 30px;
}

.team-image{
	margin-bottom: 20px;
}


.team-image figure,
.team-image a{
	display: block;
	cursor: none;
}

.team-image img{
	width: 100%;
	aspect-ratio: 1 / 1.215;
	object-fit: cover;
	transition: all 0.4s ease-in-out;
}

.team-item:hover .team-image img{
	transform: scale(1.1);
}

.team-content{
	text-align: center;
	margin-bottom: 20px;
}

.team-content h3{
	font-size: 20px;
	text-transform: capitalize;
	margin-bottom: 10px;
}

.team-content h3 a{
	color: inherit;
}

.team-content p{
	text-transform: capitalize;
	margin-bottom: 0;
}

.team-social-icon ul{
	list-style: none;
	margin: 0;
	padding: 0;
	text-align: center;
}

.team-social-icon ul li{
	display: inline-block;
	margin-right: 10px;
}

.team-social-icon ul li:last-child{
	margin-right: 0;
}

.team-social-icon ul li a{
	width: 40px;
	height: 40px;
	color: var(--white-color);
	background: var(--accent-color);
	display: flex;
	align-items: center;
	justify-content: center;
	transition: all 0.4s ease-in-out;
}

.team-social-icon ul li a:hover{
	background: var(--primary-color);
}

.team-social-icon ul li a i{
	color: inherit;
	font-size: 20px;
}

/************************************/
/*** 	12. Our Testimonial css	  ***/
/************************************/

.our-testimonial{
	background-image: url('../images/testimonial-bg-image.png');
	background-color: var(--accent-color);
	background-repeat: repeat-x;
	background-size: auto;
	background-position: center center;
	padding: 100px 0;
	animation: testimonialbgmove 30s infinite linear;
}

@keyframes testimonialbgmove{
	from{
		background-position: right center;
	}
	to{
		background-position: right 100vw center;
	}
}

.our-testimonial .section-title h3{
	background-image: url('../images/icon-sub-heading-dark.svg');
}

.our-testimonial .section-title h2 span{
	color: var(--primary-color);
}

.testimonial-box{
	display: flex;
	align-items: center;
	flex-wrap: wrap;
}

.testimonial-review-box{
	width: 22%;
	text-align: center;
	padding-right: 35px;
}

.testimonial-review-content{
	margin-bottom: 30px;
}

.testimonial-review-content h2{
	font-size: 50px;
	color: var(--white-color);
	margin-bottom: 30px;
}

.testimonial-review-content h2 i{
	font-size: 40px;
	margin-right: 20px;
}

.testimonial-review-content p{
	color: var(--white-color);
	margin-bottom: 0;
}

.testimonial-review-image{
	display: inline-flex;
}

.satisfy-client-image{
	margin-left: -10px;
}

.satisfy-client-image:first-child{
	margin: 0;
}

.satisfy-client-image figure{
	display: block;
	border: 1px solid var(--accent-color);
	border-radius: 50%;
}

.satisfy-client-image img{
	width: 100%;
	max-width: 40px;
}

.testimonial-slider{
	width: 78%;
	border-left: 1px solid var(--dark-divider-color);
	padding-left: 35px;
}

.testimonial-slider .swiper-wrapper{
	cursor: none;
}

.testimonial-rating{
	margin-bottom: 30px;
}

.testimonial-rating i{
	font-size: 16px;
	color: var(--white-color);
	margin-right: 2px;
}

.testimonial-rating i:last-child{
	margin: 0;
}

.testimonial-content{
	margin-bottom: 60px;
}

.testimonial-content p{
	font-size: 20px;
	font-weight: 700;
	color: var(--white-color);
	margin-bottom: 0;
}

.testimonial-author{
	display: flex;
	align-items: center;
}

.author-image{
	margin-right: 15px;
}

.author-image figure{
	display: block;
	border-radius: 50%;
	overflow: hidden;
}

.author-image img{
	width: 100%;
	max-width: 60px;
	border-radius: 50%;
}

.author-content{
	width: calc(100% - 75px);
}

.author-content h3{
	font-size: 20px;
	color: var(--white-color);
	text-transform: capitalize;
	margin-bottom: 5px;
}

.author-content p{
	color: var(--white-color);
	text-transform: capitalize;
	margin: 0;
}

.testimonial-btn{
	position: absolute;
	bottom: 0;
	right: 0;
	display: flex;
	align-items: center;
	justify-content: right;
	z-index: 2;
}

.testimonial-slider .testimonial-button-next,
.testimonial-slider .testimonial-button-prev{
	position: relative;
	width: 48px;
	height: 48px;
	background: var(--primary-color);
	transition: all 0.4s ease-in-out;
}

.testimonial-slider .testimonial-button-next{
	margin-left: 30px;
}

.testimonial-slider .testimonial-button-next:hover,
.testimonial-slider .testimonial-button-prev:hover{
	background: var(--white-color);
}

.testimonial-slider .testimonial-button-next::before,
.testimonial-slider .testimonial-button-prev::before{
	content: '';
	position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background: url("../images/arrow-white.svg") no-repeat center center;
    background-size: 20px auto;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s ease-in-out;
}

.testimonial-slider .testimonial-button-prev::before{
	transform: rotate(180deg);
}

.testimonial-slider .testimonial-button-next:hover:before,
.testimonial-slider .testimonial-button-prev:hover:before{
	filter: brightness(0) invert(0);
}

/************************************/
/*** 	 	13. Our Blog css	  ***/
/************************************/

.our-blog{
	padding: 100px 0 70px;
}

.process-step-list{
	display: flex;
	flex-wrap: wrap;
	gap: 30px;
	border-bottom: 1px solid var(--divider-color);
	padding-bottom: 80px;
	margin-bottom: 80px;
}

.process-step-item{
	width: calc(33.33% - 20px);
	display: flex;
	flex-wrap: wrap;
	align-items: center;
}

.process-step-item .icon-box{
	margin-right: 30px;
}

.process-step-item .icon-box img{
	width: 100%;
	max-width: 50px;
}

.process-step-content{
	position: relative;
	width: calc(100% - 80px);
	padding-top: 15px;
}

.process-step-content h2{
	position: absolute;
	top: 0;
	font-size: 50px;
	color: var(--secondary-color);
	background: var(--primary-color);
	background-clip: text;
	-webkit-background-clip: text;
	-webkit-text-stroke: 2px transparent;
	opacity: 15%;
	z-index: 0;
	transition: all 0.3s ease-in-out;
}

.process-step-item:hover .process-step-content h2{
	color: var(--accent-color);
	-webkit-text-stroke: 2px var(--accent-color);
	opacity: 70%;
}

.process-step-content h3,
.process-step-content p{
	position: relative;
	z-index: 1;
}

.process-step-content h3{
	font-size: 20px;
	text-transform: capitalize;
	margin-bottom: 10px;
}

.process-step-content p{
	margin-bottom: 0;
}

.post-item{
	position: relative;
	height: calc(100% - 30px);
	margin-bottom: 30px;
}

.post-featured-image a{
	cursor: none;
	display: block;
}

.post-featured-image figure{
	position: relative;
	display: block;
}

.post-featured-image figure::before{
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: linear-gradient(180deg, rgba(0, 0, 0, 0) 47.01%, rgba(31, 48, 68, 0.8) 78.81%);
	width: 100%;
	height: 100%;
	z-index: 1;
}

.post-featured-image img{
	width: 100%;
	aspect-ratio: 1 / 1.118;
	object-fit: cover;
	transition: all 0.4s ease-in-out;
}

.post-item:hover .post-featured-image img{
	transform: scale(1.1);
}

.post-item-body{
	position: absolute;
	bottom: 40px;
	left: 40px;
	right: 40px;
	z-index: 1;
}

.post-item-content{
	margin-bottom: 20px;
}

.post-item-content h2{
	font-size: 20px;
	line-height: 1.4em;
	color: var(--white-color);
}

.post-item-content h2 a{
	color: inherit;
}

.post-item-meta ul{
	margin: 0;
	padding: 0;
	list-style: none;
	display: flex;
	gap: 20px 30px;
	flex-wrap: wrap;
}

.post-item-meta ul li{
	width: calc(50% - 15px);
	display: inline-flex;
	color: var(--white-color);
}

.post-item-meta ul li i{
	font-size: 20px;
	color: var(--white-color);
	margin-right: 10px;
}

.post-item-meta ul li a{
	color: var(--accent-color);
	margin-left: 5px;
	transition: all 0.3s ease-in-out;
}

.post-item-meta ul li a:hover{
	color: var(--white-color);
}

/************************************/
/*** 	 	14. Footer css		  ***/
/************************************/

.footer-cta{
	border-bottom: 1px solid var(--dark-divider-color);
}

.footer-cta-box{
	display: flex;
	flex-wrap: wrap;
}

.footer-cta-item{
	width: 33.33%;
	padding: 50px 20px;
	display: inline-flex;
	align-items: center;
	border-right: 1px solid var(--dark-divider-color);
	border-top: 1px solid var(--dark-divider-color);
}

.footer-cta-item:nth-child(-n + 3){
	border-top: none;
}

.footer-cta-item:nth-child(3n + 2){
	justify-content: center;
}

.footer-cta-item:nth-child(3n + 3){
	justify-content: end;
	border-right: none;
}

.footer-cta-item img{
	width: 100%;
	max-width: 30px;
	margin-right: 20px;
}

.footer-cta-item p{
	color: var(--white-color);
	margin-bottom: 0;
}

.footer-cta-item p span{
	font-size: 20px;
	font-weight: 600;
	text-transform: capitalize;
}

.footer-cta-item p a{
	color: inherit;
	transition: all 0.4s ease-in-out;
}

.footer-cta-item p a:hover{
	color: var(--accent-color);
}

.about-footer{
	margin-right: 80px;
}

.footer-logo{
	margin-bottom: 20px;
}

.footer-logo img{
	width: 100%;
	max-width: 178px;
}

.about-footer-content{
	margin-bottom: 30px;
}

.about-footer-content p{
	color: var(--white-color);
	margin-bottom: 0;
}

.footer-social-links ul{
	list-style: none;
	padding: 0;
	margin: 0;
}

.footer-social-links ul li{
	display: inline-block;
	border-radius: 50%;
	margin-right: 10px;
}

.footer-social-links ul li:last-child{
	margin-right: 0;
}

.footer-social-links ul li a{
	background: var(--accent-color);
	width: 40px;
	height: 40px;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: all 0.3s ease-in-out;
}

.footer-social-links ul li:hover a{
	background: var(--secondary-color);
}

.footer-social-links ul li a i{
	color: var(--white-color);
	font-size: 22px;
	transition: all 0.3s ease-in-out;
}

.footer-social-links ul li:hover a i{
	color: var(--primary-color);
}

.footer-links h3{
	font-size: 20px;
	color: var(--white-color);
	text-transform: capitalize;
	margin-bottom: 30px;
}

.footer-links ul{
	margin: 0;
	padding: 0;
	list-style: none;
}

.footer-links ul li{
	color: var(--white-color);
	text-transform: capitalize;
	line-height: 1.7em;
	margin-bottom: 10px;
}

.footer-links ul li:last-child{
	margin-bottom: 0;
}

.footer-links ul li a{
	color: inherit;
	transition: all 0.3s ease-in-out;
}

.footer-links ul li a:hover{
	color: var(--accent-color);
}

.footer-newsletter-form .section-title h2{
	font-size: 30px;
}

.footer-newsletter-form .form-group{
	display: flex;
}

.footer-newsletter-form .form-group .form-control{
	width: 88%;
	font-size: 16px;
	font-weight: 400;
	line-height: 1.2em;
	color: var(--white-color);
	background: transparent;
	border: none;
	border-bottom: 1px solid var(--dark-divider-color);
	border-radius: 0;
	outline: none;
	box-shadow: none;
	padding: 14px 20px 14px 0;
}

.footer-newsletter-form .form-group .form-control::placeholder{
	color: var(--white-color);
}

.footer-newsletter-form .form-group .newsletter-btn{
	background-color: var(--accent-color);
	width: 12%;
	border: none;
	border-radius: 0;
	padding: 12px;
	transition: all 0.3s ease-in-out;
}

.footer-newsletter-form .form-group .newsletter-btn:hover{
	background-color: var(--white-color);
}

.footer-newsletter-form .form-group .newsletter-btn img{
	max-width: 28px;
	transition: all 0.3s ease-in-out;
}

.footer-newsletter-form .form-group .newsletter-btn:hover img{
	filter: brightness(0) invert(0);
}

.footer-copyright-text{
	border-top: 1px solid var(--dark-divider-color);
	padding: 60px 0;
	margin-top: 60px;
}

.footer-copyright-text p{
	color: var(--white-color);
	text-align: center;
	margin-bottom: 0;
}

/************************************/
/*** 	 15. About Us Page css	  ***/
/************************************/

.page-header{
	background-color: var(--primary-color);
	padding: 120px 0;
}

.page-header-box{
    text-align: center;
}

.page-header-box h1{
	color: var(--white-color);
	display: inline-block;
	font-size: 68px;
    font-weight: 500;
	line-height: 1.1em;
	margin-bottom: 15px;
	cursor: none;
}

.page-header-box h1 span{
	color: var(--accent-color);
}

.page-header-box ol{
	margin: 0;
	padding: 0;
	justify-content: center;
}

.page-header-box ol li.breadcrumb-item{
	font-size: 16px;
	font-weight: 400;
	line-height: 1.4em;
	text-transform: capitalize;
	color: var(--white-color);
	opacity: 80%;
}

.page-header-box ol li.breadcrumb-item a{
    color: inherit;
}

.page-header-box ol li.breadcrumb-item.active{
	color: var(--white-color);
	opacity: 80%;
}

.page-header-box ol .breadcrumb-item+.breadcrumb-item::before{
    color: var(--white-color);
	opacity: 80%;
}

.our-approach{
	background-color: var(--white-color);
	padding: 100px 0;
}

.our-approach-content{
	margin-right: 30px;
}

.mission-vision-accordian .approach-accordion-item{
	border-bottom: 1px solid var(--divider-color);
	margin-bottom: 25px;
    padding-bottom: 25px;
}

.mission-vision-accordian .approach-accordion-item:last-child{
	margin-bottom: 0;
	padding-bottom: 0;
	border-bottom: none;
}

.mission-vision-accordian .accordion-header .accordion-button{
	color: var(--primary-color);
	font-size: 20px;
	font-weight: 600;
	line-height: 1.2em;
	text-transform: capitalize;
	transition: all 0.3s ease-in-out;
}

.mission-vision-accordian .accordion-button:not(.collapsed){
    color: var(--accent-color);
    padding-bottom: 10px;
}

.mission-vision-accordian .accordion-header .accordion-button span{
	color: var(--accent-color);
	margin-right: 10px;
}

.mission-vision-accordian .accordion-body p{
	margin: 0;
}

.our-approch-image{
	position: relative;
	background: url('../images/approch-image-bg.svg') no-repeat;
	background-position: bottom 70px center;
	background-size: auto;
	padding: 0 0 150px 210px;
}

.our-approch-img-1 figure,
.our-approch-img-2 figure{
	display: block;
}

.our-approch-img-1 img,
.our-approch-img-2 img{
	width: 100%;
	object-fit: cover;
}

.our-approch-img-1 img{
	aspect-ratio: 1 / 1.086;
}

.our-approch-img-2{
	max-width: 270px;
	position: absolute;
	bottom: 0;
	left: 0;
	border: 10px solid var(--white-color);
	z-index: 1;
}

.our-approch-img-2 img{
	aspect-ratio: 1 / 1.08;
}

.approch-counter-list{
	max-width: 185px;
	background-color: var(--accent-color);
	text-align: center;
	padding: 20px 10px;
	position: absolute;
	left: 10px;
	top: 0;
}

.approch-counter-item{
	border-bottom: 1px solid var(--dark-divider-color);
	margin-bottom: 25px;
	padding-bottom: 25px;
}

.approch-counter-item:last-child{
	margin-bottom: 0;
	padding-bottom: 0;
	border-bottom: none;
}

.approch-counter-item h2{
	color: var(--white-color);
	font-size: 40px;
	margin-bottom: 5px;
}

.approch-counter-item p{
	color: var(--white-color);
	margin: 0;
}

.our-commitment{
	padding: 100px 0;
}

.our-commitment-image{
	position: relative;
	margin-right: 30px;
}

.our-commitment-img figure{
	display: block;
}

.our-commitment-img img{
	width: 100%;
	object-fit: cover;
}

.our-commitment-img img{
    aspect-ratio: 1 / 0.987;
}

.trusted-excellence-box{
	position: absolute;
	bottom: 25px;
	left: 25px;
	background-color: var(--white-color);
	padding: 20px;
	display: flex;
	z-index: 1;
}

.trusted-excellence-box .icon-box{
	margin-right: 10px;
}

.trusted-excellence-box .icon-box img{
	width: 100%;
	max-width: 50px;
	object-fit: cover;
	border-radius: 50%;
}

.trusted-excellence-content{
	width: calc(100% - 60px);
}

.trusted-excellence-content p{
	text-transform: capitalize;
	margin-bottom: 5px;
}

.trusted-excellence-content h3{
	font-size: 16px;
	text-transform: capitalize;
	margin-bottom: 10px;
}

.skills-progress-bar .skill-data{
	display: flex;
	gap: 10px;
    margin-bottom: 10px;
}

.skills-progress-bar .skill-data .skill-title{
	font-size: 14px;
	font-weight: 500;
	text-transform: capitalize;
	color: var(--primary-color);
}

.skills-progress-bar .skill-data .skill-no{
	font-size: 14px;
	font-weight: 500;
	color: var(--accent-color);
}

.skills-progress-bar .skillbar .skill-progress{
	position: relative;
	width: 100%;
	height: 5px;
	background: var(--divider-color);
	border-radius: 0px;
    overflow: hidden;
}

.skills-progress-bar .skillbar .skill-progress .count-bar{
	position: absolute;
	top: 0;
	left: 0;
	bottom: 0;
	background: var(--accent-color);
	border-radius: 0px;
}

.our-commitment-body{
	display: flex;
	flex-wrap: wrap;
	gap: 30px;
	margin-bottom: 40px;
}

.commitment-item{
	width: calc(50% - 15px);
	display: flex;
	align-items: center;
}

.commitment-item .icon-box{
	margin-right: 20px;
}

.commitment-item .icon-box img{
	width: 100%;
	max-width: 50px;
}

.commitment-item-content{
	width: calc(100% - 70px);
}

.commitment-item-content h3{
	font-size: 20px;
	line-height: 1.4em;
	text-transform: capitalize;
}

.our-commitment-list{
	margin-bottom: 40px;
}

.our-commitment-list ul{
	list-style: none;
	margin: 0;
	padding: 0;
}

.our-commitment-list ul li{
	position: relative;
	line-height: 1.5em;
	margin-bottom: 15px;
	padding-left: 30px;
}

.our-commitment-list ul li:last-child{
	margin-bottom: 0;
}

.our-commitment-list ul li::before{
	content: '\f14a';
    font-family: "FontAwesome";
    position: absolute;
    left: 0;
	top: 0;
    font-size: 20px;
    font-weight: 900;
    color: var(--accent-color);
}

.our-faqs{
	padding: 100px 0;
}

.faqs-content{
	margin-right: 30px;
}

.faq-accordion .accordion-item{
	position: relative;
    background: var(--white-color);
	border-radius: 0px;
	margin-bottom: 25px;
    padding: 0;
	transition: all 0.3s ease-in-out;
	overflow: hidden;
}

.faq-accordion .accordion-item:last-child{
	margin-bottom: 0;
}

.faq-accordion .accordion-header .accordion-button{
	font-size: 20px;
	font-weight: 600;
	line-height: 1.4em;
	background: var(--accent-color);
	color: var(--white-color);
	padding: 18px 50px 18px 20px;
	transition: all 0.3s ease-in-out;
}

.faq-accordion .accordion-header .accordion-button.collapsed{
	color: var(--primary-color);
	background: var(--white-color);
}

.faq-accordion .accordion-item .accordion-button::after,
.faq-accordion .accordion-item .accordion-button.collapsed::after{
	content: '\f146';
	font-family: "FontAwesome";
	position: absolute;
	right: 20px;
	top: 50%;
	transform: translateY(-50%);
	font-size: 20px;
	font-weight: 900;
    line-height: normal;
    color: var(--white-color);
}

.faq-accordion .accordion-item .accordion-button.collapsed::after{
	content: '\f0fe';
	color: var(--primary-color);
}

.faq-accordion .accordion-item .accordion-body{
	background: var(--accent-color);
	padding: 0px 50px 20px 20px;
}

.faq-accordion .accordion-item .accordion-body p{
    color: var(--white-color);
	margin: 0;
}

.faqs-image{
	position: relative;
}

.faqs-img figure{
	display: block;
}

.faqs-img img{
	width: 100%;
	aspect-ratio: 1 / 0.85;
	object-fit: cover;
}

.faq-cta-box{
	position: absolute;
	bottom: 20px;
	left: 20px;
	background-color: var(--white-color);
	border: 1px solid var(--divider-color);
	padding: 20px;
	display: flex;
	align-items: center;
	z-index: 1;
}

.faq-cta-box .icon-box{
	width: 50px;
	height: 50px;
	background-color: var(--accent-color);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-right: 20px;
	transition: all 0.3s ease-in-out;
}

.faq-cta-box:hover .icon-box{
	background: var(--primary-color);
}

.faq-cta-box .icon-box img{
	width: 100%;
	max-width: 25px;
}

.faq-cta-box-content{
	width: calc(100% - 70px);
}

.faq-cta-box-content h2{
	font-size: 20px;
	text-transform: capitalize;
	margin-bottom: 5px;
}

.faq-cta-box-content p{
	margin: 0;
}

.faq-cta-box-content p a{
	color: inherit;
	transition: all 0.3s ease-in-out;
}

.faq-cta-box-content p a:hover{
	color: var(--accent-color);
}

/************************************/
/*** 	 16. Services Page css	  ***/
/************************************/

.page-services{
	padding: 100px 0 70px;
}

.service-item{
	background-color: var(--white-color);
	height: calc(100% - 30px);
	margin-bottom: 30px;
}

.service-image{
	position: relative;
	margin-bottom: 30px;
}

.service-image a,
.service-image figure{
	display: block;
	cursor: none;
}

.service-image img{
	width: 100%;
    aspect-ratio: 1 / 0.71;
	object-fit: cover;
	transition: all 0.4s ease-in-out;
}

.service-item:hover .service-image img{
	transform: scale(1.07);
}

.service-no{
	position: absolute;
	right: 40px;
	bottom: 0;
	transform: translateY(50%);
	height: 60px;
	width: 60px;
	background-color: var(--accent-color);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	z-index: 1;
	transition: all 0.3s ease-in-out;
}

.service-item:hover .service-no{
	background-color: var(--primary-color);
}

.service-no h3{
	color: var(--white-color);
	font-size: 20px;
}

.service-content{
	padding: 5px 30px 30px;
}

.service-content h3{
	font-size: 20px;
	text-transform: capitalize;
	margin-bottom: 15px;
}

.service-content h3 a{
	color: inherit;
}

.service-content p{
	margin: 0;
}

/************************************/
/*** 	17. Service Single css	  ***/
/************************************/

.page-service-single{
	padding: 100px 0;
}

.page-single-sidebar{
    position: sticky;
    top: 20px;
	margin-right: 20px;
}

.page-catagery-list{
	background-color: var(--white-color);
    margin-bottom: 60px;
	padding: 30px;
	overflow: hidden;
}

.page-catagery-list h3{
    font-size: 20px;
    text-transform: capitalize;
	margin-bottom: 30px;
}

.page-catagery-list ul{
    list-style: none;
    margin: 0;
	padding: 0;
}

.page-catagery-list ul li{
    margin-bottom: 20px;
}

.page-catagery-list ul li:last-child{
    margin: 0;
}

.page-catagery-list ul li a{
	position: relative;
    display: block;
	line-height: normal;
    text-transform: capitalize;
    color: var(--text-color);
	background-color: var(--secondary-color);
	padding: 16px 50px 16px 20px;
	overflow: hidden;
    transition: all 0.4s ease-in-out;
	z-index: 1;
}

.page-catagery-list ul li:hover a{
    color: var(--white-color);
}

.page-catagery-list ul li a::before{
    content: '';
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translate(0px, -50%);
    background: url('../images/arrow-text.svg');
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    width: 16px;
    height: 16px;
    transition: all 0.3s ease-in-out;
}

.page-catagery-list ul li a:hover::before{
    filter: brightness(0) invert(1);
}

.page-catagery-list ul li a::after{
	content: '';
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 0;
    background: var(--accent-color);
    transition: all 0.4s ease-in-out;
    z-index: -1;
}

.page-catagery-list ul li a:hover:after{
	top: 0;
	height: 100%;
}

.sidebar-cta-box{
	background: url('../images/sidebar-cta-bg.jpg') no-repeat;
	background-position: center center;
	background-size: cover;
}

.sidebar-cta-contact{
	position: relative;
	padding: 40px;
	position: relative;
	z-index: 1;
}

.sidebar-cta-contact:before{
	content: '';
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	height: 100%;
	width: 100%;
	background-color: var(--primary-color);
	opacity: 87%;
}

.sidebar-cta-contact .icon-box{
	position: relative;
	width: 70px;
	height: 70px;
	background-color: var(--accent-color);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 70px;
	overflow: hidden;
	z-index: 1;
}

.sidebar-cta-contact .icon-box::before{
	content: '';
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	background-color: var(--white-color);
	transform: scale(0);
	border-radius: 50%;
	height: 100%;
	width: 100%;
	transition: all 0.4s ease-in-out;
	z-index: 0;
}

.sidebar-cta-box:hover .sidebar-cta-contact .icon-box::before{
	transform: scale(1);
}

.sidebar-cta-contact .icon-box img{
	position: relative;
	width: 100%;
	max-width: 40px;
	transition: all 0.4s ease-in-out;
	z-index: 1;
}

.sidebar-cta-box:hover .sidebar-cta-contact .icon-box img{
	filter: brightness(0) invert(0);
}

.sidebar-contact-content{
	position: relative;
	z-index: 1;
}

.sidebar-contact-content h3{
	font-size: 20px;
	text-transform: capitalize;
	color: var(--white-color);
	margin-bottom: 20px;
}

.sidebar-contact-content p{
	color: var(--white-color);
	margin: 0;
}

.sidebar-contact-content p a{
	color: inherit;
	transition: all 0.3s ease-in-out;
}

.sidebar-contact-content p a:hover{
	color: var(--accent-color);
}

.sidebar-cta-info{
	position: relative;
	z-index: 1;
}

.sidebar-cta-info h3{
	font-size: 20px;
}

.sidebar-cta-info h3 a{
	background-color: var(--accent-color);
	color: var(--white-color);
	padding: 15px 40px;
	display: block;
	transition: all 0.4s ease-in-out;
}

.sidebar-cta-info h3 a i{
	color: inherit;
	font-size: inherit;
	margin-right: 10px;
}

.sidebar-cta-info h3 a:hover{
	background-color: var(--white-color);
	color: var(--primary-color);
}

.page-single-image{
	margin-bottom: 40px;
}

.page-single-image figure{
	display: block;
}

.page-single-image img{
	width: 100%;
	aspect-ratio: 1 / 0.598;
	object-fit: cover;
}

.service-entry{
	margin-bottom: 60px;
}

.service-entry p{
	margin-bottom: 20px;
}

.service-entry p:last-child{
	margin-bottom: 0;
}

.service-entry h2{
	font-size: 40px;
    font-weight: 500;
    margin-bottom: 20px;
}

.service-entry h2 span{
	color: var(--accent-color);
}

.service-entry h3{
	font-size: 20px;
	margin-bottom: 15px;
}

.service-entry ul{
	list-style: none;
	margin-bottom: 20px;
	padding: 0;
}

.service-entry ul li{
	position: relative;
	line-height: 1.5em;
	margin-bottom: 15px;
	padding-left: 30px;
}

.service-entry ul li:last-child{
	margin-bottom: 0;
}

.service-entry ul li::before{
	content: '\f14a';
    font-family: "FontAwesome";
    position: absolute;
    left: 0;
	top: 0;
    font-size: 20px;
    font-weight: 900;
    color: var(--accent-color);
}

.service-protect-box,
.legal-insight-box{
	margin-top: 60px;
}

.service-protect-body{
	position: relative;
    background: var(--white-color);
	padding: 30px 30px 30px 25px;
	margin-top: 40px;
	overflow: hidden;
}

.service-protect-body::before{
	content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--accent-color);
    height: 100%;
    width: 6px;
	transition: all 0.4s ease-in-out;
	z-index: 0;
}

.service-protect-body:hover::before{
    width: 100%;
	right: 100%;
}

.service-protect-body h3{
    position: relative;
	line-height: 1.4em;
	margin-bottom: 0;
    transition: all 0.3s ease-in-out;
    z-index: 1;
}

.service-protect-body:hover h3{
    color: var(--white-color);
}

.service-protect-image-content{
	display: flex;
	gap: 30px;
	flex-wrap: wrap;
	margin-top: 40px;
}

.service-protect-item{
	width: calc(50% - 15px);
}

.service-protect-item figure{
	display: block;
	margin-bottom: 20px;
}

.service-protect-item img{
	width: 100%;
	aspect-ratio: 1 / 0.742;
	object-fit: cover;
}

.legal-insight-body{
	display: flex;
	gap: 30px;
	flex-wrap: wrap;
	margin-top: 40px;
}

.legal-insight-item{
	width: calc(50% - 15px);
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	background-color: var(--white-color);
}

.legal-insight-item .icon-box{
	background: var(--accent-color);
	height: 100%;
	padding: 20px;
	align-content: center;
}

.legal-insight-item .icon-box img{
	width: 100%;
	max-width: 72px;
}

.legal-insight-item-content{
	position: relative;
	width: calc(100% - 112px);
	padding: 30px;
}

.legal-insight-item-content::before{
	content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--accent-color);
    height: 100%;
    width: 0;
	transition: all 0.4s ease-in-out;
	z-index: 0;
}

.legal-insight-item:hover .legal-insight-item-content::before{
    width: 100%;
	right: 100%;
}

.legal-insight-item-content h3,
.legal-insight-item-content p{
	position: relative;
	z-index: 1;
	transition: all 0.3s ease-in-out;
}

.legal-insight-item:hover .legal-insight-item-content h3,
.legal-insight-item:hover .legal-insight-item-content p{
	color: var(--white-color);
}

.legal-insight-image-content{
	display: flex;
	flex-wrap: wrap;
	gap: 20px 30px;
	margin-top: 40px;
}

.legal-insight-image{
	width: calc(38% - 15px);
}

.legal-insight-image figure{
	display: block;
}

.legal-insight-image img{
	width: 100%;
	aspect-ratio: 1 / 0.74;
	object-fit: cover;
}

.legal-insight-content{
	width: calc(62% - 15px);
}

.legal-insight-content ul{
	margin: 30px 0 0;
}

/************************************/
/*** 	18. Blog Archive css	  ***/
/************************************/

.page-blog{
	padding: 100px 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: 0px;
    width: 40px;
    height: 40px;
    margin: 0 5px;
    font-weight: 700;
	line-height: 1em;
    transition: all 0.3s ease-in-out;
}

.page-pagination ul li.active a, 
.page-pagination ul li a:hover{
    background: var(--accent-color);
	color: var(--white-color);
}

/************************************/
/*** 	 19. Blog Single css	  ***/
/************************************/

.page-single-post{
	padding: 100px 0;
}

.post-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;	
	overflow: hidden;
}

.post-image img{
	width: 100%;
	aspect-ratio: 1 / 0.50;
	object-fit: cover;
}

.post-content{
	width: 100%;
	max-width: 1100px;
	margin: 0 auto;
}

.post-entry{
	border-bottom: 1px solid var(--divider-color);
	padding-bottom: 30px;
    margin-bottom: 30px;
}

.post-entry:after{
    content: '';
    display: block;
    clear: both;
}

.post-entry a{
    color: var(--accent-color);
}

.post-entry h1,
.post-entry h2,
.post-entry h3,
.post-entry h4,
.post-entry h5,
.post-entry h6{
	font-weight: 500;
	line-height: 1.2em;
	margin: 0 0 0.5em;
}

.post-entry h1{
	font-size: 68px;
}

.post-entry h2{
	font-size: 40px;
}

.post-entry h3{
	font-size: 34px;
}

.post-entry h4{
	font-size: 30px;
}

.post-entry h5{
	font-size: 24px;
}

.post-entry h6{
	font-size: 18px;
}

.post-entry p{
	margin-bottom: 20px;
}

.post-entry p:last-child{
	margin-bottom: 0;
}

.post-entry p strong{
	color: var(--primary-color);
	font-size: 18px;
	font-weight: 600;
}

.post-entry ol{
    margin: 0 0 30px;
}

.post-entry 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: 500;
    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: url('../images/icon-blockquote.svg'), var(--accent-color);
	background-repeat: no-repeat;
	background-position: 30px 30px;
    background-size: 45px;
	border-radius: 0px;
    padding: 30px 30px 30px 90px;
    margin-bottom: 30px;
}

.post-entry blockquote p{
	font-family: var(--accent-font);
	font-size: 20px;
	font-weight: 600;
	line-height: 1.5em;
	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: 600;
    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: 18px;
	font-weight: 500;
	line-height: 1em;
	text-transform: capitalize;
	background: var(--accent-color);
	color: var(--white-color);
	border-radius: 0px;
    padding: 11px 20px;
	transition: all 0.3s ease-in-out;
}

.post-tags .tag-links a:hover{
	background: var(--primary-color);
}

.post-social-sharing{
    text-align: right;
}

.post-social-sharing ul{
    list-style: none;
    padding: 0;
    margin: 0;
}

.post-social-sharing ul li{
    display: inline-block;
    margin-right: 10px;
}

.post-social-sharing ul li:last-child{
	margin-right: 0;
}

.post-social-sharing ul li a{
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
	background: var(--accent-color);
	color: var(--white-color);
	border-radius: 0px;
    width: 40px;
    height: 40px;
    transition: all 0.3s ease-in-out;
}

.post-social-sharing ul li:hover a{
	background: var(--primary-color);
}

.post-social-sharing ul li a i{
    font-size: 18px;
    color: inherit;
}

/************************************/
/*** 	20. Case Study Page css	  ***/
/************************************/

.page-case-study{
	padding: 100px 0 70px;
}

.case-study-item{
    position: relative;
    height: calc(100% - 30px);
    margin-bottom: 30px;
    overflow: hidden;
}

.case-study-image a,
.case-study-image figure{
    display: block;
    cursor: none;
}

.case-study-image figure::before{
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(179.9deg, rgba(31, 48, 68, 0) 66.03%, rgba(31, 48, 68, 0.8) 90.58%);
    width: 100%;
    height: 100%;
    z-index: 1;
}

.case-study-image img{
    width: 100%;
    aspect-ratio: 1 / 0.99;
    object-fit: cover;
	transition: all 0.4s ease-in-out;
}

.case-study-item:hover .case-study-image img{
	transform: scale(1.1);
}

.case-study-body{
	position: absolute;
	left: 30px;
	bottom: 30px;
	right: 30px;
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: space-between;
	gap: 10px;
	z-index: 1;
}

.case-study-item-content h3{
	font-size: 20px;
	text-transform: capitalize;
	color: var(--white-color);
}

.case-study-item-content h3 a{
	color: inherit;
}

.case-study-readmore-btn a img{
	width: 100%;
	max-width: 16px;
}

/************************************/
/***  21. Case Study Single css	  ***/
/************************************/

.page-case-study-single{
	padding: 100px 0;
}

.case-study-detail-box{
	background: var(--white-color);
	margin-bottom: 60px;
}

.case-study-detail-title{
	padding: 30px;
	background: var(--accent-color);
}

.case-study-detail-title h3{
	font-size: 20px;
	color: var(--white-color);
}

.case-study-detail-list{
	padding: 30px;
}

.case-study-detail-item{
	display: flex;
	align-items: center;
	border-bottom: 1px solid var(--divider-color);
	margin-bottom: 25px;
	padding-bottom: 25px;
}

.case-study-detail-item:last-child{
	margin-bottom: 0;
	padding-bottom: 0;
	border-bottom: none;
}

.case-study-detail-item .icon-box{
	position: relative;
	height: 50px;
	width: 50px;
	background-color: var(--accent-color);
	border-radius: 50%;
	display: flex;
	justify-content: center;
	align-items: center;
	margin-right: 20px;
}

.case-study-detail-item .icon-box::before{
	content: '';
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	background-color: var(--primary-color);
	transform: scale(0);
	border-radius: 50%;
	height: 100%;
	width: 100%;
	transition: all 0.4s ease-in-out;
	z-index: 0;
}

.case-study-detail-item:hover .icon-box::before{
	transform: scale(1);
}

.case-study-detail-item .icon-box img{
	position: relative;
	width: 100%;
	max-width: 25px;
	z-index: 1;
}

.case-study-detail-content{
	width: calc(100% - 70px);
}

.case-study-detail-content h3{
	font-size: 20px;
	margin-bottom: 10px;
}

.case-study-detail-content p{
	margin-bottom: 0;
}

.case-study-social-link{
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 15px 20px;
}

.case-study-social-link h3{
	font-size: 20px;
}

.case-study-social-link ul{
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	flex-wrap: wrap;
	gap: 15px;
}

.case-study-social-link ul li a{
	width: 38px;
	height: 38px;
	color: var(--white-color);
	background: var(--accent-color);
	display: flex;
	align-items: center;
	justify-content: center;
	transition: all 0.4s ease-in-out;
}

.case-study-social-link ul li a:hover{
	background: var(--primary-color);
}

.case-study-social-link ul li a i{
	color: inherit;
	font-size: 18px;
}

.case-study-entry{
	margin-bottom: 60px;
}

.case-study-entry p{
	margin-bottom: 20px;
}

.case-study-entry p:last-child{
	margin-bottom: 0;
}

.case-study-entry h2{
	font-size: 40px;
	font-weight: 500;
	margin-bottom: 20px;
}

.case-study-entry h2 span{
	color: var(--accent-color);
}

.case-study-entry h3{
	font-size: 20px;
	margin-bottom: 15px;
}

.case-study-entry ul{
	display: flex;
	flex-wrap: wrap;
	gap: 30px;
	list-style: none;
	margin-bottom: 20px;
	padding: 0;
}

.case-study-entry ul li{
	position: relative;
	text-transform: capitalize;
	width: calc(33.33% - 20px);
	background: var(--white-color);
	line-height: 1.5em;
	padding: 20px 20px 20px 50px;
	overflow: hidden;
	transition: all 0.3s ease-in-out;
	z-index: 0;
}

.case-study-entry ul li:hover,
.case-study-entry ul li:hover::before{
	color: var(--white-color);
}

.case-study-entry ul li::before{
	content: '\f14a';
    font-family: "FontAwesome";
    position: absolute;
    left: 20px;
	top: 20px;
    font-size: 20px;
    font-weight: 900;
    color: var(--accent-color);
	transition: all 0.3s ease-in-out;
}

.case-study-entry ul li::after{
	content: '';
	position: absolute;
	top: 100%;
	right: 0;
	bottom: 0;
	left: 0;
	background-color: var(--accent-color);
	height: 100%;
	width: 100%;
	z-index: -1;
	transition: all 0.4s ease-in-out;
}

.case-study-entry ul li:hover::after{
	top: 0;
}

.case-resolution-box,
.final-outcome-box{
	margin-top: 60px;
}

.case-resolution-box{
	display: flex;
	flex-wrap: wrap;
	gap: 30px;
}

.case-resolution-content,
.case-resolution-body{
	width: calc(50% - 15px);
}

.case-resolution-item{
	position: relative;
	background: var(--white-color);
	padding: 25px;
	margin-bottom: 25px;
}

.case-resolution-item:last-child{
	margin-bottom: 0;
}

.case-resolution-item:before{
	content: '';
	position: absolute;
	top: 100%;
	right: 0;
	bottom: 0;
	left: 0;
	background-color: var(--accent-color);
	transition: all 0.4s ease-in-out;
}

.case-resolution-item:hover:before{
	top: 0;
}

.case-resolution-item h3,
.case-resolution-item p{
	position: relative;
	transition: all 0.3s ease-in-out;
	z-index: 1;
}

.case-resolution-item:hover h3,
.case-resolution-item:hover p{
	color: var(--white-color);
}

.final-outcome-steps{
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 30px;
	border-bottom: 1px solid var(--divider-color);
	padding-bottom: 40px;
	margin: 40px 0;
}

.final-outcome-step-item{
	width: calc(50% - 15px);
	display: flex;
	flex-wrap: wrap;
	align-items: center;
}

.final-outcome-no{
	position: relative;
	width: 70px;
	height: 70px;
	background: var(--accent-color);
	border-radius: 50%;
	display: flex;
	justify-content: center;
	align-items: center;
	margin-right: 30px;
}

.final-outcome-no::before{
	content: '';
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	background-color: var(--primary-color);
	transform: scale(0);
	border-radius: 50%;
	height: 100%;
	width: 100%;
	transition: all 0.4s ease-in-out;
	z-index: 0;
}

.final-outcome-step-item:hover .final-outcome-no::before{
	transform: scale(1);
}

.final-outcome-no h3{
	position: relative;
	color: var(--white-color);
	margin-bottom: 0;
	z-index: 1;
}

.final-outcome-content{
	width: calc(100% - 100px);
}

/************************************/
/***  	   22. Team Page css	  ***/
/************************************/

.page-team{
	padding: 100px 0 70px;
}

/************************************/
/*** 	  23. Team Single css	  ***/
/************************************/

.page-team-single{
    padding: 100px 0;
}

.team-single-image-box{
	margin-bottom: 60px;
}

.team-single-image{
    margin-bottom: 30px;
}

.team-single-image figure{
    display: block;
}

.team-single-image img{
    width: 100%;
	aspect-ratio: 1 / 1.062;
    object-fit: cover;
}

.team-member-about,
.team-member-biography,
.team-member-skills{
	margin-bottom: 60px;
}

.team-contact-list{
	background-color: var(--accent-color);
	padding: 60px;
}

.team-contact-list-box{
	display: flex;
	flex-wrap: wrap;
	gap: 30px;
	border-bottom: 1px solid var(--dark-divider-color);
	margin-bottom: 40px;
	padding-bottom: 40px;
}

.team-contact-list-box:last-child{
	margin-bottom: 0;
	padding-bottom: 0;
	border-bottom: none;
}

.team-contact-box{
	width: calc(50% - 15px);
	display: flex;
	align-items: center;
}

.team-contact-box .icon-box{
	position: relative;
	width: 50px;
	height: 50px;
	background-color: var(--dark-divider-color);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-right: 20px;
}

.team-contact-box .icon-box::before{
	content: '';
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	background-color: var(--primary-color);
	transform: scale(0);
	border-radius: 50%;
	height: 100%;
	width: 100%;
	transition: all 0.4s ease-in-out;
	z-index: 0;
}

.team-contact-box:hover .icon-box::before{
	transform: scale(1);
}

.team-contact-box .icon-box img{
	position: relative;
	width: 100%;
	max-width: 25px;
	z-index: 1;
}

.team-contact-content{
	width: calc(100% - 70px);
}

.team-contact-content h3{
	font-size: 20px;
	color: var(--white-color);
	margin-bottom: 5px;
}

.team-contact-content p{
	color: var(--white-color);
	margin: 0;
}

.team-feature-list{
	background-color: var(--white-color);
	padding: 40px;
}

.team-feature-list ul{
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	flex-wrap: wrap;
	gap: 20px 30px;
}

.team-feature-list ul li{
	position: relative;
	width: calc(50% - 15px);
	line-height: 1.5em;
	padding-left: 30px;
}

.team-feature-list ul li::before{
	content: '\f14a';
    font-family: "FontAwesome";
    position: absolute;
    left: 0;
	top: 0;
    font-size: 20px;
    font-weight: 900;
    color: var(--accent-color);
}

.member-skill-list{
	display: flex;
	flex-wrap: wrap;
	gap: 30px;
}

.member-skill-list .skills-progress-bar{
	width: calc(50% - 15px);
}

.member-skill-list .skills-progress-bar .skill-data{
	justify-content: space-between;
	margin-bottom: 20px;
}

.member-skill-list .skills-progress-bar .skill-data .skill-title,
.member-skill-list .skills-progress-bar .skill-data .skill-no{
	color: var(--text-color);
	font-size: 16px;
	font-weight: 400;
	text-transform: capitalize;
}

.member-skill-list .skills-progress-bar .skillbar .skill-progress{
	background: var(--white-color);
	height: 16px;
}

/************************************/
/***   24. Testimonials Page css  ***/
/************************************/

.page-testimonials{
	padding: 100px 0 70px;
}

.testimonial-box-item{
	position: relative;
	background-color: var(--white-color);
	text-align: center;
	height: calc(100% - 30px);
	margin-bottom: 30px;
	padding: 40px;
	overflow: hidden;
}

.testimonial-box-item:before{
	content: '';
	position: absolute;
	top: 100%;
	right: 0;
	bottom: 0;
	left: 0;
	background-color: var(--accent-color);
	z-index: 0;
	transition: all 0.4s ease-in-out;
}

.testimonial-box-item:hover:before{
	top: 0;
}

.testimonial-quote-img{
	position: relative;
	margin-bottom: 30px;
	z-index: 1;
}

.testimonial-quote-img img{
	width: 100%;
	max-width: 45px;
	transition: all 0.4s ease-in-out;
}

.client-testimonial-content{
	position: relative;
	margin-bottom: 30px;
	z-index: 1;
}

.client-testimonial-content p{
	margin: 0;
	transition: all 0.4s ease-in-out;
}

.client-author-content{
	position: relative;
	margin-bottom: 25px;
	z-index: 1;
}

.client-author-content h3{
	font-size: 20px;
	text-transform: capitalize;
	margin-bottom: 5px;
	transition: all 0.4s ease-in-out;
}

.client-author-content p{
	text-transform: capitalize;
	margin: 0;
	transition: all 0.4s ease-in-out;
}

.client-testimonial-rating{
	position: relative;
	z-index: 1;
}

.client-testimonial-rating i{
	color: var(--accent-color);
	font-size: 18px;
	transition: all 0.4s ease-in-out;
}

.testimonial-box-item:hover .testimonial-quote-img img{
	filter: brightness(0) invert(1);
}

.testimonial-box-item:hover .client-testimonial-content p,
.testimonial-box-item:hover .client-author-content h3,
.testimonial-box-item:hover .client-author-content p,
.testimonial-box-item:hover .client-testimonial-rating i{
	color: var(--white-color);
}

/************************************/
/*** 	 25. Image Gallery css	  ***/
/************************************/

.page-gallery{
	padding: 100px 0 70px;
}

.page-gallery-box .photo-gallery{
	height: calc(100% - 30px);
	margin-bottom: 30px;
}

.page-gallery-box .photo-gallery a{
	cursor: none;
}

.page-gallery-box .photo-gallery figure{
	display: block;
}

.page-gallery-box .photo-gallery img{
	width: 100%;
	aspect-ratio: 1 / 0.794;
	object-fit: cover;
}

/************************************/
/*** 	 26. Video Gallery css	  ***/
/************************************/

.page-video-gallery{
	padding: 100px 0 70px;
}

.video-gallery-image{
	height: calc(100% - 30px);
	margin-bottom: 30px;
	overflow: hidden;
}

.video-gallery-image a{
	position: relative;
	display: block;
	cursor: none;
}

.video-gallery-image a::before{
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: var(--primary-color);
    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: 40%;
    visibility: visible;
    transform: scale(1);
}

.video-gallery-image a::after{
    content: '\f04b';
	font-family: 'FontAwesome';
    position: absolute;
    top: 50%;
    left: 50%;
    right: 0;
    transform: translate(-50%, -50%);
	font-size: 20px;
	background: var(--accent-color);
	color: var(--white-color);
    border-radius: 50%;
    height: 60px;
    width: 60px;
    cursor: none;
	display: flex;
	align-items: center;
	justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.5s ease-in-out;
    z-index: 1;
}

.video-gallery-image:hover a::after{
    opacity: 1;
    visibility: visible;
}

.video-gallery-image img{
	width: 100%;
	aspect-ratio: 1 / 0.794;
	object-fit: cover;
}

/************************************/
/*** 	  27. FAQs Page css 	  ***/
/************************************/

.page-faqs{
	padding: 100px 0;
}

.page-faqs-catagery .page-faq-accordion{
    margin-bottom: 60px;
}

.page-faqs-catagery .page-faq-accordion:last-child{
    margin-bottom: 0px;
}

/************************************/
/***    28. Contact Us Page css	  ***/
/************************************/

.page-contact-us{
	padding: 100px 0;
}

.contact-info-body{
	margin-bottom: 40px;
}

.contact-info-box{
	display: flex;
	flex-wrap: wrap;
	gap: 30px;
	border-top: 1px solid var(--divider-color);
	margin-top: 40px;
	padding-top: 40px;
}

.contact-info-item{
	display: flex;
	width: calc(50% - 15px);
}

.contact-info-item.location-item{
	width: 100%;
}

.contact-info-item .icon-box{
	position: relative;
	width: 50px;
	height: 50px;
	background-color: var(--accent-color);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-right: 20px;
}

.contact-info-item .icon-box::before{
	content: '';
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	background-color: var(--primary-color);
	transform: scale(0);
	border-radius: 50%;
	height: 100%;
	width: 100%;
	transition: all 0.4s ease-in-out;
	z-index: 0;
}

.contact-info-item:hover .icon-box::before{
	transform: scale(1);
}

.contact-info-item .icon-box img{
	position: relative;
	width: 100%;
	max-width: 25px;
	z-index: 1;
}

.contact-item-content{
	width: calc(100% - 70px);
}

.contact-item-content h3{
	font-size: 20px;
	text-transform: capitalize;
	margin-bottom: 5px;
}

.contact-item-content p{
	margin: 0;
}

.contact-item-content p a{
	color: inherit;
	transition: all 0.3s ease-in-out;
}

.contact-item-content p a:hover{
	color: var(--primary-color);
}

.opening-hour-box{
	background-color: var(--accent-color);
	padding: 30px 40px;
}

.opening-hour-box h3{
	color: var(--white-color);
	font-size: 20px;
	text-transform: capitalize;
	margin-bottom: 30px;
}

.opening-hour-box ul{
	list-style: none;
	margin: 0;
	padding: 0;
}

.opening-hour-box ul li{
	color: var(--white-color);
	opacity: 80%;
	line-height: 1.5em;
	width: 100%;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 10px;
	margin-bottom: 10px;
}

.opening-hour-box ul li:last-child{
	margin-bottom: 0;
}

.opening-hour-box ul li hr{
	height: 1px;
	width: 55%;
	color: var(--dark-divider-color);
	border-style: solid;
	margin: 0;
	opacity: 1;
}
 
.contact-us-form{
	background-color: var(--white-color);
	padding: 60px;
}

.contact-form .form-control{
	font-size: 16px;
	font-weight: 400;
	line-height: 1.5em;
	color: var(--text-color);
	background-color: var(--secondary-color);
	border: none;
	border-radius: 0px;
	padding: 18px 20px;
	outline: none;
	box-shadow: none;
}

.contact-form .form-control::placeholder{
	color: var(--text-color);
}

.contact-form .btn-default{
	width: 100%;
}

.google-map .container-fluid{
	padding: 0;
}

.google-map-iframe,
.google-map-iframe iframe{
	width: 100%;
	height: 600px;
}

/************************************/
/*** 	 29. 404 Error Page css	  ***/
/************************************/

.error-page{
	padding: 100px 0;
}

.error-page-image{
	text-align: center;
	margin-bottom: 30px;
}

.error-page-image img{
	width: 100%;
	max-width: 60%;
}

.error-page-content{
	text-align: center;
}

.error-page-content .section-title,
.error-page-content-body p{
	margin-bottom: 20px;
}

/************************************/
/***      30. Responsive css      ***/
/************************************/

@media only screen and (max-width: 991px){

	.btn-default{
		font-size: 14px;
		padding: 14px 18px;
	}

	.navbar{
		padding: 20px 0;
	}

	.slicknav_nav li,
	.slicknav_nav ul{
        display: block;
    }

	.responsive-menu,
    .navbar-toggle{
        display: block;
    }

	.header-contact-box{
		display: none;
	}

	.section-row{
		margin-bottom: 40px;
	}

	.section-title{
		margin-bottom: 30px;
	}

	.section-title h3{
		font-size: 14px;
		background-size: 24px auto;
    	padding-left: 30px;
		margin-bottom: 10px;
	}

	.section-title h1{
		font-size: 45px;
	}

	.section-title h2{
		font-size: 34px;
	}

	.section-title p{
		margin-top: 15px;
	}

	.section-title p span{
		font-size: 18px;
	}

	.section-title-content{
		max-width: 100%;
		margin-top: 10px;
	}

	.section-btn{
		text-align: left;
		margin-top: 15px;
	}

	.section-content-btn{
		border-left: none;
		padding-left: 0;
		margin-top: 15px;
	}

	.hero{
		padding: 50px 0 40px;
	}

	.hero.hero-bg-image{
		padding: 100px 0;
	}

	.hero.hero-bg-image.hero-slider-layout .hero-slide{
		padding: 100px 0;
	}

	.hero.hero-bg-image.hero-slider-layout .hero-pagination{
		bottom: 30px;
	}
	
	.hero.hero-bg-image .hero-content{
		max-width: 100%;
	}
	
	.hero-list-btn{
		max-width: 100%;
	}
	
	.hero-list-btn ul li{
		padding-left: 25px;
	}
	
	.hero-list-btn ul li::before{
		font-size: 18px;
	}
	
	.hero-list-btn .btn-default{
		margin-top: 30px;
	}

	.hero .section-title{
		margin-right: 0px;
		margin-bottom: 20px;
	}

	.hero .section-title h1 img{
		max-width: 40px;
		border-width: 1px;
		margin-left: -20px;
	}

	.hero-review-box{
		margin-top: 30px;
	}

	.hero-cta-box{
		padding-top: 25px;
	}

	.hero-cta-item .icon-box{
		margin-right: 15px;
	}
	
	.hero-cta-item .icon-box img{
		max-width: 45px;
	}

	.hero-cta-item-content{
		width: calc(100% - 60px);
	}

	.hero-cta-item-content h3{
		font-size: 16px;
		margin-bottom: 15px;
	}

	.hero-image{
		margin: 0;
	}

	.hero-image-video{
		margin-top: -270px;
	}

	.hero-image img{
		aspect-ratio: 1 / 0.789;
	}

	.video-play-button a{
		width: 60px;
		height: 60px;
	}

	.video-play-button a i{
		font-size: 26px;
	}

	.about-us{
		padding: 50px 0;
	}

	.about-us-image{
		margin: 0 0 30px 0;
	}

	.about-us-image figure img{
		aspect-ratio: 1 / 0.75;
	}

	.experience-circle{
		width: 140px;
		height: 140px;
	}

	.experience-circle img{
		max-width: 115px;
	}

	.about-us-body h2{
		font-size: 18px;
		margin-bottom: 20px;
		padding-bottom: 20px;
	}

	.about-us-footer{
		margin-top: 30px;
	}

	.our-awards{
		padding: 50px 0;
	}

	.our-awards .section-title{
		margin-bottom: 30px;
	}

	.award-image img{
		max-width: 130px;
	}

	.our-services{
		padding: 50px 0;
	}

	.service-steps-list{
		padding-top: 30px;
	}

	.service-step-item{
		margin-bottom: 30px;
		padding-bottom: 30px;
	}

	.service-step-box{
		width: calc(70% - 15px);
		gap: 20px;
	}

	.service-step-item-content{
		width: calc(100% - 60px);
	}

	.service-step-item-content h3{
		margin-bottom: 15px;
	}

	.service-step-image{
		width: calc(30% - 15px);
		padding-left: 0;
	}

	.service-step-image a{
		max-width: 100%;
	}

	.why-choose-us{
		padding: 50px 0;
	}

	.why-choose-image{
		margin: 0 0 30px 0;
	}

	.why-choose-image img{
		aspect-ratio: 1 / 0.62;
	}

	.why-choose-item{
		padding: 20px;
	}

	.why-choose-item .icon-box{
		margin-bottom: 20px;
	}

	.why-choose-item .icon-box img{
		max-width: 40px;
	}

	.why-choose-item-content h3{
		margin-bottom: 10px;
	}

	.why-choose-counters{
		gap: 30px 20px;
		margin-top: 40px;
		padding-top: 40px;
	}

	.why-choose-counter-item{
		width: calc(20% - 16px);
	}

	.why-choose-counter-item::before{
		right: -10px;
	}

	.why-choose-counter-item .icon-box{
		margin-bottom: 20px;
	}

	.why-choose-counter-item .icon-box img{
		max-width: 40px;
	}

	.why-choose-counter-content h2{
		font-size: 28px;
	}

	.our-history{
		padding: 50px 0;
	}

	.history-year h2{
		font-size: 28px;
	}

	.history-year{
		margin-bottom: 30px;
		padding-bottom: 30px;
	}

	.history-item-content{
		padding: 0 5px;
	}
	
	.history-item-content h3{
		margin-bottom: 15px;
	}

	.how-it-work{
		padding: 50px 0;
	}

	.work-step-list{
		margin: 0 0 30px 0;
	}

	.work-step-item{
		margin-bottom: 30px;
	}

	.work-image-box{
		margin: 30px 0 0 0px;
	}

	.work-counter-box{
		top: -30px;
		right: 100px;
		max-width: 410px;
		padding: 15px;
	}

	.work-counter-item{
		width: calc(50% - 5px);
		margin-right: 15px;
		padding-right: 15px;
	}

	.work-counter-item h2{
		font-size: 28px;
	}

	.our-team{
		padding: 50px 0 20px;
	}

	.team-image{
		margin-bottom: 15px;
	}

	.team-image img{
		aspect-ratio: 1 / 1.08;
	}

	.team-content{
		margin-bottom: 15px;
	}

	.team-content h3{
		margin-bottom: 5px;
	}

	.our-testimonial{
		padding: 50px 0;
	}

	.testimonial-review-box{
		width: 28%;
		padding-right: 20px;
	}

	.testimonial-review-content h2{
		font-size: 36px;
		margin-bottom: 20px;
	}

	.testimonial-review-content h2 i{
		font-size: 30px;
		margin-right: 10px;
	}

	.testimonial-slider{
		width: 72%;
		padding-left: 20px;
	}

	.testimonial-rating{
		margin-bottom: 15px;
	}

	.testimonial-content{
		margin-bottom: 30px;
	}

	.testimonial-content p{
		font-size: 18px;
	}

	.author-image img{
		max-width: 50px;
	}

	.author-content{
		width: calc(100% - 65px);
	}

	.testimonial-slider .testimonial-button-next,
	.testimonial-slider .testimonial-button-prev{
		width: 35px;
		height: 35px;
	}

	.testimonial-slider .testimonial-button-next{
		margin-left: 20px;
	}

	.testimonial-slider .testimonial-button-next::before,
	.testimonial-slider .testimonial-button-prev::before{
		background-size: 14px auto;
	}

	.our-blog{
		padding: 50px 0 20px;
	}

	.process-step-list{
		padding-bottom: 40px;
		margin-bottom: 40px;
	}

	.process-step-item{
		width: calc(50% - 15px);
	}

	.process-step-item .icon-box{
		margin-right: 15px;
	}

	.process-step-item .icon-box img{
		max-width: 40px;
	}
	
	.process-step-content{
		width: calc(100% - 55px);
	}

	.process-step-content h2{
		font-size: 36px;
	}

	.post-featured-image img{
		aspect-ratio: 1 / 1.01;
	}

	.post-item-body{
		bottom: 20px;
		left: 20px;
		right: 20px;
	}

	.footer-cta-item{
		padding: 30px 15px;
	}

	.footer-cta-item img{
		max-width: 24px;
		margin-right: 10px;
	}

	.about-footer{
		margin: 0 0 30px 0;
	}

	.footer-logo{
		margin-bottom: 15px;
	}

	.about-footer-content{
		margin-bottom: 20px;
	}

	.footer-links h3{
		margin-bottom: 20px;
	}

	.footer-newsletter-form .section-title h2{
		font-size: 26px;
	}

	.footer-newsletter-form .form-group .form-control{
		padding: 10px 15px 10px 0;
	}

	.footer-newsletter-form .form-group .newsletter-btn{	
		padding: 10px;
	}

	.footer-copyright-text{
		padding: 30px 0;
		margin-top: 30px;
	}

	.page-header{
		padding: 60px 0;
	}

	.page-header-box h1{
		font-size: 48px;
		margin-bottom: 10px;
	}

	.our-approach{
		padding: 50px 0;
	}

	.our-approach-content{
		margin-right: 0;
		margin-bottom: 30px;
	}

	.mission-vision-accordian .approach-accordion-item{
		margin-bottom: 20px;
		padding-bottom: 20px;
	}

	.our-approch-image{
		max-width: 80%;
		margin: 0 auto;
	}

	.approch-counter-item{
		margin-bottom: 20px;
		padding-bottom: 20px;
	}

	.approch-counter-item h2{
		font-size: 30px;
	}

	.our-commitment{
		padding: 50px 0;
	}

	.our-commitment-image{
		margin-right: 0;
		margin-bottom: 30px;
	}

	.our-commitment-img img{
		aspect-ratio: 1 / 0.7;
	}

	.trusted-excellence-box{
		bottom: 15px;
		left: 15px;
		padding: 15px;
	}

	.our-commitment-body{
		margin-bottom: 30px;
	}

	.commitment-item .icon-box{
		margin-right: 10px;
	}

	.commitment-item .icon-box img{
		max-width: 40px;
	}

	.commitment-item-content{
		width: calc(100% - 50px);
	}

	.our-commitment-list{
		margin-bottom: 30px;
	}

	.our-commitment-list ul li{
		margin-bottom: 10px;
		padding-left: 25px;
	}

	.our-commitment-list ul li::before{
		font-size: 18px;
	}

	.our-faqs{
		padding: 50px 0;
	}

	.faqs-content{
		margin-right: 0;
		margin-bottom: 30px;
	}

	.faq-accordion .accordion-item{
		margin-bottom: 20px;
	}

	.faq-accordion .accordion-header .accordion-button{
		font-size: 18px;
		padding: 15px 40px 15px 15px;
	}

	.faq-accordion .accordion-item .accordion-button::after,
	.faq-accordion .accordion-item .accordion-button.collapsed::after{
		right: 15px;
	}

	.faq-accordion .accordion-item .accordion-body{
		padding: 0px 40px 15px 15px;
	}

	.faqs-img img{
		aspect-ratio: 1 / 0.6;
	}

	.faq-cta-box{
		bottom: 15px;
		left: 15px;
		padding: 15px;
	}

	.faq-cta-box .icon-box{
		margin-right: 10px;
	}

	.faq-cta-box-content{
		width: calc(100% - 60px);
	}

	.page-services{
		padding: 50px 0 20px;
	}
		
	.service-no{
		height: 50px;
		width: 50px;
		right: 30px;
	}

	.service-no h3{
		font-size: 18px;
	}

	.service-content{
		padding: 0 20px 20px;
	}

	.page-service-single{
		padding: 50px 0;
	}

	.page-single-sidebar{
		position: initial;
		margin: 0 0 30px 0;
	}

	.page-catagery-list{
		margin-bottom: 30px;
	}

	.page-catagery-list h3{
		margin-bottom: 20px;
	}

	.page-catagery-list ul li a{
		padding: 12px 40px 12px 15px;
	}

	.page-catagery-list ul li a::before{
		right: 15px;
		width: 14px;
		height: 14px;
	}

	.sidebar-cta-contact{
		padding: 30px;
	}

	.sidebar-cta-contact .icon-box{
		width: 60px;
		height: 60px;
		margin-bottom: 40px;
	}

	.sidebar-cta-contact .icon-box img{
		max-width: 34px;
	}

	.sidebar-contact-content h3{
		margin-bottom: 15px;
	}

	.sidebar-cta-info h3 a{
		padding: 15px 30px;
	}

	.page-single-image{
		margin-bottom: 30px;
	}

	.page-single-image img{
		aspect-ratio: 1 / 0.49;
	}

	.service-entry{
		margin-bottom: 40px;
	}

	.service-entry p,
	.service-entry ul{
		margin-bottom: 15px;
	}

	.service-entry h2{
		font-size: 34px;
		margin-bottom: 15px;
	}
	
	.service-entry h3{
		margin-bottom: 10px;
	}

	.service-entry ul li{
		font-size: 14px;
		padding-left: 22px;
		margin-bottom: 10px;
	}

	.service-entry ul li::before{
		font-size: 18px;
	}

	.service-protect-box,
	.legal-insight-box{
		margin-top: 40px;
	}

	.service-protect-body{
		padding: 20px 20px 20px 15px;
		margin-top: 30px;
	}

	.service-protect-body h3{
		font-size: 18px;
		margin-bottom: 0;
	}

	.service-protect-image-content{
		margin-top: 30px;
	}

	.service-protect-item figure{
		margin-bottom: 15px;
	}
	
	.service-protect-item img{
		aspect-ratio: 1 / 0.61;
	}

	.legal-insight-body{
		margin-top: 30px;
	}

	.legal-insight-item .icon-box{
		padding: 10px;
	}

	.legal-insight-item .icon-box img{
		max-width: 60px;
	}

	.legal-insight-item-content{
		width: calc(100% - 80px);
		padding: 20px;
	}

	.legal-insight-image-content{
		margin-top: 30px;
	}

	.legal-insight-content ul{
		margin: 20px 0 0;
	}

	.page-blog{
		padding: 50px 0;
	}
	
	.page-pagination{
		margin-top: 10px;
	}

	.page-single-post{
		padding: 50px 0;
	}
	
	.post-single-meta ol li,
	.post-single-meta ol li i{
		font-size: 16px;
	}
	
	.post-image{
		margin-bottom: 20px;
	}
		
	.post-entry h1,
	.post-entry h2,
	.post-entry h3,
	.post-entry h4,
	.post-entry h5,
	.post-entry h6{
		margin: 0 0 0.4412em;
	}
	
	.post-entry h2{
		font-size: 34px;
	}
	
	.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;
		font-size: 16px;
	}
	
	.post-social-sharing ul{
		text-align: left;
	}

	.page-case-study{
		padding: 50px 0 20px;
	}

	.case-study-image img{
		aspect-ratio: 1 / 0.85;
	}

	.case-study-body{
		right: 20px;
		bottom: 20px;
		left: 20px;
	}

	.case-study-item-content h3{
		font-size: 18px;
	}

	.page-case-study-single{
		padding: 50px 0;
	}

	.case-study-detail-box{
		margin-bottom: 30px;
	}

	.case-study-detail-title{
		padding: 20px 30px;
	}

	.case-study-detail-item{
		margin-bottom: 15px;
		padding-bottom: 15px;
	}

	.case-study-entry{
		margin-bottom: 40px;
	}

	.case-study-entry p{
		margin-bottom: 15px;
	}

	.case-study-entry h2{
		font-size: 34px;
		margin-bottom: 15px;
	}

	.case-study-entry h3{
		font-size: 18px;
		margin-bottom: 10px;
	}

	.case-study-entry ul{
		gap: 20px;
		margin-bottom: 15px;
	}

	.case-study-entry ul li{
		width: calc(33.33% - 13.33px);
		padding: 10px 10px 10px 35px;
	}

	.case-study-entry ul li::before{
		left: 10px;
		top: 10px;
		font-size: 18px;
	}

	.case-resolution-box,
	.final-outcome-box{
		margin-top: 40px;
	}

	.final-outcome-steps{
		padding-bottom: 30px;
		margin: 30px 0;
	}

	.final-outcome-no{
		width: 60px;
		height: 60px;
		margin-right: 15px;
	}

	.final-outcome-no h3{
		margin-bottom: 0;
	}

	.final-outcome-content{
		width: calc(100% - 75px);
	}

	.page-team{
		padding: 50px 0 20px;
	}
	
	.page-team-single{
		padding: 50px 0;
	}

	.team-single-image-box{
		margin-bottom: 30px;
	}

	.team-single-image img{
		aspect-ratio: 1 / 0.7;
		object-position: top center;
	}

	.team-member-about,
	.team-member-biography,
	.team-member-skills{
		margin-bottom: 30px;
	}

	.team-contact-list{
		padding: 30px;
	}

	.team-contact-list-box{
		margin-bottom: 20px;
		padding-bottom: 20px;
	}

	.team-contact-box .icon-box{
		margin-right: 10px;
	}

	.team-contact-content{
		width: calc(100% - 60px);
	}

	.team-feature-list{
		padding: 30px;
	}

	.team-feature-list ul{
		gap: 20px;
	}

	.team-feature-list ul li{
		width: calc(50% - 10px);
		padding-left: 25px;
	}

	.team-feature-list ul li::before{
		font-size: 18px;
	}

	.member-skill-list .skills-progress-bar .skill-data{
		margin-bottom: 15px;
	}

	.page-testimonials{
		padding: 50px 0 20px;
	}

	.testimonial-box-item{
		padding: 30px;
	}

	.testimonial-quote-img,
	.client-testimonial-content,
	.client-author-content{
		margin-bottom: 20px;
	}

	.page-gallery{
		padding: 50px 0 20px;
	}

	.page-video-gallery{
		padding: 50px 0 20px;
	}

	.page-faqs{
		padding: 50px 0;
	}
	
	.page-faqs-catagery .page-faq-accordion{
		margin-bottom: 40px;
	}

	.page-contact-us{
		padding: 50px 0;
	}

	.contact-us-content{
		margin-bottom: 30px;
	}

	.contact-info-body{
		margin-bottom: 30px;
	}

	.contact-info-box{
		margin-top: 30px;
		padding-top: 30px;
	}

	.contact-info-item .icon-box{
		margin-right: 10px;
	}

	.contact-item-content{
		width: calc(100% - 60px);
	}

	.opening-hour-box{
		padding: 30px;
	}

	.opening-hour-box h3{
		margin-bottom: 20px;
	}

	.contact-us-form{
		padding: 30px;
	}

	.contact-form .form-control{
		padding: 12px 15px;
	}

	.google-map-iframe,
	.google-map-iframe iframe{
		height: 450px;
	}

	.error-page{
		padding: 50px 0;
	}

	.error-page-image{
		margin-bottom: 20px;
	}
	
	.error-page-image img{
		max-width: 80%;
	}

	.error-page-content .section-title,
	.error-page-content-body p{
		margin-bottom: 15px;
	}
}

@media only screen and (max-width: 767px){

	.section-row{
		margin-bottom: 30px;
	}

	.section-title h1{
		font-size: 26px;
	}

	.section-title h2{
		font-size: 24px;
	}

	.section-title p{
        margin-top: 10px;
    }

	.section-content-btn{
		gap: 15px;
		margin-top: 10px;
	}
	
	.section-content-btn .section-btn,
	.section-content-btn .section-title-content{
        width: 100%;
		text-align: left;
		margin: 0;
    }

	.section-btn{
		text-align: left;
	}

	.hero.hero-bg-image{
		text-align: left;
	}

	.hero.hero-bg-image.hero-slider-layout .hero-pagination{
		text-align: left;
		padding-left: 15px;
	}

	.hero-list-btn ul{
		gap: 10px;
		justify-content: left;
	}

	.hero .section-title h1 img{
        max-width: 24px;
		margin-left: -10px;
    }

	.hero .section-title{
        margin-bottom: 15px;
    }

	.readmore-btn{
		font-size: 16px;
	}

	.hero-image-video{
        margin-top: 20px;
    }

	.video-play-button a{
        width: 50px;
        height: 50px;
    }

	.video-play-button a i{
        font-size: 22px;
    }

	.about-us-image{
        padding: 25px 15px 0 0;
    }

	.about-us-image figure img{
		aspect-ratio: 1 / 0.9;
	}

	.experience-circle{
        width: 95px;
        height: 95px;
    }

	.experience-circle img{
        max-width: 74px;
    }

	.about-us-body h2{
		font-size: 16px;
    }

	.about-us-body h2 span{
		margin-right: 10px;
	}

	.service-step-box,
	.service-step-image{
		width: 100%;
	}

	.service-step-box{
		gap: 10px;
		align-items: flex-start;
	}
	
	.service-step-no{
		width: 34px;
		height: 34px;
	}

	.service-step-no h3,
	.service-step-item-content p{
		font-size: 14px;
	}

	.service-step-item-content{
        width: calc(100% - 44px);
    }

	.service-step-item-content h3{
		font-size: 18px;
        margin-bottom: 5px;
    }

	.why-choose-item{
		width: 100%;
	}

	.why-choose-item-content h3{
        font-size: 18px;
    }

	.why-choose-counters{
        margin-top: 30px;
        padding-top: 30px;
    }

	.why-choose-counter-item{
		width: calc(50% - 10px);
	}

	.why-choose-counter-item:nth-of-type(5n + 5)::before{
		display: block;
	}

	.why-choose-counter-item:nth-of-type(2n + 2)::before,
	.why-choose-counter-item:last-child::before{
		display: none;
	}

	.why-choose-counter-item .icon-box{
        margin-bottom: 15px;
    }

	.why-choose-counter-content h2{
        font-size: 22px;
		margin-bottom: 5px;
    }

	.history-box{
		gap: 30px 0;
	}

	.history-item{
		width: 100%;
	}

	.history-year{
        margin-bottom: 15px;
        padding-bottom: 15px;
    }

	.history-year::before{
		height: 14px;
		width: 14px;
	}

	.history-item:last-child .history-year:after,
	.history-year::after{
		display: none;
	}

	.history-year h2{
        font-size: 22px;
    }

	.history-item-content h3{
		font-size: 18px;
		margin-bottom: 10px;
	}

	.work-step-item{
		margin-bottom: 20px;
	}

	.work-step-no{
		width: 34px;
		height: 34px;
		margin-right: 15px;
	}
	
	.work-step-no h3{
		font-size: 14px;
	}

	.work-step-content{
		width: calc(100% - 49px);
	}

	.work-step-content h3{
		font-size: 18px;
		margin-bottom: 5px;
	}

	.work-counter-box{
        right: 0;
        max-width: 315px;
        padding: 10px;
		animation-duration: 2s;
    }

	@keyframes infinitemove{
		50%{
			right: 30px;
		}
	}

	.work-counter-item{
        margin-right: 10px;
        padding-right: 10px;
    }

	.work-counter-item h2{
        width: calc(40% - 5px);
        font-size: 20px;
    }

	.work-counter-item p{
        width: calc(60% - 5px);
		font-size: 14px;
    }

	.work-image img{
		aspect-ratio: 1 / 0.68;
	}

	.team-content h3{
		font-size: 18px;
	}

	.testimonial-review-box,
	.testimonial-slider{
		width: 100%;
		text-align: left;
	}

	.testimonial-review-box{
        padding: 0;
		margin-bottom: 20px;
    }

	.testimonial-review-content{
		margin-bottom: 20px;
	}

	.testimonial-review-content h2{
        font-size: 22px;
		margin-bottom: 10px;
    }

	.testimonial-review-content h2 i{
        font-size: 20px;
    }

	.testimonial-slider{
		border-top: 1px solid var(--dark-divider-color);
		border-left: none;
		padding: 20px 0 0 0;
	}

	.testimonial-content{
        margin-bottom: 20px;
    }

	.testimonial-content p{
        font-size: 16px;
    }

	.author-content h3{
		font-size: 18px;
	}

	.testimonial-btn{
        position: initial;
        justify-content: center;
        margin-top: 20px;
    }

	.process-step-item{
		width: 100%;
	}

	.process-step-content{
		padding-top: 10px;
	}

	.process-step-content h2{
        font-size: 26px;
    }

	.process-step-content h3{
		font-size: 18px;
		margin-bottom: 5px;
	}

	.post-item-content h2{
		font-size: 18px;
	}

	.post-item-meta ul li i{
		font-size: 18px;
	}

	.footer-cta{
		border: none;
	}

	.footer-cta-item{
		width: 100%;
		padding: 15px 0px;
		justify-content: center;
		border-bottom: 1px solid var(--dark-divider-color);
		border-top: none;
		border-right: none;
	}
	
	.footer-cta-item:nth-child(3n + 3){
		justify-content: center;
	}

	.footer-cta-item img{
        max-width: 20px;
    }

	.footer-cta-item p span{
		font-size: 18px;
	}

	.footer-links{
		margin-bottom: 30px;
	}

	.footer-links h3{
		font-size: 18px;
		margin-bottom: 15px;
	}

	.footer-links ul li{
		margin-bottom: 5px;
	}

	.footer-newsletter-form .section-title{
		margin-bottom: 20px;
	}

	.footer-newsletter-form .section-title h2{
        font-size: 22px;
    }

	.footer-copyright-text{
        padding: 15px 0;
        margin-top: 30px;
    }

	.page-header-box h1{
		font-size: 26px;
	}

	.mission-vision-accordian .accordion-header .accordion-button{
		font-size: 18px;
	}

	.our-approch-image{
		background-position: bottom 30px center;
		max-width: 100%;
		padding: 0 0 85px 160px;
	}

	.our-approch-img-2{
		max-width: 180px;
		border-width: 5px;
	}

	.our-approch-img-1 img{
		aspect-ratio: 1 / 1.4;
	}

	.our-approch-img-2 img{
		aspect-ratio: 1 / 0.8;
	}

	.approch-counter-list{
		left: 0;
		max-width: 155px;
		padding: 10px;
	}

	.approch-counter-item{
        margin-bottom: 10px;
        padding-bottom: 10px;
    }

	.approch-counter-item h2{
        font-size: 20px;
    }

	.approch-counter-item p{
		font-size: 14px;
	}

	.our-commitment-img img{
        aspect-ratio: 1 / 0.9;
    }

	.skills-progress-bar .skill-data{
		margin-bottom: 5px;
	}

	.trusted-excellence-content p,
	.trusted-excellence-content h3{
		font-size: 14px;
	}

	.our-commitment-body{
		gap: 20px;
	}

	.commitment-item{
		width: 100%;
	}
	
	.commitment-item-content h3{
		font-size: 18px;
	}

	.faq-accordion .accordion-header .accordion-button{
		font-size: 16px;
		padding: 12px 40px 12px 12px;
	}

	.faq-accordion .accordion-item .accordion-button::after,
	.faq-accordion .accordion-item .accordion-button.collapsed::after{
        right: 12px;
    }

	.faq-accordion .accordion-item .accordion-body{
        padding: 0px 12px 12px 12px;
    }

	.faq-accordion .accordion-item .accordion-body p{
		font-size: 14px;
	}

	.faqs-img img{
        aspect-ratio: 1 / 0.9;
    }

	.faq-cta-box-content h2{
		font-size: 18px;
	}

	.service-image{
		margin-bottom: 20px;
	}
			
	.service-no{
		height: 40px;
		width: 40px;
		right: 20px;
	}

	.service-no h3{
		font-size: 16px;
	}

	.service-content h3{
		font-size: 18px;
		margin-bottom: 10px;
	}

	.page-catagery-list,
	.sidebar-cta-contact{
        padding: 20px;
    }

	.page-catagery-list h3{
        font-size: 18px;
    }

	.sidebar-cta-contact .icon-box{
        width: 50px;
        height: 50px;
        margin-bottom: 30px;
    }

	.sidebar-cta-contact .icon-box img{
        max-width: 28px;
    }

	.sidebar-contact-content h3{
		font-size: 18px;
		margin-bottom: 10px;
	}

	.sidebar-cta-info h3 a{
		font-size: 18px;
        padding: 15px 20px;
    }

	.page-single-image{
        margin-bottom: 20px;
    }

	.page-single-image img{
        aspect-ratio: 1 / 0.7;
    }

	.service-entry h2{
        font-size: 24px;
    }

	.service-entry h3{
		font-size: 18px;
		margin-bottom: 5px;
	}

	.service-protect-box,
	.legal-insight-box{
        margin-top: 30px;
    }

	.service-protect-body{
        padding: 10px 15px;
    }
	
	.service-protect-body h3{
        font-size: 16px;
		margin: 0;
    }

	.service-protect-item{
		width: 100%;
	}

	.service-protect-item figure{
        margin-bottom: 10px;
    }

	.legal-insight-body{
		gap: 20px;
	}

	.legal-insight-item{
		width: 100%;
	}

	.legal-insight-item .icon-box img{
        max-width: 45px;
    }

	.legal-insight-item-content{
        width: calc(100% - 65px);
        padding: 10px;
    }

	.legal-insight-image,
	.legal-insight-content{
		width: 100%;
	}

	.legal-insight-image img{
		aspect-ratio: 1 / 0.55;
	}

	.post-image img{
		aspect-ratio: 1 / 0.7;
	}
	
	.post-entry blockquote{
		background-position: 15px 15px;
		padding: 60px 15px 15px 15px;
	}
	
	.post-entry blockquote p{
		font-size: 16px;
	}
	
	.post-entry h2{
		font-size: 24px;
	}
	
	.tag-links{
		font-size: 18px;
	}

	.case-study-detail-title{
        padding: 15px 20px;
    }

	.case-study-detail-title h3{
		font-size: 18px;
	}

	.case-study-detail-list{
		padding: 20px;
	}

	.case-study-detail-content h3{
		font-size: 18px;
		margin-bottom: 5px;
	}

	.case-study-entry h2{
        font-size: 24px;
    }

	.case-study-entry h3{
		margin-bottom: 5px;
	}

	.case-study-entry ul{
        gap: 10px;
    }

	.case-study-entry ul li{
		width: 100%;
	}

	.case-resolution-box,
	.final-outcome-box{
        margin-top: 30px;
    }

	.case-resolution-box{
		gap: 20px;
	}

	.case-resolution-content,
	.case-resolution-body{
		width: 100%;
	}

	.case-resolution-item{
		padding: 15px;
		margin-bottom: 15px;
	}

	.final-outcome-steps{
		gap: 20px;
	}

	.final-outcome-step-item{
		width: 100%;
	}

	.final-outcome-no{
        width: 45px;
        height: 45px;
    }
	
	.final-outcome-content{
		width: calc(100% - 60px);
    }

	.final-outcome-no h3{
		font-size: 16px;
		margin-bottom: 0;
	}

	.final-outcome-content p{
		font-size: 14px;
	}

	.team-single-image{
		margin-bottom: 20px;
	}

	.team-single-image img{
        aspect-ratio: 1 / 0.95;
        object-position: center center;
    }

	.team-contact-list{
        padding: 20px;
    }

	.team-contact-box{
		width: 100%;
	}

	.team-contact-content h3{
		font-size: 18px;
	}

	.team-feature-list{
		padding: 20px;
	}

	.team-feature-list ul{
		gap: 10px;
	}

	.team-feature-list ul li{
		width: 100%;
	}

	.member-skill-list{
		gap: 20px;
	}

	.member-skill-list .skills-progress-bar{
		width: 100%;
	}

	.member-skill-list .skills-progress-bar .skill-data{
        margin-bottom: 10px;
    }

	.member-skill-list .skills-progress-bar .skillbar .skill-progress{
		height: 12px;
	}

	.testimonial-box-item{
        padding: 20px;
    }

	.testimonial-quote-img,
	.client-testimonial-content,
	.client-author-content{
        margin-bottom: 15px;
    }

	.testimonial-quote-img img{
		max-width: 35px;
	}

	.client-author-content h3{
		font-size: 18px;
	}

	.client-testimonial-rating i{
		font-size: 16px;
	}

	.contact-info-box{
        margin-top: 30px;
        padding-top: 0px;
		border: none;
    }

	.contact-info-item{
		width: 100%;
	}

	.contact-item-content h3{
		font-size: 18px;
		margin-bottom: 0;
	}

	.opening-hour-box{
        padding: 20px;
    }

	.opening-hour-box h3{
		font-size: 18px;
	}

	.opening-hour-box ul li{
		font-size: 14px;
	}

	.opening-hour-box ul li hr{
		width: 25%;
	}

	.contact-us-form{
        padding: 20px;
    }
	
	.google-map-iframe,
	.google-map-iframe iframe{
		height: 350px;
	}
}


.call-buton .cc-calto-action-ripple {
	z-index: 99999;
	position: fixed;
	right : 1rem;
	bottom: 8rem;
	background: #138705;
	width: 4rem;
	height: 4rem;
	padding: 1rem;
	border-radius: 100%;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
	color: #ffffff;
	-webkit-animation: cc-calto-action-ripple 0.6s linear infinite;
	animation: cc-calto-action-ripple 0.6s linear infinite;
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	justify-items: center;
	-webkit-box-align: center;
	-webkit-align-items: center;
	-ms-flex-align: center;
	align-items: center;
	text-decoration: none; }
	.call-buton .cc-calto-action-ripple i {
	  -webkit-transition: 0.3s ease;
	  transition: 0.3s ease;
	  font-size: 2.2rem; }
	.call-buton .cc-calto-action-ripple:hover i {
	  -webkit-transform: rotate(135deg);
	  transform: rotate(135deg); }
  
  