/* ----------------------------------------------------------------------------------------
* Author        : Awaiken
* Template Name : Parasme Software & Technology - HTML Template
* File          : CSS File
* Version       : 1.0
* ---------------------------------------------------------------------------------------- */
/* INDEX
----------------------------------------------------------------------------------------
 Responsive css
-------------------------------------------------------------------------------------- */

/************************************/
/*** 	 01. Global Variables	  ***/
/************************************/

:root {
	--primary-color: linear-gradient(180deg, #386bb7, #e24c4a);
	--opcitylight: linear-gradient(180deg, #E5EFFF, #FFE8E8);
	--secondary-color: #EBEFF0;
	--text-color: #6F6F6F;
	/* --accent-color			: #009A5E; */
	--red-color: #e24c4a;
	--accent-color: linear-gradient(90deg, #386bb7, #e24c4a);
	--white-color: #FFFFFF;
	--divider-color: #ECF2F0;
	--dark-divider-color: #FFFFFF33;
	--error-color: rgb(230, 87, 87);
	--default-font: "Golos Text", sans-serif;
	--e-global-color-primary: #010c28;
}

/************************************/
/*** 	   02. General css		  ***/
/************************************/

body {
	font-family: var(--default-font);
	font-size: 15px;
	font-weight: 400;
	line-height: 1.5em;
	color: var(--text-color);
	background-color: var(--white-color);
}

p {
	line-height: 1.7em;
	margin-bottom: 1.6em;
}

h1,
h2,
h3,
h4,
h5,
h6 {
	margin: 0;
	font-weight: 400;
	line-height: 1.2em;
	color: var(--e-global-color-primary);
}

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;
}

.ptb-100 {
	padding: 100px 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-flex;
	line-height: 1.3em;
	font-weight: 600;
	background: var(--accent-color);
	color: var(--white-color);
	text-transform: capitalize;
	border-radius: 12px 12px 12px 0;
	padding: 16px 30px;
	border: none;
	overflow: hidden;
	transition: all 0.5s ease-in-out;
	z-index: 1;
}

.btn-default:hover {
	background-color: transparent;
}

.btn-default::before {
	content: '';
	position: absolute;
	width: 100%;
	height: 0;
	top: 50%;
	left: 50%;
	background: var(--primary-color);
	opacity: 0;
	z-index: -1;
	-webkit-transform: translateX(-50%) translateY(-50%) rotate(45deg);
	-moz-transform: translateX(-50%) translateY(-50%) rotate(45deg);
	-ms-transform: translateX(-50%) translateY(-50%) rotate(45deg);
	transform: translateX(-50%) translateY(-50%) rotate(45deg);
	transition: all 0.4s ease-in-out;
}

.btn-default:hover::before {
	height: 420%;
	opacity: 1;
}

.btn-default.btn-highlighted {
	background: transparent;
	border: 1px solid var(--white-color);
	color: var(--white-color);
	padding: 15px 30px;
}

#magic-cursor {
	position: absolute;
	width: 10px !important;
	height: 10px !important;
	pointer-events: none;
	z-index: 1000000;
}

#ball {
	position: fixed;
	display: block;
	left: 0;
	top: 0;
	transform: translate(-50%, -50%);
	width: 8px !important;
	height: 8px !important;
	background: var(--accent-color);
	margin: 0;
	border-radius: 50%;
	pointer-events: none;
	opacity: 1 !important;
}

.preloader {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: 1000;
	background: var(--accent-color);
	display: flex;
	align-items: center;
	justify-content: center;
}

.loading-container,
.loading {
	height: 100px;
	position: relative;
	width: 100px;
	border-radius: 100%;
}

.loading-container {
	margin: 40px auto;
}

.loading {
	border: 1px solid transparent;
	border-color: transparent var(--white-color) transparent var(--white-color);
	animation: rotate-loading 1.5s linear 0s infinite normal;
	transform-origin: 50% 50%;
}

.loading-container:hover .loading,
.loading-container .loading {
	transition: all 0.5s ease-in-out;
}

#loading-icon {
	position: absolute;
	top: 50%;
	left: 50%;
	max-width: 66px;
	transform: translate(-50%, -50%);
}

@keyframes rotate-loading {
	0% {
		transform: rotate(0deg);
	}

	100% {
		transform: rotate(360deg);
	}
}

.section-row {
	text-align: center;
	margin-bottom: 50px;
}

.section-row .section-title {
	width: 100%;
	max-width: 730px;
	margin: 0 auto;
	margin-bottom: 0;
}

.section-btn {
	text-align: end;
}

.section-title {
	margin-bottom: 60px;
}

.section-title h3 {
	display: inline-block;
	position: relative;
	font-family: var(--default-font);
	font-size: 12px;
	font-weight: 500;
	line-height: 1.8em;
	text-transform: uppercase;
	letter-spacing: 0.2em;
	color: var(--accent-color);
	padding-left: 20px;
	margin-bottom: 10px;
}

.section-title h3::before {
	content: '';
	position: absolute;
	top: 50%;
	left: 0;
	transform: translateY(-50%);
	background: var(--accent-color);
	border-radius: 50%;
	width: 7px;
	height: 7px;
}

.section-title h1 {
	font-size: 56px;
	letter-spacing: -0.005em;
	margin-bottom: 0;
	cursor: none;
}

.section-title h2 {
	font-size: 40px;
	letter-spacing: -0.005em;
	margin-bottom: 0;
	cursor: none;
}

.section-title h1 span,
.section-title h2 span {
	font-weight: 700;
}

.section-title p {
	margin-top: 30px;
	margin-bottom: 0;
}

.help-block.with-errors ul {
	margin: 0;
	text-align: left;
}

.help-block.with-errors ul li {
	color: var(--error-color);
	font-weight: 500;
	font-size: 14px;
}

/************************************/
/**** 	   03. Header css		 ****/
/************************************/

.topbar {
	background-color: var(--secondary-color);
	padding: 10px 0;
}

.topbar-info-content {
	text-align: left;
}

.topbar-info-content p {
	margin: 0;
}

.topbar-info-content p a {
	font-weight: 600;
	color: var(--primary-color);
	transition: all 0.3s ease-in-out;
}

.topbar-info-content p a:hover {
	color: var(--accent-color);
}

/* .topbar-contact-info{
	text-align: right;
}

.topbar-contact-info ul{
	list-style: none;
	padding: 0;
	margin: 0;
}

.topbar-contact-info ul li{
	position: relative;
	display: inline-block;
	font-weight: 500;
	color: var(--primary-color);
	text-transform: capitalize;
	transition: all 0.3s ease-in-out;
}

.topbar-contact-info ul li:hover{
	color: var(--accent-color);
}

.topbar-contact-info ul li::after{
	content: '/';
    font-weight: 900;
    font-size: 14px;
    padding: 0 15px;
}

.topbar-contact-info ul li:last-child::after{
	display: none;
}

.topbar-contact-info ul li a{
	color: inherit;
} */

.topbar-social-links {
	text-align: right;
}

.topbar-social-links ul {
	list-style: none;
	line-height: 1em;
	padding: 0;
	margin: 0;
}

.topbar-social-links ul li {
	display: inline-block;
	margin-right: 15px;
	transition: all 0.3s ease-in-out;
}

.topbar-social-links ul li:last-child {
	margin-right: 0;
}

.topbar-social-links ul li a {
	color: var(--primary-color);
	transition: all 0.3s ease-in-out;
}

.topbar-social-links ul li a:hover {
	color: var(--accent-color);
}

.topbar-social-links ul li a i {
	font-size: 20px;
	color: inherit
}

header.main-header {
	background-color: var(--white-color);
	border-bottom: 1px solid var(--divider-color);
	position: relative;
	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(--dark-divider-color);
	backdrop-filter: blur(30px);
}

.navbar {
	padding: 20px 0;
	align-items: center;
}

.navbar-brand {
	padding: 0;
	margin: 0;
}

.main-menu .nav-menu-wrapper {
	flex: 1;
	text-align: right;
}

.main-menu .nav-menu-wrapper>ul {
	align-items: center;
	display: inline-flex;
}

.main-menu ul li {
	margin: 0 2px;
	position: relative;
}

.main-menu ul li a {
	font-size: 15px;
	font-weight: 500;
	padding: 14px 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;
}

.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: scaleY(0.8);
	transform-origin: top;
	padding: 0;
	margin: 0;
	list-style: none;
	width: 220px;
	border-radius: 20px 20px 20px 0;
	position: absolute;
	left: 0;
	top: 100%;
	overflow: hidden;
	background: var(--primary-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 ul li {
	margin: 0;
	padding: 0;
}

.main-menu ul ul li a {
	color: var(--white-color);
	padding: 8px 20px !important;
	font-weight: 300;
	transition: all 0.3s ease-in-out;
	font-size: 14px;
}

.main-menu ul li:hover>ul {
	visibility: visible;
	opacity: 1;
	transform: scaleY(1);
	padding: 5px 0;
}

.main-menu ul ul li a:hover,
.main-menu ul ul li a:focus {
	color: var(--divider-color);
	background-color: transparent;
	padding: 8px 20px 8px 23px !important;
}

.header-btn {
	margin-left: 50px;
}

.responsive-menu,
.navbar-toggle {
	display: none;
}

.responsive-menu {
	top: 0;
	position: relative;
}

.slicknav_btn {
	background: var(--primary-color);
	padding: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 38px;
	height: 38px;
	margin: 0;
	border-radius: 8px 8px 8px 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);
}

.navbar-toggle a.slicknav_btn.slicknav_open .slicknav_icon span.slicknav_icon-bar:nth-child(2) {
	opacity: 0;
}

.navbar-toggle a.slicknav_btn.slicknav_open .slicknav_icon span.slicknav_icon-bar:nth-child(3) {
	transform: rotate(45deg) translate(-5px, -5px);
}

.slicknav_menu {
	position: absolute;
	width: 100%;
	padding: 0;
	background: var(--primary-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: 15px;
	font-weight: 500;
	text-transform: capitalize;
	padding: 10px 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(--accent-color);
}

.slicknav_menu ul ul li a {
	padding: 10px 20px 10px 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: 15px;
	transition: all 0.3s ease-out;
}

.slicknav_open>a .slicknav_arrow:after {
	transform: rotate(-180deg);
	color: var(--accent-color);
}

/************************************/
/***        04. Hero css	      ***/
/************************************/

.hero {
	background: linear-gradient(270deg, rgba(0, 79, 76, 0) 0.16%, rgba(0, 79, 76, 0.00463538) 0.16%, rgba(0, 79, 76, 0.9) 82.49%), url('../images/hero-bg.jpg');
	background-repeat: no-repeat;
	background-position: center center;
	background-size: cover;
	padding: 140px 0;
}

.hero.hero-video {
	position: relative;
	overflow: hidden;
}

.hero.hero-video::before {
	content: '';
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	background: linear-gradient(270deg, rgba(0, 79, 76, 0) 0.16%, rgba(0, 79, 76, 0.00463538) 0.16%, rgb(18 7 15 / 90%) 82.49%);
	width: 100%;
	height: 100%;
	z-index: 1;
}

.hero.hero-video .hero-bg-video {
	position: absolute;
	top: 0;
	right: 0;
	left: 0;
	bottom: 0;
	width: 100%;
	height: 100%;
}

.hero.hero-video .hero-bg-video video {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.hero.hero-video.hero-slider-layout {
	background: none;
	padding: 0;
}

.hero.hero-video.hero-slider-layout .hero-slide {
	position: relative;
	padding: 140px 0;
}

.hero.hero-video.hero-slider-layout .hero-slide::before {
	content: '';
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	background: linear-gradient(270deg, rgba(0, 79, 76, 0) 0.16%, rgba(0, 79, 76, 0.00463538) 0.16%, rgba(0, 79, 76, 0.9) 82.49%);
	width: 100%;
	height: 100%;
	z-index: 1;
}

.hero.hero-video.hero-slider-layout .hero-slide .hero-slider-image {
	position: absolute;
	top: 0;
	right: 0;
	left: 0;
	bottom: 0;
}

.hero.hero-video.hero-slider-layout .hero-slide .hero-slider-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.hero.hero-video.hero-slider-layout .hero-pagination {
	position: absolute;
	bottom: 40px;
	text-align: center;
	z-index: 2;
}

.hero.hero-video.hero-slider-layout .hero-pagination .swiper-pagination-bullet {
	width: 12px;
	height: 12px;
	background: var(--white-color);
	opacity: 1;
	transition: all 0.3s ease-in-out;
	margin: 0 5px;
}

.hero.hero-video.hero-slider-layout .hero-pagination .swiper-pagination-bullet-active {
	background-color: var(--accent-color);
}

.hero-content {
	position: relative;
	z-index: 1;
}

.short_title {
	width: fit-content;
	border: solid 1px #ffffff38;
	border-radius: 100px;
	padding: 10px 30px;
	color: #ffffffcb;
	background: #00000045;
	margin-bottom: 30px;
}

.hero-content .section-title p,
.hero-content .section-title h1 {
	color: var(--white-color);
}

.hero-btn {
	margin-bottom: 60px;
}

.hero-btn .btn-default.btn-highlighted {
	margin-left: 40px;
}

.hero-content-body {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 30px;
}

.company-support-item {
	width: calc(50% - 15px);
	display: flex;
	align-items: center;
}

.company-support-item .icon-box {
	position: relative;
	background-color: var(--accent-color);
	border-radius: 50%;
	width: 50px;
	height: 50px;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-right: 15px;
	transition: all 0.4s ease-in-out;
}

.company-support-item:hover .icon-box {
	background-color: var(--primary-color);
}

.company-support-item .icon-box::before {
	content: '';
	display: block;
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: var(--primary-color);
	border-radius: 50%;
	transform: scale(0);
	transition: all 0.3s ease-in-out;
}

.company-support-item:hover .icon-box::before {
	transform: scale(1);
}

.company-support-item .icon-box img {
	position: relative;
	max-width: 30px;
	z-index: 1;
}

.company-support-content {
	text-align: left;
	width: calc(100% - 65px);
}

.company-support-content p {
	color: var(--white-color);
	margin: 0;
}

.company-support-content p span {
	font-weight: 600;
}

/************************************/
/***       05. About Us css	      ***/
/************************************/

.about-us {
	padding: 100px 0;
}

.about-image {
	position: relative;
	overflow: hidden;
}

.about-img figure {
	width: 100%;
	display: block;
}

.about-img {
	padding-right: 80px;
}

.about-img figure {
	position: relative;
	border-radius: 999px 999px 0px 0px;
	padding: 0 0 12px 12px;
}

.about-img figure::before {
	content: '';
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	right: 12px;
	border: 1px solid var(--divider-color);
	border-radius: 999px 999px 0px 0px;
	width: 100%;
	height: 100%;
}

.about-img img {
	width: 100%;
	aspect-ratio: 1 / 1.17;
	object-fit: cover;
	border-radius: 999px 999px 0px 0px;
}

.company-processing-box {
	position: absolute;
	top: 0;
	right: 0;
	transform: translateY(100%);
	background-color: var(--white-color);
	box-shadow: 0px 0px 30px 0px #0000000D;
	border: 1px solid var(--divider-color);
	border-radius: 8px;
	display: flex;
	align-items: center;
	padding: 8px;
	animation: processingmoveobject 3s infinite linear alternate;
}

@keyframes processingmoveobject {
	50% {
		right: 50px;
	}
}

.company-processing-box .icon-box {
	background: var(--accent-color);
	border-radius: 8px;
	width: 35px;
	height: 35px;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-right: 10px;
}

.company-processing-box .icon-box img {
	max-width: 24px;
}

.company-processing-content {
	width: calc(100% - 45px);
}

.company-processing-content p {
	font-weight: 600;
	color: var(--primary-color);
	text-transform: capitalize;
	margin: 0;
}

.about-company-testimonial {
	position: absolute;
	display: block;
	bottom: 0;
	right: 0;
	transform: translateY(-100%);
}

.about-testimonial-slider {
	background-color: var(--white-color);
	box-shadow: 0px 0px 30px 0px #0000000D;
	border: 1px solid var(--divider-color);
	border-radius: 8px;
	padding: 15px 20px;
	width: 100%;
	max-width: 270px;
	overflow: hidden;
}

.about-testimonial-slider::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	transform: translate(-50%, -50%);
	background: var(--red-color) url('../images/about-testimonial-quote.svg') no-repeat;
	background-position: center center;
	background-size: 20px auto;
	border-radius: 50%;
	width: 30px;
	height: 30px;
}

.about-testimonial-slider .swiper-wrapper {
	cursor: none;
}

.about-testimonial-item p {
	margin: 0;
}

.about-testimonial-item p span {
	font-weight: 600;
}

.about-content {
	margin-left: 30px;
}

.about-list-btn {
	display: flex;
	flex-wrap: wrap;
	align-content: space-between;
	height: 100%;
}

.about-content-list {
	margin-bottom: 30px;
}

.about-content-list ul {
	list-style: none;
	padding: 0;
	margin: 0;
}

.about-content-list ul li {
	position: relative;
	font-weight: 500;
	color: var(--primary-color);
	padding-left: 35px;
	margin-bottom: 25px;
}

.about-content-list ul li:last-child {
	margin-bottom: 0;
}

.about-content-list ul li::before {
	content: '';
	position: absolute;
	top: 50%;
	left: 0;
	transform: translateY(-50%);
	background: url("../images/icon-about-list.svg") no-repeat;
	background-position: left center;
	background-size: cover;
	width: 22px;
	height: 22px;
}

.about-content-counter {
	background-color: var(--secondary-color);
	border-radius: 30px 30px 30px 0;
	padding: 40px;
}

.about-counter-item {
	border-bottom: 1px solid var(--white-color);
	padding-bottom: 20px;
	margin-bottom: 20px;
}

.about-counter-item:last-child {
	border-bottom: none;
	padding-bottom: 0;
	margin-bottom: 0;
}

.about-counter {
	margin-bottom: 10px;
}

.about-counter h2 {
	font-size: 30px;
	font-weight: 600;
	/* color: var(--e-global-color-primary); */
	background: var(--accent-color);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
}

.about-counter-content p {
	font-size: 18px;
	text-transform: capitalize;
	margin: 0;
}

/************************************/
/***      06. Our Services css	  ***/
/************************************/

.our-services {
	background: url('../images/section-bg-shape-2.svg'), var(--secondary-color);
	background-repeat: no-repeat;
	background-position: bottom -1px center;
	background-size: 100% auto;
	padding: 100px 0 20px;
}

.service-item {
	position: relative;
	background-color: var(--white-color);
	box-shadow: 0px 0px 30px 0px #0000000A;
	border: 1px solid var(--divider-color);
	border-radius: 30px 30px 30px 0;
	overflow: hidden;
	height: calc(100% - 30px);
	margin-bottom: 30px;
	padding: 35px;
}

.service-item:before {
	content: '';
	position: absolute;
	top: 100%;
	right: 0;
	left: 0;
	background: var(--primary-color);
	border-radius: 500px 500px 0 0;
	height: 100%;
	width: 100%;
	z-index: 0;
	opacity: 0;
	transition: all 0.4s ease-in-out;
}

.service-item:hover:before {
	top: 0;
	border-radius: 0;
	opacity: 1;
}

.service-item .icon-box {
	position: relative;
	background: var(--accent-color);
	border-radius: 50%;
	width: 70px;
	height: 70px;
	display: flex;
	align-items: center;
	justify-content: center;
	overflow: hidden;
	margin-bottom: 30px;
	transition: all 0.5s ease-in-out;
	z-index: 1;
}

.service-item:hover .icon-box {
	background-color: var(--white-color);
}

.service-item .icon-box::before {
	content: '';
	display: block;
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: var(--white-color);
	border-radius: 50%;
	transform: scale(0);
	transition: all 0.4s ease-in-out;
}

.service-item:hover .icon-box::before {
	transform: scale(1);
}

.service-item .icon-box img {
	position: relative;
	max-width: 36px;
	z-index: 1;
	transition: all 0.3s ease-in-out;
}

.service-item:hover .icon-box img {
	filter: brightness(1) invert(1);
}

.service-content {
	position: relative;
	border-bottom: 1px solid var(--divider-color);
	padding-bottom: 30px;
	margin-bottom: 30px;
	z-index: 1;
	transition: all 0.3s ease-in-out;
}

.service-item:hover .service-content {
	border-color: var(--dark-divider-color);
}

.service-content h3 {
	font-size: 18px;
	font-weight: 600;
	text-transform: capitalize;
	margin-bottom: 10px;
	transition: all 0.3s ease-in-out;
}

.service-item:hover .service-content h3 {
	color: var(--white-color);
}

.service-content p {
	margin: 0;
	transition: all 0.3s ease-in-out;
}

.service-item:hover .service-content p {
	color: var(--white-color);
}

.service-btn {
	position: relative;
	z-index: 1;
}

.redmore-btn {
	position: relative;
	font-size: 16px;
	font-weight: 600;
	text-transform: capitalize;
	color: var(--e-global-color-primary);
	padding-right: 30px;
	transition: all 0.3s ease-in-out;
}


.service-item:hover .redmore-btn {
	color: var(--white-color);
}

.redmore-btn::before {
	content: '\f061';
	font-family: 'FontAwesome';
	position: absolute;
	right: 0;
	top: 50%;
	font-size: 18px;
	color: var(--accent-color);
	line-height: normal;
	transform: translateY(-50%) rotate(-45deg);
	width: 18px;
	height: 18px;
	transition: all 0.3s ease-in-out;
}

.redmore-btn:hover::before {
	transform: translateY(-50%) rotate(0deg);
	color: var(--white-color);
}

/************************************/
/***     07. Why Choose Us css	  ***/
/************************************/

.why-choose-us {
	padding: 50px 0 100px;
}

.why-choose-body {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 20px 30px;
	margin-bottom: 60px;
}

.why-choose-item {
	width: calc(50% - 15px);
	border-bottom: 1px solid var(--divider-color);
	display: flex;
	align-items: center;
	padding-bottom: 20px;
}

.why-choose-item:nth-last-child(-n + 2) {
	border-bottom: none;
	padding-bottom: 0;
}

.why-choose-item .icon-box {
	position: relative;
	background: var(--accent-color);
	border-radius: 50%;
	width: 50px;
	height: 50px;
	display: flex;
	align-items: center;
	justify-content: center;
	overflow: hidden;
	margin-right: 15px;
	transition: all 0.4s ease-in-out;
}

.why-choose-item .icon-box::before {
	content: '';
	display: block;
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: var(--primary-color);
	border-radius: 50%;
	transform: scale(0);
	transition: all 0.4s ease-in-out;
}

.why-choose-item:hover .icon-box::before {
	transform: scale(1);
}

.why-choose-item .icon-box img {
	position: relative;
	max-width: 25px;
	z-index: 1;
}

.why-choose-item-content {
	width: calc(100% - 65px);
}

.why-choose-item-content h3 {
	font-size: 18px;
	font-weight: 600;
	text-transform: capitalize;
}

.why-choose-images {
	background: url('../images/why-choose-image-bg-shape.svg') no-repeat;
	background-position: bottom left;
	background-size: auto;
	padding: 0 0 45px 90px;
}

.why-choose-img {
	position: relative;
	padding: 45px 45px 45px 0;
}

.why-choose-img::before {
	content: '';
	position: absolute;
	right: 0;
	top: 0;
	bottom: 0;
	background: var(--primary-color);
	border-radius: 20px 20px 20px 0;
	width: 220px;
	height: 100%;
	z-index: 0;
}

.why-choose-img figure {
	border-radius: 30px 30px 30px 0;
	overflow: hidden;
}

.why-choose-img img {
	width: 100%;
	border: 6px solid var(--white-color);
	aspect-ratio: 1 / 0.91;
	object-fit: cover;
	border-radius: 30px 30px 30px 0;
}

/************************************/
/***     08. How It Work css	  ***/
/************************************/

.how-it-work {
	background: url('../images/section-bg-shape.svg'), var(--secondary-color);
	background-repeat: no-repeat;
	background-position: bottom -1px center;
	background-size: 100% auto;
	padding: 100px 0 200px;
}

.how-work-item {
	position: relative;
	background-color: var(--white-color);
	border-radius: 30px 30px 30px 0;
	padding: 30px 30px 60px 30px;
	z-index: 1;
}

.how-work-item::before {
	content: '';
	position: absolute;
	bottom: -50%;
	right: 0;
	transform: translateY(20%);
	background: url('../images/how-work-box-arrow-1.svg');
	background-repeat: no-repeat;
	background-position: right bottom;
	background-size: auto;
	width: 137px;
	height: 137px;
}

.how-it-work .col-lg-3:last-child .how-work-item::before {
	display: none;
}

.how-it-work .col-lg-3:nth-child(even) .how-work-item::before {
	bottom: auto;
	top: -50%;
	background: url('../images/how-work-box-arrow-2.svg');
	transform: translateY(-20%);
}

.how-it-work .col-lg-3:nth-child(even) .how-work-item {
	padding: 60px 30px 30px 30px;
	margin-top: 140px;
}

.how-work-no {
	position: absolute;
	bottom: 0;
	left: 50%;
	transform: translate(-50%, 50%);
	background: var(--accent-color);
	border: 8px solid var(--secondary-color);
	border-radius: 50%;
	width: 52px;
	height: 52px;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: all 0.3s ease-in-out;
}

.how-work-item:hover .how-work-no {
	background-color: var(--primary-color);
}

.how-it-work .col-lg-3:nth-child(even) .how-work-no {
	bottom: auto;
	top: 0;
	transform: translate(-50%, -50%);
}

.how-work-no h3 {
	font-size: 18px;
	font-weight: 600;
	line-height: normal;
	color: var(--white-color);
}

.how-work-item .icon-box {
	margin-bottom: 20px;
}

.how-work-item .icon-box img {
	max-width: 40px;
}

.how-work-content h3 {
	font-size: 18px;
	font-weight: 600;
	text-transform: capitalize;
	margin-bottom: 20px;
}

.how-work-content p {
	margin: 0;
}

/************************************/
/***     09. Our Features css	  ***/
/************************************/

.our-features {
	padding: 50px 0 100px;
}

.features-item {
	position: relative;
	text-align: center;
	height: calc(100% - 30px);
	margin-bottom: 30px;
}

.features-item::before {
	content: '';
	position: absolute;
	right: -15px;
	top: 50%;
	transform: translateY(-50%);
	width: 1px;
	height: 140px;
	background: var(--divider-color);
}

.our-features .col-lg-3:last-child .features-item::before {
	display: none;
}

.features-item .icon-box {
	position: relative;
	background: var(--accent-color);
	border-radius: 50%;
	width: 70px;
	height: 70px;
	display: flex;
	align-items: center;
	justify-content: center;
	overflow: hidden;
	margin: 0 auto;
	margin-bottom: 20px;
}

.features-item .icon-box::before {
	content: '';
	display: block;
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: var(--primary-color);
	border-radius: 50%;
	transform: scale(0);
	transition: all 0.4s ease-in-out;
}

.features-item:hover .icon-box::before {
	transform: scale(1);
}

.features-item .icon-box img {
	position: relative;
	max-width: 36px;
	z-index: 1;
}

.features-content h3 {
	font-size: 18px;
	font-weight: 600;
	text-transform: capitalize;
	margin-bottom: 20px;
}

.features-content p {
	margin: 0;
}

.our-counter-box {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 120px;
	padding: 0;
	border-top: 1px solid var(--divider-color);
	margin-top: 20px;
	padding-top: 50px;
}

.counter-item {
	position: relative;
	width: calc(20% - 96px);
	text-align: center;
}

.counter-item::before {
	content: '';
	position: absolute;
	right: -60px;
	top: 0;
	bottom: 0;
	width: 1px;
	height: 100%;
	background: var(--divider-color);
}

.counter-item:last-child:before {
	display: none;
}

.counter-item h2 {
	font-size: 30px;
	font-weight: 700;
	background: var(--accent-color);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	margin-bottom: 10px;
}

.counter-item p {
	text-transform: capitalize;
	margin: 0;
}

/************************************/
/***       10. CTA Box css  	  ***/
/************************************/

.cta-box {
	background: url('../images/section-bg-shape.svg'), var(--primary-color);
	background-repeat: no-repeat;
	background-position: bottom -1px center;
	background-size: auto;
	padding: 100px 0 200px;
}

.cta-box-images {
	position: relative;
	padding: 0 20px 20px 0;
	margin-right: 50px;
}

.cta-box-img {
	position: relative;
	padding: 20px;
}

.cta-box-img::before {
	content: '';
	position: absolute;
	left: 0;
	top: 0;
	background-color: var(--dark-divider-color);
	border-radius: 30px 30px 30px 0;
	width: 280px;
	height: 270px;
}

.cta-box-img figure {
	display: block;
	border-radius: 30px 30px 30px 0;
}

.cta-box-img img {
	position: relative;
	width: 100%;
	aspect-ratio: 1 / 0.81;
	object-fit: cover;
	border-radius: 30px 30px 30px 0;
	z-index: 1;
}

.cta-contact-circle {
	position: absolute;
	bottom: 0;
	right: 0;
	z-index: 2;
}

.cta-contact-circle img {
	max-width: 133px;
	animation: rotate 30s infinite linear;
}

@keyframes rotate {
	from {
		transform: rotate(0deg);
	}

	to {
		transform: rotate(360deg);
	}
}

.cta-box-content .section-title p,
.cta-box-content .section-title h2 {
	color: var(--white-color);
}

.cta-box-btn {
	position: relative;
}

.cta-box-btn::before {
	content: '';
	position: absolute;
	bottom: 0;
	right: 50%;
	transform: translateX(50%);
	background: url('../images/arrow-cta-btn.svg') no-repeat;
	background-position: right center;
	background-size: cover;
	width: 130px;
	height: 50px;
	animation: ctamoveobject 3s infinite linear alternate;
}

@keyframes ctamoveobject {
	50% {
		right: 45%;
	}
}

.cta-box-btn .btn-default.btn-highlighted {
	background: var(--white-color);
	color: var(--primary-color);
}

.cta-box-btn .btn-default.btn-highlighted:hover {
	background-color: transparent;
	color: var(--white-color);
}


/************************************/
/***      11. Our Pricing css  	  ***/
/************************************/

.our-pricing {
	padding: 50px 0 100px;
}

.pricing-item {
	background: var(--white-color);
	box-shadow: 0px 0px 30px 0px #0000000A;
	border: 1px solid var(--divider-color);
	border-radius: 30px 30px 30px 0;
	height: calc(100% - 30px);
	margin-bottom: 30px;
	padding: 40px;
}

.pricing-item.highlighted-box {
	position: relative;
	background: var(--primary-color);
	overflow: hidden;
}

.pricing-item.highlighted-box::before {
	content: '';
	position: absolute;
	top: 0;
	right: 0;
	transform: translate(30%, -30%);
	background: linear-gradient(180deg, rgba(40, 108, 94, 0) 0%, rgba(255, 255, 255, 0.12) 100%);
	border-radius: 50%;
	width: 150px;
	height: 150px;
	z-index: 0;
}

.pricing-header {
	position: relative;
	margin-bottom: 30px;
	z-index: 1;
}

.pricing-header h2 {
	background-color: var(--accent-color);
	border-radius: 15px 15px 15px 0;
	display: inline-block;
	font-size: 54px;
	font-weight: 600;
	line-height: 1em;
	color: var(--white-color);
	padding: 10px 20px;
}

.pricing-header h2 sub {
	font-size: 18px;
	font-weight: 400;
	text-transform: capitalize;
	bottom: 0;
}

.pricing-body {
	border-bottom: 1px solid var(--divider-color);
	margin-bottom: 30px;
	padding-bottom: 30px;
}

.pricing-item.highlighted-box .pricing-body {
	border-color: var(--dark-divider-color);
}

.pricing-title {
	margin-bottom: 30px;
}

.pricing-title h3 {
	font-size: 18px;
	font-weight: 600;
	text-transform: capitalize;
}

.pricing-item.highlighted-box .pricing-title h3 {
	color: var(--white-color);
}

.pricing-list ul {
	list-style: none;
	padding: 0;
	margin: 0;
}

.pricing-list ul li {
	position: relative;
	font-weight: 500;
	color: var(--primary-color);
	padding-left: 35px;
	margin-bottom: 20px;
}

.pricing-item.highlighted-box .pricing-list ul li {
	color: var(--white-color);
}

.pricing-list ul li:last-child {
	margin-bottom: 0;
}

.pricing-list ul li::before {
	content: '';
	position: absolute;
	top: 50%;
	left: 0;
	transform: translateY(-50%);
	background: url(../images/icon-about-list.svg) no-repeat;
	background-position: left center;
	background-size: cover;
	width: 22px;
	height: 22px;
}

.pricing-item.highlighted-box .pricing-list ul li::before {
	filter: brightness(0) invert(1);
}

.pricing-btn .btn-default.btn-highlighted {
	background: var(--accent-color);
	border-color: var(--accent-color);
}

.pricing-btn .btn-default.btn-highlighted:hover {
	border-color: var(--white-color);
}

/************************************/
/***     12. Support Team css  	  ***/
/************************************/

.support-team {
	background: var(--secondary-color);
	padding: 100px 0;
}

.support-team-images {
	display: flex;
	justify-content: center;
	margin-bottom: 60px;
}

.support-team-images figure {
	margin-left: -40px;
	border-radius: 50%;
	overflow: hidden;
}

.support-team-images figure:first-child {
	margin-left: 0;
}

.support-team-images figure::after {
	z-index: 0;
}

.support-team-images img {
	max-width: 120px;
	border: 4px solid var(--secondary-color);
	border-radius: 50%;
}

.support-team-contact {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 40px 80px;
}

.support-team-item {
	position: relative;
	display: flex;
	align-items: center;
	width: calc(50% - 40px);
}

.support-team-item::before {
	content: '';
	position: absolute;
	top: 0;
	bottom: 0;
	right: -40px;
	border: 1px solid var(--divider-color);
	width: 1px;
	height: 100%;
}

.support-team-item:nth-child(2n + 2):before {
	display: none;
}

.support-team-item:nth-child(odd) {
	flex-direction: row-reverse;
	text-align: right;
}

.support-team-item .icon-box {
	position: relative;
	background: var(--accent-color);
	border-radius: 50%;
	width: 60px;
	height: 60px;
	display: flex;
	align-items: center;
	justify-content: center;
	overflow: hidden;
	margin-right: 20px;
}

.support-team-item:nth-child(odd) .icon-box {
	margin-left: 20px;
	margin-right: 0;
}

.support-team-item .icon-box::before {
	content: '';
	display: block;
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: var(--primary-color);
	border-radius: 50%;
	transform: scale(0);
	transition: all 0.4s ease-in-out;
}

.support-team-item:hover .icon-box::before {
	transform: scale(1);
}

.support-team-item .icon-box img {
	position: relative;
	max-width: 30px;
	z-index: 1;
}

.support-team-content {
	width: calc(100% - 80px);
}

.support-team-content p {
	text-transform: capitalize;
	margin-bottom: 10px;
}

.support-team-content h3 {
	font-size: 18px;
	font-weight: 600;
}

/************************************/
/***      13. Our FAQs css  	  ***/
/************************************/

.our-faqs {
	padding: 100px 0;
}

.our-faqs-content {
	margin-right: 20px;
}

.faqs-content-list {
	border-bottom: 1px solid var(--divider-color);
	margin-bottom: 30px;
	padding-bottom: 30px;
}

.faqs-content-list:last-child {
	border-bottom: none;
	padding-bottom: 0;
	margin-bottom: 0
}

.faqs-content-list h3 {
	position: relative;
	font-size: 18px;
	font-weight: 600;
	text-transform: capitalize;
	margin-bottom: 20px;
	padding-left: 30px;
}

.faqs-content-list h3::before {
	content: '';
	position: absolute;
	top: 50%;
	left: 0;
	transform: translateY(-50%);
	background: url(../images/icon-about-list.svg) no-repeat;
	background-position: left center;
	background-size: cover;
	width: 18px;
	height: 18px;
}

.faqs-content-list p {
	margin: 0;
}

.our-faq-section .accordion-item {
	border: 1px solid var(--divider-color);
	border-radius: 12px 12px 12px 0;
	margin-bottom: 30px;
	padding: 0;
	transition: all 0.3s ease-in-out;
	overflow: hidden;
}

.our-faq-section .accordion-item:last-child {
	margin-bottom: 0;
}

.our-faq-section .accordion-header .accordion-button {
	font-size: 18px;
	font-weight: 600;
	line-height: 1.2em;
	background-color: transparent;
	color: var(--primary-color);
	padding: 20px 50px 20px 20px;
	transition: all 0.3s ease-in-out;
}

.our-faq-section .accordion-button:not(.collapsed) {
	background: var(--secondary-color);
	color: var(--e-global-color-primary);
	border-bottom: 1px solid var(--dark-divider-color);
}

.our-faq-section .accordion-header .accordion-button.collapsed {
	background-color: transparent;
	color: var(--primary-color);
}

.our-faq-section .accordion-item .accordion-button::after,
.our-faq-section .accordion-item .accordion-button.collapsed::after {
	content: '\f077';
	font-family: "Font Awesome 6 Free";
	position: absolute;
	right: 20px;
	top: 50%;
	bottom: auto;
	transform: translate(0px, -50%);
	background-color: var(--white-color);
	border-radius: 4px;
	display: flex;
	align-items: center;
	justify-content: center;
	font-weight: 900;
	font-size: 14px;
	line-height: normal;
	width: 24px;
	height: 24px;
	padding: 5px;
	color: var(--red-color);
	transition: all 0.3s ease-in-out;
}

.our-faq-section .accordion-item .accordion-button.collapsed::after {
	transform: translate(0px, -50%) rotate(-180deg);
	background: var(--secondary-color);
	color: var(--e-global-color-primary);
}

.our-faq-section .accordion-header .accordion-button span {
	margin-right: 5px;
}

.our-faq-section .accordion-item .accordion-body {
	background: var(--secondary-color);
	padding: 20px 50px 20px 20px;
}

.our-faq-section .accordion-item .accordion-body p {
	color: var(--e-global-color-primary);
	margin: 0;
}

/************************************/
/***   14. Our Testimonial  css   ***/
/************************************/

.our-testimonial {
	background: url(../images/section-bg-shape.svg), var(--secondary-color);
	background-repeat: no-repeat;
	background-position: bottom -1px center;
	background-size: 100% auto;
	padding: 100px 0 200px;
}

.our-testimonial-content {
	margin-right: 10px;
}

.testimonial-slider {
	position: relative;
	padding: 130px 0;
}

.testimonial-slider::before {
	content: '';
	position: absolute;
	left: 0;
	top: 0;
	right: 0;
	background: var(--accent-color);
	border-radius: 30px 30px 30px 0;
	width: 470px;
	height: 100%;
	margin: 0 auto;
	z-index: 0;
}

.testimonial-box {
	position: relative;
}

.testimonial-slider .testimonial-box::before {
	content: '';
	position: absolute;
	left: 0;
	top: 15px;
	right: 0;
	bottom: 0;
	background-color: var(--white-color);
	border: 1px solid var(--divider-color);
	border-radius: 30px 30px 30px 0;
	width: 98%;
	height: 100%;
	margin: 0 auto;
	z-index: 1;
}

.testimonial-slider .testimonial-box::after {
	content: '';
	position: absolute;
	left: 0;
	top: 30px;
	right: 0;
	bottom: 0;
	background-color: var(--white-color);
	border: 1px solid var(--divider-color);
	border-radius: 30px 30px 30px 0;
	width: 96%;
	height: 100%;
	margin: 0 auto;
	z-index: 0;
}

.testimonial-slider .swiper {
	position: relative;
	background-color: var(--white-color);
	box-shadow: 0px 12px 37.1px 0px #0000000D;
	border: 1px solid var(--divider-color);
	border-radius: 30px 30px 30px 0;
	padding: 40px;
	overflow-y: visible;
	z-index: 2;
}


.testimonial-header {
	margin-bottom: 50px;
}

.testimonial-content p {
	margin: 0;
}

.testimonial-body {
	display: inline-flex;
	align-items: center;
}

.author-image {
	margin-right: 20px;
}

.author-image img {
	width: 50px;
	height: 50px;
	border-radius: 50%;
}

.author-content {
	text-align: left;
	width: calc(100% - 70px);
}

.author-content h3 {
	font-size: 18px;
	font-weight: 600;
	text-transform: capitalize;
	margin-bottom: 5px;
}

.author-content p {
	text-transform: capitalize;
	margin: 0;
}

.testimonial-btn {
	position: absolute;
	top: -90px;
	right: 0;
	left: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	z-index: 2;
}

.testimonial-slider .testimonial-button-next,
.testimonial-slider .testimonial-button-prev {
	position: relative;
	width: 50px;
	height: 50px;
	background-color: var(--white-color);
	border-radius: 10px;
	transition: all 0.4s ease-in-out;
	z-index: 99;
}

.testimonial-slider .testimonial-button-next {
	margin-left: 10px;
}


.testimonial-slider .testimonial-button-next:hover,
.testimonial-slider .testimonial-button-prev:hover {
	background-color: var(--primary-color);
}

.testimonial-slider .testimonial-button-next::before,
.testimonial-slider .testimonial-button-prev::before {
	content: '\f062';
	font-family: 'FontAwesome';
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	transform: rotate(90deg);
	font-size: 20px;
	color: var(--accent-color);
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	height: 100%;
	transition: all 0.4s ease-in-out;
}

.testimonial-slider .testimonial-button-prev::before {
	transform: rotate(270deg);
}

.testimonial-slider .testimonial-button-next:hover::before,
.testimonial-slider .testimonial-button-prev:hover::before {
	color: var(--white-color);
}

.testimonial-slider .testimonial-pagination {
	position: absolute;
	bottom: -80px;
	text-align: center;
	z-index: 1;
}

.testimonial-slider .testimonial-pagination .swiper-pagination-bullet {
	width: 12px;
	height: 12px;
	background: var(--white-color);
	opacity: 1;
	transition: all 0.3s ease-in-out;
	margin: 0 5px;
}

.testimonial-slider .testimonial-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
	background: var(--red-color);
}

/************************************/
/***      15. Our Blog  css       ***/
/************************************/

.our-blog {
	padding: 50px 0 100px;
}

.highlighted-blog-post {
	position: relative;
}

.highlighted-blog-featured-img a {
	position: relative;
	display: block;
	border-radius: 30px 30px 30px 0;
	cursor: none;
	overflow: hidden;
}

.highlighted-blog-featured-img a:before {
	content: '';
	display: block;
	position: absolute;
	top: 0;
	bottom: 0;
	right: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: linear-gradient(180deg, rgba(0, 0, 0, 0) 38.97%, rgba(0, 0, 0, 0.8) 100%);
	z-index: 0;
}

.highlighted-blog-featured-img img {
	width: 100%;
	aspect-ratio: 1/ 0.93;
	object-fit: cover;
}

.highlighted-blog-body {
	max-width: 480px;
	position: absolute;
	bottom: 40px;
	left: 40px;
	right: 20px;
	z-index: 1;
}

.article-post-meta {
	margin-bottom: 10px;
}

.article-post-meta ul {
	list-style: none;
	margin: 0;
	padding: 0;
}

.article-post-meta ul li a i {
	margin-right: 10px;
}

.article-post-meta ul li a {
	color: var(--white-color);
	text-transform: capitalize;
}

.highlighted-blog-content {
	border-bottom: 1px solid var(--dark-divider-color);
	padding-bottom: 20px;
	margin-bottom: 20px;
}

.highlighted-blog-content h3 {
	color: var(--white-color);
	font-size: 18px;
	font-weight: 600;
	line-height: 1.5em;
	text-transform: capitalize;
	margin-bottom: 10px;
}

.highlighted-blog-content h3 a {
	color: inherit;
}

.highlighted-blog-content p {
	color: var(--white-color);
	margin: 0;
}

.highlighted-blog-btn .redmore-btn {
	color: var(--white-color);
}

.highlighted-blog-btn .redmore-btn:hover {
	color: var(--accent-color);
}

.highlighted-blog-btn .redmore-btn::before {
	color: var(--white-color);
}

.highlighted-blog-btn .redmore-btn:hover:before {
	color: var(--accent-color);
}

.article-post-box {
	display: flex;
	flex-wrap: wrap;
	gap: 30px;
}

.article-post {
	background-color: var(--white-color);
	border: 1px solid var(--divider-color);
	box-shadow: 0px 10px 30px 0px #00000008;
	border-radius: 30px 30px 30px 0;
	display: flex;
	align-items: center;
	height: 100%;
}

.article-post .article-featured-image {
	width: 50%;
	height: 100%;
}

.article-post .article-featured-image figure {
	height: 100%;
}

.article-post .article-featured-image a {
	height: 100%;
	cursor: none;
	display: block;
	border-radius: 30px 0 0 0;
	overflow: hidden;
}

.article-post .article-featured-image img {
	width: 100%;
	height: 100%;
	aspect-ratio: 1 / 0.88;
	object-fit: cover;
	border-radius: 30px 0 0 0;
	transition: all 0.5s ease-in-out;
}

.article-post:hover .article-featured-image img {
	transform: scale(1.1);
}

.article-post-body {
	display: flex;
	width: 50%;
	flex-wrap: wrap;
	align-items: center;
	padding: 20px;
}

.article-post-body .article-post-meta ul li a i,
.article-post-body .article-post-meta ul li a {
	color: var(--text-color);
}

.article-post-content {
	margin-bottom: 20px;
}

.article-post-content h3 {
	font-size: 18px;
	font-weight: 600;
	margin-bottom: 10px;
}

.article-post-content h3 a {
	color: inherit;
}

.article-post-content p {
	margin: 0;
}

.article-post-btn .redmore-btn:hover {
	color: var(--primary-color);
}

.article-post-btn .redmore-btn:hover:before {
	color: var(--primary-color);
}

/************************************/
/***   		16. Footer css        ***/
/************************************/

.main-footer {
	background: #1a0930;
	padding: 60px 0 0;
}

.footer-newsletter-box {
	border-bottom: 1px solid var(--dark-divider-color);
	margin-bottom: 60px;
	padding-bottom: 60px;
}

.footer-newsletter-item {
	display: flex;
	align-items: center;
}

.footer-newsletter-item .icon-box {
	margin-right: 30px;
}

.footer-newsletter-item .icon-box img {
	max-width: 40px;
}

.footer-newsletter-item-content {
	width: calc(100% - -70px);
}

.footer-newsletter-item-content h3 {
	font-size: 24px;
	font-weight: 600;
	color: var(--white-color);
}

.footer-newsletter-form .form-group {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 15px;
}

.footer-newsletter-form .form-group .form-control {
	width: 70%;
	padding: 13px 20px;
	border: 1px solid var(--divider-color);
	background: var(--white-color);
	color: var(--text-color);
	border-radius: 12px 12px 12px 0;
	box-shadow: none;
}

.footer-newsletter-form .form-group .form-control::placeholder {
	color: var(--text-color);
}

.footer-newsletter-form .form-group .btn-default.btn-highlighted {
	background: var(--accent-color);
	border-color: var(--accent-color);
}

.footer-newsletter-form .form-group .btn-default.btn-highlighted:hover {
	border-color: var(--white-color);
}

.footer-logo {
	margin-bottom: 40px;
}

.footer-logo img {
	max-width: 180px;
}

.about-footer-content p {
	color: var(--white-color);
	margin: 0;
}

.footer-links h3 {
	font-size: 18px;
	font-weight: 600;
	text-transform: capitalize;
	color: var(--white-color);
	margin-bottom: 30px;
}

.footer-links ul {
	margin: 0;
	padding: 0;
	padding-left: 20px;
}

.footer-links ul li {
	text-transform: capitalize;
	margin-bottom: 15px;
}

.footer-links ul li:last-child {
	margin-bottom: 0;
}

.footer-links ul li::marker {
	color: var(--accent-color);
}

.footer-links ul li a {
	color: var(--white-color);
	transition: all 0.3s ease-in-out;
}

.footer-links ul li:hover a {
	color: var(--accent-color);
}

.footer-contact-details .footer-info-box {
	position: relative;
	padding-left: 40px;
	margin-bottom: 25px;
}

.footer-contact-details .footer-info-box:last-child {
	margin-bottom: 0;
}

.footer-info-box .icon-box {
	position: absolute;
	top: -2px;
	left: 0;
}

.footer-info-box .icon-box img {
	max-width: 24px;
}

.footer-info-box-content p {
	color: var(--white-color);
	margin-bottom: 0;
}

.footer-copyright {
	border-top: 1px solid var(--dark-divider-color);
	padding: 16px 0;
	margin-top: 10px;
}

.footer-copyright-text p {
	color: var(--white-color);
	margin: 0;
}

.footer-social-links {
	text-align: right;
}

.footer-social-links ul {
	list-style: none;
	line-height: 1em;
	padding: 0;
	margin: 0;
}

.footer-social-links ul li {
	display: inline-block;
	margin-right: 15px;
	transition: all 0.3s ease-in-out;
}

.footer-social-links ul li:last-child {
	margin-right: 0;
}

.footer-social-links ul li a {
	color: var(--white-color);
	transition: all 0.3s ease-in-out;
}

.footer-social-links ul li a:hover {
	color: var(--accent-color);
}

.footer-social-links ul li a i {
	font-size: 20px;
	color: inherit
}

/************************************/
/***     17. About us Page css	  ***/
/************************************/

.page-header {
	background: linear-gradient(270deg, rgba(0, 79, 76, 0) 0.16%, rgba(0, 79, 76, 0.00463538) 0.16%, rgb(18 7 15 / 90%) 82.49%), url(../images/page-header-bg.jpg);
	background-repeat: no-repeat;
	background-position: center center;
	background-size: cover;
	padding: 160px 0;
}

.page-header-box {
	text-align: left;
}

.page-header-box h1 {
	display: inline-block;
	font-size: 56px;
	letter-spacing: -0.005em;
	font-weight: 700;
	color: var(--white-color);
	margin-bottom: 20px;
	cursor: none;
}

.page-header-box h1 span {
	font-weight: 500;
}

.page-header-box ol {
	margin: 0;
	display: inline-flex;
	justify-content: left;
}

.page-header-box ol {
	margin: 0;
	padding: 0;
	justify-content: center;
}

.page-header-box ol li.breadcrumb-item {
	position: relative;
	font-size: 16px;
	font-weight: 400;
	line-height: normal;
	color: var(--white-color);
	text-transform: capitalize;
	padding-right: 15px;
}

.page-header-box ol li.breadcrumb-item:last-child {
	padding-right: 0;
}

.page-header-box ol li.breadcrumb-item::before {
	content: '';
	position: absolute;
	top: 50%;
	right: 0;
	transform: translateY(-50%);
	background: var(--accent-color);
	border-radius: 50%;
	width: 7px;
	height: 7px;
}

.page-header-box ol .breadcrumb-item:last-child:before {
	display: none;
}

.page-header-box ol li.breadcrumb-item a {
	color: inherit;
}

.vision-mission {
	background: url(../images/section-bg-shape-2.svg), var(--secondary-color);
	background-repeat: no-repeat;
	background-position: bottom -1px center;
	background-size: auto;
	padding: 100px 0 50px;
}

.vision-mission-box {
	background: var(--white-color);
	box-shadow: 0px 0px 30px 0px #0000000A;
	border: 1px solid var(--divider-color);
	border-radius: 30px 30px 30px 0;
	padding: 80px;
}

.vision-mission-nav {
	margin-bottom: 60px;
	text-align: center;
}

.vision-mission-nav .nav-tabs {
	padding: 0;
	margin: 0;
	list-style: none;
	display: inline-flex;
	border: none;
}

.vision-mission-nav ul li {
	margin-right: 40px;
}

.vision-mission-nav ul li:last-child {
	margin-right: 0;
}

.vision-mission-nav ul li .nav-link {
	background-color: var(--white-color);
	border: 1px solid var(--accent-color);
	color: var(--accent-color);
	border-radius: 12px 12px 12px 0;
	font-size: 16px;
	font-weight: 600;
	text-transform: capitalize;
	padding: 13px 30px;
	transition: all 0.4s ease-in-out;
}

.vision-mission-nav ul li:hover .nav-link,
.vision-mission-nav ul li .nav-link.active {
	background: var(--accent-color);
	color: var(--white-color);
	border-color: var(--accent-color);
}

.vision-image figure {
	display: block;
	border-radius: 40px;
}

.vision-image img {
	width: 100%;
	aspect-ratio: 1 / 0.6;
	object-fit: cover;
	border-radius: 40px;
}

.vision-mission-content {
	margin-left: 30px;
}

.vision-mission-content-title {
	margin-bottom: 30px;
}

.vision-mission-content-title h3 {
	font-size: 18px;
	font-weight: 600;
}

.vision-mission-content-list ul {
	list-style: none;
	padding: 0;
	margin: 0;
}

.vision-mission-content-list ul li {
	position: relative;
	font-weight: 500;
	color: var(--primary-color);
	padding-left: 35px;
	margin-bottom: 25px;
}

.vision-mission-content-list ul li:last-child {
	margin-bottom: 0;
}

.vision-mission-content-list ul li::before {
	content: '';
	position: absolute;
	top: 50%;
	left: 0;
	transform: translateY(-50%);
	background: url("../images/icon-about-list.svg") no-repeat;
	background-position: left center;
	background-size: cover;
	width: 22px;
	height: 22px;
}

.our-team {
	background: url(../images/section-bg-shape-2.svg), var(--secondary-color);
	background-repeat: no-repeat;
	background-position: bottom -1px center;
	background-size: contain;
	padding: 100px 0 20px;
}

.team-member-item {
	background: var(--white-color);
	box-shadow: 0px 0px 30px 0px #0000000A;
	border: 1px solid var(--divider-color);
	border-radius: 30px 30px 30px 0;
	overflow: hidden;
	height: calc(100% - 30px);
	margin-bottom: 30px;
}

.team-image {
	position: relative;
}

.team-image img {
	width: 100%;
	aspect-ratio: 1 / 1.1;
	object-fit: cover;
	object-position: top center;
	transition: all 0.5s ease-out;
}

.team-member-item:hover .team-image img {
	transform: scale(1.1);
}

.team-social-list {
	position: absolute;
	bottom: 20px;
	left: 20px;
	right: 20px;
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	z-index: 1;
}

.team-social-list .team-social-icon ul {
	list-style: none;
	padding: 0;
	margin: 0;
}

.team-social-list .team-social-icon ul li {
	display: inline-block;
	margin-right: 10px;
}

.team-social-list .team-social-icon ul li:last-child {
	margin-right: 0px;
}

.team-social-list .team-social-icon a,
.team-social-list .team-social-link a {
	display: block;
	width: 30px;
	height: 30px;
	background: var(--white-color);
	border-radius: 4px 4px 4px 0;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: all 0.3s ease-in-out;
}

.team-social-list .team-social-icon a:hover,
.team-social-list .team-social-link a:hover {
	background: var(--accent-color);
}

.team-social-list .team-social-icon a i,
.team-social-list .team-social-link a i {
	font-size: 16px;
	color: var(--red-color);
	transition: all 0.3s ease-in-out;
}

.team-social-list .team-social-icon a:hover i,
.team-social-list .team-social-link a:hover i {
	color: var(--white-color);
}

.team-social-list .team-social-icon {
	width: calc(100% - 50px);
	margin: 0;
	transform: translateX(30px);
	opacity: 0;
	transition: all 0.4s ease-out;
	margin-left: 10px;
}

.team-member-item:hover .team-social-list .team-social-icon {
	transform: translateX(0);
	opacity: 1;
}

.team-content {
	padding: 20px;
	text-align: center;
}

.team-content h3 {
	font-size: 18px;
	font-weight: 600;
	text-transform: capitalize;
	margin-bottom: 5px;
}

.team-content p {
	text-transform: capitalize;
	margin: 0;
}

.our-testimonial.about-testimonial {
	background: var(--white-color);
	padding: 50px 0 100px;
}

/************************************/
/***     18. Services Page css	  ***/
/************************************/

.page-services {
	padding: 100px 0 70px;
}

.our-faqs.service-faqs {
	padding: 50px 0 100px;
}

/************************************/
/***   19. Service Single css	  ***/
/************************************/

.page-service-single {
	padding: 100px 0;
}

.service-sidebar {
	position: sticky;
	top: 20px;
	margin-right: 20px;
}

.service-catagery-list {
	background-color: var(--secondary-color);
	border-radius: 30px 30px 30px 0;
	padding: 40px;
	margin-bottom: 40px;
}

.service-catagery-list h3 {
	font-size: 18px;
	font-weight: 600;
	text-transform: capitalize;
	margin-bottom: 30px;
}

.service-catagery-list ul {
	list-style: none;
	margin: 0;
	padding: 0;
}

.service-catagery-list ul li {
	margin-bottom: 20px;
}

.service-catagery-list ul li:last-child {
	margin-bottom: 0;
}

.service-catagery-list ul li a {
	display: block;
	position: relative;
	text-transform: capitalize;
	line-height: normal;
	background-color: var(--white-color);
	color: var(--text-color);
	border-radius: 10px;
	padding: 16px 40px 16px 16px;
	transition: all 0.3s ease-in-out;
}

.service-catagery-list ul li:hover a {
	background: var(--primary-color);
	color: var(--white-color);
}

.service-catagery-list ul li a.active {
	background: var(--primary-color);
	color: var(--white-color);
}

.service-catagery-list ul li a::after {
	content: '\f061';
	font-family: 'FontAwesome';
	position: absolute;
	right: 16px;
	top: 50%;
	transform: translateY(-50%);
	font-size: 20px;
	line-height: normal;
	color: var(--accent-color);
	width: 20px;
	height: 20px;
	transition: all 0.3s ease-in-out;
}

.service-catagery-list ul li:hover a::after {
	color: var(--white-color);
}

.sidebar-cta-box {
	background: var(--primary-color);
	border-radius: 30px 30px 30px 0;
	padding: 40px;
}

.cta-content {
	margin-bottom: 30px;
}

.cta-content h3 {
	font-size: 18px;
	font-weight: 600;
	text-transform: capitalize;
	color: var(--white-color);
	margin-bottom: 15px;
}

.cta-content p {
	color: var(--white-color);
	margin: 0;
}

.sidebar-cta-item {
	display: flex;
	align-items: center;
	background-color: var(--dark-divider-color);
	border-radius: 10px 10px 10px 0;
	padding: 10px 20px;
}

.sidebar-cta-item .icon-box {
	position: relative;
	/* background-color: var(--white-color); */
	border-radius: 50%;
	width: 60px;
	height: 60px;
	display: flex;
	align-items: center;
	justify-content: center;
	overflow: hidden;
	margin-right: 15px;
	transition: all 0.5s ease-in-out;
}

.sidebar-cta-item:hover .icon-box {
	background-color: transparent;
}

.sidebar-cta-item .icon-box::before {
	content: '';
	display: block;
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: var(--primary-color);
	border-radius: 50%;
	transform: scale(0);
	transition: all 0.4s ease-in-out;
}

.sidebar-cta-item:hover .icon-box::before {
	transform: scale(1);
}

.sidebar-cta-item .icon-box img {
	position: relative;
	max-width: 36px;
	z-index: 1;
	transition: all 0.4s ease-in-out;
	filter: brightness(0) invert(1);
}

.sidebar-cta-item:hover .icon-box img {
	filter: brightness(0) invert(1);
}

.sidebar-cta-item-content {
	width: calc(100% - 75px);
}

.sidebar-cta-item-content p {
	text-transform: capitalize;
	color: var(--white-color);
	margin-bottom: 5px;
}

.sidebar-cta-item-content h3 {
	font-size: 18px;
	font-weight: 600;
	color: var(--white-color);
}

.service-featured-image {
	margin-bottom: 30px;
}

.service-featured-image figure {
	display: block;
}

.service-featured-image img {
	aspect-ratio: 1 / 0.55;
	object-fit: cover;
	border-radius: 30px 30px 30px 0;
}

.service-entry {
	margin-bottom: 60px;
}

.service-entry .section-title h2 {
	margin-bottom: 0;
}

.service-entry h2 {
	font-size: 40px;
	margin-bottom: 20px;
}

.service-entry h3 {
	font-size: 20px;
	margin-bottom: 20px;
}

.service-entry p {
	margin-bottom: 20px;
}

.service-entry p:last-child {
	margin-bottom: 0px;
}

.service-entry ul {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	flex-wrap: wrap;
	gap: 20px;
}

.service-entry ul li {
	position: relative;
	width: 100%;
	color: var(--primary-color);
	font-weight: 500;
	text-transform: capitalize;
	padding-left: 30px;
}

.service-entry ul li:before {
	content: '';
	position: absolute;
	top: 50%;
	left: 0;
	transform: translateY(-50%);
	background: url(../images/icon-about-list.svg) no-repeat;
	background-position: left center;
	background-size: cover;
	width: 22px;
	height: 22px;
}

.service-entry-image figure {
	display: block;
}

.service-entry-image img {
	aspect-ratio: 1 / 0.6;
	object-fit: cover;
	border-radius: 20px 20px 20px 0;
}

.service-features {
	margin-bottom: 30px;
}

.service-features .section-title {
	margin-bottom: 30px;
}

.service-features .section-title p {
	margin-top: 20px;
}

.service-policy {
	margin-bottom: 30px;
}

.service-policy-title {
	margin-bottom: 30px;
}

.service-policy-box {
	display: flex;
	flex-wrap: wrap;
}

.service-policy-item {
	position: relative;
	width: 50%;
}

.service-policy-item.policy-box-1 {
	border-right: 1px solid var(--divider-color);
	border-bottom: 1px solid var(--divider-color);
	padding: 0 30px 30px 0;
}

.service-policy-item.policy-box-2 {
	border-bottom: 1px solid var(--divider-color);
	padding: 0 0 30px 30px;
}

.service-policy-item.policy-box-3 {
	border-right: 1px solid var(--divider-color);
	border-bottom: 1px solid var(--divider-color);
	padding: 30px 30px 30px 0;
}

.service-policy-item.policy-box-4 {
	border-bottom: 1px solid var(--divider-color);
	padding: 30px 0 30px 30px;
}

.service-policy-item:nth-last-of-type(-n + 2) {
	border-bottom: none;
	padding-bottom: 0;
}

.policy-item-title {
	position: relative;
	margin-bottom: 20px;
	padding-left: 20px;
}

.policy-item-no {
	position: absolute;
	top: 0;
	left: 0;
}

.policy-item-title h3 {
	font-size: 18px;
	font-weight: 600;
	text-transform: capitalize;
	margin-bottom: 0;
}

.policy-item-content p {
	margin-bottom: 0;
}

.service-features-box {
	background-color: var(--secondary-color);
	border-radius: 20px 20px 20px 0;
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 30px;
	padding: 40px;
}

.service-features-item {
	width: calc(50% - 15px);
	display: flex;
	align-items: center;
}

.service-features-item .icon-box {
	position: relative;
	background: var(--accent-color);
	border-radius: 50%;
	width: 68px;
	height: 68px;
	display: flex;
	align-items: center;
	justify-content: center;
	overflow: hidden;
	margin-right: 15px;
	transition: all 0.5s ease-in-out;
}

.service-features-item:hover .icon-box {
	background-color: transparent;
}

.service-features-item .icon-box::before {
	content: '';
	display: block;
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: var(--primary-color);
	border-radius: 50%;
	transform: scale(0);
	transition: all 0.4s ease-in-out;
}

.service-features-item:hover .icon-box::before {
	transform: scale(1);
}

.service-features-item .icon-box img {
	position: relative;
	max-width: 33px;
	z-index: 1;
}

.service-features-content {
	width: calc(100% - 83px);
}

.service-features-content h3 {
	font-size: 18px;
	font-weight: 600;
	text-transform: capitalize;
	margin-bottom: 10px;
}

.service-features-content p {
	margin-bottom: 0;
}

/************************************/
/***      20. Blog Archive css	  ***/
/************************************/

.page-blog {
	padding: 100px 0;
}

.blog-item {
	background-color: var(--white-color);
	border: 1px solid var(--divider-color);
	box-shadow: 0px 10px 30px 0px #00000008;
	border-radius: 30px 30px 30px 0;
	height: calc(100% - 40px);
	margin-bottom: 40px;
}

.blog-item .blog-featured-image {
	position: relative;
}

.blog-item .blog-featured-image figure a {
	cursor: none;
	display: block;
	border-radius: 30px 30px 0 0;
	overflow: hidden;
}

.blog-item .blog-featured-image img {
	aspect-ratio: 1 / 0.74;
	object-fit: cover;
	border-radius: 30px 30px 0 0;
	transition: all 0.5s ease-in-out;
}

.blog-item:hover .blog-featured-image img {
	transform: scale(1.1);
}

.blog-item-meta {
	position: absolute;
	top: 30px;
	left: 30px;
	background: var(--accent-color);
	border-radius: 10px 10px 10px 0;
	width: 50px;
	height: 50px;
	text-align: center;
	padding: 5px;
	z-index: 1;
	cursor: none;
}

.blog-item-meta h3 {
	font-size: 18px;
	font-weight: 600;
	line-height: normal;
	color: var(--white-color);
}

.blog-item-meta p {
	color: var(--white-color);
	text-transform: capitalize;
	line-height: 1em;
	margin: 0;
}

.blog-item-body {
	padding: 30px;
}

.blog-item-content {
	border-bottom: 1px solid var(--divider-color);
	margin-bottom: 20px;
	padding-bottom: 20px;
}

.blog-item-content h3 {
	font-size: 18px;
	font-weight: 600;
	margin-bottom: 10px;
}

.blog-item-content h3 a {
	color: inherit;
}

.blog-item-content p {
	margin: 0;
}

.blog-item-btn .redmore-btn:hover {
	color: var(--primary-color);
}

.blog-item-btn .redmore-btn:hover:before {
	color: var(--primary-color);
}

.page-pagination {
	margin-top: 20px;
	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(--secondary-color);
	color: var(--accent-color);
	border-radius: 10px 10px 10px 0;
	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);
}

/************************************/
/***      21. Blog Single css	  ***/
/************************************/

.page-single-post {
	padding: 100px 0;
}

.post-single-meta ol li.breadcrumb-item {
	font-size: 18px;
}

.post-single-meta ol li i {
	font-size: 16px;
	color: var(--white-color);
	margin-right: 5px;
}

.post-image {
	position: relative;
	margin-bottom: 30px;
}

.post-image figure {
	display: block;
}
.post-image figure, .post-image img {
    aspect-ratio: 1 / 0.5;
    object-fit: fill;
    border-radius: 30px 30px 30px 0;
}

.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 {
	margin: 0 0 0.6em;
}

.post-entry h1 span,
.post-entry h2 span {
	font-weight: 400;
}

.post-entry h1 {
	font-size: 56px;
}

.post-entry h2 {
	font-size: 40px;
}

.post-entry h3 {
	font-size: 40px;
}

.post-entry h4 {
	font-size: 30px;
}

.post-entry h5 {
	font-size: 24px;
}

.post-entry h6 {
	font-size: 18px;
}

.post-entry p {
	margin-bottom: 20px;
}

.post-entry p:last-child {
	margin-bottom: 0;
}

.post-entry p strong {
	color: var(--primary-color);
	font-size: 18px;
	font-weight: 600;
}

.post-entry ol {
	margin: 0 0 30px;
}

.post-entry ol li {
	margin-bottom: 20px;
	font-size: 18px;
	font-weight: 600;
	color: var(--text-color);
}

.post-entry ul {
	padding: 0;
	margin: 20px 0 20px;
	padding-left: 20px;
}

.post-entry ul li {
	font-size: 18px;
	font-weight: 500;
	color: var(--primary-color);
	position: relative;
	margin-bottom: 15px;
}

.post-entry ul li:last-child {
	margin-bottom: 0;
}

.post-entry ul ul,
.post-entry ul ol,
.post-entry ol ol,
.post-entry ol ul {
	margin-top: 20px;
	margin-bottom: 0;
}

.post-entry ul ul li:last-child,
.post-entry ul ol li:last-child,
.post-entry ol ol li:last-child,
.post-entry ol ul li:last-child {
	margin-bottom: 0;
}

.post-entry blockquote {
	background: var(--secondary-color) url(../images/icon-blockquote.svg) no-repeat;
	background-position: 35px 30px;
	background-size: 60px;
	border-radius: 30px 30px 30px 0;
	padding: 30px 30px 30px 120px;
	margin-bottom: 30px;
}

.post-entry blockquote p {
	color: var(--primary-color);
	font-size: 20px;
	font-weight: 600;
	line-height: 1.4em;
}

.post-entry blockquote p:last-child {
	margin-bottom: 0;
}

.tag-links {
	font-size: 22px;
	font-weight: 600;
	color: var(--primary-color);
	display: inline-block;
}

.post-tags .tag-links a {
	display: inline-block;
	font-size: 16px;
	font-weight: 600;
	text-transform: capitalize;
	background: var(--accent-color);
	color: var(--white-color);
	border-radius: 10px 10px 10px 0;
	padding: 10px 20px;
	margin-left: 10px;
	margin-bottom: 10px;
	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: 6px 6px 6px 0;
	width: 38px;
	height: 38px;
	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;
	transition: all 0.3s ease-in-out;
}

.post-social-sharing ul li:hover a i {
	color: var(--secondry-color);
}

/************************************/
/***      22. Team Page css 	  ***/
/************************************/

.page-team {
	padding: 100px 0 70px;
}

/************************************/
/***    23. Team Single css 	  ***/
/************************************/

.page-team-single {
	padding: 100px 0;
}

.team-member-details-box {
	background-color: var(--secondary-color);
	border-radius: 30px 30px 30px 0;
	padding: 50px;
	margin-bottom: 60px;
}

.team-member-image figure {
	display: block;
	border-radius: 30px 30px 30px 0;
}

.team-member-image img {
	width: 100%;
	border-radius: 30px 30px 30px 0;
	aspect-ratio: 1 / 1.09;
	object-fit: cover;
}

.team-member-details {
	height: 100%;
	margin-left: 30px;
}

.member-detail-header {
	margin-bottom: 20px;
}

.member-detail-header h2 {
	font-size: 40px;
	font-weight: 700;
	letter-spacing: -0.005em;
	margin-bottom: 10px;
}

.member-detail-header h2 span {
	font-weight: 400;
}

.member-detail-header p {
	text-transform: capitalize;
	color: var(--accent-color);
	margin: 0;
}

.member-detail-content {
	margin-bottom: 40px;
}

.member-detail-content p {
	margin-bottom: 20px;
}

.member-detail-content p:last-child {
	margin-bottom: 0;
}

.member-detail-body {
	margin-bottom: 40px;
}

.member-detail-body ul {
	list-style: none;
	margin: 0;
	padding: 0;
}

.member-detail-body ul li {
	display: flex;
	margin-bottom: 25px;
}

.member-detail-body ul li:last-child {
	margin-bottom: 0;
}

.member-detail-body ul li span {
	width: 25%;
	font-size: 18px;
	font-weight: 600;
	color: var(--primary-color);
}

.member-social-list ul {
	list-style: none;
	padding: 0;
	margin: 0;
}

.member-social-list ul li {
	display: inline-block;
	margin-right: 15px;
}

.member-social-list ul li a {
	display: flex;
	align-items: center;
	justify-content: center;
	text-align: center;
	background-color: var(--accent-color);
	color: var(--white-color);
	border-radius: 6px 6px 6px 0;
	width: 38px;
	height: 38px;
	transition: all 0.3s ease-in-out;
}

.member-social-list ul li:hover a {
	background-color: var(--primary-color);
}

.member-social-list ul li a i {
	font-size: 18px;
	color: inherit;
	transition: all 0.3s ease-in-out;
}

.team-member-skills {
	border: 1px solid var(--divider-color);
	border-radius: 30px 30px 30px 0;
	padding: 50px;
}

.member-solution-title,
.member-skills-title {
	margin-bottom: 30px;
}

.member-solution-title h2,
.member-skills-title h2 {
	font-size: 40px;
}

.team-member-skills .skills-progress-bar {
	margin-bottom: 35px;
}

.team-member-skills .skills-progress-bar:last-child {
	margin-bottom: 0;
}

.skillbar .skill-data {
	display: flex;
	justify-content: space-between;
	margin-bottom: 15px;
}

.skillbar .skill-data .skill-title {
	font-weight: 500;
	color: var(--primary-color);
	text-transform: capitalize;
}

.skillbar .skill-data .skill-no {
	color: var(--primary-color);
	margin-left: 20px;
}

.skillbar .skill-progress {
	width: 100%;
	height: 10px;
	background: var(--secondary-color);
	border-radius: 99px;
	position: relative;
}

.skillbar .skill-progress .count-bar {
	position: absolute;
	top: 0;
	left: 0;
	bottom: 0;
	background-color: var(--accent-color);
	border-radius: 99px;
}

.about-member-solution {
	border: 1px solid var(--divider-color);
	border-radius: 30px 30px 30px 0;
	padding: 50px;
}

.member-solution-list ul {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	flex-wrap: wrap;
	gap: 25px;
}

.member-solution-list ul li {
	position: relative;
	width: 100%;
	color: var(--primary-color);
	font-weight: 500;
	text-transform: capitalize;
	padding-left: 30px;
}

.member-solution-list ul li:before {
	content: '';
	position: absolute;
	top: 50%;
	left: 0;
	transform: translateY(-50%);
	background: url(../images/icon-about-list.svg) no-repeat;
	background-position: left center;
	background-size: cover;
	width: 22px;
	height: 22px;
}

.about-member-details-content {
	margin-top: 60px;
}

.about-member-details-content p {
	margin: 0;
}

/************************************/
/***      24. Page Pricing css 	  ***/
/************************************/

.page-pricing {
	padding: 100px 0 70px;
}

/************************************/
/***       25. FAQs Page css      ***/
/************************************/

.page-faqs {
	padding: 100px 0;
}

.faq-sidebar {
	position: sticky;
	top: 20px;
}

.faq-catagery-list {
	background-color: var(--secondary-color);
	border-radius: 30px 30px 30px 0;
	padding: 30px;
	margin-bottom: 40px;
}

.faq-catagery-list ul {
	list-style: none;
	margin: 0;
	padding: 0;
}

.faq-catagery-list ul li {
	margin-bottom: 20px;
}

.faq-catagery-list ul li:last-child {
	margin-bottom: 0;
}

.faq-catagery-list ul li a {
	display: block;
	position: relative;
	background-color: var(--white-color);
	color: var(--text-color);
	border-radius: 14px;
	text-transform: capitalize;
	padding: 15px;
	transition: all 0.3s ease-in-out
}

.faq-catagery-list ul li:hover a {
	background-color: var(--accent-color);
	color: var(--white-color);
}

.faq-catagery-list ul li a::after {
	content: '\f061';
	font-family: 'FontAwesome';
	display: block;
	position: absolute;
	top: 50%;
	right: 15px;
	transform: translateY(-50%);
	font-size: 18px;
	line-height: normal;
	color: var(--primary-color);
	width: 18px;
	height: 18px;
	transition: all 0.3s ease-in-out;
}

.faq-catagery-list ul li:hover a::after {
	color: var(--white-color);
}

.page-faqs-catagery {
	margin-left: 30px;
}

.page-faqs .page-faq-accordion {
	margin-bottom: 60px;
}

.page-faqs .page-faq-accordion:last-child {
	margin-bottom: 0;
}

.page-faqs .faq-accordion-title {
	margin-bottom: 30px;
}

.page-faqs .faq-accordion-title h2 {
	font-size: 40px;
}

/************************************/
/***    26. Contact us Page css   ***/
/************************************/

.page-contact-us {
	padding: 100px 0;
}

.contact-information .section-title {
	margin-bottom: 40px;
}

.contact-info-list {
	margin-bottom: 40px;
}

.contact-list-item {
	display: flex;
	align-items: center;
}

.contact-info-list .contact-list-item .icon-box img {
	max-width: 24px;
}

.contact-info-list .contact-list-item .icon-box {
	margin-right: 16px;
}

.contact-list-content {
	width: calc(100% - 40px);
}

.contact-list-item .contact-list-content p {
	font-size: 16px;
	font-weight: 400;
	color: var(--primary-color);
	margin: 0;
}

.contact-cta-box {
	position: relative;
}

.contact-cta-image {
	position: relative;
	border-radius: 20px 20px 20px 0;
	overflow: hidden;
}

.contact-cta-image::before {
	content: '';
	position: absolute;
	display: block;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	width: 100%;
	height: 100%;
	background: linear-gradient(270deg, rgba(0, 79, 76, 0) 40.47%, rgba(0, 79, 76, 0.009) 40.47%, rgba(0, 79, 76, 0.9) 91.67%);
	z-index: 1;
}

.contact-cta-image img {
	aspect-ratio: 1 / 0.56;
	object-fit: cover;
	width: 100%;
	transition: all 0.4s ease-in-out;
}

.contact-info-box {
	position: absolute;
	top: 60px;
	left: 60px;
	right: 60px;
	display: inline-block;
	max-width: 280px;
	z-index: 2;
}

.contact-cta-box:hover figure img {
	transform: scale(1.05);
}

.contact-info-item {
	display: flex;
	align-items: center;
	border-bottom: 1px solid var(--dark-divider-color);
	margin-bottom: 25px;
	padding-bottom: 25px;
}

.contact-info-item:last-child {
	border-bottom: none;
	margin-bottom: 0;
	padding-bottom: 0;
}

.contact-info-item .icon-box img {
	max-width: 40px;
}

.contact-info-item .icon-box {
	margin-right: 20px;
}

.contact-info-item .contact-info-content {
	width: calc(100% - 60px);
}

.contact-info-item .contact-info-content p {
	color: var(--white-color);
	text-transform: capitalize;
	margin-bottom: 5px;
}

.contact-info-item .contact-info-content h3 {
	font-size: 18px;
	font-weight: 600;
	color: var(--white-color);
}

.contact-us-form {
	background-color: var(--secondary-color);
	padding: 50px;
	border-radius: 30px 30px 30px 0;
	margin-left: 30px;
}

.contact-us-form form .form-control {
	font-size: 15px;
	line-height: normal;
	background-color: var(--white-color);
	color: var(--text-color);
	border-radius: 15px 15px 15px 0;
	border: none;
	box-shadow: none;
	outline: none;
	padding: 20px;
}

.contact-us-form form .form-control::placeholder {
	color: var(--text-color);
	text-transform: capitalize;
}

.contact-us-form form .contact-form-btn .btn-default {
	width: 100%;
	justify-content: center;
}

.contact-form-btn .btn-default:hover {
	background-color: var(--primary-color);
}

.contact-us-form form .contact-form-btn .btn-default::before {
	display: none;
	transition: all 0.4s ease-in-out;
}

.google-map .container-fluid {
	padding: 0;
}

.google-map-iframe {
	height: 600px;
}

.google-map-iframe iframe {
	width: 100%;
	height: 600px;
	filter: grayscale(100%);
	transition: all 0.4s ease-in-out;
}

.google-map-iframe:hover iframe {
	filter: grayscale(0);
}

/************************************/
/*** 	   27. 404 Page css       ***/
/************************************/

.error-page {
	padding: 100px 0;
}

.error-page-image {
	text-align: center;
	margin-bottom: 30px;
}

.error-page-image img {
	max-width: 50%;
}

.error-page .error-page-content {
	text-align: center;
}

.error-page-content-heading {
	margin-bottom: 30px;
}

.error-page-content-heading h2 {
	font-size: 40px;
	cursor: none;
}

.error-page-content-heading h2 span {
	font-weight: 700;
	color: var(--accent-color);
}

.error-page-content-body p {
	margin-bottom: 30px;
}

/************************************/
/***      28. Responsive css	  ***/
/************************************/

@media only screen and (max-width: 1024px) {

	.main-menu ul li {
		margin: 0;
	}
}

@media only screen and (max-width: 991px) {

	.slicknav_nav li,
	.slicknav_nav ul {
		display: block;
	}

	.responsive-menu,
	.navbar-toggle {
		display: block;
	}

	.section-row {
		margin-bottom: 60px;
	}

	.section-row .section-title {
		max-width: 100%;
	}

	.section-title {
		margin-bottom: 40px;
	}

	.section-title p {
		margin-top: 15px;
	}

	.section-title h1 {
		font-size: 44px;
	}

	.section-title h2 {
		font-size: 34px;
	}

	.hero {
		padding: 90px 0;
	}

	.hero.hero-video.hero-slider-layout .hero-slide {
		padding: 90px 0;
	}

	.hero.hero-video.hero-slider-layout .hero-pagination {
		bottom: 30px;
	}

	.hero-btn {
		margin-bottom: 40px;
	}

	.about-us {
		padding: 50px 0;
	}

	.about-image {
		margin-bottom: 40px;
	}

	.about-img {
		width: 100%;
		max-width: 80%;
		margin: 0 auto;
		padding-right: 0px;
	}

	.about-content {
		margin-left: 0px;
	}

	.about-content-list ul li {
		margin-bottom: 20px;
	}

	.about-content-counter {
		padding: 30px;
	}

	.about-counter {
		margin-bottom: 5px;
	}

	.about-counter h2 {
		font-size: 26px;
	}

	.our-services {
		padding: 50px 0 0px;
		background-size: auto;
	}

	.service-item {
		padding: 30px;
	}

	.service-item .icon-box {
		width: 60px;
		height: 60px;
		margin-bottom: 20px;
	}

	.service-item .icon-box img {
		max-width: 32px;
	}

	.service-content {
		padding-bottom: 20px;
		margin-bottom: 20px;
	}

	.why-choose-us {
		padding: 25px 0 50px;
	}

	.why-choose-content {
		margin-bottom: 40px;
	}

	.why-choose-body {
		gap: 15px 30px;
		margin-bottom: 40px;
	}

	.why-choose-item {
		padding-bottom: 15px;
	}

	.why-choose-images {
		background-size: 25% auto;
		padding: 0 0 50px 80px;
	}

	.why-choose-img {
		position: relative;
		padding: 30px 30px 30px 0;
	}

	.how-it-work {
		padding: 50px 0 110px;
	}

	.how-work-item {
		padding: 20px 20px 50px 20px;
	}

	.how-it-work .col-lg-3:nth-child(even) .how-work-item {
		padding: 50px 20px 20px 20px;
	}

	.how-it-work .col-lg-3:nth-child(even) .how-work-item::before {
		top: auto;
		left: 0;
		bottom: -50%;
		background: url(../images/how-work-box-arrow-2.svg);
		transform: translateY(10%) rotate(160deg);
	}

	.our-features {
		padding: 25px 0 50px;
	}

	.our-features .col-lg-3:nth-child(2n + 2) .features-item::before {
		display: none;
	}

	.features-content h3 {
		margin-bottom: 15px;
	}

	.our-counter .row {
		padding: 0 15px;
	}

	.our-counter-box {
		gap: 30px;
		margin-top: 0px;
		padding-top: 30px;
	}

	.counter-item {
		width: calc(20% - 24px);
	}

	.counter-item::before {
		right: -15px;
	}

	.counter-item h2 {
		font-size: 26px;
		margin-bottom: 5px;
	}

	.counter-item p {
		font-size: 13px;
	}

	.cta-box {
		padding: 50px 0 160px;
	}

	.cta-box-images {
		margin-right: 0px;
		margin-bottom: 30px;
	}

	.cta-box-img img {
		aspect-ratio: 1 / 0.7;
	}

	.cta-box-btn::before {
		transform: translateX(20%);
	}

	.our-pricing {
		padding: 25px 0 25px;
	}

	.pricing-item {
		padding: 30px;
	}

	.pricing-header {
		margin-bottom: 20px;
	}

	.pricing-header h2 {
		font-size: 42px;
		padding: 10px 20px;
	}

	.pricing-header h2 sub {
		font-size: 16px;
	}

	.pricing-body {
		margin-bottom: 20px;
		padding-bottom: 20px;
	}

	.pricing-title {
		margin-bottom: 20px;
	}

	.support-team {
		padding: 50px 0;
	}

	.support-team-images {
		margin-bottom: 40px;
	}

	.support-team-image img {
		width: 100%;
		max-width: 80%;
		margin: 0 auto;
	}

	.our-faqs {
		padding: 50px 0;
	}

	.our-faqs-content {
		margin-right: 0px;
		margin-bottom: 40px;
	}

	.faqs-content-list {
		margin-bottom: 20px;
		padding-bottom: 20px;
	}

	.faqs-content-list h3 {
		margin-bottom: 10px;
	}

	.our-faq-section .accordion-header .accordion-button {
		padding: 15px 45px 15px 15px;
	}

	.our-faq-section .accordion-item .accordion-body {
		padding: 15px 45px 15px 15px;
	}

	.our-faq-section .accordion-item .accordion-button::after,
	.our-faq-section .accordion-item .accordion-button.collapsed::after {
		right: 15px;
	}

	.our-testimonial {
		padding: 50px 0 110px;
	}

	.our-testimonial-content {
		margin-right: 0;
		margin-bottom: 30px;
	}

	.testimonial-slider {
		padding: 100px 0;
	}

	.testimonial-slider .swiper {
		padding: 30px;
	}

	.testimonial-header {
		margin-bottom: 40px;
	}

	.testimonial-btn {
		top: -70px;
	}

	.testimonial-slider .testimonial-button-next,
	.testimonial-slider .testimonial-button-prev {
		width: 40px;
		height: 40px;
	}

	.testimonial-slider .testimonial-button-next::before,
	.testimonial-slider .testimonial-button-prev::before {
		font-size: 16px;
	}

	.testimonial-slider .testimonial-pagination {
		bottom: -80px;
	}

	.our-blog {
		padding: 25px 0 50px;
	}

	.highlighted-blog-post {
		margin-bottom: 30px;
	}

	.highlighted-blog-featured-img img {
		aspect-ratio: 1 / 0.7;
	}

	.highlighted-blog-body {
		max-width: 100%;
		bottom: 20px;
		left: 20px;
		right: 20px;
	}

	.article-post .article-featured-image img {
		aspect-ratio: 1 / 0.7;
	}

	.main-footer {
		padding: 40px 0 0;
	}

	.footer-newsletter-box {
		margin-bottom: 40px;
		padding-bottom: 40px;
	}

	.footer-newsletter-item {
		margin-bottom: 30px;
	}

	.footer-newsletter-item-content h3 {
		font-size: 22px;
	}

	.footer-newsletter-form .form-group .form-control {
		width: 75%;
	}

	.about-footer {
		margin-bottom: 30px;
	}

	.footer-logo {
		margin-bottom: 20px;
	}

	.footer-links {
		margin-bottom: 40px;
	}

	.footer-links h3 {
		margin-bottom: 20px;
	}

	.footer-copyright {
		padding: 20px 0;
		margin-top: 0px;
	}

	.page-header {
		padding: 100px 0;
	}

	.page-header-box h1 {
		font-size: 44px;
		margin-bottom: 10px;
	}

	.vision-mission {
		padding: 50px 0 25px;
	}

	.vision-mission-box {
		padding: 50px;
	}

	.vision-mission-nav {
		margin-bottom: 40px;
	}

	.vision-mission-nav ul li .nav-link {
		padding: 12px 25px;
	}

	.vision-image {
		margin-bottom: 30px;
	}

	.vision-mission-content {
		margin-left: 0px;
	}

	.vision-mission-content-title {
		margin-bottom: 20px;
	}

	.vision-mission-content-list ul li {
		margin-bottom: 20px;
		padding-left: 30px;
	}

	.vision-mission-content-list ul li::before {
		width: 20px;
		height: 20px;
	}

	.our-team {
		padding: 50px 0 0px;
		background-size: auto;
	}

	.team-image img {
		aspect-ratio: 1 / 0.9;
	}

	.team-content {
		padding: 15px;
	}

	.our-testimonial.about-testimonial {
		padding: 25px 0 50px;
	}

	.page-services {
		padding: 50px 0 20px;
	}

	.our-faqs.service-faqs {
		padding: 25px 0 50px;
	}

	.page-service-single {
		padding: 50px 0;
	}

	.service-sidebar {
		position: initial;
		margin-right: 0px;
		margin-bottom: 30px;
	}

	.service-catagery-list {
		padding: 30px;
		margin-bottom: 30px;
	}

	.service-catagery-list h3 {
		margin-bottom: 20px;
	}

	.sidebar-cta-box {
		padding: 30px;
	}

	.cta-content {
		margin-bottom: 20px;
	}

	.cta-content h3 {
		margin-bottom: 10px;
	}

	.service-featured-image {
		margin-bottom: 20px;
	}

	.service-entry {
		margin-bottom: 40px;
	}

	.service-entry h2 {
		font-size: 34px;
	}

	.service-policy {
		margin-bottom: 20px;
	}

	.service-policy-item.policy-box-1 {
		padding: 0 20px 20px 0;
	}

	.service-policy-item.policy-box-2 {
		padding: 0 0 20px 20px;
	}

	.service-policy-item.policy-box-3 {
		padding: 20px 20px 20px 0;
	}

	.service-policy-item.policy-box-4 {
		padding: 20px 0 20px 20px;
	}

	.service-policy-item:nth-last-of-type(-n + 2) {
		padding-bottom: 0;
	}

	.service-features {
		margin-bottom: 20px;
	}

	.policy-item-title {
		margin-bottom: 10px;
	}

	.service-features-box {
		padding: 30px;
	}

	.service-features-content h3 {
		margin-bottom: 5px;
	}

	.service-entry ul {
		gap: 15px;
	}

	.service-entry ul li:before {
		width: 20px;
		height: 20px;
	}

	.page-blog {
		padding: 50px 0;
	}

	.blog-item {
		height: calc(100% - 30px);
		margin-bottom: 30px;
	}

	.blog-item-meta {
		top: 20px;
		left: 20px;
	}

	.blog-item-body {
		padding: 20px;
	}

	.blog-item-content {
		margin-bottom: 15px;
		padding-bottom: 15px;
	}

	.page-pagination {
		margin-top: 10px;
	}

	.page-single-post {
		padding: 50px 0;
	}

	.post-image {
		margin-bottom: 20px;
	}

	.post-entry blockquote {
		background-position: 30px 25px;
		background-size: 50px;
		padding: 25px 25px 25px 90px;
		margin-bottom: 20px;
	}

	.post-entry blockquote p {
		font-size: 18px;
	}

	.post-entry h2 {
		font-size: 34px;
	}

	.post-entry ul li {
		font-size: 16px;
	}

	.post-tag-links {
		padding: 0 0px;
	}

	.post-tags {
		margin-bottom: 10px;
	}

	.post-social-sharing ul {
		text-align: left;
	}

	.post-tags .tag-links a {
		font-size: 16px;
		padding: 8px 15px;
	}

	.page-team {
		padding: 50px 0 20px;
	}

	.page-team-single {
		padding: 50px 0;
	}

	.team-member-details-box {
		padding: 30px;
		margin-bottom: 40px;
	}

	.team-member-image {
		margin-bottom: 30px;
	}

	.team-member-image img {
		aspect-ratio: 1 / 0.9;
	}

	.team-member-details {
		margin-left: 0px;
	}

	.member-detail-header h2 {
		font-size: 34px;
	}

	.member-detail-content {
		margin-bottom: 30px;
	}

	.member-detail-body {
		margin-bottom: 30px;
	}

	.member-detail-body ul li {
		margin-bottom: 20px;
	}

	.team-member-skills {
		padding: 30px;
		margin-bottom: 30px;
	}

	.member-solution-title,
	.member-skills-title {
		margin-bottom: 20px;
	}

	.member-solution-title h2,
	.member-skills-title h2 {
		font-size: 34px;
	}

	.team-member-skills .skills-progress-bar {
		margin-bottom: 25px;
	}

	.about-member-solution {
		padding: 30px;
	}

	.member-solution-list ul {
		gap: 20px;
	}

	.about-member-details-content {
		margin-top: 40px;
	}

	.page-pricing {
		padding: 50px 0 20px;
	}

	.page-faqs {
		padding: 50px 0;
	}

	.faq-sidebar {
		position: initial;
		margin-bottom: 30px;
	}

	.faq-catagery-list {
		padding: 30px;
		margin-bottom: 30px;
	}

	.page-faqs-catagery {
		margin-left: 0px;
	}

	.page-faqs .page-faq-accordion {
		margin-bottom: 40px;
	}

	.page-faqs .faq-accordion-title {
		margin-bottom: 20px;
	}

	.page-faqs .faq-accordion-title h2 {
		font-size: 34px;
	}

	.page-contact-us {
		padding: 50px 0;
	}

	.contact-information {
		margin-bottom: 30px;
	}

	.contact-us-form {
		padding: 30px;
		margin-left: 0px;
	}

	.contact-info-box {
		top: 40px;
		left: 40px;
		right: 40px;
	}

	.contact-info-item {
		margin-bottom: 20px;
		padding-bottom: 20px;
	}

	.google-map-iframe,
	.google-map-iframe iframe {
		height: 400px;
	}

	.error-page {
		padding: 50px 0;
	}

	.error-page-image {
		margin-bottom: 20px;
	}

	.error-page-image img {
		max-width: 80%;
	}

	.error-page-content-heading {
		margin-bottom: 20px;
	}

	.error-page-content-heading h2 {
		font-size: 34px;
	}

	.error-page-content-body p {
		margin-bottom: 20px;
	}
}

@media only screen and (max-width: 767px) {

	.topbar-info-content {
		display: none;
	}

	.topbar-social-links {
		text-align: center;
	}

	.topbar-social-links ul li {
		margin-right: 10px;
	}

	.topbar-social-links ul li a i {
		font-size: 18px;
	}

	.section-row {
		margin-bottom: 40px;
	}

	.section-title {
		margin-bottom: 30px;
	}

	.section-title p {
		margin-top: 15px;
	}

	.section-title h1 {
		font-size: 30px;
	}

	.section-title h2 {
		font-size: 28px;
	}

	.hero-btn {
		margin-bottom: 30px;
	}

	.hero-btn .btn-default {
		margin-right: 5px;
		margin-bottom: 15px;
	}

	.hero-btn .btn-default.btn-highlighted {
		margin: 0px;
	}

	.company-support-item {
		width: 100%;
	}

	.about-list-btn {
		display: block;
		height: auto;
		margin-bottom: 30px;
	}

	.about-content-counter {
		padding: 20px;
	}

	.about-counter-item {
		padding-bottom: 15px;
		margin-bottom: 15px;
	}

	.about-counter h2 {
		font-size: 22px;
	}

	.about-counter-content p {
		font-size: 16px;
	}

	.about-image {
		padding-bottom: 30px;
	}

	.about-img {
		max-width: 100%;
	}

	.company-processing-box {
		right: 90px;
	}

	.company-processing-box .icon-box {
		width: 30px;
		height: 30px;
	}

	.company-processing-box .icon-box img {
		max-width: 20px;
	}

	.company-processing-content {
		width: calc(100% - 40px);
	}

	.about-company-testimonial {
		right: 50%;
		transform: translate(50%, 0%);
	}

	.about-testimonial-slider {
		padding: 10px 15px;
		max-width: 270px;
	}

	.about-testimonial-item p {
		font-size: 13px;
	}

	.service-item {
		padding: 20px;
	}

	.why-choose-body {
		margin-bottom: 30px;
	}

	.why-choose-item .icon-box {
		width: 40px;
		height: 40px;
		margin-right: 10px;
	}

	.why-choose-item-content {
		width: calc(100% - 50px);
	}

	.why-choose-images {
		background-size: 35% auto;
		padding: 0 0 35px 0px;
	}

	.why-choose-img {
		padding: 20px 20px 20px 0;
	}

	.why-choose-img::before {
		width: 140px;
	}

	.why-choose-item-content h3 {
		font-size: 16px;
	}

	.how-it-work {
		background-size: 100% auto;
		padding: 50px 0;
	}

	.how-work-item {
		margin-bottom: 50px;
	}

	.how-work-item::before {
		display: none;
	}

	.how-it-work .col-lg-3:nth-child(even) .how-work-item {
		padding: 20px 20px 50px 20px;
		margin-top: 0px;
	}

	.how-it-work .col-lg-3:nth-child(even) .how-work-no {
		bottom: 0;
		top: auto;
		transform: translate(-50%, 50%);
	}

	.features-item .icon-box {
		width: 60px;
		height: 60px;
	}

	.features-item .icon-box img {
		max-width: 32px;
	}

	.our-counter-box {
		justify-content: center;
	}

	.counter-item {
		width: calc(33.33% - 20px);
	}

	.counter-item:nth-child(3n + 3):before {
		display: none;
	}

	.cta-box {
		padding: 50px 0 70px;
		background-size: 100% auto;
	}

	.cta-box-images {
		padding: 0 0 50px 0;
		margin-right: 0px;
		margin-bottom: 30px;
	}

	.cta-box-img {
		padding: 15px 0 0 15px;
	}

	.cta-box-img::before {
		width: 200px;
		height: 180px;
	}

	.cta-contact-circle {
		right: 50%;
		transform: translateX(50%);
	}

	.cta-contact-circle img {
		max-width: 100px;
	}

	.cta-box-btn::before {
		right: 0;
		transform: translateX(0%);
		width: 100px;
	}

	@keyframes ctamoveobject {
		50% {
			right: 20px;
		}
	}

	.pricing-item {
		padding: 20px;
	}

	.pricing-header h2 {
		font-size: 30px;
	}

	.support-team-image {
		margin-bottom: 30px;
	}

	.support-team-images figure {
		margin-left: -20px;
	}

	.support-team-contact {
		gap: 30px;
	}

	.support-team-item {
		width: 100%;
	}

	.support-team-item:nth-child(odd) {
		flex-direction: initial;
		text-align: left;
	}

	.support-team-item .icon-box {
		width: 50px;
		height: 50px;
	}

	.support-team-item:nth-child(odd) .icon-box {
		margin-left: 0px;
		margin-right: 20px;
	}

	.support-team-content {
		width: calc(100% - 70px);
	}

	.support-team-content p {
		margin-bottom: 5px;
	}

	.our-faq-section .accordion-header .accordion-button {
		font-size: 16px;
	}

	.our-faq-section .accordion-item .accordion-button::after,
	.our-faq-section .accordion-item .accordion-button.collapsed::after {
		font-size: 12px;
		width: 20px;
		height: 20px;
	}

	.our-faq-section .accordion-item .accordion-body {
		padding: 15px;
	}

	.testimonial-slider::before {
		width: 80%;
	}

	.testimonial-slider .swiper {
		padding: 20px;
	}

	.testimonial-slider .testimonial-box::before {
		top: 10px;
	}

	.testimonial-slider .testimonial-box::after {
		top: 20px;
	}

	.testimonial-header {
		margin-bottom: 30px;
	}

	.highlighted-blog-featured-img img {
		aspect-ratio: 1 / 1.1;
	}

	.highlighted-blog-content {
		padding-bottom: 15px;
		margin-bottom: 15px;
	}

	.article-post {
		display: block;
	}

	.article-post .article-featured-image {
		width: 100%;
		height: auto;
	}

	.article-post .article-featured-image a {
		border-radius: 30px 30px 0 0px;
	}

	.article-post .article-featured-image img {
		height: auto;
		border-radius: 30px 30px 0 0px;
	}

	.article-post-body {
		width: 100%;
		display: block;
	}

	.main-footer {
		padding: 30px 0 0;
	}

	.footer-newsletter-box {
		margin-bottom: 30px;
		padding-bottom: 30px;
	}

	.footer-newsletter-item .icon-box {
		margin-right: 20px;
	}

	.footer-newsletter-item-content {
		width: calc(100% - 60px);
	}

	.footer-newsletter-item-content h3 {
		font-size: 20px;
	}

	.footer-newsletter-form .form-group .btn-default.btn-highlighted {
		padding: 15px 20px;
	}

	.footer-newsletter-form .form-group .form-control {
		width: 60%;
	}

	.footer-links {
		margin-bottom: 30px;
	}

	.footer-links h3 {
		margin-bottom: 15px;
	}

	.footer-copyright {
		padding: 15px 0;
	}

	.footer-copyright-text {
		text-align: center;
		margin-bottom: 10px;
	}

	.footer-social-links {
		text-align: center;
	}

	.page-header {
		padding: 80px 0;
	}

	.page-header-box h1 {
		font-size: 30px;
	}

	.vision-mission-box {
		padding: 30px 15px;
	}

	.vision-mission-nav {
		margin-bottom: 30px;
	}

	.vision-mission-nav ul li {
		margin-right: 10px;
	}

	.vision-mission-nav ul li .nav-link {
		font-size: 14px;
		padding: 8px 15px;
	}

	.vision-mission-content-title h3 {
		font-size: 16px;
	}

	.service-catagery-list {
		padding: 20px;
	}

	.sidebar-cta-box {
		padding: 20px;
	}

	.service-featured-image img {
		aspect-ratio: 1 / 0.7;
	}

	.service-entry {
		margin-bottom: 30px;
	}

	.service-entry h2 {
		font-size: 28px;
	}

	.service-entry-list {
		margin-bottom: 20px;
	}

	.service-policy-item {
		width: 100%;
		border-bottom: 1px solid var(--divider-color);
		margin-bottom: 20px;
		padding-bottom: 20px;
	}

	.service-policy-item:nth-last-of-type(-n + 2) {
		padding-bottom: 20px;
		border-bottom: 1px solid var(--divider-color);
	}

	.service-policy-item:last-child {
		border-bottom: none;
		padding-bottom: 0;
		margin-bottom: 0;
	}

	.service-policy-item.policy-box-1 {
		border-right: none;
		padding-right: 0;
	}

	.service-policy-item.policy-box-2 {
		padding-left: 0;
	}

	.service-policy-item.policy-box-3 {
		padding-top: 0;
		padding-right: 0;
		border-right: none;
	}

	.service-policy-item.policy-box-4 {
		padding-top: 0;
		padding-left: 0;
	}

	.service-features-box {
		padding: 20px;
		gap: 20px;
	}

	.service-features-item {
		width: 100%;
	}

	.post-image figure,
	.post-image img {
		aspect-ratio: 1 / 0.70;
	}

	.post-entry blockquote {
		background-position: 20px 20px;
		background-size: 35px;
		padding: 55px 20px 20px 20px;
	}

	.post-entry h2 {
		font-size: 28px;
	}

	.tag-links {
		font-size: 20px;
	}

	.team-member-details-box {
		padding: 20px;
		margin-bottom: 30px;
	}

	.team-member-image img {
		aspect-ratio: 1 / 1.09;
	}

	.member-detail-header {
		margin-bottom: 15px;
	}

	.member-detail-header h2 {
		font-size: 28px;
	}

	.member-detail-body ul li {
		display: block;
	}

	.member-detail-body ul li span {
		font-size: 16px;
	}

	.team-member-skills {
		padding: 20px;
	}

	.member-solution-title h2,
	.member-skills-title h2 {
		font-size: 28px;
	}

	.about-member-solution {
		padding: 20px;
	}

	.member-solution-list ul li:before {
		width: 20px;
		height: 20px;
	}

	.about-member-details-content {
		margin-top: 30px;
	}

	.faq-catagery-list {
		padding: 20px;
	}

	.page-faqs .page-faq-accordion {
		margin-bottom: 30px;
	}

	.page-faqs .faq-accordion-title h2 {
		font-size: 28px;
	}

	.contact-information .section-title {
		margin-bottom: 30px;
	}

	.contact-info-list {
		margin-bottom: 30px;
	}

	.contact-cta-image img {
		aspect-ratio: 1 / 0.8;
	}

	.contact-info-box {
		top: 20px;
		left: 20px;
		right: 20px;
		max-width: 100%;
	}

	.contact-info-item {
		margin-bottom: 15px;
		padding-bottom: 15px;
	}

	.contact-info-item .icon-box {
		margin-right: 16px;
	}

	.contact-info-item .icon-box img {
		max-width: 34px;
	}

	.contact-info-item .contact-info-content {
		width: calc(100% - 50px);
	}

	.contact-us-form {
		padding: 20px;
	}

	.contact-us-form form .form-control {
		padding: 15px;
	}

	.google-map-iframe,
	.google-map-iframe iframe {
		height: 350px;
	}

	.error-page-content-heading h2 {
		font-size: 28px;
	}

	
}



/* new css */
.short_title.bg_yellow {
	background: var(--opcitylight);
	border-color: #3568b017;
	color: #000;
	font-weight: 500;
}

.sidebar {
	/* background: linear-gradient(180deg, #f8f9fa 0%, #e9ecef 100%); */
	padding: 0 30px 0 0;
}

.sidebar-item {
	background: white;
	margin-bottom: 12px;
	padding: 16px 20px;
	border-radius: 12px;
	display: flex;
	align-items: center;
	gap: 12px;
	cursor: pointer;
	transition: all 0.3s ease;
	border: 2px solid transparent;
	color: #000;
}

.sidebar-item:hover {
	transform: translateX(5px);
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
	border-color: #667eea;
}

.sidebar-item.active {
	background: var(--accent-color);
	color: white;
	/* box-shadow: 0 6px 20px rgba(102, 126, 234, 0.4); */
}

.sidebar-item .icon {
	width: 24px;
	height: 24px;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 20px;
}

.sidebar-item .text {
	font-weight: 600;
	font-size: 15px;
}

.bg_services {
	border-radius: 15px;
	padding: 30px;
	background: linear-gradient(179deg, #ffffff, transparent);
}

.content h1 {
	font-size: 36px;
	color: #2d3748;
	margin-bottom: 20px;
}

.description {
	background: #f7fafc;
	border: 2px dashed #cbd5e0;
	border-radius: 12px;
	padding: 25px;
	color: #4a5568;
	line-height: 1.7;
	margin-bottom: 30px;
}

.services-grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 15px;
	margin-bottom: 40px;
}

.service-link {
	color: var(--e-global-color-primary);
	text-decoration: none;
	font-weight: 600;
	font-size: 15px;
	padding: 8px 12px;
	border-radius: 8px;
	transition: all 0.3s ease;
	display: block;
}

.service-link:hover {
	background: #eef2ff;
	transform: translateX(5px);
}

.tech-icons {
	display: flex;
	gap: 20px;
	align-items: center;
	justify-content: flex-start;
	margin-top: 30px;
}

.tech-icon {
	width: 70px;
	height: 70px;
	background: white;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
	transition: all 0.3s ease;
	cursor: pointer;
}

.tech-icon:hover {
	transform: translateY(-5px);
	box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.tech-icon svg {
	width: 45px;
	height: 45px;
}

@media (max-width: 968px) {
	.services-grid {
		grid-template-columns: 1fr;
	}
}

.award_tabs li button {
	background: #fff;
	border: solid 1px #e5e5e5 !important;
	border-radius: 100px !important;
	margin: 0px 8px !important;
	color: #000;
	font-weight: 600;
	padding: 10px 25px !important;
}


.award_tabs li button.active {
	background: #000 !important;
	color: #fff !important;
	font-weight: 600;
}


.swiper-pagination-bullet {
	width: 10px;
	height: 10px;
	background: #333;
	opacity: 0.5;
}

.swiper-pagination-bullet-active {
	background: #000;
	opacity: 1;
}

.swiper-pagination-bullets-dynamic {
	overflow: hidden;
	font-size: 0;
	bottom: -10px !important;
}

.swiper-pagination2 {
	position: absolute;
}


.success_stories .service-content p {
	margin: 0;
	transition: all 0.3s ease-in-out;
	overflow: hidden;
	text-overflow: ellipsis;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	line-clamp: 2;
	-webkit-box-orient: vertical;
}


.icon_bg {
	border-radius: 50%;
	width: 120px;
	height: 120px;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 15px;
	background-image: url(../images/app-icon/circle.svg);
	background-repeat: no-repeat;
	background-size: 100% 100%;
	padding: 30px;
}

.service-items-stories {
	border-radius: 20px 20px 20px 0;
	overflow: hidden;
	border: 1px solid var(--divider-color);
	box-shadow: 0px 0px 30px 0px #0000000A;
	margin-bottom: 40px;
	transition: .2s;
}

.service-items-stories img {
	transition: all .3s ease-in-out;
}

.service-items-stories:hover img {
	transform: scale(1.2);
}



.custom-file-input {
	position: relative;
	/* padding: 20px 20px; */
	background-color: var(--white-color);
	color: var(--text-color);
	border-radius: 15px 15px 15px 0;
	height: 55px;
	line-height: 55px;
}

.custom-file-input::before {
	content: attr(data-placeholder);
	position: absolute;
	left: 20px;
	top: 50%;
	transform: translateY(-50%);
	color: #888;
	pointer-events: none;
	height: 55px;
}

.custom-file-input input[type="file"] {
	opacity: 0;
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	cursor: pointer;
	height: 55px;
}

.why_services img,
.shore_development img {
	border: 6px solid var(--divider-color);
	aspect-ratio: 1 / 1.1;
}

.shore_development .why-choose-img::before {
	content: '';
	position: absolute;
	left: -50px;
	top: 0;
	bottom: 0;
	background: var(--primary-color);
	border-radius: 20px 20px 20px 0;
	width: 220px;
	height: 100%;
	z-index: 0;
}

.why_services .why-choose-img {
	padding-left: 80px;
}

.file-upload-wrapper {
	position: relative;
	overflow: hidden;
	display: inline-block;
	width: 100%;
}

.file-upload-btn {
	border: 2px dashed #e0e0e0;
	background: #f8f9fa;
	padding: 30px;
	text-align: center;
	border-radius: 8px;
	cursor: pointer;
	transition: all 0.3s ease;
}

.file-upload-btn:hover {
	border-color: var(--primary-color);
	background: #e3f9fd;
}

.file-upload-input {
	position: absolute;
	left: 0;
	top: 0;
	opacity: 0;
	cursor: pointer;
	width: 100%;
	height: 100%;
}

.hire_developer label {
	font-size: 13px;
	color: #000;
	margin: 0 0 5px;
}

.input-group-text {
	font-size: 13px;
	color: #000;

}

.hire_developer .form-control,
.hire_developer textarea,
.hire_developer select {
	border: solid 1px #eee;
	/* height: 45px; */
	font-size: 13px;
	padding: 8px 12px;
	border-radius: 8px 8px 8px 0px;
	box-shadow: none;
}

form#consultationForm h6 {
	font-weight: 600;
	margin-bottom: 15px;
}

.hire_developer {
	padding: 30px;
	/* box-shadow: 0 0 20px 0px #00000014; */
	border-radius: 10px 10px 10px 0;
	background: #f8f9fa;
}

.hire_developer .list-group.list-group-flush {
	height: 600px;
	justify-content: space-between;
}


.hire_developer .list-group.list-group-flush .list-group-item {
	height: 50%;
	padding: 20px 20px;
}


.footer-links.hire_link a {
	color: var(--e-global-color-primary);
}

.progress-sidebar {
	position: sticky;
	top: 20px;
}

.hire_developer.step-indicator {
	background: #d2ddef;
}

.hire_developer .list-group.list-group-flush .list-group-item.active {
    background: var(--accent-color);
	border: none;
}

.hire_developer .list-group.list-group-flush .list-group-item.active .text-muted {
	color: var(--white-color) !important;
}
ul.nav.job-info li {
    border: solid 1px var(--divider-color);
    font-size: 13px;
    padding: 5px 10px;
    border-radius: 10px 10px 10px 0;
    /* color: var(--e-global-color-primary); */
}
li.full_time {
    color: #8951FF;
    border-color: #efedff !important;
    font-weight: 600;
}


.success-stories .service-content p {
    text-overflow: ellipsis;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.success_story_views .service-item {
    min-height: 310px;
}
.success_story_views .service-item small {
	margin-top: 15px; display: inline-block;
}
.success_story_views .service-item:hover small {
	color: white;
}

.platform_panel {
    display: flex;
    flex-wrap: wrap;
    padding: 30px 0 0 13px;
}
.platform_panel li {
    flex-basis: 100%;
    position: relative;
    border-left: 1px dashed #bebebe;
    padding: 0 10px 30px 20px;
    -webkit-transition: .3s;
    -moz-transition: .3s;
    -ms-transition: .3s;
    -o-transition: .3s;
    transition: .3s;
	list-style: none; font-size: 14px;
}
.platform_panel li:before {
    content: "";
    position: absolute;
    left: -6px;
    top: 4px;
    width: 12px;
    height: 12px;
    background-color: #bebebe;
    -webkit-border-radius: 20px;
    -moz-border-radius: 20px;
    -ms-border-radius: 20px;
    border-radius: 20px;
    -webkit-transition: .3s;
    -moz-transition: .3s;
    -ms-transition: .3s;
    -o-transition: .3s;
    transition: .3s;
}

.platform_panel li:hover {
    background: var(--accent-color);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.platform_panel li:hover:before {
	background: var(--primary-color);
}


.comment-section {
    max-width: 1100px;
    margin: 80px auto 0;
}

.comment-section h2{
    color: var(--e-global-color-primary);
    font-size: 28px;
    margin-bottom: 10px;
	font-weight: 600;
}

.comment-section label {
    display: block;
    margin-bottom: 4px;
}

.comment-section textarea, .comment-section input[type="text"], .comment-section input[type="email"], .comment-section input[type="url"] {
    width: 100%;
    padding: 12px 20px;
    border: none;
    box-shadow: none;
    background: var(--secondary-color);
    border-radius: 12px 12px 12px 0;
    outline: 0;
    box-shadow: none;
}


.awards-grid {
    display: flex;
    flex-wrap: wrap;
    text-align: center;
    justify-content: center;
    gap: 40px;
}
/* hover zoome */
.awards-grid img {
    aspect-ratio: 1/1;
    width: 150px;
    object-fit: contain;
	transition: transform 0.3s ease;
}
.awards-grid img:hover {
		transform: scale(1.2);
	transition: transform 0.3s ease;
}




/* .main-header .sticky {
  position: fixed; width: 100%;
  top: 0;
  left: 0;
  z-index: 999;
  background-color: #fff;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
} */

