* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  color: #656;
  font-family: Merienda;
  scroll-behavior: smooth;
}

ul,
nav {
  list-style: none;
}

a {
  text-decoration: none;
  opacity: 0.75;
  color: #fff;
}

a:hover {
  opacity: 1;
}

a.btn {
  border-radius: 5px;
  text-transform: uppercase;
  font-weight: bold;
  text-align: center;
  background-color: #f8c300;
  opacity: 1;
}

section {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 100px 80px;
}

.work-area,
.contact {
  background-color: #ddd;
}

.content-area {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}

section h3.header-text {
  text-transform: uppercase;
  font-family: Baloo-apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto,
    Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
  margin-bottom: 5px;
  text-align: center;
  font-size: 45px;
}

section p {
  max-width: 700px;
  line-height: 2;
  padding: 0 20px;
  margin-bottom: 30px;
  text-align: center;
}

@media (max-width: 800px) {
  section {
    padding: 50px 20px;
  }

  section h3.header-text {
    font-size: 30px;
  }
}

header {
  position: absolute;
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 35px 100px 0;
  -webkit-animation: 1s animate 0.5s forwards;
  animation: 1s animate 0.5s forwards;
  opacity: 0;
  color: #fff;
  z-index: 10;
}

@-webkit-keyframes animate {
  100% {
    opacity: 1;
  }
}

@keyframes animate {
  100% {
    opacity: 1;
  }
}

header h2 {
  font-family: Baloo-apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto,
    Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
}

header nav {
  display: flex;
  margin-right: -15px;
}

header nav li {
  margin: 0 15px;
}

@media (max-width: 800px) {
  header {
    padding: 2px 50px;
    flex-direction: column;
  }

  header h2 {
    margin-bottom: 15px;
  }

  header nav li {
    margin: 0 7px;
  }
}

.banner-area {
  position: relative;
  justify-content: center;
  text-align: center;
  min-height: 100vh;
  color: #fff;
}

.banner-area .img-area {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  z-index: -1;
  background-image: linear-gradient(
      to left,
      rgba(0, 0, 0, 0.6),
      rgba(0, 0, 0, 0.6)
    ),
    url(images/img/1.jpg);

  background-position: center center;
}

.banner-area h1 {
  margin-bottom: 15px;
  font-size: 60px;
}

.banner-area h3 {
  margin-bottom: 40px;
  font-size: 25px;
}

.banner-text {
  opacity: 0;
  margin-top: 100px;
  -webkit-animation: 1s anime-two 1s forwards;
  animation: 1s anime-two 1s forwards;
}

.banner-area a.btn {
  padding: 20px 45px;
}

@-webkit-keyframes anime-two {
  100% {
    opacity: 1;
    margin: 0;
  }
}

@keyframes anime-two {
  100% {
    opacity: 1;
    margin: 0;
  }
}

@media (max-width: 800px) {
  .banner-area {
    min-height: 600px;
  }
  .banner-area h1 {
    font-size: 28px;
  }
  .banner-area h8 {
    font-size: 24px;
  }

  .banner-area .a-btn {
    padding: 15px 40px;
  }
}

.services-area .content-area .single-services {
  height: 300px;
  padding: 20px;
  flex-basis: 30%;
  text-align: center;
}

.single-services h2 {
  margin-bottom: 15px;
}

.icon-area {
  width: 80px;
  height: 80px;
  display: inline-block;
  background: #262626;
  border-radius: 50%;
  margin-bottom: 20px;
}

.icon-area i {
  color: #fff;
  padding: 25px;
  font-size: 30px;
}

@media (max-width: 1000px) {
  .services-area .content-area .single-services {
    flex-basis: 30%;
  }
}

@media (max-width: 800px) {
  .services-area .content-area .single-services {
    flex-basis: 100%;
  }
  .single-services h2 {
    margin-bottom: 30px;
  }
}

.work-area .content-area li {
  padding: 5px;
  flex-basis: 50%;
  text-align: center;
}

.work-area img {
  width: 100%;
}

@media (max-width: 800px) {
  .work-area .content-area li {
    flex-basis: 100%;
    padding: 20px;
  }
}

.newsletter form {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  width: 60%;
}

.newsletter form .btn {
  padding: 20px 40px;
}

.newsletter form input {
  padding: 15px;
  margin-right: 30px;
  font-size: 10px;
  color: #656;
  flex: 1;
  border: 1px solid #000;
}

@media (max-width: 800px) {
  .newsletter form input {
    flex-basis: 100%;
    margin: 0 0 20px 0;
  }
}

.contact .content-area .single-contact {
  height: 300px;
  padding: 20px;
  flex-basis: 50%;
  text-align: center;
}

.single-contact i {
  font-size: 33px;
}

.single-contact input {
  width: 100%;
  height: 50px;
  margin-bottom: 25px;
  padding: 15px;
  border: 1px solid #262626;
}

.single-contact input [type='submit'] {
  background: #f8c300;
  border: none;
  font-size: 16px;
  font-family: Merienda;
  text-transform: uppercase;
  font-weight: bold;
}

@media (max-width: 800px) {
  .contact .content-area .single-contact {
    flex-basis: 100%;
    margin-bottom: 20px;
  }
}

footer {
  display: flex;
  align-items: center;
  justify-content: space-around;
  background: #262626;
  color: #fff;
  padding: 20px 0;
}

footer p {
  text-transform: uppercase;
  font-size: 14px;
  opacity: 0.6;
  align-self: center;
}
