:root {
  --white: #fff;
  --black: #000;
  --main-color: #31dd8c;
  --main-dark1: #191c22;
  --main-dark2: #c4c4c4;
  --main-dark3: #101216;
  --main-dark4: #1e1e1e;
  --main-light1: #f7f7f7;
}
body {
  font-family: "Poppins", sans-serif;
  overflow-x: hidden;
}
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 6rem;
  z-index: 1000;
  display: flex;
}
.header.scrolled {
  background-color: var(--main-dark3);
  box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 12px;
}
.header.scrolled .container .right .social-box .social.active a svg {
  stroke: var(--main-color);
}
.header.scrolled .container .right .social-box .social::before {
  background-color: var(--main-color);
}
.header.scrolled.white {
  background-color: var(--white);
  box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 12px;
}
.container {
  max-width: 2000px;
  width: 100%;
  margin: 0 auto;
  padding: 0 5rem;
}
.header .container {
  max-width: 2000px;
  margin: 0 auto;
  padding: 2rem 5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.header .container nav ul {
  display: flex;
  align-items: center;
  gap: 24px;
}
.header .container nav ul > li {
  position: relative;
}
.header .container nav ul li a {
  color: #fff;
  font-size: 16px;
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  display: flex;
  align-items: center;
  transition: transform 0.3s ease-in-out, color 0.3s ease-in-out;
  cursor: pointer;
  user-select: none;
}
.header .container nav ul li > a {
  font-weight: 600;
}
.header .container nav ul li svg {
  transition: all 0.3s ease-in-out;
  width: 20px;
  height: 20px;
  stroke: #fff;
}
.header .container nav ul li.active svg {
  transform: rotate(180deg);
}

.header .container nav ul li a:hover {
  transform: translateY(-5px);
  color: var(--main-color);
}
.header .container nav ul li ul {
  position: absolute;
  top: 100%;
  left: 0;
  width: 212px;
  background-color: var(--main-dark4);
  padding: 1rem;
  border-radius: 8px;
  box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 12px;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 32px;
  margin-top: 10px;
  display: none;
}
.header .container nav ul li ul.open {
  display: flex;
}

.header .container nav ul li ul li a {
  font-size: 14px;
  font-weight: 400 !important;
  color: #fff;
  transition: color 0.3s ease-in-out;
  text-align: left;
}
.header .container nav ul li ul li a:hover {
  color: var(--main-color);
  transform: translateY(0);
}

.header .container .right {
  display: flex;
  align-items: center;
  gap: 24px;
}
.header .container .right p {
  color: #fff;
  font-weight: 300;
}
.header .container .right p strong {
  font-weight: 700;
  font-family: "Poppins", sans-serif;
}
.header .container .right button {
  background-color: hsla(0, 0%, 77%, 0.25);
  width: 45px;
  height: 45px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease-in-out;
}
.header .container .right button:active {
  background-color: hsla(0, 0%, 77%, 0.65);
}
.header .container .right button:hover {
  background-color: #fff;
}
.header .container .right button:hover svg {
  stroke: var(--main-color);
}
.header .container .right button svg {
  width: 20px;
  height: 20px;
  stroke: #fff;
  transition: all 0.3s ease-in-out;
}
.header .container .right .social-box {
  position: relative;
}
.header .container .right .social-box .social::before {
  content: "";
  width: 1px;
  height: 70px;
  background-color: #fff;
  border-radius: 8px;
  z-index: -1;
  margin-top: 24px;
  transition: all 0.3s ease-in-out;
}
.header .container .right .social-box .social {
  position: absolute;
  width: 45px;
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 32px;
}
.header .container .right .social-box .social.active {
  display: flex;
}
.header .logo {
  height: 50px;
}

.hero {
  background-color: var(--main-dark3);
  background-image: url("/assets/images/hero-blue-overlay.svg");
  background-position: top -100% right -80%;
  background-repeat: no-repeat;
  background-size: 0;
  overflow: hidden;
  animation: backwards-animation 3s ease-in-out forwards;
}

@keyframes backwards-animation {
  0% {
    background-size: 0;
  }
  100% {
    background-size: 80%;
  }
}

.hero .box {
  width: 100%;
  max-width: 2000px;
  margin: 0 auto;
  padding: 0 5rem;
  position: relative;
}
.hero .box img.hero-img {
  position: absolute;
  bottom: 0;
  right: -12rem;
  height: 90%;
  z-index: 0;
  animation: hero-img-scale 2s ease-in-out forwards;
}

@keyframes hero-img-scale {
  0% {
    transform: scale(0.3);
    filter: brightness(0);
  }
  50% {
    transform: scale(0.5);
    filter: brightness(0.5);
  }
  100% {
    transform: scale(1);
    filter: brightness(1);
  }
}

.hero .box .hero-content {
  display: flex;
  align-items: center;
  min-height: 100%;
  height: 100vh;
  padding: 4rem 0 4rem;
}
.hero .box .hero-content .hero-bottom {
  display: flex;
  flex-direction: column;
  position: absolute;
  bottom: 4rem;
  width: 100%;
}
.hero .box .hero-content .hero-bottom h3 {
  font-size: 16px;
  color: var(--white);
  font-weight: 900;
  text-transform: uppercase;
  line-height: 1.4;
  margin-bottom: 16px;
}
.hero .box .hero-content .hero-bottom h3::before {
  content: "";
  position: absolute;
  width: 50px;
  height: 2px;
  background-color: #fff;
  left: -80px;
  margin-top: 20px;
}
.hero .box .hero-content .hero-bottom ul {
  width: 100%;
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 32px;
}
.hero .box .hero-content .hero-bottom ul li img {
  height: 44px;
  position: relative;
  top: 0;
  left: 0;
  right: 0;
  border-radius: 4px;
  filter: brightness(99999);
}
.hero .box h1 {
  font-size: 48px;
  color: var(--white);
  font-weight: 700;
  line-height: 1.4;
  position: relative;
  max-width: 760px;
  display: inline-block;
  z-index: 1;
}

.hero .box h1 span {
  background-color: var(--main-color);
  padding: 6px 12px;
}

.section {
  padding: 72px 0;
}
.mission .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.mission .container .left {
  max-width: 750px;
  width: 100%;
  display: flex;
  justify-content: center;
}

.mission .container .right {
  flex: 1;
}
.mission .container .right h2 {
  font-size: 52px;
  line-height: 62px;
  color: var(--main-dark3);
  font-weight: 700;
  letter-spacing: -1px;
  margin-bottom: 72px;
}
.mission .container .right .mission-boxes {
  display: flex;
  flex-direction: column;
  gap: 48px;
}
.mission .container .right .mission-boxes .mission-box {
  display: flex;
  align-items: center;
  gap: 24px;
}
.mission .container .right .mission-boxes .mission-box .icon {
  width: 72px;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 16px;
  background-color: #f9f9f9;
}
.mission .container .right .mission-boxes .mission-box .icon svg {
  width: 40px;
  height: 40px;
  color: var(--main-dark4);
}
.mission .container .right .mission-boxes .mission-box h6 {
  font-size: 20px;
  color: var(--main-dark3);
  font-weight: 400;
  margin-bottom: 8px;
  line-height: 28px;
}
.mission .container .right .mission-boxes .mission-box h6 strong {
  font-weight: 700;
}
.expertise {
  background-color: var(--black);
}

.expertise .container h1 {
  text-align: center;
  width: 100%;
  text-transform: uppercase;
  color: var(--white);
  margin: 0 0 3rem;
  font-size: 48px;
  font-weight: 700;
}
.expertise .container .expertise-boxes {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 32px;
}
.expertise .container .expertise-boxes .box {
  width: calc(50% - 16px);
  background-color: var(--main-dark4);
  padding: 42px 58px;
  border-radius: 16px;
  display: flex;
  gap: 42px;
  background-color: var(--white);
  min-height: 400px;
}
.expertise .container .expertise-boxes .box .images img {
  transition: transform 0.3s ease-in-out;
  height: 50px;
}
.expertise .container .expertise-boxes .box img {
  transition: all 0.3s ease-in-out;
}
.expertise .container .expertise-boxes .box:hover img {
  transform: scale(1.05);
}
.expertise .container .expertise-boxes .box h3 {
  font-size: 37px;
  color: var(--main-dark3);
  font-weight: 900;
  text-transform: uppercase;
  margin-bottom: 12px;
}
.expertise .container .expertise-boxes .box h6 {
  font-size: 32px;
  color: var(--main-dark3);
  font-weight: 500;
  text-transform: uppercase;
  margin-top: 8px;
}
.expertise .container .expertise-boxes .box .left {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.expertise .container .expertise-boxes .box .left p {
  font-size: 20px;
  font-weight: 300;
  line-height: 34px;
  color: var(--main-dark4);
}
.expertise .container .expertise-boxes .box .left p b {
  font-weight: 700;
  color: var(--black);
}
.expertise .container .expertise-boxes .box.dark {
  background-color: var(--main-dark1);
}
.expertise .container .expertise-boxes .box.dark h3 {
  color: #fff;
}
.expertise .container .expertise-boxes .box.dark h6 {
  color: #fff;
}
.expertise .container .expertise-boxes .box.dark .left p {
  color: #fff;
}
.expertise .container .expertise-boxes .box.dark .left p b {
  color: #fff;
}
.partners {
  background-color: var(--main-dark3);
}
.partners h3,
.comments h3 {
  color: #fff;
  font-size: 32px;
  font-weight: 900;
  text-transform: uppercase;
  margin-bottom: 10px;
}
.partners p,
.comments p {
  color: #fff;
  font-size: 24px;
  font-weight: 400;
  margin-bottom: 32px;
  text-transform: uppercase;
}
.partners .images {
  display: flex;
  justify-content: space-between;
  gap: 24px;
}
.partners .images img {
  border-radius: 6px;
  height: 48px;
  filter: brightness(99999);
}
.comments h3,
.comments p {
  color: var(--black);
}
.comment-boxes {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(0, calc(100% / 3)));
}
.comment-boxes .box {
  padding: 24px;
  display: flex;
  flex-direction: column;
  transition: all 0.3s ease-in-out;
  border-radius: 16px;
  min-height: 450px;
}
.comment-boxes .box:hover {
  transform: translateY(-10px);
  background-color: #f5f5f5;
}
.comment-boxes .box .user {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 52px;
}
.comment-boxes .box .user .icon {
  width: 65px;
  height: 65px;
  border-radius: 50%;
  overflow: hidden;
}
.comment-boxes .box .user .info {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.comment-boxes .box .user .info h4 {
  font-size: 24px;
  font-family: "Poppins", sans-serif;
  color: var(--main-dark3);
  font-weight: 700;
  text-transform: uppercase;
}
.comment-boxes .box .user .info span {
  font-size: 16px;
  color: var(--main-dark3);
  font-weight: 300;
}
.comment-boxes .box p {
  text-transform: capitalize;
  font-size: 19px;
  color: var(--main-dark4);
  line-height: 32px;
}
.comment-boxes .box .user.small {
  margin-bottom: 0;
  margin-top: auto;
}
.comment-boxes .box .user.small .icon {
  width: 40px;
  height: 40px;
}
.comment-boxes .box .user.small .info h4 {
  font-size: 16px;
}
.comment-boxes .box .user.small .info span {
  font-size: 12px;
}
.contact {
  background-color: #fff;
  padding: 72px 0;
  overflow: hidden;
}
.contact .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
}
.contact .container img {
  width: 300px;
  height: 300px;
  position: absolute;
  right: 4rem;
}
.contact h3 {
  font-size: 32px;
  line-height: 41px;
  color: var(--main-dark3);
  font-weight: 900;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.contact p {
  font-size: 16px;
  color: var(--main-dark3);
  font-weight: 300;
  margin-bottom: 32px;
  line-height: 32px;
  font-family: "Poppins", sans-serif;
}
.contact .left {
  width: 75%;
}
.contact a {
  background-color: var(--main-color);
  color: #fff;
  padding: 12px 32px;
  font-weight: 700;
  font-size: 20px;
  text-decoration: none;
  transition: all 0.3s ease-in-out;
}
.contact a:hover {
  background-color: var(--main-dark1);
  color: var(--main-color);
}
.sandbox {
  position: relative;
  padding-top: 72px;
}

.sandbox .top {
  background-color: #fff;
  position: relative;
}
.sandbox .top h2 {
  text-align: center;
  font-size: 24px;
  font-weight: 700;
  color: var(--main-dark3);
  margin-bottom: 32px;
  position: relative;
  z-index: 1;
}
.sandbox .top h2 span {
  display: block;
  font-weight: 900;
  font-size: 48px;
  margin-top: 6px;
}
.sandbox .bottom {
  height: 500px;
  position: relative;
  margin-top: -72px;
}
.sandbox .bottom svg {
  width: 100%;
  position: absolute;
  left: 0;
  top: 0;
}
.sandbox .bottom {
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: center;
  text-align: center;
}
.sandbox .bottom h3 {
  font-size: 52px;
  color: #fff;
  font-weight: 900;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.journal {
  background-color: var(--main-dark3);
}
.journal .title {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 12px;
  margin-bottom: 32px;
}
.journal h3 {
  color: #fff;
  font-size: 52px;
  font-weight: 700;
  text-transform: uppercase;
  font-family: "Poppins", sans-serif;
  margin-bottom: 10px;
}
.journal .title a {
  color: var(--main-color);
  font-size: 16px;
  font-weight: 600;
  display: flex;
  align-items: center;
  transition: all 0.3s ease-in-out;
  gap: 6px;
}
.journal .title a:hover {
  letter-spacing: 1px;
  transform: scale(1.05);
}
.journal-boxes {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(0, calc(100% / 2 - 16px)));
  gap: 16px;
}
.journal-boxes .left {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(0, calc(100% / 2 - 16px)));
  gap: 16px;
}
.journal-boxes .box {
  background-color: var(--main-dark1);
  border-radius: 1rem;
  transition: 0.5s;
  overflow: hidden;
  box-shadow: 0 10px 10px 10px rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease-in-out;
}
.journal-boxes .box:hover {
  transform: translateY(-10px);
}
.journal-boxes .box .content {
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.journal-boxes .box .content h2 {
  font-size: 16px;
  color: #fff;
  font-weight: 600;
  text-transform: uppercase;
  font-family: "Poppins", sans-serif;
  line-height: 24px;
}
.journal-boxes .right .box {
  height: 100%;
}
.journal-boxes .box p {
  font-size: 14px;
  color: #fff;
  font-weight: 400;
  line-height: 24px;
}
.footer {
  background-color: var(--main-dark3);
}
.footer .container {
  display: flex;
  justify-content: space-between;
}
.footer .container h4 {
  color: #fff;
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 16px;
}
.footer .container img {
  height: 68px;
}
.footer .container ul {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.footer .container ul li a {
  color: #fff;
  font-weight: 300;
  transition: all 0.3s ease-in-out;
}
.footer .container ul li a:hover {
  color: var(--main-color);
}
.footer .container nav {
  display: flex;
  align-items: center;
  gap: 24px;
}
.footer .container nav a {
  color: #fff;
  font-weight: 300;
  transition: all 0.3s ease-in-out;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: var(--main-dark4);
  transition: all 0.3s ease-in-out;
}
.footer .container nav a:hover {
  background-color: var(--main-color);
  color: #fff;
}

.header.white .container nav ul li a {
  color: var(--black);
}
.header.white .container .right button svg {
  stroke: var(--black);
}
.page-hero {
  width: 100%;
  min-height: 100vh;
  align-items: center;
  display: flex;
}
.page-hero h3 {
  font-size: 56px;
  color: var(--main-dark3);
  font-weight: 700;
  margin-bottom: 16px;
  max-width: 800px;
  letter-spacing: -1px;
  font-family: "Poppins", sans-serif;
}
.page-hero p {
  font-size: 35px;
  color: var(--main-dark3);
  font-weight: 300;
  margin-bottom: 32px;
  font-family: "Poppins", sans-serif;
  max-width: 800px;
  line-height: 1.4;
}
.page-hero .icon {
  position: absolute;
  width: 1500px;
  bottom: -200px;
  right: -550px;
}

.header.white .container .right .social-box .social.active a {
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--main-dark4);
  padding: 7px;
  border-radius: 50%;
}
.header.white .container .right .social-box .social::before {
  background-color: var(--main-dark4);
}
.header.white .container nav ul li ul {
  background-color: #f9f9f9;
  border: 1px solid #eee;
}
.page-hero button {
  position: absolute;
  bottom: 32px;
  display: flex;
  flex-direction: column;
  align-items: center;
  color: var(--main-dark3);
  background-color: transparent;
  font-size: 18px;
  font-weight: 600;
  font-family: "Poppins", sans-serif;
}
.service-description {
  background-color: var(--main-dark3);
}
.service-description .title {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 12px;
  margin-bottom: 52px;
}
.service-description .title h2 {
  color: #fff;
  font-size: 44px;
  font-weight: 700;
  text-transform: uppercase;
  font-family: "Poppins", sans-serif;
  margin-bottom: 10px;
}
.service-description .title a {
  color: var(--main-color);
  font-size: 16px;
  font-weight: 600;
  display: flex;
  align-items: center;
  transition: all 0.3s ease-in-out;
  gap: 6px;
}

.service-boxes {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(0, 50%));
}
.service-boxes .box {
  background-color: #fff;
  padding: 24px;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  transition: all 0.3s ease-in-out;
}
.service-boxes .box:hover {
  transform: translateY(-10px) scale(1.02);
}
.service-boxes .box img {
  position: absolute;
  height: 190px;
}
.service-boxes .box h4 {
  font-size: 24px;
  color: var(--main-dark3);
  font-weight: 600;
  text-transform: uppercase;
  margin-bottom: 6px;
}
.service-boxes .box h3 {
  font-size: 42px;
  line-height: 1.4;
  color: var(--main-dark3);
  font-weight: 900;
  margin-bottom: 16px;
  text-transform: uppercase;
}
.service-boxes .box img {
  right: 24px;
}
.service-boxes .box .box-bottom {
  margin-top: 82px;
}
.service-boxes .box .box-bottom h5 {
  font-size: 16px;
  color: var(--main-dark3);
  font-weight: 300;
  margin-bottom: 8px;
}
.service-boxes .box .box-bottom .box-bottom-boxes {
  display: flex;
  gap: 24px;
}
.service-boxes .box .box-bottom .box-bottom-boxes .box-bottom-item {
  display: flex;
  flex-direction: column;
  gap: 4px;
  border-left: 2px solid var(--main-dark4);
  padding-left: 12px;
}
.service-boxes .box .box-bottom .box-bottom-boxes .box-bottom-item h6 {
  font-size: 16px;
  color: var(--main-dark3);
  font-weight: 700;
}
.service-boxes .box .box-bottom .box-bottom-boxes .box-bottom-item p {
  font-weight: 300;
}
.service-boxes .box:nth-child(2) {
  background-color: #fe7024;
}

.service-boxes .box:nth-child(2) h4 {
  color: #fff;
}
.service-boxes .box:nth-child(2) h3 {
  color: #fff;
}
.service-boxes .box .box-bottom .social-icons {
  display: flex;
}
.service-boxes .box .box-bottom .social-icons li a {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--main-dark4);
  padding: 7px;
  border-radius: 50%;
  margin-right: 8px;
  color: #fff;
  transition: all 0.3s ease-in-out;
}
.service-boxes .box .box-bottom .social-icons li a:hover {
  background-color: var(--main-color);
  color: #fff;
  transform: scale(1.05);
}

.service-boxes .box .box-bottom .badges {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  max-width: 80%;
}
.service-boxes .box .box-bottom .badges a {
  background-color: var(--main-dark4);
  color: #fff;
  padding: 12px 32px;
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
  border-radius: 30px;
  transition: all 0.3s ease-in-out;
  font-family: "Poppins", sans-serif;
}
.service-boxes .box .box-bottom .badges a:hover {
  background-color: var(--black);
}
.service-boxes .box:nth-child(4) {
  background: #191c22;
  justify-content: center;
}
.service-boxes .box:nth-child(4) h4 {
  color: #fff;
}
.service-boxes .box:nth-child(4) h3 {
  color: #fff;
}
.service-description-detail {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 52px;
}
.service-description-detail .left {
  width: 50%;
}
.service-description-detail .left h6 {
  font-size: 24px;
  color: #fff;
  font-weight: 600;
  text-transform: uppercase;
  margin-bottom: 8px;
}
.service-description-detail .left h3 {
  font-size: 52px;
  color: #fff;
  font-weight: 700;
  margin-bottom: 16px;
}
.service-description-detail .left p {
  font-size: 20px;
  color: #fff;
  font-weight: 300;
  line-height: 32px;
}
.service-description-detail .right {
  width: 50%;
  display: flex;
  justify-content: center;
}
.infos {
  background-color: var(--main-dark1);
}
.infos .info-list {
  display: flex;
  flex-direction: column;
}
.infos .info-box {
  display: flex;
  flex-direction: column;
}
.infos .info-box .info-box-content {
  display: flex;
  align-items: center;
  gap: 24px;
}
.infos .info-box .info-box-content .left {
  width: 50%;
}
.infos .info-box .info-box-content .left h6 {
  font-size: 24px;
  color: #ccc;
  font-weight: 600;
  text-transform: uppercase;
  margin-bottom: 8px;
}
.infos .info-box .info-box-content .left h3 {
  font-size: 42px;
  color: #fff;
  line-height: 1.4;
  font-weight: 700;
  margin-bottom: 16px;
  font-family: "Poppins", sans-serif;
  text-transform: uppercase;
}
.infos .info-box .info-box-content .left p {
  font-size: 20px;
  color: #fff;
  font-weight: 300;
  line-height: 32px;
}
.infos .info-box .info-box-content .left ul {
  flex-direction: column;
  margin-bottom: 32px;
  gap: 12px;
}
.infos .info-box .info-box-content .left ul li {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 8px;
  color: #fff;
  font-size: 16px;
  font-weight: 300;
}
.infos .info-box .info-box-content .left ul li svg {
  width: 8px;
  height: 8px;
}
.infos .info-box .info-box-content .right {
  width: 50%;
}

.infos .info-box ul {
  display: flex;
  justify-content: space-between;
  margin-top: 52px;
}
.infos .info-box ul li h4 {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.infos .info-box ul li.success h4 {
  color: var(--main-color);
}
.infos .info-box ul li p {
  font-size: 14px;
  color: #fff;
  font-weight: 300;
  line-height: 32px;
  font-family: "Poppins", sans-serif;
}
.infos .info-box ul li.info h4 {
  color: #177de5;
}
.infos .info-box ul li.orange h4 {
  color: #fe7024;
}
.questions .top {
  text-align: center;
  background-color: var(--main-color);
  padding: 24px 0;
}
.questions .top h3 {
  font-size: 32px;
  color: var(--black);
  font-weight: 700;
  text-transform: uppercase;
  font-family: "Poppins", sans-serif;
  z-index: 1;
  margin-bottom: 12px;
  line-height: 1.4;
  position: relative;
}
.questions .top h3 span {
  display: block;
  font-size: 17px;
  margin-bottom: 6px;
}
.questions .top a {
  color: #fff;
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  font-family: "Poppins", sans-serif;
  transition: all 0.3s ease-in-out;
  z-index: 1;
  position: relative;
}
.questions .top a:hover {
  transform: scale(1.05);
}
.questions .top {
  position: relative;
}
.questions .top svg {
  position: absolute;
  width: 100%;
  left: 0;
  top: 0;
  z-index: 0;
}
.questions .bottom {
  margin-top: 40px;
  padding: 72px 0;
}

.questions .bottom h3 {
  font-size: 32px;
  line-height: 1.3;
  color: var(--main-dark3);
  font-weight: 700;
  font-family: "Poppins", sans-serif;
  margin-bottom: 16px;
  text-align: center;
}
.question-list {
  display: flex;
  flex-direction: column;
}
.question-list .question-box {
  padding: 24px 0;
  position: relative;
  border-bottom: 1px solid #eee;
}
.question-list .question-box button {
  width: 100%;
  color: var(--main-dark3);
  font-size: 20px;
  padding: 0;
  font-weight: 600;
  font-family: "Poppins", sans-serif;
  cursor: pointer;
  display: flex;
  background-color: transparent;
  justify-content: space-between;
  transition: all 0.3s ease-in-out;
}
.question-list {
  max-width: 800px;
  margin: 0 auto;
}
.question-list .question-box button span {
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 4px;
  border: 1px solid #eee;
}
.question-list .question-box button .minus {
  display: none;
}
.question-list .question-box .content {
  display: none;
}
.question-list .question-box .content p {
  font-size: 16px;
  color: var(--main-dark3);
  font-weight: 400;
  line-height: 1.6;
  margin-top: 16px;
}

.question-list .question-box.active button .plus {
  display: none;
}
.question-list .question-box.active button .minus {
  display: flex;
}
.question-list .question-box.active .content {
  display: block;
  margin-top: 16px;
}
.page-hero.career-hero .icon {
  right: 0;
  width: 1000px;
}
.benifist-boxes {
  margin-bottom: 52px;
}
.benifist-boxes .box {
  min-height: 385px;
  justify-content: space-between;
}
.benifist-boxes .box p {
  font-family: "Poppins", sans-serif;
}

.benifist-boxes .box:nth-child(1) {
  background-color: #191c22;
  justify-content: center;
}
.benifist-boxes .box:nth-child(1) h3 {
  color: #fff;
}
.benifist-boxes .box:nth-child(1) p {
  color: #fff;
}
.benifist-boxes .box:nth-child(2) {
  background-color: #fff;
  justify-content: center;
}
.benifist-boxes .box:nth-child(2) h3 {
  color: var(--main-dark3);
}
.benifist-boxes .box:nth-child(2) p {
  color: var(--main-dark3);
}
.benifist-boxes .box:nth-child(3) {
  background-color: #fff;
  justify-content: center;
}
.benifist-boxes .box:nth-child(3) h3 {
  color: var(--main-dark3);
}
.benifist-boxes .box:nth-child(3) p {
  color: #fff;
}

.benifist-boxes .box:nth-child(4) p {
  color: #fff;
}
.benifist-boxes .box:nth-child(5) {
  background: #191c22;
}
.benifist-boxes .box:nth-child(5) h3 {
  color: #fff;
}
.benifist-boxes .box:nth-child(5) p {
  color: #fff;
}
.benifist-boxes .box:nth-child(5) .box-bottom {
  margin-top: 0;
}
.benifist-boxes .box:nth-child(5) .box-bottom p {
  margin-bottom: 12px;
  line-height: 1.4;
}
.benifist-boxes .box:nth-child(6) {
  background: #000;
}
.benifist-boxes .box:nth-child(6) h3 {
  color: #fff;
}
.benifist-boxes .box:nth-child(6) p {
  color: #fff;
  line-height: 1.4;
}
.two-title p {
  color: #fff;
  font-size: 16px;
}

.feature-boxes {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(0, calc(100% / 2 - 16px)));
  gap: 16px;
}
.feature-boxes .box {
  background-color: #fff;
  border-radius: 16px;
  padding: 44px 24px;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 420px;
  transition: all 0.3s ease-in-out;
}
.feature-boxes .box:hover {
  transform: translateY(-5px) scale(1.02);
}
.feature-boxes .box:hover a svg {
  fill: var(--main-color);
  transform: scale(1.4);
}
.feature-boxes .box h3 {
  font-size: 42px;
  color: var(--main-dark3);
  font-weight: 300;
  text-transform: uppercase;
  margin-bottom: 16px;
  line-height: 1.4;
  font-family: "Poppins", sans-serif;
}
.feature-boxes .box h3 span {
  font-weight: 700;
}
.feature-boxes .box .bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.feature-boxes .box .bottom h6 {
  font-size: 20px;
  color: var(--main-dark3);
  font-weight: 300;
}
.feature-boxes .box .bottom a {
  color: var(--main-dark1);
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease-in-out;
}
.feature-boxes .box .bottom a svg {
  width: 20px;
  height: 20px;
  stroke: var(--main-color);
  transition: all 0.3s ease-in-out;
}
.main-blog {
  display: flex;
  gap: 24px;
}
.main-blog .left {
  width: 50%;
}

.main-blog .left .badges {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  max-width: 80%;
  margin-bottom: 24px;
}
.main-blog .left .badges a {
  background-color: #fff;
  color: var(--main-dark3);
  padding: 12px 32px;
  font-size: 12px;
  font-weight: 400;
  border-radius: 30px;
  font-family: "Poppins", sans-serif;
}
.main-blog .left h3 {
  font-size: 32px;
  color: #fff;
  font-weight: 700;
  margin-bottom: 16px;
  line-height: 1.4;
}
.main-blog .left h3 span {
  font-weight: 300;
}

.main-blog .left p {
  font-size: 20px;
  color: #fff;
  font-weight: 300;
  line-height: 32px;
  margin-bottom: 32px;
}
.main-blog .left .user,
.blog-box .user {
  display: flex;
  gap: 12px;
  align-items: center;
}
.main-blog .left .user .icon,
.blog-box .user .icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  overflow: hidden;
}
.main-blog .left .user .content h6,
.blog-box .user .content h6 {
  font-size: 20px;
  color: #fff;
  font-weight: 600;
  text-transform: uppercase;
  margin-bottom: 4px;
}
.main-blog .left .user .content p,
.blog-box .user .content p {
  font-size: 12px;
  color: #fff;
  font-weight: 300;
  line-height: 24px;
  margin-bottom: 0;
}
.main-blog .left .user span,
.blog-box .user span {
  font-size: 14px;
  color: #fff;
  font-weight: 300;
  line-height: 24px;
  border: 1px solid #eee;
  padding: 4px 12px;
  border-radius: 20px;
}
.main-blog .right {
  width: 50%;
}
.blog-boxes {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(0, calc(100% / 3 - 16px)));
  gap: 16px;
  margin-top: 52px;
}
.blog-boxes .blog-box {
  border-radius: 16px;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 350px;
}
.blog-boxes .blog-box .image {
  position: relative;
}
.blog-boxes .blog-box .image .badges {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  max-width: 80%;
  margin-bottom: 16px;
  position: absolute;
  left: 12px;
  top: 12px;
}
.blog-boxes .blog-box .image .badges a {
  background-color: #ffffff46;
  color: #fff;
  padding: 8px 16px;
  font-size: 12px;
  font-weight: 400;
  border-radius: 30px;
  font-family: "Poppins", sans-serif;
  transition: all 0.3s ease-in-out;
}
.blog-boxes .blog-box h3 {
  font-size: 24px;
  color: #fff;
  font-weight: 600;
  margin-bottom: 8px;
  line-height: 1.4;
  margin-top: 8px;
}
.blog-boxes .blog-box p {
  font-size: 16px;
  color: #fff;
  font-weight: 300;
  line-height: 24px;
  margin-bottom: 16px;
}
.top-blogs h2 {
  font-size: 32px;
  color: var(--main-dark3);
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.blog-box.dark h3 {
  color: var(--main-dark1);
}
.blog-box.dark p {
  color: var(--main-dark1);
}
.blog-boxes .blog-box .user {
  justify-content: space-between;
  align-items: center;
  margin-top: 12px;
}
.blog-boxes .blog-box .user > div {
  display: flex;
  align-items: center;
  gap: 12px;
}
.blog-boxes .blog-box.dark .user h6 {
  color: var(--main-dark1);
}
.blog-boxes .blog-box.dark .user p {
  color: var(--main-dark1);
}
.blog-boxes .blog-box.dark .user span {
  color: var(--main-dark1);
}
.infos:nth-child(odd) {
  background-color: var(--black);
}

.hero .box .hero-content .hero-bottom ul {
  display: flex;
  align-items: center;
  gap: 16px;
}
#swiper-references {
  width: 100%;
}
.menu-after {
  display: none;
}
.page-hero.ai {
  height: auto;
}
.page-hero.ai .container {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
}

.page-hero.ai .container img {
  height: 500px;
}
.detail-boxes {
  padding: 48px 0;
  background-color: var(--main-dark3);
}
.detail-boxes .container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(0, calc(100% / 2)));
}
.detail-boxes .container .box {
  padding: 120px 24px 24px 24px;
  transition: all 0.3s ease-in-out;
}
.detail-boxes .container .box:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}
.detail-boxes .container .box h3 {
  font-size: 36px;
  font-weight: 700;
  text-transform: uppercase;
  line-height: 48px;
}
.detail-boxes .container .box p {
  font-size: 19px;
  font-weight: 300;
  line-height: 28px;
}
.detail-boxes .container .box p.small {
  font-size: 16px;
  font-weight: 300;
  line-height: 24px;
}
.detail-boxes .container .box p b {
  font-weight: 600;
}
.detail-boxes .container .box.white {
  background-color: #fff;
}
.detail-boxes .container .box.black {
  background-color: #000;
}
.detail-boxes .container .box.black h3 {
  color: #fff;
}
.detail-boxes .container .box.black p {
  color: #fff;
}
.call-back {
  background-color: var(--main-dark3);
  padding: 48px 0 0 0;
  border-bottom: 2px solid var(--main-dark4);
}
.call-back .container {
  display: flex;
  gap: 64px;
  justify-content: space-between;
}
.call-back .container img {
  border-radius: 36px 36px 0 0;
}
.call-back .container .left {
  max-width: 600px;
}
.call-back .container .left h3 {
  font-size: 32px;
  font-weight: 700;
  line-height: 42px;
  color: #fff;
  text-transform: uppercase;
  margin-bottom: 30px;
}
.call-back .container .left p {
  font-size: 16px;
  font-weight: 300;
  line-height: 32px;
  color: #fff;
  margin-bottom: 24px;
}
.call-back .container .left p b {
  font-weight: 600;
}
.call-back .container .left a {
  width: 250px;
  height: 60px;
  background-color: #31dd8c;
  display: flex;
  align-items: center;
  border-radius: 36px;
  position: relative;
  justify-content: center;
  color: #fff;
  font-weight: 700;
  transition: all 0.3s ease-in-out;
  margin-bottom: 32px;
}
.call-back .container .left a:hover {
  background-color: #fff;
  color: var(--main-dark3);
}
.call-back .container .left a .icon {
  min-width: 50px;
  max-width: 50px;
  height: 50px;
  background-color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  position: absolute;
  left: 8px;
}
.call-back .container .left a .icon svg g {
  stroke: #31dd8c;
}
.call-back .container .right {
  line-height: 0;
  display: flex;
}
.call-back .container .right img {
  margin-top: auto;
}
.ai-software {
  background-color: var(--main-dark3);
  padding: 48px 0;
}
.ai-software .link {
  display: flex;
  justify-content: flex-end;
  margin-bottom: 24px;
}
.ai-software .link a {
  color: #fff;
  font-size: 32px;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.3s ease-in-out;
}
.ai-software-box {
  padding: 48px 0;
}
.ai-software-box .container {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}
.ai-software-box .container img {
  margin-top: -230px;
  margin-bottom: 32px;
}
.ai-software-box .container h3 {
  font-size: 48px;
  color: var(--main-dark3);
  font-weight: 700;
  line-height: 54px;
  text-transform: uppercase;
  margin-bottom: 16px;
  text-align: center;
}
.ai-software-box .container p {
  font-size: 24px;
  color: var(--main-dark3);
  font-weight: 300;
  line-height: 32px;
  text-align: center;
  max-width: 800px;
}
.page-hero.ai.transition img {
  height: auto;
}
.page-hero.ai.lifecycle img {
  height: 600px;
}
.page-hero.ai.lifecycle .container {
  justify-content: space-between;
}
.page-hero.ai.hero-career {
  min-height: 65vh;
  max-height: 65vh;
}
.page-hero.ai.transition .container {
  justify-content: space-between;
}
.page-hero.ai.result .container {
  justify-content: space-between;
}
@media screen and (max-width: 1700px) {
  .service-boxes .box h3 {
    font-size: 36px;
    line-height: 44px;
  }
  .page-hero.ai .container img {
    height: 450px;
  }
  .page-hero.ai.lifecycle .container img {
    height: 600px;
  }
  .page-hero.ai.transition .container img {
    height: 700px;
  }
  .page-hero.ai .container h3 {
    font-size: 48px;
  }
  .page-hero.ai .container p {
    font-size: 24px;
  }
  .feature-boxes .box h3 {
    font-size: 36px;
    line-height: 44px;
  }
}

@media screen and (max-width: 1500px) {
  .call-back {
    padding: 48px 0;
  }
  .call-back .container img {
    border-radius: 36px;
  }
}

@media screen and (max-width: 1366px) {
  .service-boxes .box h3 {
    font-size: 26px;
    line-height: 32px;
  }
  .service-description .title h2 {
    font-size: 32px;
    line-height: 40px;
  }
  .ai-software-box .container h3 {
    font-size: 36px;
    line-height: 44px;
  }
  .ai-software-box .container p {
    font-size: 20px;
    line-height: 28px;
  }
  .ai-software-box .container img {
    height: 400px;
  }
  .ai-software .link a {
    font-size: 24px;
  }
  .questions .bottom h3 {
    font-size: 28px;
  }
  .infos .info-box .info-box-content .left p {
    font-size: 18px;
    line-height: 28px;
  }
  .infos .info-box .info-box-content .left h3 {
    font-size: 36px;
    line-height: 42px;
  }
  .call-back .container .left h3 {
    font-size: 28px;
    line-height: 36px;
  }
  .detail-boxes .container .box h3 {
    font-size: 28px;
    line-height: 32px;
  }
  .detail-boxes .container .box p {
    font-size: 20px;
    line-height: 28px;
  }
  .page-hero.ai .container img {
    height: 300px;
  }
  .journal h3 {
    font-size: 34px;
  }
  .expertise .container .expertise-boxes .box.dark {
    background-color: inherit;
  }
  .expertise .container .expertise-boxes .box:nth-child(odd) {
    background-color: inherit;
  }
  .expertise .container .expertise-boxes .box:nth-child(odd) h3 {
    color: #fff;
  }
  .expertise .container .expertise-boxes .box:nth-child(odd) h6 {
    color: #fff;
  }
  .expertise .container .expertise-boxes .box:nth-child(odd) p {
    color: #fff;
  }
  .expertise .container .expertise-boxes .box:nth-child(odd) p b {
    color: #fff;
  }
  .expertise .container .expertise-boxes .box:nth-child(even) {
    background-color: #fff;
  }
  .expertise .container .expertise-boxes .box:nth-child(even) h3 {
    color: var(--main-dark3);
  }
  .expertise .container .expertise-boxes .box:nth-child(even) h6 {
    color: var(--main-dark3);
  }
  .expertise .container .expertise-boxes .box:nth-child(even) p {
    color: var(--main-dark3) !important;
  }
  .expertise .container .expertise-boxes .box:nth-child(even) p b {
    color: var(--main-dark3) !important;
  }

  .expertise .container .expertise-boxes {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(0, calc(100%)));
  }
  .expertise .container .expertise-boxes .box .left {
    gap: 24px;
  }
  .expertise .container .expertise-boxes .box {
    width: 100%;
    flex-direction: column-reverse;
    align-items: center;
    justify-content: center;
    text-align: center;
    gap: 24px;
  }
  .expertise .container .expertise-boxes .box .right {
    width: 300px;
  }

  .container {
    padding: 0 16px;
  }
  .expertise .container h1 {
    font-size: 34px;
  }
  .expertise .container .expertise-boxes .box h3 {
    font-size: 28px;
  }
  .expertise .container .expertise-boxes .box h6 {
    font-size: 20px;
  }
  .hero .box h1 {
    font-size: 34px;
  }
  .hero .box img.hero-img {
    height: auto;
    bottom: 15%;
  }
  .mission .container .right h2 {
    font-size: 32px;
    line-height: 40px;
    margin-bottom: 24px;
  }
  .mission .container .right .mission-boxes {
    gap: 24px;
  }
  .mission .container .right .mission-boxes .mission-box h6 {
    font-size: 16px;
  }
  .mission .container .left {
    max-width: 400px;
  }
  .mission .container .right .mission-boxes .mission-box .icon {
    min-width: 50px;
    max-width: 50px;
    height: 50px;
  }
  .mission .container .right .mission-boxes .mission-box .icon svg {
    width: 24px;
    height: 24px;
  }
}
@media screen and (max-width: 1100px) {
  .service-boxes .box img {
    height: 140px;
  }
  .ai-software-box .container img {
    height: 300px;
    margin-top: -150px;
  }
  .ai-software-box .container h3 {
    font-size: 24px;
    line-height: 32px;
  }
  .ai-software-box .container p {
    font-size: 16px;
    line-height: 24px;
  }
  .questions .bottom {
    padding: 48px 0;
  }
  .questions .bottom h3 {
    font-size: 24px;
  }
  .infos .info-box .info-box-content .left h3 {
    font-size: 32px;
    line-height: 40px;
  }
  .infos .info-box .info-box-content {
    flex-direction: column-reverse;
  }
  .infos .info-box .info-box-content .left {
    width: 100%;
  }
  .call-back .container {
    gap: 24px;
  }
  .call-back .container {
    flex-direction: column-reverse;
  }
  .call-back .container .left {
    max-width: 100%;
  }
  .contact .container {
    flex-direction: column-reverse;
    gap: 32px;
    text-align: center;
  }
  .contact .left {
    width: 100%;
  }
  .contact .container img {
    position: relative;
    width: 200px;
    height: 200px;
    right: 0;
  }
  .page-hero.ai .container {
    flex-direction: column-reverse;
  }
  .page-hero.ai .container {
    min-height: fit-content;
  }
  .page-hero.ai .container .content {
    width: 100%;
    text-align: center;
    margin-top: 32px;
    flex: 1;
  }
  .page-hero.ai .container .content button {
    display: none;
  }
  .page-hero.ai .container .content h3 {
    max-width: 100%;
    font-size: 36px;
  }
  .page-hero.ai .container p {
    font-size: 18px;
    max-width: 100%;
    text-align: center;
  }
  .page-hero.ai.lifecycle .container img {
    height: 300px;
  }
  .page-hero.ai.transition .container img {
    height: 300px;
  }
}
@media screen and (max-width: 1024px) {
  .feature-boxes .box h3 {
    font-size: 24px;
    line-height: 30px;
  }
  .benifist-boxes .box img {
    position: relative;
    width: 150px;
    height: 150px;
    right: 0;
  }
  .benifist-boxes .box:last-child img {
    right: 24px;
  }
  .benifist-boxes .box:nth-child(3) {
    background-color: #191c22;
  }
  .benifist-boxes .box:nth-child(3) h3 {
    color: #fff;
  }
  .benifist-boxes .box:nth-child(4) {
    background-color: #fff;
  }
  .benifist-boxes .box:nth-child(4) h3 {
    color: var(--main-dark3);
  }

  .service-boxes {
    grid-template-columns: repeat(auto-fit, minmax(0, calc(100%)));
  }
  .question-list .question-box button {
    gap: 8px;
    text-align: left;
  }
  .question-list .question-box button span {
    min-width: 30px;
  }
  .question-list .question-box button {
    font-size: 16px;
  }
  .questions .bottom h3 {
    font-size: 20px;
  }
  .footer .container {
    justify-content: flex-start;
    flex-wrap: wrap;
    gap: 32px;
  }
  .comment-boxes .box .user .info h4 {
    font-size: 20px;
  }
  .comment-boxes .box p {
    font-size: 14px;
  }
  .partners h3,
  .comments h3 {
    font-size: 24px;
  }
  .partners p,
  .comments p {
    font-size: 16px;
  }
  .mission .container {
    flex-direction: column;
    align-items: center;
  }
  .container {
    padding: 0 16px;
  }
  .header .container {
    padding: 32px 16px;
  }
  .header .container .right p {
    display: none;
  }
  .hero .box {
    padding: 32px 16px;
  }
}
@media screen and (max-width: 768px) {
  .journal-boxes {
    grid-template-columns: repeat(auto-fit, minmax(0, calc(100% - 8px)));
  }
  .journal-boxes .left {
    grid-template-columns: repeat(auto-fit, minmax(0, calc(50% - 8px)));
  }
  .infos .info-box ul li h4 {
    font-size: 24px;
  }
  .infos .info-box ul li p {
    font-size: 13px;
  }
}

@media screen and (max-width: 640px) {
  .call-back .container .left a {
    margin-bottom: 0;
  }
  .benifist-boxes .box {
    min-height: 232px;
  }
  .benifist-boxes .box img {
    height: 100px;
    width: 100px;
  }
  .feature-boxes .box .bottom h6 {
    font-size: 14px;
  }
  .feature-boxes .box {
    min-height: 232px;
  }
  .infos .info-box .info-box-content .right {
    width: 100%;
  }
  .page-hero.ai.lifecycle .container img {
    height: 300px;
    width: auto;
  }

  .page-hero.ai.transition .container img {
    width: 65%;
  }
  .ai-software-box .container img {
    height: 250px;
    margin-top: -150px;
  }

  .infos .info-box ul {
    margin-top: 32px;
  }
  .infos .info-box ul {
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 16px;
  }
  .infos .info-box ul li {
    text-align: left;
    width: 100%;
  }
  .infos .info-box ul li p {
    text-align: left;
  }
  .infos .info-box ul li h4 {
    justify-content: left;
  }
  .infos .info-box .info-box-content .left h3 {
    font-size: 24px;
    line-height: 30px;
  }
  .infos .info-box .info-box-content .left p {
    font-size: 16px;
    line-height: 24px;
  }
  .call-back .container .left h3 {
    font-size: 24px;
    line-height: 32px;
  }

  .detail-boxes .container .box p {
    font-size: 14px;
    line-height: 20px;
  }
  .detail-boxes .container {
    grid-template-columns: auto;
  }
  .detail-boxes .container .box h3 {
    font-size: 24px;
    line-height: 32px;
  }
  .detail-boxes .container .box.white {
    background: none;
  }
  .detail-boxes .container .box.black {
    background: none;
  }
  .detail-boxes .container .box:nth-child(odd) {
    background-color: #000;
  }
  .detail-boxes .container .box:nth-child(odd) h3 {
    color: #fff;
  }
  .detail-boxes .container .box:nth-child(odd) p {
    color: #fff;
  }
  .detail-boxes .container .box:nth-child(even) {
    background-color: #fff;
  }
  .detail-boxes .container .box:nth-child(even) h3 {
    color: var(--main-dark3);
  }
  .detail-boxes .container .box:nth-child(even) p {
    color: var(--main-dark3);
  }

  .detail-boxes .container .box p.small {
    font-size: 13px;
    line-height: 19px;
  }
  .page-hero.ai .container .content h3 {
    font-size: 32px;
    line-height: 42px;
  }
  .page-hero.ai .container p {
    font-size: 16px;
    line-height: 24px;
  }
  .page-hero.ai .container img {
    height: auto;
    width: 100%;
  }
  .header.white .container nav ul li ul {
    background-color: var(--main-dark4) !important;
    border-color: transparent;
  }
  .contact h3 {
    font-size: 24px;
    line-height: 28px;
  }
  .journal-boxes .left {
    grid-template-columns: repeat(auto-fit, minmax(0, calc(100% - 8px)));
  }

  .journal h3 {
    font-size: 24px;
  }

  .expertise .container h1 {
    font-size: 28px;
    line-height: 34px;
  }
  .expertise .container .expertise-boxes .box h3 {
    font-size: 24px;
  }
  .expertise .container .expertise-boxes .box .left p {
    font-size: 16px;
    line-height: 26px;
  }
  .expertise .container .expertise-boxes .box .right {
    width: 200px;
  }
  .expertise .container .expertise-boxes .box {
    padding: 24px;
  }
  .mission .container .right h2 {
    font-size: 24px;
    line-height: 32px;
  }
  .hero br {
    display: none;
  }
  .hero .box h1 {
    text-align: center;
    font-size: 24px;
  }
  .hero .box img.hero-img {
    position: relative;
    bottom: 0;
    right: 0;
  }
  .hero .box .hero-content {
    flex-direction: column-reverse;
    justify-content: center;
    padding: 0;
    height: calc(100vh - 64px);
  }
  .header nav {
    position: fixed;
    top: 1;
    width: 300px;
    right: -300px;
    top: 10%;
    height: 80vh;
    z-index: 1000;
    background-color: var(--main-dark1);
    border-radius: 24px;
    padding: 0;
    overflow: hidden;
    box-shadow: inset 0 0 10px rgba(0, 0, 0, 0.5);
    transition: all 0.3s ease-in-out;
  }
  .header nav.active {
    right: 5%;
  }
  .header .container nav ul {
    flex-direction: column;
    gap: 0;
    width: 100%;
  }
  .header nav ul li {
    width: 100%;
  }
  .menu-after {
    display: flex;
    position: fixed;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background-color: rgb(0 0 0 / 76%);
    z-index: 999;
    display: flex;
    align-items: center;
    color: #fff;
    justify-content: flex-start;
    font-size: 50px;
    padding-left: 8px;
    transition: all 0.3s ease-in-out;
  }
  .menu-after.active {
    left: 0;
  }
  .header .container nav ul li:first-child a {
    font-weight: 400;
  }
  .header .container nav ul li > a {
    padding: 32px 24px;
    font-size: 24px;
    font-weight: 400;
    text-align: left;
    width: 100%;
    color: #fff !important;
    border-bottom: 1px solid #0f1216;
  }
  .header .container nav ul li > a:hover {
    background-color: var(--main-dark4);
    transform: translateY(0);
  }
  .header .container nav ul li ul {
    position: relative;
    top: 0;
    margin-top: 0;
    width: 100%;
    gap: 0;
  }
  .header .container nav ul li ul li a {
    padding: 22px 24px;
    border-bottom-width: 0;
  }
  .header .container .right .social-box .social {
    display: none !important;
  }
  .hero {
    background-position: center center;
  }
  .hero .box h1 span {
    background-color: transparent;
    color: var(--main-color);
  }
  .hero .box .hero-content .hero-bottom {
    padding: 16px;
  }
  .hero .box .hero-content .hero-bottom img {
    display: block;
  }
  .hero .box .hero-content .hero-bottom {
    bottom: 2rem;
  }
  .comment-boxes {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(0, calc(100% - 16px)));
    gap: 32px;
  }
  .comment-boxes .box .user {
    margin-bottom: 12px;
  }
  .comment-boxes .box {
    min-height: 0;
    background-color: #f5f5f5;
  }
  .feature-boxes .box {
    padding: 16px;
    min-height: 172px;
  }
  .feature-boxes .box h3 {
    font-size: 16px;
    line-height: 24px;
  }
  .benifist-boxes .box h3 {
    font-size: 20px;
  }
}
