* {
  box-sizing: border-box;
}

body {
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  padding: 0;
  margin: 0;
}
 {
  /*
.navbar {
  background-color: white;
  padding: 20px 0px;
  display: flex;
  align-items: center;
  justify-content: space-around;
}

.logo {
  font-size: 22px;
  color: rgb(11, 0, 11);
  font-weight: 600;
  cursor: pointer;
}
.logo:hover {
  color: orangered;
}

.navbar ul {
  display: flex;
}

.navbar li {
  list-style: none;
}

.navbar a {
  text-decoration: none;
  font-weight: 600;
  font-size: 18px;
  color: rgb(46, 45, 45);
  padding-right: 20px;
}
.navbar a:hover {
  color: orangered;
}

.navbar .toggle-button {
  position: absolute;
} */
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: #fff;
  padding: 10px;
}

.logo {
  font-size: 2rem;
  margin-left: 3rem;
  font-weight: 400;
  color: #000000;
  cursor: pointer;
  transition: 0.2s ease-in;
}

.logo:hover {
  color: orangered;
  scale: calc(101%);
}
.navbar-links {
  margin-right: 3rem;
}
.navbar-links ul {
  margin: 0;
  padding: 0;
  display: flex;
}

.navbar-links li {
  list-style: none;
}

.navbar-links li a {
  text-decoration: none;
  padding: 1rem;
  display: block;
  color: #000000;
  transition: 0.2s ease-in;
}

.navbar-links li a:hover {
  color: orangered;
  text-decoration: underline;
  scale: calc(110%);
  background: wheat;
}

.toggle-button {
  position: absolute;
  top: 0.75rem;
  right: 1rem;
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 30px;
  height: 21px;
}

.toggle-button .bar {
  height: 3px;
  width: 100%;
  background-color: black;
  border-radius: 10px;
}

@media (max-width: 700px) {
  .hero-header {
    overflow-y: hidden;
  }

  .toggle-button {
    display: flex;
  }

  .navbar-links {
    display: none;
    width: 100%;
  }

  .navbar {
    flex-direction: column;
    align-items: flex-start;
  }

  .navbar-links ul {
    flex-direction: column;
    width: 100%;
  }

  .navbar-links li {
    text-align: center;
  }

  .navbar-links a {
    padding: 0.5rem 1rem;
  }

  .navbar-links.active {
    display: flex;
  }
}

.hero {
  background: rgba(8, 0, 0, 0.759) url(images/background.jpeg);
  background-size: cover;
  height: 100vh;
  background-blend-mode: overlay;
  display: flex;
  justify-content: center;
  align-items: center;
  color: white;
  flex-direction: column;
}

.hero-header {
  font-size: 50px;
  max-width: 60%;
  text-align: center;
  line-height: 60px;
}
.hero-sub {
  text-align: center;
  font-size: 15px;
  padding-top: 28px;
  max-width: 50%;
}

.small-arrow {
  width: 50px;
  height: 4px;
  margin-top: 40px;
  background-color: orangered;
}

.find-button {
  background-color: orangered;
  padding: 20px 30px;
  margin-top: 60px;
  border: 0px;
  border-radius: 50px;
  color: white;
  font-weight: bold;
  font-size: 16px;
  cursor: pointer;
}
.find-button:hover {
  background-color: rgb(156, 42, 1);
}

.got {
  height: 70vh;
  background-color: orangered;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

.got-header {
  font-size: 30px;
  color: white;
  font-weight: bold;
  padding: 0;
}

.got-sub {
  font-size: 20px;
  color: white;
  max-width: 60%;
  text-align: center;
}

.service {
  padding: 60px 0;
  background-color: white;
  color: black;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

.service-header {
  font-size: 30px;
  font-weight: bold;
}

.service .intro {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  margin-bottom: 80px;
}

.service-cards {
  padding: 0 30px;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 20px;
  text-align: center;
}

.service-card {
  width: 300px;
}

.card-top {
  font-size: 28px;
  font-weight: 600;
}
.card-bottom {
  margin-left: auto;
  margin-right: auto;
  margin-top: 20px;
  font-size: 17px;
  font-weight: 400;
  max-width: 70%;
  color: rgb(17, 16, 16);
}

.card-img {
  /* height: 60px; */
  width: 60px;
  margin-bottom: 20px;
}

.download {
  height: 50vh;
  background-color: rgb(11, 2, 17);
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

.download-header {
  color: white;
  font-size: 40px;
  font-weight: 600;
  margin-bottom: 20px;
  text-align: center;
}

.contact {
  padding: 40px 10px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}
.contact-header {
  font-size: 40px;
  font-weight: 600;
  margin-top: 50px;
}
.contact-sub {
  margin-top: 50px;
  max-width: 50%;
  font-size: 23px;
  text-align: center;
}

.form {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  margin-top: 60px;
  gap: 20px;
}

label {
  font-size: 20px;
  align-self: flex-start;
  font-weight: 600;
  text-transform: uppercase;
  color: rgb(56, 52, 52);
}

input {
  width: 300px;
  margin-top: 10px;
  padding: 10px;
  border: 2px dotted gray;
}
textarea {
  width: 300px;
  margin-top: 10px;
  padding: 10px;
  border: 2px dotted gray;
  font-size: larger;
  resize: none;
}

.submit {
  width: 325px;
  padding: 14px 0;
  background-color: orangered;
  color: white;
  font-weight: bold;
  border: 0;
  border-radius: 30px;
}

.footer {
  padding: 30px 0;
  display: flex;
  color: white;
  background: black;
  justify-content: center;
  align-items: center;
}

@media (max-width: 768px) {
  .hero-header {
    font-size: 30px;
    line-height: 30px;
  }

  .hero-sub {
    font-size: 13px;
    max-width: 60%;
  }

  .hero {
    height: 80vh;
  }

  .find-button {
    padding: 15px 13px;
    margin-top: 30px;
    font-size: 12px;
  }

  .navbar a {
    font-size: 14px;
  }

  .got-header {
    font-size: 24px;
  }

  .got-sub {
    font-size: 16px;
    max-width: 80%;
  }

  .service-header {
    font-size: 24px;
  }

  .download-header {
    font-size: 30px;
  }

  .contact-header {
    font-size: 27px;
  }
  .contact-sub {
    max-width: 70%;
  }
}

@media (max-width: 480px) {
  * {
    overflow-x: hidden;
  }

  .logo {
    font-size: 18px;
  }

  .navbar a {
    padding-right: 10px;
    font-size: 15px;
  }

  .download-header {
    font-size: 20px;
  }

  .contact-header {
    font-size: 20px;
  }

  .contact-sub {
    /* max-width: 30%; */
    font-size: 15px;
  }

  label {
    font-size: 15px;
  }

  input {
    width: 200px;
  }

  textarea {
    width: 200px;
  }
  .contact .submit {
    width: 225px;
  }

  .card-top {
    font-size: 17px;
    font-weight: 500;
  }

  .logo {
    font-size: 18px;
  }
}
