

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  font-family: "Inter", sans-serif;
}

header {
  position: relative;
  z-index: 5;
}

nav {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  margin: 0 100px;
}

.logo a {
  text-decoration: none;
}

.logo h1 {
  font-size: 32px;
  color: #fff;
  font-weight: 900;
}

ul {
  display: flex;
  flex-direction: row;
}

li {
  list-style: none;
  padding: 30px;
}

li a {
  text-decoration: none;
  color: #fff;
}

#hero-section {
  background-image: url(images/hero-bg.png);
  position: absolute;
  top: 0;
  z-index: 3;
  width: 100%;
}

.hero-content {
  padding-top: 200px;
  padding-bottom: 100px;
}

#hero-section h4 {
  font-size: 32px;
  font-weight: 600;
  color: #bb0102;
  text-align: center;
  margin-bottom: 5px;
}

.heading {
  font-size: 60px;
  font-weight: 900;
  color: #fff;
  text-transform: uppercase;
  text-align: center;
  margin-bottom: 5px;
}

.subtitle {
  font-size: 16px;
  color: #fff;
  text-align: center;
  width: 50%;
  margin: 0 auto;
  margin-bottom: 20px;
}

#hero-section a {
  display: block;
  width: 15%;
  margin: 0 auto;
}

.btn {
  background-color: #bb0102;
  color: #fff;
  font-size: 16px;
  font-weight: 500;
  border: none;
  padding: 15px 50px;
  cursor: pointer;
}

.btn:hover {
  background-color: #000;
  border: 2px solid #fff;
  transform: skew(-10deg);
}

#about-section {
  background-color: #151515;
  margin-top: 450px;
  position: relative;
  z-index: -2;
}

#about-section .wrapper {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  margin: 0 300px;
  padding-top: 50px;
  gap: 100px;
  padding-bottom: 50px;
}

.title-description {
  font-size: 18px;
  font-weight: 600;
  color: #fff;
  margin-bottom: 10px;
}

.subheading {
  font-size: 32px;
  font-weight: 800;
  color: #fff;
  margin-bottom: 20px;
}

.paragraph {
  margin-bottom: 15px;
  color: #fff;
}

.skills {
  display: flex;
  justify-content: center;
  gap: 30px;
  background-color: #0a0a0a;
  width: 90%;
  margin-top: 20px;
}

.skills p {
  color: #fff;
  background-color: #151515;
  padding: 10px 30px;
  margin: 10px 0 10px 0;
}

#services-section {
  background-color: #101010;
}

.wrapper2 {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  gap: 30px;
  padding: 0 300px;
  padding-bottom: 30px;
}

.box {
  background-color: #202020;
  border-radius: 10px;
  width: 370px;
  height: 162px;
}

.box-title {
  color: #fff;
  font-size: 24px;
  font-weight: 700;
  text-align: center;
  margin-top: 30px;
}

.box-description {
  color: #fff;
  text-align: center;
  margin: 10px 20px 30px 20px;
}

.header {
  margin-left: 100px;
  padding-top: 50px;
}

#cta {
  background-color: #0a0a0a;
  padding: 50px 100px;
}

.cta-header {
  color: #fff;
  font-size: 40px;
  font-weight: 900;
}

.cta-description {
  color: #fff;
  margin-top: 10px;
}

footer {
  background-color: #101010;
  padding-top: 20px;
}

.social-links {
  align-items: center;
}

.social-links img {
  margin-right: 20px;
}

#portfolio-section {
  background-color: #151515;
  padding-top: 50px;
}

#contact-section {
  background-color: #151515;
}

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;
  background-color: #151515;
  border: 2px solid #fff;
  color: #fff;
}

textarea {
  width: 30%;
  font-size: 16px;
  font-weight: 400;
  padding: 10px;
  margin-bottom: 20px;
  background-color: #151515;
  border: 2px solid #fff;
  color: #fff;
}

#contact-section p {
  color: #fff;
  text-align: center;
  line-height: 30px;
  padding-top: 30px;
  padding-bottom: 30px;
}

#portfolio-section {
  margin-top: 407px;
}

#contact-section {
	margin-top: 357px;
}

.title-description, .space {
	margin-left: 200px;
}