@font-face {
  font-family: "Aptos";
  src: url("../font/Aptos-Bold.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
}

@font-face {
  font-family: "Aptos";
  src: url("../font/Aptos.ttf") format("truetype");
  font-weight: 500;
  font-style: normal;
}

:root {
  --default-font: "Aptos", system-ui, -apple-system, "Segoe UI", Roboto,
    "Helvetica Neue", Arial, sans-serif;
  --heading-font: "Aptos", sans-serif;
  --nav-font: "Aptos", sans-serif;
}

:root {
  --background-color: #070a1d;
  --default-color: #444444;
  --heading-color: #222222;
  --accent-color: #3498db;
  --surface-color: #ffffff;
  --contrast-color: #ffffff;
  --text-black: #303030;
}

:root {
  --nav-color: #444444;
  --nav-hover-color: #3498db;
  --nav-mobile-background-color: #ffffff;
  --nav-dropdown-background-color: #ffffff;
  --nav-dropdown-color: #444444;
  --nav-dropdown-hover-color: #3498db;
}

.light-background {
  --background-color: #f4fafd;
  --surface-color: #ffffff;
}

.dark-background {
  --background-color: #060606;
  --default-color: #ffffff;
  --heading-color: #ffffff;
  --surface-color: #252525;
  --contrast-color: #ffffff;
}

:root {
  scroll-behavior: smooth;
}

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 {
  text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  color: var(--heading-color);
  font-family: var(--heading-font);
}

p {
  margin: 0;
}

.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;
}

.gy-4 {
  margin-bottom: 40px;
}

.img-icon-container {
  width: 100%;
}

.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);
  }
}

.hero-banner {
  height: 111px;
  width: 100%;
  object-fit: none;
}

.title-hero {
  font-size: 46px;
  font-weight: 700;
  line-height: 62px;
  color: var(--contrast-color);
  margin: 12px 0px;
}

.content-hero {
  font-size: 18px;
  font-weight: 400;
  line-height: 30px;
  color: var(--contrast-color);
  margin-bottom: 30px;
}

.text-linenear {
  background: #4fb9ff;
  background-clip: text;
  color: transparent;
}

#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 {
  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;
}

/* @media screen and (max-width: 768px) {
  [data-aos-delay] {
    transition-delay: 0 !important;
  }
} */

.page-title {
  --background-color: color-mix(in srgb, var(--default-color), transparent 96%);
  color: var(--default-color);
  background-color: var(--background-color);
  padding: 20px 0;
  position: relative;
}

.page-title h1 {
  font-size: 28px;
  font-weight: 700;
  margin: 0;
}

.page-title .breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  padding: 0 0 10px 0;
  margin: 0;
  font-size: 14px;
  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 70%);
}

section,
.section {
  color: var(--contrast-color);
  background-color: transparent;
  padding: 60px 0px;
  scroll-margin-top: 90px;
  overflow: clip;
}

/* @media (max-width: 1199px) {

  section,
  .section {
    scroll-margin-top: 66px;
  }
} */

.section-title {
  text-align: center;
  position: relative;
  background-color: transparent;
}

.section-title span {
  font-size: 36px;
  font-weight: 700;
  position: relative;
  background: linear-gradient(to right, #3681f9 0%, #03a7f9 50%, #4fb9ff 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.section-title h2:before {
  margin: 0 15px 10px 0;
}

.section-title h2:after {
  margin: 0 0 10px 15px;
}

.section-title p {
  font-size: 20px;
  margin-bottom: 0;
  text-align: center;
  color: #ffffff;
  margin-left: 200px;
  margin-right: 200px;
}

.hero {
  min-height: 70vh;
  position: relative;
  padding-top: 80px;
  padding-bottom: 0px;
  margin: 0 auto;
  display: flex;
  align-items: center;
}

.hero-img {
  width: 500px;
  height: auto;
  padding-right: 0% !important;
}

.hero .introduce {
  padding-top: 55px;
  padding-right: 0% !important;
  padding-left: 0% !important;
}

.schedule-demo {
  display: none !important; 
  font-family: var(--heading-font);
  font-size: 18px;
  display: inline-block;
  width: 215px;
  height: 47px;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  border-radius: 50px;
  transition: 0.3s;
  color: var(--contrast-color);
  background: linear-gradient(to left, #4fb9ff 0%, #03a7f9 50%, #3681f9 100%);
  border: none;
  margin-top: 30px;
  cursor: pointer;
}

.schedule-demo:hover {
  opacity: 0.8;
}

.contact-sale {
  background: transparent;
  border: 2px solid #03a7f9;
  width: 215px;
  color: #0074d5;
  font-family: var(--heading-font);
  font-size: 18px;
  display: inline-block;
  height: 47px;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  border-radius: 50px;
  transition: 0.3s;
  margin-top: 30px;
  cursor: pointer;
}

.hero .schedule-demo:hover {
  opacity: 0.8;
}

.hero .animated {
  animation: up-down 2s ease-in-out infinite alternate-reverse both;
}

/* @media (max-width: 640px) {
  .hero h1 {
    font-size: 28px;
    line-height: 36px;
  }

  .hero p {
    font-size: 18px;
    line-height: 24px;
    margin-bottom: 30px;
  }

  .hero .btn-get-started,
  .hero .btn-watch-video {
    font-size: 13px;
  }
} */

@keyframes up-down {
  0% {
    transform: translateY(10px);
  }

  100% {
    transform: translateY(-10px);
  }
}

.clients {
  padding: 60px 0 114px 0;
}

.clients .freelancers {
  text-align: center;
  color: var(--contrast-color);
  font-size: 20px;
  margin-bottom: 36px;
}

.clients .client-logo {
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
}

.clients .wrapper-gap {
  gap: 30px;
}

.clients .client-logo img {
  max-width: 90%;
  transition: 0.3s;
  filter: grayscale(100);
  cursor: pointer;
}

.clients .client-logo img:hover {
  filter: none;
  opacity: 0.5;
}

.about .content h3 {
  font-weight: 700;
  font-size: 34px;
  margin-bottom: 30px;
}

.about {
  background: var(--contrast-color);
  border-top-left-radius: 40px;
  border-top-right-radius: 40px;
  padding: 150px 0px;
}

.about .Choose-outabox {
  width: 46.8%;
}

.about .schedule-demo {
  font-family: var(--heading-font);
  font-size: 18px;
  display: inline-block;
  padding: 12px 31px;
  border-radius: 50px;
  transition: 0.3s;
  color: var(--contrast-color);
  background: linear-gradient(to left, #3681f9 0%, #03a7f9 50%, #4fb9ff 100%);
}

.about .schedule-demo:hover {
  opacity: 0.8;
}

.about .title {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 11px;
}

.about .section-title {
  font-size: 34px;
  color: var(--contrast-color);
  line-height: 100%;
}

.about .section-content {
  font-size: 18px;
  color: var(--contrast-color);
}

.about .content p {
  margin-bottom: 30px;
}

.about .section3 {
  margin-top: 80px;
  gap: 20px;
  background: linear-gradient(to right, #070c2c 0%, #0e1229 100%);
  border-radius: 16px;
  padding-right: 38px;
}

.about .section3 .left {
  width: 50%;
  padding: 65px 0px 65px 60px;
}

.about .content .about-btn {
  padding: 8px 30px 9px 30px;
  color: var(--accent-color);
  border-radius: 50px;
  transition: 0.3s;
  text-transform: uppercase;
  font-weight: 600;
  font-size: 13px;
  display: inline-flex;
  align-items: center;
  border: 2px solid var(--accent-color);
}

.about .content .about-btn i {
  font-size: 16px;
  padding-left: 5px;
}

.about .content .about-btn:hover {
  background: var(--accent-color);
  color: var(--contrast-color);
}

.about .icon-box {
  width: 30%;
}

.about .icon-box i {
  font-size: 40px;
  color: var(--accent-color);
  margin-bottom: 10px;
}

.about .icon-box h4 {
  font-size: 20px;
  font-weight: 700;
  margin: 20px 0 6px 0;
}

.icon-box p {
  color: var(--text-black) !important;
}

.about .icon-box h4 a {
  color: var(--heading-color);
  transition: 0.3s;
}

.about .icon-box p {
  font-size: 15px;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  margin-bottom: 0;
}

.about .icon-box:hover h4 a {
  color: var(--accent-color);
}

.about .text-blacky {
  color: var(--text-black);
}

.about .first-text {
  margin-top: 11px;
  margin-bottom: 25px;
}

.stats .stats-item {
  padding: 10px;
}

.stats .stats-item i {
  font-size: 44px;
  color: var(--accent-color);
  line-height: 0;
  margin-right: 15px;
}

.stats .stats-item .purecounter {
  color: var(--heading-color);
  font-size: 40px;
  display: block;
  font-weight: 700;
  line-height: 40px;
}

.stats .stats-item p {
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  padding: 15px 0 0 0;
  margin: 0;
  font-family: var(--heading-font);
  font-size: 14px;
}

.alt-services {
  /* padding: 0px 206px; */
}

.img-container {
  width: auto;
  height: 630px;
  background: linear-gradient(135deg, #070c2c, #0e1229);
  border: 1px solid #0074d5;
  border-radius: 12px;
  display: flex;
  flex-direction: column;
  align-items: center;
  color: white;
  font-size: 24px;
  font-weight: bold;
  padding: 5px;
  padding-bottom: 0;
  position: relative;
  margin-bottom: 0;
  overflow: hidden;
  padding: 40px;
}

.image-container {
  width: 100%;
  display: block;
}

.img-icon {
  /* width: 100px;
  height: 100px;
  object-fit: cover;
  padding-left: 10px;
  margin-right: 380px;
  top: 20px;
  left: 20px; */
  margin-left: 15px;
  max-height: 65px;
  min-width: 71px;
}

.service-item {
  width: 100%;
}

.service-title {
  align-self: flex-start;
  font-size: 24px;
  font-weight: 600;
  color: var(--contrast-color);
  padding-left: 30px;
  padding-right: 30px;
  padding-top: 10px;
}

.services-wrapper {
  background-image: url("../img/background_ourproducts.png");
  background-repeat: repeat;
  background-size: 1%;
  background-position: top left;
  background-color: #070a1d;
  padding: 40px 0;
}

.service-subtitle {
  font-size: 16px;
  color: var(--contrast-color);
  padding-left: 30px;
  padding-right: 30px;
  padding-top: 10px;
  padding-bottom: 10px;
  min-height: 260px;
}

.services .img-our-product {
  width: 180px;
  height: 85px;
  transform: translateY(30px);
}

.services .title {
  margin-bottom: 12px;
}

.column {
  height: 500px;
  background: linear-gradient(135deg, #070c2c, #0e1229);
  border: 1px solid #0074d5;
  overflow: hidden;
  border-radius: 12px;
  display: flex;
  flex-direction: column;
  align-items: center;
  color: white;
  font-size: 24px;
  font-weight: bold;
  padding: 20px;
  padding-bottom: 0;
  position: relative;
  margin-bottom: 60px;
  margin-top: 30px;
}

.column-container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
}

.img-column-container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 98%;
}

.column-service-title {
  align-self: flex-start;
  font-size: 24px;
  font-weight: 600;
  color: var(--contrast-color);
  margin-top: 12px;
  margin-left: 20px;
}

.column-service-subtitle {
  font-size: 16px;
  font-weight: 400;
  color: var(--contrast-color);
  margin-bottom: 30px;
  margin-top: 15px;
  margin-left: 20px;
}

.features-wrapper {
  background-image: url("../img/background_ourproducts.png");
  background-repeat: repeat;
  background-size: 1%;
  background-position: top left;
  background-color: #070a1d;
  padding: 60px 0;
}

.center-img {
  display: block;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 26px;
}

.center-title {
  text-align: center;
  font-family: "Aptos", sans-serif;
  /* font-weight: 700; */
  font-size: 32px;
  line-height: 46px;
  letter-spacing: 0;
  color: var(--contrast-color);
  padding-bottom: 20px;
}

#globeViz {
  width: 100%;
  height: 100%;
}

.highlight {
  color: #6a7096;
}

.img-information {
  width: 100%;
  position: relative;
  margin-top: 60px;
}

.about-wrapper {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
  /* tăng z-index thật cao */
  pointer-events: auto;
  /* đảm bảo có thể tương tác nếu cần */
}

.about-us {
  font-family: var(--heading-font);
  font-size: 18px;
  padding: 12px 50px;
  border-radius: 50px;
  transition: 0.3s;
  color: #fff;
  background: linear-gradient(to right, #3681f9 0%, #03a7f9 50%, #4fb9ff 100%);
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: 0 4px 15px rgba(3, 167, 249, 0.3);
  cursor: pointer;
}

.alt-services-bg {
  background: linear-gradient(135deg, #070c2c, #0e1229);
  margin-top: 50px;
}

.features-wrapper {
  /* background-image: url('../img/background_ourproducts.png');
  background-size: 100% 200%;
  background-position: top center;
  background-repeat: no-repeat;

  color: var(--contrast-color);
  background-color: transparent;
  padding: 0px;
  scroll-margin-top: 90px;
  overflow: clip; */

  background-image: url("../img/background_ourproducts.png");
  background-repeat: repeat;
  background-size: 1%;
  background-position: bottom center;
  background-color: #070a1d;
  padding: 0px;
}

.features-section {
  color: var(--contrast-color);
  background-color: transparent;
  padding-bottom: 60px !important;
  scroll-margin-top: 90px;
  overflow: clip;
}

.features .features-item {
  background-color: var(--surface-color);
  display: flex;
  align-items: center;
  padding: 20px;
  transition: 0.3s;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  position: relative;
}

.features .features-item i {
  font-size: 32px;
  padding-right: 10px;
  line-height: 0;
}

.features .about-information {
  height: 317px;
  background-image: url("../img/background-hero.svg");
  background-size: 150%;
  background-repeat: no-repeat;
  gap: 30px;
  padding-bottom: 96px;
  background-position: center;
}

.features .info {
  margin: 0px;
  font-size: 16px;
  width: max-content;
  padding: 0px 20px;
  color: white;
}

.features .child {
  gap: 20px;
  height: max-content;
}

.features .features-item h3 {
  font-weight: 700;
  margin: 0;
  padding: 0;
  line-height: 1;
  font-size: 16px;
}

.features .features-item h3 a {
  color: var(--heading-color);
  transition: 0.3s;
}

.features .features-item:hover {
  border-color: var(--accent-color);
}

.features .features-item:hover h3 a {
  color: var(--accent-color);
}

.testimonials h2 {
  color: var(--contrast-color);
  font-size: 32px;
  font-weight: 700;
  line-height: 46px;
  margin-bottom: 50px;
}

.testimonials .testimonials-carousel,
.testimonials .testimonials-slider {
  overflow: hidden;
}

.testimonials .testimonial-item {
  background: linear-gradient(124.34deg, #070c2c 0%, #0e1229 99.32%);
  border: 1px solid #0074d5;
  border-radius: 8px;
  border-top-left-radius: 60px;
  padding: 30px;
  box-sizing: content-box;
  position: relative;
  min-height: 162px;
  /* width: 422px; */
}

.testimonials .testimonial-item .testimonial-img {
  width: 54px;
  border-radius: 50%;
  margin-right: 20px;
}

.testimonials .swiper-wrapper {
  height: auto;
}

.testimonials .swiper-slide {
  max-width: 422px;
  /* margin-right: 40px; */
}

.testimonials .swiper-pagination {
  margin-top: 20px;
  position: relative;
  display: none;
}

.testimonials .swiper-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background-color: var(--background-color);
  opacity: 1;
  border: 1px solid var(--accent-color);
}

.testimonials .swiper-pagination .swiper-pagination-bullet-active {
  background-color: var(--accent-color);
}

.portfolio {
  padding-top: 60px;
  padding-bottom: 0px;
}

.portfolio .frame {
  width: 100%;
  height: 458px;
  border-top: 1px solid #3681f9;
  border-top-left-radius: 26px;
  border-top-right-radius: 26px;
  position: relative;
  overflow: hidden;
  background-color: transparent;
}

.portfolio .frame::before,
.portfolio .frame::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(to bottom,
      rgba(79, 185, 255, 0.6),
      rgba(79, 185, 255, 0));
  z-index: 1;
}

.portfolio .frame::before {
  left: 0;
}

.portfolio .frame::after {
  right: 0;
}

.portfolio .porfolio-content .title {
  font-size: 42px;
  font-weight: 700;
  text-align: center;
  margin-bottom: 12px;
}

.portfolio .porfolio-content p {
  font-size: 20px;
  text-align: center;
  margin: 0;
}

.portfolio .wrap-btn {
  margin-top: 60px;
  gap: 16px;
}

/* @media (max-width: 575px) {
  .portfolio .portfolio-filters li {
    font-size: 14px;
    margin: 0 5px;
  }
} */

.portfolio .portfolio-content {
  position: relative;
  overflow: hidden;
}

.portfolio .portfolio-content img {
  transition: 0.3s;
}

.portfolio .portfolio-content .portfolio-info {
  opacity: 0;
  position: absolute;
  inset: 0;
  z-index: 3;
  transition: all ease-in-out 0.3s;
  background: rgba(0, 0, 0, 0.6);
  padding: 15px;
}

.portfolio .portfolio-content .portfolio-info h4 {
  font-size: 14px;
  padding: 5px 10px;
  font-weight: 400;
  color: #ffffff;
  display: inline-block;
  background-color: var(--accent-color);
}

.portfolio .portfolio-content .portfolio-info p {
  position: absolute;
  bottom: 10px;
  text-align: center;
  display: inline-block;
  left: 0;
  right: 0;
  font-size: 16px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.8);
}

.swiper-wrapper {
  transition-timing-function: linear !important;
}

.testimonials .p-testimonial {
  min-height: 100px;
  max-width: 350px;
}

.portfolio .portfolio-content .portfolio-info .preview-link,
.portfolio .portfolio-content .portfolio-info .details-link {
  position: absolute;
  left: calc(50% - 40px);
  font-size: 26px;
  top: calc(50% - 14px);
  color: #fff;
  transition: 0.3s;
  line-height: 1.2;
}

.portfolio .portfolio-content .portfolio-info .preview-link:hover,
.portfolio .portfolio-content .portfolio-info .details-link:hover {
  color: var(--accent-color);
}

.portfolio .portfolio-content .portfolio-info .details-link {
  left: 50%;
  font-size: 34px;
  line-height: 0;
}

.portfolio .portfolio-content:hover .portfolio-info {
  opacity: 1;
}

.portfolio .portfolio-content:hover img {
  transform: scale(1.1);
}

.team .team-member {
  background-color: var(--surface-color);
  overflow: hidden;
  border-radius: 5px;
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
  height: 100%;
}

.team .team-member .member-img {
  position: relative;
  overflow: hidden;
}

.team .team-member .social {
  position: absolute;
  left: 0;
  bottom: 30px;
  right: 0;
  opacity: 0;
  transition: ease-in-out 0.3s;
  text-align: center;
}

.team .team-member .social a {
  background: color-mix(in srgb, var(--contrast-color), transparent 25%);
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  margin: 0 3px;
  border-radius: 4px;
  width: 36px;
  height: 36px;
  transition: ease-in-out 0.3s;
  display: inline-flex;
  justify-content: center;
  align-items: center;
}

.team .team-member .social a:hover {
  color: var(--contrast-color);
  background: var(--accent-color);
}

.team .team-member .social i {
  font-size: 18px;
  line-height: 0;
}

.team .team-member .member-info {
  padding: 25px 15px;
}

.team .team-member .member-info h4 {
  font-weight: 700;
  margin-bottom: 5px;
  font-size: 18px;
}

.team .team-member .member-info span {
  display: block;
  font-size: 13px;
  font-weight: 400;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
}

.team .team-member:hover .social {
  opacity: 1;
  bottom: 15px;
}

.pricing .pricing-item {
  background-color: var(--surface-color);
  box-shadow: 0 3px 20px -2px rgba(0, 0, 0, 0.1);
  border-top: 4px solid var(--background-color);
  padding: 60px 40px;
  height: 100%;
  border-radius: 5px;
}

.pricing h3 {
  font-weight: 600;
  margin-bottom: 15px;
  font-size: 20px;
}

.pricing h4 {
  color: var(--accent-color);
  font-size: 48px;
  font-weight: 400;
  font-family: var(--heading-font);
  margin-bottom: 0;
}

.pricing h4 sup {
  font-size: 28px;
}

.pricing h4 span {
  color: color-mix(in srgb, var(--default-color), transparent 50%);
  font-size: 18px;
}

.pricing ul {
  padding: 20px 0;
  list-style: none;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  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 60%);
}

.pricing ul .na i {
  color: color-mix(in srgb, var(--default-color), transparent 60%);
}

.pricing ul .na span {
  text-decoration: line-through;
}

.pricing .buy-btn {
  color: var(--accent-color);
  display: inline-block;
  padding: 8px 35px 10px 35px;
  border-radius: 50px;
  transition: none;
  font-size: 16px;
  font-weight: 500;
  font-family: var(--heading-font);
  transition: 0.3s;
  border: 1px solid var(--accent-color);
}

.pricing .buy-btn:hover {
  background: var(--accent-color);
  color: var(--contrast-color);
}

.pricing .featured {
  border-top-color: var(--accent-color);
}

.pricing .featured .buy-btn {
  background: var(--accent-color);
  color: var(--contrast-color);
}

.faq .faq-item {
  margin: 20px 0;
  padding: 20px 0;
  border-bottom: 1px solid color-mix(in srgb, var(--default-color), transparent 85%);
}

.faq .faq-item i {
  color: var(--accent-color);
  font-size: 18px;
  margin-right: 10px;
}

.faq .faq-item h4 {
  font-size: 16px;
  line-height: 26px;
  font-weight: 700;
}

.faq .faq-item p {
  font-size: 15px;
}

.faq .faq-item:first-child {
  padding-top: 0;
  margin-top: 0;
}

.faq .faq-item:last-child {
  border: 0;
  padding-bottom: 0;
  margin-bottom: 0;
}

.contact {
  background-image: url("../img/contact-bg.png");
  background-position: left center;
  background-repeat: no-repeat;
  position: relative;
}

/* @media (max-width: 640px) {
  .contact {
    background-position: center 50px;
    background-size: contain;
  }
} */

.contact:before {
  content: "";
  background: color-mix(in srgb, var(--background-color), transparent 30%);
  position: absolute;
  bottom: 0;
  top: 0;
  left: 0;
  right: 0;
}

.contact .info-item+.info-item {
  margin-top: 40px;
}

.contact .info-item i {
  background: var(--accent-color);
  color: var(--contrast-color);
  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 .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: 10px 15px;
  box-shadow: none;
  border-radius: 0;
  color: var(--default-color);
  background-color: color-mix(in srgb,
      var(--background-color),
      transparent 50%);
  border-color: color-mix(in srgb, var(--default-color), transparent 80%);
}

.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: color-mix(in srgb, var(--default-color), transparent 70%);
}

.contact .php-email-form button[type="submit"] {
  color: var(--contrast-color);
  background: var(--accent-color);
  border: 0;
  padding: 10px 30px;
  transition: 0.4s;
  border-radius: 50px;
}

.contact .php-email-form button[type="submit"]:hover {
  background: color-mix(in srgb, var(--accent-color), transparent 20%);
}

.portfolio-details .portfolio-details-slider img {
  width: 100%;
}

.portfolio-details .portfolio-details-slider .swiper-pagination {
  margin-top: 20px;
  position: relative;
}

.portfolio-details .portfolio-details-slider .swiper-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background-color: color-mix(in srgb, var(--default-color), transparent 85%);
  opacity: 1;
}

.portfolio-details .portfolio-details-slider .swiper-pagination .swiper-pagination-bullet-active {
  background-color: var(--accent-color);
}

.portfolio-details .portfolio-info {
  background-color: var(--surface-color);
  padding: 30px;
  box-shadow: 0px 0 30px rgba(0, 0, 0, 0.1);
}

.portfolio-details .portfolio-info h3 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid color-mix(in srgb, var(--default-color), transparent 85%);
}

.portfolio-details .portfolio-info ul {
  list-style: none;
  padding: 0;
  font-size: 15px;
}

.portfolio-details .portfolio-info ul li+li {
  margin-top: 10px;
}

.portfolio-details .portfolio-description {
  padding-top: 30px;
}

.portfolio-details .portfolio-description h2 {
  font-size: 26px;
  font-weight: 700;
  margin-bottom: 20px;
}

.portfolio-details .portfolio-description p {
  padding: 0;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
}

/*--------------------------------------------------------------
# Service Details Section
--------------------------------------------------------------*/
.service-details .services-list {
  background-color: var(--surface-color);
  padding: 10px 30px;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  margin-bottom: 20px;
}

.service-details .services-list a {
  display: block;
  line-height: 1;
  padding: 8px 0 8px 15px;
  border-left: 3px solid color-mix(in srgb, var(--default-color), transparent 70%);
  margin: 20px 0;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  transition: 0.3s;
}

.service-details .services-list a.active {
  color: var(--heading-color);
  font-weight: 700;
  border-color: var(--accent-color);
}

.service-details .services-list a:hover {
  border-color: var(--accent-color);
}

.service-details .services-img {
  margin-bottom: 20px;
}

.service-details h3 {
  font-size: 26px;
  font-weight: 700;
}

.service-details h4 {
  font-size: 20px;
  font-weight: 700;
}

.service-details p {
  font-size: 15px;
}

.service-details ul {
  list-style: none;
  padding: 0;
  font-size: 15px;
}

.service-details ul li {
  padding: 5px 0;
  display: flex;
  align-items: center;
}

.service-details ul i {
  font-size: 20px;
  margin-right: 8px;
  color: var(--accent-color);
}

@media screen and (max-width: 767px) {
  .main {
    padding: 80px 16px 0 16px;
  }

  .hero {
    margin: 0;
    width: 100%;
    min-height: 100%;
    padding: 0 16px;
  }

  .wrap {
    display: flex;
    flex-direction: column-reverse;
    margin-bottom: 0;
  }

  .hero .introduce {
    padding: 0;
    margin-top: 0;
    align-items: center;
  }

  .hero .title-hero,
  .hero .content-hero {
    text-align: center;
    font-size: 16px;
  }

  .hero .title-hero {
    font-size: 32px;
    line-height: 100%;
  }

  .hero .content-hero {
    margin-bottom: 0;
  }

  #services {
    padding-top: 20px;
  }

  .service-title,
  .service-subtitle {
    padding-left: 0;
    min-height: 40px;
  }

  .hero-img {
    margin-top: 10px;
    padding-left: 0;
  }

  .clients {
    padding-top: 45px;
    padding-bottom: 60px;
  }

  .about {
    padding: 60px 16px 16px 16px;
    border-radius: 0;
  }

  .about .Choose-outabox {
    width: 100%;
  }

  .platform {
    flex-direction: column;
  }

  .about .icon-box {
    width: 100%;
    margin-bottom: 20px;
  }

  .icon-box {
    margin-bottom: 20px;
  }

  .about .section3 {
    margin-top: 60px;
    padding-right: 0;
    gap: 30px;
    padding: 40px 20px;
  }

  .container {
    padding: 0;
  }

  .about .section3 .left {
    width: 100%;
    padding: 0;
  }

  .section-title p {
    margin: 0;
  }

  .alt-services {
    padding: 0;
    /* margin: 0 16px; */
  }

  .img-container {
    width: 100%;
  }

  .img-icon {
    margin: 0;
  }

  .wrap-general {
    flex-direction: column;
    gap: 30px;
  }

  .power {
    padding: 0px 16px;
    padding-top: 80px;
  }

  .column {
    margin-top: 30px;
  }

  .center-img {
    margin: 30px auto;
  }

  .img-information {
    margin-top: 30px;
  }

  .center-title {
    padding: 0;
    font-size: 24px;
    line-height: 37px;
  }

  .features .about-information {
    height: 280px;
    background-position: bottom;
    background-size: 200%;
    padding-bottom: 20px;
  }

  .features .info {
    padding: 0 15px;
  }

  .features .child {
    justify-content: center;
  }

  .about-us {
    padding: 12px 30px;
  }

  .testimonials {
    padding-top: 0px;
  }

  .testimonials .testimonial-item {
    width: auto;
  }

  .portfolio .frame {
    width: auto;
    height: auto;
    padding: 60px 16px 0 16px;
  }

  .porfolio-content {
    width: 100%;
  }

  .testimonials .p-testimonial {
    min-height: 120px;
  }

  .testimonials .p-name {
    min-height: 48px;
  }

  .portfolio .porfolio-content .title {
    font-size: 28px;
    line-height: 100%;
    text-align: center;
  }

  .portfolio .porfolio-content br {
    display: none;
  }

  .wrap-btn {
    gap: 20px;
    flex-direction: column;
  }

  .wrap-btn .schedule-demo,
  .wrap-btn .contact-sale {
    margin: 0;
    width: 100%;
  }

  .special-devider {
    margin-top: 0px !important;
  }

  .img-icon-container {
    width: 100%;
  }
}

.client-logo {
  display: none !important;
}