/* === Root Variables === */
:root {
	/* Fonts */
	--default-font: "Open Sans", system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
	--heading-font: "Montserrat", sans-serif;
	--nav-font: "Lato", sans-serif;

	/* Colors */
	--background-color: #ffffff;
	--background-color-rgb: 255, 255, 255;
	--default-color: #212529;
	--default-color-rgb: 33, 37, 41;
	--primary-color: #e84545;
	--primary-color-rgb: 232, 69, 69;
	--secondary-color: #32353a;
	--secondary-color-rgb: 50, 53, 58;
	--contrast-color: #ffffff;
	--contrast-color-rgb: 255, 255, 255;

	/* Navigation */
	--nav-color: #3a3939;
	--nav-hover-color: #e84545;
	--nav-dropdown-color: #3a3939;
	--nav-dropdown-hover-color: #e84545;
	--nav-dropdown-background-color: #ffffff;
	--nav-mobile-background-color: #ffffff;

	/* Misc */
	scroll-behavior: smooth;
}

/* === Base Styles === */
body {
	color: var(--default-color);
	background-color: var(--background-color);
	font-family: var(--default-font);
}

a {
	color: var(--primary-color);
	text-decoration: none;
	transition: color 0.3s;
}

a:hover {
	color: rgba(var(--primary-color-rgb), 0.7);
}

h1,
h2,
h3,
h4,
h5,
h6 {
	color: var(--secondary-color);
	font-family: var(--heading-font);
}

/* === Section === */
section {
	color: var(--default-color);
	background-color: var(--background-color);
	padding: 60px 0;
	overflow: clip;
}

.section-title {
	text-align: center;
	padding-bottom: 60px;
}

.section-title h2 {
	font-size: 32px;
	font-weight: 700;
	position: relative;
}

.section-title h2::before,
.section-title h2::after {
	content: "";
	width: 50px;
	height: 2px;
	background: var(--primary-color);
	display: inline-block;
}

#report .section-title h2::before,
#report .section-title h2::after {
	content: "";
	width: 50px;
	height: 2px;
	background: #f5ff1e;
	display: inline-block;
}

.section-title h2::before {
	margin: 0 15px 10px 0;
}

.section-title h2::after {
	margin: 0 0 10px 15px;
}

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

/* === Page Title === */
.page-title {
	color: var(--default-color);
	background-color: var(--background-color);
}

.page-title .heading {
	padding: 80px 0;
	border-top: 1px solid rgba(var(--default-color-rgb), 0.1);
}

.page-title .heading h1 {
	font-size: 38px;
	font-weight: 700;
	color: var(--secondary-color);
}

.page-title nav {
	background: #f5ff1e;
	padding: 5px 0;
	position: relative;
	top: 60px;
	border-radius: 50px 50px 0 0;
}

.page-title nav ol {
	display: flex;
	flex-wrap: wrap;
	list-style: none;
	margin: 0;
	font-size: 16px;
	font-weight: 700;
	padding: 10px 0;
}

.page-title nav ol li+li {
	padding-left: 10px;
}

.page-title nav ol li+li::before {
	content: "/";
	display: inline-block;
	padding-right: 10px;
	color: rgba(212, 215, 217, 0.78);
}

.page-title nav ol .current {
	color: #000;
}

/* === Header === */
.header {
	color: var(--default-color);
	background-color: var(--background-color);
	padding: 5px 0;
	transition: all 0.5s;
	z-index: 997;
}

.header .logo img {
	max-height: 35px;
	margin-right: 6px;
}

.header .logo h1 {
	font-size: 24px;
	margin: 0;
	font-weight: 600;
	color: var(--secondary-color);
}

.header .logo span {
	color: var(--primary-color);
	font-size: 24px;
	font-weight: 600;
	padding-left: 3px;
}

/* === Top Subheader === */
.top-subheader {
	background-color: #000;
	position: relative;
	top: -5px;
	padding: 5px 0;
}

.top-subheader h6 {
	color: #fff;
	font-size: 14px;
	background-color: #f5ff1e;
	padding: 2px 5px;
	font-weight: 600;
	border-radius: 5px;
}

.top-subheader h6 a {
	color: #000;
	text-decoration: none;
	display: flex;
	align-items: center;
}

.top-subheader h6 a span {
	font-size: 12px;
}

.top-subheader h6 a img {
	width: 18px;
	height: 18px;
}

.top-social-icon img {
	width: 20px;
	height: 18px;
	border-radius: 2px;
}

.top-social-icon img:hover {
	transform: scale(1.1);
}

/* Hide top-subheader on scroll */
.scrolled .top-subheader {
	display: none;
}

/* === Header Buttons === */
.header .btn-getstarted,
.header .btn-getstarted:focus {
	color: var(--contrast-color);
	background: #000;
	font-size: 14px;
	padding: 8px 26px;
	margin: 0;
	border-radius: 4px;
	transition: background 0.3s, color 0.3s;
	border: 2px solid #000;
	font-weight: bold;
}

.header .btn-getstarted:hover,
.header .btn-getstarted:focus:hover {
	background: #fff;
	color: #000;
}

.btn-schedule,
.btn-schedule:focus {
	background: #f5ff1e;
	color: #000;
	font-size: 14px;
	padding: 8px 10px;
	margin: 0;
	border-radius: 4px;
	transition: background 0.3s, color 0.3s;
	border: 2px solid #000;
	font-weight: bold;
}

.btn-schedule:hover,
.btn-schedule:focus:hover {
	color: #fff;
	background: #f50a23;
	border: 2px solid #f50a23;
	;
}

/* === Header on Scroll === */
.scrolled .header {
	--background-color: #ffffff;
	--secondary-color: #444444;
	--nav-color: #444444;
	--nav-hover-color: #e84545;
	box-shadow: 0 0 30px 10px rgba(0, 0, 0, 0.1);
}

.scrolled .sub-logo {
	color: black;
}

/* Section Margin for Scroll Behavior */
section {
	scroll-margin-top: 90px;
}

/* === Index Page Header (Home) === */
.index-page .header {
	--secondary-color: #ffffff;
	--nav-color: #ffffff;
	--nav-hover-color: #ffffff;
	background: #f4f4f4;
	border-bottom: 1px solid #cccc;
}

/* Custom Header on Scroll - Index Page */
.index-page.scrolled .header {
	--background-color: #ffffff;
	--secondary-color: #444444;
	--nav-color: #444444;
	--nav-hover-color: #d83535;
}

/* === Scroll Top Button === */
.scroll-top {
	position: fixed;
	right: 15px;
	bottom: 15px;
	z-index: 99999;
	width: 40px;
	height: 40px;
	background-color: #f50a23;
	border-radius: 4px;
	visibility: hidden;
	opacity: 0;
	transition: all 0.4s;
}

.scroll-top i {
	font-size: 24px;
	color: #ffffff;
	line-height: 0;
}

.scroll-top:hover {
	background-color: rgba(var(--primary-color-rgb), 0.8);
}

.scroll-top.active {
	visibility: visible;
	opacity: 1;
}

/* === Scroll Call Button === */
.scroll-call-button img {
	border: 4px solid rgba(var(--primary-color-rgb), 0.85);
	width: 40px;
	height: 40px;
	border-radius: 10px;
}

/* === Preloader === */
#preloader {
	position: fixed;
	inset: 0;
	z-index: 9999;
	background-color: var(--background-color);
	overflow: hidden;
	width: 100%;
	height: 100vh;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: all 0.6s ease-out;
}

#preloader div {
	width: 13px;
	height: 13px;
	background-color: var(--primary-color);
	border-radius: 50%;
	animation-timing-function: cubic-bezier(0, 1, 1, 0);
	position: absolute;
	left: 50%;
}

#preloader div:nth-child(1) {
	left: calc(50% + 8px);
	animation: animate-preloader-1 0.6s infinite;
}

#preloader div:nth-child(2),
#preloader div:nth-child(3) {
	left: calc(50% + 8px);
	animation: animate-preloader-2 0.6s infinite;
}

#preloader div:nth-child(3) {
	left: calc(50% + 32px);
}

#preloader div:nth-child(4) {
	left: calc(50% + 56px);
	animation: animate-preloader-3 0.6s infinite;
}

/* === Preloader Animations === */
@keyframes animate-preloader-1 {
	0% {
		transform: scale(0);
	}

	100% {
		transform: scale(1);
	}
}

@keyframes animate-preloader-2 {
	0% {
		transform: translate(0, 0);
	}

	100% {
		transform: translate(24px, 0);
	}
}

@keyframes animate-preloader-3 {
	0% {
		transform: scale(1);
	}

	100% {
		transform: scale(0);
	}
}

/* === Footer === */
.footer {
	color: var(--default-color);
	background-color: #f4f4f4;
	font-size: 14px;
}

.footer .t-certificate {
	width: 100px;
	background: #fff;
	margin: 3px;
	font-size: 9px;
	text-align: center;
	padding: 10px 2px 5px;
	border-radius: 5px;
	font-weight: 600;
	box-shadow: 0 4px 16px rgba(33, 37, 41, 0.48);
}


/* === Footer Certificate === */
.footer .t-certificate {
	color: #fff;
	transition: background 0.3s;
	background: #f50a23;
	border: 2px solid #f5ff1e;
}

.footer .t-certificate:hover {
	background: #f5ff1e;
	border: 2px solid #f50a23;
	color: #000;
}

.footer .t-certificate h6 {
	margin-bottom: 0;
	color: inherit;
}

/* === Footer Sections === */
.footer .traning-box {
	margin-top: 30px;
}

.footer .traning-box h4 {
	padding-bottom: 0;
}

.m-bottom {
	margin-bottom: 15px;
}

.footer .f-text {
	font-size: 14px;
	font-weight: 600;
}

.footer .footer-top {
	padding-top: 50px;
}

.footer-about {
	position: relative;
}

.footer-about .dot-span {
	color: var(--primary-color);
	font-weight: 600;
	padding-left: 3px;
	font-size: 24px;
}

.footer-about .logo {
	line-height: 0;
	margin-bottom: 25px;
}

.footer-about .logo img {
	max-height: 60px;
}

/* === Social Links === */
.social-links img {
	border-radius: 4px;
	background-color: #fff;
	padding: 2px;
	transition: transform 0.2s ease;
}

.social-links img:hover {
	transform: scale(1.1);
}

/* === Footer Links === */
.footer h4 {
	color: var(--secondary-color);
	font-size: 16px;
	font-weight: bold;
	padding-bottom: 12px;
	position: relative;
}

.footer .footer-links {
	margin-bottom: 30px;
}

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

.footer .footer-links ul li {
	display: flex;
	align-items: center;
	padding: 10px 0;
}

.footer .footer-links ul li:first-child {
	padding-top: 0;
}

.footer .footer-links ul i {
	padding-right: 2px;
	font-size: 12px;
}

.footer .footer-links ul a {
	color: #000;
	display: inline-block;
	line-height: 0.9;
	transition: color 0.3s;
}

.footer .footer-links ul a:hover {
	color: var(--primary-color);
}

/* === Footer Contact === */
.footer .footer-contact p {
	margin-bottom: 5px;
}

.footer .footer-contact p a {
	color: #000;
}

/* === Footer Bottom === */
.footer .copyright {
	padding: 10px 0;
	background-color: #000;
}

.footer .copyright p {
	margin-bottom: 0;
	color: #fff;
}

.footer .credits {
	margin-top: 6px;
	font-size: 13px;
}

/* === Footer Logos === */
.footer .footer-logo h1 {
	font-size: 24px;
	margin: 0;
	font-weight: 600;
	color: var(--secondary-color);
}

.footer .footer-logo img {
	padding: 2px;
}

.footer .footer-sub-logo {
	display: inline;
	position: absolute;
	top: 30px;
	left: 35px;
	font-size: 10px;
	color: #000;
}

.footer .size-log {
	width: 100%;
	min-height: 35px;
	object-fit: contain;
}

/* === Partner and Certificate Logos === */
.p-logo {
	background: #fff;
	padding: 5px;
	border-radius: 5px;
	box-shadow: 0 1px 5px #e9f21e;
	border: 3px solid #f5ff1e;
}

.p-logo img {
	width: 100%;
	min-height: 80px;
	max-height: 80px;
	object-fit: contain;
}

.img-certificate {
	margin-bottom: 10px;
	border: 2px solid #000;
	background: #f5ff1e;
	box-shadow: 0 1px 15px rgba(33, 37, 41, 0.48);
}

.img-certificate .mt-bt {
	margin-bottom: 10px;
}


/* === Home Section === */
.home {
	--default-color: #fff;
	--default-color-rgb: 255, 255, 255;
	--background-color: #000;
	--background-color-rgb: 0, 0, 0;

	width: 100%;
	min-height: 100vh;
	padding: 160px 0 80px;
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
}

.home img {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	z-index: 1;
}

.home::before {
	content: "";
	position: absolute;
	inset: 0;
	z-index: 2;
	background: linear-gradient(to right, #000000c4 45%, #0000006e 55%, transparent 62%);
}

.home .container {
	position: relative;
	z-index: 3;
}

.home h2 {
	color: var(--contrast-color);
	margin: 0;
	font-size: 44px;
	font-weight: 700;
}

.home .banner-content {
	max-width: 570px;
}

.home p {
	color: rgba(var(--default-color-rgb), 0.8);
	margin-top: 5px;
	font-size: 20px;
}

.home .sign-up-form {
	margin-top: 20px;
	padding: 10px;
	border-radius: 7px;
	background: #fff;
	box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.home .sign-up-form .form-control {
	border: none;
	box-shadow: none;
}

.home .sign-up-form .form-control:focus {
	outline: none;
}

.home .sign-up-form input[type="submit"] {
	background: var(--primary-color);
	border: 1px solid var(--primary-color);
	color: var(--contrast-color);
	padding: 8px 20px 10px;
	border-radius: 7px;
	box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
	transition: background-color 0.3s;
}

.home .sign-up-form input[type="submit"]:hover {
	background: rgba(var(--primary-color-rgb), 0.9);
}

/* === Partners Section === */
.partners {
	background: #f50a23;
}

.partners h2 {
	color: #fff;
}

/* === Clients Section === */
.clients .client-logo {
	max-height: 100px;
	display: flex;
	align-items: center;
	background: #f5ff1e;
	border: 3px solid #f50a23;
	border-radius: 25px;
	transition: background 0.3s;
}

.clients .client-logo:hover {
	background: rgba(var(--primary-color-rgb), 0.3);
}

.clients .client-logo img {
	padding: 40px;
	max-width: 100%;
	opacity: 1;
	filter: grayscale(100%);
	transition: 0.3s;
}

.clients .client-logo img:hover {
	opacity: 1;
	filter: none;
}

.meeting {
	background: #fff;
	padding: 5px;
	box-shadow: 0 4px 16px rgb(33 37 41 / 48%);
	border-radius: 5px;
	border: 3px solid #f5ff1e;
}

/* === About Section === */
.about {
	--background-color: #f4f4f4;
	border-top: 8px solid #f5ff1e;
}

.about .content h3 {
	display: inline-block;
	padding: 10px 20px;
	background: #f50a23;
	color: #fff;
	font-size: 16px;
	font-weight: 600;
	line-height: 19px;
	border-radius: 7px;
	font-weight: 700;
}

.about .content h2 {
	font-weight: 700;
}

.about .content p {
	text-align: justify;
}

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

.about .content .read-more {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 12px 24px;
	background: #000;
	color: #fff;
	font-family: var(--heading-font);
	font-size: 16px;
	font-weight: 500;
	letter-spacing: 1px;
	border-radius: 5px;
	transition: all 0.3s;
	font-weight: bold;
	border: 2px solid black;
}

.about .content .read-more i {
	font-size: 18px;
	margin-left: 5px;
	transition: margin 0.3s;
}

.about .content .read-more:hover {
	background: #f5ff1e;
	border: 2px solid #000;
	padding-right: 19px;
	color: #000;
}

.about .content .read-more:hover i {
	margin-left: 10px;
}

.about .icon-box {
	padding: 40px 20px;
	background: #fff;
	box-shadow: 0 10px 50px rgba(0, 0, 0, 0.1);
	border-radius: 10px;
	text-align: center;
	transition: background-color 0.3s ease-out;
	border: 3px solid #f5ff1e;
}

.about .icon-box:hover {
	background: #f4f4f4;
}

.about .icon-box .move-icon {
	padding: 5px;
	background: rgba(var(--primary-color-rgb), 0.3);
	border: 2px solid rgba(var(--primary-color-rgb), 0.4);
}

/* === Blog Details === */
.blog-details-sublogo {
	color: #000 !important;
}

.blog-detail-bn {
	min-height: 300px;
	object-fit: cover;
	width: 100%;
	max-height: 300px;
}

.home-banner {
	background: #f5ff1e;
}

.home-banner {
	color: #fff;
	text-align: center;
	padding: 100px 0;
}

.home-banner h2 {
	font-weight: bold;
	font-size: 32px;
	color: #000;
}

.home-banner h2 .highlight-red {
	color: #d02f2f;
	font-weight: 800;
}

.home-banner h2 .highlight-blue {
	color: #1198ea;
	font-weight: 800;
}

.about .icon-box i {
	width: 80px;
	height: 80px;
	border-radius: 50%;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 24px;
	font-size: 32px;
	line-height: 0;
	transition: all 0.4s ease-out 0s;
	background-color: rgba(var(--primary-color-rgb), 0.05);
	color: var(--primary-color);
}

.about .icon-box h3 {
	margin: 10px 10px;
	font-size: 16px;
	font-weight: 700;
}

.about .icon-box p {
	margin-bottom: 0;
}

.about .icon-box:hover i {
	background-color: var(--primary-color);
	color: var(--contrast-color);
}

.about .icon-boxes .col-md-6:nth-child(2) .icon-box,
.about .icon-boxes .col-md-6:nth-child(4) .icon-box {
	margin-top: -40px;
}

/* === Stats Section Home Page === */
.stats {
	--default-color: #ffffff;
	--default-color-rgb: 255, 255, 255;
	--background-color: #000000;
	--background-color-rgb: 0, 0, 0;
	position: relative;
	padding: 100px 0;
	background-color: #f50a23;
}

.stats img {
	position: absolute;
	inset: 0;
	display: block;
	width: 100%;
	height: 100%;
	-o-object-fit: cover;
	object-fit: cover;
	z-index: 1;
}

.stats .container {
	position: relative;
	z-index: 3;
}

.stats .stats-item {
	padding: 30px;
	width: 100%;
	background: #0000009c;
	border-radius: 25px 0;
	border: 3px solid #3c3838;
}

.stats .stats-item span {
	font-size: 48px;
	display: block;
	color: var(--default-color);
	font-weight: 700;
}

.stats .stats-item p {
	padding: 0;
	margin: 0;
	font-family: var(--heading-font);
	font-size: 16px;
	font-weight: 700;
	color: rgba(var(--default-color-rgb), 0.6);
}

/* === vision-and-mission === */
.mission {
	--default-color: #ffffff;
	--default-color-rgb: 255, 255, 255;
	--background-color-rgb: 0, 0, 0;
	position: relative;
	padding: 50px 0;
	background-color: #f50a23;
}

.mission h3 {
	font-weight: 600;
}

.icon-v {
	box-shadow: 0 4px 16px rgb(33 37 41 / 48%);
	padding: 5px;
	background-color: #f4f4f4;
	border-radius: 50%;
}

.icon-v img {
	border: 2px solid var(--primary-color);
	border-radius: 50%;
}

.align-icon-center {
	display: flex;
	align-items: center;
}

.mission article {
	box-shadow: 0 4px 16px rgb(33 37 41 / 48%);
	padding: 30px;
	overflow: hidden;
	background-color: #f3ede0;
	min-height: 330px;
	border-radius: 10px;
	border: 5px solid #f5ff1e;
}

.common-box {
	text-align: center;
}

.mission article:hover {
	background-color: #f4f4f4;
	box-shadow: 0 4px 16px var(--bs-white);
}

.mission .service-item {
	position: relative;
	padding-top: 10px;
	align-items: center;
}

.head-line {
	border-bottom: 2px solid #e84545;
	padding-bottom: 10px;
}

.mission p {
	color: #000;
	font-size: 14px;
	font-weight: 500;
	margin-top: 15px;
}

/* === Services Section Home Page === */
.services .service-item {
	position: relative;
	padding-top: 10px;
	box-shadow: 0 4px 16px rgb(33 37 41 / 48%);
	padding: 10px;
	height: 100%;
	border-radius: 10px;
	overflow: hidden;
	line-height: 0;
	left: 0;
	right: 0;
	width: 100%;
	text-align: center;
	background: #f3ede0;
	border: 3px solid #f50a23;
}

.services .service-item :before {
	position: absolute;
	content: "";
	height: 30px;
	width: 30px;
	background: rgba(var(--primary-color-rgb), 0.3);
	border-radius: 50px;
	z-index: 1;
	bottom: 90px;
	right: 90px;
	transition: 0.3s;
}

.services .service-item .moving-img {
	min-height: 50px;
}

.move-icon {
	width: 50px;
	border-radius: 50%;
}

.services .service-item .icon {
	position: relative;
	line-height: 0;
	left: 0;
	right: 0;
	width: 100%;
	text-align: center;
}

.services .service-item .icon i {
	color: rgba(var(--default-color-rgb), 0.7);
	font-size: 56px;
	transition: ease-in-out 0.3s;
	z-index: 2;
	position: relative;
}

.mb-30 {
	margin-bottom: 30px;
}

.services .service-item .icon:before {
	position: absolute;
	content: "";
	height: 25px;
	width: 25px;
	background: rgba(var(--primary-color-rgb), 0.3);
	border-radius: 50px;
	z-index: 1;
	bottom: -5px;
	right: 70px;
	transition: 0.3s;
}

.services .service-item .title {
	font-weight: 700;
	font-size: 14px;
	text-align: center;
}

.services .move-icon {
	border-radius: 50%;
	width: 60px;
}

.services .service-item .title a {
	color: var(--secondary-color);
}

.services .service-item .title a:hover {
	color: var(--primary-color);
}

.services .service-item .description {
	line-height: 24px;
	font-size: 14px;
}

/* === Features Section Home Page === */
.features .features-item {
	color: rgba(var(--default-color-rgb), 0.8);
}

.features .features-item+.features-item {
	margin-top: 50px;
}

.features .features-item h3 {
	font-weight: 700;
	font-size: 24px;
	color: #f50a23;
}

.features .features-item .btn-get-started {
	background: #f50a23;
	margin-top: 20px;
	padding: 10px 40px;
	font-weight: 600;
	font-size: 14px;
	border-radius: 4px;
	transition: 0.3s;
	color: #fff;
	border: 2px solid #f50a23;
}

.features .features-item .btn-get-started:hover {
	color: #000;
	background: #f5ff1e;
	border: 2px solid #000;
}

.meetus-btn {
	background: #fff;
	color: #000;
	padding: 8px 30px 10px 30px;
	border-radius: 4px;
	margin-top: 30px;
	border: 2px solid #000000;
	font-weight: bold;
}

.meetus-btn:hover {
	color: #fff;
	background: #f50a23;
}

.sub-logo {
	display: inline;
	font-size: 10px;
	color: #fff;
	position: absolute;
	left: 35px;
	bottom: 6px;
}

.features .features-item ul {
	list-style: none;
	padding: 0;
}

.features .features-item ul li {
	padding-bottom: 10px;
	display: flex;
	align-items: flex-start;
	font-weight: 700;
}

.features .features-item ul li:last-child {
	padding-bottom: 0;
}

.features .features-item ul i {
	font-size: 20px;
	padding-right: 4px;
	color: var(--primary-color);
}

.features .features-item img {
	border: 2px solid #ccc;
	box-shadow: 0 15px 30px -10px rgba(0, 0, 0, 0.1);
	border-radius: 30px 0 30px 0;
	padding: 5px;
}

.features .features-item .features-img-bg {
	position: relative;
	min-height: 500px;
}

.features .features-item .features-img-bg img {
	position: absolute;
	inset: 0;
	display: block;
	width: 100%;
	height: 100%;
	-o-object-fit: cover;
	object-fit: cover;
	border-radius: 50%;
}

.features .features-item .image-stack {
	display: grid;
	position: relative;
	grid-template-columns: repeat(12, 1fr);
}

.features .features-item .image-stack .stack-back {
	grid-column: 4/-1;
	grid-row: 1;
	width: 100%;
	z-index: 1;
}

.features .features-item .image-stack .stack-front {
	grid-row: 1;
	grid-column: 1/span 8;
	margin-top: 20%;
	width: 100%;
	z-index: 2;
}

/* === Team Section Home Page === */
.team {
	--background-color: #f4f4f4;
}

.team .member {
	position: relative;
}

.member-img img {
	width: 160px;
	height: 160px;
	object-fit: cover;
	border-radius: 50%;
	border: 5px solid #e1e1e1;
}

.team .member .member-img img {
	position: relative;
	z-index: 1;
}

.team .member .member-img .social {
	position: absolute;
	inset: 0;
	background-color: rgba(0, 0, 0, 0.6);
	display: flex;
	justify-content: center;
	align-items: center;
	z-index: 2;
	padding-bottom: 20px;
	transition: 0.3s;
	visibility: hidden;
	opacity: 0;
}

.team .member {
	transition: background-color 0.3s ease;
	padding: 20px;
	border-radius: 8px;
	background-color: #fff;
	color: white;
	min-height: 320px;
	border: 3px solid #f50a23;
}

.team .member .member-img .social a {
	transition: 0.3s;
	color: var(--contrast-color);
	font-size: 20px;
	margin: 0 8px;
}

.team .member .member-img .social a:hover {
	color: var(--primary-color);
}

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

.team .member .member-info h4 {
	font-weight: 700;
	margin-bottom: 6px;
	font-size: 18px;
}

.team .member .member-info span {
	font-style: italic;
	display: block;
	font-size: 15px;
	color: rgba(var(--default-color-rgb), 0.6);
	margin-bottom: 10px;
}

.team .member .member-info p {
	margin-bottom: 0;
	font-size: 14px;
}

.team .member:hover .member-img .social {
	padding-bottom: 0;
	visibility: visible;
	opacity: 1;
}

/* === Call-to-action Section Home Page === */
.call-to-action {
	color: #000;
	padding: 80px 0;
	position: relative;
	background-color: #f3ede0;
}

#exampleModal .modal-header {
	background: var(--primary-color);
}

.modal-body form label {
	font-weight: 700;
	font-size: 14px;
}

.form-control:focus {
	border-color: var(--primary-color) !important;
	box-shadow: none !important;
}

.submit-btn {
	color: var(--contrast-color);
	background: var(--primary-color);
	font-size: 14px;
	padding: 8px 60px;
	margin: 0;
	border-radius: 4px;
	transition: 0.3s;
	border: 0;
	font-weight: 600;
}

#exampleModal .modal-header h5 {
	color: var(--contrast-color);
}

.call-to-action img {
	position: fixed;
	top: 0;
	left: 0;
	display: block;
	width: 100%;
	height: 100%;
	-o-object-fit: cover;
	object-fit: cover;
	z-index: 1;
}

.call-to-action .container {
	position: relative;
	z-index: 3;
}

.call-to-action .section-title {
	padding-bottom: 30px;
}

.call-to-action h3 {
	font-size: 28px;
	font-weight: 700;
	color: var(--default-color);
}

.call-to-action p {
	color: #f50a23 !important;
	font-weight: 700;
}

.call-to-action .cta-btn {
	font-weight: bold;
	border: 2px solid #f50a23;
	font-size: 16px;
	display: inline-block;
	padding: 12px 40px;
	border-radius: 4px;
	margin: 10px;
	background-color: #f50a23;
	color: #fff;

}

.call-to-action .cta-btn:hover {
	background: #f5ff1e;
	color: #000;
	border-color: #000;
}

.traning {
	--background-color: #fff;
}

/* === Testimonials Section Home Page === */
.testimonials {
	--background-color: #f4f4f4;
}

.testimonials .info h3 {
	font-weight: 700;
	font-size: 32px;
}

.testimonials .swiper {
	box-shadow: 0 15px 30px 0 rgba(0, 0, 0, 0.05);
	background-color: #fff;
}

.testimonials .testimonials-carousel,
.testimonials .testimonials-slider {
	overflow: hidden;
}

.testimonials .testimonial-item {
	box-sizing: content-box;
	min-height: 200px;
	position: relative;
	margin: 30px;
}

.testimonials .testimonial-item .testimonial-img {
	width: 90px;
	height: 90px;
	border-radius: 50px;
	border: 6px solid var(--background-color);
	margin-right: 10px;
	object-fit: cover;
}

.testimonials .testimonial-item h3 {
	font-size: 18px;
	font-weight: bold;
	margin: 10px 0 5px 0;
}

.testimonials .testimonial-item h4 {
	color: rgba(var(--default-color-rgb), 0.5);
	font-size: 14px;
	margin: 0;
}

.testimonials .testimonial-item .stars {
	margin: 10px 0;
}

.testimonials .testimonial-item .stars i {
	color: #ffc107;
	margin: 0 1px;
}

.testimonials .testimonial-item .quote-icon-left,
.testimonials .testimonial-item .quote-icon-right {
	color: rgba(var(--primary-color-rgb), 0.4);
	font-size: 26px;
	line-height: 0;
}

.testimonials .testimonial-item .quote-icon-left {
	display: inline-block;
	left: -5px;
	position: relative;
}

.testimonials .testimonial-item .quote-icon-right {
	display: inline-block;
	right: -5px;
	position: relative;
	top: 10px;
	transform: scale(-1, -1);
}

.testimonials .testimonial-item p {
	font-style: italic;
	margin: 15px auto 15px auto;
}

.testimonials .swiper-wrapper {
	height: auto;
}

.testimonials .swiper-pagination {
	margin-top: 20px;
	margin-bottom: 20px;
	position: relative;
}

.testimonials .swiper-pagination .swiper-pagination-bullet {
	width: 10px;
	height: 10px;
	background-color: rgba(var(--default-color-rgb), 0.15);
	opacity: 1;
	border: none;
}

.testimonials .swiper-pagination .swiper-pagination-bullet-active {
	background-color: var(--primary-color);
}

/* === Recent-posts Section Home Page === */
.recent-posts article {
	box-shadow: 0 4px 16px rgb(33 37 41 / 48%);
	padding: 10px;
	height: 100%;
	border-radius: 10px;
	overflow: hidden;
	background: #f5ff1e;
}

.recent-posts article:hover {
	background-color: #f3ede0;
	box-shadow: 0 4px 16px var(--bs-white);
	border: 3px solid #f50a23;
}

.recent-posts .post-img {
	height: 205px;
	margin: -30px -30px 15px -30px;
	overflow: hidden;
	border-bottom: 1px solid #ccc;
}

.recent-posts .post-category {
	font-size: 18px;
	color: #f50a23;
	margin-bottom: 10px;
	font-weight: 700;
}

.recent-posts .title {
	font-size: 14px;
	font-weight: 600;
	padding: 0;
	margin: 0 0 20px 0;
}

.post-title {
	font-size: 14px;
	font-weight: 600;
	padding: 0;
	margin: 0 0 20px 0;
	color: #000;
}

.box-border {
	box-shadow: 0 8px 10px 0 rgb(0 0 0 / 31%);
	background-color: #f3ede0;
	padding: 20px 20px;
	border-radius: 10px;
	min-height: 390px;
	border: 3px solid #f5ff1e;
}

.sub-h p {
	font-weight: 600;
	font-size: 14px;
}

.recent-posts .title a {
	color: var(--secondary-color);
	transition: 0.3s;
}

.recent-posts .title a:hover {
	color: var(--primary-color);
}

.recent-posts .post-author-img {
	width: 50px;
	border-radius: 50%;
	margin-right: 15px;
}

.recent-posts .post-author {
	font-weight: 600;
	margin-bottom: 5px;
}

.recent-posts .post-date {
	font-size: 14px;
	color: rgba(var(--default-color-rgb), 0.5);
	margin-bottom: 0;
}

/* === Social Post section === */

#social-post {
	background: #f3ede0;
}

/* Article Box */
.social-feed .article-box {
	background-color: #f4f4f4;
	box-shadow: 0 4px 8px rgba(255, 255, 255, 0.4);
	padding: 20px;
	border-radius: 6px;
}

/* Image Wrapper */
.post-img-wrapper {
	position: relative;
	display: inline-block;
	width: 100%;
	border: 3px solid #f50a23;
}

.social-feed .article-img {
	width: 100%;
	max-width: 500px;
	height: 250px;
	padding: 10px;
	background-color: rgba(255, 0, 0, 0.73);
	border-radius: 5px;
	box-shadow:
		rgba(0, 0, 0, 0.16) 0px 1px 4px,
		rgb(193, 189, 189) 0px 0px 0px 3px;
	display: flex;
	align-items: center;
	justify-content: center;
}

.social-feed .article-img img {
	width: 100%;
	height: auto;
	border: 1px solid #ccc;
	border-radius: 4px;
	box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
}

.video-section {
	background: #f50a23;
	padding: 10px;
	margin-bottom: 30px;
}

.video-description {
	padding: 20px;
	box-shadow: 0 5px 25px rgba(var(--default-color-rgb), 0.1);
	background: #fff;
	height: 315px;
}

.video-description h3 {
	font-size: 1.3rem;
	font-weight: 700;
	margin-bottom: 10px;
}

.video-description p {
	font-size: 0.875rem;
	font-weight: 600;
	color: #000;
	margin-bottom: 20px;
}

.video-description ul li {
	font-size: 0.875rem;
	font-weight: 600;

}

/* Post Info */
.social-feed .post-info {
	padding: 20px;
	box-shadow: 0 5px 25px rgba(var(--default-color-rgb), 0.1);
}

.social-feed .post-info h3 {
	font-size: 1.3rem;
	font-weight: 700;
	margin-bottom: 10px;
}

.social-feed .post-info h5 {
	font-size: 1.1rem;
	font-weight: 700;
}

.social-feed .post-info p {
	font-size: 0.875rem;
	font-weight: 600;
	color: #000;
	margin-bottom: 20px;
}

.social-feed .post-info li {
	font-size: 0.83rem;
	font-weight: 600;
}

/* Social Connect Icons (on hover) */
.social-connect {
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	background-color: #000;
	padding: 8px 12px;
	opacity: 0;
	transition: opacity 0.3s ease;
	pointer-events: none;
	display: flex;
	gap: 10px;
	align-items: center;
}

.post-img-wrapper:hover .social-connect {
	opacity: 1;
	pointer-events: auto;
}

.icon-social {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 5px;
}

.icon-social img {
	width: 24px;
	height: 24px;
}

/* Collapse Content */
.social-feed .collapse-content {
	max-height: 0;
	overflow: hidden;
	transition: max-height 0.5s ease-out;
	margin-top: 25px;
}

.social-feed .collapse-content.open {
	max-height: 1000px;
	transition: max-height 0.5s ease-in;
}

/* Add More Button */
.social-feed .add-more-btn {
	font-family: var(--heading-font);
	font-weight: 500;
	font-size: 16px;
	letter-spacing: 1px;
	padding: 12px 40px;
	border-radius: 5px;
	transition: 0.5s;
	border: 2px solid #f20c22;
	background: #fff;
	color: red;
	margin: 10px;
}

/* === Contact Section Home Page === */
.contact {
	background: #f3ede0;
}

.contact .info-item {
	background: #fff;
	padding: 30px;
	min-height: 250px;
	box-shadow: 0 4px 16px rgb(33 37 41 / 48%);
	border-radius: 5px;
	border: 3px solid #f5ff1e;
}

.contact .contact-img {
	object-fit: cover;
	border: 1px solid #fff;
	border-radius: 50%;
	width: 160px;
	padding: 2px;
	box-shadow: 0 4px 16px rgb(33 37 41 / 48%);
}

.btn-contact {
	background: #f50a23;
	padding: 10px 40px;
	font-weight: 600;
	font-size: 14px;
	border-radius: 4px;
	transition: 0.3s;
	color: #fff;
	border: 2px solid #f50a23;
}

.btn-contact:hover {
	color: #000;
	background: #f5ff1e;
	border: 2px solid #000;
}

.min-ht {
	min-height: 170px;
}

.icon-space {
	background: #f50a23;
	padding: 10px;
	border-radius: 50px;
	margin: 10px 10px 10px 0;
}

.icon-space:hover {
	background-color: rgba(var(--primary-color-rgb), 1);
	padding: 10px;
	border-radius: 50px;
}

.info-item i:hover {
	color: #fff !important;
}

.contact .info-item i {
	font-size: 38px;
	line-height: 0;
	color: #fff;
}

.contact .info-item h3 {
	font-size: 20px;
	font-weight: 700;
	margin: 0 0 5px 0;
}

.contact-bt {
	text-align: center;
}

.contact .info-item p {
	padding: 0;
	line-height: 24px;
	font-size: 13px;
	margin-bottom: 0;
}

.contact .info-item .email-text a {
	color: #454343;
	font-weight: 700;
}

.contact .php-email-form {
	background: rgba(var(--default-color-rgb), 0.03);
	padding: 30px;
	height: 100%;
}

.contact .php-email-form .error-message {
	display: none;
	background: #df1529;
	color: #ffffff;
	text-align: left;
	padding: 15px;
	margin-bottom: 24px;
	font-weight: 600;
}

.contact .php-email-form .sent-message {
	display: none;
	color: #ffffff;
	background: #059652;
	text-align: center;
	padding: 15px;
	margin-bottom: 24px;
	font-weight: 600;
}

.contact .php-email-form .loading {
	display: none;
	background: var(--background-color);
	text-align: center;
	padding: 15px;
	margin-bottom: 24px;
}

.contact .php-email-form .loading:before {
	content: "";
	display: inline-block;
	border-radius: 50%;
	width: 24px;
	height: 24px;
	margin: 0 10px -6px 0;
	border: 3px solid var(--primary-color);
	border-top-color: var(--background-color);
	animation: animate-loading 1s linear infinite;
}

.contact .php-email-form input[type=text],
.contact .php-email-form input[type=email],
.contact .php-email-form textarea {
	font-size: 14px;
	padding: 10px 15px;
	box-shadow: none;
	border-radius: 0;
	color: var(--default-color);
	background-color: rgba(var(--background-color-rgb), 0.5);
	border-color: rgba(var(--default-color-rgb), 0.2);
}

.contact .php-email-form input[type=text]:focus,
.contact .php-email-form input[type=email]:focus,
.contact .php-email-form textarea:focus {
	border-color: var(--primary-color);
}

.contact .php-email-form input[type=text]::-moz-placeholder,
.contact .php-email-form input[type=email]::-moz-placeholder,
.contact .php-email-form textarea::-moz-placeholder {
	color: rgba(var(--default-color-rgb), 0.3);
}

.contact .php-email-form input[type=text]::placeholder,
.contact .php-email-form input[type=email]::placeholder,
.contact .php-email-form textarea::placeholder {
	color: rgba(var(--default-color-rgb), 0.3);
}

.contact .php-email-form button[type=submit] {
	background: var(--primary-color);
	color: var(--contrast-color);
	border: 0;
	padding: 10px 30px;
	transition: 0.4s;
	border-radius: 4px;
}

.contact .php-email-form button[type=submit]:hover {
	background: rgba(var(--primary-color-rgb), 0.8);
}

@keyframes animate-loading {
	0% {
		transform: rotate(0deg);
	}

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

/* === Services Details Page === */
.service-details .service-box {
	padding: 20px;
	box-shadow: 0px 2px 20px rgba(var(--default-color-rgb), 0.12);
}

.service-details .service-box+.service-box {
	margin-top: 30px;
}

.service-details .service-box h4 {
	font-size: 20px;
	font-weight: 700;
	border-bottom: 2px solid rgba(var(--default-color-rgb), 0.08);
	padding-bottom: 15px;
	margin-bottom: 15px;
}

.service-details .services-list a {
	color: rgba(var(--default-color-rgb), 0.8);
	background-color: rgba(var(--default-color-rgb), 0.04);
	display: flex;
	align-items: center;
	padding: 12px 15px;
	margin-top: 15px;
	transition: 0.3s;
}

.service-details .services-list a:first-child {
	margin-top: 0;
}

.service-details .services-list a i {
	font-size: 16px;
	margin-right: 8px;
	color: var(--primary-color);
}

.service-details .services-list a.active {
	color: var(--contrast-color);
	background-color: var(--primary-color);
}

.service-details .services-list a.active i {
	color: var(--contrast-color);
}

.service-details .services-list a:hover {
	background-color: rgba(var(--primary-color-rgb), 0.05);
	color: var(--primary-color);
}

.service-details .download-catalog a {
	color: var(--default-color);
	display: flex;
	align-items: center;
	padding: 10px 0;
	transition: 0.3s;
	border-top: 1px solid rgba(var(--default-color-rgb), 0.1);
}

.service-details .download-catalog a:first-child {
	border-top: 0;
	padding-top: 0;
}

.service-details .download-catalog a:last-child {
	padding-bottom: 0;
}

.service-details .download-catalog a i {
	font-size: 24px;
	margin-right: 8px;
	color: var(--primary-color);
}

.service-details .download-catalog a:hover {
	color: var(--primary-color);
}

.service-details .help-box {
	background-color: var(--primary-color);
	color: var(--contrast-color);
	margin-top: 30px;
	padding: 30px 15px;
}

.service-details .help-box .help-icon {
	font-size: 48px;
}

.service-details .help-box h4,
.service-details .help-box a {
	color: var(--contrast-color);
}

.service-details .services-img {
	margin-bottom: 20px;
}

.service-details h3 {
	font-size: 26px;
	font-weight: 700;
}

.service-details p {
	font-size: 15px;
}

.service-details ul {
	list-style: none;
	padding: 0;
	font-size: 15px;
}

.service-details ul li {
	padding: 5px 0;
	display: flex;
	align-items: center;
}

.service-details ul i {
	font-size: 20px;
	margin-right: 8px;
	color: var(--primary-color);
}

/* === Blog Page === */
.blog .posts-list article {
	box-shadow: 0 4px 16px rgba(var(--default-color-rgb), 0.1);
	padding: 30px;
	height: 100%;
	border-radius: 10px;
	overflow: hidden;
}

.blog .posts-list .post-img {
	max-height: 240px;
	margin: -30px -30px 15px -30px;
	overflow: hidden;
}

.blog-box .post-img img {
	min-height: 220px;
	width: 100%;
	object-fit: contain;
	background: black;
}

.blog .posts-list .post-category {
	font-size: 16px;
	color: rgba(var(--default-color-rgb), 0.6);
	margin-bottom: 10px;
}

.blog .posts-list .title {
	font-size: 22px;
	font-weight: 700;
	padding: 0;
	margin: 0 0 20px 0;
}

.blog .posts-list .title a {
	color: var(--secondary-color);
	transition: 0.3s;
}

.blog .posts-list .title a:hover {
	color: var(--primary-color);
}

.blog .posts-list .post-author-img {
	width: 50px;
	border-radius: 50%;
	margin-right: 15px;
}

.blog .posts-list .post-author {
	font-weight: 600;
	margin-bottom: 5px;
}

.blog .posts-list .post-date {
	font-size: 14px;
	color: rgba(var(--default-color-rgb), 0.6);
	margin-bottom: 0;
}

.blog .pagination {
	margin-top: 30px;
	color: rgba(var(--default-color-rgb), 0.6);
}

.blog .pagination ul {
	display: flex;
	padding: 0;
	margin: 0;
	list-style: none;
}

.blog .pagination li {
	margin: 0 5px;
	transition: 0.3s;
}

.blog .pagination li a {
	color: rgba(var(--default-color-rgb), 0.6);
	padding: 7px 16px;
	display: flex;
	align-items: center;
	justify-content: center;
}

.blog .pagination li.active,
.blog .pagination li:hover {
	background: var(--primary-color);
	color: var(--contrast-color);
}

.blog .pagination li.active a,
.blog .pagination li:hover a {
	color: var(--contrast-color);
}

.inside-img-blog {
	border: 1px solid #cccccc63;
	box-shadow: 0 4px 16px #ccc;
	border-radius: 5px;
}

/* === Blog Details Page === */
.blog-details .article {
	box-shadow: 0 4px 16px rgba(var(--default-color-rgb), 0.1);
	padding: 30px;
}

.blog-details .post-img {
	margin: -30px -30px 20px -30px;
	overflow: hidden;
}

.blog-details .title {
	color: var(--secondary-color);
	font-size: 28px;
	font-weight: 700;
	padding: 0;
	margin: 30px 0;
}

.blog-details .content {
	margin-top: 20px;
}

.blog-details .content h3 {
	font-size: 22px;
	margin-top: 30px;
	font-weight: bold;
}

.blog-details .content blockquote {
	overflow: hidden;
	background-color: rgba(var(--default-color-rgb), 0.05);
	padding: 60px;
	position: relative;
	margin: 20px 0;
}

.blog-detail-banner {
	position: relative;
	text-align: center;
}

.blog-detail-banner h1 {
	top: 50%;
	position: absolute;
	width: 100%;
	color: #fff;
}

.blog-detail-banner img {
	width: 100%;
}

.blog-details .content blockquote p {
	color: var(--default-color);
	line-height: 1.6;
	margin-bottom: 0;
	font-style: italic;
	font-weight: 500;
	font-size: 22px;
}

.blog-details .content blockquote:after {
	content: "";
	position: absolute;
	left: 0;
	top: 0;
	bottom: 0;
	width: 3px;
	background-color: var(--primary-color);
	margin-top: 20px;
	margin-bottom: 20px;
}

.blog-details .meta-top {
	margin-top: 20px;
	color: rgba(var(--default-color-rgb), 0.6);
}

.blog-details .meta-top ul {
	display: flex;
	flex-wrap: wrap;
	list-style: none;
	align-items: center;
	padding: 0;
	margin: 0;
}

.blog-details .meta-top ul li+li {
	padding-left: 20px;
}

.blog-details .meta-top i {
	font-size: 16px;
	margin-right: 8px;
	line-height: 0;
	color: rgba(var(--default-color-rgb), 0.6);
}

.blog-details .meta-top a {
	color: rgba(var(--default-color-rgb), 0.6);
	font-size: 14px;
	display: inline-block;
	line-height: 1;
}

.blog-details .meta-bottom {
	padding-top: 10px;
	border-top: 1px solid rgba(var(--default-color-rgb), 0.1);
}

.blog-details .meta-bottom i {
	color: rgba(var(--default-color-rgb), 0.6);
	display: inline;
}

.blog-details .meta-bottom a {
	color: rgba(var(--default-color-rgb), 0.6);
	transition: 0.3s;
}

.blog-details .meta-bottom a:hover {
	color: var(--primary-color);
}

.blog-details .meta-bottom .cats {
	list-style: none;
	display: inline;
	padding: 0 20px 0 0;
	font-size: 14px;
}

.blog-details .meta-bottom .cats li {
	display: inline-block;
}

.blog-details .meta-bottom .tags {
	list-style: none;
	display: inline;
	padding: 0;
	font-size: 14px;
}

.blog-details .meta-bottom .tags li {
	display: inline-block;
}

.blog-details .meta-bottom .tags li+li::before {
	padding-right: 6px;
	color: var(--default-color);
	content: ",";
}

.blog-details .meta-bottom .share {
	font-size: 16px;
}

.blog-details .meta-bottom .share i {
	padding-left: 5px;
}

.blog-details .sidebar {
	padding: 30px;
	box-shadow: 0 4px 16px rgba(var(--default-color-rgb), 0.1);
}

.blog-details .sidebar .sidebar-title {
	color: var(--secondary-color);
	font-size: 20px;
	font-weight: 700;
	padding: 0;
	margin: 0;
}

.blog-details .sidebar .sidebar-item+.sidebar-item {
	margin-top: 40px;
}

.blog-details .sidebar .search-form form {
	background: var(--background-color);
	border: 1px solid rgba(var(--default-color-rgb), 0.3);
	padding: 3px 10px;
	position: relative;
}

.blog-details .sidebar .search-form form input[type=text] {
	border: 0;
	padding: 4px;
	border-radius: 4px;
	width: calc(100% - 40px);
	background-color: var(--background-color);
	color: var(--default-color);
}

.blog-details .sidebar .search-form form input[type=text]:focus {
	outline: none;
}

.blog-details .sidebar .search-form form button {
	background: var(--primary-color);
	color: var(--background-color);
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	border: 0;
	font-size: 16px;
	padding: 0 15px;
	margin: -1px;
	transition: 0.3s;
	border-radius: 0 4px 4px 0;
	line-height: 0;
}

.blog-details .sidebar .search-form form button i {
	line-height: 0;
}

.blog-details .sidebar .search-form form button:hover {
	background: rgba(var(--primary-color-rgb), 0.8);
}

.blog-details .sidebar .categories ul {
	list-style: none;
	padding: 0;
}

.blog-details .sidebar .categories ul li+li {
	padding-top: 10px;
}

.blog-details .sidebar .categories ul a {
	color: rgba(var(--default-color-rgb), 0.8);
	transition: 0.3s;
}

.blog-details .sidebar .categories ul a:hover {
	color: var(--primary-color);
}

.blog-details .sidebar .categories ul a span {
	padding-left: 5px;
	color: rgba(var(--default-color-rgb), 0.5);
	font-size: 14px;
}

.blog-details .sidebar .recent-posts .post-item {
	display: flex;
	margin-top: 15px;
}

.blog-details .sidebar .recent-posts img {
	width: 80px;
	margin-right: 15px;
	height: 55px;
	border-radius: 5px;
}

.blog-details .sidebar .recent-posts h4 {
	font-size: 15px;
	font-weight: bold;
	margin-bottom: 5px;
}

.blog-details .sidebar .recent-posts h4 a {
	color: var(--default-color);
	transition: 0.3s;
}

.blog-details .sidebar .recent-posts h4 a:hover {
	color: var(--primary-color);
}

.blog-details .sidebar .recent-posts time {
	display: block;
	font-style: italic;
	font-size: 14px;
	color: rgba(var(--default-color-rgb), 0.5);
}

.blog-details .sidebar .tags {
	margin-bottom: -10px;
}

.blog-details .sidebar .tags ul {
	list-style: none;
	padding: 0;
}

.blog-details .sidebar .tags ul li {
	display: inline-block;
}

.blog-details .sidebar .tags ul a {
	color: rgba(var(--default-color-rgb), 0.7);
	font-size: 14px;
	padding: 6px 14px;
	margin: 0 6px 8px 0;
	border: 1px solid rgba(var(--default-color-rgb), 0.4);
	display: inline-block;
	transition: 0.3s;
}

.blog-details .sidebar .tags ul a:hover {
	color: var(--background-color);
	border: 1px solid var(--primary-color);
	background: var(--primary-color);
}

.blog-details .sidebar .tags ul a span {
	padding-left: 5px;
	color: rgba(var(--default-color-rgb), 0.4);
	font-size: 14px;
}

.blog-details .blog-author {
	padding: 20px;
	margin-top: 30px;
	box-shadow: 0 4px 16px rgba(var(--default-color-rgb), 0.1);
}

.blog-details .blog-author img {
	max-width: 120px;
	margin-right: 20px;
}

.blog-details .blog-author h4 {
	font-weight: 600;
	font-size: 20px;
	margin-bottom: 0px;
	padding: 0;
	color: rgba(var(--default-color-rgb), 0.8);
}

.blog-details .blog-author .social-links {
	margin: 0 10px 10px 0;
}

.blog-details .blog-author .social-links a {
	color: rgba(var(--default-color-rgb), 0.4);
	margin-right: 5px;
}

.blog-details .blog-author p {
	font-style: italic;
	color: rgba(var(--default-color-rgb), 0.7);
	margin-bottom: 0;
}

.blog-details .comments {
	margin-top: 30px;
}

.blog-details .comments .comments-count {
	font-weight: bold;
}

.blog-details .comments .comment {
	margin-top: 30px;
	position: relative;
}

.blog-details .comments .comment .comment-img {
	margin-right: 14px;
}

.blog-details .comments .comment .comment-img img {
	width: 60px;
}

.blog-details .comments .comment h5 {
	font-size: 16px;
	margin-bottom: 2px;
}

.blog-details .comments .comment h5 a {
	font-weight: bold;
	color: var(--default-color);
	transition: 0.3s;
}

.blog-details .comments .comment h5 a:hover {
	color: var(--primary-color);
}

.blog-details .comments .comment h5 .reply {
	padding-left: 10px;
	color: rgba(var(--default-color-rgb), 0.8);
}

.blog-details .comments .comment h5 .reply i {
	font-size: 20px;
}

.blog-details .comments .comment time {
	display: block;
	font-size: 14px;
	color: rgba(var(--default-color-rgb), 0.6);
	margin-bottom: 5px;
}

.blog-details .comments .comment.comment-reply {
	padding-left: 40px;
}

.blog-details .comments .reply-form {
	margin-top: 30px;
	padding: 30px;
	box-shadow: 0 4px 16px rgba(var(--default-color-rgb), 0.1);
}

.blog-details .comments .reply-form h4 {
	font-weight: bold;
	font-size: 22px;
}

.blog-details .comments .reply-form p {
	font-size: 14px;
}

.blog-details .comments .reply-form input {
	background-color: var(--background-color);
	color: var(--default-color);
	border: 1px solid rgba(var(--default-color-rgb), 0.3);
	font-size: 14px;
	border-radius: 4px;
	padding: 10px 10px;
}

.blog-details .comments .reply-form input:focus {
	box-shadow: none;
	border-color: var(--primary-color);
}

.blog-details .comments .reply-form textarea {
	background-color: var(--background-color);
	color: var(--default-color);
	border: 1px solid rgba(var(--default-color-rgb), 0.3);
	border-radius: 4px;
	padding: 10px 10px;
	font-size: 14px;
	height: 120px;
}

.blog-details .comments .reply-form textarea:focus {
	box-shadow: none;
	border-color: var(--primary-color);
}

.blog-details .comments .reply-form .form-group {
	margin-bottom: 25px;
}

.blog-details .comments .reply-form .btn-primary {
	border-radius: 4px;
	padding: 10px 20px;
	border: 0;
	background-color: var(--primary-color);
	color: var(--contrast-color);
}

.blog-details .comments .reply-form .btn-primary:hover {
	color: var(--contrast-color);
	background-color: rgba(var(--primary-color-rgb), 0.8);
}

/* === blog slider === */
.blog-slider .swiper {
	width: 100%;
	height: 100%;
	padding: 0px 20px 50px 20px;
}

.blog-slide .swiper-slide {
	text-align: center;
	font-size: 18px;
	background: #fff;
	display: flex;
	justify-content: center;
	align-items: center;
}

.blog-slide .swiper-slide img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.blog-slide .swiper-pagination .swiper-pagination-bullet-active {
	background-color: var(--primary-color);
}

.blog-box {
	height: 360px !important;
	box-shadow: 0 1px 3px rgb(33 37 41 / 48%) !important;
	border: 3px solid #f50a23 !important;
}

.swiper-button-next,
.swiper-button-prev {
	color: var(--primary-color);
}

.swiper-button-next:after,
.swiper-button-prev:after {
	font-size: 25px;
	font-weight: bold;
}

.swiper-pagination-bullet-active {
	color: var(--primary-color);
	background: var(--primary-color);
}

.swiper-button-prev,
.swiper-rtl .swiper-button-next {
	left: -5px;
}

.swiper-button-next,
.swiper-rtl .swiper-button-prev {
	right: -5px;
}

.swiper-button-next,
.swiper-button-prev {
	top: 45%;
}

/* === Articles Section === */
.articles-post {
	background: #f5ff1e;
}

.article-img img {
	max-height: 230px;
	min-height: 230px;
	width: 100%;
}

.articles-post article {
	background-color: #f3ede0;
	border: 3px solid #f50a23;
	padding: 10px;
}

/* === Reports Section  Home Page === */
.report-section {
	background: #f50a23;
}

.report-section .img-report {
	width: 100%;
	height: 100%;
	position: relative;
}

.report-section h2 {
	color: #fff;
}

.report-section p {
	color: #fff;
}

.more-link {
	right: 15px !important;
}

.report-section .portfolio-filters li {
	color: #fff;
}

.readmore-btn {
	background: #fff;
	margin-top: 50px;
	padding: 10px 40px;
	font-weight: 600;
	font-size: 14px;
	border-radius: 4px;
	transition: 0.3s;
}

.readmore-btn:hover {
	color: #e84545;
	border: 1px solid #e84545;
	background-color: #fff;
}

.report-section .portfolio-filters {
	padding: 0;
	margin: 0 auto 20px auto;
	list-style: none;
	text-align: center;
}

.report-section .portfolio-filters li {
	cursor: pointer;
	display: inline-block;
	padding: 8px 20px 10px 20px;
	margin: 0;
	font-size: 15px;
	font-weight: 500;
	line-height: 1;
	margin-bottom: 5px;
	border-radius: 50px;
	transition: all 0.3s ease-in-out;
	font-family: var(--heading-font);
}

.report-section .portfolio-filters li:hover,
.report-section .portfolio-filters li.filter-active {
	color: #000;
	background-color: #f5ff1e;
}

.report-section .portfolio-filters li:first-child {
	margin-left: 0;
}

.report-section .portfolio-filters li:last-child {
	margin-right: 0;
}

.report-details .report-heading h3 span {
	font-size: 14px;
}

.report-details .report-fs h3 {
	color: #e84545;
}

.report-details .report-fs p {
	color: #931d1d;
}

.report-details .report-sc h3 {
	color: #008000;
}

.report-details .report-sc p {
	color: #e84545;
}

.report-details .features-item {
	background: #f3ede0;
	box-shadow: 0 4px 16px rgba(var(--default-color-rgb), 0.1);
	padding: 20px 20px 40px 20px;
}

.report-details {
	padding: 30px 0 60px 0;
	margin: 30px 0;
}


.report-section .report-item {
	position: relative;
	overflow: hidden;
}

.report-section .report-item .report-info {
	opacity: 0;
	position: absolute;
	left: 12px;
	right: 12px;
	bottom: -100%;
	z-index: 3;
	transition: all ease-in-out 0.5s;
	background: rgba(var(--background-color-rgb), 0.9);
	padding: 15px;
}

.report-section .report-item .report-info h4 {
	font-size: 18px;
	font-weight: 600;
	padding-right: 50px;
}

.report-section img {
	border: 1px solid black;
}

.report-section .report-item .report-info p {
	color: rgba(var(--default-color-rgb), 0.7);
	font-size: 14px;
	margin-bottom: 0;
	padding-right: 50px;
}

.report-section .report-item .report-info .preview-link,
.report-section .report-item .report-info .details-link {
	position: absolute;
	right: 50px;
	font-size: 24px;
	top: calc(50% - 14px);
	color: rgba(var(--default-color-rgb), 0.7);
	transition: 0.3s;
	line-height: 0;
}

.report-section .report-item .report-info .preview-link:hover,
.report-section .report-item .report-info .details-link:hover {
	color: var(--primary-color);
}

.report-section .report-item .report-info .details-link {
	right: 14px;
	font-size: 28px;
}

.report-section .report-item:hover .report-info {
	opacity: 1;
	bottom: 0;
}

.report-width {
	width: 100%;
	background: var(--primary-color);
	border: 2px solid #f5ff1e;
}

.common-heading {
	background: #f50a23;
	margin: 100px 0 0 0;
}

.common-heading h1 {
	color: #fff;
}

.common-heading p {
	color: #fff;
	font-weight: 600;
	text-transform: capitalize;
}

.privacy-details .title {
	margin: 30px 0;
	color: var(--secondary-color);
	font-size: 28px;
	font-weight: 700;
	padding: 0;
}

.privacy-details h3 {
	font-size: 22px;
	font-weight: bold;
}

.privacy-details .policy-content section {
	padding: 10px 0;
}

.privacy-details article {
	box-shadow: 0 4px 16px rgba(var(--default-color-rgb), 0.1);
	padding: 30px;
}

.blog-details-page .sub-logo {
	color: #000;
}

/* === Faq Section Home Page === */
.faq {
	background: linear-gradient(to top, #fff, #ddd);
}

.faq .content h3 {
	font-weight: 400;
	font-size: 34px;
}

.faq .content p {
	font-size: 15px;
	color: rgba(var(--default-color-rgb), 0.7);
}

.faq .faq-container .faq-item {
	position: relative;
	padding: 20px;
	margin-bottom: 20px;
	box-shadow: 0px 5px 25px 0px rgba(var(--default-color-rgb), 0.1);
	overflow: hidden;
	background: #fff;
}

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

.faq .faq-container .faq-item h3 {
	font-weight: 600;
	font-size: 18px;
	line-height: 24px;
	margin: 0 30px 0 0;
	transition: 0.3s;
	cursor: pointer;
	display: flex;
	align-items: flex-start;
}

.faq .faq-container .faq-item h3 .num {
	color: var(--primary-color);
	padding-right: 5px;
}

.faq .faq-container .faq-item h3:hover {
	color: var(--primary-color);
}

.caq-img {
	border: 6px solid #e1dede;
	background: #fff;
	box-shadow: 0 4px 16px rgb(33 37 41 / 48%);
}

.faq .faq-container .faq-item .faq-content {
	display: grid;
	grid-template-rows: 0fr;
	transition: 0.3s ease-in-out;
	visibility: hidden;
	opacity: 0;
}

.faq .faq-container .faq-item .faq-content p {
	margin-bottom: 0;
	overflow: hidden;
}

.faq .faq-container .faq-item .faq-toggle {
	position: absolute;
	top: 20px;
	right: 20px;
	font-size: 16px;
	line-height: 0;
	transition: 0.3s;
	cursor: pointer;
}

.faq .faq-container .faq-item .faq-toggle:hover {
	color: var(--primary-color);
}

.faq .faq-container .faq-active h3 {
	color: var(--primary-color);
}

.faq .faq-container .faq-active .faq-content {
	grid-template-rows: 1fr;
	visibility: visible;
	opacity: 1;
	padding-top: 10px;
}

.faq .faq-container .faq-active .faq-toggle {
	transform: rotate(90deg);
	color: var(--primary-color);
}

.faq .faq-img {
	border: 5px solid #f5ff1e;
}

.faq .faq-img img {
	min-height: 250px;
	object-fit: cover;
	max-height: 300px;
}

.btn-faq {
	background: #f50a23;
	margin-top: 50px;
	padding: 10px 40px;
	font-weight: 600;
	font-size: 14px;
	border-radius: 4px;
	transition: 0.3s;
	color: #fff;
}

.btn-faq:hover {
	background: #f5ff1e !important;
	color: #000;
}

.faq-details {
	background: #ddd;
}

/* === Media query start === */

@media (min-width: 1400px) {

	.contact .info-item {
		min-height: 450px;
	}

	.meeting {
		min-height: 450px;
	}

}

@media (max-width: 1200px) {

	.header .logo {
		order: 1;
	}

	.header .btn-getstarted {
		order: 2;
		margin: 0 15px 0 0;
		padding: 6px 20px;
	}

	.header .navmenu {
		order: 3;
	}

	.header .btn-schedule {
		order: 2;
		margin-right: 10px;
	}
}

/* === Navigation Menu Desktop Navigation === */
@media (min-width: 1200px) {

	.navmenu {
		padding: 0;
	}

	.navmenu ul {
		margin: 0;
		padding: 0;
		display: flex;
		list-style: none;
		align-items: center;
	}

	.navmenu li {
		position: relative;
	}

	.navmenu a,
	.navmenu a:focus {
		color: #3c3838;
		padding: 18px 15px;
		font-size: 16px;
		font-family: var(--nav-font);
		font-weight: 600;
		display: flex;
		align-items: center;
		justify-content: space-between;
		white-space: nowrap;
		transition: 0.3s;
	}

	.navmenu a i,
	.navmenu a:focus i {
		font-size: 12px;
		line-height: 0;
		margin-left: 5px;
		transition: 0.3s;
	}

	.navmenu li:last-child a {
		padding-right: 0;
	}

	.navmenu li:hover>a,
	.navmenu .active,
	.navmenu .active:focus {
		color: var(--primary-color);
	}

	.navmenu .dropdown ul {
		margin: 0;
		padding: 10px 0;
		background: var(--nav-dropdown-background-color);
		display: block;
		position: absolute;
		visibility: hidden;
		left: 14px;
		top: 130%;
		opacity: 0;
		transition: 0.3s;
		border-radius: 4px;
		z-index: 99;
	}

	.navmenu .dropdown ul li {
		min-width: 200px;
	}

	.navmenu .dropdown ul a {
		padding: 10px 20px;
		font-size: 15px;
		text-transform: none;
		color: var(--nav-dropdown-color);
	}

	.navmenu .dropdown ul a i {
		font-size: 12px;
	}

	.navmenu .dropdown ul a:hover,
	.navmenu .dropdown ul .active:hover,
	.navmenu .dropdown ul li:hover>a {
		color: var(--nav-dropdown-hover-color);
	}

	.navmenu .dropdown:hover>ul {
		opacity: 1;
		top: 100%;
		visibility: visible;
	}

	.navmenu .dropdown .dropdown ul {
		top: 0;
		left: -90%;
		visibility: hidden;
	}

	.navmenu .dropdown .dropdown:hover>ul {
		opacity: 1;
		top: 0;
		left: -100%;
		visibility: visible;
	}

	.navmenu .megamenu {
		position: static;
	}

	.navmenu .megamenu ul {
		margin: 0;
		padding: 10px;
		background: var(--nav-dropdown-background-color);
		box-shadow: 0px 0px 20px rgba(var(--default-color-rgb), 0.1);
		display: block;
		position: absolute;
		top: 130%;
		left: 0;
		right: 0;
		visibility: hidden;
		opacity: 0;
		display: flex;
		transition: 0.3s;
		border-radius: 4px;
		z-index: 99;
	}

	.navmenu .megamenu ul li {
		flex: 1;
	}

	.navmenu .megamenu ul li a,
	.navmenu .megamenu ul li:hover>a {
		padding: 10px 20px;
		font-size: 15px;
		color: var(--nav-dropdown-color);
	}

	.navmenu .megamenu ul li a:hover,
	.navmenu .megamenu ul li .active,
	.navmenu .megamenu ul li .active:hover {
		color: var(--nav-dropdown-hover-color);
	}

	.navmenu .megamenu:hover>ul {
		opacity: 1;
		top: 100%;
		visibility: visible;
	}

	.navmenu .dd-box-shadow {
		box-shadow: 0px 0px 30px rgba(var(--default-color-rgb), 0.15);
	}

	.mission p {
		min-width: 350px;
	}

	.clients .client-logo img {
		max-height: 160px;
		width: 100%;
	}
}

/* === Mobile Navigation === */
@media (max-width: 1200px) {

	.mobile-nav-toggle {
		color: #e84545;
		font-size: 28px;
		line-height: 0;
		margin-right: 10px;
		cursor: pointer;
		transition: color 0.3s;
	}

	.navmenu {
		padding: 0;
		z-index: 9997;
	}

	.navmenu ul {
		display: none;
		position: absolute;
		inset: 60px 20px 20px 20px;
		padding: 10px 0;
		margin: 0;
		border-radius: 6px;
		background-color: var(--nav-mobile-background-color);
		overflow-y: auto;
		transition: 0.3s;
		z-index: 9998;
		box-shadow: 0px 0px 30px rgba(var(--default-color-rgb), 0.1);
	}

	.navmenu a,
	.navmenu a:focus {
		color: var(--nav-dropdown-color);
		padding: 10px 20px;
		font-family: var(--nav-font);
		font-size: 17px;
		font-weight: 500;
		display: flex;
		align-items: center;
		justify-content: space-between;
		white-space: nowrap;
		transition: 0.3s;
	}

	.navmenu a i,
	.navmenu a:focus i {
		font-size: 12px;
		line-height: 0;
		margin-left: 5px;
		width: 30px;
		height: 30px;
		display: flex;
		align-items: center;
		justify-content: center;
		border-radius: 50%;
		transition: 0.3s;
		background-color: rgba(var(--primary-color-rgb), 0.1);
	}

	.navmenu a i:hover,
	.navmenu a:focus i:hover {
		background-color: var(--primary-color);
		color: var(--contrast-color);
	}

	.navmenu a:hover,
	.navmenu .active,
	.navmenu .active:focus {
		color: var(--nav-dropdown-hover-color);
	}

	.navmenu .active i,
	.navmenu .active:focus i {
		background-color: var(--primary-color);
		color: var(--contrast-color);
		transform: rotate(180deg);
	}

	.navmenu .dropdown ul,
	.navmenu .megamenu ul {
		position: static;
		display: none;
		z-index: 99;
		padding: 10px 0;
		margin: 10px 20px;
		background-color: var(--nav-dropdown-background-color);
		transition: all 0.5s ease-in-out;
	}

	.navmenu .dropdown ul ul,
	.navmenu .megamenu ul ul {
		background-color: rgba(33, 37, 41, 0.1);
	}

	.navmenu .dropdown>.dropdown-active,
	.navmenu .megamenu>.dropdown-active {
		display: block;
		background-color: rgba(33, 37, 41, 0.03);
	}

	.mobile-nav-active {
		overflow: hidden;
	}

	.mobile-nav-active .mobile-nav-toggle {
		color: #fff;
		position: absolute;
		font-size: 32px;
		top: 15px;
		right: 15px;
		margin-right: 0;
		z-index: 9999;
	}

	.mobile-nav-active .navmenu {
		position: fixed;
		overflow: hidden;
		inset: 0;
		background: rgba(33, 37, 41, 0.8);
		transition: 0.3s;
	}

	.mobile-nav-active .navmenu>ul {
		display: block;
	}
}


@media (max-width: 1199px) {

	section {
		scroll-margin-top: 66px;
	}
}

/* === Tablet === */

@media (width: 1024px) {

	.service-item :before {
		bottom: 55px !important;
		right: 145px !important;
	}

	.footer .footer-links ul a {
		font-size: 12px;
	}
}


@media screen and (min-device-width: 768px) and (max-device-width: 1024px) {
	.home {
		min-height: 50vh;
	}

	.mission article {
		min-height: 500px !important;
		max-height: 500px !important;
	}

	.mission h3 {
		margin-top: 20px;
	}
}

@media screen and (min-device-width: 768px) and (max-device-width: 912px) {
	.footer .footer-about p {
		font-size: 20px !important;
	}

	.footer .size-log {
		min-height: 50px;
		max-height: 50px;
	}

	.footer .footer-logo img {
		width: 50%;
	}
}


@media (max-width: 1024px) {

	.team .member .member-img {
		margin: 0 60px;
	}

	.sub-logo {
		left: 35px;
		bottom: -6px;
	}

	.footer .footer-about p {
		text-align: unset;
	}

	.partners-logo .col-xl-1 {
		display: none;
	}

	.p-logo {
		margin-bottom: 10px;
	}

	.icon-v img {
		width: 100px;
	}

	.flex-ipad {
		flex-direction: column !important;
	}

	.contact .contact-img {
		margin-bottom: 10px;
		width: 100px;
	}
}


/* === Mobile === */

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

	[data-aos-delay] {
		transition-delay: 0 !important;
	}

	.comomn-heading .heading h1 {
		font-size: 32px;
	}

	.home h2 {
		font-size: 30px;
	}

	.home p {
		font-size: 18px;
		line-height: 1.3;
	}

	.home:before {
		background: rgb(0 0 0 / 67%);
	}

	.home img {
		object-fit: fill;
	}

	.about .icon-box h3 {
		font-size: 14px !important;
	}

	.home-banner h2 {
		font-size: 25px !important;
	}

	.home-banner {
		padding: 50px 0 !important;
	}

	.about .icon-boxes .col-md-6:nth-child(2) .icon-box,
	.about .icon-boxes .col-md-6:nth-child(4) .icon-box {
		margin-top: 0;
	}

	.clients .client-logo {
		max-height: 80px !important;
		min-height: 80px !important;
	}

	.img-certificate img {
		max-height: 45px;
		min-height: 50px;
		object-fit: contain;
	}

	.features .features-item+.features-item {
		margin-top: 20px;
	}

	.footer .footer-logo img {
		width: 60%;
	}

	.video-description {
		height: 380px;
	}
}

@media (max-width: 767px) {

	.testimonials .testimonials-carousel,
	.testimonials .testimonials-slider {
		overflow: hidden;
	}

	.testimonials .testimonial-item {
		margin: 15px;
	}

	.mission article {
		margin-bottom: 30px;
	}

	.align-icon-center {
		justify-content: center;
	}

	.home {
		min-height: 50vh;
		padding: 140px 0 80px 0;
	}

	.social-connect {
		padding: 2px 6px;
	}

	.icon-social img {
		width: 20px;
		height: 20px;
	}

	.social-feed .post-info h3 {
		font-size: 1.0rem;
	}

	.social-feed .post-info p {
		font-size: 0.8rem;
	}

	.social-feed .post-info h5 {
		font-size: 1.0rem;
	}

	.social-feed .post-info li {
		font-size: 0.8rem;
	}

	.header .btn-schedule {
		display: none;
	}
}

@media (max-width: 640px) {

	.clients .client-logo img {
		padding: 20px;
	}

	.img-certificate img {
		max-height: 45px;
		width: 100%;
	}

	.footer .f-text {
		font-weight: 700;
	}

	.services .service-item .icon:before {
		right: 22px;
	}

	.move-icon {
		width: 50px;
	}

	.services .service-item .title {
		margin-top: 10px !important;
		font-size: 14px !important;
	}

	.features .features-item .features-img-bg {
		min-height: 300px;
	}
}

@media (max-width: 575px) {
	.report-section .portfolio-filters li {
		font-size: 14px;
		margin: 0 0 10px 0;
	}

	.page-title nav {
		padding: 2px 0px;
		border-radius: 25px 25px 0 0;
	}

	.top-subheader h6 {
		display: none !important;
	}

	.header .logo img {
		max-height: 30px;
	}
}

@media screen and (min-device-width: 320px) and (max-device-width: 480px) {
	.header .logo h1 {
		font-size: 14px;
	}

	.sub-logo {
		left: 23px;
		bottom: -3px;
		font-size: 7px;
	}

	.header .btn-getstarted {
		margin: 0 5px 0 0;
		padding: 2px 8px;
		font-size: 12px;
	}

	.footer .footer-links ul li {
		padding: 8px 0;
	}

	.footer .footer-links {
		margin-bottom: 5px;
	}

	.section-title h2:before,
	.section-title h2:after {
		width: 30px;
	}

	.section-title h2 {
		font-size: 24px;
	}

	.section-title h2:before {
		margin: 0 15px 6px 0;
	}

	.section-title p {
		font-size: 14px;
	}

	.services .service-item .icon:before {
		right: 22px;
	}

	.icon-text-pra {
		width: 100%;
	}

	.blog-slider .swiper {
		padding: 0px 10px 50px 10px;
	}
}