@charset "UTF-8";
/* 全局样式重置 */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Microsoft YaHei", "Helvetica Neue", Arial, sans-serif;
}

/* 防止移动端横向滚动 */
html, body {
  overflow-x: hidden;
  width: 100%;
  position: relative;
}

/* 确保所有图片自适应容器 */
img {
  max-width: 100%;
  height: auto;
}

/* 确保所有内容块不会溢出容器 */
:root {
  --primary-color: #5FAEA4;
  --secondary-color-1: #BDB0D5;
  --secondary-color-2: #433280;
  --text-color: #333;
  --light-text: #fff;
  --light-bg: #f8f9fa;
  --border-color: #eaeaea;
}

body {
  color: var(--text-color);
  line-height: 1.6;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
}

a {
  text-decoration: none;
  color: inherit;
  transition: all 0.3s ease;
}

ul {
  list-style: none;
}

.btn {
  display: inline-block;
  padding: 10px 25px;
  background-color: var(--primary-color);
  color: white;
  border-radius: 4px;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
}
.btn:hover {
  background-color: var(--secondary-color-1);
  transform: translateY(-2px);
}

.section {
  padding: 80px 0;
}
.section .section-title {
  text-align: center;
  margin-bottom: 50px;
  position: relative;
}
.section .section-title::after {
  content: "";
  display: block;
  width: 80px;
  height: 3px;
  background-color: var(--secondary-color-2);
  margin: 0 auto;
}
.section .section-title h2 {
  font-size: 42px;
  color: var(--primary-color);
  margin-bottom: 15px;
}
.section .section-title p {
  font-size: 18px;
  color: #898989;
}

/* 头部样式 */
header {
  background-color: transparent;
  color: white;
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 1000;
  transition: all 0.3s ease;
  /* 移动端菜单按钮 */
}
header.scrolled {
  background-color: white;
  color: var(--text-color);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}
header .header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 0;
}
header .logo {
  display: flex;
  align-items: center;
}
header .logo img {
  height: 50px;
}
header nav ul {
  display: flex;
}
header nav ul li {
  margin: 0 15px;
  position: relative;
  /* 下拉菜单样式 */
}
header nav ul li a {
  font-weight: 500;
  font-size: 20px;
  position: relative;
  padding: 5px 0;
  color: #ffffff;
  display: block;
}
header nav ul li a:hover {
  color: var(--primary-color);
}
header nav ul li a::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--primary-color);
  transition: width 0.3s ease;
}
header nav ul li a:hover::after {
  width: 100%;
}
header nav ul li a.active::after {
  width: 100%;
}
header nav ul li.dropdown {
  position: relative;
  /* 下拉菜单指示器 */
  /* 下拉菜单容器 */
}
header nav ul li.dropdown > a::before {
  content: "▼";
  font-size: 10px;
  position: absolute;
  right: -15px;
  top: 50%;
  transform: translateY(-50%);
  transition: transform 0.3s ease;
}
header nav ul li.dropdown:hover > a::before {
  transform: translateY(-50%) rotate(180deg);
}
header nav ul li.dropdown .dropdown-menu {
  position: absolute;
  top: 100%;
  left: -10px;
  background-color: rgba(255, 255, 255, 0.6);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  border-radius: 5px;
  padding: 10px 0;
  min-width: 110px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all 0.3s ease;
  z-index: 1000;
  display: flex;
  flex-direction: column;
}
header nav ul li.dropdown .dropdown-menu li {
  margin: 0;
  width: 100%;
}
header nav ul li.dropdown .dropdown-menu li a {
  color: var(--text-color);
  padding: 10px 20px;
  font-size: 16px;
  border-radius: 0;
  white-space: nowrap;
}
header nav ul li.dropdown .dropdown-menu li a:hover {
  background-color: var(--primary-color-light);
  color: var(--primary-color);
}
header nav ul li.dropdown .dropdown-menu li a::after {
  display: none;
}
header nav ul li.dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
header .language-switcher {
  display: flex;
  align-items: center;
}
header .language-switcher a {
  margin-left: 10px;
  font-size: 20px;
  padding: 5px 10px;
  border-radius: 5px;
}
header .language-switcher a.active {
  background-color: var(--primary-color);
  color: white;
}
header.scrolled {
  /* 滚动状态下的下拉菜单样式 */
}
header.scrolled nav ul li a {
  color: var(--text-color);
}
header.scrolled nav ul li a:hover {
  color: var(--primary-color);
}
header.scrolled nav ul li.dropdown > a::before {
  color: var(--text-color);
}
header.scrolled nav ul li.dropdown .dropdown-menu {
  background-color: white;
}
header.scrolled nav ul li.dropdown .dropdown-menu li a {
  color: var(--text-color);
}
header.scrolled nav ul li.dropdown .dropdown-menu li a:hover {
  background-color: var(--primary-color-light);
  color: var(--primary-color);
}
header .mobile-menu-btn {
  display: none;
  width: 40px;
  height: 40px;
  position: absolute;
  top: 16px;
  right: 20px;
  cursor: pointer;
  z-index: 2000;
}
header .mobile-menu-btn::before, header .mobile-menu-btn::after, header .mobile-menu-btn span {
  content: "";
  position: absolute;
  width: 40px;
  height: 5px;
  background-color: #ffffff;
  left: 5px;
  transition: all 0.3s ease;
  border-radius: 5px;
}
header .mobile-menu-btn::before {
  top: 6px;
}
header .mobile-menu-btn::after {
  bottom: 6px;
}
header .mobile-menu-btn span {
  top: 50%;
  transform: translateY(-50%);
}
header .mobile-menu-btn.active::before {
  transform: rotate(45deg);
  top: 50%;
}
header .mobile-menu-btn.active::after {
  transform: rotate(-45deg);
  bottom: 50%;
}
header .mobile-menu-btn.active span {
  opacity: 0;
}

/* 移动端侧边菜单 */
.mobile-nav {
  position: fixed;
  top: 0;
  left: -280px;
  width: 280px;
  height: 100vh;
  background-color: white;
  z-index: 9999;
  box-shadow: 2px 0 10px rgba(0, 0, 0, 0.2);
  transition: left 0.3s ease;
  padding-top: 60px;
  display: none;
  /* 确保侧边栏不会导致页面宽度增加 */
  overflow-y: auto;
  overflow-x: hidden;
}
.mobile-nav .close-btn {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 40px;
  height: 40px;
  cursor: pointer;
}
.mobile-nav .close-btn::before, .mobile-nav .close-btn::after {
  content: "";
  position: absolute;
  width: 20px;
  height: 2px;
  background-color: var(--text-color);
  top: 50%;
  left: 50%;
}
.mobile-nav .close-btn::before {
  transform: translate(-50%, -50%) rotate(45deg);
}
.mobile-nav .close-btn::after {
  transform: translate(-50%, -50%) rotate(-45deg);
}
.mobile-nav ul {
  padding: 20px;
}
.mobile-nav ul li {
  margin-bottom: 20px;
}
.mobile-nav ul li a {
  display: block;
  padding: 10px 0;
  color: var(--text-color);
  font-size: 18px;
  border-bottom: 1px solid var(--border-color);
}
.mobile-nav ul li a:hover, .mobile-nav ul li a.active {
  color: var(--primary-color);
}

.mobile-nav.active {
  left: 0;
}

/* 侧边菜单背景遮罩 */
.mobile-nav-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 1998;
  display: none;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.mobile-nav-overlay.active {
  display: block;
  opacity: 1;
}

/* 视频背景样式 */
.hero .slide-bg.video-bg {
  background: none;
}

.hero .slide-bg.video-bg video {
  position: absolute;
  top: 50%;
  left: 50%;
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  transform: translateX(-50%) translateY(-50%);
  object-fit: cover;
  z-index: 1;
}

.hero .slide-bg.video-bg .video-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(rgba(72, 164, 215, 0.1), rgba(72, 164, 215, 0.2));
  z-index: 2;
}

/* 首页横幅 */
.hero {
  height: 100vh;
  color: white;
  text-align: center;
  position: relative;
  overflow: hidden;
  /* Swiper 导航按钮样式 */
  /* Swiper 分页指示器样式 */
}
.hero.other {
  height: 50vh;
}
.hero .swiper-container {
  width: 100%;
  height: 100%;
}
.hero .swiper-slide {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero .slide-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  z-index: 1;
}
.hero .hero-content {
  max-width: 1200px;
  width: 80%;
  margin: 30% auto 0;
  padding: 0 20px;
  position: relative;
  text-align: left;
  z-index: 10;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}
.hero .hero-content h2 {
  font-size: 64px;
  margin-bottom: 20px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}
.hero .hero-content p {
  font-size: 36px;
  font-weight: 400;
  margin-bottom: 30px;
}
.hero .hero-content .btn {
  font-size: 20px;
  padding: 10px 40px;
}
.hero .swiper-button-prev,
.hero .swiper-button-next {
  color: white !important;
  width: 50px !important;
  height: 50px !important;
  background-color: rgba(0, 0, 0, 0.3);
  border-radius: 50%;
  transition: all 0.3s ease;
}
.hero .swiper-button-prev:hover,
.hero .swiper-button-next:hover {
  background-color: rgba(0, 0, 0, 0.5);
  transform: scale(1.1);
}
.hero .swiper-button-prev::after,
.hero .swiper-button-next::after {
  font-size: 20px !important;
}
.hero .swiper-pagination {
  bottom: 30px !important;
}
.hero .swiper-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background-color: rgba(255, 255, 255, 0.5);
  opacity: 1;
  transition: all 0.3s ease;
}
.hero .swiper-pagination .swiper-pagination-bullet-active {
  background-color: white;
  width: 24px;
  border-radius: 6px;
}

/* 企业方针 */
.principles {
  background-color: var(--light-bg);
}
.principles .principles-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}
.principles .principle-card {
  background-color: white;
  padding: 30px;
  border-radius: 5px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  text-align: center;
  transition: transform 0.3s ease;
}
.principles .principle-card h3 {
  font-size: 20px;
  margin-bottom: 15px;
  color: var(--primary-color);
}
.principles .principle-card:hover {
  transform: translateY(-10px);
}
.principles .principle-icon {
  width: 70px;
  height: 70px;
  background-color: var(--primary-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  color: white;
  font-size: 30px;
}

/* 使命愿景价值观 */
.mission-vision {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 40px;
  margin-top: 80px;
}
.mission-vision .mission-box, .mission-vision .vision-box, .mission-vision .values-box {
  padding: 50px;
  border-radius: 5px;
  color: white;
  text-align: center;
}
.mission-vision .mission-box h2, .mission-vision .vision-box h2, .mission-vision .values-box h2 {
  font-size: 36px;
  margin-bottom: 20px;
}
.mission-vision .mission-box p, .mission-vision .vision-box p, .mission-vision .values-box p {
  margin-top: 2em;
  font-size: 20px;
  line-height: 2em;
}
.mission-vision .mission-box {
  background-color: var(--primary-color);
}
.mission-vision .vision-box {
  background-color: var(--secondary-color-1);
}
.mission-vision .values-box {
  background-color: var(--secondary-color-2);
}

/* 公司介绍 */
.about-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}
.about-content .about-text p {
  font-size: 17px;
  line-height: 1.5em;
  margin-bottom: 15px;
}
.about-content .about-image {
  border-radius: 5px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}
.about-content .about-image img {
  width: 100%;
  height: auto;
  display: block;
}
.about-content .about-text2 {
  display: none;
}
.about-content .about-text2 .cont {
  font-size: 17px;
  line-height: 1.5em;
  margin-bottom: 15px;
}

.center {
  text-align: center;
}

/* 核心技术团队 */
.team .team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}
.team .team-card {
  background-color: white;
  border-radius: 5px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}
.team .team-image {
  height: 260px;
  overflow: hidden;
}
.team .team-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.team .team-card:hover .team-image img {
  transform: scale(1.1);
}
.team .team-info {
  padding: 20px;
  text-align: center;
}
.team .team-info h3 {
  font-size: 20px;
  margin-bottom: 10px;
  color: var(--primary-color);
}
.team .team-info h4 {
  font-size: 18px;
  margin-bottom: 10px;
  color: #595757;
}
.team .team-info p {
  font-size: 16px;
  line-height: 1.5em;
  margin-bottom: 15px;
}
.team .center {
  display: none;
}

/* 发展历程 */
.lichen {
  background-color: var(--light-bg);
}
.lichen .timeline {
  position: relative;
  max-width: 1000px;
  margin: 0 auto;
}
.lichen .timeline::before {
  content: "";
  position: absolute;
  width: 7px;
  background-color: var(--secondary-color-1);
  top: 0;
  bottom: 0;
  left: 50%;
  margin-left: -3.5px;
  border-radius: 7rem;
}
.lichen .timeline .timeline-item {
  padding: 10px 40px;
  position: relative;
  width: 50%;
  box-sizing: border-box;
}
.lichen .timeline .timeline-item:nth-child(odd) {
  left: 0;
}
.lichen .timeline .timeline-item:nth-child(even) {
  left: 50%;
}
.lichen .timeline .timeline-content {
  padding: 20px;
  background-color: white;
  border-radius: 5px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  position: relative;
}
.lichen .timeline .timeline-item:nth-child(odd) .timeline-content::after {
  content: "";
  position: absolute;
  width: 20px;
  height: 20px;
  right: -10px;
  background-color: white;
  top: 20px;
  transform: rotate(45deg);
  box-shadow: 2px -2px 5px rgba(0, 0, 0, 0.05);
}
.lichen .timeline .timeline-item:nth-child(even) .timeline-content::after {
  content: "";
  position: absolute;
  width: 20px;
  height: 20px;
  left: -10px;
  background-color: white;
  top: 20px;
  transform: rotate(45deg);
  box-shadow: -2px 2px 5px rgba(0, 0, 0, 0.05);
}
.lichen .timeline .timeline-period {
  font-weight: bold;
  color: var(--primary-color);
  margin-bottom: 10px;
  font-size: 18px;
}
.lichen .timeline .timeline-milestone {
  font-weight: bold;
  margin-bottom: 10px;
  font-size: 16px;
}
.lichen .timeline .timeline-content ul {
  list-style-type: disc;
  padding-left: 20px;
}
.lichen .timeline .timeline-content ul li {
  margin-bottom: 5px;
  font-size: 16px;
}

/* 研发与生产体系 */
.yanfa {
  background-color: var(--light-bg);
}

.business-model {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}
.business-model .model-card {
  background-color: white;
  padding: 30px;
  border-radius: 5px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  text-align: left;
  border-top: 4px solid var(--primary-color);
}
.business-model .model-card h3 {
  font-size: 20px;
  margin-bottom: 15px;
  color: var(--primary-color);
}
.business-model .model-card p {
  font-size: 16px;
  line-height: 1.8em;
  margin-bottom: 15px;
}

/* 产品展示 */
.products .product-desc {
  font-size: 24px;
  line-height: 1.8em;
  margin-bottom: 50px;
  color: #908F8F;
  text-align: center;
}
.products .product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}
.products .product-card {
  background-color: white;
  border-radius: 5px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}
.products .product-image {
  height: 200px;
  overflow: hidden;
}
.products .product-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.products .product-card:hover .product-image img {
  transform: scale(1.1);
}
.products .product-info {
  padding: 20px;
}
.products .product-info h3 {
  font-size: 20px;
  margin-bottom: 10px;
  color: var(--primary-color);
}
.products .product-info p {
  font-size: 16px;
  line-height: 1.5em;
}

/* 市场与销售 */
.sales .sales-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}
.sales .sales-content .sales-image {
  border-radius: 5px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}
.sales .sales-content .sales-image img {
  width: 100%;
  height: auto;
  display: block;
}
.sales .sales-content .sales-text h2 {
  font-size: 24px;
  margin-bottom: 20px;
  color: var(--primary-color);
}
.sales .sales-content .sales-text p {
  font-size: 17px;
  line-height: 1.5em;
  margin-bottom: 15px;
}
.sales .center {
  display: none;
}

/* 产品展示 */
.servers .server-desc {
  font-size: 24px;
  line-height: 1.8em;
  margin-bottom: 50px;
  color: #908F8F;
  text-align: center;
}
.servers .server-ul .server-item {
  padding: 10px;
  border-radius: 5px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  display: flex;
  justify-content: flex-start;
  align-items: center;
  margin-bottom: 30px;
}
.servers .server-ul .server-item.item1 {
  background-color: var(--primary-color);
}
.servers .server-ul .server-item.item2 {
  background-color: var(--secondary-color-1);
}
.servers .server-ul .server-item.item3 {
  background-color: var(--secondary-color-2);
}
.servers .server-ul .server-item h3 {
  font-size: 32px;
  color: #ffffff;
  width: 25%;
  text-align: center;
}
.servers .server-ul .server-item p {
  width: 70%;
  font-size: 20px;
  line-height: 1.8em;
  background-color: #ffffff;
  padding: 10px 20px;
  border-radius: 6px;
  color: #595757;
  text-align: center;
}

/* 新闻中心 */
.news {
  background-color: var(--light-bg);
}
.news .news-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}
.news .news-card {
  background-color: white;
  border-radius: 5px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}
.news .news-image {
  height: 200px;
  overflow: hidden;
}
.news .news-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.news .news-card:hover .news-image img {
  transform: scale(1.1);
}
.news .news-info {
  padding: 20px;
}
.news .news-info .news-date {
  font-size: 14px;
  color: #888;
}
.news .news-info h3 {
  font-size: 18px;
  margin-bottom: 10px;
  color: var(--primary-color);
}
.news .news-info p {
  font-size: 16px;
  line-height: 1.5em;
}
.news .center {
  display: none;
}

.page {
  padding: 0 0 45px;
  padding-top: 30px;
  clear: both;
  overflow: hidden;
  text-align: center;
}
.page ul {
  display: flex;
  flex-direction: row;
  justify-content: flex-end;
}
.page ul li.disabled span {
  background-color: #eee;
  color: #999;
}
.page span.pg-prev {
  color: #bbb;
  font-weight: normal;
  background: #fff;
  width: 60px;
  border-radius: 20px 0 0 20px;
  box-shadow: 1px 1px 3px rgba(204, 204, 204, 0.7);
}
.page a, .page span, .page i {
  display: inline-block;
  background: none repeat scroll 0 0 #FFF;
  margin-left: 1px;
  padding: 10px 15px;
  overflow: hidden;
  color: #919191;
  font-size: 14px;
  font-weight: bold;
  border-right: none;
  -moz-box-shadow: 1px 1px 0 rgba(204, 204, 204, 0.7);
  -webkit-box-shadow: 1px 1px 0 rgba(204, 204, 204, 0.7);
  box-shadow: 1px 1px 0 rgba(204, 204, 204, 0.7);
}
.page span {
  background: var(--primary-color);
  border: medium none;
  color: #fff;
  font-weight: bold;
}
.page i {
  color: #919191;
}
.page a.pg-next {
  width: 60px;
  border-radius: 0 20px 20px 0;
  box-shadow: 1px 1px 3px rgba(204, 204, 204, 0.7);
}

/* 联系方式 */
.contact-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
}
.contact-content .contact-info {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.contact-content .contact-info .contact-item {
  display: flex;
  align-items: flex-start;
}
.contact-content .contact-info .contact-item .contact-icon {
  width: 40px;
  height: 40px;
  background-color: var(--primary-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  margin-right: 15px;
  flex-shrink: 0;
  font-size: 18px;
}
.contact-content .contact-info .contact-item h3 {
  font-size: 20px;
}
.contact-content .contact-info .contact-item p {
  font-size: 16px;
}
.contact-content .contact-form img {
  width: 1000px;
}

/* 页脚 */
footer {
  width: 100%;
  color: white;
}
footer .footer-content {
  background-color: var(--secondary-color-1);
  text-align: center;
}
footer .footer-content ul {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
}
footer .footer-content ul li {
  padding: 20px 40px;
}
footer .footer-content ul li a {
  font-size: 18px;
  color: #ffffff;
}
footer .footer-content ul li a:hover {
  color: red;
}
footer .footer-content .go-back {
  display: none;
  padding: 20px 20px;
  position: relative;
}
footer .footer-content .go-back .mobile-menu-btn {
  width: 40px;
  height: 40px;
  position: absolute;
  top: 10px;
  left: 20px;
  cursor: pointer;
  z-index: 2000;
}
footer .footer-content .go-back .mobile-menu-btn::before, footer .footer-content .go-back .mobile-menu-btn::after, footer .footer-content .go-back .mobile-menu-btn span {
  content: "";
  position: absolute;
  width: 40px;
  height: 5px;
  background-color: #ffffff;
  left: 5px;
  transition: all 0.3s ease;
  border-radius: 5px;
}
footer .footer-content .go-back .mobile-menu-btn::before {
  top: 6px;
}
footer .footer-content .go-back .mobile-menu-btn::after {
  bottom: 6px;
}
footer .footer-content .go-back .mobile-menu-btn span {
  top: 50%;
  transform: translateY(-50%);
}
footer .footer-content .go-back .mobile-menu-btn.active::before {
  transform: rotate(45deg);
  top: 50%;
}
footer .footer-content .go-back .mobile-menu-btn.active::after {
  transform: rotate(-45deg);
  bottom: 50%;
}
footer .footer-content .go-back .mobile-menu-btn.active span {
  opacity: 0;
}
footer .footer-content .go-back .home {
  font-size: 18px;
  color: #ffffff;
}
footer .footer-content .go-back .home:hover {
  color: red;
}
footer .copyright {
  padding: 20px;
  background-color: var(--secondary-color-2);
  text-align: center;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 18px;
}
footer .copyright a {
  color: #ffffff;
  font-size: 16px;
}
footer .copyright a:hover {
  color: red;
}

/*# sourceMappingURL=css.css.map */
