:root {
  --primary: #1A9F9A;
  --secondary: #204A62;
}

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

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

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

.header-shadow {
  background-color: #000000;
  transition: all 0.5s ease-in-out;
}

a {
  color: #fff;
  text-decoration: none;
}

ul {
  margin-bottom: 0;
  padding-left: 0;
}

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

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

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

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

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

.fs-22 {
  font-size: 22px;
}

.fs-30 {
  font-size: 28px;
}

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

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

.btn-primary {
  background: #1A9F9A;
  color: #fff;
  font-size: 22px;
  font-weight: 400;
  padding: 8px 40px;
  border-radius: 16px;
  border: 2px solid #1A9F9A;
  box-shadow: 0px 4px 15px 0px rgba(0, 0, 0, 0.0784313725);
  /* Soft neon shadow */
  font-family: "Inter", sans-serif;
  transition: 0.3s ease-in-out;
}
@media (max-width: 992px) {
  .btn-primary {
    font-size: 20px;
  }
}
@media (max-width: 556px) {
  .btn-primary {
    font-size: 16px;
    border-radius: 8px;
    padding: 10px 22px;
  }
}
.btn-primary:hover {
  border-color: #48EBE5;
  background-color: #1A9F9A;
}

.nav-active {
  width: 100%;
  height: 1px;
  font-weight: 700;
  border-bottom: 1px solid transparent;
  /* must be transparent */
}

.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 {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 9;
  font-family: "Inter", sans-serif;
}
.headers .h-navbar {
  background-color: #323232;
}
.headers .h-navbar ul {
  list-style: none;
}
.headers .h-navbar ul li a {
  font-size: 20px;
  border-right: 1px solid #747474;
}
@media (max-width: 1440px) {
  .headers .h-navbar ul li a {
    font-size: 16px;
  }
}
.headers .header-logo img {
  width: 150px;
}

.header-nav {
  list-style: none;
}
.header-nav li {
  padding-left: 60px;
}
@media (max-width: 1600px) {
  .header-nav li {
    padding-left: 24px;
  }
}
.header-nav li a {
  text-decoration: none;
  position: relative;
  white-space: nowrap;
  font-family: "Inter", sans-serif;
  font-size: 22px;
}
@media (max-width: 1440px) {
  .header-nav li a {
    font-size: 20px;
  }
}
@media (min-width: 1200px) and (max-width: 1400px) {
  .header-nav li a {
    font-size: 18px;
  }
}
.header-nav li a:hover {
  color: var(--primary);
  transition: all 0.5s ease-in-out;
}

.btn-contact {
  background-color: #fff;
  color: var(--primary);
  padding: 11px 28px;
  border-radius: 14px;
  font-size: 16px;
  transition: all 0.5s ease-in-out;
}
@media (max-width: 375px) {
  .btn-contact {
    padding: 8px 10px;
  }
}
.btn-contact:hover {
  background-color: var(--primary);
  color: #fff;
  transition: all 0.5s ease-in-out;
}

.fw-medium {
  font-weight: 500;
}

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

.fw-bold {
  font-weight: 700;
}

.hero-section {
  padding-top: 80px;
  background-image: url("../img/homes/h-banner.png");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  position: relative;
}
.hero-section .banner-contect h1 {
  font-size: 48px;
  font-weight: 700;
  line-height: 1.3;
  max-width: 480px;
  position: relative;
}
.hero-section .banner-contect h1::after {
  content: "";
  position: absolute;
  bottom: -22px;
  left: 0;
  background-image: url("../img/homes/line.png");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  width: 96%;
  height: 20px;
}
@media (max-width: 556px) {
  .hero-section .banner-contect h1 {
    font-size: 34px;
  }
}
.hero-section .banner-contect p {
  font-size: 24px;
  color: #FCFCFC;
  max-width: 640px;
}
@media (max-width: 556px) {
  .hero-section .banner-contect p {
    font-size: 18px;
  }
}

h2 {
  font-size: 38px;
  font-weight: 500;
  line-height: 1.3;
}
@media (max-width: 556px) {
  h2 {
    font-size: 34px;
  }
}
@media (max-width: 375px) {
  h2 {
    font-size: 28px;
  }
}

.comman-content {
  font-size: 24px;
}
@media (max-width: 556px) {
  .comman-content {
    font-size: 18px;
  }
}

.review {
  background-color: var(--secondary);
  color: #fff;
  padding: 90px 60px;
  border-radius: 40px;
  position: relative;
}
@media (max-width: 768px) {
  .review {
    padding: 60px 40px;
  }
}
@media (max-width: 375px) {
  .review {
    padding: 54px 20px 30px 20px;
  }
}
@media (max-width: 375px) {
  .review h3 {
    font-size: 28px !important;
  }
}
.review .q-icon {
  margin-top: -200px;
}
@media (max-width: 768px) {
  .review .q-icon {
    margin-top: -140px;
  }
}
.review h3 {
  font-size: 32px;
}
.review p {
  font-size: 22px;
}
@media (max-width: 375px) {
  .review p {
    font-size: 18px;
  }
}
.review .r-bg {
  position: absolute;
  right: 20px;
  bottom: 20px;
}

.swiper-pagination-bullet-active {
  width: 24px !important;
  height: 18px !important;
  border-radius: 10px !important;
  background-color: #1A9F9A !important;
}

.business-section {
  background: linear-gradient(180deg, #E8F1F1 0%, #FFFFFF 100%);
  border-radius: 100px 100px 0 0;
}
@media (max-width: 768px) {
  .business-section {
    border-radius: 60px 60px 0 0;
  }
}
.business-section .business-contant h2 {
  max-width: 540px;
}
.business-section .business-contant h2 span {
  position: relative;
}
.business-section .business-contant h2 span::after {
  content: "";
  position: absolute;
  bottom: -20px;
  left: 0;
  background-image: url("../img/homes/line.png");
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  width: 96%;
  height: 20px;
}
.business-section .business-contant p {
  max-width: 1360px;
  line-height: 1.3;
}
.business-section .business-card {
  position: relative;
}
.business-section .business-card .card-content,
.business-section .business-card .icon {
  transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.35s cubic-bezier(0.22, 1, 0.36, 1);
}
.business-section .business-card:hover .card-content {
  transform: translateY(-6px);
  box-shadow: -4px 8px 24px rgba(39, 73, 97, 0.15), 0px 4px 16px rgba(39, 73, 97, 0.08);
}
.business-section .business-card:hover .icon {
  transform: translateY(-4px);
  box-shadow: inset 7px 6px 10px rgba(39, 73, 97, 0.15), 0 6px 12px rgba(39, 73, 97, 0.1);
}
.business-section .business-card .card-content {
  position: relative;
  padding: 124px 24px 40px 24px;
  background: #FAFCFC;
  border-radius: 40px;
  box-shadow: none;
  height: 100%;
}
@media (max-width: 768px) {
  .business-section .business-card .card-content {
    padding: 84px 14px 20px 14px;
  }
}
.business-section .business-card .card-content::before {
  content: "";
  position: absolute;
  inset: 0;
  padding: 1px;
  border-radius: 40px;
  background: linear-gradient(180deg, rgba(39, 73, 97, 0.18), rgba(255, 255, 255, 0));
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}
.business-section .business-card .card-content h4 {
  max-width: 200px;
  margin: 0 auto;
  text-align: center;
  color: #274961;
}
.business-section .business-card .icon {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background-color: #FCFCFC;
  box-shadow: 2px 2px 6px rgba(0, 0, 0, 0.1215686275);
  position: absolute;
  top: 0;
  left: 0;
}
@media (max-width: 1024px) {
  .business-section .business-card .icon {
    width: 100px;
    height: 100px;
  }
}

.step-section {
  position: relative;
  overflow: hidden;
}
.step-section:hover .take-bg {
  transform: scale(1.1);
  transition: all 0.5s ease-in-out;
}
.step-section .take-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: all 0.5s ease-in-out;
}
.step-section h2 {
  max-width: 450px;
  line-height: 1.5;
}
.step-section h2 span {
  position: relative;
}
.step-section h2 span::after {
  content: "";
  position: absolute;
  bottom: -22px;
  left: 0;
  background-image: url("../img/homes/line.png");
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  width: 96%;
  height: 20px;
}
.step-section p {
  max-width: 680px;
}

.learn-btn {
  font-size: 26px;
  font-weight: 600;
  color: var(--primary);
  border-radius: 0;
  padding: 0;
  border-bottom: 1px solid var(--primary);
}
@media (max-width: 768px) {
  .learn-btn {
    font-size: 24px;
  }
}

.counter {
  background-color: #EFF3F3;
  border-radius: 40px;
  padding: 60px 0;
}
@media (max-width: 1024px) {
  .counter {
    padding: 30px 0;
  }
}
@media (min-width: 992px) {
  .counter .content {
    border-right: 1px solid #C2C9C9;
  }
}
.counter .content h3 {
  font-size: 48px;
  font-weight: 700;
  color: var(--primary);
}
@media (max-width: 1024px) {
  .counter .content h3 {
    font-size: 38px;
  }
}
@media (max-width: 768px) {
  .counter .content h3 {
    font-size: 32px;
  }
}

.service-section .service-title .tag {
  font-size: 38px;
}
.service-section .nav {
  background-color: #204A62;
  border-radius: 40px;
  padding: 40px 40px 40px 40px;
}
@media (max-width: 1024px) {
  .service-section .nav {
    padding: 24px;
  }
}
.service-section .nav .nav-link {
  margin-bottom: 20px;
  background-color: transparent;
  font-size: 28px;
  font-weight: 500;
  border-radius: 20px;
  padding: 22px;
  color: #fff;
}
@media (max-width: 1024px) {
  .service-section .nav .nav-link {
    font-size: 24px;
    padding: 14px;
  }
}
@media (max-width: 557px) {
  .service-section .nav .nav-link {
    font-size: 20px;
  }
}
.service-section .nav .nav-link.active {
  background-color: var(--primary);
  text-decoration: underline;
  margin-right: -80px;
}
@media (max-width: 1024px) {
  .service-section .nav .nav-link.active {
    margin-right: 0px;
  }
}
.service-section .tab-content {
  background-color: #EFF3F3;
  border-radius: 0 40px 40px 0;
  padding: 90px;
}
@media (max-width: 1024px) {
  .service-section .tab-content {
    border-radius: 0 32px 32px 0;
    padding: 30px;
  }
}
@media (max-width: 991px) {
  .service-section .tab-content {
    border-radius: 0 0 32px 32px;
    padding: 80px 20px 20px 20px;
    margin-top: -50px;
  }
}
.service-section .tab-content p {
  font-size: 28px;
}
@media (max-width: 1024px) {
  .service-section .tab-content p {
    font-size: 24px;
  }
}
@media (max-width: 557px) {
  .service-section .tab-content p {
    font-size: 20px;
  }
}
.service-section .tab-content p .line {
  width: 32px;
  height: 12px;
  border-radius: 6px;
  background-color: var(--primary);
  display: inline-block;
}

.ai-service {
  background-color: #B2C9CE;
}
.ai-service .tag {
  font-size: 26px;
}
.ai-service h2 {
  
font-size: 3.8rem;
}
.ai-service li {
  /*font-size: 30px;*/
  font-size: 20px;
}
@media (max-width: 768px) {
  .ai-service li {
    font-size: 26px;
  }
}
@media (max-width: 557px) {
  .ai-service li {
    font-size: 22px;
  }
}

/*.solution-section .solution-content {*/
/*  padding: 20px 40px;*/
/*  background-color: #EFF3F3;*/
/*  border-radius: 40px;*/
/*}*/
/*@media (max-width: 557px) {*/
/*  .solution-section .solution-content {*/
/*    padding: 20px 30px;*/
/*  }*/
/*}*/
/*.solution-section .solution-content h2 {*/
/*  max-width: 680px;*/
/*}*/
/*.solution-section .solution-content p {*/
/*  max-width: 680px;*/
/*}*/


@media (max-width: 1199px) {
  .solution-section .solution-img {
    height: 500px;
  }
}
@media (max-width: 768px) {
  .solution-section .solution-img {
    height: 330px;
  }
}
@media (max-width: 557px) {
  .solution-section .solution-img {
    height: 200px;
  }
}
.solution-section .solution-content {
  padding: 20px 40px;
  background-color: #EFF3F3;
  border-radius: 40px;
  position: relative;
}
@media (max-width: 557px) {
  .solution-section .solution-content {
    padding: 20px;
  }
}
@media (max-width: 375px) {
  .solution-section .solution-content {
    padding: 14px;
  }
}
.solution-section .solution-content h2 {
  max-width: 680px;
  font-size: 3.5rem;
  line-height: 48px;
}
@media (max-width: 768px) {
  .solution-section .solution-content h2 {
    font-size: 34px;
  }
}
@media (max-width: 556px) {
  .solution-section .solution-content h2 {
    font-size: 26px;
  }
}
.solution-section .solution-content p {
  max-width: 820px;
  font-size: 2.2rem;
  line-height: 32px;
}
.solution-section .solution-content .solution-img-2 {
  position: relative;
}
.solution-section .solution-content .solution-img-2 .solution2-bg {
  position: absolute;
  bottom: 0px;
  left: 0;
  z-index: 0;
}
.solution-section .solution-content .solution-img-2 .solution4-bg {
  position: absolute;
  top: -150px;
  right: -40px;
  z-index: 0;
}
.solution-section .solution-content .solution-img-2 .s5-bg {
  position: absolute;
  top: -60px;
  left: 120px;
  z-index: 0;
}
@media (max-width: 1199px) {
  .solution-section .solution-content .solution-img-2 .s5-bg {
    display: none;
  }
}
.solution-section .solution-content .solution3-bg {
  position: absolute;
  bottom: 0px;
  right: -40px;
  z-index: 0;
}
@media (max-width: 1199px) {
  .solution-section .solution-content .solution3-bg {
    top: 0;
    right: 0;
    display: none;
  }
}
.solution-section .solution-content .solution4-bg {
  position: absolute;
  top: 0px;
  right: 0px;
  z-index: 0;
  height: 100%;
}
@media (max-width: 1199px) {
  .solution-section .solution-content .solution4-bg {
    top: 0;
    right: 0;
    display: none;
  }
}
.solution-section .solution-content .solution5-bg {
  position: absolute;
  top: 0px;
  left: 0;
  z-index: 0;
  bottom: 0;
  height: 100%;
}
@media (max-width: 1199px) {
  .solution-section .solution-content .solution5-bg {
    display: none;
  }
}


.monitoring-section {
  padding: 40px 0;
  background-image: url("../img/home/monitoring-bg.png");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  position: relative;
  /* Default arrow white */
  /* Arrow white when open */
}
.monitoring-section .monitoring-title h6 {
  font-size: 24px;
  font-weight: 600;
  color: #1A9F9A;
  text-transform: uppercase;
}
.monitoring-section .monitoring-title h5 {
  font-size: 38px;
  font-weight: 500;
}
.monitoring-section .monitoring-title p {
  font-size: 24px;
  max-width: 900px;
  margin: 0 auto;
}
.monitoring-section .monitori-status {
  border: 2px solid rgba(255, 255, 255, 0.4392156863);
  border-radius: 40px;
  padding: 30px;
  position: relative;
  overflow: hidden;
}
.monitoring-section .monitori-status::after {
  position: absolute;
  top: 0;
  left: 0;
  background: linear-gradient(150deg, rgba(255, 255, 255, 0.12) 0%, rgba(255, 255, 255, 0.04) 100%);
  backdrop-filter: blur(25px);
  -webkit-backdrop-filter: blur(25px);
  box-shadow: 0 0 20px rgba(255, 255, 255, 0.07) inset;
  width: 100%;
  height: 100%;
  content: "";
  z-index: 0;
}
.monitoring-section .monitori-status .filter-content {
  position: relative;
  z-index: 1;
}
.monitoring-section .monitori-status .filter-content p {
  font-size: 28px;
}
@media (max-width: 557px) {
  .monitoring-section .monitori-status .filter-content p {
    font-size: 24px;
  }
}
.monitoring-section h4 {
  font-size: 32px;
  font-weight: 400;
  color: #1A9F9A;
}
@media (max-width: 557px) {
  .monitoring-section h4 {
    font-size: 32px;
  }
}
@media (max-width: 340px) {
  .monitoring-section h4 {
    font-size: 30px;
  }
}
.monitoring-section .accordion-item,
.monitoring-section .accordion-button {
  background-color: transparent !important;
}
.monitoring-section .accordion-item .accordion-button {
  color: #fff;
}
.monitoring-section .accordion-button {
  font-size: 32px;
  font-weight: 700;
}
.monitoring-section .accordion-body {
  color: #FCFCFC;
  font-weight: 400;
}
.monitoring-section .accordion-body .learn-btns {
  font-size: 18px;
  font-weight: 400;
  text-decoration: underline;
  color: var(--primary);
}
.monitoring-section .accordion-button:not(.collapsed),
.monitoring-section .accordion-button:focus {
  background-color: #fff;
}
.monitoring-section .accordion-button::after {
  background-image: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' fill='%23FFFFFF' viewBox='0 0 16 16'><path fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/></svg>");
}
.monitoring-section .accordion-button:not(.collapsed)::after {
  background-image: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' fill='%23FFFFFF' viewBox='0 0 16 16'><path fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/></svg>");
}
.monitoring-section .accordion-button:not(.collapsed)::after {
  transform: rotate(-180deg) !important;
}

.security-section {
  padding: 80px 0;
  background-image: url("../img/home/s-bg.png");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  position: relative;
  /* Responsive adjustments */
}
@media (max-width: 557px) {
  .security-section {
    padding: 60px 0;
  }
}
.security-section h3 {
  font-size: 38px;
  font-weight: 600;
  color: var(--secondary);
}
@media (max-width: 768px) {
  .security-section h3 {
    font-size: 30px;
  }
}
@media (max-width: 557px) {
  .security-section h3 {
    font-size: 26px;
  }
}
.security-section .features {
  overflow-x: auto;
  justify-content: center;
}
@media (max-width: 1440px) {
  .security-section .features {
    justify-content: start;
  }
}
.security-section .features .feature {
  position: relative;
  flex-shrink: 0;
  width: 300px;
}
.security-section .features .feature:last-child {
  width: 220px;
}
@media (max-width: 1440px) {
  .security-section .features .feature {
    width: 280px;
  }
}
@media (max-width: 768px) {
  .security-section .features .feature {
    width: 250px;
  }
}
.security-section .features .feature-desc {
  color: #323638;
  font-size: 22px;
  text-align: left;
  max-width: 200px;
}
@media (max-width: 992px) {
  .security-section .feature::after {
    display: none;
  }
  .security-section .feature {
    margin-bottom: 2rem;
  }
}

.portfolio-section h2 {
  max-width: 540px;
}
.portfolio-section h2 span {
  position: relative;
}
.portfolio-section h2 span::after {
  content: "";
  position: absolute;
  bottom: -20px;
  left: 0;
  background-image: url("../img/homes/line.png");
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  width: 96%;
  height: 20px;
}
.portfolio-section p {
  max-width: 1360px;
}
.portfolio-section .port-card {
  background-color: #EFF3F3;
  border-radius: 40px;
  position: relative;
  overflow: hidden;
}
.portfolio-section .port-card .p-content {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 20px;
  color: #fff;
  z-index: 1;
}
.portfolio-section .port-card .p-content::after {
  position: absolute;
  top: 0;
  left: 0;
  background: rgba(32, 74, 98, 0.6);
  -webkit-backdrop-filter: blur(20px);
          backdrop-filter: blur(20px);
  width: 100%;
  height: 100%;
  content: "";
  z-index: -1;
}
.portfolio-section .port-card .p-content h5 {
  font-size: 24px;
  font-weight: 600;
}
.portfolio-section .port-card .p-content p {
  font-size: 16px;
  margin-bottom: 0;
}

.power-section {
  padding: 60px 0;
  background-image: url("../img/home/p-bg.png");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  position: relative;
}
.power-section h3 {
  font-size: 38px;
  font-weight: 400;
  color: #21A49F;
}
@media (max-width: 768px) {
  .power-section h3 {
    font-size: 30px;
  }
}
@media (max-width: 557px) {
  .power-section h3 {
    font-size: 26px;
  }
}
.power-section .sub-text {
  font-size: 28px;
  font-weight: 500;
}
@media (max-width: 768px) {
  .power-section .sub-text {
    font-size: 22px;
  }
}
.power-section h5 {
  font-size: 20px;
  font-weight: 500;
}
@media (max-width: 768px) {
  .power-section h5 {
    font-size: 18px;
  }
}

.secure-section h3 {
  font-size: 38px;
  font-weight: 500;
  color: var(--secondary);
}
@media (max-width: 768px) {
  .secure-section h3 {
    font-size: 30px;
  }
}
@media (max-width: 557px) {
  .secure-section h3 {
    font-size: 26px;
  }
}
.secure-section .contact-btn {
  font-size: 28px;
  font-weight: 600;
  text-decoration: underline;
  color: var(--primary);
}
.secure-section .labs-contact {
  position: relative;
}
.secure-section .labs-contact .labs-bg {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
}
@media (max-width: 557px) {
  .secure-section .labs-contact .labs-bg {
    width: 100%;
  }
}
.secure-section .labs-contact .logo {
  background-color: #fff;
  border-radius: 40px;
  position: relative;
}

.swiper-pagination-bullet {
  width: var(--swiper-pagination-bullet-width, var(--swiper-pagination-bullet-size, 15px));
  height: var(--swiper-pagination-bullet-height, var(--swiper-pagination-bullet-size, 15px));
  background: #d9d9d9;
  background: #504b4b;
}

.footer {
  background-color: #204A62;
  color: #fff;
}
.footer .footer-logo img {
  width: 220px;
}
.footer .info-item a {
  font-size: 18px;
  font-weight: 400;
  text-decoration: none;
}

.footer-nav .footer-title {
  text-transform: uppercase;
  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;
  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: "";
  position: absolute;
  left: 0;
  bottom: -5px;
  width: 100%;
  height: 1px;
  border: 1px solid var(--primary);
}

.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;
  padding: 16px 0 0 0;
}
.footer-copy p {
  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: #000000;
  z-index: 99;
  right: 0;
  left: 100%;
  border: 0;
  height: 100%;
  transition: all 0.5s ease-in-out;
}


.ai-service ul {
  list-style: disc;
}

.ai-service h2{
 line-height: 1.5;
}

.ai-service   {
 line-height: 1.5;
}

.portfolio-section .container .ctaWrap a {
  color: #1A9F9A;
  font-weight: 600;
  border-bottom: 1px solid #1A9F9A;
  font-size: 2rem;
}

.portfolio-section .ctaWrap {
  text-align: center;
  margin: 20px auto 0;
}

.solution-swiper {
    padding-bottom: 6rem !important;
}
/*# sourceMappingURL=home.css.map */

