* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Arial, Helvetica, sans-serif;
}

body {
  position: relative;
}

@media (max-width: 1024px) {
  header nav {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  header nav .links {
    margin-top: 20px;
    display: flex;
    justify-content: center;
  }
  header nav .links a {
    font-size: 18px;
    text-decoration: none;
    color: #6B7280;
  }
  header nav .links a:nth-child(n+2) {
    margin-left: 50px;
  }
}
@media (min-width: 1025px) {
  header nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    padding: 20px 150px;
  }
  header nav .links a {
    transition: filter 0.3s ease;
    font-size: 18px;
    text-decoration: none;
    color: #6B7280;
  }
  header nav .links a:nth-child(2), header nav .links a:nth-child(3), header nav .links a:nth-child(4) {
    margin-left: 50px;
  }
  header nav .links a:hover {
    color: black;
  }
}

main {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin-top: 100px;
}
@media (max-width: 1024px) {
  main .about-GeekDocs {
    color: #111827;
    font-size: 25px;
    font-weight: 800;
    width: 70%;
    text-align: center;
    border-bottom: 1px solid #ccc;
    padding-bottom: 5px;
  }
  main .about {
    margin-top: 50px;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  main .about .about-block {
    display: flex;
    flex-direction: column;
    padding: 10px;
    width: 100%;
  }
  main .about .about-block:nth-child(2) {
    margin-top: 20px;
  }
  main .about .about-block h1 {
    display: flex;
    align-items: center;
    justify-content: center;
  }
  main .about .about-block h1 img {
    width: 32px;
    height: 32px;
    margin-left: 10px;
  }
  main .about .about-block p {
    margin-top: 10px;
    word-wrap: break-word;
  }
  main .why-GeekDocs {
    background-color: #16A34A;
    width: 100%;
    padding: 30px;
    margin-top: 50px;
    justify-content: center;
  }
  main .why-GeekDocs .why-header {
    color: white;
    font-weight: 800;
    text-align: center;
  }
  main .why-GeekDocs .why-row {
    margin-top: 50px;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  main .why-GeekDocs .why-row .why-block {
    line-height: 25px;
  }
  main .why-GeekDocs .why-row .why-block:nth-child(n+2) {
    margin-top: 30px;
  }
  main .why-GeekDocs .why-row .why-block h1 {
    color: white;
    font-weight: bold;
    line-height: 30px;
  }
  main .why-GeekDocs .why-row .why-block p {
    color: white;
    margin-top: 15px;
    word-wrap: break-word;
  }
}
@media (min-width: 1025px) {
  main .about-GeekDocs {
    color: #111827;
    font-size: 3.75rem;
    font-weight: 800;
    width: 60%;
    text-align: center;
    border-bottom: 1px solid #ccc;
    padding-bottom: 5px;
  }
  main .about {
    margin-top: 50px;
    display: flex;
    justify-content: center;
  }
  main .about .about-block {
    display: flex;
    flex-direction: column;
    width: 550px;
  }
  main .about .about-block:nth-child(2) {
    border-left: 1px solid #ccc;
    padding-left: 70px;
  }
  main .about .about-block h1 {
    display: flex;
    align-items: center;
    justify-content: center;
  }
  main .about .about-block h1 img {
    width: 32px;
    height: 32px;
    margin-left: 10px;
  }
  main .about .about-block p {
    margin-top: 10px;
    word-wrap: break-word;
  }
  main .why-GeekDocs {
    background-color: #16A34A;
    width: 100%;
    padding: 30px;
    margin-top: 50px;
    justify-content: center;
  }
  main .why-GeekDocs .why-header {
    color: white;
    font-weight: 800;
    text-align: center;
  }
  main .why-GeekDocs .why-row {
    margin-top: 50px;
    display: flex;
    justify-content: center;
  }
  main .why-GeekDocs .why-row .why-block {
    line-height: 25px;
    width: 400px;
  }
  main .why-GeekDocs .why-row .why-block:nth-child(n+2) {
    margin-left: 50px;
  }
  main .why-GeekDocs .why-row .why-block h1 {
    color: white;
    font-weight: bold;
  }
  main .why-GeekDocs .why-row .why-block p {
    color: white;
    margin-top: 15px;
  }
}

footer {
  background-color: #F9FAFB;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
@media (max-width: 1024px) {
  footer {
    padding: 50px 0px;
  }
}
@media (min-width: 1025px) {
  footer {
    padding: 50px 0px;
  }
}
footer p {
  font-size: 1rem;
  line-height: 1.5rem;
  color: #9CA3AF;
}
footer .social-media-links {
  display: flex;
  margin-top: 30px;
}/*# sourceMappingURL=about.css.map */