* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  font-family: "Montserrat", sans-serif;
}

nav {
  background-color: #ffba31;
  width: 60px;
  position: fixed;
  right: 0;
  top: 130;
  margin-right: 70px;
  border-radius: 30px;
  z-index: 5;
}

nav ul {
  display: flex;
  flex-direction: column;
  align-items: center;
}

li {
  list-style: none;
}

nav li:nth-child(1) {
  padding: 50px 20px 20px 20px;
}

nav li:nth-child(2) {
  padding: 20px;
}

nav li:nth-child(3) {
  padding: 20px;
}

nav li:nth-child(4) {
  padding: 20px 20px 50px 20px;
}

.fa-solid {
  font-size: 25px;
  color: #000;
}

.fa-solid:hover {
  color: #fff;
}

#hero-section {
  position: absolute;
  top: 0;
  z-index: 2;
}

.first-text {
  font-size: 32px;
  font-weight: bold;
}

.heading {
  font-size: 90px;
  font-weight: 900;
}

span {
  color: #ffba31;
}

.subtitle {
  font-size: 20px;
  font-weight: bold;
  text-align: center;
  padding: 10px;
}

.subtitle-box {
  background-color: #ffba31;
  width: 490px;
  margin-bottom: 10px;
}

button {
  background-color: #ffba31;
  color: #000;
  padding: 15px 30px;
  border: none;
  margin-top: 20px;
  font-weight: 500;
  font-size: 16px;
  cursor: pointer;
}

.hero-content {
  margin-left: 100px;
  margin-top: 160px;
}

.hero-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  justify-content: space-between;
}

#hero-section {
  background-image: url(images/hero-bg.png);
  height: 100vh;
}

#about-section {
  background-color: #ddd;
}

.about-wrapper {
  display: flex;
  gap: 40px;
}

.sidebar {
  position: fixed;
  z-index: 3;
}

.sidebar ul {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background-color: #ffba31;
  width: 262px;
}

.about-content {
  margin-left: 300px;
  padding-bottom: 50px;
}

.divider-1 {
  padding-top: 30px;
}

.divider-3 {
  padding-bottom: 30px;
}

.sidebar a {
  text-decoration: none;
  color: #000;
  font-weight: bold;
}

.sidebar a:hover {
  color: #fff;
}

.subheading {
  font-size: 80px;
  font-weight: 900;
  padding: 5px 0;
  border: 1px dashed #000;
  width: 912px;
  text-align: center;
  margin-top: 30px;
}

.about-subtitle {
  font-size: 30px;
  font-weight: 400;
}

.about-description {
  width: 885px;
}

.box1 {
  background-color: #000;
}

.card {
  padding: 30px;
  padding-top: 40px;
}

.num {
  color: #ffba31;
  font-size: 32px;
  font-weight: bold;
}

.card-text {
  color: #fff;
}

.stats {
  display: flex;
  gap: 30px;
}

.about-content-wrapper {
  display: flex;
  gap: 30px;
  margin-top: 30px;
}

h3 {
  font-size: 32px;
  margin-bottom: 10px;
}

.service {
  margin-top: 30px;
  display: flex;
  gap: 20px;
  align-items: center;
}

.portfolio-wrapper {
  display: flex;
  gap: 30px;
  align-items: center;
  justify-content: center;
  margin-top: 30px;
  margin-bottom: 30px;
}

form {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding-top: 50px;
  padding-bottom: 70px;
}

input {
  width: 50%;
  font-size: 16px;
  font-weight: 400;
  padding: 10px;
  margin-bottom: 10px;
  background-color: #ffba31;
  border: 2px solid var(--white);
  color: var(--white);
}

textarea {
  width: 50%;
  font-size: 16px;
  font-weight: 400;
  padding: 10px;
  margin-bottom: 20px;
  background-color: #ffba31;
  border: 2px solid var(--white);
  color: var(--white);
}
