* {
  margin: 0;
  padding: 0;
}
body {
  color: #fff;
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
}

.wrapper {
  width: 60%;
  margin: 0 auto;
}
header {
  background-color: #4a545c88;
  text-transform: uppercase;
  padding: 40px 0;
  position: fixed;
  width: 100%;
}
header .wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
header .wrapper h1 {
  text-transform: uppercase;
}
header .wrapper h1 span {
  color: #4bcaff;
}
header .wrapper nav {
  width: 45%;
  display: flex;
  justify-content: space-between;
}
header nav a {
  color: white;
  text-decoration: none;
  padding: 5px 15px;
  border: 3px solid transparent;
  font-weight: bold;
}
header nav a:hover {
  border: 3px solid #4bcaff;
  color: #4bcaff;
}

.banner h2 {
  font-size: 2rem;
  margin: 20px;
  background-color: #4a545c88;
  font-weight: 100;
}
.banner-text {
  padding: 250px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background-image: url(../img/Hero.png);
  text-transform: uppercase;
}

.services-container {
  background-color: #4bcaff;
  padding: 50px;
}

.services-container h2 {
  width: 70%;
  margin: 0 auto;
  font-weight: 100;
  font-size: 1.75rem;
}

.underline {
  border-bottom: solid white 3px;
}
.services {
  width: 70%;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
}

.service {
  margin-top: 25px;
}

.service img {
  margin-bottom: 15px;
  margin-top: 20px;
  height: 40px;
}

.service h3 {
  text-transform: uppercase;
  margin-bottom: 15px;
  font-weight: 500;
  font-size: larger;
}

.services p {
  font-size: smaller;
  padding-right: 5px;
}

.testimonials-container {
  padding: 50px;
}

.testimonials-container h2 {
  color: black;
  font-weight: 100;
  width: 70%;
  margin: 0 auto;
  margin-bottom: 25px;
}

.testimonials-container h2 span {
  border-bottom: solid black 3px;
}

.testimonials h3 {
  color: black;
  width: 70%;
  margin: 0 auto;
  font-size: x-large;
  font-weight: 100;
}

.credits {
  width: 70%;
  margin: 0 auto;
  margin-top: 25px;
  color: #4bcaff;
}

.contact-container {
  background-image: url(../img/Contact_photo.png);
  padding: 50px;
}

.contact-container h2 {
  width: 70%;
  margin: 0 auto;
  margin-bottom: 25px;
  font-weight: 100;
}

.contact {
  display: flex;
  flex-direction: row-reverse;
  justify-content: space-between;
  width: 70%;
  margin: 0 auto;
}

.contact-text {
  display: flex;
  flex-direction: column;
  gap: 35px;
  width: 50%;
  height: 70%;
  font-size: smaller;
}

.contact-form {
  width: 30%;
  text-transform: uppercase;
  color: white;
  justify-content: space-between;
}

textarea {
  width: 325%;
  height: 200px;
  resize: none;
  background-color: transparent;
  border: 2px solid white;
}

#name,
#email {
  height: 50px;
  width: 125%;
  background-color: transparent;
  border: 2px solid white;
}

#submit {
  height: 50px;
  width: 100%;
  color: white;
  background-color: #4bcaff;
  text-transform: uppercase;
  font-size: 0.75rem;
  font-weight: bold;
  border: none;
}

.form-group {
  margin-bottom: 25px;
}

.form-group label {
  display: block;
  font-size: 0.75rem;
  font-weight: bold;
  margin-bottom: 5px;
}

.footer-container {
  background-color: #383c44;
  padding: 50px;
}

.footer {
  display: flex;
  width: 70%;
  margin: 0 auto;
  justify-content: space-between;
  align-items: center;
  text-align: center;
}

.footer-nav a, .footer-creation {
  color: white;
  text-decoration: none;
  font-size: 0.75rem;
  font-weight: bold;
}

.divider {
  padding-left: 15px;
  padding-right: 10px;
}

