
/* 返回顶部按钮样式 */
#backToTop {
	position: fixed;
	right: 32px;
	bottom: 48px;
	width: 48px;
	height: 48px;
	background: linear-gradient(135deg, var(--primary-color), var(--accent-mid));
	color: #fff;
	border: none;
	border-radius: 50%;
	box-shadow: 0 4px 16px rgba(0, 0, 0, 0.18);
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 2rem;
	cursor: pointer;
	opacity: 0;
	pointer-events: none;
	transition: opacity 0.4s, transform 0.3s;
	z-index: 9999;
}

#backToTop.show {
	opacity: 1;
	pointer-events: auto;
	transform: translateY(0);
}

#backToTop:active {
	background: linear-gradient(135deg, var(--accent-mid), var(--primary-color));
}

@media (max-width: 600px) {
	#backToTop {
		right: 16px;
		bottom: 24px;
		width: 40px;
		height: 40px;
		font-size: 1.5rem;
	}
}

* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
	font-family: 'Segoe UI', 'Microsoft YaHei', sans-serif;
}

/* 全局主标题字体升级 */
h1,
h2,
.section-title h2,
.slide-content h1 {
	font-family: 'Orbitron', 'Segoe UI', 'Microsoft YaHei', sans-serif;
	letter-spacing: 1.5px;
}

:root {
	--primary-dark: #0c2b3c;
	--primary-color: #53BCB1;
	--primary-light: #99D0AF;
	--accent-mid: #64B5A3;
	--accent-light: #A5D9C8;
	--accent-secondary: #6AC6B8;
	--accent-tertiary: #7FD4C6;
	--text-light: #f8fcfb;
	--text-gray: #c2e0da;
	--text-dark: #1a3a3a;
	--card-bg: rgba(83, 188, 177, 0.08);
	--card-border: rgba(83, 188, 177, 0.2);
	--section-spacing: 100px;
}

body {
	background-color: var(--primary-dark);
	color: var(--text-light);
	line-height: 1.6;
	overflow-x: hidden;
}

.container {
	width: 100%;
	max-width: 1400px;
	margin: 0 auto;
	padding: 0 20px;
}

/* 导航栏样式 */
header {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	z-index: 1000;
	background-color: rgba(12, 43, 60, 0.95);
	backdrop-filter: blur(10px);
	padding: 20px 0;
	transition: all 0.3s ease;
	box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.header-container {
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.logo {
	display: flex;
	align-items: center;
	gap: 12px;
}

.logo-img {
	height: 50px;
	/* 放大logo高度 */
	width: auto;
	transition: transform 0.35s cubic-bezier(.4, 1.6, .4, 1), box-shadow 0.35s;
}

.logo:hover .logo-img {
	transform: scale(1.18) rotate(-3deg);
	box-shadow: 0 6px 24px 0 rgba(83, 188, 177, 0.18);
}

.nav-links {
	display: flex;
	gap: 40px;
}

.nav-links a {
	color: var(--text-light);
	text-decoration: none;
	font-weight: 500;
	transition: color 0.3s;
	position: relative;
	font-size: 1.05rem;
}

.nav-links a:hover {
	color: var(--primary-color);
}

.nav-links a::after {
	content: '';
	position: absolute;
	bottom: -5px;
	left: 0;
	width: 0;
	height: 2px;
	background: linear-gradient(to right, var(--primary-color), var(--primary-light));
	transition: width 0.3s;
}

.nav-links a:hover::after {
	width: 100%;
}

.header-actions {
	display: flex;
	gap: 15px;
}

.btn {
	padding: 12px 28px;
	border-radius: 6px;
	font-weight: 600;
	cursor: pointer;
	transition: all 0.3s;
	border: none;
	text-decoration: none;
	display: inline-block;
	font-size: 1rem;
}

.btn-primary {
	background: linear-gradient(135deg, var(--primary-color), var(--accent-mid));
	color: white;
	box-shadow: 0 0 16px 2px rgba(83, 188, 177, 0.38), 0 2px 8px rgba(0, 0, 0, 0.12);
	position: relative;
	overflow: hidden;
}

.btn-primary::after {
	content: '';
	position: absolute;
	left: 0;
	top: 0;
	right: 0;
	bottom: 0;
	pointer-events: none;
	box-shadow: 0 0 32px 8px #53BCB1, 0 0 48px 16px #53BCB1;
	opacity: 0;
	transition: opacity 0.3s;
	border-radius: 8px;
}

.btn-primary:hover {
	transform: translateY(-3px) scale(1.04);
	box-shadow: 0 0 32px 8px #53BCB1, 0 10px 32px rgba(83, 188, 177, 0.38);
}

.btn-primary:hover::after {
	opacity: 0.7;
}

.btn-secondary {
	background: rgba(255, 255, 255, 0.1);
	color: white;
	border: 1px solid rgba(255, 255, 255, 0.2);
}

.btn-secondary:hover {
	background: rgba(255, 255, 255, 0.2);
	transform: translateY(-2px);
}

.mobile-menu-btn {
	display: none;
	background: none;
	border: none;
	color: #53BCB1;
	font-size: 2rem;
	cursor: pointer;
	z-index: 1200;
}

@media (max-width: 900px) {
	.mobile-menu-btn {
		display: block;
	}

	.mobile-menu-btn i {
		color: #53BCB1 !important;
		text-shadow: 0 1px 6px rgba(0, 0, 0, 0.08);
	}
}

/* 轮播图样式 - 优化 */
.hero-slider {
	margin-top: 90px;
	/* 增加顶部间距，适应更大的logo */
	position: relative;
	overflow: hidden;
	border-radius: 0 0 20px 20px;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.slider-container {
	position: relative;
	height: 85vh;
	/* 使用视窗高度，自适应不同屏幕 */
	min-height: 600px;
	/* 设置最小高度 */
	max-height: 800px;
	/* 设置最大高度 */
}

.slide {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	opacity: 0;
	transition: opacity 1s ease;
	display: flex;
	align-items: center;
	padding: 0 160px 0 200px;
	/* 左侧留更多空白，整体右移 */
}

.slide.active {
	opacity: 1;
}

.slide-bg {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-size: cover;
	background-position: center center;
	background-repeat: no-repeat;
	z-index: -1;
	will-change: transform;
	animation: slider-zoom 8s ease-in-out infinite;
}

@keyframes slider-zoom {
	0% {
		transform: scale(1);
	}

	50% {
		transform: scale(1.08);
	}

	100% {
		transform: scale(1);
	}
}

/* 优化大图显示，确保图片完整显示 */
.slide-bg::after {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: linear-gradient(to right, rgba(12, 43, 60, 0.4), rgba(12, 43, 60, 0.2));
}

.slide-content {
	max-width: 700px;
	z-index: 2;
}

/* Banner按钮靠左排列 */
.banner-btn-row {
	display: flex;
	justify-content: flex-start;
	align-items: center;
	gap: 20px;
	flex-wrap: wrap;
	margin-top: 30px;
}

.banner-btn-row .btn {
	margin: 0 !important;
}

/* CTA按钮居中排列 */
.cta-btn-row {
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 20px;
	flex-wrap: wrap;
	margin-top: 30px;
}

.cta-btn-row .btn {
	margin: 0 !important;
}


/* 按钮水平排列通用样式 */
.btn-row {
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 20px;
	flex-wrap: wrap;
	margin-top: 30px;
}

.btn-row .btn {
	margin: 0 !important;
}


.slide-content h1 {
	font-size: 3.5rem;
	margin-bottom: 20px;
	line-height: 1.2;
	background: linear-gradient(to right, #ffffff, var(--primary-light));
	-webkit-background-clip: text;
	background-clip: text;
	color: transparent;
}

.slide-content p {
	font-size: 1.3rem;
	color: var(--text-light);
	margin-bottom: 40px;
	max-width: 600px;
}

.slider-controls {
	position: absolute;
	bottom: 40px;
	left: 50%;
	transform: translateX(-50%);
	display: flex;
	gap: 12px;
	z-index: 10;
}

.slider-dot {
	width: 14px;
	height: 14px;
	border-radius: 50%;
	background-color: rgba(255, 255, 255, 0.5);
	cursor: pointer;
	transition: all 0.3s;
}

.slider-dot.active {
	background-color: var(--primary-color);
	transform: scale(1.3);
}

.slider-nav {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	background-color: rgba(0, 0, 0, 0.5);
	color: white;
	border: none;
	width: 60px;
	height: 60px;
	border-radius: 50%;
	font-size: 1.5rem;
	cursor: pointer;
	z-index: 10;
	transition: all 0.3s;
}

.slider-nav:hover {
	background-color: rgba(0, 0, 0, 0.8);
	transform: translateY(-50%) scale(1.1);
}

.slider-prev {
	left: 30px;
}

.slider-next {
	right: 30px;
}

/* 公司优势模块 */
.advantages {
	padding: var(--section-spacing) 0;
	background-color: rgba(12, 43, 60, 0.5);
}

.section-title {
	text-align: center;
	margin-bottom: 70px;
}

.section-title h2 {
	font-size: 2.8rem;
	margin-bottom: 20px;
	background: linear-gradient(to right, var(--primary-color), var(--primary-light));
	-webkit-background-clip: text;
	background-clip: text;
	color: transparent;
}

.section-title p {
	color: var(--text-gray);
	max-width: 700px;
	margin: 0 auto;
	font-size: 1.2rem;
}

.advantages-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
	gap: 40px;
}

.advantage-card {
	background-color: var(--card-bg);
	border-radius: 12px;
	padding: 40px 30px;
	transition: all 0.4s;
	border: 1px solid var(--card-border);
	text-align: center;
}

.advantage-card:hover {
	transform: translateY(-10px);
	box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
	border-color: var(--primary-color);
}

.advantage-icon {
	width: 80px;
	height: 80px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0 auto 25px;
	font-size: 2.2rem;
}

.icon-1 {
	background: linear-gradient(135deg, rgba(83, 188, 177, 0.2), rgba(153, 208, 175, 0.2));
	color: var(--primary-color);
}

.icon-2 {
	background: linear-gradient(135deg, rgba(100, 181, 163, 0.2), rgba(153, 208, 175, 0.2));
	color: var(--accent-mid);
}

.icon-3 {
	background: linear-gradient(135deg, rgba(153, 208, 175, 0.2), rgba(165, 217, 200, 0.2));
	color: var(--primary-light);
}

.advantage-card h3 {
	font-size: 1.6rem;
	margin-bottom: 15px;
}

.advantage-card p {
	color: var(--text-gray);
}

/* 服务部分样式 */
.services {
	padding: var(--section-spacing) 0;
}

.services-intro {
	text-align: center;
	max-width: 800px;
	margin: 0 auto 60px;
}

.services-intro h2 {
	font-size: 2.8rem;
	margin-bottom: 20px;
	background: linear-gradient(to right, var(--primary-color), var(--primary-light));
	-webkit-background-clip: text;
	background-clip: text;
	color: transparent;
}

.services-intro p {
	font-size: 1.2rem;
	color: var(--text-gray);
	line-height: 1.8;
}

.services-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
	gap: 40px;
}

.service-card {
	background-color: var(--card-bg);
	border-radius: 12px;
	padding: 40px 30px;
	transition: all 0.4s;
	border: 1px solid var(--card-border);
	display: flex;
	flex-direction: column;
}

.service-card:hover {
	transform: translateY(-10px);
	box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
	border-color: var(--primary-color);
}

.service-icon {
	width: 70px;
	height: 70px;
	background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
	border-radius: 12px;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 25px;
	font-size: 1.8rem;
}

.service-card h3 {
	font-size: 1.6rem;
	margin-bottom: 15px;
}

.service-card p {
	color: var(--text-gray);
	margin-bottom: 25px;
	flex-grow: 1;
}

/* 解决方案模块 */
.solutions {
	padding: var(--section-spacing) 0;
	background-color: rgba(12, 43, 60, 0.5);
}

.solutions-tabs {
	display: flex;
	justify-content: center;
	margin-bottom: 50px;
	flex-wrap: wrap;
	gap: 10px;
}

.tab-btn {
	padding: 12px 30px;
	background: transparent;
	border: 1px solid var(--card-border);
	color: var(--text-light);
	border-radius: 30px;
	cursor: pointer;
	transition: all 0.3s;
	font-weight: 500;
}

.tab-btn.active,
.tab-btn:hover {
	background: linear-gradient(135deg, var(--primary-color), var(--accent-mid));
	border-color: transparent;
}

.solutions-content {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 60px;
	align-items: center;
}

.solution-image {
	border-radius: 12px;
	overflow: hidden;
	box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.solution-image img {
	width: 100%;
	height: auto;
	display: block;
}

.solution-text h3 {
	font-size: 2rem;
	margin-bottom: 20px;
}

.solution-text p {
	color: var(--text-gray);
	margin-bottom: 25px;
	font-size: 1.1rem;
	line-height: 1.8;
}

.solution-features {
	list-style: none;
}

.solution-features li {
	margin-bottom: 15px;
	display: flex;
	align-items: center;
	gap: 12px;
}

.solution-features i {
	color: var(--primary-light);
}

/* 行业解决方案标题滑入动画 */
.slide-in-right {
	opacity: 0;
	transform: translateX(80px);
	transition: opacity 0.8s cubic-bezier(.4, 1, .4, 1), transform 0.8s cubic-bezier(.4, 1, .4, 1);
}

.slide-in-right.animated {
	opacity: 1;
	transform: translateX(0);
}

/* 新增：模块动画效果 */
.slide-in-up {
	opacity: 0;
	transform: translateY(60px);
	transition: opacity 0.8s cubic-bezier(.4, 1, .4, 1), transform 0.8s cubic-bezier(.4, 1, .4, 1);
}

.slide-in-up.animated {
	opacity: 1;
	transform: translateY(0);
}

.slide-in-down {
	opacity: 0;
	transform: translateY(-60px);
	transition: opacity 0.8s cubic-bezier(.4, 1, .4, 1), transform 0.8s cubic-bezier(.4, 1, .4, 1);
}

.slide-in-down.animated {
	opacity: 1;
	transform: translateY(0);
}

.zoom-in {
	opacity: 0;
	transform: scale(0.85);
	transition: opacity 0.8s cubic-bezier(.4, 1, .4, 1), transform 0.8s cubic-bezier(.4, 1, .4, 1);
}

.zoom-in.animated {
	opacity: 1;
	transform: scale(1);
}

.fade-in-section {
	opacity: 0;
	transition: opacity 1s cubic-bezier(.4, 1, .4, 1);
}

.fade-in-section.animated {
	opacity: 1;
}

/* 新闻卡片动画和悬停效果 */
.news-card {
	opacity: 0;
	transform: translateY(60px) scale(0.97);
	transition: opacity 0.8s cubic-bezier(.4, 1, .4, 1), transform 0.8s cubic-bezier(.4, 1, .4, 1), box-shadow 0.4s;
	box-shadow: 0 4px 24px rgba(83, 188, 177, 0.08);
}

.news-card.animated {
	opacity: 1;
	transform: translateY(0) scale(1);
}

.news-card:hover {
	transform: translateY(-8px) scale(1.03);
	box-shadow: 0 12px 36px rgba(83, 188, 177, 0.18);
	z-index: 2;
}


/* 数据统计模块 */
.stats-section {
	padding: 80px 0;
	background: linear-gradient(135deg, rgba(12, 43, 60, 0.9), rgba(26, 58, 60, 0.9));
}

.stats-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
	gap: 40px;
}

.stat-item {
	text-align: center;
	padding: 30px 20px;
}

.stat-value {
	font-size: 3.5rem;
	font-weight: 800;
	background: linear-gradient(to right, var(--primary-color), var(--primary-light));
	-webkit-background-clip: text;
	background-clip: text;
	color: transparent;
	line-height: 1;
	margin-bottom: 10px;
}

.stat-label {
	color: var(--text-light);
	font-size: 1.2rem;
}

/* 客户案例模块 */
.clients {
	padding: var(--section-spacing) 0;
}

.clients-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
	gap: 30px;
}

.client-logo {
	background-color: #fff;
	border-radius: 10px;
	padding: 20px;
	display: flex;
	align-items: center;
	justify-content: center;
	height: 120px;
	width: 260px;
	transition: all 0.3s;
}

.client-logo:hover {
	transform: translateY(-5px);
	background-color: rgba(83, 188, 177, 0.1);
}

.client-logo img {
	max-width: 200px;
	max-height: 100px;
	width: auto;
	height: 80px;
	object-fit: contain;
	filter: none;
	opacity: 1;
	transition: transform 0.35s cubic-bezier(.4, 1.6, .4, 1), box-shadow 0.35s;
}

.client-logo:hover img {
	transform: scale(1.22) rotate(-2deg);
	box-shadow: 0 12px 48px 0 rgba(83, 188, 177, 0.32), 0 2px 16px 0 rgba(0, 0, 0, 0.18);
	filter: drop-shadow(0 0 0 transparent);
	opacity: 1;
	background: rgba(255, 255, 255, 0.12);
	border-radius: 12px;
}

/* 关于我们模块 */
.about {
	padding: var(--section-spacing) 0;
	background-color: rgba(12, 43, 60, 0.5);
}

.about-content {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 80px;
	align-items: center;
}

.about-text h2 {
	font-size: 2.8rem;
	margin-bottom: 25px;
	line-height: 1.2;
}

.about-text p {
	margin-bottom: 20px;
	color: var(--text-gray);
	font-size: 1.1rem;
	line-height: 1.8;
}

/* 新闻动态模块 */
.news {
	padding: var(--section-spacing) 0;
}

.news-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
	gap: 40px;
}

.news-card {
	background-color: var(--card-bg);
	border-radius: 12px;
	overflow: hidden;
	transition: all 0.3s;
	border: 1px solid var(--card-border);
}

.news-card:hover {
	transform: translateY(-10px);
	box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.news-image {
	height: 220px;
	background-size: cover;
	background-position: center;
}

.news-content {
	padding: 25px;
}

.news-date {
	color: var(--primary-color);
	font-size: 0.9rem;
	margin-bottom: 10px;
	display: block;
}

.news-content h3 {
	font-size: 1.4rem;
	margin-bottom: 15px;
}

.news-content p {
	color: var(--text-gray);
	margin-bottom: 20px;
}

/* CTA模块 */
.cta-section {
	padding: 100px 0;
	text-align: center;
	background: linear-gradient(135deg, rgba(12, 43, 60, 0.9), rgba(26, 58, 60, 0.9));
}

.cta-content h2 {
	font-size: 2.8rem;
	margin-bottom: 20px;
}

.cta-content p {
	font-size: 1.2rem;
	color: var(--text-gray);
	max-width: 700px;
	margin: 0 auto 40px;
}

/* 页脚样式 */
footer {
	background-color: rgba(12, 43, 60, 0.95);
	padding: 80px 0 30px;
}

.footer-content {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 50px;
	margin-bottom: 50px;
}

.footer-column h3 {
	font-size: 1.3rem;
	margin-bottom: 25px;
	position: relative;
	padding-bottom: 10px;
}

.footer-column h3::after {
	content: '';
	position: absolute;
	bottom: 0;
	left: 0;
	width: 40px;
	height: 2px;
	background: linear-gradient(to right, var(--primary-color), var(--primary-light));
}

.footer-links {
	list-style: none;
}

.footer-links li {
	margin-bottom: 12px;
}

.footer-links a {
	color: var(--text-gray);
	text-decoration: none;
	transition: color 0.3s;
}

.footer-links a:hover {
	color: var(--primary-color);
}

.contact-info li {
	display: flex;
	align-items: center;
	gap: 12px;
	margin-bottom: 15px;
	color: var(--text-gray);
}

.contact-info i {
	color: var(--primary-color);
	width: 20px;
}

.footer-bottom {
	text-align: center;
	padding-top: 30px;
	border-top: 1px solid rgba(255, 255, 255, 0.1);
	color: var(--text-gray);
	font-size: 0.9rem;
}

/* 响应式设计 */
@media (max-width: 1200px) {
	.slide-content h1 {
		font-size: 3rem;
	}

	.about-content,
	.solutions-content {
		gap: 50px;
	}
}

@media (max-width: 992px) {
	.slide-content h1 {
		font-size: 2.5rem;
	}

	.about-content,
	.solutions-content {
		grid-template-columns: 1fr;
	}

	.footer-content {
		grid-template-columns: repeat(2, 1fr);
	}

	.section-title h2,
	.services-intro h2,
	.cta-content h2 {
		font-size: 2.5rem;
	}
}

@media (max-width: 768px) {

	.nav-links,
	.header-actions {
		display: none;
	}

	.mobile-menu-btn {
		display: block;
	}

	.slide {
		padding: 0 30px;
	}

	.slide-content h1 {
		font-size: 2.2rem;
	}

	.slider-container {
		height: 70vh;
		min-height: 500px;
	}

	.services,
	.solutions,
	.clients,
	.about,
	.news,
	.cta-section {
		padding: 70px 0;
	}

	.section-title h2,
	.services-intro h2,
	.cta-content h2 {
		font-size: 2.2rem;
	}

	.services-grid,
	.advantages-grid {
		grid-template-columns: 1fr;
	}

	.slider-nav {
		width: 50px;
		height: 50px;
		font-size: 1.2rem;
	}

	.logo-img {
		height: 50px;
		/* 移动端调整logo大小 */
	}

	.hero-slider {
		margin-top: 80px;
		/* 移动端调整顶部间距 */
	}
}

@media (max-width: 576px) {
	.footer-content {
		grid-template-columns: 1fr;
	}

	.stats-grid {
		grid-template-columns: 1fr;
	}

	.slider-container {
		height: 60vh;
		min-height: 450px;
	}

	.slide-content h1 {
		font-size: 1.8rem;
	}

	.btn {
		padding: 10px 20px;
	}

	.logo-img {
		height: 45px;
		/* 更小屏幕调整logo大小 */
	}

	.slide {
		padding: 0 20px;
	}
}

/* 动画效果 */
@keyframes fadeIn {
	from {
		opacity: 0;
		transform: translateY(20px);
	}

	to {
		opacity: 1;
		transform: translateY(0);
	}
}

.fade-in {
	opacity: 0;
	transform: translateY(20px);
}

.animated {
	animation: fadeIn 1s ease forwards;
}

/* 覆盖导航栏为白色，字体为#53BCB1 */
header {
	background: #fff !important;
	box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08) !important;
}

.nav-links a {
	color: #53BCB1 !important;
	font-size: 1.2rem !important;
	font-weight: 500 !important;
}

.nav-links a:hover {
	color: #399e8d !important;
}

.nav-links a::after {
	background: linear-gradient(to right, #53BCB1, #99D0AF) !important;
}

.header-actions a,
.header-actions .btn {
	color: #53BCB1 !important;
	border-color: #53BCB1 !important;
}

.btn-primary,
.btn-secondary {
	background: #fff !important;
	color: #53BCB1 !important;
	border: 1.5px solid #53BCB1 !important;
}

.btn-primary:hover,
.btn-secondary:hover {
	background: #f2fefc !important;
	color: #399e8d !important;
	box-shadow: 0 10px 20px rgba(83, 188, 177, 0.08) !important;
}
