.fixed-nav {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 1030;

  animation: slideDown 0.35s ease-out;
}

@keyframes slideDown {
  from {
    transform: translateY(-100%);
  }
  to {
    transform: translateY(0);
  }
}

.about-header {
  display: flex;
  padding: 10px 0;
  align-items: center;
  justify-content: space-between;
  background-color: #ffff;;
}

.about-header .left {
  display: flex;
  align-items: center;
  gap: 80px;
  justify-content: space-between;
  width: 100%
}

.right {
  display: none;
}

.fixed-nav .right {
  display: flex;
  align-items: center;
  justify-content: center;
}

.fixed-nav .left {
  width: inherit;
}

.logo {
  width: 285px;
}

.header-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.fixed-nav .logo {
  width: 190px;
}

.navigate-list {
  list-style-type: none;
  margin-bottom: 0;
}

.navigate-mobile-wrapper .navigate-list {
  display: flex;
  flex-direction: column;
  gap: 15px;
  font-size: 18px;
}

.mobile-nav-button {
  display: none;
}

.navigate-wrapper .navigate-list {
  display: flex;
  gap: 24px;
}

.navigate-wrapper .navigate-list .navigate-item .item-link {
  font-size: 18px;
  font-family: SFUITextLight;
  font-weight: 400;
  line-height: 22px;
  letter-spacing: 0;
  text-align: left;
  color: #343a40;
  text-decoration: none;
}

.navigate-wrapper .navigate-list .navigate-item .item-link:hover {
  text-decoration: underline;
}

.navigate-mobile-wrapper .navigate-list .navigate-item .item-link {
  font-size: 18px;
  font-family: SFUITextLight;
  font-weight: 400;
  line-height: 22px;
  letter-spacing: 0;
  text-align: left;
  color: #343a40;
}

.fixed-nav .navigate-wrapper .navigate-list .navigate-item .item-link {
  font-size: 14px;
  font-family: SFUITextLight;
  font-weight: 400;
  line-height: 22px;
  letter-spacing: 0;
  text-align: left;
}

.install-wrapper .install-link {
  font-family: 'SFUITextRegularG2', Arial, Helvetica, sans-serif;
  border-radius: 8px;
  background: linear-gradient(180deg, #4fd589 0%, #1aa756 100%);
  border: 1px solid #1aa756;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  padding: 12px 24px;
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.install-wrapper .install-link .browser-icon {
  width: 24px;
  height: 24px;
}

.install-wrapper .install-link .install-text-wrapper {
  color: #fff;
  font-size: 14px;
  display: flex;
  gap: 4px;
}

.install-wrapper .install-link .install-text-wrapper .install-text:nth-child(3) {
  opacity: .7;
}


.about .about-content.container {
  max-width: 720px !important;
}

.project-wrapper,
.about-wrapper,
.contact-wrapper,
.project-stats {
  padding: 32px 0;
}

.about-title,
.project-title,
.contact-title {
  margin-bottom: 40px;
  font-family: 'SFUITextRegularG2', Arial, Helvetica, sans-serif;
  font-size: 36px;
  text-align: center;
  color: #111827;
}

.project-text,
.about-text {
  font-size: 18px;
  color: #374151;
  margin-bottom: 20px;
  font-family: 'SFUITextLight', Arial, Helvetica, sans-serif;
}

.project-stats {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.project-stats .stat-wrapper {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.project-stats .stat-wrapper .stat-header, .stat-footer {
  color: #374151;
  font-size: 18px;
  font-family: 'SFUITextLight', Arial, Helvetica, sans-serif;
  text-align: center;
}

.project-stats .stat-wrapper .stat-body {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: 10px;
  color: #F79320;
}

.project-stats .stat-wrapper .stat-body .body-primary {
  font-size: 64px;
  font-family: 'SFSB', Arial, Helvetica, sans-serif;
  line-height: 1;
}

.project-stats .stat-wrapper .stat-body .body-secondary {
  font-size: 24px;
  font-family: 'SFM', Arial, Helvetica, sans-serif;
  line-height: 1;
  margin-bottom: 5px;
}

.about-team {
  margin: 40px 0 0;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-wrap: wrap;
  row-gap: 50px;
  column-gap: 0;
}

.about-team .about-team-item {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 15px;
  flex-basis: auto;
  width: calc(100% / 3);
}

.about-team .about-team-item .team-desc {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0;
  text-align: center;
}

@media (width <= 495px) {
  .about-team .about-team-item {
    min-height: 180px;
  }
}

.about-team .about-team-item .about-team-img {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  pointer-events: none;
}

.about-team .about-team-item .about-team-name {
  font-size: 18px;
}

.contact-wrapper .form-wrapper .about-form {
  display: flex;
  gap: 20px;
  flex-direction: column;
}

.contact-wrapper .form-wrapper .about-form .separeted-column {
  display: flex;
  gap: 40px;
}

.contact-wrapper .form-wrapper .about-form .column-item .input-label {
  font-family: 'SFUITextLight', Arial, Helvetica, sans-serif;
  font-size: 14px;
  color: #374151;
  font-weight: normal;
}

.contact-wrapper .form-wrapper .about-form .column-item {
  gap: 6px;
}

.contact-wrapper .form-wrapper .about-form .separeted-column .column-item {
  width: calc((100% / 2));
}

.contact-wrapper .form-wrapper .about-form .column-item .form-input {
  border-radius: 8px;
  border: 1px solid #D0D5DD;
  padding: 10px;
  background-color: transparent;
}

.contact-wrapper .form-wrapper .about-form .column-item {
  display: flex;
  flex-direction: column;
}

.contact-wrapper .form-wrapper .about-form .column-item .policy-wrapper {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-start;
  gap: 5px;
  flex-wrap: wrap;
}

.contact-wrapper .form-wrapper .about-form .column-item .input-label {
  margin: 0;
}

.contact-wrapper .form-wrapper .about-form .column-item .policy-wrapper .policy-input {
  margin: 0;
  width: 20px;
  height: 20px;
}

.contact-wrapper .form-wrapper .about-form .column .column-item .form-submit-wrapper {
  display: flex;
  justify-content: flex-end;
}

.contact-wrapper .form-wrapper .about-form .column .column-item .about-submit {
  background-color: #F79320;
  padding: 11px;
  width: 40%;
  color: #ffff;
  font-family: 'SFR', Arial, Helvetica, sans-serif;
  border-radius: 8px;
}

.banner-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  margin: 40px;
}

.banner-wrapper .banner-title {
  margin-bottom: 24px;
  font-family: 'SFUITextRegularG2', Arial, Helvetica, sans-serif;
  font-size: 32px;
  text-align: center;
  color: #111827;
}

.hr {
  border-top: 1px solid #eaeff3;
}

@media screen and (max-width: 992px) {
  .install-wrapper, .banner-wrapper {
    display: none;
  }

  .about-header .left  {
    width: 100%;
    gap: 0;
  }
}

@media screen and (max-width: 766px) {
  .about-header {
    padding: 0;
  }

  .mobile-nav-button {
    display: block;
  }

  .project-text,
  .about-text {
    font-size: 14px;
  }

  .about-title,
  .project-title,
  .contact-title {
    font-size: 24px;
  }

  .project-wrapper,
  .about-wrapper,
  .contact-wrapper,
  .project-stats {
    margin: 40px 0;
  }

  .project-stats {
    gap: 5px;
    justify-content: space-around;
  }
  .project-stats .stat-wrapper .stat-body .body-primary {
    font-size: 28px;
  }
  .project-stats .stat-wrapper .stat-body .body-secondary {
    font-size: 18px;
    margin-bottom: 2px;
  }
  .project-stats .stat-wrapper .stat-header, .stat-footer {
    font-size: 13px;
  }
  
  .contact-wrapper .form-wrapper .about-form .separeted-column {
    flex-direction: column;
    gap: 10px;
  }
  .contact-wrapper .form-wrapper .about-form .separeted-column .column-item,
  .contact-wrapper .form-wrapper .about-form .column .column-item .about-submit {
    width: 100%;
  }

  .navigate-wrapper .navigate-list {
    display: none;
  }

  .container {
    margin-right: 0 !important;
    margin-left: 0 !important;
    padding: 15px;
    width: 100%;
  }
  
  .header-content {
    display: flex;
    justify-content: space-between;
    flex-direction: column;
    align-items: flex-start;
  }

  .logo {
    width: 190px;
  }

  .navigate-list {
    padding: 20px 0 0 0;
  }
}

@media (width <= 530px) {
  .about-team {
    justify-content: center;
    column-gap: 10px;
  }
}