html {
  scroll-behavior: smooth;
}

body {
  box-sizing: border-box;
}

.fo-container {
  padding: 25px;
  display: flex;
  flex-direction: column;
  gap: 175px;
  /*background-color: #ececec;*/
  background: linear-gradient(to right, #fafafa 5%, #fff 50%, #fafafa 95%);
  min-height: 100vh;
  /*background: linear-gradient(to right, #222 5%, #f8f9fa 15%, #f8f9fa 85%, #222 95%);*/
}

.fo-section-top-title {
  font-size: 6rem;
  font-weight: 700;
  letter-spacing: 10px;
}

.fo-section-footer {
  text-align: center;
  margin-top: 20px;
  font-size: 1.2rem;
  font-weight: 600;
}

.top-image {
  width: 700px;
}

@media screen and (max-width: 750px) {
  .top-image {
    width: 100%;
  }
}

.top-image img {
  width: 100%;
}

.fo-section {
  display: flex;
  flex-direction: column;
  gap: 25px;
  width: 100%;
  justify-content: center;
  align-items: center;
}

.fo-section-header {
  font-size: 3.2rem;
  font-weight: 700;
  letter-spacing: -2px;
  text-align: center;
  max-width: 1000px;
}

@media screen and (max-width: 450px) {
  .fo-section-header {
    font-size: 2.7rem;
  }

  .fo-section-subtitle {
    font-size: 1.1rem;
  }
}

.fo-section-subtitle {
  font-size: 1.7rem;
  font-weight: 400;
  color: #888888;
  max-width: 635px;
  text-align: center;
}

.fo-section-button {
  background-color: #222;
  padding: 15px;
  border-radius: 8px;
  color: #fff;
  border: none;
  font-family: inherit;
  font-weight: 500;
  font-size: 1rem;
  box-shadow: 0 5px 8px 3px rgba(0, 0, 0, 0.2);
}

.fo-section-button:hover {
  cursor: pointer;
  background-color: rgba(34, 34, 34, 0.95);
}

.fo-section-list {
  display: flex;
  flex-direction: column;
  gap: 5px;
  max-width: 800px;
}

.fo-section-button-white {
  background-color: #fff;
  color: #000;
  border: 1px solid rgba(0, 0, 0, 0.5);
}

.fo-section-button-white:hover {
  background-color: rgba(0, 0, 0, 0.03);
}

.fo-section-list-gap {
  gap: 25px;
}

.fo-section-list-item {

}

.fo-section-list-item > span {
  font-weight: 500;
}

.fo-small-subtitle {
  font-size: 0.9rem;
  font-weight: 400;
  opacity: 0.7;
  max-width: 600px;
  text-align: center;
  font-style: italic;
}

.footer {
  font-size: 0.7rem;
  font-weight: 300;
  opacity: 0.7;
  text-align: center;
}

.navbar {
  position: sticky;
  top: 0;
  background-color: white;
  z-index: 1000;
  padding: 20px 25px;
  box-shadow: 0 5px 8px 3px rgba(0, 0, 0, 0.2);
  display: flex;
  justify-content: center;
  align-items: center;
}

.navbar-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  width: 100%;
}

.navbar-logo {
  width: 150px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.navbar-icon {
  font-size: 1.8rem;
  margin-bottom: 3px;
}

.navbar-logo img {
  width: 100%;
}

.button-link-container {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  gap: 30px;
}

.navbar ul {
  list-style-type: none;
  margin: 0;
  padding: 0;
  display: flex;
}

.navbar li {
  margin: 0;
}

.navbar li a {
  text-decoration: none;
  color: black;
}

.navbar li a:hover {
  opacity: 0.7;
}

.hamburger-menu {
  color: #000;
  font-size: 2rem;
  cursor: pointer;
}

@media screen and (max-width: 768px) {
  .button-link-container {
    display: none;
  }
}

@media screen and (min-width: 769px) {
  .hamburger-menu {
    display: none;
  }
}

.mobile-menu {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 100;
  width: 100%;
  height: 100vh;
  background: #fff;
  color: #000;
}

.mobile-menu.active {
  display: block;
}

.mobile-menu-items {
  display: flex;
  flex-direction: column;
  margin-top: 130px;
  justify-content: center;
  align-items: center;
  padding: 0 40px;
}

.mobile-menu-items a {
  text-decoration: none;
}

.mobile-menu-item {
  margin-top: 25px;
}

.mobile-menu-button {
  background-color: #222;
  padding: 15px;
  border-radius: 8px;
  color: #fff;
  border: none;
  font-family: inherit;
  font-weight: 500;
  font-size: 1rem;
  box-shadow: 0 5px 8px 3px rgba(0, 0, 0, 0.2);
  width: 100%;
  text-align: center;
}

.mobile-menu-item a {
  text-decoration: none;
  color: black;
}

.mobile-menu-item a:hover {
  opacity: 0.7;
}

.app-grid-wrapper {}

.app-grid {
  display: flex;
  flex-wrap: wrap;
  max-width: 1200px;
  justify-content: flex-start;
  gap: 30px;
}

@media screen and (max-width: 768px) {
  .app-grid {
    justify-content: center;
    align-items: center;
    gap: 30px;
  }
  .app-grid-wrapper {
    text-align: center;
  }
}

.app-icon {
  width: 80px;
  height: 80px;
  border-radius: 8px;
  background-color: #a1a1a1;
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 10px;
  font-size: 3rem;
  color: #444;
}

.app-icon:hover {
  opacity: 0.9;
}

.app-icon img {
  width: 100%;
}

.app-section-title {
  font-size: 1.5rem;
  font-weight: 700;
  align-self: flex-start;
  margin-bottom: 20px;
}

.social-links {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  font-size: 1.8rem;
}

.social-links a {
  text-decoration: none;
  color: #000;
}

.social-links a:hover {
  opacity: 0.7;
}

.nav-link {
  text-decoration: none;
  color: #000;
}

.nav-link:hover {
  opacity: 0.7;
}

.footer-agents {
  margin-top: 325px;
}

@media screen and (max-width: 1024px) {
  .footer-agents {
    margin-top: 50px;
  }
}

.section-buttons {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 15px;
}
