﻿.section-logo {
  height: auto !important;
  width: 30dvw;
  max-width: 800px;
  min-width: 350px;
  margin: 64px 0;
}

.hero {
  text-align: center;
  padding-top: 80px;
  padding-bottom: 80px;
  position: relative;
  border-bottom: 2px solid #0077c0;
  border-radius: 50%;
  width: 109dvw;
  box-shadow: 0px 16px 16px #a2d5f53d;
  background-color: white;
}

.hero-title {
  font-size: 46px;
  margin: 20px 42px;
  font-weight: bold;
  color: #16529f;
}
.hero-title.second-title-hero {
  font-size: 36px;
  margin: 20px 42px;
  font-weight: bold;
  color: #16529f;
}

.hero-actions {
  position: absolute;
  bottom: -42px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 16px;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  padding: 0 12px;
}

.hero-book-demo {
  box-shadow: 0 18px 44px -22px rgba(22, 82, 159, 0.4);
}

.hero-book-demo .btn-icon svg {
  width: 22px;
  height: 22px;
}

.hero-actions .btn-book-demo {
  min-width: 280px;
}
.under-hero {
  text-align: center;
  width: 100%;
  margin-top: 80px;
}

.trusted-logos {
  background-color: #16529f;
  padding: 30px;
  border-radius: 10px;
  margin-top: 50px;
  min-width: 80%;
}

.logo-container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  justify-items: center;
}

.logo-container img {
  height: auto;
  width: 100%;
  max-width: 350px;
  max-height: 100px;
  object-fit: contain;
  min-height: 100px;
}

.steps {
  text-align: center;
  padding: 50px 20px;
  background-color: #ffffff;
  width: 100%;
}

.steps-header {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

.line-header.left {
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
}

.line-header.right {
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%) scaleX(-1) scaleY(-1);
}

.line-header {
  display: block;
  width: 50%;
}

.steps-title {
  font-size: 34px;
  font-weight: bold;
  position: relative;
  text-align: center;
  background-color: var(--bg-body);
  width: fit-content;
  z-index: 1;
  padding: 0px 70px;
  color: var(--bg-copyright);
}

.steps-container {
  display: flex;
  justify-content: space-between;
  margin-top: 40px;
}

.step {
  padding: 20px;
  border: 1px solid #d1d5db;
  margin: 16px 32px;
  border-radius: 10px;
  text-align: left;
  width: 30%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  background-color: white;
}

.step-number-container {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  width: 100%;
  gap: 10px;
  margin-left: -47px;
}

.step-number span {
  background-color: #16529f;
  color: white;
  border: 2px solid #0077c0;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  font-size: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 12px;
  border: none;
}

.step h4 {
  font-size: 22px;
  color: #204b6a;
  font-weight: bold;
  margin: 0;
  margin-left: 20px;
}

.step-description {
  margin-top: -10px;
  text-align: left;
  background-color: white;
  margin-left: -24px;
  padding-top: 25px;
  padding-bottom: 25px;
  margin-top: 0;
}

.step p {
  font-size: 18px;
  color: #204b6a;
  margin: 0;
}

@media (max-width: 1024px) {
  .header-main {
    position: relative;
  }

  .hero-title {
    font-size: 32px;
  }
  .hero-title.second-title-hero {
    font-size: 22px;
  }
  .hero-subtitle {
    font-size: 20px;
  }

  .hero-description {
    font-size: 16px;
  }

  .logo-container {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .hero-actions {
    position: static;
    transform: none;
    left: auto;
    bottom: auto;
    margin-top: 32px;
    flex-direction: column;
    gap: 16px;
    max-width: 480px;
    width: 100%;
  }

  .hero-actions .btn-book-demo {
    width: 100%;
  }
  .hero-title {
    font-size: 28px;
  }
  .hero-title.second-title-hero {
    font-size: 18;
  }
  .hero-subtitle {
    font-size: 18px;
  }

  .hero-description {
    font-size: 14px;
  }

  .logo-container {
    grid-template-columns: 1fr;
  }

  .steps-container {
    flex-direction: column;
    align-items: center;
  }

  .step {
    width: 90%;
    margin: 15px 0;
  }

  .steps-title {
    font-size: 16px;
  }

  .logo-container img {
    height: 25px;
  }

  .steps-title::before,
  .steps-title::after {
    width: 29%;
  }
}

@media (max-width: 480px) {
  .hero-actions {
    gap: 14px;
    margin-top: 28px;
  }
  .hero-title {
    font-size: 24px;
  }

  .hero-title.second-title-hero {
    font-size: 14px;
  }
  .hero-subtitle {
    font-size: 16px;
  }

  .hero-description {
    font-size: 12px;
  }

  .logo-container {
    grid-template-columns: 1fr;
    margin-top: 20px;
  }

  .steps-container {
    flex-direction: column;
    align-items: center;
  }

  .step {
    width: 75%;
    margin: 10px 0;
  }

  .steps-title {
    font-size: 14px;
  }

  .steps-title::before,
  .steps-title::after {
    width: 9%;
  }

  .fuuter-upper {
    flex-direction: row;
  }

  .copyright {
    font-size: 12px;
  }
}