body {
  font-family: "Roboto", sans-serif;
  overflow-x: hidden;
}

.container {
  min-height: 100vh;
  background-color: #ffffff;
  position: relative;
  overflow-x: hidden;
  margin: 0 auto;
  max-width: 100%;
}

#navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem 5rem;
  background-color: transparent;
  z-index: 1000;
  position: fixed;
  top: 0;
  width: 100vw;
  left: 50%;
  transform: translateX(-50%);
  max-width: 80rem;
  box-sizing: border-box;
  transition-duration: .5s;
}

#navbar.scrolled{
  max-width: 100vw;
  background: #A3DAB8;
  background: linear-gradient(90deg,rgba(163, 218, 184, 1) 0%, rgba(97, 180, 122, 1) 50%, rgba(54, 79, 90, 1) 99%);
}

.nav-wrapper {
  display: flex;
  gap: 3rem;
  align-items: center;
}

.logo {
  height: 3.25rem;
  width: auto;
}

.menu {
  display: flex;
  gap: 3rem;
  height: 3.25rem;
  align-items: center;
}

.menu .login-btn {
  display: none;
}

.nav-item {
  padding-top: 0.75rem;
  padding-bottom: 0.75rem;
  color: #0a223c;
  font-weight: 500;
  font-size: 1rem;
  letter-spacing: 0.5px;
  cursor: pointer;
  text-decoration: none;
  border-bottom: 3px solid transparent;
  transition: 0.3s linear;
}

.nav-item:hover {
  border-bottom: 3px solid #0a223cd0;
}

.nav-item.active {
  border-bottom: 3px solid #0a223c;
}

.login-btn {
  border: 2px solid #75f695;
  padding: 0.75rem;
  border-radius: 50px;
  font-size: 1rem;
  letter-spacing: 0.5px;
  font-weight: 500;
  color: #0a223c;
  background-color: #75f695;
  width: 6.125rem;
  cursor: pointer;
  transition: 0.3s linear;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
}

.login-btn:hover {
  filter: opacity(0.9);
}

.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  z-index: 1001;
}

.menu-toggle .bar {
  width: 25px;
  height: 3px;
  background-color: #0a223c;
  border-radius: 5px;
  transition: all 0.3s ease-in-out;
}

.hero {
  background-size: cover;
  background-position: center center;
  background-color: #20465e;
  height: 40vh;
  padding: 17.5rem 5rem;
  color: white;
  position: relative;
  z-index: 1;
  display: flex;
  clip-path: polygon(
    0% 0%,
    0% 100%,
    0 100%,
    100% 20%,
    100% 100%,
    100% 100%,
    100% 0%
  );
  overflow-x: hidden;
}

.hero .hero-content {
  z-index: 2;
  color: #0a223c;
}

.hero .hero-content h1 {
  font-size: 4.5rem;
  font-weight: 300;
}

.hero .hero-content h1 strong {
  font-weight: 800;
}

.hero .hero-content p {
  font-size: 3rem;
  line-height: 110%;
  font-weight: 300;
}

.hero .hero-content span {
  line-height: 160%;
  font-size: 1.5rem;
  font-weight: 400;
}

.shape {
  background-color: #fff;
  min-height: 80vh;
  width: 100%;
  position: absolute;
  z-index: 2;
  top: 35vh;
  clip-path: polygon(-30% 100%, 100% 0, 100% 100%, 0 100%);
  overflow-x: hidden;
}

.info-container {
  display: flex;
  flex-direction: column;
  gap: 3.125rem;
  margin: -5rem 5rem 0;
  overflow-x: hidden;
  z-index: 5;
  position: relative;
}

.section {
  display: flex;
  align-items: center;
  justify-content: space-between;
  z-index: 5;
  gap: 2.5rem;
}

.section:nth-child(even) {
  flex-direction: row-reverse;
}

.section .text-content {
  flex: 1;
}

.section .image-content {
  display: flex;
  justify-content: center;
  align-items: center;
}

.section .image-content img {
  max-width: 100%;
  height: auto;
}

.section h1 {
  font-size: 3.5rem;
  color: #0f172a;
  margin-bottom: 1.25rem;
  font-weight: 300;
}

.section strong {
  font-weight: 800;
}

.section p {
  font-size: 1.25rem;
  line-height: 180%;
  font-weight: 400;
  color: #0f172a;
}

.beliefs-section {
  margin: 3.125rem 5rem 5rem;
}

.beliefs-section h2 {
  font-size: 3.375rem;
  color: #0a223c;
  margin-bottom: 3.125rem;
  font-weight: 800;
  line-height: 110%;
}

.beliefs-grid {
  display: flex;
  gap: 5rem;
  justify-content: center;
  min-height: 22rem;
}

.belief-card {
  flex: 1;
  background-color: #fff;
  border: 5px solid #23527c;
  border-radius: 10px;
  padding: 2.1875rem 2.8125rem;
  text-align: center;
  box-shadow: 0px 0px 6px 0px #00000012;
  box-shadow: 0px 10px 15px -3px #0000001a;
  transition: transform 0.3s ease;
  flex-grow: 1;
}

.belief-card img {
  height: 4rem;
  width: 4rem;
  margin-bottom: 1rem;
}

.belief-card h3 {
  font-size: 1.25rem;
  color: #23527c;
  line-height: 130%;
  font-weight: 700;
}

.belief-card p {
  font-size: 1rem;
  color: #0a223c;
  line-height: 180%;
  font-weight: 400;
}

.about-us-section {
  padding: 5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 5rem;
  background-color: #0a223c;
}

.about-us-section .text-container h2 {
  font-size: 3.375rem;
  color: #75f695;
  margin-bottom: 2rem;
  font-weight: 800;
}

.about-us-section .text-container p {
  font-size: 1.25rem;
  color: #ffffff;
  line-height: 180%;
  font-weight: 400;
}

.about-us-section img {
  max-width: 40%;
  height: auto;
}

.clients-section {
  padding: 5rem;
}

.clients-section h1 {
  font-size: 3.375rem;
  color: #0a223c;
  line-height: 110%;
  font-weight: 800;
  margin-bottom: 5rem;
}

.clients-section .logos {
  display: flex;
  flex-wrap: wrap;
  gap: 5rem;
  justify-content: center;
  align-items: center;
}

.clients-section .client-container, .clients-section .client-container a, .clients-section .client-container a img{
  width: 300px;
  height: 100px;
}

.clients-section .client-container img{
  object-fit: contain;
}

.feedback-section {
  display: flex;
  flex-direction: column;
  gap: 5rem;
  padding: 0 5rem 5rem;
}

.feedback-section h1 {
  font-size: 3.375rem;
  font-weight: 800;
  color: #0a223c;
  line-height: 110%;
}

.feedback-section .carousel-wrapper {
  display: flex;
  overflow-x: auto;
  gap: 1.5rem;
  padding-bottom: 1.5rem;
}

.feedback-section .feedback-card {
  border-radius: 20px;
  width: 24rem;
  border: 1px solid #e2e8f0;
  background-color: #fff;
  display: flex;
  flex-direction: column;
  gap: 2rem;
  box-shadow: 0px 0px 6px 0px #00000012;
  box-shadow: 0px 10px 15px -3px #0000001a;
  padding: 2rem 3rem 2rem 2rem;
}

.feedback-section .feedback-card .enterprise-logo {
  height: 32px;
}

.feedback-section .feedback-card p {
  font-size: 1.5rem;
  line-height: 160%;
  font-weight: 400;
  color: #000;
}

.feedback-section .feedback-card .author-info {
  display: flex;
  gap: 1rem;
  align-items: center;
}

.feedback-section .feedback-card .author-info img {
  border-radius: 100px;
  height: 4rem;
  width: 4rem;
}

.feedback-section .feedback-card .author-info .author-name {
  font-size: 18px;
  line-height: 160%;
  font-weight: 400;
  color: #000;
}

.feedback-section .feedback-card .author-info .author-title {
  font-size: 16px;
  line-height: 140%;
  font-weight: 400;
  color: #475569;
}

.cta-section {
  display: flex;
  justify-content: space-between;
  margin-top: 8.3125rem;
  padding: 0 5rem;
  gap: 5rem;
  align-items: center;
}

.cta-section img {
  max-width: 40%;
  height: auto;
}

.cta-section .info-container {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  margin: 0;
}

.cta-section .info-container h1 {
  font-weight: 800;
  font-size: 3.5rem;
  line-height: 110%;
}

.cta-section .info-container p {
  font-weight: 400;
  font-size: 1.125rem;
  line-height: 160%;
}

.cta-section .info-container .cta {
  text-decoration: none;
  padding: 1.25rem 1.5rem;
  background-color: #75f695;
  border: 2px solid #75f695;
  font-size: 1.5rem;
  font-weight: 700;
  color: #0a223c;
  border-radius: 50px;
  width: 203px;
  text-align: center;
}

.contact-wrapper {
  position: relative;
  height: auto;
  min-height: 52.625rem;
  width: 100%;
  display: flex;
  align-items: center;
}

.clipped-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  clip-path: polygon(0 48%, 100% 0%, 100% 100%, 0% 100%);
  background: linear-gradient(270deg, #0a223c 0%, #23527c 100%);
  z-index: 1;
}

.contact-wrapper .contact-content {
  position: absolute;
  top: 50%;
  left: 5rem;
  right: 5rem;
  transform: translateY(-50%);
  z-index: 2;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 5rem;
}

.contact-wrapper .contact-content img {
  height: auto;
  max-width: 40%;
  border-radius: 1.5rem;
}

.contact-wrapper .contact-content .section-text {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.contact-wrapper .contact-content .section-text h1 {
  color: #fff;
  font-size: 4.5rem;
  font-weight: 800;
  line-height: 110%;
}

.contact-wrapper .contact-content .section-text .loc-container {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  font-size: 1.5rem;
  line-height: 160%;
  font-weight: 400;
  color: #fff;
}

.contact-wrapper .contact-content .section-text .loc-container .highlight-text {
  color: #75f695;
}

.contact-wrapper .contact-content .section-text .social-container {
  display: flex;
  gap: 2rem;
}

.contact-wrapper .contact-content .section-text .social-container a {
  display: flex;
  align-items: center;
  justify-content: center;
  color: #75f695;
  font-size: 1.5rem;
  text-decoration: none;
  border-radius: 50px;
  border: 2px solid #75f695;
  width: 56px;
  height: 56px;
}

.footer {
  padding: 0 5rem;
  background-color: #0a223c;
  color: #fff;
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 5.875rem;
}

.footer p {
  font-weight: 400;
  font-size: 1rem;
  line-height: 140%;
  color: #fff;
}

.footer .footer-links {
  display: flex;
  gap: 2rem;
}

.footer .footer-links a {
  color: #fff;
  text-decoration: none;
  font-weight: 400;
  font-size: 1rem;
  line-height: 140%;
}

.footer .footer-links a:hover {
  text-decoration: underline;
}

@media (max-width: 767px) {
  #navbar {
    padding: 1rem 1.5rem;
    align-items: center;
  }

  .nav-wrapper {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 0;
  }

  .logo {
    height: 2.75rem;
    z-index: 1002;
  }

  .menu-toggle .bar {
    background-color: #0a223c;
  }

  .menu {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: fixed;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100vh;
    background-color: #fff;
    transition: left 0.3s ease-in-out;
    z-index: 1000;
    gap: 2rem;
  }

  #navbar.nav-open .menu {
    left: 0;
  }

  .nav-wrapper {
    width: 100%;
    justify-content: space-between;
  }

  .login-btn {
    display: none;
  }

  .menu .login-btn {
    display: flex;
  }

  .menu-toggle {
    display: flex;
  }

  #navbar.nav-open .menu-toggle .bar:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
  }
  #navbar.nav-open .menu-toggle .bar:nth-child(2) {
    opacity: 0;
  }
  #navbar.nav-open .menu-toggle .bar:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
  }

  h1,
  h2 {
    font-size: 2.2rem !important;
  }
  p {
    font-size: 1rem !important;
  }
  span {
    font-size: 0.9rem !important;
  }

  #navbar {
    padding: 1rem 1.5rem;
  }

  .hero {
    padding: 10rem 1.5rem 4rem;
    clip-path: polygon(0 0, 100% 0%, 100% 45%, 0% 85%);
  }

  .hero .hero-content h1 {
    font-size: 2.8rem;
  }
  .hero .hero-content p {
    font-size: 1.8rem;
  }

  .info-container {
    margin: -3rem 1.5rem 0;
  }

  .section {
    flex-direction: column-reverse !important;
  }

  .beliefs-section,
  .clients-section,
  .about-us-section,
  .feedback-section,
  .cta-section,
  .contact-wrapper .contact-content {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }

  .beliefs-section {
    margin: 3.125rem 0 5rem;
  }

  .beliefs-grid {
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
    margin: 0 2.5rem;
  }

  .belief-card {
    width: 100%;
    max-width: 20.625rem;
    height: auto;
  }

  .clients-section .logos img {
    height: 2rem;
    width: auto;
  }

  .about-us-section {
    flex-direction: column;
    overflow-x: hidden;
  }

  .about-us-section img {
    max-width: 120%;
  }

  .feedback-section .carousel-wrapper {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }

  .feedback-section .feedback-card {
    min-width: 80vw;
  }

  .cta-section {
    flex-direction: column-reverse;
  }

  .cta-section img {
    max-width: 343px;
  }

  .clipped-background {
    clip-path: polygon(0 20%, 100% 10%, 100% 100%, 0% 100%);
  }

  .contact-wrapper .contact-content {
    flex-direction: column;
  }

  .contact-wrapper .contact-content img {
    border-radius: 24px;
    max-width: 21.4375rem;
  }

  .contact-wrapper .contact-content .section-text h1 {
    font-size: 2.5rem;
  }

  .footer {
    padding: 1.5rem;
    flex-direction: column;
    align-items: flex-start;
  }
}
