:root {
  --primary: #0079BC;
  --secondary: #9BD334;
}

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

@media (min-width: 1400px) {
  .container {
    max-width: 1620px;
  }
}

body {
  font-family: "Inter", sans-serif;
}

.f-grow {
  flex-grow: 1;
}

.f-shrink {
  flex-shrink: 0;
}

.fs-12 {
  font-size: 12px !important;
}

.fs-16 {
  font-size: 16px !important;
}

.color-primary {
  color: var(--primary);
}

.btn {
  position: relative;
  z-index: 0;
  color: #fff;
  border-radius: 12px;
  overflow: hidden;
  font-size: 20px;
  font-weight: 500;
  font-family: "Inter", sans-serif;
  border: 1px solid var(--primary);
  transition: all 0.5s ease-in-out;
}
@media (max-width: 992px) {
  .btn {
    font-size: 18px;
  }
}
@media (max-width: 556px) {
  .btn {
    font-size: 14px;
  }
}
.btn::before {
  content: "";
  width: 51%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  background-color: var(--primary);
  z-index: -1;
  transition: all 0.5s ease-in-out;
}
.btn::after {
  content: "";
  width: 50%;
  height: 100%;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  background-color: var(--primary);
  z-index: -1;
  transition: all 0.5s ease-in-out;
}
.btn:hover {
  color: var(--primary);
  border-color: var(--primary);
  transition: all 0.5s ease-in-out;
}
.btn:hover::before {
  left: -100%;
  transition: all 0.5s ease-in-out;
}
.btn:hover::after {
  right: -100%;
  transition: all 0.5s ease-in-out;
}

.nav-active {
  border-bottom: 2px solid var(--secondary);
  font-weight: 700 !important;
  color: var(--primary) !important;
}

.section-title {
  font-size: 44px;
  font-weight: 500;
}
@media (max-width: 768px) {
  .section-title {
    font-size: 36px;
  }
}
@media (max-width: 374px) {
  .section-title {
    font-size: 27px;
  }
}

.section-subtitle {
  color: var(--primary);
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 14px;
}

.subtitle {
  color: #131415;
  font-size: 20px;
}

.headers {
  background-color: #fff;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 9;
}
.headers .header-logo img {
  max-width: 154px;
}
@media (max-width: 1399px) {
  .headers .header-logo img {
    max-width: 120px;
  }
}
@media (max-width: 557px) {
  .headers .header-logo img {
    max-width: 110px;
  }
}
@media (max-width: 325px) {
  .headers .header-logo img {
    max-width: 90px;
  }
}

.header-shadow {
  box-shadow: 2px 2px 10px 0 #e9e9e9;
  background-color: #fff;
  transition: all 0.5s ease-in-out;
}

.header-nav {
  list-style: none;
}
.header-nav li {
  padding-right: 44px;
}
@media (max-width: 1600px) {
  .header-nav li {
    padding-right: 24px;
    margin-bottom: 10px;
  }
}
.header-nav li a {
  font-weight: 500;
  text-decoration: none;
  color: #5c5c5c;
  position: relative;
  white-space: nowrap;
  font-family: "Inter", sans-serif;
  font-size: 20px;
}
@media (max-width: 1399px) {
  .header-nav li a {
    font-size: 15px;
  }
}
.header-nav li a::after {
  content: "";
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0%;
  height: 2px;
  background-color: var(--secondary);
  transition: all 0.5s ease-in-out;
}
.header-nav li a:hover {
  color: var(--secondary);
  transition: all 0.5s ease-in-out;
}
.header-nav li a:hover::after {
  width: 100%;
  transition: all 0.5s ease-in-out;
}

.fw-semibold {
  font-weight: 600;
}

.hero-section {
  margin-top: 108px;
  padding: 190px 0;
  background-image: url("../img/home/banner.gif");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}
@media (max-width: 1399px) {
  .hero-section {
    margin-top: 84px;
  }
}
@media (max-width: 1024px) {
  .hero-section {
    padding: 130px 0;
  }
}
@media (max-width: 556px) {
  .hero-section {
    padding: 80px 0;
    margin-top: 82px;
  }
}
@media (max-width: 325px) {
  .hero-section {
    margin-top: 740x;
  }
}
.hero-section h1 {
  font-size: 80px;
  font-weight: 700;
}
@media (max-width: 1024px) {
  .hero-section h1 {
    font-size: 72px;
  }
}
@media (max-width: 556px) {
  .hero-section h1 {
    font-size: 56px;
  }
}
.hero-section p {
  font-size: 30px;
  font-weight: 500;
  max-width: 1240px;
}
@media (max-width: 1024px) {
  .hero-section p {
    font-size: 24px;
  }
}
@media (max-width: 556px) {
  .hero-section p {
    font-size: 22px;
  }
}

.btn-white {
  color: var(--primary);
  background-color: var(--primary) !important;
  font-size: 24px;
}
@media (max-width: 556px) {
  .btn-white {
    font-size: 18px;
  }
}
.btn-white:hover {
  color: #fff;
}
.btn-white::before {
  background-color: #fff;
}
.btn-white::after {
  background-color: #fff;
}

.feature-card {
  background: #F9F9F9;
  border-radius: 0 40px 0 40px;
  padding: 40px 30px;
  height: 100%;
  border: 0;
  border-top: 4px solid var(--primary) !important;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  opacity: 0;
  transform: translateY(50px);
  animation: slideInUp 0.8s ease-out forwards;
  position: relative;
  overflow: hidden;
}
.feature-card .product-icon {
  width: 62px;
  height: 62px;
  border: 1px solid var(--primary);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 30px;
  position: relative;
  animation: float 3s ease-in-out infinite;
  font-size: 24px;
  color: var(--primary);
}
.feature-card .product-title {
  font-size: 26px;
  font-weight: 500;
}
.feature-card p {
  font-size: 18px;
  font-weight: 400;
}
@keyframes slideInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.feature-card .content-fade-in {
  animation: fadeIn 0.6s ease-out forwards;
}

.analysis-section .analysis-subtitle {
  font-size: 20px;
  max-width: 1134px;
  margin: 0 auto;
}
.analysis-section .analysis-card {
  background-color: transparent;
  border-radius: 8px;
  padding: 8px;
  box-sizing: border-box;
}
.analysis-section .analysis-card h3 {
  font-size: 24px;
  font-weight: 600;
}
.analysis-section .analysis-card p {
  font-size: 18px;
  font-weight: 400;
}
.analysis-section .analysis-card .analysis-img {
  width: 260px;
  height: 260px;
  margin-bottom: 10px;
}
.analysis-section .analysis-card .analysis-card-border {
  margin-top: -84px;
  margin-right: -10px;
}
.analysis-section .analysis-card .analysis-card-border-right {
  margin-top: -84px;
  margin-left: -10px;
}

.analysis-box {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, rgba(189, 230, 253, 0.8) 40%, rgba(189, 230, 253, 0.8) 60%, rgba(255, 255, 255, 0) 100%);
  position: absolute;
  top: 50%;
  left: 50%;
  width: 350px;
  height: 100%;
  transform: translate(-50%, -50%);
  z-index: -1;
}

.z-index {
  z-index: 1;
}

.responsive-ai {
  padding: 160px 0;
  background-image: url("../img/home/ai-video.gif");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  position: relative;
}
.responsive-ai .ai-bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 100%;
  z-index: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0.36) 100%);
}
@media (max-width: 556px) {
  .responsive-ai {
    padding: 90px 0;
  }
}
.responsive-ai h2 {
  font-size: 44px;
  font-weight: 600;
}
@media (max-width: 556px) {
  .responsive-ai h2 {
    font-size: 34px;
  }
}
.responsive-ai .res-content {
  font-size: 34px;
  font-weight: 500;
  max-width: 1150px;
  margin: 0 auto;
}
@media (max-width: 768px) {
  .responsive-ai .res-content {
    font-size: 24px;
  }
}
@media (max-width: 556px) {
  .responsive-ai .res-content {
    font-size: 20px;
  }
}
.responsive-ai .global-text {
  color: var(--secondary);
  position: relative;
  display: inline-block;
}
.responsive-ai .global-text::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -8px;
  width: 100%;
  height: 11px;
  background-image: url("../img/home/v-bg.png");
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center bottom;
  pointer-events: none;
  z-index: -1;
}

.flag-product .product-box {
  width: 180px;
  height: 180px;
  background-color: #F9F9F9;
  border-radius: 40px 40px 10px 40px;
  border-top: 3px solid var(--primary);
  padding: 50px;
}
.flag-product h5 {
  font-size: 28px;
  font-weight: 600;
}
@media (max-width: 768px) {
  .flag-product h5 {
    font-size: 22px;
  }
}
.flag-product p {
  font-size: 18px;
  font-weight: 400;
  max-width: 410px;
  margin: 0 auto;
}
@media (max-width: 768px) {
  .flag-product p {
    font-size: 16px;
  }
}

.custom-card {
  border-radius: 40px;
  overflow: hidden;
  background: #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
  border: 2px solid #7FBFE4;
}

.card-top {
  padding: 40px 0;
  background: white;
  width: 100%;
  box-shadow: 0px 2px 16px 0px rgba(0, 0, 0, 0.1607843137);
}

.card-bottom {
  box-shadow: 14px -12px 10px 0px #6AADD2 inset;
  background: linear-gradient(to bottom, #7FBFE4, #88c6f3);
  width: 100%;
  text-align: center;
  padding: 12px 0;
  color: #000;
  position: relative;
}
.card-bottom p {
  font-size: 22px;
  font-weight: 500;
  padding: 36px 0px;
  white-space: nowrap;
  text-align: center;
}

.card-bottom::before {
  content: "";
  position: absolute;
  top: 0px;
  left: 50%;
  transform: translateX(-50%);
  width: 0px;
  height: 0px;
  /* background: white; */
  border-left: 20px solid transparent;
  border-right: 20px solid transparent;
  border-top: 10px solid white;
  z-index: 1;
}

.icon-img {
  height: 80px;
}

.footer {
  background-color: #F9F9F9;
}
.footer .info-item a {
  font-size: 18px;
  font-weight: 400;
  color: #131415;
  text-decoration: none;
}

.footer-nav .footer-title {
  font-size: 20px;
  font-weight: 600;
}
.footer-nav ul {
  list-style: none;
  padding-left: 0;
}
.footer-nav ul li {
  margin-bottom: 14px;
}
.footer-nav ul li a {
  text-decoration: none;
  color: #000;
  transition: all 0.5s ease-in-out;
  position: relative;
  font-size: 18px;
}
.footer-nav ul li a::after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0%;
  height: 1px;
  background-color: var(--primary);
  transition: all 0.5s ease-in-out;
}
.footer-nav ul li a:hover {
  color: var(--primary);
  transition: all 0.5s ease-in-out;
}
.footer-nav ul li a:hover::after {
  width: 100%;
  transition: all 0.5s ease-in-out;
}

.form-control {
  border-radius: 20px;
}
.form-control::-moz-placeholder {
  color: #C2C2C2;
}
.form-control::placeholder {
  color: #C2C2C2;
}

.footer-border {
  border-right: 2px solid #ddd;
  padding-right: 10px;
  color: #000;
  text-decoration: none;
}

.footer-link {
  display: inline-block;
  position: relative;
  font-weight: bold;
}

.footer-link::after {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  bottom: -3px;
  width: 60%;
  height: 2px;
  background-color: #4AA3DF;
}

.social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 4px;
  border: 1px solid var(--primary);
  background-color: var(--primary);
  font-size: 18px;
  color: #fff;
  margin-right: 10px;
  transition: 0.5s ease-in-out;
}
.social-links a:hover {
  transition: 0.5s ease-in-out;
  margin-top: -4px;
}

.footer-copy {
  border-top: 1px solid #5D5D5D;
  font-size: 14px;
}
.footer-copy p {
  color: #131415;
  font-size: 16px;
}

.header-open {
  display: block !important;
  transition: all 0.5s ease-in-out !important;
  left: 0 !important;
}

.res-header {
  position: fixed;
  top: 0;
  background-color: #ffffff;
  z-index: 99;
  right: 0;
  left: 100%;
  border: 0;
  height: 100%;
  color: #002253;
  transition: all 0.5s ease-in-out;
}/*# sourceMappingURL=style.css.map */