@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@400;600;700;800&family=Inter:wght@400;500;600&display=swap');

a,
button,
p,
input,
select,
textarea,
li,
.transition-3 {
	-webkit-transition: all 0.3s ease-out;
	-moz-transition: all 0.3s ease-out;
	-ms-transition: all 0.3s ease-out;
	-o-transition: all 0.3s ease-out;
	transition: all 0.3s ease-out;
}

/* LINK COLOR */
:root {
	/**
  @font family declaration
  */
	--atf-ff-fontawesome: "Font Awesome 7 free";
	/**
  @color declaration
  */
	--atf-thm-white: #ffffff;
	--atf-thm-black: #0F172A;
	--atf-thm-color: #ff5b00;
	--atf-thm-base: #06B6D4;
	--atf-grey-1: #f9f9f9;
	--atf-grey-2: #f5f5f5;
	--atf-grey-3: #f6f6f6;
	--atf-grey-4: #f7f7f7;
	--atf-grey-5: #f4f4f4;
	--atf-grey-6: #171A2B;
	--atf-text-body: #6b6b6b;
	--atf-border-1: #dddddd;
	--atf-grey-7: #fff0f0;
	--atf-grey-8: #E5E7EB;
	--atf-rgb-white: rgba(255, 255, 255, 0.7);
}

* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

html {
	scroll-behavior: smooth;
}

body {
	font-size: 1rem;
	line-height: 1.9;
	font-weight: normal;
	color: var(--atf-text-body);

}

p {
	font-size: 1rem;
	font-weight: 400;
	margin-bottom: 0.9375rem;
	line-height: 1.9;
	color: var(--atf-text-body);
}

img {
	max-width: 100%;
}

a {
	text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
	margin-top: 0rem;
	font-weight: 500;
	line-height: 1.3;
	-webkit-transition: color 0.3s ease-out;
	-moz-transition: color 0.3s ease-out;
	-ms-transition: color 0.3s ease-out;
	-o-transition: color 0.3s ease-out;
	transition: color 0.3s ease-out;
	color: var(--atf-thm-black);

}

h1 {
	font-size: 2.5rem;
}

h2 {
	font-size: 2.25rem;
}

h3 {
	font-size: 1.75rem;
}

@media only screen and (max-width:767px) {
	h3 {
		font-size: 1.25rem !important;
	}
}

h4 {
	font-size: 1.25rem;
}

h5 {
	font-size: 1.125rem;
}

h6 {
	font-size: 1rem;
}

ul {
	margin: 0rem;
	padding: 0rem;
}

dl,
ol,
ul {
	padding: 0;
	margin: 0;
}

a:not([href]):not([class]),
a:not([href]):not([class]):hover {
	color: inherit;
	text-decoration: none;
}

a:focus,
.button:focus {
	text-decoration: none;
	outline: none;
}

a:focus,
a:hover {
	color: inherit;
	text-decoration: none;
}

a,
button {
	color: inherit;
	outline: none;
	border: none;
	background: transparent;
}

button:hover {
	cursor: pointer;
}

button:focus {
	outline: 0;
}

.uppercase {
	text-transform: uppercase;
}

.capitalize {
	text-transform: capitalize;
}

input[type="text"],
input[type="email"],
input[type="tel"],
input[type="number"],
input[type="password"],
input[type="url"],
textarea {
	outline: none;
	height: 3.5rem;
	width: 100%;
	line-height: 3.5rem;
	font-size: 1rem;
	padding-left: 1.5625rem;
	padding-right: 1.5625rem;
	color: var(--atf-thm-black);
	border: 0.0625rem solid rgba(255, 255, 255, 0.1);
	background-color: var(--atf-thm-white);
	border-radius: 0.9375rem;
}

input[type="text"]::-webkit-input-placeholder,
input[type="email"]::-webkit-input-placeholder,
input[type="tel"]::-webkit-input-placeholder,
input[type="number"]::-webkit-input-placeholder,
input[type="password"]::-webkit-input-placeholder,
input[type="url"]::-webkit-input-placeholder,
textarea::-webkit-input-placeholder {
	/* Chrome/Opera/Safari */
	color: var(--atf-text-body);
	font-size: 1rem;
}

input[type="text"]::-moz-placeholder,
input[type="email"]::-moz-placeholder,
input[type="tel"]::-moz-placeholder,
input[type="number"]::-moz-placeholder,
input[type="password"]::-moz-placeholder,
input[type="url"]::-moz-placeholder,
textarea::-moz-placeholder {
	/* Firefox 19+ */
	color: var(--atf-text-body);
	font-size: 1rem;
}

input[type="text"]:-moz-placeholder,
input[type="email"]:-moz-placeholder,
input[type="tel"]:-moz-placeholder,
input[type="number"]:-moz-placeholder,
input[type="password"]:-moz-placeholder,
input[type="url"]:-moz-placeholder,
textarea:-moz-placeholder {
	/* Firefox 4-18 */
	color: var(--atf-text-body);
	font-size: 1rem;
}

input[type="text"]:-ms-input-placeholder,
input[type="email"]:-ms-input-placeholder,
input[type="tel"]:-ms-input-placeholder,
input[type="number"]:-ms-input-placeholder,
input[type="password"]:-ms-input-placeholder,
input[type="url"]:-ms-input-placeholder,
textarea:-ms-input-placeholder {
	/* IE 10+  Edge*/
	color: var(--atf-text-body);
	font-size: 1rem;
}

input[type="text"]::placeholder,
input[type="email"]::placeholder,
input[type="tel"]::placeholder,
input[type="number"]::placeholder,
input[type="password"]::placeholder,
input[type="url"]::placeholder,
textarea::placeholder {
	/* MODERN BROWSER */
	color: var(--atf-text-body);
	font-size: 1rem;
}

input[type="text"]:focus,
input[type="email"]:focus,
input[type="tel"]:focus,
input[type="number"]:focus,
input[type="password"]:focus,
input[type="url"]:focus,
textarea:focus {
	border: 0.0625rem solid var(--atf-thm-white);
	font-size: 1rem;
}

input[type="text"]:focus::placeholder,
input[type="email"]:focus::placeholder,
input[type="tel"]:focus::placeholder,
input[type="number"]:focus::placeholder,
input[type="password"]:focus::placeholder,
input[type="url"]:focus::placeholder,
textarea:focus::placeholder {
	opacity: 0;
}

textarea {
	line-height: 1.4;
	padding-top: 1.0625rem;
	padding-bottom: 1.0625rem;
}

input[type="color"] {
	appearance: none;
	-moz-appearance: none;
	-webkit-appearance: none;
	background: none;
	border: 0;
	cursor: pointer;
	height: 100%;
	width: 100%;
	padding: 0;
	border-radius: 50%;
}

*::-moz-selection {
	background: var(--atf-thm-color);
	color: var(--atf-thm-white);
	text-shadow: none;
}

::-moz-selection {
	background: var(--atf-thm-color);
	color: var(--atf-thm-white);
	text-shadow: none;
}

::selection {
	background: var(--atf-thm-color);
	color: var(--atf-thm-white);
	text-shadow: none;
}

*::-moz-placeholder {
	color: var(--atf-thm-color);
	font-size: 0.875rem;
	opacity: 1;
}

*::placeholder {
	color: var(--atf-thm-color);
	font-size: 0.875rem;
	opacity: 1;
}

.z-index-1 {
	position: relative;
	z-index: 2;
}

.atf-title-hover {
	background-size: 0% 0.0625rem, 0 0.0625rem;
	background-repeat: no-repeat;
	transition: background-size 0.4s linear;
	background-position: 100% 100%, 0 93%;
	background-image: linear-gradient(#fe8e44, #fe8e44), linear-gradient(#fe8e44, #fe8e44);
}

.atf-title-hover:hover {
	background-size: 0 0.0625rem, 100% 0.0625rem;
}

.gradient-bg {
	background: linear-gradient(135deg, #ff5a00, #0F172A);
	background-size: 200% 200%;
	animation: gradientMove 6s ease infinite;
}

@keyframes gradientMove {
	0% {
		background-position: 0% 50%;
	}

	50% {
		background-position: 100% 50%;
	}

	100% {
		background-position: 0% 50%;
	}
}

/*---------------------------------
   COMMON CLASSES
---------------------------------*/
.fix {
	overflow: hidden;
}

.clear {
	clear: both;
}

.p-relative {
	position: relative;
}

.p-absolute {
	position: absolute;
}

.atf_attach_bg_1 {
	background-position: center;
	background-size: cover;
	background-repeat: no-repeat;
}

.bg_fixed {
	background-attachment: fixed;
	background-position: center;
	background-size: cover;
	background-repeat: no-repeat;
}

/* Custom Cursor */
.cursor_body {
	position: fixed;
	top: 0;
	left: 0;
	pointer-events: none;
	z-index: 9999;
}

.cursor_body .cursor-in,
.cursor_body .cursor-out {
	position: absolute;
	top: 0;
	left: 0;
	transform: translate(-50%, -50%);
	border-radius: 50%;
	pointer-events: none;
}

/* Inner dot */
.cursor_body .cursor-in {
	width: 0.625rem;
	height: 0.625rem;
	background-color: var(--atf-thm-color);
	transition: all 0.25s ease-out;
}

/* Outer ring */
.cursor_body .cursor-out {
	width: 2.5rem;
	height: 2.5rem;
	border: 0.0625rem solid var(--atf-thm-color);
	opacity: 0.5;
	transition: all 0.2s ease;
}

.page-wrapper {
	position: relative;
	margin: 0 auto;
	width: 100%;
	min-width: 16.875rem;
	overflow: hidden;
}

.black-bg {
	background-color: var(--atf-thm-black);
}

.color-bg {
	background-color: var(--atf-thm-color);
}

.grey-bg-1 {
	background-color: #f9f9f9;
}

.grey-bg-2 {
	background-color: #f5f5f5;
}

.grey-bg-3 {
	background-color: #f6f9ff;
}

.grey-bg-4 {
	background-color: var(--atf-grey-4);
}

.grey-bg-7 {
	background-color: var(--atf-grey-7);
}

.grey-bg-8 {
	background-color: var(--atf-grey-8);
}

.bg-half-left {
	position: absolute;
	height: 100% !important;
	width: 50%;
	right: 0;
	top: 0;
	object-fit: cover;
	overflow: hidden;
	border-radius: 0;
}

@media only screen and (max-width: 991px) {
	.bg-half-left {
		display: none;
	}
}

/*---------------------------------
 STAR PRELOADER
---------------------------------*/
.preloader {
	position: fixed;
	top: 0;
	left: 0;
	height: 100vh;
	width: 100%;
	display: flex;
	justify-content: center;
	align-items: center;
	background: transparent;
	overflow: hidden;
	z-index: 99999;
}

.preloader svg {
	position: absolute;
	bottom: 0;
	height: 110vh;
	width: 100vw;
	fill: var(--atf-thm-black);
}

.preloader .loader-inner .loaded {
	font-size: 1.5rem;
	font-weight: 500;
	color: var(--atf-thm-white);
	text-transform: uppercase;
	letter-spacing: 0.5rem;
	z-index: 99;
}

.preloader .loader-inner .loaded span {
	animation: loader-slide 1s infinite alternate;
}

.preloader .loader-inner .loaded span:nth-child(1) {
	animation-delay: 0s;
}

.preloader .loader-inner .loaded span:nth-child(2) {
	animation-delay: 0.1s;
}

.preloader .loader-inner .loaded span:nth-child(3) {
	animation-delay: 0.2s;
}

.preloader .loader-inner .loaded span:nth-child(4) {
	animation-delay: 0.3s;
}

.preloader .loader-inner .loaded span:nth-child(5) {
	animation-delay: 0.4s;
}

.preloader .loader-inner .loaded span:nth-child(6) {
	animation-delay: 0.5s;
}

.preloader .loader-inner .loaded span:nth-child(7) {
	animation-delay: 0.6s;
}

@keyframes loader-slide {
	0% {
		opacity: 1;
	}

	100% {
		opacity: 0;
	}
}

/*---------------------------------
 END PRELOADER
---------------------------------*/
/*---------------------------------
 START BTN
---------------------------------*/
.atf-themes-btn {
	border-radius: 0;
	text-transform: uppercase;
	position: relative;
	overflow: hidden;
	z-index: 1;
	transition: all 0.6s ease 0s;
	color: var(--atf-thm-color);
	border: 0.0625rem solid var(--atf-thm-color);
	display: inline-block;
	padding: 0.9375rem 2.5rem;
}

.atf-themes-btn:before {
	content: "";
	position: absolute;
	bottom: 0;
	left: 0;
	border-width: 0;
	border-style: solid;
	z-index: -1;
	transition: all 0.6s ease 0s;
	border-color: rgba(0, 0, 0, 0) rgba(0, 0, 0, 0) rgba(0, 0, 0, 0) var(--atf-thm-color);
}

.atf-themes-btn:after {
	content: "";
	position: absolute;
	bottom: 0;
	right: 0;
	border-width: 0;
	border-style: solid;
	z-index: -1;
	transition: all 0.6s ease 0s;
	border-color: rgba(0, 0, 0, 0) rgba(0, 0, 0, 0) var(--atf-thm-color);
}

.atf-themes-btn:hover:before {
	border-width: 12.8125rem 0 0 12.8125rem;
}

.atf-themes-btn:hover::after {
	border-width: 0 0 12.8125rem 12.8125rem;
}

.atf-themes-btn:hover {
	color: var(--atf-thm-white);
}

@media only screen and (max-width: 767px) {
	.atf-themes-btn {
		margin-bottom: 0.9375rem;
	}
}

.atf-themes-btn .icon {
	display: inline-block;
}

.atf-themes-btn:hover .icon {
	animation: bounce-up 0.3s ease-in-out 1;
}

/*---------------------------------
 END BTN
---------------------------------*/
/*---------------------------------
 STAR SECTION TITLE
---------------------------------*/
.atf-section-title .title {

	color: var(--atf-thm-black);
	font-weight: 500;
	font-size: 3.125rem;
	line-height: 1.2;
	letter-spacing: -0.0625rem;
}

@media only screen and (min-width: 992px) and (max-width: 1199px),
only screen and (min-width: 768px) and (max-width: 991px),
only screen and (min-width: 576px) and (max-width: 767px) {
	.atf-section-title .title {
		font-size: 2.25rem;
		letter-spacing: 0rem;
	}
}

.atf-section-title .sub-title {
	color: var(--atf-thm-color);
	display: inline-block;
	border-radius: 0.3125rem;
	font-size: 0.875rem;
	font-weight: 500;
	position: relative;
	margin-bottom: 0.625rem;
	text-transform: uppercase;
	letter-spacing: 0.0625rem;
	background: #f9f4f4;
	padding: 0.1875rem 0.9375rem;
}

.atf-section-padding {
	padding-top: 7.5rem;
	padding-bottom: 6rem;
}

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

	.pt-120.pb-95,
	.atf-section-padding {
		padding-top: 5rem;
		padding-bottom: 5rem;
	}
}

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

	.pt-120.pb-95,
	.atf-section-padding {
		padding-top: 3.75rem;
		padding-bottom: 3.75rem;
	}
}

/*---------------------------------
 END SECTION TITLE
---------------------------------*/
/*---------------------------------
 START SCROLL TO TOP
---------------------------------*/
#back_to_top {
	position: fixed;
	right: 2%;
	top: 100%;
	width: 1.75rem;
	height: 3.75rem;
	line-height: 3.75rem;
	font-size: 1rem;
	border: 0.125rem solid var(--atf-thm-black);
	color: var(--atf-thm-black);
	text-align: center;
	background-color: var(--atf-thm-white);
	border-radius: 6.25rem;
	z-index: 999;
	-webkit-transition: 0.5s;
	-o-transition: 0.5s;
	transition: 0.5s;
}

#back_to_top:hover {
	background-color: var(--atf-thm-color);
	color: var(--atf-thm-white);
	border: 0.125rem solid var(--atf-thm-color);
}

#back_to_top.active {
	top: calc(100% - 6.875rem)
}

#back_to_top i {
	-webkit-animation: mymove 1s ease-in 0s infinite alternate;
	animation: mymove 1s ease-in 0s infinite alternate;
	display: inline-block;
	position: relative;
}

@-webkit-keyframes mymove {
	from {
		top: -0.3125rem;
	}

	to {
		top: 0.3125rem;
	}
}

@keyframes mymove {
	from {
		top: -0.3125rem;
	}

	to {
		top: 0.3125rem;
	}
}

/*---------------------------------
 END SCROLL TO TOP
---------------------------------*/
/*----------------------------------------*/
/*  01. END GENERAL STYLE
/*----------------------------------------*/
/*----------------------------------------*/
/*  02. START BOOTSTRAP NAVIGATION OVERRIDES
/*----------------------------------------*/
/* header top */
.atf-top-header {
	position: relative;
	z-index: 1;
	padding: 0.75rem 0;
	display: flex;
	justify-content: center;
	align-items: center;
	transition: all 0.4s ease;
	overflow: hidden;
}

.atf-header-top-social {
	font-size: 1rem;
	display: flex;
	flex-wrap: wrap;
	justify-content: flex-start;
	align-items: center;
	gap: 0.625rem;
	transition: all 0.4s ease;
	color: var(--atf-thm-white);
	text-align: center;
}

.atf-header-top-social ul {
	position: relative;
	display: flex;
	align-items: center;
	gap: 0.625rem;
}

.atf-header-top-social ul li {
	list-style: none;
}

.atf-header-top-social ul li a {
	color: rgba(255, 255, 255, 0.8);
	font-size: 0.875rem;
	background: rgba(249, 145, 83, 0.5);
	padding: 0.4375rem;
	border-radius: 50%;
	transition: all 0.5s ease-out;
}

.atf-header-top-social ul li a:hover {
	color: var(--atf-thm-white);
	background: var(--atf-thm-color);
}

.atf-top-header .atf-top-header-in {
	display: flex;
	flex-wrap: wrap;
	justify-content: flex-start;
	align-items: center;
	transition: all 0.4s ease;
}

.atf-top-header-list {
	list-style: none;
	padding: 0;
	margin: 0;
	display: flex;
	flex-wrap: wrap;
}

.atf-top-header-list li {
	margin-right: 1.875rem;
	color: rgba(255, 255, 255, 0.9);
	font-size: 1rem;
}

.atf-top-header-list li a {
	color: rgba(255, 255, 255, 0.8);
	transition: all 0.3s ease-out;
	-webkit-transition: all 0.3s ease-out;
	position: relative;
}

.atf-top-header-list li a::after {
	position: absolute;
	width: 0;
	height: 0.0625rem;
	bottom: 0;
	left: 0;
	content: "";
	opacity: 0;
	visibility: hidden;
	background: #9fa8ae;
	-webkit-transition: all 0.3s ease-out;
	-moz-transition: all 0.3s ease-out;
	-ms-transition: all 0.3s ease-out;
	-o-transition: all 0.3s ease-out;
	transition: all 0.3s ease-out;
}

.atf-top-header-list li a:hover {
	color: #9fa8ae;
}

.atf-top-header-list li a:hover::after {
	width: 100%;
	opacity: 1;
	visibility: visible;
}

.atf-top-header-list li:last-child {
	margin-right: 0;
}

.atf-top-header-list li i {
	margin-right: 0.625rem;
	color: var(--atf-thm-color);
}

.atf_bg_skew {
	position: relative;
	transition: all 0.4s ease-out;
	z-index: 7;
	background: var(--atf-thm-black) none repeat scroll 0 0;
}

.atf_bg_skew::after {
	background: var(--atf-thm-white) none repeat scroll 0 0;
	content: "";
	position: absolute;
	z-index: -1;
	width: 100%;
	height: 100%;
	top: 0;
	left: calc(28% + 0rem);
	border-left: 0.25rem solid var(--atf-thm-color);
	transform: skewX(-30deg);
}

.atf-site-header.atf-style1.atf-sticky-active.atf_bg_skew {
	background-color: var(--atf-thm-black);
}

@media only screen and (max-width:991px) {
	.atf_bg_skew::after {
		left: calc(40% + 1.5625rem);
	}

}

@media only screen and (max-width:767px) {
	.atf_bg_skew::after {
		left: calc(50% + 1.5625rem);
	}

}

/*----------------------------------------*/
/*  Start Search Design
/*----------------------------------------*/
.atf-searching-area {
	position: fixed;
	top: 0%;
	left: 50%;
	-webkit-transform: translate(-50%, -50%);
	-ms-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
	height: 100%;
	width: 100%;
	background-color: var(--atf-thm-white);
	display: flex;
	align-items: center;
	justify-content: center;
	opacity: 0;
	visibility: hidden;
	-webkit-transition: all 0.5s;
	-o-transition: all 0.5s;
	transition: all 0.5s;
	z-index: 1024;

}

.atf-searching-area.active {
	opacity: 1;
	visibility: visible;
	top: 50%;
}

.atf-searching-area .atf-searching-close-btn {
	position: absolute;
	top: 1.875rem;
	right: 3.125rem;
	-webkit-transform: translateX(-50%);
	-ms-transform: translateX(-50%);
	transform: translateX(-50%);
	width: 2.5rem;
	height: 2.5rem;
	border: 0.0625rem solid var(--atf-thm-color);
	background-color: var(--atf-thm-white);
	color: var(--atf-thm-color);
	border-radius: 50%;
	-webkit-border-radius: 50%;
	-moz-border-radius: 50%;
	-ms-border-radius: 50%;
	-o-border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	-webkit-transition: all 0.5s;
	-o-transition: all 0.5s;
	transition: all 0.5s;
}

.atf-searching-area .atf-searching-form button:hover,
.atf-searching-area .atf-searching-close-btn:hover {
	background-color: var(--atf-thm-color);
	color: var(--atf-thm-white);
}

@media (max-width: 575px) {
	.atf-searching-area .atf-searching-close-btn {
		right: 1.875rem;
	}
}

.atf-searching-area .atf-searching-form {
	display: flex;
	width: 31.25rem;
}

@media (max-width: 575px) {
	.atf-searching-area .atf-searching-form {
		width: 18.75rem;
	}
}

.atf-searching-area .atf-searching-form input {
	border: 0.0625rem solid var(--atf-border-1);
	border-right: none;
	flex-grow: 1;
	-webkit-transition: all 0.5s;
	-o-transition: all 0.5s;
	transition: all 0.5s;
	padding: 0.75rem 1.125rem;
	color: var(--atf-thm-black);
}

.atf-searching-area .atf-searching-form input:focus {
	border-color: var(--atf-thm-color);
}

.atf-searching-area .atf-searching-form button {
	width: 3.75rem;
	background-color: var(--atf-thm-color);
	color: var(--atf-thm-white);
	display: flex;
	justify-content: center;
	align-items: center;
	border-color: var(--atf-thm-white);
}

.atf-header-bottom-right {
	gap: 1.5625rem;
}

.atf-searching-btn {
	background: transparent;
	font-size: 1.125rem;
	color: var(--atf-thm-color);
	border: none;
}

/* header */
.atf-site-branding img {
	max-width: 9.375rem;
	height: auto;
}

.atf-site-branding {
	font-size: 2rem;
}

.atf-site-header.atf-style1 {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	justify-content: space-between;
	transition: all 0.4s ease-out;
}

.atf-site-header.atf-style1.atf-sticky-active {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	opacity: 1;
	z-index: 990;
	visibility: visible;
	color: var(--atf-thm-black);
	background-color: var(--atf-thm-white);
	-webkit-backdrop-filter: blur(1rem);
	backdrop-filter: blur(1rem);
	box-shadow: 0rem 0.5rem 1.5rem rgba(149, 157, 165, 0.2);
	-webkit-animation: 0.95s ease 0s normal forwards 1 running fadeInDown;
	;
	-khtml-animation: 0.95s ease 0s normal forwards 1 running fadeInDown;
	-moz-animation: 0.95s ease 0s normal forwards 1 running fadeInDown;
	-ms-animation: 0.95s ease 0s normal forwards 1 running fadeInDown;
	-o-animation: 0.95s ease 0s normal forwards 1 running fadeInDown;
	animation: 0.95s ease 0s normal forwards 1 running fadeInDown;
}

.atf-main-menu nav ul {
	display: flex;
	justify-content: space-between;
	align-items: center;
	transition: all 0.3s ease-out;
}

.atf-main-menu>nav>ul>li>a:active,
.atf-main-menu>nav>ul>li>a:focus,
.atf-main-menu>nav>ul>li>a:hover {
	color: var(--atf-thm-color);
}

.atf-main-menu>nav>ul>li {
	position: relative;
	display: inline-block;
	margin-right: 3.5rem;
}

.atf-main-menu>nav>ul>li.menu-icon>a::before {
	content: "\f067";
	font-size: 0.625rem;
	position: absolute;
	top: 50%;
	right: -0.75rem;
	-webkit-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	transform: translateY(-50%);

	font-weight: 900;
	-webkit-transition: all 0.3s ease-out;
	-moz-transition: all 0.3s ease-out;
	-ms-transition: all 0.3s ease-out;
	-o-transition: all 0.3s ease-out;
	transition: all 0.3s ease-out;
}

.atf-main-menu>nav>ul>li.menu-icon>a:hover::before {
	content: "\f068";
	opacity: 1;
}

@media only screen and (max-width: 1199px) {
	.atf-main-menu>nav>ul>li.menu-icon>a::before {
		display: none;
	}
}

.atf-main-menu>nav>ul>li:last-child {
	margin-right: 0rem !important;
}

.atf-main-menu>nav>ul>li>a {
	position: relative;
	font-size: 1.1em;
	font-weight: 700;
	padding: 2.3125rem 0;
	display: block;
	color: var(--atf-thm-black);
	text-transform: capitalize;
	-webkit-transition: all 0.3s ease-out;
	-moz-transition: all 0.3s ease-out;
	-ms-transition: all 0.3s ease-out;
	-o-transition: all 0.3s ease-out;
	transition: all 0.3s ease-out;
	text-transform: capitalize;
}

/*-------------------------------
# dropdwon menu 
--------------------------------*/
.atf-main-menu>nav>ul>li .sub-menu li .sub-menu,
.atf-main-menu>nav>ul>li .sub-menu {
	position: absolute;
	top: 100%;
	left: 0;
	padding: 0.625rem 0;
	display: block;
	min-width: 13.75rem;
	visibility: hidden;
	transform: scaleY(0);
	transform-origin: top center;
	background: var(--atf-thm-white);
	border-top: 0.3125rem solid var(--atf-thm-color);
	box-shadow: 0rem 0.625rem 1.875rem 0rem rgba(25, 25, 26, 0.1);
	z-index: 6;
	transition: all 0.3s ease-out;
}

.atf-main-menu>nav>ul>li .sub-menu li:hover>.sub-menu,
.atf-main-menu>nav>ul>li:hover>.sub-menu {
	transform: scaleY(1);
	visibility: visible;
}

.atf-main-menu>nav>ul>li .sub-menu li {
	position: relative;
	display: block;
}

.atf-main-menu>nav>ul>li .sub-menu li>a {
	font-weight: 500;
	padding: 0.1875rem 1.25rem;
	display: block;
	transition: all 0.5s ease;
	text-transform: capitalize;
	text-align: left;
	position: relative;
	font-size: 1.0625rem;
	-webkit-transition: all 0.3s ease-out;
	-moz-transition: all 0.3s ease-out;
	-ms-transition: all 0.3s ease-out;
	-o-transition: all 0.3s ease-out;
	transition: all 0.3s ease-out;
}

.atf-main-menu>nav>ul>li .sub-menu li:hover>a {
	padding-left: 2.5rem;
	color: var(--atf-thm-black);
}

.atf-main-menu>nav>ul>li .sub-menu li>a::before {
	position: absolute;
	width: 0.625rem;
	height: 0.625rem;
	top: 50%;
	left: 1.25rem;
	content: "";
	opacity: 0;
	visibility: hidden;
	transform: translateY(-50%);
	background: var(--atf-thm-color);
	-webkit-transition: all 0.3s ease-out;
	-moz-transition: all 0.3s ease-out;
	-ms-transition: all 0.3s ease-out;
	-o-transition: all 0.3s ease-out;
	transition: all 0.3s ease-out;
	border-radius: 50%;
}

.atf-main-menu>nav>ul>li .sub-menu li:hover>a::before {
	opacity: 1;
	visibility: visible;
}

.atf-main-menu>nav>ul>li .arrow {
	border: 0.0625rem solid var(--atf-thm-black);
	border-width: 0 0.125rem 0.125rem 0;
	display: inline-block;
	padding: 0.1875rem;
	-webkit-transition: all 0.3s ease-out;
	-moz-transition: all 0.3s ease-out;
	-ms-transition: all 0.3s ease-out;
	-o-transition: all 0.3s ease-out;
	transition: all 0.3s ease-out;
	margin: 0 0 0.0625rem 0.125rem;
}

.atf-main-menu>nav>ul>li .down {
	transform: rotate(45deg);
	-webkit-transform: rotate(45deg);
}

.atf-main-menu>nav>ul>li:hover .arrow.down {
	transform: rotate(230deg);
	border: 0.0625rem solid var(--atf-thm-black);
	border-width: 0 0.125rem 0.125rem 0;
}

.atf-main-menu>nav>ul>li .sub-menu li .sub-menu {
	right: auto;
	left: 13.75rem;
	top: 10%;
	border-top: none;
	border-left: 0.3125rem solid var(--atf-thm-color);
}

@media only screen and (max-width: 1199px) {
	.atf-main-menu>nav>ul>li {
		margin-right: 1.875rem;
	}

	.atf-site-header.atf-style1 {
		padding: 0.9375rem 0;
	}
}

/*----------------------------------------*/
/*  Mobile Menu
/*----------------------------------------*/
.atf-main-menu-bars button {
	font-size: 1.125rem;
	padding: 0.625rem 0.9375rem;
	border-radius: 0.3125rem;
	color: var(--atf-thm-white);
	background-color: var(--atf-thm-color);
	transition: 0.3s;
}

.atf-hamburger {
	position: fixed;
	background: var(--atf-thm-white);
	width: 31.25rem;
	right: 0;
	top: 0;
	padding: 3.125rem 2.5rem;
	height: 100%;
	opacity: 0;
	visibility: hidden;
	-webkit-transform: translateX(100%);
	-moz-transform: translateX(100%);
	-ms-transform: translateX(100%);
	-o-transform: translateX(100%);
	transform: translateX(100%);
	-webkit-transition: 0.3s 0.3s ease-out;
	-moz-transition: 0.3s 0.3s ease-out;
	-ms-transition: 0.3s 0.3s ease-out;
	-o-transition: 0.3s 0.3s ease-out;
	transition: 0.3s 0.3s ease-out;
	overflow-y: scroll;
	overscroll-behavior-y: contain;
	scrollbar-width: none;
	z-index: 1088;
}

@media only screen and (max-width: 574px) {
	.atf-hamburger {
		width: 100% ! important;
		padding: 2.1875rem 1.875rem;
	}
}

@media only screen and (max-width: 400px) {
	.atf-hamburger {
		width: 100% ! important;
		padding: 2.1875rem 1.875rem;
	}
}

.atf-hamburger-open {
	opacity: 1;
	visibility: visible;
	-webkit-transform: translateX(0);
	-moz-transform: translateX(0);
	-ms-transform: translateX(0);
	-o-transform: translateX(0);
	transform: translateX(0);
}

.atf-hamburger-close-toggle {
	font-size: 1.875rem;
	color: var(--atf-text-body);
}

.atf-hamburger-close-toggle:hover {
	color: var(--atf-thm-color);
}

@media only screen and (min-width: 992px) and (max-width: 1199px),
only screen and (min-width: 768px) and (max-width: 991px),
(max-width: 575px) {
	.atf-hamburger-header {
		margin-bottom: 2.5rem;
		border-bottom: 0.0625rem solid var(--atf-border-1);
		padding-bottom: 1.875rem;
	}
}

.atf-hamburger-title {
	font-size: 2.1875rem;
}

.atf-hamburger-info span {
	font-size: 1rem;
	display: block;
	margin-bottom: 0.3125rem;
	color: var(--atf-thm-black);
}

.atf-hamburger-sm-title {
	font-size: 1.5625rem;
	margin-bottom: 0.9375rem;
}

.atf-hamburger-social a {
	font-size: 0.875rem;
	width: 2.5rem;
	height: 2.5rem;
	line-height: 2.5rem;
	text-align: center;
	border-radius: 0.5rem;
	display: inline-block;
	color: var(--atf-thm-black);
	border: 0.0625rem solid rgba(2, 11, 24, 0.1);
	margin-right: 0.3125rem;
	transition: all 0.3s ease-out;
}

.atf-hamburger-social a:hover {
	color: var(--atf-thm-white);
	background: var(--atf-thm-color);
}

.atf-hamburger-overlay {
	position: fixed;
	top: 0;
	left: 0;
	z-index: 888;
	width: 100%;
	height: 100%;
	visibility: hidden;
	opacity: 0;
	transition: 0.45s ease-in-out;
	background: rgba(24, 24, 24, 0.4);
}

.atf-hamburger-overlay-open {
	opacity: 0.7;
	visibility: visible;
}

/*----------------------------------------*/
/* Mobile menu css
/*----------------------------------------*/
.atf-hamburger-menu ul {
	list-style: none;
}

.atf-hamburger-menu ul li {
	position: relative;
}

.atf-hamburger-menu ul li>a {
	padding: 0.5rem 0;
	display: block;
	font-size: 1rem;
	font-weight: 500;
	-webkit-transition: all 0.3s ease-out;
	-moz-transition: all 0.3s ease-out;
	-ms-transition: all 0.3s ease-out;
	-o-transition: all 0.3s ease-out;
	transition: all 0.3s ease-out;
}

.atf-hamburger-menu ul li>a:hover {
	color: var(--atf-thm-black);
}

.atf-hamburger-menu ul li:not(:last-child)>a {
	border-bottom: 0.0625rem solid rgba(1, 15, 28, 0.1);
}

.atf-hamburger-menu ul li.active>a {
	color: var(--atf-thm-black);
}

.atf-hamburger-menu ul li.active>.atf-menu-close {
	color: var(--atf-thm-black);
	border-color: var(--atf-thm-black);
}

.atf-hamburger-menu ul li.active>.atf-menu-close i {
	-webkit-transform: rotate(90deg);
	-moz-transform: rotate(90deg);
	-ms-transform: rotate(90deg);
	-o-transform: rotate(90deg);
	transform: rotate(90deg);
}

.atf-hamburger-menu ul li .sub-menu {
	display: none;
	padding-left: 0.625rem;
}

.atf-hamburger-menu ul li .sub-menu.atf-mega-menu {
	padding-left: 0;
}

.atf-menu-close {
	position: absolute;
	right: 0;
	top: 0.46875rem;
	border: 0.0625rem solid rgba(1, 15, 28, 0.0);
	height: 1.875rem;
	width: 1.875rem;
	text-align: center;
	font-size: 0.75rem;
	line-height: 1.8125rem;
	-webkit-transition: 0.3s 0.3s ease-out;
	-moz-transition: 0.3s 0.3s ease-out;
	-ms-transition: 0.3s 0.3s ease-out;
	-o-transition: 0.3s 0.3s ease-out;
	transition: 0.3s 0.3s ease-out;
}

.atf-menu-close:hover {
	border: 0.0625rem solid var(--atf-thm-black);
}

.atf-menu-close i {
	-webkit-transition: 0.3s 0.3s ease-out;
	-moz-transition: 0.3s 0.3s ease-out;
	-ms-transition: 0.3s 0.3s ease-out;
	-o-transition: 0.3s 0.3s ease-out;
	transition: 0.3s 0.3s ease-out;
}

.call-to-action-icon {
	width: 3.125rem;
	height: 3.125rem;
	background: var(--atf-thm-color);
	text-align: center;
	line-height: 3.125rem;
	margin-right: 0.9375rem;
	font-size: 1.125rem;
	color: var(--atf-thm-white);
	clip-path: polygon(50% 0%, 100% 38%, 82% 100%, 18% 100%, 0% 38%);
	border-radius: 50%;
}

.call-to-action-phone {
	font-size: 0.9375rem;
	font-weight: 400;
}

.call-to-action-text h6 {
	font-weight: 500;
	font-size: 1rem;
}

/*----------------------------------------*/
/*  End Mobile menu Design
/*----------------------------------------*/
/*----------------------------------------*/
/*  02. END BOOTSTRAP NAVIGATION OVERRIDES
/*----------------------------------------*/
/*----------------------------------------*/
/*  03. START HOME DESIGN
/*----------------------------------------*/
#home {
	position: relative;
	z-index: 2;
}

/* Top angled bar */
.top-angled {
	background: var(--atf-thm-color);
	color: var(--atf-thm-white);
	position: relative;
	flex-wrap: wrap;
	gap: 1.5625rem;
	border-radius: 3.125rem;
}

.adderess-info .icon {
	width: 3rem;
	height: 3rem;
	line-height: 3rem;
	align-items: center;
	display: flex;
	justify-content: center;
	color: var(--atf-thm-color);
	clip-path: polygon(50% 0%, 100% 38%, 82% 100%, 18% 100%, 0% 38%);
	background: var(--atf-thm-white);
	border-radius: 50%;
}

.adderess-info span {
	font-size: 1rem;
}

/* Hero section */
.atf-hero-area {
	position: relative;
	padding: 5rem 0 7.5rem;
	overflow: hidden;
}

/* background dotted texture */
.atf-hero-area::before {
	content: "";
	position: absolute;
	inset: 0;
	background-image: radial-gradient(#fba8a8 0.0625rem, transparent 0.0625rem);
	background-size: 1rem 1rem;
	opacity: 0.45;
	pointer-events: none;
	z-index: 0;
}

.hero-content .sub-title {
	color: var(--atf-thm-color);
	display: inline-block;
	border-radius: 0.3125rem;
	font-size: 0.875rem;
	font-weight: 500;
	position: relative;
	margin-bottom: 0.625rem;
	text-transform: uppercase;
	letter-spacing: 0.0625rem;
	margin-left: 0.3125rem;
	background: #f9f4f4;
	padding: 0.1875rem 0.9375rem;
}

/* Title */
.hero-title {
	font-size: 3.75rem;
	line-height: 1.05;
	font-weight: 500;
	margin: 0 0 1.875rem;
	letter-spacing: -0.0625rem;
}

.title_highlight .highlight {
	position: relative;
}

.title_highlight .highlight::before {
	content: "";
	position: absolute;
	left: 0;
	bottom: -0.125rem;
	width: 100%;
	height: 0.5rem;
	transform: rotate(0deg);
	background: linear-gradient(90deg, rgba(255, 92, 4, 0.98), transparent);
	border-radius: 1.25rem;
}

.hero-describtion {
	color: var(--text-body);
	max-width: 32.5rem;
	font-size: 1rem;
}

/* avatars */
.avatars img {
	width: 3.4375rem;
	height: 3.4375rem;
	border-radius: 50%;
	border: 0.1875rem solid var(--atf-thm-white);
	margin-left: -0.75rem;
	box-shadow: 0 0.375rem 1.125rem rgba(0, 0, 0, 0.28);
}

.customer-text .title {
	font-weight: 500;
	color: var(--atf-thm-black);
	margin-bottom: 0.625rem;
	display: inline-block;
}

.trust {
	color: var(--atf-thm-black);
	font-size: 0.875rem;
}

.stars {
	color: var(--atf-thm-white);
	font-weight: 500;
	background: var(--atf-thm-color);
	margin-right: 0.3125rem;
	font-size: 0.875rem;
	width: 1.875rem;
	height: 1.875rem;
	line-height: 1.875rem;
	text-align: center;
	border-radius: 0.3125rem;
}

/* Image frame (tilted & bordered) */
.hero-frame {
	display: inline-block;
	border-radius: 0.9375rem;
	padding: 0.625rem;
	border: 0.25rem solid var(--atf-thm-color);
	background: var(--atf-thm-white);
	box-shadow: 0 1.125rem 2.5rem rgba(17, 17, 17, 0.08);
}

.hero-frame img {
	display: block;
	width: 26.25rem;
	height: 26.25rem;
	object-fit: cover;
	border-radius: 0.5rem;
}

/* Decorative diagonal stripes (behind image) */
.hero-frame::after {
	content: "";
	position: absolute;
	right: -15%;
	top: 20%;
	width: 7.5rem;
	height: 7.5rem;
	transform: rotate(50deg);
	background: linear-gradient(90deg, rgba(255, 92, 4, 0.98), transparent);
	border-radius: 50%;
	z-index: -1;
	animation: 8s infinite moving;
}

.hero-frame::before {
	content: "";
	position: absolute;
	left: -15%;
	bottom: 20%;
	width: 7.5rem;
	height: 7.5rem;
	transform: rotate(50deg);
	background: linear-gradient(90deg, rgba(255, 92, 4, 0.98), transparent);
	animation: zoom 9s infinite;
	border-radius: 50%;
}

.atf-main-btn.mt-35 {
	display: flex;
	align-items: center;
	gap: 2.1875rem;
}

/* city overlay bottom-left */
.shape-1 {
	position: absolute;
	left: 14%;
	bottom: 0;
	width: 14%;
	background-size: cover;
	background-position: center;
	opacity: 0.48;
	z-index: 1;
	transform: translate(-50%);
	object-fit: cover;
	animation: atf-arrow 15s linear infinite;
}

/* --- FOLLOW US Text Styling --- */
.follow-us-text {
	font-size: 0.75rem;
	font-weight: bold;
	color: var(--atf-thm-color);
	/* The orange/red color */
	letter-spacing: 0.0625rem;
	padding-left: 2.1875rem;
}

.icon-divider {
	width: 1.5625rem;
	height: 0.125rem;
	background-color: #ccc;
	position: absolute;
	left: 0;
	top: 0.625rem;
}

/* --- Social Icons Container --- */
.social-icons {
	display: flex;
	gap: 0.9375rem;
	/* Space between icons */
}

/* --- Individual Icon Styling --- */
.icon-link {
	text-decoration: none;
	color: var(--atf-thm-color);
	/* Orange/red color for the icons */
	font-size: 0.875rem;
	/* Size of the icons */
	transition: color 0.3s ease;
}

/* Optional: Hover effect */
.icon-link:hover {
	color: #cc5200;
	/* Darker shade on hover */
}

/* Responsive tweaks */
@media (max-width: 991px) {
	.hero-title {
		font-size: 2.5rem;
	}

	.hero-frame img {
		width: 20rem;
		height: 20rem;
	}
}

@media (max-width: 576px) {
	.hero-section {
		padding: 2.5rem 0 3.75rem;
	}

	.hero-title {
		font-size: 1.75rem;
		line-height: 1.3;
		letter-spacing: 0;
	}

	.hero-frame {
		transform: none;
	}

	.hero-frame img {
		width: 100%;
		height: 16.25rem;
	}
}

.atf-aicenter {
	display: flex;
	align-items: center;
	justify-content: center;
}

.atf-cover-bg {
	position: relative;
	z-index: 1;
}

.atf-cover-bg::before {
	content: "";
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	position: absolute;
	background: rgba(0, 0, 0, 0.5);
	z-index: -1;
}

/*
* --------------------------------
* START SLICK SLIDER DESIGN
* --------------------------------
*/

/* 首页首屏轮播模块：固定 800px 高度 */
.atf-slick-slider-1 {
	height: 51rem;
	overflow: hidden;
}

/* 承载背景图的轮播盒子同样撑满 800px，保证背景图显示 800px 高 */
.atf-slick-slider-1 .atf-single-slider {
	height: 51rem;
	background-size: 100% 100%;
	background-position: center;
	background-repeat: no-repeat;
}

.atf-home-overlay {
	background: rgba(0, 0, 0, 0.4);
	height: 100%;
	width: 100%;
}

.atf-slider-content {
	padding-top: 12.5rem;
	padding-bottom: 12.5rem;
}

.atf-slider-content .sub-title {
	color: var(--atf-thm-color);
	display: inline-block;
	border-radius: 0.3125rem;
	font-size: 0.875rem;
	font-weight: 500;
	position: relative;
	margin-bottom: 0.625rem;
	text-transform: uppercase;
	letter-spacing: 0.0625rem;
	margin-left: 0.3125rem;
	background: #f9f4f4;
	padding: 0.1875rem 0.9375rem;
}

/* Title */
.atf-slider-content .title {
	font-size: 4.375rem;
	line-height: 1.05;
	font-weight: 500;
	letter-spacing: -0.0625rem;
	color: var(--atf-thm-white);
	text-transform: capitalize;
}

.atf-slider-content .description {
	color: var(--atf-thm-white);
	font-size: 1.125rem;
}

.atf-slick-slider-1.slick-arrow-1 .slick-arrow {
	left: 0;
	right: auto;
	opacity: 0;
	border-radius: 50%;
	clip-path: polygon(50% 0%, 100% 38%, 82% 100%, 18% 100%, 0% 38%);
}

.atf-slick-slider-1.slick-arrow-1 .slick-next {
	right: 0rem;
	left: auto;
	opacity: 0;
	border-radius: 50%;
	clip-path: polygon(50% 0%, 100% 38%, 82% 100%, 18% 100%, 0% 38%);
}

.atf-slick-slider-1.slick-arrow-1 .slick-arrow {
	background-color: var(--atf-thm-color);
	color: var(--atf-thm-white) !important;
}

.atf-slick-slider-1.slick-arrow-1 .slick-arrow:hover {
	background-color: var(--atf-thm-white);
	color: var(--atf-thm-color) !important;
}

.atf-slick-slider-1.slick-arrow-1 .slick-arrow {
	width: 4.375rem;
	height: 4.375rem;
	line-height: 4.25rem;

}

@media (min-width: 1350px) {
	.atf-slick-slider-1.slick-arrow-1:hover .slick-arrow {
		left: 1.5625rem;
		right: auto;
		opacity: 1;
	}

	.atf-slick-slider-1.slick-arrow-1:hover .slick-next {
		right: 1.5625rem;
		left: auto;
		opacity: 1;
	}
}

@media only screen and (max-width: 1199px) {
	.atf-slider-content .title {
		font-size: 3.125rem;
	}
}

@media (max-width: 768px) {

	.atf-slick-slider-1.slick-arrow-1 .slick-arrow,
	.atf-slick-slider-1.slick-arrow-1 .slick-next {
		display: none !important;
	}

	.atf-slick-slider-1.slick-arrow-1 .slick-dots {
		display: block !important;
	}

	.atf-slider-content {
		padding-top: 9.375rem;
		padding-bottom: 9.375rem;
	}
}

@media screen and (min-width: 320px) and (max-width: 575px) {
	.atf-slider-content .title {
		font-size: 1.75rem !important;
		letter-spacing: 0rem;
		line-height: 1.3;
	}

	.atf-slider-content .description br {
		display: none;
	}

	.atf-slider-content {
		padding-top: 7.5rem;
		padding-bottom: 7.5rem;
	}
}

.slick-active .atf-single-slider .sub-title {
	-webkit-animation: 0.5s 0.5s fadeInDown both;
	animation: 0.5s 0.5s fadeInDown both;
}

.slick-active .atf-single-slider .title {
	-webkit-animation: 0.5s 0.5s fadeInUp both;
	animation: 0.5s 0.5s fadeInUp both;
}

.slick-active .atf-single-slider .description {
	-webkit-animation: 0.5s 0.7s fadeInUp both;
	animation: 0.5s 0.7s fadeInUp both;
}

.slick-active .atf-main-btn {
	-webkit-animation: 0.5s 9s fadeInUp both;
	animation: 0.5s 0.9s fadeInUp both;
}

.slick-active .atf-single-slider {
	animation: zoomOutEffect 5s ease forwards;
	transition: all 2s ease;
}

@keyframes zoomOutEffect {
	0% {
		transform: scale(1.05);
	}

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

/*
* ----------------------------------------------------------------------------------------
* START SLICK DESIGN
* ----------------------------------------------------------------------------------------
*/
/*----------------------------------------*/
/*  03. END HOME DESIGN
/*----------------------------------------*/
/*----------------------------------------*/
/*  04. START PARTNER DESIGN
/*--------------------------------------*/
.atf__partner_slider_active img {
	border-radius: 0;
	padding: 0 0.625rem;
}

/* 荣誉资质：CSS 无缝横向滚动（起点为最左侧第一张，鼠标悬停暂停） */
#partnerMarquee {
	overflow: hidden;
	width: 100%;
	margin: 0 auto;
}

#partnerMarquee .partner-marquee-track {
	display: flex;
	width: max-content;
	animation: partnerMarqueeScroll var(--partner-duration, 30s) linear infinite;
	will-change: transform;
}

#partnerMarquee:hover .partner-marquee-track {
	animation-play-state: paused;
}

#partnerMarquee .partner-marquee-list {
	display: flex;
	align-items: center;
	margin: 0;
	padding: 0;
	list-style: none;
	flex-shrink: 0;
}

#partnerMarquee .partner-marquee-list li {
	flex-shrink: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-right: 1.25rem;
}

#partnerMarquee .partner-marquee-list li a {
	display: flex;
	align-items: center;
}

#partnerMarquee .partner-marquee-list img {
	height: 4.375rem;
	width: auto;
	max-width: 12.5rem;
	object-fit: contain;
	padding: 0;
}

@keyframes partnerMarqueeScroll {
	from {
		transform: translateX(0);
	}

	to {
		transform: translateX(-50%);
	}
}

.divider.left {
	height: 0.0625rem;
	width: 15%;
	background: linear-gradient(-90deg, rgba(255, 92, 4, 0.98), transparent);
}

.divider.right {
	height: 0.0625rem;
	width: 50%;
	background: linear-gradient(90deg, rgba(255, 92, 4, 0.98), transparent);
}

.partner-heading {
	font-size: 1rem;
	font-weight: 500;
	color: var(--atf-thm-black);
}

/*----------------------------------------*/
/*  04. END PARTNER DESIGN
/*--------------------------------------*/
/*----------------------------------------*/
/*  05. START ABOUT DESIGN
/*--------------------------------------*/
.atf-about-item .title {
	-webkit-transition: all 0.5s ease-out;
	transition: all 0.5s ease-out;
}

.atf-about-item .title:hover {
	color: var(--atf-thm-color);
}

.atf-about-item-icon span {
	width: 6.25rem;
	height: 6.25rem;
	background: var(--atf-thm-color);
	text-align: center;
	line-height: 6.875rem;
	border-radius: 50%;
	margin-top: 0.9375rem;
	color: var(--atf-thm-white);
	display: inline-block;
	clip-path: polygon(50% 0%, 100% 38%, 82% 100%, 18% 100%, 0% 38%);
}

.atf-about-item title {
	font-size: 1.375rem;
	font-weight: 500;
}

.custom-image-size {
	max-width: 100%;
	height: 21.875rem;
	object-fit: cover;
	border-radius: 0.3125rem;
	clip-path: polygon(10% 0%,
			/* left slant top */
			90% 0%,
			/* right top */
			100% 15%,
			/* right corner top edge */
			100% 85%,
			/* right bottom edge */
			80% 100%,
			/* right bottom cut */
			20% 100%,
			/* left bottom cut */
			0% 85%,
			/* left bottom edge */
			0% 15%
			/* left top edge */
		);
	box-shadow: 0 0.5rem 1.5rem rgba(0, 0, 0, 0.25);
	border-radius: 0.5rem;
}

.atf-about-area {
	position: relative;
	overflow: hidden;
}

/* --- Left Column - Logo & Images --- */
.about-logo {
	position: absolute;
	top: 3.125rem;
	/* Adjust position */
	left: 5rem;
	/* Adjust position */
	z-index: 10;
}

.about_round_image {
	position: absolute;
	bottom: 0;
	right: 5.625rem;
	background: var(--atf-thm-color);
	border-radius: 50%;
	-webkit-backdrop-filter: blur(1.25rem);
	backdrop-filter: blur(1.25rem);
	z-index: 10;
}

@media (max-width: 1399px) {
	.about_round_image {
		right: 2.5rem;
	}
}

@media (max-width: 991px) {
	.about_round_image {
		right: 7.5rem;
	}
}

@media (max-width: 479px) {
	.about_round_image {
		right: 0rem;
	}
}

.about_round_text_area {
	position: relative;
	width: 8.75rem;
	width: 8.75rem;
	animation: spin 15s linear infinite;
	margin: auto;
}

.about_round_text_area .about_round_text text {
	font-size: 1.25rem;
	fill: var(--atf-thm-white);
	text-transform: uppercase;
	letter-spacing: 0.0625rem;
}

.about-image-gallery {
	position: relative;
	padding-top: 9.375rem;
}

.worker-image {
	width: 21.875rem;
	/* Size of the worker image */
	height: 25rem;
	object-fit: cover;
	border: 0.625rem solid white;
	/* White border as seen in the image */
	z-index: 2;
	position: relative;
	/* Custom shadow matching the image */
	box-shadow: 0 0.9375rem 1.875rem rgba(0, 0, 0, 0.15), 0 0 0 0.625rem rgba(255, 102, 0, 0.1);
}

.secondary-image {
	position: absolute;
	top: 0rem;
	right: 0;
	width: 21.875rem;
	height: 25rem;
	object-fit: cover;
	border: 0.625rem solid white;
	z-index: 1;
	box-shadow: 0 0.625rem 1.25rem rgba(0, 0, 0, 0.1);
}

.experience-counter {
	position: absolute;
	top: 0.375rem;
	left: 0.75rem;
	background-color: white;
	width: 16.75rem;
	height: 7.8125rem;
	border-radius: 50%;
	display: flex;
	justify-content: start;
	align-items: center;
	z-index: 3;
	box-shadow: 0 0 0 0.625rem rgba(255, 102, 0, 0.15), 0 0.3125rem 0.9375rem rgba(0, 0, 0, 0.1);
	text-align: left;
}

.experience-counter .icon-circle {
	width: 4.375rem;
	height: 4.375rem;
	background-color: var(--atf-thm-color);
	border-radius: 50%;
	display: flex;
	justify-content: center;
	align-items: center;
	color: white;
	clip-path: polygon(50% 0%, 100% 38%, 82% 100%, 18% 100%, 0% 38%);
}

.experience-counter h4 {
	color: var(--atf-thm-color);
	font-weight: 500;
	font-size: 2.25rem;
	line-height: 1.0;
}

.experience-counter_ceontent .counter-number {
	font-size: 2.25rem;
}

.experience-counter_ceontent .year {
	font-size: 0.875rem;
	font-weight: 500;
}

/* --- Right Column - Text & Tabs --- */
.nav-tabs .nav-item .nav-link {
	background-color: transparent;
	color: var(--atf-text-body);
	border: none;
	border-radius: 0;
	padding: 0.625rem 1.25rem;
	font-weight: 500;
	transition: all 0.3s ease;
	font-size: 0.875rem;
	margin-right: 0.625rem;
	border-radius: 0.625rem;
}

.nav-tabs .nav-item .nav-link.active {
	border: 0.0625rem solid var(--atf-thm-color);
	color: var(--atf-thm-color);
	font-weight: 500;
}

.nav-tabs .nav-item .nav-link:hover:not(.active) {
	background-color: var(--atf-thm-color);
	color: var(--atf-thm-white);
}

/* --- Video Placeholder --- */
.about_video_area {
	width: 100%;
	min-height: 11.25rem;
	/* Fixed height for the video box */
	display: flex;
	justify-content: center;
	align-items: center;
	cursor: pointer;
}

.about_video_area img {
	border-radius: 1.25rem;
}

/* --- Feature List --- */
.feature-list li {
	font-size: 1rem;
	color: var(--atf-text-body);
	margin-bottom: 0.5rem;
	text-align: left;
}

.feature-list li i {
	color: var(--atf-thm-color);
}

/* --- Bottom Hand/Industry Image --- */
.hand-industry-image {
	position: absolute;
	bottom: -7.5rem;
	left: 50%;
	width: 21.875rem;
	max-width: 50%;
	z-index: -1;
	opacity: 0.2;
	animation: 8s infinite moving;
}

/*---------------------------------
 STAR VIDEO ICON
---------------------------------*/
/*---------------------------------
 05. END ABOUT DESIGN 
---------------------------------*/
/*---------------------------------
  START HISTORY DESIGN 
---------------------------------*/
.history-box {
	transition: all 0.3s ease-out;
}

.history-box h3 {
	font-size: 1.5rem;
}

.history_btn {
	text-decoration: none;
	color: var(--atf-thm-black);
	display: flex;
	align-items: center;
	justify-content: center;
	font-weight: 500;
	transition: all 0.3s ease-out;
}

.history_btn svg {
	width: 0.75rem;
	height: 0.75rem;
	transition: all 0.3s ease;
}

.history-box.active:hover .history_btn {
	color: var(--atf-thm-color);
}

.history-box:hover .history_btn {
	color: var(--atf-thm-color);
}

.history-box:hover .history_btn .icon {
	animation: bounce-up 0.3s ease-in-out 1;
}

.history-box.active:hover .history_btn .icon {
	animation: none;
	transform: none;
}

/*---------------------------------
  END HISTORY DESIGN 
---------------------------------*/
/*----------------------------------------*/
/* START MARQUEE DESIGN
/*--------------------------------------*/
.marquee-wrapper {
	width: 100%;
	overflow: hidden;
	margin: 0 auto;
}

.marquee-wrapper ul.marquee-content {
	display: flex;
	align-items: center;
	gap: 1.875rem;
}

.marquee-wrapper ul.marquee-content li {
	flex-shrink: 0;
	text-transform: uppercase;
	letter-spacing: 0.0625rem;
	display: inline-table;
	font-weight: 500;
	font-size: 4.375rem;
	-webkit-text-fill-color: transparent;
	-webkit-text-stroke-color: var(--atf-thm-color);
	-webkit-text-stroke-width: 0.0625rem;
	white-space: nowrap;
	transition: all 0.5s ease-out;
}

.marquee-wrapper ul.marquee-content li:hover {
	-webkit-text-fill-color: var(--atf-thm-color);
	;
}

.marquee-wrapper ul.marquee-content li i {
	color: var(--atf-thm-color);
	font-size: 3.125rem;
	margin-right: 1.5625rem;
}

@media only screen and (max-width:767px) {
	.marquee-wrapper ul.marquee-content li {
		font-size: 2.25rem;
	}

	.marquee-wrapper ul.marquee-content li i {
		font-size: 2.5rem;
	}
}

@media screen and (min-width:320px) and (max-width:575px) {
	.marquee-wrapper ul.marquee-content li {
		font-size: 1.75rem;
	}

	.marquee-wrapper ul.marquee-content li i {
		font-size: 1.875rem;
	}

}

/*----------------------------------------*/
/*  END MARQUEE DESIGN
/*--------------------------------------*/
/*----------------------------------------*/
/*  START VIDEO DESIGN
/*--------------------------------------*/
.video-area {
	height: 34.375rem;
}

.video-area.atf-cover-bg::before {
	background: rgba(0, 0, 0, 0.4);
	z-index: 1;
}

.about_video_area.atf-video-icon {
	height: 3.125rem;
	width: 3.125rem;
	background-color: var(--atf-thm-white);
	color: var(--atf-thm-color);
}

.gallery-details.atf-video-icon {
	border-radius: 50%;
	background-color: var(--atf-thm-white);
	color: var(--atf-thm-color);
}

.atf-video-icon {
	height: 6.25rem;
	width: 6.25rem;
	background-color: var(--atf-thm-white);
	color: var(--atf-thm-black);
	font-size: 1.25rem;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	z-index: 9;
	border-radius: 10%;
	position: absolute;
	left: 50%;
	top: 50%;
	-webkit-transform: translateX(-50%)translateY(-50%);
	-ms-transform: translateX(-50%)translateY(-50%);
	transform: translateX(-50%)translateY(-50%);
}

.atf-animation-zoom1 a {
	-webkit-animation: 1s infinite zoom1;
	animation: 1s infinite zoom1;
}

@-webkit-keyframes zoom1 {
	0% {
		-webkit-box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.6);
		box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.6);
	}

	70% {
		-webkit-box-shadow: 0 0 0 0.9375rem rgba(255, 255, 255, 0);
		box-shadow: 0 0 0 0.9375rem rgba(255, 255, 255, 0);
	}

	100% {
		-webkit-box-shadow: 0 0 0 0 rgba(255, 255, 255, 0);
		box-shadow: 0 0 0 0 rgba(255, 255, 255, 0);
	}
}

@keyframes zoom1 {
	0% {
		-webkit-box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.6);
		box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.6);
	}

	70% {
		-webkit-box-shadow: 0 0 0 0.9375rem rgba(255, 255, 255, 0);
		box-shadow: 0 0 0 0.9375rem rgba(255, 255, 255, 0);
	}

	100% {
		-webkit-box-shadow: 0 0 0 0 rgba(255, 255, 255, 0);
		box-shadow: 0 0 0 0 rgba(255, 255, 255, 0);
	}
}

/*---------------------------------
 END VIDEO DESIGN
---------------------------------*/
/*----------------------------------------*/
/*  05. END ABOUT DESIGN
/*--------------------------------------*/
/*----------------------------------------*/
/*  06. START TEAM DESIGN
/*--------------------------------------*/
.city-team-overlay img {
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	background-size: cover;
	background-position: center center;
}

.team-member-card {
	background-color: var(--atf-thm-white);
	border-radius: 0.9375rem;
	box-shadow: 0 0.5rem 1.25rem rgba(0, 0, 0, 0.1);
	transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
	overflow: hidden;
	position: relative;
	padding: 1.25rem;
	height: 100%;
}

.team-member-card:hover {
	transform: translateY(-0.5rem);
	box-shadow: 0 0.75rem 1.5625rem rgba(0, 0, 0, 0.15);
}

.profile-img-inner {
	text-align: center;
}

.profile-img {
	object-fit: cover;
	border-radius: 1.25rem;
	border: 0.25rem solid var(--atf-thm-color);
	box-shadow: 0 0.25rem 0.625rem rgba(0, 0, 0, 0.1);
	width: 100%;
}

.member-info {
	padding-top: 1.5625rem;
	text-align: center;
}

.member-info h3 {
	font-size: 1.5rem;
	font-weight: 500;
	margin-bottom: 0.3125rem;
}

.member-info h3 a {
	transition: all 0.3s ease-out;
}

.member-info h3 a:hover {
	color: var(--atf-thm-color);
}

.social-interaction-area {
	position: absolute;
	top: 50%;
	left: 0;
	right: 0;
	text-align: center;
}

.social-toggle-btn {
	background-color: var(--atf-thm-white);
	border: none;
	width: 3.125rem;
	height: 3.125rem;
	border-radius: 50%;
	color: var(--atf-thm-color);
	font-size: 1.25rem;
	display: flex;
	justify-content: center;
	align-items: center;
	cursor: pointer;
	transition: background-color 0.3s, transform 0.3s ease;
	position: relative;
	z-index: 10;
	margin: 0 auto;
	clip-path: polygon(50% 0%, 100% 38%, 82% 100%, 18% 100%, 0% 38%);
}

.social-toggle-btn:hover {
	background-color: var(--atf-thm-color);
	color: white;
}

.social-toggle-btn.active .fa-plus {
	transform: rotate(45deg);
}

.social-toggle-btn .fa-plus {
	transition: transform 0.3s ease;
}

.social-icons-wrapper {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	display: flex;
	justify-content: center;
	align-items: center;
	pointer-events: none;
	z-index: 5;
}

.social-icons-wrapper a {
	position: absolute;
	opacity: 0;
	-webkit-transition: all 0.3s ease-out;
	transition: all 0.3s ease-out;
	background-color: var(--atf-thm-white);
	width: 2.5rem;
	height: 2.5rem;
	border-radius: 50%;
	display: flex;
	justify-content: center;
	align-items: center;
	box-shadow: 0 0.125rem 0.3125rem rgba(0, 0, 0, 0.1);
	color: var(--atf-thm-color);
}

.social-icons-wrapper a:hover {
	color: var(--atf-thm-white);
	transform: scale(1.1);
	background-color: var(--atf-thm-color);
}

.social-toggle-btn.active+.social-icons-wrapper a {
	opacity: 1;
	pointer-events: auto;
}

.social-toggle-btn.active+.social-icons-wrapper a:nth-child(1) {
	transform: translate(-5.625rem, 0);
}

.social-toggle-btn.active+.social-icons-wrapper a:nth-child(2) {
	transform: translate(-2.8125rem, -2.8125rem);
}

.social-toggle-btn.active+.social-icons-wrapper a:nth-child(3) {
	transform: translate(0, -5.625rem);
}

.social-toggle-btn.active+.social-icons-wrapper a:nth-child(4) {
	transform: translate(2.8125rem, -2.8125rem);
}

.social-toggle-btn.active+.social-icons-wrapper a:nth-child(5) {
	transform: translate(5.625rem, 0);
}

.profile-img-container img {
	width: 100%;
}

/*----------------------------------------*/
/*  06. END TEAM DESIGN
/*--------------------------------------*/
/*
* ----------------------------------------------------------------------------------------
* 07. START FAQ DESIGN
* ----------------------------------------------------------------------------------------
*/
.shape-4 {
	position: absolute;
	bottom: 0rem;
	left: 0rem;
	width: 12.5rem;
	max-width: 50%;
	z-index: 1;
	opacity: 0.4;
	animation: 8s infinite spin-1;
}

.card {
	border: none;
}

.atf-faq-accordion .card {
	border-bottom: 0.0625rem solid var(--atf-border-1);
	display: block;
	text-align: left;
	margin-bottom: 0.9375rem;
	-webkit-box-orient: unset;
	-webkit-box-direction: unset;
	-ms-flex-direction: unset;
	flex-direction: unset;
	border-radius: 0rem;
}

.atf-faq-accordion .card .card-header {
	border: none;
	text-align: left;
	color: #fff;
	border-radius: 0;
	background: #1a3d25;
	padding: 0.625rem 1.5625rem;
}

.atf-faq-accordion .card .card-header button:focus,
.atf-faq-accordion .card .card-header button:active,
.atf-faq-accordion .card .card-header button:hover {
	background: transparent;
	color: #fff;
	border-radius: 0rem;
}

.atf-faq-accordion .card .card-header button {
	border: none;
	width: 100%;
	text-align: left;
	position: relative;
	-webkit-transition: all 0.5s ease-in-out 0s;
	transition: all 0.5s ease-in-out 0s;
	font-size: 1.5rem;
	font-weight: 500;
	padding: 0 0 0;

}

.atf-faq-accordion .card .card-header button::before {
	content: "+";
	position: absolute;
	right: 0rem;
	-webkit-transition: all 0.5s ease-in-out 0s;
	transition: all 0.5s ease-in-out 0s;
	top: 50%;
	-webkit-transform: translateY(-50%) rotate(180deg);
	transform: translateY(-50%) rotate(180deg);

	font-size: 0.9375rem;
	font-weight: 500;
}

.atf-faq-accordion .card .card-header button.collapsed {
	border-bottom-width: 0
}

.atf-faq-accordion .card .card-header button.collapsed::before {
	-webkit-transform: translateY(-50%) rotate(0);
	transform: translateY(-50%) rotate(0)
}

.atf-faq-accordion .card-body {
	padding: 1.25rem 1.25rem;
	color: var(--atf-text-body);
	border: 0.0625rem solid var(--atf-border-1);
	border-top: none;
}

.atf-faq-accordion .card-body p {
	margin: 0;
}

.atf-faq-accordion .card .card-body ul {
	margin-bottom: 0.9375rem
}

.atf-faq-accordion .card .card-body ul:last-child {
	margin-bottom: 0
}

.atf-faq-accordion .card .card-body ul li {
	margin-bottom: 0.75rem;
	color: var(--atf-thm-color);
}

.atf-faq-accordion .card .card-body ul li:last-child {
	margin-bottom: 0
}

.atf-faq-accordion .card:last-child {
	margin-bottom: 0
}

.atf-faq-accordion.style2 .card {
	background: none;
}

.atf-faq-accordion.style2 .card .card-header button {
	color: var(--atf-thm-black);
}

.atf-faq-accordion.style2 .card-body p {
	color: #d7d5d5;
}

.atf-faq-accordion.style2 .card .card-header button:focus,
.atf-faq-accordion.style2 .card .card-header button:active,
.atf-faq-accordion.style2 .card .card-header button:hover {
	color: var(--atf-thm-black);
}

.atf-faq-area.atf-cover-bg::before {
	background: rgba(0, 0, 0, 0.7);
}

/*
* ------------------------------------------
*  07. END  FAQ DESIGN
* ------------------------------------------
*/
/*----------------------------------------*/
/*  08. START SERVICE DESIGN
/*--------------------------------------*/
.atf-service-item {
	border: 0.0625rem solid var(--atf-border-1);
	border-radius: 1.25rem;
	width: 100%;
	padding: 1.875rem 2.5rem;
	transition: 1.3s;
	gap: 1.875rem;
	justify-content: space-between;
	position: relative;
}

@media screen and (min-width:1200px) and (max-width:1399px) {
	.atf-service-item {
		padding: 1.125rem;
	}
}

.atf-service-icon {
	font-size: 5rem;
	color: var(--atf-thm-black);
	text-align: center;
	transition: 1.3s;
	opacity: 0;
	transform: scale(.5);
	position: absolute;
	left: 50%;
	transform: translate(-50%);
}

.atf-service-item:hover .atf-service-icon {
	transform: scale(1.2);
	opacity: 0.1;
}

.atf-service-title {
	transition: all 0.3s ease-out;
	font-size: 1.5rem;
	font-weight: 500;
}

.atf-service-title:hover {
	color: var(--atf-thm-color);
}

.atf-service-box-content p {
	margin: 0;
}

.atf-service-btn a {
	width: 3.75rem;
	height: 3.75rem;
	border-radius: 50%;
	background-color: var(--atf-grey-2);
	flex-shrink: 0;
	transition: all 0.3s ease;
	box-shadow: 0 0 0 0.5rem rgba(255, 102, 0, 0.3), 0 0 0 0.375rem rgba(255, 239, 228, 0.15);
}

.service_btn {
	text-decoration: none;
	color: var(--atf-thm-black);
	display: flex;
	align-items: center;
	justify-content: center;
}

.atf-service-item:hover .atf-service-btn a {
	background-color: var(--atf-thm-color);
}

.atf-service-item:hover .service_btn {
	color: var(--atf-thm-white);
}

.atf-service-item.active .atf-service-btn {
	background-color: var(--atf-thm-white) !important;
}

.atf-service-item.active .service_btn {
	color: var(--atf-thm-color) !important;
}

.service_btn svg {
	width: 0.75rem;
	height: 0.75rem;
	transition: all 0.3s ease;
}

.atf-service-item:hover .service_btn .icon {
	animation: bounce-up 0.3s ease-in-out 1;
}

.atf-service-item.active:hover .service_btn .icon {
	animation: none;
	transform: none;
}

@keyframes bounce-up {
	0% {
		transform: translateY(0);
	}

	50% {
		transform: translateY(-1rem);
	}

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

/* Service item two */
.service-card-item {
	display: flex;
	flex-wrap: nowrap;
	overflow-x: auto;
	padding-left: 0.9375rem;
	padding-right: 0.9375rem;
	-ms-overflow-style: none;
	scrollbar-width: none;
}

.service-card-item::-webkit-scrollbar {
	display: none;
}

.service-card {
	height: 25rem;
	margin-right: 0.9375rem;
	border-radius: 0.5rem;
	position: relative;
	overflow: hidden;
	cursor: pointer;
	box-shadow: 0 0.625rem 1.875rem rgba(0, 0, 0, 0.1);
	flex: 1 0 12.5rem;
	-webkit-transition: all 0.4s ease-in-out;
	transition: all 0.4s ease-in-out;
}

.service-card-item .service-card:first-child {
	margin-left: 0;
}

.service-card-item .service-card:last-child {
	margin-right: 0.9375rem;
}

.service-card.active,
.service-card:hover {
	flex: 3 0 15.625rem;
}

.service-card .card-title {
	transform-origin: 0 0;
	white-space: nowrap;
	font-weight: 500;
	font-size: 1.5rem;
	margin: 0;
}

.card-content p {
	color: #ddd;
	margin-top: 0.625rem;
}

/* Image and Overlay Styling (unchanged) */
.service-card .card-img-content {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	z-index: 1;
	transition: transform 0.4s;
}

.image-overlay {
	-webkit-transition: all 0.4s ease-in-out;
	transition: all 0.4s ease-in-out;
}

.service-card:hover .image-overlay {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(0, 0, 0, 0.6);
	z-index: 2;
}

.service-card:hover .card-img-content {
	transform: scale(1.05);
	opacity: 1;
}

.card-content {
	position: absolute;
	bottom: 0rem;
	left: -100%;
	width: 100%;
	padding: 1.25rem;
	z-index: 3;
	opacity: 0;
	-webkit-transition: all 0.4s ease-in-out;
	transition: all 0.4s ease-in-out;
}

.service-card:hover .card-content {
	transform: scale(1.05);
	opacity: 1;
	left: 0%;
}

/* --- Mobile Responsiveness: Direct Values --- */

@media (max-width: 1399px) {
	.service-card {
		margin-bottom: 0.9375rem;
	}
}

@media (max-width: 1200px) {
	.service-card {
		height: 21.875rem;
		flex: 1 0 7.5rem;
		margin-bottom: 0.9375rem;
	}

	.service-card:hover {
		flex: 3 0 12.5rem;
	}
}

@media (max-width: 768px) {
	.service-card {
		height: 18.75rem;
		flex: 1 0 6.25rem;
	}

	.service-card:hover {
		flex: 3 0 11.25rem;
	}

	.service-card-item {
		padding-left: 0.625rem;
		padding-right: 0.625rem;
	}
}

@media (max-width: 576px) {
	.service-card {
		height: 15.625rem;
		flex: 1 0 5rem;
	}

	.service-card:hover {
		flex: 3 0 9.375rem;
	}
}

/* Custom CSS for Category Banner Section */
.category-banner {
	display: flex;
	align-items: flex-end;
}

.category-item-link {
	background-color: rgba(0, 0, 0, 0.6);
	transition: background-color 0.3s ease;
	border-right: 0.0625rem solid rgba(255, 255, 255, 0.1);
}

.category-banner img {
	border-radius: 1.25rem;
	width: 100%;
}

.category-item-link:hover {
	background-color: rgba(255, 102, 0, 0.7);
	color: var(--atf-thm-white) !important;
}

.category-item-link.active-category p,
.category-item-link p {
	color: hsl(0, 17.9%, 89%);
}

.category-item-link:hover p {
	color: var(--atf-thm-white) !important;
}

.category-item-link.active-category {
	background-color: var(--atf-thm-color) !important;
}

.category-item-link h3 {
	color: inherit;
	font-size: 1.5rem;
}

/*----------------------------------------*/
/*  08. END SERVICE DESIGN
/*--------------------------------------*/
/*----------------------------------------*/
/*  START WORKING PROCESS DESIGN
/*--------------------------------------*/
.abstract-waves-bg {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 0;
	background-color: #f9e2e2;
	background-image: linear-gradient(135deg, #f9f9f9 25%, transparent 25%), linear-gradient(225deg, #f9f9f9 25%, transparent 25%);
	opacity: 0.8;
	box-shadow: inset 0 0 3.125rem rgba(0, 0, 0, 0.05);
}

.step-card {
	background-color: var(--atf-thm-white);
	border: 0.0625rem solid rgba(255, 255, 255, 0.3);
	backdrop-filter: blur(0.5rem);
	-webkit-backdrop-filter: blur(0.5rem);
	transition: transform 0.3s ease, box-shadow 0.3s ease;
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	min-height: 15.625rem;
}

.step-card:hover {
	transform: translateY(-0.5rem);
	box-shadow: 0 0.9375rem 1.875rem rgba(0, 0, 0, 0.08);
}

.step-title {
	font-size: 1.5rem;
	font-weight: 500;
	transition: all 0.5s ease-out;
	-webkit-transition: all 0.5s ease-out;
}

.step-title:hover {
	color: var(--atf-thm-color);
}

.step-card-active {
	border-color: #ff5a00;
	box-shadow: 0 0.9375rem 1.875rem rgba(255, 90, 0, 0.2);
}

.step-number.mb-20 {
	line-height: 1;
	font-size: 3rem;
	font-weight: 500;
	color: var(--atf-thm-color);
	padding-left: 3.75rem;
	border-radius: 100%;
	-webkit-text-fill-color: transparent;
	-webkit-text-stroke-color: var(--atf-thm-color);
	-webkit-text-stroke-width: 0.0625rem;
	position: relative;
}

.step-number.mb-20::before {
	content: '';
	position: absolute;
	left: 0;
	top: 1.5625rem;
	width: 3.125rem;
	height: 0.0625rem;
	background: var(--atf-thm-color);
}

/* --- Mobile Responsiveness --- */

@media (max-width: 768px) {
	.step-card {
		min-height: 13.75rem;
	}
}

@media (max-width: 576px) {
	.step-card {
		min-height: 12.5rem;
	}
}

/*----------------------------------------*/
/*  END WORKING PROCESS DESIGN
/*--------------------------------------*/
/*----------------------------------------*/
/*  START GALLERY DESIGN
/*--------------------------------------*/
.atf-gallery-area-plr {
	padding-right: 3.125rem;
	padding-left: 3.125rem;
}

.industrial-gallery-post .gallery-item {
	padding: 0rem;
}

.gallery-item {
	padding: 0.625rem;
}

.gallery-card {
	border: 0.0625rem solid var(--atf-border-1) !important;
	transition: transform 0.5s ease-out, box-shadow 0.5s ease-out;
	cursor: pointer;
	background-color: var(--atf-thm-white);
	border-radius: 0.5rem !important;
}

.gallery-card:hover {
	transform: translateY(-0.5rem);
	box-shadow: 0 0.9375rem 1.875rem rgba(0, 0, 0, 0.08) !important;
}

.gallery-card-image {
	overflow: hidden;
}

.gallery-card-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	-webkit-transition: all 0.5s ease-out;
	transition: all 0.5s ease-out;
	filter: brightness(1);
	position: relative;
}

.gallery-card:hover .gallery-card-image img {
	transform: scale(1.05);
	filter: brightness(0.85);
}

.gallery-card-icon {
	position: absolute;
	left: 5%;
	top: 5%;
	transform: translate(-50%);
	opacity: 0;
	visibility: hidden;
	-webkit-transition: all 0.5s ease-out;
	transition: all 0.5s ease-out;
}

.gallery-card-icon a {
	width: 2.5rem;
	height: 2.5rem;
	line-height: 2.5rem;
	background: var(--atf-thm-white);
	display: inline-block;
	text-align: center;
	border-radius: 50%;
	font-size: 1rem;
	-webkit-transition: all 0.5s ease-out;
	transition: all 0.5s ease-out;
}

.gallery-card:hover .gallery-card-icon {
	opacity: 1;
	visibility: visible;
	transform: scale(1.01);
}

.gallery-card-icon a:hover {
	background: var(--atf-thm-color);
	color: var(--atf-thm-white);
}

.category-label {
	font-size: 0.875rem;
	font-weight: 500;
	color: var(--atf-thm-color);
	letter-spacing: 0.03125rem;
	margin-bottom: 0.625rem !important;
	display: inline-block;
	background: var(--atf-grey-7);
	padding: 0.1875rem 0.625rem;
	border-radius: 0.3125rem;
}

.gallery-title {
	font-size: 1.5rem;
	color: var(--atf-thm-black);
	line-height: 1.2;
	font-weight: 500;
	-webkit-transition: all 0.5s ease-out;
	transition: all 0.5s ease-out;
}

.gallery-title:hover {
	color: var(--atf-thm-color);
}

.divider-line {
	height: 0.0625rem;
	width: 100%;
	background-color: var(--atf-grey-7);
	margin: 0.9375rem 0;
	transition: background-color 0.5s ease-out;
}

.gallery-link {
	text-decoration: none;
	color: var(--atf-thm-black);
	transition: color 0.5s ease-out;
	font-size: 1rem;
	font-weight: 500;
}

.gallery-link:hover {
	color: var(--atf-thm-color);
}

.gallery-arrow {
	font-size: 1rem;
	color: var(--atf-thm-color);
	margin-left: 0.625rem;
	transition: transform 0.5s ease-out;
}

.gallery-card:hover .gallery-arrow {
	transform: translateX(0.3125rem);
}

/*----------------------------------------*/
/*  END GALLERY DESIGN
/*--------------------------------------*/
/*----------------------------------------*/
/*  START PRICING DESIGN
/*--------------------------------------*/
.atf-text-color {
	color: var(--atf-thm-color);
}

.atf-text-black {
	color: var(--atf-thm-black);
}

/* Pricing Card Styling */
.pricing-card {
	background-color: var(--atf-grey-1);
	transition: transform 0.4s ease, box-shadow 0.4s ease;
	border: 0.0625rem solid var(--atf-border-1);
	height: 100%;
}

/* Card Hover Effect: Scale up and shadow elevation */
.pricing-card:hover {
	transform: translateY(-0.5rem) scale(1.02);
	box-shadow: 0 1.25rem 2.5rem rgba(0, 0, 0, 0.15) !important;
}

/* Highlight for Standard Plan */
.pricing-card.is-popular {
	border: 0.125rem solid var(--atf-thm-color);
	transform: translateY(-0.5rem);
	box-shadow: 0 1.25rem 2.5rem rgba(0, 0, 0, 0.15) !important;
}

.pricing-img-banner {
	height: 12.5rem;
	overflow: hidden;
	display: block;
	background-color: #c16c3d;
}

.pricing-banner-img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
	filter: brightness(0.55);
}

.price-box {
	text-align: center;
	color: var(--atf-thm-white);
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	z-index: 10;
	width: 100%;
}

.price-amount {
	display: block;
	font-size: 3.125rem;
	font-weight: 500;
	line-height: 1.2;
}

.plan-name {
	display: block;
	font-size: 1.75rem;
	font-weight: 500;
	text-transform: capitalize;
}

/* Feature List Styling */
.pricing-features li {
	font-size: 1rem;
	color: var(--atf-text-body);
	font-weight: 500;
	padding-left: 0.3125rem;
	border-bottom: 0.0625rem solid var(--atf-grey-8);
	padding-bottom: 0.625rem;
}

.pricing-features li:last-child {
	border-bottom: none;
}

/* Check and Cross Icons */
.pricing-features .fa-check {
	color: var(--atf-thm-color);
}

.pricing-features .fa-times {
	color: #dc3545;
}

/* Custom Button Styles */
.pricing-btn .atf-themes-btn:hover::before {
	border-width: 13.75rem 0 0 13.75rem;
}

.pricing-btn .atf-themes-btn:hover::after {
	border-width: 0 0 13.75rem 13.75rem;
}

/*----------------------------------------*/
/*  END PRICING DESIGN
/*--------------------------------------*/
/*----------------------------------------*/
/* 09. START COUNTER DESIGN
/*--------------------------------------*/
.atf-funfact-title {
	color: var(--atf-thm-white);
	font-size: 3.75rem;
	-webkit-text-fill-color: transparent;
	-webkit-text-stroke-color: var(--atf-thm-white);
	-webkit-text-stroke-width: 0.0625rem;
	letter-spacing: 0.0625rem;

	font-weight: 500;
	transition: all 0.5s ease-out;
}

.atf-funfact-item p {
	font-weight: 400;
	color: var(--atf-rgb-white);
}

.atf-funfact-item {
	border-right: 0.0625rem solid var(--atf-border-1);
}

.atf-funfact-wrapp .row [class*="col-"]:last-child .atf-funfact-item {
	border-right: 0;
}

/*----------------------------------------*/
/* 08. END COUNTER DESIGN
/*--------------------------------------*/
/*----------------------------------------*/
/* 09. START BLOG DESIGN
/*--------------------------------------*/
.atf-blog-item {
	position: relative;
	background: var(--atf-grey-7);
	padding: 1.5625rem;
}

@media only screen and (min-width: 992px) and (max-width: 1199px),
only screen and (min-width: 768px) and (max-width: 991px),
only screen and (min-width: 576px) and (max-width: 767px),
(max-width: 575px) {
	.atf-blog-item {
		margin-bottom: 1.5625rem;
	}
}

.atf-blog-item:hover .atf-blog-thumb img {
	transform: scale(1.1);
	border-radius: 1.25rem ! important;
}

.atf-blog-thumb {
	overflow: hidden;
	border-radius: 1.25rem ! important;
}

.atf-blog-thumb img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: 1.3s;
	border-radius: 1.25rem;
}

.atf-blog-meta-date {
	position: absolute;
	bottom: 0.9375rem;
	left: 0.9375rem;
	background: var(--atf-thm-color);
	color: var(--atf-thm-white);
	padding: 0.9375rem 1.25rem;
	border-radius: 0.3125rem;
	-webkit-transition: all 0.3s ease-out;
	-moz-transition: all 0.3s ease-out;
	-ms-transition: all 0.3s ease-out;
	-o-transition: all 0.3s ease-out;
	transition: all 0.3s ease-out;
	box-shadow: 0 0 0 0.5rem rgba(255, 255, 255, 0.3), 0 0 0 0.375rem rgba(255, 239, 228, 0.15);
}

.atf-blog-meta-date span {
	font-weight: 400;
	margin: 0;
	color: var(--atf-thm-white);
	font-size: 0.9375rem;
	text-align: center;
	display: inline-block;
	line-height: 1.7;
}

.atf-blog-meta-date strong {
	font-size: 1.5625rem;
	display: inline-block;
	line-height: 0;
}

.atf-blog-meta-box {
	gap: 1.5625rem;
	color: var(--atf-text-body);
	font-weight: 400;
	border-top: 0.0625rem solid var(--atf-border-1);
}

.atf-blog-meta-tag {
	background: var(--atf-thm-color);
	color: var(--atf-thm-white);
	display: inline-block;
	padding: 0.1875rem 0.625rem;
	font-size: 0.875rem;
	text-transform: uppercase;
	border-radius: 0.3125rem;
}

.atf-blog-title {
	font-size: 1.5rem;
	font-weight: 500;
	line-height: 1.4;
	margin: 0;
	display: inline;
	-webkit-transition: all 0.3s ease-out;
	-moz-transition: all 0.3s ease-out;
	-ms-transition: all 0.3s ease-out;
	-o-transition: all 0.3s ease-out;
	transition: all 0.3s ease-out;
}

.atf-blog-title:hover {
	color: var(--atf-thm-color);
}

/*----------------------------------------*/
/*   START BREADCRUMB DESIGN
/*--------------------------------------*/
.breadcrumb-cover-bg::before {
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0rem;
	opacity: 0.3;
	content: "";
	background-color: var(--atf-thm-black);
}

.breadcrumb-single-content {
	position: relative;
	font-size: 1rem;
	display: inline-block;
	border-radius: 0.625rem;
	background-color: var(--atf-thm-white);
	padding: 0.625rem 1.25rem;
}

.breadcrumb-single-content span {
	font-weight: 500;
	padding-right: 0.625rem;
	-webkit-transition: all 0.3s ease-out;
	transition: all 0.3s ease-out;
	color: var(--atf-thm-black);
}

.breadcrumb-single-content span a:hover {
	color: var(--atf-thm-color);
}

.breadcrumb-sub-title {
	margin-left: 0.4375rem;
}

.breadcrumb-title {
	font-size: 3.75rem !important;
	font-weight: 500;
	color: var(--atf-thm-white);
	line-height: 1.3;

}

.breadcrumb-bg-attach {
	background-size: cover;
	background-position: center center;
	background-repeat: no-repeat;
}

.breadcrumb-spacing {
	padding-top: 8.125rem;
	padding-bottom: 7.5rem;
}

.breadcrumb-single-content .arrow {
	border: 0.0625rem solid var(--atf-thm-black);
	display: inline-block;
	padding: 0.1875rem;
	-webkit-transition: all 0.3s ease-out;
	-moz-transition: all 0.3s ease-out;
	-ms-transition: all 0.3s ease-out;
	-o-transition: all 0.3s ease-out;
	transition: all 0.3s ease-out;
	margin: 0 0 0.125rem 0.4375rem;
	background: var(--atf-thm-black);
	transform: rotate(-45deg);
	-webkit-transform: rotate(-45deg);
}

@media only screen and (max-width:991px) {
	.breadcrumb-bg-attach {
		background-position: center;
	}
}

@media only screen and (max-width:991px) {
	.breadcrumb-title {
		font-size: 3.125rem ! important;
	}
}

@media only screen and (max-width:479px) {
	.breadcrumb-title {
		font-size: 2.25rem ! important;
	}
}

/*----------------------------------------*/
/*   END BREADCRUMB DESIGN
/*--------------------------------------*/
/*----------------------------------------*/
/*   START BLOG DETAILS DESIGN
/*--------------------------------------*/
.blog_slider .slick-arrow-1 .slick-arrow {
	opacity: 1;
	visibility: visible;
}

.blog_slider .slick-arrow-1 .slick-arrow {
	left: -1.875rem;
	right: auto;
}

.blog_slider .slick-arrow-1 .slick-next {
	left: auto;
	right: -1.875rem;
}

.blog_slider .slick-arrow-1:hover .slick-arrow {
	left: -1.875rem;
	right: auto;
}

.blog_slider .slick-arrow-1:hover .slick-next {
	left: auto;
	right: -1.875rem;
}

.blog_slider .slick-arrow-1 .slick-arrow:hover {
	color: var(--atf-thm-white) !important;
}

@media only screen and (max-width:576px) {
	.blog_slider .slick-arrow-1 .slick-arrow {
		display: none;
	}
}

.blogpost-thumb {
	position: relative;
}

.blogpost-thumb img {
	width: 100%;
	border-radius: 0.9375rem;
}

.blogpost-meta-box-area {
	padding: 1.875rem 2.5rem;
	border-radius: 0.9375rem;
}

.blogpost-meta-icon {
	font-size: 1.125rem;
	margin-right: 0.5rem;
	color: var(--atf-thm-color);
}

.blogpost-meta-content.tag {
	background: var(--atf-thm-white);
	padding: 0.3125rem 0.75rem;
	border-radius: 0.9375rem;
}

.blogpost-title {
	font-size: 2.25rem;
	font-weight: 500;
	color: var(--atf-thm-black);
	-webkit-transition: all 0.3s ease-out;
	-moz-transition: all 0.3s ease-out;
	-ms-transition: all 0.3s ease-out;
	-o-transition: all 0.3s ease-out;
	transition: all 0.3s ease-out;
}

.blogpost-text p {
	margin-bottom: 1.25rem;
}

blockquote {
	position: relative;
	padding: 2.5rem;
	border-radius: 0.9375rem;
	background-color: white;
	border: 0.125rem solid var(--atf-thm-color);
	margin-bottom: 0;
}

blockquote span {
	display: inline-block;
	text-align: center;
	font-size: 1.5625rem;
	width: 3.125rem;
	height: 3.125rem;
	line-height: 3.125rem;
	border-radius: 50%;
	background: var(--atf-thm-color);
	color: var(--atf-thm-white);
}

blockquote p {
	font-weight: 500;
	margin-bottom: 0.9375rem;
}

.blockquote-info {
	position: relative;
	font-size: 0.875rem;
	padding-left: 6.25rem;
}

.blockquote-info::before {
	position: absolute;
	width: 0.9375rem;
	height: 0.125rem;
	top: 50%;
	left: 4.375rem;
	transform: translateY(-50%);
	content: "";
	background: var(--atf-thm-black);
}

.blogpost-details-title {
	font-size: 1.875rem;
	font-weight: 500;
	margin-bottom: 1.875rem;
	color: var(--atf-thm-black);
}

.blogpost-details-list-thumb {
	margin-right: 1.25rem;
}

.blogpost-details-list-thumb img {
	border-radius: 0.9375rem;
}

@media only screen and (max-width:767px) {
	.blogpost-details-list {
		margin-top: 1.875rem;
	}
}

@media only screen and (max-width:576px) {
	.blogpost-details-social {
		margin-top: 1.875rem;
	}
}

@media only screen and (max-width:479px) {
	.blogpost-comment-avater {
		margin-bottom: 0.625rem;
	}

	.blogpost-comment-title {
		font-size: 1.75rem;
	}

	.blogpost-title {
		font-size: 1.75rem;
	}
}

.blogpost-details-list-text {
	gap: 1.5625rem;
}

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

	.blogpost-meta-box,
	.blogpost-details-list-text {
		flex-wrap: wrap;
	}
}

.blogpost-details-list img {
	border-radius: 1.25rem;
}

.blogpost-details-list ul li {
	list-style: none;
	position: relative;
	padding-left: 1.5625rem;
	margin-bottom: 0.625rem;
	color: var(--atf-thm-black);
}

.blogpost-details-list ul li::before {
	content: '';
	position: absolute;
	left: 0;
	top: 0.75rem;
	border: 0.0625rem solid var(--atf-thm-black);
	display: inline-block;
	padding: 0.1875rem;
	margin: 0 0 0.125rem 0.25rem;
	background: var(--atf-thm-black);
	transform: rotate(-45deg);
	-webkit-transform: rotate(-45deg);
}

.blogpost-details-list ul li i {
	position: absolute;
	left: 0;
	top: 0.3125rem;
	color: var(--atf-thm-black);
	font-size: 1.25rem;
}

.blogpost-details-share {
	padding: 1.875rem 0;
}

.blogpost-details-tag-title {
	font-size: 1.375rem;
	font-weight: 500;
	margin-right: 1.875rem;
	color: var(--atf-thm-black);
}

.tagcloud a {
	font-size: 0.875rem;
	padding: 0.3125rem 0.8125rem;
	border-radius: 0.9375rem;
	margin-right: 0.5rem;
	margin-bottom: 0.625rem;
	display: inline-block;
	border: 0.0625rem solid var(--atf-border-1);
	-webkit-transition: all 0.3s ease-out;
	-moz-transition: all 0.3s ease-out;
	-ms-transition: all 0.3s ease-out;
	-o-transition: all 0.3s ease-out;
	transition: all 0.3s ease-out;
	background: var(--atf-thm-white);
}

.tagcloud a:hover {
	color: var(--atf-thm-white);
	background-color: var(--atf-thm-color);
	border: 0.0625rem solid var(--atf-thm-color);
}

.blogpost-details-social a {
	width: 2.5rem;
	height: 2.5rem;
	font-size: 0.875rem;
	line-height: 2.5rem;
	text-align: center;
	border-radius: 50%;
	margin-right: 0.625rem;
	color: var(--atf-thm-black);
	background: var(--atf-grey-7);
	-webkit-transition: all 0.3s ease-out;
	-moz-transition: all 0.3s ease-out;
	-ms-transition: all 0.3s ease-out;
	-o-transition: all 0.3s ease-out;
	transition: all 0.3s ease-out;
}

.blogpost-details-social a:hover {
	color: var(--atf-thm-white);
	background: var(--atf-thm-color);
}

.atf-post-btn-group {
	display: flex;
	justify-content: space-between;
	gap: 2.5rem;
}

.atf-post-btn-group .title {
	-webkit-transition: all 0.3s ease-out;
	-moz-transition: all 0.3s ease-out;
	-ms-transition: all 0.3s ease-out;
	-o-transition: all 0.3s ease-out;
	transition: all 0.3s ease-out;
	line-height: 1.4;
	font-size: 1.5rem;
	color: hsl(0, 0%, 20%);
}

.atf-post-btn-group .title:hover {
	color: var(--atf-thm-color);
}

.atf-post-btn-left {
	border-radius: 0.9375rem;
	background: var(--atf-grey-2);
	-webkit-transition: all 0.3s ease-out;
	-moz-transition: all 0.3s ease-out;
	-ms-transition: all 0.3s ease-out;
	-o-transition: all 0.3s ease-out;
	transition: all 0.3s ease-out;
}

.atf-post-btn-left:hover {
	background: var(--atf-grey-7);
}

.atf-post-author {
	border: 0.0625rem solid rgba(0, 0, 0, 0.1);
	padding: 1.875rem;
	background: var(--atf-grey-1);
	border-radius: 0.9375rem;
}

.atf-author-img img {
	max-width: 10.625rem;
	height: auto;
	flex: 0 0 auto;
	border-radius: 0.9375rem;
}

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

	.atf-author-img {
		margin-top: 1.5625rem;
	}

	.atf-post-author {
		flex-wrap: wrap;
	}

	.atf-author-img-content.ml-30 {
		margin-top: 1.25rem;
		margin-left: 0;
	}

	.atf-post-btn-group {
		flex-wrap: wrap;
	}

	li.children.ml-100 {
		margin-left: 0;
	}
}

.atf-author-social {
	margin-top: 0.625rem;
}

.atf-author-social-icon {
	display: flex;
	align-items: center;
	gap: 0.625rem;
	justify-content: center;
}

.atf-author-social-icon li {
	display: flex;
	align-items: center;
	gap: 0.625rem;
}

.atf-author-social-icon li a {
	display: inline-block;
	font-size: 0.9375rem;
	width: 2.5rem;
	height: 2.5rem;
	line-height: 2.5rem;
	color: var(--atf-thm-black);
	background: var(--atf-grey-7);
	text-align: center;
	border-radius: 50%;
	box-shadow: 0 0 0.9375rem rgba(255, 255, 255, 0.1);
	transition: all 0.5s ease-in-out 0s;
	-webkit-transition: all 0.5s ease-in-out 0s;
}

.atf-author-social-icon li a:hover {
	background: var(--atf-thm-color);
	color: var(--atf-thm-white);
	box-shadow: 0 0 0.9375rem rgba(255, 255, 255, 0.3)inset;
}

/* START BLOG COMMENT DESIGN */
.blogpost-comment {
	background: var(--atf-grey-7);
	padding: 2.5rem 2.5rem;
	border-radius: 0.9375rem;
}

.blogpost-comment-title {
	font-size: 2.25rem;
	font-weight: 500;
	color: var(--atf-thm-black);
}

.blogpost-comment ul li {
	list-style: none;
}

@media only screen and (max-width:767px) {
	li.children.ml-100 {
		margin-left: 0;
	}
}

.blogpost-comment-box {
	margin-bottom: 1.875rem;
	border-bottom: 0.0625rem solid var(--atf-border-1);
	padding-bottom: 1.875rem;
}

.border-none {
	border: inherit;
}

.blogpost-comment-avater img {
	border-radius: 0.9375rem;
}

.blogpost-comment-avater {
	flex: 0 0 auto;
}

.blogpost-comment-name {
	font-size: 1.25rem;
	font-weight: 500;
	color: var(--atf-thm-black);
}

.blogpost-comment-text p {
	margin-bottom: 0.9375rem;
}

.blogpost-comment-reply a {
	font-size: 1rem;
	font-weight: 500;
	display: inline-block;
	padding: 0.3125rem 1.25rem;
	border-radius: 0.3125rem;
	background: var(--atf-thm-black);
	color: var(--atf-thm-white);
	-webkit-transition: all 0.3s ease-out;
	-moz-transition: all 0.3s ease-out;
	-ms-transition: all 0.3s ease-out;
	-o-transition: all 0.3s ease-out;
	transition: all 0.3s ease-out;
	position: absolute;
	right: 1.875rem;
	top: 0rem;
}

.blogpost-comment-reply a:hover {
	background: var(--atf-thm-color);
	color: var(--atf-thm-white);
}

.blogpost-comment-from .atf-contact-form .atf_contact_input textarea {
	height: 7.5rem;
	width: 100%;
}

.blogpost-comment-from {
	background: var(--atf-grey-7);
	padding: 1.875rem 2.5rem;
	border-radius: 0.9375rem;
}

/*********************************** 
START SIDEBAR DESIGN 
***********************************/
.sidebar-widget-social {
	margin-top: 0.75rem;
	background: var(--atf-thm-black);
}

.sidebar-social-content i {
	width: 4.0625rem;
	height: 4.0625rem;
	font-size: 1rem;
	line-height: 4.0625rem;
	text-align: center;
	border-radius: 0;
	margin-right: 1.25rem;
	color: var(--atf-thm-white);
	background: var(--atf-thm-color);
	-webkit-transition: all 0.3s ease-out;
	-moz-transition: all 0.3s ease-out;
	-ms-transition: all 0.3s ease-out;
	-o-transition: all 0.3s ease-out;
	transition: all 0.3s ease-out;
}

.sidebar-widget-social:hover .sidebar-social-content i {
	color: var(--atf-thm-white);
	background: var(--atf-thm-black);
}

.sidebar-widget {
	padding: 3.125rem;
	background: var(--atf-grey-7);
	border-radius: 0.9375rem;
	text-align: left;
}

.sidebar-widget:not(:last-child) {
	margin-bottom: 1.875rem;
}

.sidebar-widget-title {
	font-weight: 500;
	line-height: 1.5;
	font-size: 1.5rem;
	position: relative;
	padding-left: 2.1875rem;
}

.sidebar-widget-title::after {
	content: '';
	position: absolute;
	left: 0;
	top: 0.6875rem;
	border: 0.0625rem solid var(--atf-thm-black);
	display: inline-block;
	padding: 0.3125rem;
	-webkit-transition: all 0.3s ease-out;
	-moz-transition: all 0.3s ease-out;
	-ms-transition: all 0.3s ease-out;
	-o-transition: all 0.3s ease-out;
	transition: all 0.3s ease-out;
	margin: 0 0 0.125rem 0.25rem;
	background: var(--atf-thm-black);
	transform: rotate(-45deg);
	-webkit-transform: rotate(-45deg);
}

@media only screen and (min-width: 1200px) and (max-width: 1399px) {
	.sidebar-widget {
		padding: 2.5rem;
	}
}

.sidebar-search-input {
	position: relative;
}

.sidebar-search-input input:focus {
	border: 0.0625rem solid var(--atf-thm-color);
}

.sidebar-search-input input {
	border: 0;
	height: 3.625rem;
	border: 0.0625rem solid transparent;
	border-radius: 2.5rem 0 2.5rem 2.5rem;
	background-color: var(--atf-thm-white);
}

.sidebar-search-input button {
	position: absolute;
	right: 0;
	width: 3.625rem;
	height: 3.625rem;
	font-size: 1rem;
	line-height: 3.625rem;
	text-align: center;
	color: var(--atf-thm-white);
	background: var(--atf-thm-color);
	border-radius: 0 0 0.9375rem 0;
}

.lp-post {
	margin-bottom: 0.9375rem;
	border-radius: 0.9375rem;
	-webkit-transition: all 0.3s ease-out;
	-moz-transition: all 0.3s ease-out;
	-ms-transition: all 0.3s ease-out;
	-o-transition: all 0.3s ease-out;
	transition: all 0.3s ease-out;
	padding: 0.9375rem;
	background: white;
}

.lp-post:hover {
	background: var(--atf-grey-8);
}

.lp-post-thumb {
	margin-right: 0.9375rem;
	flex: 0 0 auto;
}

.lp-post-thumb a img {
	width: 4.5rem;
	height: 4.5rem;
	border-radius: 10%;
}

.lp-meta {
	font-size: 0.75rem;
	margin-top: 0rem;
}

.lp-meta i {
	font-size: 0.875rem;
	color: var(--atf-thm-black);
	margin-right: 0.3125rem;
}

.lp-post-title {
	font-size: 1.25rem;
	font-weight: 500;
	color: hsl(0, 0%, 20%);
	-webkit-transition: all 0.3s ease-out;
	-moz-transition: all 0.3s ease-out;
	-ms-transition: all 0.3s ease-out;
	-o-transition: all 0.3s ease-out;
	transition: all 0.3s ease-out;
}

.lp-post-title:hover {
	color: hsl(0, 0%, 10%);
}

.sidebar-widget-content ul li {
	position: relative;
	display: block;
}

.sidebar-widget-content ul li a {
	font-size: 1rem;
	font-weight: 500;
	padding: 0.625rem 0rem;
	background: var(--atf-thm-white);
	color: var(--atf-thm-black);
	display: block;
	-webkit-transition: all 0.3s ease-out;
	-moz-transition: all 0.3s ease-out;
	-ms-transition: all 0.3s ease-out;
	-o-transition: all 0.3s ease-out;
	transition: all 0.3s ease-out;
	border-radius: 0.9375rem;
	padding-left: 1.5625rem;
	margin: 0.9375rem 0;
}

.sidebar-widget-content ul li a:hover {
	color: var(--atf-thm-white);
	background: var(--atf-thm-color);
}

.sidebar-widget-content ul li a i {
	position: absolute;
	left: 0rem;
	top: 50%;
	transform: translateY(-50%);
}

.sidebar-widget-content ul li span {
	position: absolute;
	right: 1.25rem;
	top: 50%;
	transform: translateY(-50%);
}

.instagram-sidebar-image-area {
	display: grid;
	grid-template-columns: 1fr 1fr 1fr;
	gap: 0.625rem;
}

.instagram-sidebar-image img {
	width: 100% !important;
	height: 100% !important;
	margin-bottom: 0 !important;
	border-radius: 0.3125rem;
}

.instagram-sidebar-image {
	transition: all 0.4s ease 0s;
	position: relative;
}

.instagram-sidebar-image::before {
	content: "";
	width: 100%;
	height: 100%;
	opacity: 0;
	position: absolute;
	top: 0;
	left: 0;
	background: var(--atf-thm-color);
	transition: all 0.4s ease-in;
	overflow: hidden;
	border-radius: 0.3125rem;
}

.instagram-sidebar-image:hover::before {
	opacity: 1;
}

.instagram-sidebar-image .icon {
	opacity: 0;
	transform: translate(-50%, -50%);
	position: absolute;
	left: 50%;
	top: 0;
	transition: all 0.4s ease 0s;
}

.instagram-sidebar-image:hover .icon {
	opacity: 1;
	top: 50%;
}

.instagram-sidebar-image .icon a {
	color: var(--atf-thm-white);
	font-size: 1.25rem;
	text-align: center;
	line-height: 2.375rem;
	display: block;
	transition: all 0.4s ease 0s;
}

/*----------------------------------------*/
/*   START PAGINATION DESIGN
/*--------------------------------------*/
.pagination-outer {
	text-align: center;
}

.pagination {

	display: inline-flex;
	position: relative;
}

.pagination li a.page-link {
	color: var(--atf-thm-white);
	background: var(--atf-thm-color);
	font-size: 1.125rem;
	font-weight: 500;
	text-align: center;
	line-height: 3.3125rem;
	height: 3.125rem;
	width: 3.125rem;
	padding: 0;
	margin: 0 0.4375rem;
	border: none;
	border-radius: 0;
	display: block;
	position: relative;
	z-index: 0;
	-webkit-transition: all 0.5s ease-in-out 0s;
	transition: all 0.5s ease-in-out 0s;
}

.pagination li:first-child a.page-link,
.pagination li:last-child a.page-link {
	font-size: 1.125rem;
	line-height: 3.125rem;
}

.pagination li a.page-link:hover,
.pagination li a.page-link:focus,
.pagination li.active a.page-link:hover,
.pagination li.active a.page-link {
	color: var(--atf-thm-white);
	background: transparent;
}

.pagination li a.page-link:before,
.pagination li a.page-link:after {
	content: '';
	background-color: var(--atf-thm-black);
	height: 60%;
	width: 100%;
	opacity: 0;
	position: absolute;
	left: 0;
	top: 0;
	z-index: -1;
	-webkit-transition: all 0.5s ease-in-out 0s;
	transition: all 0.5s ease-in-out 0s;
	clip-path: polygon(50% 0%, 100% 50%, 50% 100%, 0% 50%);
}

.pagination li a.page-link:after {
	top: auto;
	bottom: 0;
}

.pagination li a.page-link:hover:before,
.pagination li a.page-link:focus:before,
.pagination li.active a.page-link:hover:before,
.pagination li.active a.page-link:before {
	opacity: 1;
	top: 0.1875rem;
}

.pagination li a.page-link:hover:after,
.pagination li a.page-link:focus:after,
.pagination li.active a.page-link:hover:after,
.pagination li.active a.page-link:after {
	opacity: 1;
	bottom: 0.1875rem;
}

@media only screen and (max-width: 480px) {
	.pagination {
		font-size: 0;
		display: inline-block;
	}

	.pagination li {
		display: inline-block;
		vertical-align: top;
		margin: 0 0 0.9375rem;
	}
}

/*----------------------------------------*/
/*   END PAGINATION DESIGN
/*--------------------------------------*/
/*----------------------------------------*/
/*   START ERROR DESIGN
/*--------------------------------------*/
.atf-error-image img {
	border-radius: 2.5rem 0 2.5rem 2.5rem;
}

.error-search-input {
	position: relative;
}

.error-search-input input:focus {
	border: 0.0625rem solid var(--atf-thm-color);
}

.error-search-input input {
	border: 0;
	height: 3.625rem;
	border: 0.0625rem solid transparent;
	border-radius: 0.9375rem;
	box-shadow: 0 0 0.9375rem rgba(0, 0, 0, 0.1);
	background-color: var(--atf-thm-white);
}

.error-search-input button {
	position: absolute;
	right: 0;
	width: 3.625rem;
	height: 3.625rem;
	font-size: 1rem;
	line-height: 3.625rem;
	text-align: center;
	color: var(--atf-thm-white);
	background: var(--atf-thm-black);
	border-radius: 0 0.9375rem 0.9375rem 0;
}

.error-search-input button {
	font-size: 1rem;
	line-height: 3.625rem;
	text-align: center;
	color: var(--atf-thm-white);
}

/*----------------------------------------*/
/* END ERROR DESIGN
/*--------------------------------------*/
/*----------------------------------------*/
/*   START SERVICE DETAILS DESIGN
/*--------------------------------------*/
.service-details-thumb {
	position: relative;
}

.service-details-thumb img {
	width: 100%;
	border-radius: 1.25rem;
	clip-path: polygon(20% 0%, 80% 0%, 100% 20%, 100% 80%, 80% 100%, 20% 100%, 0% 80%, 0% 20%);
}

.service-details-meta-box-area {
	padding: 1.875rem 2.5rem;
	border-radius: 0 0 1.875rem 1.875rem;
}

.service-details-meta-icon {
	font-size: 1.125rem;
	margin-right: 0.5rem;
	color: var(--atf-thm-color);
}

.service-details-title {
	font-size: 2.25rem;
	font-weight: 500;
	color: var(--atf-thm-black);
	-webkit-transition: all 0.3s ease-out;
	-moz-transition: all 0.3s ease-out;
	-ms-transition: all 0.3s ease-out;
	-o-transition: all 0.3s ease-out;
	transition: all 0.3s ease-out;
}

.service-details-text p {
	margin-bottom: 1.25rem;
}

.service-details-list-title {
	font-size: 1.5rem;
}

.service-details-list-content {
	gap: 1.875rem;
}

.service-details-list-thumb img {
	border-radius: 0.9375rem;
	clip-path: polygon(20% 0%, 80% 0%, 100% 20%, 100% 80%, 80% 100%, 20% 100%, 0% 80%, 0% 20%);
}

@media only screen and (max-width:767px) {
	.service-details-list {
		margin-top: 1.875rem;
	}

	.service-details-list.w-50,
	.service-details-list-thumb.w-50 {
		width: 100% ! important;
	}

	.service-details-list-content {
		flex-wrap: wrap;
	}
}

.service-details-list ul li {
	list-style: none;
	position: relative;
	padding-left: 1.75rem;
	margin-bottom: 0.625rem;
	color: var(--atf-thm-black);
}

.service-details-list ul li i {
	position: absolute;
	left: 0;
	top: 0.3125rem;
	color: var(--atf-thm-color);
	font-size: 1.25rem;
}

.service-details-list ul li p {
	margin: 0;
}

.atf_service__details_sidebar_title {
	font-size: 1.5rem;
	line-height: 1.4;
}

.atf_service__details-sidebar-icon span {
	height: 6.25rem;
	width: 6.25rem;
	line-height: 6.25rem;
	background: var(--atf-thm-color);
	border-radius: 50%;
	margin: 0 auto;
	font-size: 1.5625rem;
	display: block;
	color: var(--atf-thm-white);
}

.service-details-featured-item {
	border: 0.0625rem solid var(--atf-border-1);
	padding: 1.5625rem;
}

.atf-service-thumb img {
	position: relative;
}

.atf-service-icon-post span {
	font-size: 1.25rem;
	background: var(--atf-thm-color);
	width: 3.75rem;
	height: 3.75rem;
	display: inline-block;
	justify-content: center;
	display: flex;
	align-items: center;
	color: var(--atf-thm-white);
	border-radius: 0.9375rem;
}

.atf-service-icon-post {
	position: absolute;
	bottom: 5%;
	right: 4%;
}

/*----------------------------------------*/
/*   END SERVICE DETAILS DESIGN
/*--------------------------------------*/
/*--------------------------------------------------------------
START GALLERY DETAILS DESIGN
----------------------------------------------------------------*/
.atf_portfolio__details-title {
	font-size: 2.25rem;
}

.atf_portfolio__details-wrapper p {
	margin-bottom: 0.9375rem;
}

.atf_portfolio__details-thumb img {
	border-radius: 0.9375rem;
	position: relative;
	overflow: hidden;
	object-fit: cover;
	clip-path: polygon(20% 0%, 80% 0%, 100% 20%, 100% 80%, 80% 100%, 20% 100%, 0% 80%, 0% 20%);
}

.portfolio_contact_box {
	text-align: left;
	border-radius: 0.9375rem;
}

.atf_portfolio-details-contact_info ul li {
	margin-bottom: 0.75rem;
	list-style: none;
}

.atf_portfolio-details-contact_info ul li span {
	font-weight: 500;
	color: var(--atf-thm-black);
	transition: all 0.3s ease-in-out 0s;
}

.atf_portfolio-details-contact_info ul li a:hover {
	color: var(--atf-thm-black);
	text-decoration: underline;
}

.atf_portfolio__details-social ul li {
	display: block;
	margin-bottom: 0.625rem;
}

.atf_portfolio__details-social ul li:not(:last-child) {
	margin-right: 0.3125rem;
}

.atf_portfolio__details-social ul li a {
	display: inline-block;
	width: 2.5rem;
	height: 2.5rem;
	line-height: 2.625rem;
	text-align: center;
	background: var(--atf-thm-color);
	color: var(--atf-thm-white);
	-webkit-border-radius: 5%;
	-moz-border-radius: 5%;
	border-radius: 5%;
	-webkit-transition: all 0.5s ease-out;
	transition: all 0.5s ease-out;
}

.atf_portfolio__details-social ul li a:hover {
	background: var(--atf-thm-black);
	color: var(--atf-thm-white);
}

@media (max-width: 991px) {
	.atf_portfolio__details-social ul li {
		display: inline-block;
		margin-bottom: 0rem;
	}
}

.portfolio-details-list-title {
	font-size: 1.5rem;
}

.portfolio-details-list ul li {
	list-style: none;
	position: relative;
	padding-left: 1.75rem;
	margin-bottom: 0.625rem;
	color: var(--atf-thm-black);
}

.portfolio-details-list ul li i {
	position: absolute;
	left: 0;
	top: 0.3125rem;
	color: var(--atf-thm-color);
	font-size: 1.25rem;
}

.portfolio-details-list-thumb img {
	border-radius: 2.5rem 0 2.5rem 2.5rem;
}

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

	.portfolio-details-list.w-50,
	.atf_portfolio__details-thumb.w-50 {
		width: 100% ! important;
	}

	.atf_portfolio__details-item {
		flex-wrap: wrap;
	}

	.atf_portfolio__details-item.mb-30 {
		margin-bottom: 0;
	}
}

/*--------------------------------------------------------------
END GALLERY DETAILS DESIGN
----------------------------------------------------------------*/
/*--------------------------------------------------------------
START TEAM DETAILS DESIGN
----------------------------------------------------------------*/
.atf_team-details-thumb img {
	border-radius: 0.9375rem;
}

.atf_team-details-list p {
	margin-bottom: 1.25rem;
}

.team_progress_title {
	font-size: 1.25rem;
	font-weight: 500;
	color: var(--atf-thm-black);
}

.progress {
	overflow: visible ! important;
}

.progress-bar {
	overflow: visible;
}

.progress .progress-bar {
	position: relative;
	background: var(--atf-thm-color);
	-webkit-animation: animate-positive 5s;
	animation: animate-positive 5s;
}

.progress .progress-bar::after {
	content: "\f3c5";

	font-weight: 500;
	position: absolute;
	top: -1.375rem;
	right: -0.4375rem;
	font-size: 1.5625rem;
	color: var(--atf-thm-black);
}

@-webkit-keyframes animate-positive {
	0% {
		width: 0%;
	}
}

@keyframes animate-positive {
	0% {
		width: 0%;
	}
}

.atf_team-details-list ul li {
	margin-bottom: 0.75rem;
	list-style: none;
}

.atf_team-details-list ul li span {
	font-weight: 500;
	color: var(--atf-thm-black);
	transition: all 0.3s ease-in-out 0s;
}

.atf_team-details-list ul li a:hover {
	color: var(--atf-thm-black);
	text-decoration: underline;
}

.atf_team__details-social ul li {
	display: block;
	margin-bottom: 0.625rem;
}

.atf_team__details-social ul li:not(:last-child) {
	margin-right: 0.3125rem;
}

.atf_team__details-social ul li a {
	display: inline-block;
	width: 2.5rem;
	height: 2.5rem;
	line-height: 2.625rem;
	text-align: center;
	background: var(--atf-thm-color);
	color: var(--atf-thm-white);
	-webkit-border-radius: 5%;
	-moz-border-radius: 5%;
	border-radius: 5%;
	-webkit-transition: all 0.5s ease-out;
	transition: all 0.5s ease-out;
}

.atf_team__details-social ul li a:hover {
	background: var(--atf-thm-black);
	color: var(--atf-thm-white);
}

@media (max-width: 991px) {
	.atf_team__details-social ul li {
		display: inline-block;
		margin-bottom: 0rem;
	}
}

.atf-brand-title {
	position: relative;
}

.atf-brand-title h3 {
	margin: 0;
	font-size: 1.375rem;
	display: inline-block;
}

.atf-brand-title::after {
	content: '';
	position: absolute;
	right: 3.75rem;
	top: 0.5rem;
	border: 0.0625rem solid var(--atf-thm-black);
	display: inline-block;
	padding: 0.375rem;
	margin: 0 0 0.125rem 0.25rem;
	background: var(--atf-thm-black);
	transform: rotate(-45deg);
	-webkit-transform: rotate(-45deg);
}

/*--------------------------------------------------------------
END TEAM DETAILS DESIGN
----------------------------------------------------------------*/
/*--------------------------------------------------------------
START TERM PRIVACY DETAILS DESIGN
----------------------------------------------------------------*/
.atf-terms-details p {
	margin-bottom: 0.9375rem;
}

.privacy-policy-details p {
	margin-bottom: 0.9375rem;
}

.atf-terms-details strong {
	font-weight: 500;
	color: var(--atf-thm-black);
}

/*--------------------------------------------------------------
END TERM PRIVACY DETAILS DESIGN
----------------------------------------------------------------*/
/*----------------------------------------*/
/* 09. END BLOG DESIGN
/*--------------------------------------*/
/*----------------------------------------*/
/*  10. START NEWSLETTER DESIGN
/*--------------------------------------*/
.atf-single-newsletter {
	position: relative;
}

.atf-single-newsletter .atf_contact_input input {
	background: transparent;
	color: var(--atf-thm-white);
	border: 0.0625rem solid rgba(255, 255, 255, 0.1);
	width: 100%;
	font-size: 1rem;
	border-radius: 0.3125rem;
	display: inline-block;
	padding-left: 0.9375rem;
}

.atf-single-newsletter .atf_contact_input input:focus {
	box-shadow: none;
	outline: 0 none;
	background: transparent;
	border-color: inherit;
	box-shadow: 0 0 0.9375rem rgba(0, 0, 0, 0.1);
	border: 0.0625rem solid var(--atf-thm-color);
}

.atf-single-newsletter .atf_contact_input {
	margin-bottom: 0;
}

.atf-single-newsletter .subcribe-btn {
	position: absolute;
	right: 0.3125rem;
	top: 0.3125rem;
	font-size: 0.8125rem;
	color: var(--atf-thm-white);
	background: var(--atf-thm-black);
	padding: 0.6875rem 1.125rem;
	border-radius: 0.9375rem;
}

/*----------------------------------------*/
/* 10. END NEWSLETTER DESIGN
/*--------------------------------------*/
/*----------------------------------------*/
/* 11. START CONTACT DESIGN
/*--------------------------------------*/
.atf-contact-form .button {
	margin: 0;
}

.atf-contact-form label {
	font-weight: 500;
	color: var(--atf-thm-black);
	font-size: 1.125rem;
}

.atf-contact-form .atf_contact_input input,
.atf-contact-form .atf_contact_input textarea {
	border-radius: 0.9375rem;
	border: 0.0625rem solid rgba(0, 0, 0, 0.1);
	transition: all 0.3s ease-in-out 0s;
	margin: 0.625rem 0;
	padding-left: 1.25rem;
}

.atf-contact-form .atf_contact_input input:focus,
.atf-contact-form .atf_contact_input textarea:focus {
	box-shadow: none;
	border: 0.0625rem solid var(--atf-thm-color);
}

.atf-contact-form .atf_contact_input textarea {
	height: 7.5rem;
	width: 100%;
}

.atf-choose-list.nice-select {
	border-radius: 0;
	width: 100%;
	background: var(--atf-thm-white);
	border: 0.0625rem solid #d5d8db;
	color: var(--atf-thm-black);
	height: 3.75rem;
	padding-left: 0.9375rem;
}

.atf_contact_input .nice-select {
	height: 3.4375rem;
	line-height: 3.4375rem;
	border-radius: 0.625rem;
	border: 0.0625rem solid #d5d8db;
	color: var(--atf-text-body);
	float: none;
	padding: 0 1.25rem;
	font-size: 1rem;
	margin: 0.625rem 0;
}

.atf_contact_input .nice-select::after {
	right: 1.25rem;
}

.atf-contact-btn .atf-themes-btn {
	margin-top: 0.625rem;
	text-align: center;
}

.form-message {
	color: var(--atf-thm-black);
}

.atf-contact-details {
	background: var(--atf-grey-7);
	padding: 1.875rem 1.875rem;
}

.atf-contact-address h3 {
	font-size: 1.5rem;
	font-weight: 500;
}

.atf-contact-address p {
	margin: 0;
}

.atf-contact-icon {
	width: 6.25rem;
	height: 6.25rem;
	line-height: 6.25rem;
	background: var(--atf-thm-color);
	font-size: 1.875rem;
	color: var(--atf-thm-white);
	text-align: center;
	border-radius: 50%;
}

.map iframe {
	width: 100%;
	height: 100%;
	min-height: 31.25rem;
	display: block;
	border-radius: 2.5rem;
}

/*----------------------------------------*/
/* 11. END CONTACT DESIGN
/*--------------------------------------*/
/*----------------------------------------*/
/* 12. START CLIENT DESIGN
/*--------------------------------------*/
.testimonial-card {
	background: var(--atf-thm-white);
	border-radius: 1.25rem;
	padding: 2.5rem 1.875rem;
	max-width: 28.125rem;
	transition: all 0.3s ease;
	margin: 0 0.75rem;
}

.testimonial-card:hover {
	transform: translateY(-0.3125rem);
	box-shadow: 0 0.625rem 1.875rem rgba(0, 0, 0, 0.1);
}

.rating {
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	color: var(--atf-thm-color);
	font-weight: 500;
	font-size: 1rem;
	padding: 0.625rem 1.25rem;
	border-radius: 3.125rem;
	box-shadow: 0 0 0 0.5rem rgba(255, 102, 0, 0.3), 0 0 0 0.375rem rgba(255, 239, 228, 0.15);
}

.rating i {
	color: var(--atf-thm-color);
}

.testimonial-text {
	font-size: 1rem;
	margin-bottom: 2.1875rem;
	border-bottom: 0.0625rem solid #eee;
	padding-bottom: 1.5625rem;
}

.testimonial-author {
	display: flex;
	align-items: center;
	background: #f9f9f9;
	padding: 0.9375rem;
	border-radius: 0.9375rem;
}

.testimonial-author img {
	width: 5.3125rem;
	height: 5.3125rem;
	border-radius: 50%;
	object-fit: cover;
	margin-right: 1.25rem;
	border: 0.1875rem solid var(--atf-thm-white);
	clip-path: polygon(50% 0%, 100% 38%, 82% 100%, 18% 100%, 0% 38%);
}

.author-info h3 {
	font-weight: 500;
	margin-bottom: 0.1875rem;
	font-size: 1.5rem;
}

.author-info span {
	font-size: 0.875rem;
	color: var(--atf-text-body);
}

/*----------------------------------------*/
/*  12. END CLIENT DESIGN
/*--------------------------------------*/
/*----------------------------------------*/
/*  13. START CTA DESIGN
/*--------------------------------------*/
.atf-cta-title {
	line-height: 1.4;
	font-size: 2.25rem;
}

.atf-cta-area {
	margin-bottom: -7.5rem;
	z-index: 3;
	position: relative;
	clip-path: polygon(20% 0%, 80% 0%, 100% 20%, 100% 80%, 80% 100%, 20% 100%, 0% 80%, 0% 20%);
}

.atf-cta-area .atf-cover-bg::before {
	border-radius: 3.125rem;
	background: rgba(0, 0, 0, 0.2);
}

@media only screen and (max-width:991px) {
	.atf-cta-action-1 {
		margin-top: 1.5625rem;
	}
}

.atf-themes-btn.cta-btn:before {
	content: "";
	position: absolute;
	bottom: 0;
	left: 0;
	border-width: 0;
	border-style: solid;
	z-index: -1;
	transition: all 0.6s ease 0s;
	border-color: rgba(0, 0, 0, 0) rgba(0, 0, 0, 0) rgba(0, 0, 0, 0) var(--atf-thm-black);
}

.atf-themes-btn.cta-btn:after {
	content: "";
	position: absolute;
	bottom: 0;
	right: 0;
	border-width: 0;
	border-style: solid;
	z-index: -1;
	transition: all 0.6s ease 0s;
	border-color: rgba(0, 0, 0, 0) rgba(0, 0, 0, 0) var(--atf-thm-black);
}

.atf-themes-btn.cta-btn:hover:before {
	border-width: 12.8125rem 0 0 12.8125rem;
}

.atf-themes-btn.cta-btn:hover::after {
	border-width: 0 0 12.8125rem 12.8125rem;
}

/* Custom background shapes */
.left-glow {
	position: absolute;
	width: 12.5rem;
	height: 12.5rem;
	background: radial-gradient(circle, #fd6a31 0%, transparent 70%);
	bottom: 10%;
	left: -5%;
	z-index: 0;
	opacity: 0.7;
	animation: zoom 9s infinite;
}

.right-dots {
	position: absolute;
	right: -10rem;
	top: 10%;
	width: 25rem;
	height: 25rem;
	background-image: radial-gradient(#b0ff84 10%, transparent 10%);
	background-size: 1.25rem 1.25rem;
	background-position: center;
	opacity: 0.25;
	z-index: 0;
	transform: rotate(45deg);
}

.blur-circle {
	position: absolute;
	top: 20%;
	right: 0%;
	width: 6.25rem;
	height: 6.25rem;
	background: radial-gradient(circle, #fff 0%, transparent 60%);
	filter: blur(1.25rem);
	opacity: 0.7;
	animation: zoom 7s infinite;
}

@media (max-width: 768px) {
	.right-dots {
		display: none;
	}
}

/*----------------------------------------*/
/*  13. END CTA DESIGN
/*--------------------------------------*/
/*----------------------------------------*/
/*  14. START FOOTER DESIGN
/*--------------------------------------*/
.atf-footer-area.atf-cover-bg::before {
	background: rgba(0, 0, 0, 0.9);
}

.atf-footer-widget-logo img {
	margin-top: -0.25rem;
}

.atf-footer-widget.footer-col-4-1 p {
	color: var(--atf-thm-white);
}

.atf-footer-widget-text {
	margin-bottom: 1.5625rem;
}

.atf-footer-widget-text p {
	font-weight: 500;
	margin-right: 2.5rem;
	color: #9ca6ae;
}

.atf-footer-widget-title {
	font-size: 1.5rem;
	font-weight: 500;
	line-height: 1.2;
	display: inline-block;
	color: var(--atf-thm-white);
	margin-bottom: 3.125rem;
}

@media (max-width: 575px) {
	.atf-footer-widget-title {
		margin-bottom: 1.875rem;
	}
}

.atf-footer-widget-menu ul li {
	list-style-type: none;
	margin-bottom: 0.625rem;
}

.atf-footer-widget-menu ul li a {
	position: relative;
	font-size: 1rem;
	color: #9ca6ae;
	font-weight: 500;
	display: inline-block;
	-webkit-transition: all 0.3s ease-out;
	-moz-transition: all 0.3s ease-out;
	-ms-transition: all 0.3s ease-out;
	-o-transition: all 0.3s ease-out;
	transition: all 0.3s ease-out;
}

.atf-footer-widget-menu ul li a::before {
	position: absolute;
	width: 0.9375rem;
	height: 0.125rem;
	top: 50%;
	left: -0.9375rem;
	content: "";
	opacity: 0;
	visibility: hidden;
	border-radius: 0%;
	-webkit-transition: all 0.3s ease-out;
	-moz-transition: all 0.3s ease-out;
	-ms-transition: all 0.3s ease-out;
	-o-transition: all 0.3s ease-out;
	transition: all 0.3s ease-out;
	transform: translateY(-50%);
	background: var(--atf-thm-white);
}

.atf-footer-widget-menu ul li a:hover {
	padding-left: 1.5625rem;
	color: var(--atf-thm-white);
}

.atf-footer-widget-menu ul li a:hover::before {
	opacity: 1;
	visibility: visible;
	left: 0;
}

.atf-footer-widget-social ul li {
	list-style-type: none;
	display: inline-block;
	margin-right: 0.625rem;
	margin-top: 0.3125rem;
}

.atf-footer-widget-social ul li:last-child {
	margin-right: 0;
}

.atf-footer-widget-social ul li {
	width: 2.5rem;
	height: 2.5rem;
	line-height: 2.5rem;
	font-size: 0.875rem;
	text-align: center;
	display: inline-block;
	border-radius: 50%;
	-webkit-transition: all 0.3s ease-out;
	-moz-transition: all 0.3s ease-out;
	-ms-transition: all 0.3s ease-out;
	-o-transition: all 0.3s ease-out;
	transition: all 0.3s ease-out;
	color: var(--atf-thm-white);
}


/* ---------- 社交图标：悬浮二维码浮层 ---------- */
.atf-footer-widget-social ul li {
	position: relative;
}

.atf-footer-widget-social ul li {
	position: relative;
}

/* 圆形底内的小图标：自适应缩放，避免撑破圆（排除悬浮二维码浮层） */
.atf-footer-widget-social ul li>img:not(.qr-pop) {
	object-fit: contain;
	vertical-align: middle;
}

/* 二维码浮层：默认隐藏，划过图标时在图标上方弹出（span 容器即白色卡片） */
.atf-footer-widget-social .qr-pop {
	position: absolute;
	left: 50%;
	bottom: calc(100% + 0.9375rem);
	transform: translateX(-50%) translateY(0.3125rem);
	width: 8rem;
	height: 8rem;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 0.375rem;
	background: #fff;
	border-radius: 1rem;
	box-shadow: 0 1rem 2.25rem rgba(0, 0, 0, 0.35);
	opacity: 0;
	visibility: hidden;
	transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s;
	z-index: 99;
}

/* 卡片内二维码：等比完整显示，不裁剪 */
.atf-footer-widget-social .qr-pop img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: contain;
}

/* 版权条内链接颜色（原为内联样式，现下沉到 CSS） */
.atf-copyright-text a {
	color: rgba(255, 255, 255, 0.7);
	transition: color 0.3s ease;
}

.atf-copyright-text a:hover {
	color: #fff;
}

/* 小三角指向图标 */
.atf-footer-widget-social .qr-pop::after {
	content: "";
	position: absolute;
	top: 100%;
	left: 50%;
	transform: translateX(-50%);
	border: 0.5rem solid transparent;
	border-top-color: #fff;
}

.atf-footer-widget-social ul li:hover .qr-pop {
	opacity: 1;
	visibility: visible;
	transform: translateX(-50%) translateY(0);
}

.atf-footer-widget-info {
	gap: 1.5625rem;
}

.atf-footer-widget-info a {
	position: relative;
	font-weight: 500;
	font-size: 1rem;
	color: var(--atf-thm-white);
	display: block;
}

.atf-footer-widget-info p {
	color: var(--atf-thm-white);
	margin: 0;
	font-size: 1rem;
	font-weight: 500;
}

.atf-footer-widget-info span {
	color: var(--atf-thm-color);
	font-size: 1.125rem;
}

.atf-footer-widget-info a::after {
	position: absolute;
	width: 0;
	height: 0.0625rem;
	bottom: 0;
	left: 0;
	content: "";
	opacity: 0;
	visibility: hidden;
	background: #9fa8ae;
	-webkit-transition: all 0.3s ease-out;
	-moz-transition: all 0.3s ease-out;
	-ms-transition: all 0.3s ease-out;
	-o-transition: all 0.3s ease-out;
	transition: all 0.3s ease-out;
}

.atf-footer-widget-info a:hover::after {
	width: 100%;
	opacity: 1;
	visibility: visible;
}

.atf-copyright-style {
	background: #1c2e3c;
}

.atf-copyright-text p {
	font-weight: 500;
	color: var(--atf-rgb-white);
}

.atf-copyright-text p a {
	color: var(--atf-thm-white);
}

@media only screen and (min-width: 768px) and (max-width: 991px),
only screen and (min-width: 576px) and (max-width: 767px),
(max-width: 575px) {
	.atf-footer-widget.footer-col-4-2 {
		margin-left: 0;
	}
}

@media only screen and (min-width: 768px) and (max-width: 991px),
only screen and (min-width: 576px) and (max-width: 767px),
(max-width: 575px) {
	.atf-footer-widget {
		margin-bottom: 2.5rem;
	}

}

@media only screen and (max-width:991px) {
	.atf-footer-area.atf-section-padding {
		padding-bottom: 2.5rem;
	}
}

@media only screen and (max-width:576px) {
	.atf-footer-area.atf-section-padding {
		padding-bottom: 1.25rem;
	}
}

.atf-footer-widget.footer-col-4-3 {
	margin-left: 0.625rem;
}

@media only screen and (min-width: 768px) and (max-width: 991px),
only screen and (min-width: 576px) and (max-width: 767px),
(max-width: 575px) {
	.atf-footer-widget.footer-col-4-3 {
		margin-left: 0;
	}
}

.atf-footer-widget-mail {
	gap: 1.25rem;
	background: var(--atf-grey-8);
}

.atf-footer-widget-mail span {
	padding: 0.3125rem 0.5rem;
	background: var(--atf-thm-white);
	color: var(--atf-thm-color);
}

.atf-footer-widget-mailaddress p {
	margin: 0;
}

/*----------------------------------------*/
/*  14. END FOOTER DESIGN
/*--------------------------------------*/
/*
/*----------------------------------------*/
/*   START COMING SOON DESIGN
/*--------------------------------------*/
.atf-single-newsletter.style1 .subcribe-btn {
	right: 0rem;
	top: 0.0625rem;
	font-size: 1rem;
	padding: 0.75rem 1.125rem;
}

.comingsoon-details-social a {
	width: 3.125rem;
	height: 3.125rem;
	font-size: 1rem;
	line-height: 3.125rem;
	text-align: center;
	border-radius: 50%;
	margin-right: 0.625rem;
	color: var(--atf-thm-black);
	background: var(--atf-grey-7);
	-webkit-transition: all 0.3s ease-out;
	-moz-transition: all 0.3s ease-out;
	-ms-transition: all 0.3s ease-out;
	-o-transition: all 0.3s ease-out;
	transition: all 0.3s ease-out;
}

.comingsoon-details-social a:hover {
	color: var(--atf-thm-white);
	background: var(--atf-thm-color);
}

/*
/*----------------------------------------*/
/*   START SLICK DESIGN
/*--------------------------------------*/
/*
*/
.slick-arrow-2 .slick-arrow {
	cursor: pointer;
	position: absolute;
	top: -7.5rem;
	height: 3.75rem;
	width: 3.75rem;
	line-height: 3.625rem;
	display: block;
	left: auto;
	right: 6.25rem;
	border: 0.0625rem solid;
	text-align: center;
	-webkit-box-shadow: 0 0 0.625rem rgba(0, 0, 0, 0.1);
	box-shadow: 0 0 0.625rem rgba(0, 0, 0, 0.1);
	border-radius: 50%;
}

.slick-arrow-2 .slick-arrow:hover {
	background-color: var(--atf-thm-color);
	border-color: var(--atf-thm-color);
	color: var(--atf-thm-white) !important;
}

.slick-arrow-2 .slick-next {
	right: 0.9375rem;
	background-color: var(--atf-thm-white);
	border-color: var(--atf-thm-color);
	color: var(--thm-color) !important;
}

.slick-arrow-2 .slick-prev {
	background-color: var(--atf-thm-color);
	border-color: var(--atf-thm-color);
	color: var(--atf-thm-white) !important;
}

/* slick-arrow */
.slick-arrow {
	cursor: pointer;
	z-index: 3;
}

/* slick-arrow-1 */
.slick-arrow-1 .slick-arrow {
	background-color: var(--atf-thm-white);
	cursor: pointer;
	position: absolute;
	top: 50%;
	left: 0.9375rem;
	right: auto;
	-webkit-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	transform: translateY(-50%);
	width: 3.125rem;
	height: 3.125rem;
	line-height: 3rem;
	display: block;
	border: 0.0625rem solid var(--atf-thm-color);
	border-radius: 50%;
	text-align: center;
	transition: all 0.5s ease-in-out 0s;
	font-size: 1rem;
	color: var(--thm-color) !important;
	z-index: 1;
	opacity: 0;
	visibility: visible;
}

.slick-arrow-1 .slick-arrow:hover {
	background-color: var(--atf-thm-color);
	border-color: var(--atf-thm-color);
	color: var(--atf-thm-white) !important;
}

.slick-arrow-1 .slick-next {
	right: 0.9375rem;
	left: auto;
}

.slick-arrow-1:hover .slick-arrow {
	opacity: 1;
	visibility: visible;
}

.slick-arrow-1-inner.slick-arrow-1:hover .slick-arrow {
	left: 3.125rem;
	right: auto;
}

.slick-arrow-1-inner.slick-arrow-1:hover .slick-next {
	right: 3.125rem;
	left: auto;
}

@media (min-width: 1350px) {
	.slick-arrow-1:hover .slick-arrow {
		left: -3.125rem;
		right: auto;
	}

	.slick-arrow-1:hover .slick-next {
		right: -3.125rem;
		left: auto;
	}
}

/* -----------------------------------
    Slick Slider Dots, Arrow
--------------------------------------*/
/* Slick dots */
.slick-dots {
	margin: 1.875rem 0 0rem;
	padding: 0;
	display: block;
	text-align: center;
	line-height: 1;
}

.slick-dots li {
	display: inline-block;
	list-style: none;
	display: inline-block;
	font-size: 0;
	height: 0.9375rem;
	width: 0.9375rem;
	border-radius: 100%;
	margin-right: 0.625rem;
	border: 0.0625rem solid var(--atf-thm-color);
	cursor: pointer;
	margin-top: 0;
	-webkit-transition: all 0.3s ease 0s;
	-o-transition: all 0.3s ease 0s;
	transition: all 0.3s ease 0s;
}

.slick-dots li button {
	display: none;
}

.slick-dots li:hover,
.slick-dots li.slick-active {
	background-color: var(--atf-thm-color);
	height: 0.9375rem;
	width: 0.9375rem;
}

/*
* -----------------------------------------
* END SLICK DESIGN
* ----------------------------------------**/
/*----------------------------------------*/
/*ANIMATIONS
/*----------------------------------------*/
@-webkit-keyframes movingX {
	0% {
		left: 100%;
	}

	100% {
		left: -25%;
	}
}

@keyframes movingX {
	0% {
		left: 100%;
	}

	100% {
		left: -25%;
	}
}

@keyframes spin {
	0% {
		transform: rotate(0deg);
	}

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

@-webkit-keyframes spin-1 {
	0% {
		transform: rotate(10deg);
	}

	100% {
		transform: rotate(-10deg);
	}
}

@-moz-keyframes spin-1 {
	0% {
		transform: rotate(10deg);
	}

	100% {
		transform: rotate(-10deg);
	}
}

@-ms-keyframes spin-1 {
	0% {
		transform: rotate(10deg);
	}

	100% {
		transform: rotate(-10deg);
	}
}

@keyframes spin-1 {
	0% {
		transform: rotate(10deg);
	}

	100% {
		transform: rotate(-10deg);
	}
}

@keyframes moving {
	0% {
		transform: translatey(0rem);
	}

	50% {
		transform: translatey(-1.25rem);
	}

	100% {
		transform: translatey(0rem);
	}
}

@keyframes zoom {
	0% {
		transform: scale(0.5);
	}

	50% {
		transform: scale(1);
	}

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

@keyframes pulse {
	0% {
		-webkit-box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.4);
	}

	70% {
		-webkit-box-shadow: 0 0 0 2.8125rem rgba(255, 255, 255, 0);
	}

	100% {
		-webkit-box-shadow: 0 0 0 0 rgba(255, 255, 255, 0);
	}
}

@keyframes rotate2 {
	from {
		transform: rotate(0deg);
	}

	to {
		transform: rotate(360deg);
	}
}

@keyframes icon-bounce {

	0%,
	100%,
	20%,
	50%,
	80% {
		-webkit-transform: translateY(0);
		-moz-transform: translateY(0);
		-ms-transform: translateY(0);
		-o-transform: translateY(0);
		transform: translateY(0);
	}

	40% {
		-webkit-transform: translateY(-0.625rem);
		-moz-transform: translateY(-0.625rem);
		-ms-transform: translateY(-0.625rem);
		-o-transform: translateY(-0.625rem);
		transform: translateY(-0.625rem);
	}

	60% {
		-webkit-transform: translateY(-0.3125rem);
		-moz-transform: translateY(-0.3125rem);
		-ms-transform: translateY(-0.3125rem);
		-o-transform: translateY(-0.3125rem);
		transform: translateY(-0.3125rem);
	}
}

@keyframes atftranslateX2 {
	0% {
		-webkit-transform: translateX(-1.875rem);
		-moz-transform: translateX(-1.875rem);
		-ms-transform: translateX(-1.875rem);
		-o-transform: translateX(-1.875rem);
		transform: translateX(-1.875rem);
	}

	100% {
		-webkit-transform: translateX(1.25rem);
		-moz-transform: translateX(1.25rem);
		-ms-transform: translateX(1.25rem);
		-o-transform: translateX(1.25rem);
		transform: translateX(1.25rem);
	}
}

@keyframes atftranslateY2 {
	0% {
		-webkit-transform: translateY(1.875rem);
		-moz-transform: translateY(1.875rem);
		-ms-transform: translateY(1.875rem);
		-o-transform: translateY(1.875rem);
		transform: translateY(1.875rem);
	}

	100% {
		-webkit-transform: translateY(-1.25rem);
		-moz-transform: translateY(-1.25rem);
		-ms-transform: translateY(-1.25rem);
		-o-transform: translateY(-1.25rem);
		transform: translateY(-1.25rem);
	}
}

@keyframes atfswing {
	0% {
		-webkit-transform: rotate(6deg);
		-moz-transform: rotate(6deg);
		-ms-transform: rotate(6deg);
		-o-transform: rotate(6deg);
		transform: rotate(6deg);
	}

	100% {
		-webkit-transform: rotate(-6deg);
		-moz-transform: rotate(-6deg);
		-ms-transform: rotate(-6deg);
		-o-transform: rotate(-6deg);
		transform: rotate(-6deg);
	}
}

@keyframes borderanimate2 {
	0% {
		transform: translate(-50%, -50%) scale(0.8);
	}

	60% {
		opacity: 1;
	}

	100% {
		transform: translate(-50%, -50%) scale(2.5);
		opacity: 0;
	}
}

@keyframes atf-arrow {
	49% {
		transform: translateX(30%);
	}

	50% {
		opacity: 0;
		transform: translateX(-30%);
	}

	51% {
		opacity: 1;
	}
}

@keyframes scroll1 {
	0% {
		top: 0%;
	}

	50% {
		top: 95%;
	}

	100% {
		top: 0%;
	}
}

@keyframes dash {
	to {
		stroke-dashoffset: 0rem;
		stroke-dasharray: 3000;
	}
}

/* 新增 */
.indexModule .advantage .atf-service-item {
	background-color: #fff;
}

.indexModule .advantage .title {
	color: #fff;
}

.indexModule .newsBox .atf-blog-item {
	background-color: #fff;
}

.indexModule .swiper {
	background-size: cover;
	height: 100% !important;
}


.indexModule #home .slick-list {
	height: 100%;
}

.indexModule #home .slick-list .slick-track {
	height: 100%;
}

.indexModule #home .slick-list .slick-track div {
	height: 100%;
}

.marbt {
	margin-top: 1.875rem;
}

.logo-black {
	width: 12rem !important;
}

/* =====================================================
   首页「客户案例」：统一卡片与图片盒子高度
   （新增样式，不改动公用类，仅作用于 .case-card-row）
   ===================================================== */
.case-card-row {
	align-items: stretch;
}

.case-card-row .team-member-card {
	height: 100%;
	display: flex;
	flex-direction: column;
	overflow: hidden;
}

.case-card-row .profile-img-container {
	position: relative;
	width: 100%;
	overflow: hidden;
	aspect-ratio: 4 / 3;
	flex-shrink: 0;
}

.case-card-row .profile-img-container a {
	display: block;
	width: 100%;
	height: 100%;
}

.case-card-row .profile-img-container img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

.case-card-row .member-info {
	flex: 1 1 auto;
	display: flex;
	flex-direction: column;
	justify-content: center;
}

/* =====================================================
   「常见问题」新版卡片式排版（新增样式，不改公用类）
   ===================================================== */
.faq-grid {
	display: grid;
	grid-template-columns: repeat(1, minmax(0, 1fr));
	gap: 1.875rem;
	align-items: start;
}

#faq {
	/* height: 45rem; */
}

.faq-card {
	background: #ffffff;
	border-radius: 1rem;
	box-shadow: 0 0.375rem 1.5rem rgba(15, 23, 42, 0.06);
	overflow: hidden;
	transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.faq-card:hover {
	transform: translateY(-0.25rem);
	box-shadow: 0 0.75rem 2rem rgba(15, 23, 42, 0.1);
}

.faq-q-head {
	display: flex;
	align-items: center;
	gap: 0.875rem;
	padding: 1.25rem 1.375rem;
	cursor: pointer;
	user-select: none;
}

.faq-q-icon {
	flex-shrink: 0;
	width: 2.75rem;
	height: 2.75rem;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	background: rgba(255, 91, 0, 0.1);
	color: var(--atf-thm-color);
	font-size: 1.125rem;
}

.faq-q-title {
	flex: 1;
	margin: 0;
	font-size: 1.125rem;
	font-weight: 500;
	line-height: 1.4;
	color: var(--atf-thm-black);
}

.faq-q-toggle {
	flex-shrink: 0;
	width: 1.75rem;
	height: 1.75rem;
	border-radius: 50%;
	border: 0.0625rem solid rgba(255, 91, 0, 0.35);
	color: var(--atf-thm-color);
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 0.75rem;
	transition: transform 0.3s ease, background-color 0.3s ease, color 0.3s ease;
}

.faq-card.open .faq-q-toggle {
	background: var(--atf-thm-color);
	color: #ffffff;
	border-color: var(--atf-thm-color);
	transform: rotate(45deg);
}

.faq-answer {
	display: none;
	padding: 0 1.375rem 1.375rem;
}

.faq-answer p {
	margin: 0;
	padding-top: 0.9375rem;
	border-top: 0.0625rem dashed #e2e2e2;
	color: var(--atf-text-body);
	font-size: 0.9375rem;
}

/* 左右两栏：FAQ 占左半 + 右侧展示图 */
.faq-layout {
	display: grid;
	grid-template-columns: 1.05fr 0.95fr;
	gap: 2.5rem;
	align-items: start;
}

.faq-panel {
	min-width: 0;
}

.faq-media {
	position: relative;
	border-radius: 1rem;
	overflow: hidden;
}

/* 桌面端：右侧图片固定高度，不随左侧 FAQ 展开/收起而变化 */
@media only screen and (min-width: 992px) {
	.faq-media {
		height: 46rem;
		position: sticky;
		top: 7.5rem;
	}
}

.faq-media img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

/* ≤991px：FAQ 与图片变上下单栏，图片置顶做横幅 */
@media only screen and (max-width: 991px) {
	.faq-layout {
		grid-template-columns: 1fr;
		gap: 1.875rem;
	}

	.faq-media {
		order: -1;
		position: static;
		height: 13.75rem;
	}
}

#partnerMarquee .partner-marquee-list img {
	height: auto;
	max-width: 18rem;
}

.fz-hide1 {
	/* //婧㈠嚭闅愯棌鐪佺暐鍙� */
	overflow: hidden;
	text-overflow: ellipsis;
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 1;
	/* //-webkit-line-clamp:1; 瓒呭嚭鍑犺 */
}

.fz-hide2 {
	/* //婧㈠嚭闅愯棌鐪佺暐鍙� */
	overflow: hidden;
	text-overflow: ellipsis;
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 2;
	/* //-webkit-line-clamp:1; 瓒呭嚭鍑犺 */
}

.fz-hide20 {
	/* //婧㈠嚭闅愯棌鐪佺暐鍙� */
	overflow: hidden;
	text-overflow: ellipsis;
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 20;
	/* //-webkit-line-clamp:1; 瓒呭嚭鍑犺 */
}

.indexModule .atf-blog-thumb {
	height: 16.25rem !important;
}

/* =====================================================
   首页滚动性能优化（新增，不动公共规则）
   ===================================================== */
/* 1. 平板/手机端禁用 fixed 背景跟随：避免滚动时背景逐帧重绘造成卡顿 */
@media only screen and (max-width: 991px) {
	.bg_fixed {
		background-attachment: scroll;
	}
}

/* 2. 荣誉资质无缝滚动轨道：取消 will-change 常驻的超宽合成层，降低滚动丢帧 */
#partnerMarquee .partner-marquee-track {
	will-change: auto;
}

/* =====================================================
   首页「荣誉资质」单项卡片排版（新增，不改公共规则）
   ===================================================== */
#partnerMarquee .partner-marquee-item {
	background: #ffffff;
	border-radius: 0.75rem;
	padding: 0.875rem 1.25rem 0.625rem;
	box-shadow: 0 0.25rem 0.9375rem rgba(15, 23, 42, 0.06);
	transition: transform 0.3s ease, box-shadow 0.3s ease;
}

#partnerMarquee .partner-marquee-item:hover {
	transform: translateY(-0.1875rem);
	box-shadow: 0 0.625rem 1.375rem rgba(15, 23, 42, 0.1);
}

#partnerMarquee .partner-marquee-item a {
	flex-direction: column;
	gap: 0.5rem;
}

#partnerMarquee .partner-marquee-item img {
	display: block;
	margin: 0 auto;
	padding: 0;
}

#partnerMarquee .partner-marquee-item p {
	margin: 0;
	font-size: 1.125rem;
	line-height: 1.4;
	color: var(--atf-thm-black);
	text-align: center;
	white-space: nowrap;
	max-width: 16rem;
	overflow: hidden;
	text-overflow: ellipsis;
}

/* =====================================================
   Lightcase 灯箱按钮文字替换（新增，不改动插件 CSS）
   左右切换用《 》，关闭按钮用 X
   ===================================================== */
.lightcase-icon-prev:before {
	content: ' < ';
	font-family: inherit;
}

.lightcase-icon-next:before {
	content: ' > ';
	font-family: inherit;
}

.lightcase-icon-close:before {
	content: ' X ';
	font-family: inherit;
}

/* =====================================================
   产品中心卡片：图片固定高度 310px（新增，不改公共类）
   ===================================================== */
.gallery-card-image {
	height: 19.375rem;
	overflow: hidden;
}

.gallery-card-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.gallery-title {
	font-size: 1rem;
	color: var(--atf-thm-black);
}

/* =====================================================
   关于我们页「企业简介」图文上下排版
   （全部以 .pageAbout 为作用域，不影响公共样式）
   ===================================================== */
.pageAbout .atf-about-area {
	overflow: hidden;
}

/* ---- 上部：图片区（并排双图 + 旋转徽章） ---- */
.pageAbout .about-media {
	position: relative;
	display: flex;
	gap: 1.875rem;
	height: 30rem;
	align-items: stretch;
	margin-bottom: 4rem;
}

.pageAbout .about-media-main,
.pageAbout .about-media-sub {
	flex: 1;
	min-width: 0;
	height: 100%;
	overflow: hidden;
	border-radius: 1.25rem;
	box-shadow: 0 0.75rem 1.875rem rgba(15, 23, 42, 0.08);
}

.pageAbout .about-media-main {
	flex: 1.3;
}

.pageAbout .about-media-main img,
.pageAbout .about-media-sub img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

/* 旋转徽章：放两图交界底部 */
.pageAbout .about-media .about_round_image {
	position: absolute;
	right: 50%;
	bottom: -2rem;
	transform: translateX(50%);
	z-index: 3;
	border: 0.375rem solid #ffffff;
	box-shadow: 0 0.5rem 1.25rem rgba(15, 23, 42, 0.15);
}

/* ---- 下部：文字占满整行 ---- */
.pageAbout .about-text-meta {
	display: flex;
	align-items: center;
	justify-content: space-between;
	flex-wrap: wrap;
	gap: 1.25rem;
	margin-bottom: 1.875rem;
}

.pageAbout .about-year {
	display: inline-flex;
	align-items: center;
	gap: 0.875rem;
	background: #ffffff;
	border-radius: 3.125rem;
	padding: 0.625rem 1.375rem 0.625rem 0.625rem;
	box-shadow: 0 0.375rem 1.25rem rgba(15, 23, 42, 0.06);
}

.pageAbout .about-year-icon {
	flex-shrink: 0;
	width: 2.75rem;
	height: 2.75rem;
	border-radius: 50%;
	background: var(--atf-thm-color);
	color: var(--atf-thm-white);
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 1.125rem;
}

.pageAbout .about-year-info {
	line-height: 1.3;
	font-size: 0.875rem;
	color: var(--atf-text-body);
}

.pageAbout .about-year-info strong {
	font-size: 1.375rem;
	font-weight: 500;
	color: var(--atf-thm-color);
	margin-right: 0.25rem;
}

.pageAbout .about-year-info span {
	display: block;
}

.pageAbout .about-label {
	color: var(--atf-thm-color);
	font-size: 0.875rem;
	font-weight: 500;
	letter-spacing: 0.1875rem;
	text-transform: uppercase;
}

.pageAbout .about-text-body {
	font-size: 1.0625rem;
	line-height: 2;
	color: var(--atf-text-body);
	text-align: justify;
}

.pageAbout .about-text-body p {
	margin: 0 0 1rem;
	font-size: 1.0625rem;
	line-height: 2;
	text-align: justify;
}

.pageAbout .about-text-body img {
	max-width: 100%;
	height: auto;
	border-radius: 0.75rem;
	margin: 0.625rem 0;
}

.pageAbout .atf-service-item {
	background-color: #fff;
}

.lightcase-icon-prev:before {
	content: ' « ';
}

.lightcase-icon-next:before {
	content: ' » ';
}

.pageAbout .atf-section-title .title {
	color: #fff;
}

.pageAbout .atf-footer-area {
	padding-top: 6.25rem !important;
}

/* =====================================================
   产品列表页：左侧产品分类导航
   （全部以 .listProduct 为作用域，不影响公共样式）
   ===================================================== */
.listProduct .atf-sidebar-category {
	height: auto !important;
	position: relative;
	overflow: hidden;
	background: linear-gradient(180deg, #ffffff 0%, #f7f9fc 100%);
	border: 0.0625rem solid rgba(15, 23, 42, 0.07);
	border-radius: 1.25rem;
	padding: 1.875rem 1.375rem !important;
	box-shadow: 0 0.75rem 2rem rgba(15, 23, 42, 0.06);
}

/* 顶部渐变流光装饰条 */
.listProduct .atf-sidebar-category::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 0.25rem;
	background: linear-gradient(90deg, var(--atf-thm-color), #ffab5c, var(--atf-thm-color));
	background-size: 200% 100%;
	animation: gradientMove 6s ease infinite;
}

.listProduct .atf-sidebar-title {
	position: relative;
	margin-bottom: 1.25rem !important;
	padding-bottom: 1rem;
	border-bottom: 0.0625rem dashed rgba(15, 23, 42, 0.12);
	font-size: 1.25rem;
	letter-spacing: 0.09375rem;
	color: var(--atf-thm-black);
}

.listProduct .atf-sidebar-title::before {
	content: "";
	display: inline-block;
	width: 0.375rem;
	height: 1.25rem;
	margin-right: 0.75rem;
	border-radius: 0.1875rem;
	background: linear-gradient(180deg, var(--atf-thm-color), #ffab5c);
	vertical-align: -0.25rem;
}

.listProduct .atf-sidebar-list {
	margin-top: 1.5rem;
}

.listProduct .atf-sidebar-item {
	margin-bottom: 0.75rem;
}

.listProduct .atf-sidebar-item a {
	position: relative;
	display: flex;
	align-items: center;
	gap: 0.5rem;
	padding: 0.875rem 1.125rem;
	border-radius: 0.875rem;
	background: #f4f6fb;
	color: var(--atf-thm-black);
	font-weight: 500;
	transition: all 0.3s ease;
}

.listProduct .atf-sidebar-item a i {
	color: var(--atf-thm-color);
	transition: transform 0.3s ease;
}

/* 悬停：右移 + 主题渐变填充 */
.listProduct .atf-sidebar-item a:hover {
	background: linear-gradient(135deg, var(--atf-thm-color), #ff8b3d);
	color: var(--atf-thm-white);
	box-shadow: 0 0.5rem 1.125rem rgba(255, 91, 0, 0.28);
	transform: translateX(0.3125rem);
}

.listProduct .atf-sidebar-item a:hover i {
	color: var(--atf-thm-white);
}

/* 当前分类：渐变高亮 + 右侧菱形角标 */
.listProduct .atf-sidebar-item.active a {
	background: linear-gradient(135deg, var(--atf-thm-color), #ff8b3d);
	color: var(--atf-thm-white);
	box-shadow: 0 0.5rem 1.125rem rgba(255, 91, 0, 0.28);
}

.listProduct .atf-sidebar-item.active a i {
	color: var(--atf-thm-white);
}

.listProduct .atf-sidebar-item.active a::after {
	content: "";
	position: absolute;
	right: 1rem;
	top: 50%;
	width: 0.4375rem;
	height: 0.4375rem;
	transform: translateY(-50%) rotate(45deg);
	border-radius: 0.125rem;
	background: rgba(255, 255, 255, 0.9);
}

/* ---- 手机/平板：分类改为横向左右滑动 ---- */
@media only screen and (max-width: 991px) {
	.listProduct .atf-sidebar-category {
		padding: 1.25rem 0.9375rem 0.625rem !important;
	}

	.listProduct .atf-sidebar-title {
		margin-bottom: 0.75rem !important;
	}

	.listProduct .atf-sidebar-list {
		display: flex;
		flex-wrap: nowrap;
		gap: 0.625rem;
		margin: 0;
		padding-bottom: 0.625rem;
		overflow-x: auto;
		-webkit-overflow-scrolling: touch;
		scrollbar-width: none;
	}

	.listProduct .atf-sidebar-list::-webkit-scrollbar {
		display: none;
	}

	.listProduct .atf-sidebar-item {
		flex-shrink: 0;
		margin-bottom: 0;
		white-space: nowrap;
	}

	.listProduct .atf-sidebar-item a {
		padding: 0.5625rem 1.375rem;
		white-space: nowrap;
		transform: none;
	}

	.listProduct .atf-sidebar-item a:hover,
	.listProduct .atf-sidebar-item.active a {
		transform: none;
	}

	.listProduct .atf-sidebar-item.active a::after {
		display: none;
	}
}

/* ---- 产品卡片：大图为主、内容收窄、尺寸统一 ---- */
.listProduct .atf-service-item {
	display: flex;
	flex-direction: column;
	height: 100%;
	background: #ffffff;
	border: 0.0625rem solid rgba(15, 23, 42, 0.06);
	border-radius: 1rem;
	padding: 0.625rem !important;
	margin-bottom: 1.5rem !important;
	box-shadow: 0 0.5rem 1.75rem rgba(15, 23, 42, 0.06);
	transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.listProduct .atf-service-item:hover {
	transform: translateY(-0.3125rem);
	box-shadow: 0 1rem 2.5rem rgba(15, 23, 42, 0.13);
}

/* 图片区：固定 4:3、圆角、裁切不拉伸 */
.listProduct .atf-service-thumb {
	overflow: hidden;
	border-radius: 0.875rem;
	aspect-ratio: 4 / 3;
	background: #eef1f6;
}

.listProduct .atf-service-thumb img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.6s ease;
}

.listProduct .atf-service-item:hover .atf-service-thumb img {
	transform: scale(1.05);
}

/* 内容区：标题、简介收窄 */
.listProduct .atf-service-box-content-area {
	flex: 1;
	display: flex;
	flex-direction: column;
	padding: 0.9375rem 0.375rem 0.375rem;
}

.listProduct .atf-service-box-content {
	flex: 1;
}

.listProduct .atf-service-title {
	font-size: 1.0625rem;
	font-weight: 500;
	line-height: 1.4;
	margin-bottom: 0.375rem;
}

.listProduct .atf-service-title a {
	display: block;
	color: var(--atf-thm-black);
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}

.listProduct .atf-service-title a:hover {
	color: var(--atf-thm-color);
}

.listProduct .atf-service-box-content p {
	margin: 0;
	font-size: 0.875rem;
	line-height: 1.7;
	color: var(--atf-text-body);
}

/* 底部按钮：迷你圆形箭头，统一贴底 */
.listProduct .atf-service-btn {
	margin-top: 0.9375rem !important;
}

.listProduct .atf-service-item .atf-service-btn a,
.listProduct .atf-service-btn .service_btn {
	width: 2.375rem;
	height: 2.375rem;
	border-radius: 50%;
	background-color: #f1f3f7;
	box-shadow: none;
}

.listProduct .service_btn svg {
	width: 0.625rem;
	height: 0.625rem;
}

.listProduct .atf-service-item:hover .atf-service-btn a {
	background-color: var(--atf-thm-color);
}

/* 手机端：卡片间距更紧凑，图片比例保持一致 */
@media only screen and (max-width: 575px) {
	.listProduct .atf-service-item {
		margin-bottom: 1rem !important;
	}
}


.paginationBox {
	display: flex;
	justify-content: center;
	margin: 3.75rem 0 1rem;
}


.paginationBox .pagination {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	list-style: none;
	padding: 0;
	margin: 0;
	gap: 0.5rem;
}

.paginationBox .pagination li a,
.paginationBox .pagination li span {
	display: inline-block;
	min-width: 2.5rem;
	height: 2.5rem;
	line-height: 2.5rem;
	padding: 0 0.5rem;
	box-sizing: border-box;
	text-align: center;
	font-size: 0.9375rem;
	color: #303133;
	background: #fff;
	border: 1px solid #e5e6eb;
	border-radius: 0.3125rem;
	text-decoration: none;
	transition: all 0.2s ease-in-out;
}

.paginationBox .pagination li a:hover {
	color: #fff;
	background: #FA9519;
	border-color: #FA9519;
}

.paginationBox .pagination li.active span {
	color: #fff;
	background: #FA9519;
	border-color: #FA9519;
	cursor: default;
}

.paginationBox .pagination li.disabled span {
	color: #c0c4cc;
	background: #f5f6f8;
	border-color: #e5e6eb;
	cursor: no-drop;
}

.paginationBox .pagination li:first-child a,
.paginationBox .pagination li:last-child a,
.paginationBox .pagination li:first-child span,
.paginationBox .pagination li:last-child span {
	font-size: 1.25rem;
	line-height: 2.3rem;
}

/* =====================================================
   客户案例列表：卡片式展示
   （全部以 .listCase 为作用域，不影响公共样式）
   ===================================================== */
.listCase .atf-team-area {
	background: #f6f8fb;
}

/* 案例卡片：等高、白底圆角阴影 */
.listCase .team-member-card {
	display: flex;
	flex-direction: column;
	height: 100%;
	background: #ffffff;
	border: 0.0625rem solid rgba(15, 23, 42, 0.05);
	border-radius: 1.125rem;
	padding: 0.625rem !important;
	box-shadow: 0 0.5rem 1.75rem rgba(15, 23, 42, 0.06);
	transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.listCase .team-member-card:hover {
	transform: translateY(-0.3125rem);
	box-shadow: 0 1rem 2.5rem rgba(15, 23, 42, 0.13);
}

/* 图片盒子：固定 4:3，圆角裁切，统一大小 */
.listCase .profile-img-container {
	position: relative;
	overflow: hidden;
	border-radius: 0.875rem;
	aspect-ratio: 4 / 3;
	flex-shrink: 0;
	background: #eef1f6;
}

.listCase .profile-img-container a {
	display: block;
	width: 100%;
	height: 100%;
}

.listCase .profile-img-container img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
	border: 0;
	border-radius: 0;
	box-shadow: none;
	transition: transform 0.6s ease;
}

.listCase .team-member-card:hover .profile-img-container img {
	transform: scale(1.05);
}

/* 文字信息：标题 + 描述，等高校准 */
.listCase .member-info {
	flex: 1;
	display: flex;
	flex-direction: column;
	justify-content: center;
	padding: 1.125rem 0.375rem 0.625rem;
	text-align: left;
}

.listCase .member-info .title {
	margin-bottom: 0.5rem;
	font-size: 1.25rem;
	font-weight: 500;
	line-height: 1.4;
}

.listCase .member-info .title a {
	display: block;
	color: var(--atf-thm-black);
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
	transition: color 0.3s ease;
}

.listCase .member-info .title a:hover {
	color: var(--atf-thm-color);
}

/* 名称下方的描述字段 */
.listCase .member-info .describtion {
	margin: 0;
	font-size: 0.875rem;
	line-height: 1.7;
	color: var(--atf-text-body);
	overflow: hidden;
	text-overflow: ellipsis;
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 2;
	line-clamp: 2;
}

.listProduct .atf-footer-area {
	padding-top: 6.25rem !important;
}

.listCase .atf-footer-area {
	padding-top: 6.25rem !important;
}

.listFaq .atf-footer-area {
	padding-top: 6.25rem !important;
}

.listNews .atf-footer-area {
	padding-top: 6.25rem !important;
}

.showProduct .atf-footer-area {
	padding-top: 6.25rem !important;
}

.pageContant .atf-footer-area {
	padding-top: 6.25rem !important;
}

/* 手机端间距 */
@media only screen and (max-width: 575px) {
	.listCase .team-member-card {
		margin-bottom: 0.5rem;
	}
}

.showProduct .sidebar-widget {
	background-color: #fff;
	padding: 1rem;
}

/* =====================================================
   产品详情页「相关产品」侧栏高级样式
   （全部以 .showProduct 为作用域，不影响公共样式）
   ===================================================== */
/* 侧栏整体：卡片质感 */
.showProduct .sidebar-wrapper {
	padding: 0.625rem;
}

.showProduct .sidebar-widget {
	border-radius: 1.25rem;
	padding: 1.25rem !important;
	border: 0.0625rem solid rgba(15, 23, 42, 0.06);
}

/* 标题：主题色菱形角标 */
.showProduct .sidebar-widget-title {
	font-size: 1.375rem;
	letter-spacing: 0.0625rem;
	color: var(--atf-thm-black);
}

.showProduct .sidebar-widget-title::after {
	border-color: var(--atf-thm-color);
	background: var(--atf-thm-color);
}

/* 相关产品项：胶囊卡片，hover 上浮高亮 */
.showProduct .sidebar-post {
	margin-bottom: 0.75rem;
}

.showProduct .sidebar-post:last-child {
	margin-bottom: 0;
}

.showProduct .lp-post {
	margin-bottom: 0.625rem;
	display: flex;
	align-items: center;
	gap: 0.875rem;
	padding: 0.625rem;
	border-radius: 0.875rem;
	background: #f7f8fb;
	border: 0.0625rem solid transparent;
	transition: all 0.3s ease;
}

.showProduct .lp-post:last-child {
	margin-bottom: 0;
}

.showProduct .lp-post:hover {
	background: linear-gradient(135deg, rgba(255, 91, 0, 0.07), #ffffff);
	border-color: rgba(255, 91, 0, 0.28);
	transform: translateY(-0.1875rem);
	box-shadow: 0 0.5rem 1.25rem rgba(255, 91, 0, 0.08);
}

/* 缩略图：固定圆角方块，hover 放大 */
.showProduct .lp-post-thumb {
	flex: 0 0 auto;
	margin-right: 0;
}

.showProduct .lp-post-thumb a {
	display: block;
	overflow: hidden;
	border-radius: 0.625rem;
}

.showProduct .lp-post-thumb a img {
	width: 4.5rem;
	height: 4.5rem;
	object-fit: cover;
	border-radius: 0.625rem;
	transition: transform 0.4s ease;
}

.showProduct .lp-post:hover .lp-post-thumb a img {
	transform: scale(1.08);
}

/* 标题：两行截断 */
.showProduct .lp-post-title {
	margin: 0 0 0.375rem;
	font-size: 1rem;
	font-weight: 500;
	line-height: 1.45;
}

.showProduct .lp-post-title a {
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 2;
	line-clamp: 2;
	overflow: hidden;
	color: var(--atf-thm-black);
	transition: color 0.3s ease;
}

.showProduct .lp-post-title a:hover {
	color: var(--atf-thm-color);
}

/* 分类小标 */
.showProduct .lp-meta {
	gap: 0.375rem;
	color: var(--atf-thm-color);
	font-size: 0.8125rem;
}

.showProduct .lp-meta span {
	color: var(--atf-text-body);
}

/* =====================================================
   产品详情页「给我们留言」板块：高级深色渐变背景
   ===================================================== */
.showProduct .team-contact {
	background:
		radial-gradient(circle at 18% 12%, rgba(255, 91, 0, 0.22), transparent 42%),
		radial-gradient(circle at 86% 82%, rgba(255, 150, 70, 0.14), transparent 46%),
		radial-gradient(circle at 70% 8%, rgba(56, 189, 248, 0.1), transparent 30%),
		linear-gradient(135deg, #0d1526 0%, #16233b 55%, #0f1a2e 100%);
}

.showProduct .team-contact .atf-section-title h2.title,
.showProduct .team-contact .atf-section-title .title.style1 {
	color: #ffffff;
}

.showProduct .team-contact .atf-section-title .description {
	color: rgba(255, 255, 255, 0.78);
}

/* 表单容器：半透明玻璃卡片 */
.showProduct .team_contact_info {
	background: rgba(255, 255, 255, 0.06);
	border: 0.0625rem solid rgba(255, 255, 255, 0.14);
	border-radius: 1.5rem;
	padding: 2.25rem 1.5rem;
	-webkit-backdrop-filter: blur(10px);
	backdrop-filter: blur(10px);
	box-shadow: 0 1.25rem 3.125rem rgba(0, 0, 0, 0.25);
}

/* 手机端内边距收窄 */
@media only screen and (max-width: 575px) {
	.showProduct .team_contact_info {
		padding: 1.25rem 0.875rem;
	}
}

/* 「相关产品」为空时的提示样式 */
.showProduct .sidebar-empty-box {
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 2.5rem 1rem;
	background: #f7f8fb;
	border: 0.0625rem dashed rgba(15, 23, 42, 0.18);
	border-radius: 0.875rem;
	color: var(--atf-text-body);
	font-size: 0.875rem;
	text-align: center;
	letter-spacing: 0.0625rem;
}

.showProduct .sidebar-empty-box::before {
	content: "";
	width: 0.625rem;
	height: 0.625rem;
	margin-right: 0.5rem;
	border-radius: 50%;
	background: var(--atf-thm-color);
	opacity: 0.8;
}

/* =====================================================
   留言提交弹窗提示（轻量 syalert 风格）
   ===================================================== */
.sy-alert {
	position: fixed;
	left: 50%;
	top: 50%;
	transform: translate(-50%, -50%) scale(0.92);
	z-index: 99999;
	min-width: 15rem;
	max-width: 24rem;
	padding: 1.25rem 1.5rem;
	background: rgba(15, 23, 42, 0.94);
	color: #ffffff;
	font-size: 1rem;
	line-height: 1.6;
	text-align: center;
	border-radius: 0.875rem;
	box-shadow: 0 1rem 2.5rem rgba(0, 0, 0, 0.35);
	opacity: 0;
	visibility: hidden;
	pointer-events: none;
	transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s ease;
}

.sy-alert.sy-open {
	opacity: 1;
	visibility: visible;
	transform: translate(-50%, -50%) scale(1);
	pointer-events: auto;
}

.sy-alert .sy-content {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 0.625rem;
}

.sy-alert.sy-success .sy-content::before {
	content: "✓";
	flex-shrink: 0;
	width: 1.875rem;
	height: 1.875rem;
	line-height: 1.875rem;
	border-radius: 50%;
	background: #16a34a;
	color: #ffffff;
	font-size: 1rem;
	font-weight: 700;
	text-align: center;
}

.sy-alert.sy-error .sy-content::before {
	content: "!";
	flex-shrink: 0;
	width: 1.875rem;
	height: 1.875rem;
	line-height: 1.875rem;
	border-radius: 50%;
	background: #ef4444;
	color: #ffffff;
	font-size: 1.0625rem;
	font-weight: 700;
	text-align: center;
}

.indexModule .atf-blog-title {
	font-size: 1.125rem;
	color: #303030;
	font-weight: 500 !important;
}

.member-info .title {
	font-size: 1.125rem;
}

.indexModule .atf_bg_skew {
	/* background:#fff !important; */
}

/* =====================================================
   全站 PC(≥1200px) 顶部：logo 与导航两端对齐
   header.html 是全站公共模板，此布局须全局生效，
   不能只写在 .indexModule（仅首页）下
   ===================================================== */
@media only screen and (min-width: 1200px) {
	.atf-site-header .row {
		display: flex;
		align-items: center;
		justify-content: space-between;
		flex-wrap: nowrap;
	}

	/* logo 列：保持最左、宽度随内容 */
	.atf-site-header .row>div:first-child {
		flex: 0 0 auto;
		width: auto;
		padding-left: 0;
	}

	/* 主导航列：推到最右侧，宽度随内容 */
	.atf-site-header .row>div:nth-child(2) {
		flex: 0 0 auto;
		width: auto;
		margin-left: auto;
		padding-right: 0;
	}

	/* 桌面端右侧栏（仅手机汉堡按钮）不占位 */
	.atf-site-header .row>div:last-child {
		display: none;
	}

	/* 导航内容右对齐 */
	.atf-main-menu,
	.atf-nav-list {
		justify-content: flex-end;
	}
}

.indexModule .marquee-content li {
	margin-right: 6.25rem;
}

/* 地图 */
.map-wrap {
	max-width: 87.5rem;
	margin: 0 auto 5rem;
	padding: 0 1.25rem;
}

.map-card {
	background: #fff;
	border: 1px solid rgba(15, 23, 42, 0.06);
	border-radius: 1.25rem;
	overflow: hidden;
	box-shadow: 0 0.375rem 1.875rem rgba(15, 23, 42, 0.07),
		0 0.125rem 0.375rem rgba(15, 23, 42, 0.04);
}

.map-head {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 1rem;
	padding: 1.25rem 1.75rem;
	background: linear-gradient(135deg, #ffffff 0%, #f6f9fc 100%);
	border-bottom: 1px solid #eef1f6;
}

.map-head-left {
	display: flex;
	align-items: center;
	gap: 0.9375rem;
	min-width: 0;
}

.map-head-icon {
	flex: 0 0 auto;
	width: 3.125rem;
	height: 3.125rem;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 0.9375rem;
	color: #fff;
	font-size: 1.375rem;
	background: linear-gradient(135deg, var(--atf-thm-color), #ff8a3d);
	box-shadow: 0 0.5rem 1rem rgba(255, 91, 0, 0.25);
}

.map-head-text {
	min-width: 0;
}

.map-head-text h3 {
	margin: 0;
	font-size: 1.25rem;
	font-weight: 700;
	color: #0f172a;
	display: flex;
	align-items: center;
	gap: 0.5rem;
}

.map-head-text h3::after {
	content: "";
	width: 0.375rem;
	height: 0.375rem;
	border-radius: 50%;
	background: var(--atf-thm-color);
	display: inline-block;
}

.map-head-text p {
	margin: 0.3125rem 0 0;
	font-size: 0.875rem;
	color: #64748b;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.map-head-btn {
	flex: 0 0 auto;
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	padding: 0.625rem 1.125rem;
	border-radius: 999px;
	font-size: 0.875rem;
	font-weight: 600;
	color: #334155;
	text-decoration: none;
	background: rgba(255, 255, 255, 0.75);
	border: 1px solid rgba(15, 23, 42, 0.12);
	transition: all 0.3s ease;
}

.map-head-btn:hover {
	color: #fff;
	background: var(--atf-thm-color);
	border-color: var(--atf-thm-color);
	box-shadow: 0 0.5rem 1.25rem rgba(255, 91, 0, 0.28);
	transform: translateY(-0.125rem);
}

.map-card iframe {
	display: block;
	width: 100%;
	height: 500px;
	border: 0;
}

.pageContant {}

/*========================================*/
/* 联系区块样式优化：白色卡片化 + 阴影     */
/*（.pageContant 联系页 / .indexModule 首页）*/
/*========================================*/
/* 左侧信息项卡片 */
.pageContant .atf-contact-details,
.indexModule .atf-contact-details {
	background: #fff;
	border: 0.0625rem solid rgba(15, 23, 42, 0.06);
	box-shadow: 0 0.9375rem 2.1875rem -0.75rem rgba(15, 23, 42, 0.12);
	transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.pageContant .atf-contact-details:hover,
.indexModule .atf-contact-details:hover {
	transform: translateY(-0.3125rem);
	border-color: rgba(255, 91, 0, 0.25);
	box-shadow: 0 1.375rem 2.5rem -0.875rem rgba(255, 91, 0, 0.28);
}

.pageContant .atf-contact-details .atf-contact-address,
.indexModule .atf-contact-details .atf-contact-address {
	min-width: 0;
	word-break: break-word;
}

/* 图标圆：浅橙底 + 主题色描边，hover 变实底（尺寸与原版一致，卡片总高不变） */
.pageContant .atf-contact-details .atf-contact-icon,
.indexModule .atf-contact-details .atf-contact-icon {
	background: rgba(255, 91, 0, 0.1);
	color: var(--atf-thm-color);
	box-shadow: inset 0 0 0 0.0625rem rgba(255, 91, 0, 0.28);
	transition: all 0.3s ease;
}

.pageContant .atf-contact-details:hover .atf-contact-icon,
.indexModule .atf-contact-details:hover .atf-contact-icon {
	background: var(--atf-thm-color);
	color: #fff;
	box-shadow: 0 0.625rem 1.25rem rgba(255, 91, 0, 0.35);
}

/* 右侧留言表单卡片 */
.pageContant .atf-contact-form,
.indexModule .atf-contact-form {
	background: none;
	border: 0.0625rem solid rgba(15, 23, 42, 0.06);
	border-radius: 1.25rem;
	padding: 1.5rem 2.5rem 2.1875rem;
	box-shadow: 0 1.25rem 3.125rem -1.25rem rgba(15, 23, 42, 0.16);
}

.pageContant .atf-contact-form .atf_contact_input input,
.indexModule .atf-contact-form .atf_contact_input input,
.pageContant .atf-contact-form .atf_contact_input textarea,
.indexModule .atf-contact-form .atf_contact_input textarea {
	background: #f7f8fa;
	border-color: transparent;
	box-shadow: inset 0 0 0 0.0625rem rgba(15, 23, 42, 0.06);
}

.pageContant .atf-contact-form .atf_contact_input input:focus,
.indexModule .atf-contact-form .atf_contact_input input:focus,
.pageContant .atf-contact-form .atf_contact_input textarea:focus,
.indexModule .atf-contact-form .atf_contact_input textarea:focus {
	background: #fff;
	border-color: var(--atf-thm-color);
	box-shadow: 0 0 0 0.1875rem rgba(255, 91, 0, 0.12);
}

@media (max-width: 991px) {

	.pageContant .atf-contact-info,
	.indexModule .atf-contact-info {
		margin-bottom: 1.875rem;
	}
}

@media (max-width: 575px) {

	.pageContant .atf-contact-form,
	.indexModule .atf-contact-form {
		padding: 1.875rem 1.375rem 1.5rem;
	}
}

.showProduct p {
	margin-bottom: 0;
}

.showProduct {}

/* =====================================================
   产品详情页右侧「相关产品」侧栏：页面滚动时固定，
   只让左侧内容向下滚动（桌面端 >=992px 生效）
   ===================================================== */
@media only screen and (min-width: 992px) {
	.showProduct .sidebar-wrapper {
		position: sticky;
		top: 6.875rem;
		/* 距视口顶 110px，避开顶部导航，可按需微调 */
		align-self: flex-start;
	}

	/* 相关产品项很多时侧栏内部限高滚动，避免卡片超高贴满视口 */
	.showProduct .sidebar-wrapper .sidebar-widget {
		max-height: calc(100vh - 9.375rem);
		overflow-y: auto;
	}
}

/* 平板/手机：侧栏回到正常文档流，随页面滚动 */
@media only screen and (max-width: 991px) {
	.showProduct .sidebar-wrapper {
		position: static;
		align-self: auto;
	}
}

/* =====================================================
   产品列表页左侧「产品分类」：桌面端滚动时固定，
   仅右侧产品列表向下滚动（>=992px 生效）
   ===================================================== */
@media only screen and (min-width: 992px) {
	.listProduct .atf-sidebar-category {
		position: sticky;
		top: 7rem;
		/* 距视口顶 150px，与 JS 保持一致，吸顶时上方留空隙 */
	}
}

/* 平板/手机：分类回到正常文档流 */
@media only screen and (max-width: 991px) {
	.listProduct .atf-sidebar-category {
		position: static;
	}
}

/* =====================================================
   产品卡片：所属分类胶囊标签
   ===================================================== */
.listProduct .atf-product-cat {
	display: inline-flex;
	align-items: center;
	gap: 0.375rem;
	margin-bottom: 0.625rem;
	padding: 0.25rem 0.75rem;
	font-size: 0.75rem;
	line-height: 1.4;
	font-weight: 500;
	color: var(--atf-thm-color);
	background: rgba(255, 91, 0, 0.1);
	border: 0.0625rem solid rgba(255, 91, 0, 0.25);
	border-radius: 999px;
	transition: all 0.3s ease;
}

.listProduct .atf-product-cat i {
	font-size: 0.8125rem;
}

/* 整卡 hover 时胶囊随主题色点亮 */
.listProduct .atf-service-item:hover .atf-product-cat {
	background: var(--atf-thm-color);
	color: #fff;
	border-color: var(--atf-thm-color);
	box-shadow: 0 0.25rem 0.75rem rgba(255, 91, 0, 0.3);
}

.listProduct .atf-service-item {
	margin-bottom: 0 !important;
}

/* 页脚产品中心：两列展示，避免单列过长 */
.atf-footer-widget-menu ul.footer-product-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  column-gap: 1.25rem;
  padding-left: 0;
  padding-right: 0;
}

.atf-footer-widget-menu ul.footer-product-list li {
  min-width: 0;
  margin-bottom: 0.625rem;
}