/**
* Template Name: SoftLand
* Template URL: https://bootstrapmade.com/softland-bootstrap-app-landing-page-template/
* Updated: Aug 07 2024 with Bootstrap v5.3.3
* Author: BootstrapMade.com
* License: https://bootstrapmade.com/license/
*/

/*--------------------------------------------------------------
# Font & Color Variables
# Help: https://bootstrapmade.com/color-system/
--------------------------------------------------------------*/
/* Fonts */
/* :root {
  --default-font: "Roboto", system-ui, -apple-system, "Segoe UI", Roboto,
    "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif,
    "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  --heading-font: "Raleway", sans-serif;
  --nav-font: "Poppins", sans-serif;
} */

:root {
  --default-font: "Roboto", system-ui, -apple-system, "Segoe UI", Roboto,
    "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif,
    "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  --heading-font: "Roboto", system-ui, -apple-system, "Segoe UI", Roboto,
    "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif,
    "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  --nav-font: "Roboto", system-ui, -apple-system, "Segoe UI", Roboto,
    "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif,
    "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
}

/* Global Colors - The following color variables are used throughout the website. Updating them here will change the color scheme of the entire website */
:root {
  --background-color: #ffffff; /* Background color for the entire website, including individual sections */
  --default-color: #212529; /* Default color used for the majority of the text content across the entire website */
  --heading-color: #2d465e; /* Color for headings, subheadings and title throughout the website */
  --accent-color: #0087ff; /* Accent color that represents your brand on the website. It's used for buttons, links, and other elements that need to stand out */
  --surface-color: #ffffff; /* The surface color is used as a background of boxed elements within sections, such as cards, icon boxes, or other elements that require a visual separation from the global background. */
  --contrast-color: #ffffff; /* Contrast color for text, ensuring readability against backgrounds of accent, heading, or default colors. */
}

/* Nav Menu Colors - The following color variables are used specifically for the navigation menu. They are separate from the global colors to allow for more customization options */
:root {
  --nav-color: #ffffff; /* The default color of the main navmenu links */
  --nav-hover-color: #ccff00; /* Applied to main navmenu links when they are hovered over or active */
  --nav-mobile-background-color: #ffffff; /* Used as the background color for mobile navigation menu */
  --nav-dropdown-background-color: #ffffff; /* Used as the background color for dropdown items that appear when hovering over primary navigation items */
  --nav-dropdown-color: #212529; /* Used for navigation links of the dropdown items in the navigation menu. */
  --nav-dropdown-hover-color: #0087ff; /* Similar to --nav-hover-color, this color is applied to dropdown navigation links when they are hovered over. */
}

/* Color Presets - These classes override global colors when applied to any section or element, providing reuse of the sam color scheme. */

.light-background {
  --background-color: #f1f3f8;
  --surface-color: #ffffff;
}

.dark-background {
  --background-color: #0087ff;
  --default-color: #ffffff;
  --heading-color: #ffffff;
  --surface-color: #1c4097;
  --contrast-color: #ffffff;
}

/* Smooth scroll */
:root {
  scroll-behavior: smooth;
}

/*--------------------------------------------------------------
# General Styling & Shared Classes
--------------------------------------------------------------*/
body {
  color: var(--default-color);
  background-color: var(--background-color);
  font-family: var(--default-font);
}

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

a:hover {
  color: color-mix(in srgb, var(--accent-color), transparent 25%);
  text-decoration: none;
}

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

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

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

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

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

@keyframes php-email-form-loading {
  0% {
    transform: rotate(0deg);
  }

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

/*--------------------------------------------------------------
# Global Header
--------------------------------------------------------------*/
.header {
  --background-color: #0087ff;
  --default-color: #ffffff;
  --heading-color: #ffffff;
  color: var(--default-color);
  background-color: var(--background-color);
  padding: 15px 0;
  transition: all 0.5s;
  z-index: 997;
}
.header::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  /* background-color: rgba(255, 255, 255, 0.1); */
}

.header .logo {
  line-height: 1;
}

.header .logo img {
  display: block;
  max-height: 32px;
  margin-right: 8px;
}

.header .logo h1 {
  font-size: 30px;
  margin: 0;
  font-weight: 700;
  color: var(--heading-color);
  cursor: pointer;
}

/* .scrolled .header {
  box-shadow: 0px 0 18px rgba(0, 0, 0, 0.1);
} */

/* Global Header on Scroll
------------------------------*/
.scrolled .header ::before {
  background-color: rgba(255, 255, 255, 0.1);
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/* Navmenu - Desktop */
@media (min-width: 1200px) {
  .navmenu {
    padding: 0;
  }

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

  .navmenu li {
    position: relative;
  }

  .navmenu a,
  .navmenu a:focus {
    color: var(--nav-color);
    padding: 0px 35px;
    font-size: 14px;
    font-family: var(--nav-font);
    font-weight: 500;
    line-height: 60px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    white-space: nowrap;
    transition: 0.3s;
  }

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

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

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

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

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

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

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

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

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

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

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

/*--------------------------------------------------------------
# Global Footer
--------------------------------------------------------------*/
.footer {
  color: var(--default-color);
  background-color: var(--background-color);
  font-size: 14px;
  text-align: center;
  padding: 3% 0;
  position: relative;
}

.footer h3 {
  font-size: 21px;
  font-weight: 500;
  position: relative;
  line-height: 1.3;
  padding: 0;
  margin: 0 0 2% 0;
}
.footer h3 img {
  height: 19px;
}

.footer p {
  font-size: 12px;
  font-weight: 400;
  line-height: 1.3;
  padding: 0;
  margin: 0 0 1.5% 0;
}

.footer .social-links {
  margin: 0 0 0 0;
}

.footer .social-links a {
  font-size: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #ffffff;
  border-radius: 5px;
  color: #0087ff;
  line-height: 1;
  margin: 0 4px;
  text-align: center;
  width: 36px;
  height: 36px;
  transition: 0.3s;
}

/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
#preloader {
  position: fixed;
  inset: 0;
  z-index: 999999;
  overflow: hidden;
  background: var(--background-color);
  transition: all 0.6s ease-out;
}

#preloader:before {
  content: "";
  position: fixed;
  top: calc(50% - 30px);
  left: calc(50% - 30px);
  border: 6px solid #ffffff;
  border-color: var(--accent-color) transparent var(--accent-color) transparent;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  animation: animate-preloader 1.5s linear infinite;
}

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

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

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

.scroll-top i {
  font-size: 24px;
  color: var(--contrast-color);
  line-height: 0;
}

.scroll-top:hover {
  background-color: color-mix(in srgb, var(--accent-color), transparent 20%);
  color: var(--contrast-color);
}

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

/*--------------------------------------------------------------
# Disable aos animation delay on mobile devices
--------------------------------------------------------------*/
@media screen and (max-width: 768px) {
  [data-aos-delay] {
    transition-delay: 0 !important;
  }
}

/*--------------------------------------------------------------
# Global Page Titles & Breadcrumbs
--------------------------------------------------------------*/
.page-title {
  color: var(--default-color);
  background-color: var(--background-color);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 160px 0 80px 0;
  text-align: center;
  position: relative;
}

.page-title:before {
  content: "";
  background-color: color-mix(
    in srgb,
    var(--background-color),
    transparent 50%
  );
  position: absolute;
  inset: 0;
}

.page-title h1 {
  font-size: 42px;
  font-weight: 700;
  margin-bottom: 10px;
}

.page-title .breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  justify-content: center;
  padding: 0;
  margin: 0;
  font-size: 16px;
  font-weight: 400;
}

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

.page-title .breadcrumbs ol li + li::before {
  content: "/";
  display: inline-block;
  padding-right: 10px;
  color: color-mix(in srgb, var(--default-color), transparent 50%);
}

/*--------------------------------------------------------------
# Global Sections
--------------------------------------------------------------*/
section,
.section {
  color: var(--default-color);
  background-color: var(--background-color);
  padding: 5% 0;
  scroll-margin-top: 90px;
  overflow: clip;
}

@media (max-width: 1199px) {
  section,
  .section {
    scroll-margin-top: 66px;
  }
}

/*--------------------------------------------------------------
# Global Section Titles
--------------------------------------------------------------*/
.section-title {
  text-align: center;
  padding-bottom: 60px;
  position: relative;
}

.section-title h2 {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 15px;
}

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

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
.hero {
}

/* .hero:before {
  content: "";
  background: color-mix(in srgb, var(--background-color), transparent 30%);
  position: absolute;
  inset: 0;
  z-index: 2;
} */

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

.hero p {
  color: color-mix(in srgb, var(--default-color), transparent 0%);
  font-size: 13px;
  font-weight: 400;
  line-height: 1.5;
  margin-bottom: 10%;
}

.hero .download-btn {
  color: var(--contrast-default);
  background: color-mix(in srgb, var(--default-color), transparent 80%);
  font-family: var(--heading-font);
  font-weight: 500;
  font-size: 18px;
  padding: 1% 4.5%;
  border-radius: 6px;
  transition: 0.5s;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero .download-btn span {
  white-space: nowrap;
}

.hero .download-btn + .download-btn {
  margin-left: 20px;
}

.hero .download-btn:hover {
  background: rgba(204, 255, 0, 0.6);
  color: var(--contrast-color);
}

.hero .download-btn i {
  font-size: 25px;
  line-height: 0;
  margin-right: 8%;
  position: relative;
}
.hero .download-btn i.bi-apple::after {
  content: "";
  position: absolute;
  top: 0;
  right: -25%;
  width: 1px;
  height: 100%;
  background: #ffffff;
  border-radius: 1px;
}

.hero .hero-img {
  position: relative;
  min-height: 600px;
}

.hero .hero-img .phone-1 {
  margin-top: 20px;
  position: absolute;
  left: 0;
  box-shadow: 0 15px 50px 0 rgba(0, 0, 0, 0.5);
  border-radius: 30px;
  width: 250px;
}

.hero .hero-img .phone-2 {
  position: absolute;
  left: 0;
  box-shadow: 0 15px 50px 0 rgba(0, 0, 0, 0.5);
  border-radius: 30px;
  width: 250px;
  margin-top: 70px;
  margin-left: 100px;
}
.banner-section {
  position: relative;
  z-index: 3;
  padding-top: 90px;
  padding-bottom: 0;
}
.banner-box {
  position: absolute;
  left: 6%;
  right: 6%;
  top: 63%;
}
.banner-section > img {
  width: 100%;
}

.sell_banner {
  top: 78%;
}

.sell_banner .download-btn {
  border-radius: 6px;
  border: 2px solid #0087ff;
  color: #0087ff;
  background: none;
}

.sell_banner .download-btn i.bi-apple::after {
  background: #0087ff;
}

.sell_banner .download-btn:hover {
  background: #0087ff;
  color: #fff;
}

@media screen and (max-width: 992px) {
  .hero .hero-img {
    text-align: center;
    overflow: hidden;
    min-height: 600px;
  }

  .hero .hero-img .phone-1,
  .hero .hero-img .phone-2 {
    left: 50%;
    transform: translateX(-50%);
  }
}

/*--------------------------------------------------------------
# About Section
--------------------------------------------------------------*/
.about .content h3 {
  font-weight: 500;
  font-size: 18px;
  color: #0087ff;
  line-height: 1.4;
  padding: 7px 28px;
  background: #ccff00;
  border-radius: 6px;
  display: inline-block;
  margin-bottom: 8%;
}

.about .content h2 {
  font-weight: 500;
  font-size: 22px;
  color: #00162a;
  margin-bottom: 6%;
}

.about .content p {
  font-size: 14px;
  color: #00162a;
  line-height: 1.5;
  margin-bottom: 6%;
}

.about .content p.about_txt_p {
  margin-bottom: 30%;
}

.about .content .read-more {
  border-radius: 6px;
  border: 2px solid #0087ff;
  font-weight: 500;
  font-size: 18px;
  line-height: 1.4;
  letter-spacing: 1px;
  padding: 1.5% 6%;
  transition: 0.3s;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  white-space: nowrap;
}

.about .content .read-more i {
  font-size: 20px;
  margin-left: 10%;
  line-height: 0;
  transition: 0.3s;
}

.about .content .read-more:hover {
  border: 2px solid #0087ff;
  background: #0087ff;
  color: #fff;
}

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

.about .icon-box {
  background: #f5f9fd;
  border-radius: 6px;
  padding: 6%;
  color: #00162a;
  transition: all 0.3s ease-out 0s;
  margin-bottom: 36px;
}

.about .icon-box i {
  display: block;
  width: 18%;
  position: relative;
}
.about .icon-box i img:first-child {
  width: 100%;
}
.about .icon-box i img:last-child {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  transition: all 0.3s ease-out 0s;
  -webkit-transform: scale(0);
  transform: scale(0);
}

.about .icon-box h3 {
  margin: 4% 0;
  font-size: 17px;
  font-weight: 600;
  line-height: 1.3;
  color: #00162a;
  transition: all 0.3s ease-out 0s;
}

.about .icon-box p {
  margin-bottom: 0;
  font-size: 12px;
  font-weight: 400;
  line-height: 1.3;
  color: #00162a;
  min-height: 60px;
  transition: all 0.3s ease-out 0s;
}

.about .icon-box:hover {
  color: #ffffff;
  background: #0087ff;
  box-shadow: 0px 20px 30px 0px rgba(151, 184, 216, 0.3);
  border-radius: 6px;
  -webkit-transform: scale(1.05);
  transform: scale(1.05);
}
.about .icon-box:hover i img:last-child {
  -webkit-transform: scale(1);
  transform: scale(1);
}
.about .icon-box:hover h3 {
  color: #ffffff;
}

.about .icon-box:hover p {
  color: #ffffff;
}

.about_row {
  align-items: flex-start !important;
  position: relative;
  z-index: 2;
  --bs-gutter-y: 0 !important;
}
.abolut_icon {
  width: 10%;
  position: absolute;
  bottom: 0;
  left: 30%;
  z-index: -1;
}
.abolut_icon img {
  width: 100%;
}
.about_box {
  margin-top: 0;
}
.about_box .row {
  margin-right: -18px;
  margin-left: -18px;
  --bs-gutter-y: 0 !important;
}

.about_box .col-md-6 {
  padding-right: 18px;
  padding-left: 18px;
  margin-top: 0;
}

.about_txt {
  padding-right: 6%;
  margin-top: 0;
}

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

/*--------------------------------------------------------------
# Featured Section
--------------------------------------------------------------*/
.featured .card {
  background-color: var(--surface-color);
  color: var(--default-color);
  box-shadow: 0px 2px 12px rgba(0, 0, 0, 0.1);
  border-radius: 0;
  margin-bottom: 20px;
  border: 0;
  height: 100%;
  position: relative;
}

.featured .card .img {
  position: relative;
  padding: 20px 20px 0 20px;
}

.featured .card .icon {
  color: var(--accent-color);
  background-color: color-mix(in srgb, var(--accent-color) 10%, white 100%);
  border: 4px solid var(--background-color);
  width: 72px;
  height: 72px;
  text-align: center;
  position: absolute;
  border-radius: 50%;
  left: calc(50% - 32px);
  bottom: -36px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  line-height: 0;
  transition: 0.3s;
}

.featured .card:hover .icon {
  background-color: var(--accent-color);
  color: var(--contrast-color);
}

.featured .card h2 {
  text-align: center;
  font-weight: 700;
  font-size: 24px;
  padding: 0;
  margin: 50px 0 12px 0;
}

.featured .card h2 a {
  color: var(--heading-color);
}

.featured .card h2 a:hover {
  color: var(--accent-color);
}

.featured .card p {
  font-size: 14px;
  line-height: 24px;
  margin-bottom: 0;
  padding: 0 30px 30px 30px;
}

/*--------------------------------------------------------------
# Cards Section
--------------------------------------------------------------*/
.cards {
  padding-top: 60px;
  padding-bottom: 0px;
}
.cards_h5 h5 {
  font-weight: 600;
  font-size: 35px;
  color: #0087ff;
  line-height: 1;
  text-align: center;
  margin-bottom: 2.5%;
}

.cards .card-item {
  background: color-mix(in srgb, var(--default-color), transparent 97%);
  padding: 8% 7% 0 7%;
  transition: all ease-in-out 0.3s;
  height: 100%;
  position: relative;
}

.cards .card-item span {
  display: block;
  width: 17%;
  margin: 0 auto;
}
.cards .card-item span img {
  width: 100%;
}

.cards .card-item h4 {
  font-weight: 600;
  font-size: 22px;
  color: #00162a;
  line-height: 1.5;
  text-align: center;
  margin: 5% 0 5% 0;
}

.cards .card-item p {
  font-weight: 400;
  font-size: 12px;
  color: #00162a;
  line-height: 1.5;
  text-align: center;
  margin-bottom: 5%;
  min-height: 45px;
}

.cards .card-item > img {
  display: block;
  width: 50%;
  margin: 0 auto;
}

/*--------------------------------------------------------------
# Features Section
--------------------------------------------------------------*/
.features .features-item {
  color: color-mix(in srgb, var(--default-color), transparent 20%);
}

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

@media (max-width: 640px) {
  .features .features-item + .features-item {
    margin-top: 40px;
  }
}

.features .features-item h3 {
  font-weight: 700;
  font-size: 26px;
}

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

.features .features-item ul li {
  padding-bottom: 10px;
  display: flex;
  align-items: center;
}

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

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

.features .features-item p:last-child {
  margin-bottom: 0;
}

/*--------------------------------------------------------------
# Gallery Section
--------------------------------------------------------------*/
.gallery {
  overflow: hidden;
}

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

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

.gallery .swiper-pagination .swiper-pagination-bullet {
  background-color: var(--background-color);
  border: 1px solid var(--accent-color);
  width: 12px;
  height: 12px;
  opacity: 1;
}

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

.gallery .swiper-slide-active {
  text-align: center;
}

@media (min-width: 992px) {
  .gallery .swiper-wrapper {
    padding: 60px 0;
  }

  .gallery .swiper-slide-active {
    background: var(--background-color);
    border: 6px solid var(--accent-color);
    /* padding: 4px; */
    z-index: 1;
    transform: scale(1.1);
    border-radius: 25px;
    transition: none;
  }
}

/*--------------------------------------------------------------
# Testimonials Section
--------------------------------------------------------------*/
.testimonials .section-header {
  margin-bottom: 40px;
}

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

.testimonials .testimonial-item {
  text-align: center;
}

.testimonials .testimonial-item .testimonial-img {
  width: 120px;
  border-radius: 50%;
  border: 4px solid var(--background-color);
  margin: 0 auto;
}

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

.testimonials .testimonial-item h4 {
  font-size: 14px;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  margin: 0 0 15px 0;
}

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

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

.testimonials .testimonial-item .quote-icon-left,
.testimonials .testimonial-item .quote-icon-right {
  color: color-mix(in srgb, var(--accent-color), transparent 50%);
  font-size: 26px;
  line-height: 0;
}

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

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

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

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

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

.testimonials .swiper-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  opacity: 1;
  background-color: color-mix(in srgb, var(--default-color), transparent 85%);
}

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

@media (min-width: 992px) {
  .testimonials .testimonial-item p {
    width: 80%;
  }
}

/*--------------------------------------------------------------
# Pricing Section
--------------------------------------------------------------*/
.pricing {
  padding: 60px 0 120px 0;
}

.pricing .section-title {
  margin-bottom: 40px;
}

.pricing .pricing-item {
  background-color: var(--surface-color);
  box-shadow: 0 3px 20px -2px rgba(0, 0, 0, 0.1);
  padding: 60px 40px;
  height: 100%;
  position: relative;
  border-radius: 15px;
}

.pricing h3 {
  font-weight: 600;
  margin-bottom: 15px;
  font-size: 20px;
  text-align: center;
}

.pricing .icon {
  margin: 30px auto 20px auto;
  width: 70px;
  height: 70px;
  background: var(--accent-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.3s;
  transform-style: preserve-3d;
}

.pricing .icon i {
  color: var(--background-color);
  font-size: 28px;
  transition: ease-in-out 0.3s;
  line-height: 0;
}

.pricing .icon::before {
  position: absolute;
  content: "";
  height: 86px;
  width: 86px;
  border-radius: 50%;
  background: color-mix(in srgb, var(--accent-color), transparent 80%);
  transition: all 0.3s ease-out 0s;
  transform: translateZ(-1px);
}

.pricing .icon::after {
  position: absolute;
  content: "";
  height: 102px;
  width: 102px;
  border-radius: 50%;
  background: color-mix(in srgb, var(--accent-color), transparent 90%);
  transition: all 0.3s ease-out 0s;
  transform: translateZ(-2px);
}

.pricing h4 {
  font-size: 48px;
  color: var(--accent-color);
  font-weight: 700;
  font-family: var(--heading-font);
  margin-bottom: 25px;
  text-align: center;
}

.pricing h4 sup {
  font-size: 28px;
}

.pricing h4 span {
  color: color-mix(in srgb, var(--default-color), transparent 50%);
  font-size: 18px;
  font-weight: 400;
}

.pricing ul {
  padding: 20px 0;
  list-style: none;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  text-align: left;
  line-height: 20px;
}

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

.pricing ul i {
  color: #059652;
  font-size: 24px;
  padding-right: 3px;
}

.pricing ul .na {
  color: color-mix(in srgb, var(--default-color), transparent 70%);
}

.pricing ul .na i {
  color: color-mix(in srgb, var(--default-color), transparent 70%);
}

.pricing ul .na span {
  text-decoration: line-through;
}

.pricing .buy-btn {
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  display: inline-block;
  padding: 8px 40px 10px 40px;
  border-radius: 50px;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 80%);
  transition: none;
  font-size: 16px;
  font-weight: 600;
  font-family: var(--heading-font);
  transition: 0.3s;
}

.pricing .buy-btn:hover {
  background-color: var(--accent-color);
  color: var(--contrast-color);
}

.pricing .featured {
  z-index: 10;
  border: 3px solid var(--accent-color);
}

@media (min-width: 992px) {
  .pricing .featured {
    transform: scale(1.15);
  }
}

.referEarn {
  width: 100%;
  position: relative;
  cursor: pointer;
}
.referEarn a img {
  display: block;
  width: 100%;
}

.referEarn .read-more {
  border-radius: 6px;
  border: 2px solid #fff;
  background: #fff;
  font-weight: 500;
  font-size: 18px;
  line-height: 1.4;
  color: #0087ff;
  letter-spacing: 1px;
  padding: 0.6% 2.2%;
  transition: 0.3s;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  white-space: nowrap;
  position: absolute;
  bottom: 5%;
  left: 50%;
  transform: translateX(-50%);
}

.referEarn .read-more i {
  font-size: 20px;
  margin-left: 10%;
  line-height: 0;
  transition: 0.3s;
}

/*--------------------------------------------------------------
# Faq Section
--------------------------------------------------------------*/
.faq {
  padding: 0;
}
.faq_h5 {
  background: #0087ff;
  font-weight: 600;
  font-size: 35px;
  color: #ccff00;
  line-height: 1.5;
  text-align: center;
  padding: 2.5% 0;
}
.faq_h5 > img {
  display: block;
  width: 16%;
  margin: 0 auto;
  margin-bottom: 1%;
}
.faq_box {
  padding: 3% 0;
}
.faq_row {
  width: 100%;
}
.faq .faq-container .faq-item {
  background-color: var(--surface-color);
  position: relative;
  padding: 20px;
  margin-bottom: 15px;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 85%);
  border-radius: 5px;
  overflow: hidden;
}

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

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

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

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

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

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

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

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

.faq .faq-container .faq-active {
  background-color: color-mix(in srgb, var(--accent-color), transparent 97%);
  border-color: color-mix(in srgb, var(--accent-color), transparent 80%);
}

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

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

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

/*--------------------------------------------------------------
# Contact Section
--------------------------------------------------------------*/
.contact {
  padding: 0;
}
.contact_h5 {
  background: #0087ff;
  font-weight: 600;
  font-size: 35px;
  color: #ccff00;
  line-height: 1.5;
  text-align: center;
  padding: 1.8% 0;
}
.contact_box {
  position: relative;
  padding: 3% 0;
  z-index: 2;
  background: #ccff00;
}
.contact_box_bg img {
  display: block;
  width: 100%;
}
.contact_box_bg:nth-child(1) {
  width: 88%;
  position: absolute;
  top: 0;
  right: 0;
  z-index: -1;
}
.contact_box_bg:nth-child(2) {
  width: 88%;
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: -1;
}
.contact .info-item + .info-item {
  margin-top: 40px;
}

.contact .info-item i {
  color: var(--accent-color);
  background: color-mix(in srgb, var(--accent-color), transparent 92%);
  font-size: 20px;
  width: 44px;
  height: 44px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50px;
  transition: all 0.3s ease-in-out;
  margin-right: 15px;
}

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

.contact .info-item p {
  padding: 0;
  margin-bottom: 0;
  font-size: 14px;
}

.contact .info-item:hover i {
  background: var(--accent-color);
  color: var(--contrast-color);
}

.contact .php-email-form {
  height: 100%;
}

.contact .php-email-form input[type="text"],
.contact .php-email-form input[type="email"],
.contact .php-email-form textarea {
  font-size: 14px;
  padding: 3% 6%;
  box-shadow: none;
  border-radius: 0;
  color: #0087ff;
  background: rgba(255, 255, 255, 0.5);
  border-radius: 6px;
  border: 2px solid #0087ff;
  margin-bottom: 30px;
}

.contact .php-email-form .col-md-12 input[type="text"],
.contact .php-email-form .col-md-12 textarea {
  padding: 1.5% 3%;
}

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

.contact .php-email-form input[type="text"]::placeholder,
.contact .php-email-form input[type="email"]::placeholder,
.contact .php-email-form textarea::placeholder {
  color: rgba(0, 135, 255, 0.6);
}

.contact .php-email-form button[type="submit"] {
  background: #ffffff;
  border-radius: 6px;
  padding: 1% 4%;
  font-weight: 500;
  font-size: 18px;
  border: 0;
  color: #0087ff;
  line-height: 1.5;
  transition: 0.4s;
}

.contact .php-email-form button[type="submit"]:hover {
  background: #0087ff;
  color: #fff;
}

.contact .row {
  margin-left: -15px;
  margin-right: -15px;
}

.contact .col-md-6,
.contact .col-md-12 {
  padding-left: 15px;
  padding-right: 15px;
}

/*--------------------------------------------------------------
# Starter Section Section
--------------------------------------------------------------*/
.starter-section {
  /* Add your styles here */
}

.sell_about {
  background-color: #fff;
}
.sell_about_box {
  text-align: center;
}
.sell_about_box h5 {
  font-weight: 600;
  font-size: 27px;
  color: #0087ff;
  line-height: 1.2;
  margin-bottom: 1.5%;
}
.sell_about_box p {
  font-weight: 400;
  font-size: 12px;
  color: #0087ff;
  line-height: 1.5;
  margin: 0;
}

.sell_cards {
  background: #0087ff;
  padding: 5% 0;
}

.sell_card_item {
  background: #ffffff;
  border-radius: 6px;
  padding: 9%;
  cursor: pointer;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  -webkit-transform-origin: center;
  transform-origin: center;
}
.sell_card_item span {
  display: block;
  width: 60px;
  height: 60px;
  background: #0087ff;
  position: relative;
  border-radius: 6px;
}
.sell_card_item span img:first-child {
  display: block;
  width: 40px;
  height: 40px;
  position: absolute;
  top: 50%;
  left: 50%;
  opacity: 1;
  filter: grayscale(100%);
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  transform: translateX(-50%) translateY(-50%);
  -webkit-transform: translateX(-50%) translateY(-50%);
}
.sell_card_item span img:last-child {
  display: block;
  width: 40px;
  height: 40px;
  position: absolute;
  top: 50%;
  left: 50%;
  opacity: 0;
  filter: grayscale(0%);
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  transform: translateX(-50%) translateY(-50%);
  -webkit-transform: translateX(-50%) translateY(-50%);
}
.sell_card_item h5 {
  width: 65%;
  font-weight: 600;
  font-size: 19px;
  color: #0087ff;
  line-height: 1.2;
  text-align: left;
  font-style: normal;
  margin: 12% 0 8% 0;
}

.sell_card_item p {
  font-weight: 400;
  font-size: 12px;
  color: #000000;
  line-height: 1.6;
  text-align: left;
  font-style: normal;
  margin-bottom: 0;
  min-height: 96px;
}

.sell_card_item:hover {
  background: #ccff00;
  -webkit-transform: rotate(-12deg);
  transform: rotate(-12deg);
}
.sell_card_item:hover span img:first-child {
  opacity: 0;
  filter: grayscale(100%);
}
.sell_card_item:hover span img:last-child {
  opacity: 1;
  filter: grayscale(0%);
}

.sell_cards_title {
  margin-top: 5%;
}
.sell_card_h5 {
  font-weight: 600;
  font-size: 35px;
  color: #ffffff;
  line-height: 1;
  text-align: justify;
  font-style: normal;
}
.sell_card_p {
  font-weight: 400;
  font-size: 14px;
  color: #ffffff;
  line-height: 1.3;
  text-align: right;
  font-style: normal;
}

.sell_cards .row {
  margin-left: -1.5%;
  margin-right: -1.5%;
}
.sell_cards .col-lg-3,
.sell_cards .col-lg-5,
.sell_cards .col-lg-7 {
  padding-left: 1.5%;
  padding-right: 1.5%;
}

.marquee-wrapper {
  width: 100%;
  padding: 0 0 3% 0%;
  display: flex;
  flex-direction: column;
  gap: 30px;
  background-color: #fff;
}
.marquee-wrapper .marquee {
  overflow: hidden;
  white-space: nowrap;
  width: 100%;
}
.marquee-content {
  display: inline-flex;
  align-items: center;
  gap: 30px;
}
.marquee-content img {
  height: 110px;
  width: auto;
}
/* 第一排：从右向左 */
.marquee-left .marquee-content {
  animation: scroll-left 36s linear infinite;
}
/* 第二排：从左向右 */
.marquee-right .marquee-content {
  animation: scroll-right 36s linear infinite;
}

@keyframes scroll-left {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  } /* 往左移动一半内容宽度 */
}

@keyframes scroll-right {
  0% {
    transform: translateX(-50%);
  }
  100% {
    transform: translateX(0);
  } /* 往右移回来 */
}
.sell_works {
  background: #ccff00;
  padding: 5% 0;
}
.sell_works .container {
  position: relative;
}
.sell_works .sell_works_box > h5 {
  font-weight: 600;
  font-size: 35px;
  color: #0087ff;
  line-height: 1;
  text-align: center;
  font-style: normal;
  margin-bottom: 4%;
}
.sell_works_item {
  border-radius: 6px;
  background-color: rgba(255, 255, 255, 0.7);
  padding: 4%;
  margin-bottom: 24px;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.sell_works_item:last-child {
  margin-bottom: 0;
}
.sell_works_item h5 {
  font-weight: 600;
  font-size: 16px;
  color: #0087ff;
  line-height: 1.3;
  text-align: left;
  font-style: normal;
  margin-bottom: 1.5%;
}
.sell_works_item p {
  font-weight: 400;
  font-size: 12px;
  color: #0087ff;
  line-height: 1.4;
  text-align: left;
  font-style: normal;
}
.sell_works_item:hover {
  background-color: rgba(255, 255, 255, 1);
}

.sell_works_img {
  height: 100%;
  position: absolute;
  top: 0;
  right: 7%;
}
.sell_works_img img {
  display: block;
  height: 100%;
}

/* new */
.breadcrumbs {
  padding: 50px 0 20px 0;
  background-color: #fafaff;
  min-height: 40px;
}

@media (max-width: 992px) {
  .breadcrumbs {
    margin-top: 64px;
  }
}

.breadcrumbs h2 {
  font-size: 24px;
  font-weight: 400;
  margin: 0;
}

@media (max-width: 992px) {
  .breadcrumbs h2 {
    margin: 0 0 10px 0;
  }
}

.breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 14px;
}

.breadcrumbs ol li + li {
  padding-left: 10px;
}

.breadcrumbs ol li + li::before {
  display: inline-block;
  padding-right: 10px;
  color: #6c757d;
  content: "/";
}

@media (min-width: 576px) {
  .container-sm,
  .container {
    max-width: 540px;
  }
}
@media (min-width: 768px) {
  .container-md,
  .container-sm,
  .container {
    max-width: 720px;
  }
}
@media (min-width: 992px) {
  .container-lg,
  .container-md,
  .container-sm,
  .container {
    max-width: 960px;
  }
}

@media (min-width: 1200px) {
  .container-xl,
  .container-lg,
  .container-md,
  .container-sm,
  .container {
    max-width: 1140px;
  }
  .navmenu a,
  .navmenu a:focus {
    font-size: 14px;
    padding: 0px 35px;
  }
  .hero .download-btn {
    font-size: 18px;
  }
  .hero .download-btn i {
    font-size: 25px;
  }
  .hero p {
    font-size: 13px;
    font-weight: 400;
  }
  .about .content h3 {
    font-size: 18px;
    padding: 7px 28px;
  }
  .about .content h2 {
    font-size: 22px;
  }
  .about .content p {
    font-size: 14px;
  }
  .about .icon-box h3 {
    font-size: 17px;
  }
  .about .icon-box p {
    font-size: 12px;
    min-height: 60px;
  }
  .about .icon-box {
    margin-bottom: 36px;
  }
  .about_box .row {
    margin-right: -18px;
    margin-left: -18px;
  }
  .about_box .col-md-6 {
    padding-right: 18px;
    padding-left: 18px;
  }
  .about .content .read-more,
  .about .content .read-more i,
  .referEarn .read-more,
  .referEarn .read-more i {
    font-size: 18px;
  }
  .cards .card-item h4 {
    font-size: 22px;
  }
  .cards .card-item p {
    font-size: 12px;
    min-height: 45px;
  }
  .cards_h5 h5 {
    font-size: 35px;
  }
  .faq_h5 {
    font-size: 35px;
  }
  .contact_h5 {
    font-size: 35px;
  }
  .contact .php-email-form input[type="text"],
  .contact .php-email-form input[type="email"],
  .contact .php-email-form textarea {
    font-size: 14px;
  }
  .contact .php-email-form button[type="submit"] {
    font-size: 18px;
  }
  .footer h3 {
    font-size: 21px;
  }
  .footer h3 img {
    height: 19px;
  }
  .footer p {
    font-size: 12px;
  }
  .sell_about_box h5 {
    font-size: 27px;
  }
  .sell_about_box p {
    font-size: 12px;
  }
  .sell_card_item h5 {
    font-size: 19px;
  }
  .sell_card_item p {
    font-size: 12px;
    min-height: 96px;
  }
  .sell_card_h5 {
    font-size: 35px;
  }
  .sell_card_p {
    font-size: 14px;
  }
  .marquee-content img {
    height: 110px;
  }
  .sell_works_box > h5 {
    font-size: 35px;
  }
  .sell_works_item h5 {
    font-size: 16px;
  }
  .sell_works_item p {
    font-size: 12px;
  }
}
@media (min-width: 1400px) {
  .container-xxl,
  .container-xl,
  .container-lg,
  .container-md,
  .container-sm,
  .container {
    max-width: 1220px;
  }
  .navmenu a,
  .navmenu a:focus {
    font-size: 15px;
    padding: 0px 35px;
  }
  .hero .download-btn {
    font-size: 19px;
  }
  .hero .download-btn i {
    font-size: 26px;
  }
  .hero p {
    font-size: 14px;
  }
  .about .content h3 {
    font-size: 19px;
    padding: 7px 28px;
  }
  .about .content h2 {
    font-size: 23px;
  }
  .about .content p {
    font-size: 15px;
  }
  .about .icon-box h3 {
    font-size: 19px;
  }
  .about .icon-box p {
    font-size: 12px;
    min-height: 70px;
  }
  .about .icon-box {
    margin-bottom: 38px;
  }
  .about_box .row {
    margin-right: -19px;
    margin-left: -19px;
  }
  .about_box .col-md-6 {
    padding-right: 19px;
    padding-left: 19px;
  }
  .about .content .read-more,
  .about .content .read-more i,
  .referEarn .read-more,
  .referEarn .read-more i {
    font-size: 19px;
  }
  .cards .card-item h4 {
    font-size: 23px;
  }
  .cards .card-item p {
    font-size: 13px;
    min-height: 48px;
  }
  .cards_h5 h5 {
    font-size: 36px;
  }
  .faq_h5 {
    font-size: 36px;
  }
  .contact_h5 {
    font-size: 36px;
  }
  .contact .php-email-form input[type="text"],
  .contact .php-email-form input[type="email"],
  .contact .php-email-form textarea {
    font-size: 15px;
  }
  .contact .php-email-form button[type="submit"] {
    font-size: 19px;
  }
  .footer h3 {
    font-size: 22px;
  }
  .footer h3 img {
    height: 20px;
  }
  .footer p {
    font-size: 13px;
  }
  .sell_about_box h5 {
    font-size: 28px;
  }
  .sell_about_box p {
    font-size: 12px;
  }
  .sell_card_item h5 {
    font-size: 20px;
  }
  .sell_card_item p {
    font-size: 13px;
    min-height: 102px;
  }
  .sell_card_h5 {
    font-size: 36px;
  }
  .sell_card_p {
    font-size: 15px;
  }
  .marquee-content img {
    height: 120px;
  }
  .sell_works_box > h5 {
    font-size: 36px;
  }
  .sell_works_item h5 {
    font-size: 16px;
  }
  .sell_works_item p {
    font-size: 12px;
  }
}

@media (min-width: 1500px) {
  .container-xxl,
  .container-xl,
  .container-lg,
  .container-md,
  .container-sm,
  .container {
    max-width: 1320px;
  }
  .navmenu a,
  .navmenu a:focus {
    font-size: 16px;
    padding: 0px 40px;
  }
  .hero .download-btn {
    font-size: 20px;
  }
  .hero .download-btn i {
    font-size: 27px;
  }
  .hero p {
    font-size: 15px;
  }
  .about .content h3 {
    font-size: 20px;
    padding: 8px 32px;
  }
  .about .content h2 {
    font-size: 24px;
  }
  .about .content p {
    font-size: 16px;
  }
  .about .icon-box h3 {
    font-size: 20px;
  }
  .about .icon-box p {
    font-size: 13px;
    min-height: 80px;
  }
  .about .icon-box {
    margin-bottom: 40px;
  }
  .about_box .row {
    margin-right: -20px;
    margin-left: -20px;
  }
  .about_box .col-md-6 {
    padding-right: 20px;
    padding-left: 20px;
  }
  .about .content .read-more,
  .about .content .read-more i,
  .referEarn .read-more,
  .referEarn .read-more i {
    font-size: 20px;
  }
  .cards .card-item h4 {
    font-size: 24px;
  }
  .cards .card-item p {
    font-size: 14px;
    min-height: 51px;
  }
  .cards_h5 h5 {
    font-size: 37px;
  }
  .faq_h5 {
    font-size: 37px;
  }
  .contact_h5 {
    font-size: 37px;
  }
  .contact .php-email-form input[type="text"],
  .contact .php-email-form input[type="email"],
  .contact .php-email-form textarea {
    font-size: 16px;
  }
  .contact .php-email-form button[type="submit"] {
    font-size: 20px;
  }
  .footer h3 {
    font-size: 23px;
  }
  .footer h3 img {
    height: 21px;
  }
  .footer p {
    font-size: 14px;
  }
  .sell_about_box h5 {
    font-size: 29px;
  }
  .sell_about_box p {
    font-size: 13px;
  }
  .sell_card_item h5 {
    font-size: 21px;
  }
  .sell_card_item p {
    font-size: 14px;
    min-height: 110px;
  }
  .sell_card_h5 {
    font-size: 37px;
  }
  .sell_card_p {
    font-size: 16px;
  }
  .marquee-content img {
    height: 130px;
  }
  .sell_works_box > h5 {
    font-size: 37px;
  }
  .sell_works_item h5 {
    font-size: 17px;
  }
  .sell_works_item p {
    font-size: 13px;
  }
}

@media (min-width: 1600px) {
  .container-xxl,
  .container-xl,
  .container-lg,
  .container-md,
  .container-sm,
  .container {
    max-width: 1420px;
  }
  .navmenu a,
  .navmenu a:focus {
    font-size: 17px;
    padding: 0px 40px;
  }
  .hero .download-btn {
    font-size: 21px;
  }
  .hero .download-btn i {
    font-size: 28px;
  }
  .hero p {
    font-size: 16px;
  }
  .about .content h3 {
    font-size: 21px;
    padding: 8px 32px;
  }
  .about .content h2 {
    font-size: 25px;
  }
  .about .content p {
    font-size: 17px;
  }
  .about .icon-box h3 {
    font-size: 21px;
  }
  .about .icon-box p {
    font-size: 14px;
    min-height: 90px;
  }
  .about .icon-box {
    margin-bottom: 42px;
  }
  .about_box .row {
    margin-right: -21px;
    margin-left: -21px;
  }
  .about_box .col-md-6 {
    padding-right: 21px;
    padding-left: 21px;
  }
  .about .content .read-more,
  .about .content .read-more i,
  .referEarn .read-more,
  .referEarn .read-more i {
    font-size: 21px;
  }
  .cards .card-item h4 {
    font-size: 25px;
  }
  .cards .card-item p {
    font-size: 15px;
    min-height: 54px;
  }
  .cards_h5 h5 {
    font-size: 38px;
  }
  .faq_h5 {
    font-size: 38px;
  }
  .contact_h5 {
    font-size: 38px;
  }
  .contact .php-email-form input[type="text"],
  .contact .php-email-form input[type="email"],
  .contact .php-email-form textarea {
    font-size: 17px;
  }
  .contact .php-email-form button[type="submit"] {
    font-size: 21px;
  }
  .footer h3 {
    font-size: 24px;
  }
  .footer h3 img {
    height: 22px;
  }
  .footer p {
    font-size: 15px;
  }
  .sell_about_box h5 {
    font-size: 22px;
  }
  .sell_about_box p {
    font-size: 14px;
  }
  .sell_card_item h5 {
    font-size: 22px;
  }
  .sell_card_item p {
    font-size: 14px;
    min-height: 118px;
  }
  .sell_card_h5 {
    font-size: 38px;
  }
  .sell_card_p {
    font-size: 17px;
  }
  .marquee-content img {
    height: 140px;
  }
  .sell_works_box > h5 {
    font-size: 38px;
  }
  .sell_works_item h5 {
    font-size: 18px;
  }
  .sell_works_item p {
    font-size: 14px;
  }
}

@media (min-width: 1700px) {
  .container-xxl,
  .container-xl,
  .container-lg,
  .container-md,
  .container-sm,
  .container {
    max-width: 1520px;
  }
  .navmenu a,
  .navmenu a:focus {
    font-size: 18px;
    padding: 0px 45px;
  }
  .hero .download-btn {
    font-size: 22px;
  }
  .hero .download-btn i {
    font-size: 29px;
  }
  .hero p {
    font-size: 17px;
  }
  .about .content h3 {
    font-size: 22px;
    padding: 9px 36px;
  }
  .about .content h2 {
    font-size: 26px;
  }
  .about .content p {
    font-size: 18px;
  }
  .about .icon-box h3 {
    font-size: 22px;
  }
  .about .icon-box p {
    font-size: 15px;
    min-height: 100px;
  }
  .about .icon-box {
    margin-bottom: 44px;
  }
  .about_box .row {
    margin-right: -22px;
    margin-left: -22px;
  }
  .about_box .col-md-6 {
    padding-right: 22px;
    padding-left: 22px;
  }
  .about .content .read-more,
  .about .content .read-more i,
  .referEarn .read-more,
  .referEarn .read-more i {
    font-size: 22px;
  }
  .cards .card-item h4 {
    font-size: 26px;
  }
  .cards .card-item p {
    font-size: 16px;
    min-height: 57px;
  }
  .cards_h5 h5 {
    font-size: 39px;
  }
  .faq_h5 {
    font-size: 39px;
  }
  .contact_h5 {
    font-size: 39px;
  }
  .contact .php-email-form input[type="text"],
  .contact .php-email-form input[type="email"],
  .contact .php-email-form textarea {
    font-size: 18px;
  }
  .contact .php-email-form button[type="submit"] {
    font-size: 22px;
  }
  .footer h3 {
    font-size: 25px;
  }
  .footer h3 img {
    height: 23px;
  }
  .footer p {
    font-size: 16px;
  }
  .sell_about_box h5 {
    font-size: 31px;
  }
  .sell_about_box p {
    font-size: 15px;
  }
  .sell_card_item h5 {
    font-size: 23px;
  }
  .sell_card_item p {
    font-size: 15px;
    min-height: 126px;
  }
  .sell_card_h5 {
    font-size: 39px;
  }
  .sell_card_p {
    font-size: 18px;
  }
  .marquee-content img {
    height: 150px;
  }
  .sell_works_box > h5 {
    font-size: 39px;
  }
  .sell_works_item h5 {
    font-size: 19px;
  }
  .sell_works_item p {
    font-size: 15px;
  }
}

@media (min-width: 1800px) {
  .container-xxl,
  .container-xl,
  .container-lg,
  .container-md,
  .container-sm,
  .container {
    max-width: 1620px;
  }
  .navmenu a,
  .navmenu a:focus {
    font-size: 19px;
    padding: 0px 45px;
  }
  .hero .download-btn {
    font-size: 23px;
  }
  .hero .download-btn i {
    font-size: 30px;
  }
  .hero p {
    font-size: 18px;
  }
  .about .content h3 {
    font-size: 23px;
    padding: 9px 36px;
  }
  .about .content h2 {
    font-size: 27px;
  }
  .about .content p {
    font-size: 19px;
  }
  .about .icon-box h3 {
    font-size: 23px;
  }
  .about .icon-box p {
    font-size: 16px;
    min-height: 110px;
  }
  .about .icon-box {
    margin-bottom: 46px;
  }
  .about_box .row {
    margin-right: -23px;
    margin-left: -23px;
  }
  .about_box .col-md-6 {
    padding-right: 23px;
    padding-left: 23px;
  }
  .about .content .read-more,
  .about .content .read-more i,
  .referEarn .read-more,
  .referEarn .read-more i {
    font-size: 23px;
  }
  .cards .card-item h4 {
    font-size: 27px;
  }
  .cards .card-item p {
    font-size: 17px;
    min-height: 60px;
  }
  .cards_h5 h5 {
    font-size: 40px;
  }
  .faq_h5 {
    font-size: 40px;
  }
  .contact_h5 {
    font-size: 40px;
  }
  .contact .php-email-form input[type="text"],
  .contact .php-email-form input[type="email"],
  .contact .php-email-form textarea {
    font-size: 19px;
  }
  .contact .php-email-form button[type="submit"] {
    font-size: 23px;
  }
  .footer h3 {
    font-size: 26px;
  }
  .footer h3 img {
    height: 24px;
  }
  .footer p {
    font-size: 17px;
  }
  .sell_about_box h5 {
    font-size: 32px;
  }
  .sell_about_box p {
    font-size: 16px;
  }
  .sell_card_item h5 {
    font-size: 24px;
  }
  .sell_card_item p {
    font-size: 16px;
    min-height: 134px;
  }
  .sell_card_h5 {
    font-size: 40px;
  }
  .sell_card_p {
    font-size: 19px;
  }
  .marquee-content img {
    height: 160px;
  }
  .sell_works_box > h5 {
    font-size: 40px;
  }
  .sell_works_item h5 {
    font-size: 20px;
  }
  .sell_works_item p {
    font-size: 16px;
  }
}

@media (min-width: 1900px) {
  .container-xxl,
  .container-xl,
  .container-lg,
  .container-md,
  .container-sm,
  .container {
    max-width: 1720px;
  }
  .navmenu a,
  .navmenu a:focus {
    font-size: 20px;
    padding: 0px 50px;
  }
  .hero .download-btn {
    font-size: 24px;
  }
  .hero .download-btn i {
    font-size: 31px;
  }
  .hero p {
    font-size: 19px;
  }
  .about .content h3 {
    font-size: 24px;
    padding: 10px 40px;
  }
  .about .content h2 {
    font-size: 28px;
  }
  .about .content p {
    font-size: 20px;
  }
  .about .icon-box h3 {
    font-size: 24px;
  }
  .about .icon-box p {
    font-size: 17px;
    min-height: 120px;
  }
  .about .icon-box {
    margin-bottom: 48px;
  }
  .about_box .row {
    margin-right: -24px;
    margin-left: -24px;
  }
  .about_box .col-md-6 {
    padding-right: 24px;
    padding-left: 24px;
  }
  .about .content .read-more,
  .about .content .read-more i,
  .referEarn .read-more,
  .referEarn .read-more i {
    font-size: 24px;
  }
  .cards .card-item h4 {
    font-size: 28px;
  }
  .cards .card-item p {
    font-size: 18px;
    min-height: 63px;
  }
  .cards_h5 h5 {
    font-size: 41px;
  }
  .faq_h5 {
    font-size: 41px;
  }
  .contact_h5 {
    font-size: 41px;
  }
  .contact .php-email-form input[type="text"],
  .contact .php-email-form input[type="email"],
  .contact .php-email-form textarea {
    font-size: 20px;
  }
  .contact .php-email-form button[type="submit"] {
    font-size: 24px;
  }
  .footer h3 {
    font-size: 27px;
  }
  .footer h3 img {
    height: 25px;
  }
  .footer p {
    font-size: 18px;
  }
  .sell_about_box h5 {
    font-size: 33px;
  }
  .sell_about_box p {
    font-size: 17px;
  }
  .sell_card_item h5 {
    font-size: 25px;
  }
  .sell_card_item p {
    font-size: 17px;
    min-height: 142px;
  }
  .sell_card_h5 {
    font-size: 41px;
  }
  .sell_card_p {
    font-size: 20px;
  }
  .marquee-content img {
    height: 170px;
  }
  .sell_works_box > h5 {
    font-size: 41px;
  }
  .sell_works_item h5 {
    font-size: 21px;
  }
  .sell_works_item p {
    font-size: 17px;
  }
}

@media (min-width: 2000px) {
  .container-xxl,
  .container-xl,
  .container-lg,
  .container-md,
  .container-sm,
  .container {
    max-width: 1820px;
  }
  .navmenu a,
  .navmenu a:focus {
    font-size: 21px;
    padding: 0px 50px;
  }
  .hero .download-btn {
    font-size: 25px;
  }
  .hero .download-btn i {
    font-size: 32px;
  }
  .hero p {
    font-size: 20px;
  }
  .about .content h3 {
    font-size: 25px;
    padding: 10px 40px;
  }
  .about .content h2 {
    font-size: 29px;
  }
  .about .content p {
    font-size: 21px;
  }
  .about .icon-box h3 {
    font-size: 25px;
  }
  .about .icon-box p {
    font-size: 18px;
    min-height: 130px;
  }
  .about .icon-box {
    margin-bottom: 50px;
  }
  .about_box .row {
    margin-right: -25px;
    margin-left: -25px;
  }
  .about_box .col-md-6 {
    padding-right: 25px;
    padding-left: 25px;
  }
  .about .content .read-more,
  .about .content .read-more i,
  .referEarn .read-more,
  .referEarn .read-more i {
    font-size: 25px;
  }
  .cards .card-item h4 {
    font-size: 29px;
  }
  .cards .card-item p {
    font-size: 19px;
    min-height: 66px;
  }
  .cards_h5 h5 {
    font-size: 42px;
  }
  .faq_h5 {
    font-size: 42px;
  }
  .contact_h5 {
    font-size: 42px;
  }
  .contact .php-email-form input[type="text"],
  .contact .php-email-form input[type="email"],
  .contact .php-email-form textarea {
    font-size: 21px;
  }
  .contact .php-email-form button[type="submit"] {
    font-size: 25px;
  }
  .footer h3 {
    font-size: 28px;
  }
  .footer h3 img {
    height: 26px;
  }
  .footer p {
    font-size: 19px;
  }
  .sell_about_box h5 {
    font-size: 34px;
  }
  .sell_about_box p {
    font-size: 18px;
  }
  .sell_card_item h5 {
    font-size: 26px;
  }
  .sell_card_item p {
    font-size: 18px;
    min-height: 150px;
  }
  .sell_card_h5 {
    font-size: 42px;
  }
  .sell_card_p {
    font-size: 21px;
  }
  .marquee-content img {
    height: 180px;
  }
  .sell_works_box > h5 {
    font-size: 42px;
  }
  .sell_works_item h5 {
    font-size: 22px;
  }
  .sell_works_item p {
    font-size: 18px;
  }
}

/* Navmenu - Mobile */
@media (max-width: 1199px) {
  .mobile-nav-toggle {
    color: var(--nav-color);
    font-size: 28px;
    line-height: 0;
    margin-right: 10px;
    cursor: pointer;
    transition: color 0.3s;
  }
  .navmenu {
    padding: 0;
    z-index: 9997;
  }
  .navmenu ul {
    display: none;
    list-style: none;
    position: absolute;
    inset: 60px 20px 20px 20px;
    padding: 10px 0;
    margin: 0;
    border-radius: 6px;
    background-color: var(--nav-mobile-background-color);
    overflow-y: auto;
    transition: 0.3s;
    z-index: 9998;
    box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.1);
  }
  .navmenu a,
  .navmenu a:focus {
    color: var(--nav-dropdown-color);
    padding: 10px 20px;
    font-family: var(--nav-font);
    font-size: 14px;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: space-between;
    white-space: nowrap;
    transition: 0.3s;
  }
  .navmenu a i,
  .navmenu a:focus i {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: 0.3s;
    background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
  }
  .navmenu a i:hover,
  .navmenu a:focus i:hover {
    background-color: var(--accent-color);
    color: var(--contrast-color);
  }
  .navmenu a:hover,
  .navmenu .active,
  .navmenu .active:focus {
    color: var(--nav-dropdown-hover-color);
  }
  .navmenu .active i,
  .navmenu .active:focus i {
    background-color: var(--accent-color);
    color: var(--contrast-color);
    transform: rotate(180deg);
  }
  .navmenu .dropdown ul {
    position: static;
    display: none;
    z-index: 99;
    padding: 10px 0;
    margin: 10px 20px;
    background-color: var(--nav-dropdown-background-color);
    border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
    box-shadow: none;
    transition: all 0.5s ease-in-out;
  }
  .navmenu .dropdown ul ul {
    background-color: rgba(33, 37, 41, 0.1);
  }
  .navmenu .dropdown > .dropdown-active {
    display: block;
    background-color: rgba(33, 37, 41, 0.03);
  }
  .mobile-nav-active {
    overflow: hidden;
  }
  .mobile-nav-active .mobile-nav-toggle {
    color: #fff;
    position: absolute;
    font-size: 32px;
    top: 15px;
    right: 15px;
    margin-right: 0;
    z-index: 9999;
  }
  .mobile-nav-active .navmenu {
    position: fixed;
    overflow: hidden;
    inset: 0;
    background: rgba(33, 37, 41, 0.8);
    transition: 0.3s;
  }
  .mobile-nav-active .navmenu > ul {
    display: block;
  }
  section,
  .section {
    padding: 60px 0;
  }
  .about .content h3 {
    margin-bottom: 3%;
  }
  .about .content h2 {
    margin-bottom: 4%;
  }
  .about .content p.about_txt_p {
    margin-bottom: 6%;
  }
  .about_txt {
    margin-bottom: 9%;
  }
  .cards {
    padding-bottom: 0;
  }
  .faq {
    padding: 0;
  }
  .contact {
    padding: 0;
  }
  .about .content .read-more,
  .referEarn .read-more {
    padding: 1% 3%;
  }
  .sell_cards {
    padding-bottom: 60px;
  }
  .banner-section {
    padding-bottom: 0;
  }
}

.container-xl,
.container-lg,
.container-md,
.container-sm,
.container {
  max-width: 89.5% !important;
  width: 89.5% !important;
}

/* 移动端 */
@media (max-width: 768px) {
  .banner-box {
    top: 52%;
  }
  .hero p {
    font-size: 12px;
    line-height: 18px;
    margin-bottom: 20px;
    text-align: left;
    width: 50%;
  }
  .hero .download-btn i {
    font-size: 16px;
  }
  .hero .download-btn {
    font-size: 12px;
  }
  .banner-box .justify-content-md-start {
    justify-content: flex-start !important;
    margin-top: 0 !important;
  }
  .about .icon-boxes .col-md-6:nth-child(3) .icon-box {
    margin-bottom: 36px;
  }
  .about .icon-boxes .col-md-6:nth-child(4) .icon-box {
    margin-bottom: 0;
  }
  .breadcrumbs .d-flex {
    display: block !important;
  }
  .breadcrumbs ol {
    display: block;
  }
  .breadcrumbs ol li {
    display: inline-block;
  }
  .header .logo img {
    max-height: 24px;
  }
  section,
  .section {
    padding: 30px 0;
  }
  .banner-section {
    padding: 60px 0 20px 0;
  }
  .about .content h3 {
    font-size: 15px;
  }
  .about .content h2 {
    font-size: 18px;
  }
  .about .content p {
    font-size: 12px;
  }
  .about .content .read-more,
  .referEarn .read-more {
    font-size: 14px;
  }
  .about .icon-box h3 {
    font-size: 15px;
  }
  .about .icon-box i {
    width: 15%;
  }
  .about .icon-box {
    margin-bottom: 20px;
  }
  .cards_h5 h5 {
    font-size: 24px;
    margin-bottom: 5%;
  }
  .cards .card-item {
    padding: 6% 5% 0 5%;
  }
  .cards .card-item h4 {
    font-size: 18px;
  }
  .cards .card-item p {
    font-size: 12px;
  }
  .cards .card-item > img {
    width: 40%;
  }
  .cards .card-item span {
    width: 12%;
  }
  .faq_h5 {
    font-size: 24px;
    padding: 5% 0;
  }
  .faq .faq-container .faq-item {
    padding: 15px;
  }
  .faq .faq-container .faq-item h3 {
    font-size: 14px;
    line-height: 20px;
  }
  .faq {
    padding: 0;
  }
  .contact {
    padding: 0;
  }
  .contact_h5 {
    font-size: 24px;
    padding: 5% 0;
  }
  .contact_box {
    padding: 5%;
  }
  .contact .php-email-form input[type="text"],
  .contact .php-email-form input[type="email"],
  .contact .php-email-form textarea {
    font-size: 13px;
    margin-bottom: 16px;
    padding: 1.5% 3%;
  }
  .contact .php-email-form button[type="submit"] {
    font-size: 15px;
  }
  .contact_box_bg:nth-child(1) {
    width: 100%;
  }
  .contact_box_bg:nth-child(2) {
    width: 100%;
  }
  .footer h3 {
    font-size: 16px;
    margin: 0 0 4% 0;
  }
  .footer {
    padding: 6%;
  }
  .footer h3 img {
    height: 16px;
  }
  .footer p {
    font-size: 12px;
    margin: 0 0 4% 0;
  }
  .footer .social-links a {
    font-size: 14px;
    width: 30px;
    height: 30px;
  }
  .breadcrumbs {
    margin-top: 0;
    padding: 40px 0 20px 0;
  }
  .breadcrumbs h2 {
    font-size: 16px;
  }
  .breadcrumbs .d-flex {
    display: flex !important;
    align-items: center;
  }
  .banner-section-sell {
    background-color: #d6fe51;
  }
  .sell_about_box h5 {
    font-size: 20px;
  }
  .sell_card_item {
    padding: 4%;
    margin-bottom: 2%;
  }
  .sell_card_item h5 {
    width: 100%;
    margin: 5% 0 3% 0;
    font-size: 18px;
  }
  .sell_card_item p {
    min-height: auto;
  }
  .sell_card_h5 {
    font-size: 24px;
    margin-bottom: 20px;
  }
  .sell_card_p {
    font-size: 12px;
  }
  .marquee-content img {
    height: 60px;
  }
  .marquee-content {
    gap: 15px;
  }
  .marquee-wrapper {
    gap: 15px;
  }
  .sell_works_box > h5 {
    font-size: 24px;
  }
  .sell_works_item {
    margin-bottom: 15px;
  }
  .sell_works_img {
    display: none;
  }
  .sell_works .sell_works_box > h5 {
    font-size: 24px;
  }
  .banner-section-sell {
    padding-bottom: 0px;
  }
  .banner-section-sell .banner-box {
    top: 80%;
  }
  .sell_banner .download-btn {
    border: 1px solid #0087ff;
  }
  .sell_card_item span {
    width: 40px;
    height: 40px;
  }
  .sell_card_item span img:last-child {
    width: 24px;
    height: 24px;
  }
  .sell_card_item span img:first-child {
    width: 24px;
    height: 24px;
  }

  .container-xl,
  .container-lg,
  .container-md,
  .container-sm,
  .container {
    max-width: 96% !important;
    width: 96% !important;
  }
}
