* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;

  font-family: "Lufga", sans-serif;
}

body {
  background-color: #20272f;
}

nav {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  margin: 10px 100px;
}

ul {
  display: flex;
}

li {
  list-style: none;
  padding: 10px 20px;
}

li a {
  text-decoration: none;
  color: #fff;
}

li a:hover {
  color: #daa031;
}

.wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 30px 100px 50px 100px;
  gap: 30px;
}

.first-text {
  color: #daa031;
  font-size: 20px;
}

.heading {
  font-size: 64px;
  font-weight: 900;
  color: #fff;
}

.subtitle {
  font-size: 32px;
  font-weight: 500;
  color: #fff;
  text-transform: uppercase;
  margin-top: -10px;
}

p {
  color: #fff;
}

button {
  background-color: #daa031;
  color: #fff;
  padding: 15px 30px;
  border: none;
  cursor: pointer;
  margin-right: 10px;
  margin-top: 20px;
  border-radius: 30px;
}

.subheading {
  color: #fff;
  text-align: center;
  font-size: 32px;
  font-weight: 700;
}

h3 {
  color: #fff;
  font-size: 24px;
  margin-bottom: 5px;
}

span {
  color: #daa031;
}

.para {
  margin-bottom: 15px;
  color: #fff;
}

.card {
  padding: 20px;
  background-color: #37404b;
  border-radius: 30px;
  box-shadow: 2px 5px 25px 2px rgba(0, 0, 0, 0.2);
}

.deco {
  width: 100%;
}

#about-section {
  background-color: #37404b;
  margin-top: -5px;
}

#about-section .wrapper {
  margin-bottom: 0;
}

footer p {
  text-transform: uppercase;
  text-align: center;
  color: #fff;
}

.footer-subheading {
  text-transform: uppercase;
  text-align: center;
  color: #fff;
}

footer img {
  margin-right: 10px;
}

#hero-section .wrapper {
  margin-bottom: 0;
}

.works {
  justify-content: center;
}

.works a {
  color: #fff;
}

.nav-link.active {
  color: #fff;
  background: #daa031;
  padding: 10px 30px;
  border-radius: 30px;
  transition: ease-in-out 30ms;
}

.heading-3 {
  font-size: 60px;
  font-weight: 900;
  text-align: center;
  margin-top: 50px;
  color: #fff;
}

form {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding-top: 50px;
  padding-bottom: 10px;
}

input {
  width: 30%;
  font-size: 16px;
  font-weight: 400;
  padding: 10px;
  margin-bottom: 10px;
  color: #fff;
  background-color: #20272f;
  border: none;
  border-bottom: 3px solid #37404b;
}

textarea {
  width: 30%;
  font-size: 16px;
  font-weight: 400;
  padding: 10px;
  margin-bottom: 20px;
  background-color: #20272f;
  color: #fff;
  border: none;
  border-bottom: 3px solid #37404b;
}

.btn {
  padding: 15px 30px;
  background-color: #daa031;
  color: #fff;
  border: none;
  font-size: 16px;
  cursor: pointer;
  border-radius: 30px;
}
