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

html {
  scroll-behavior: smooth;
}

#header {
  position: fixed;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: distribute;
      justify-content: space-around;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-family: "Poppins";
  width: 100%;
  height: 5rem;
  z-index: 1;
  background-color: rgba(255, 255, 255, 0.795);
}

#header .nav-links {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  list-style: none;
}

#header .nav-links .nav-link {
  padding: 40px;
  text-decoration: none;
  color: #242424;
  -webkit-transition: 0.5s linear;
  transition: 0.5s linear;
}

#header .nav-links .nav-link:hover {
  background-color: #ffbb00;
  -webkit-box-shadow: 0px 1px 10px 0px #ffbb00;
          box-shadow: 0px 1px 10px 0px #ffbb00;
}

#header .nav-links #home {
  background-color: transparent;
  border: 1px solid #ffbb00;
}

#header .nav-links #home:hover {
  background-color: #ffbb00;
}

#intro {
  height: 100vh;
}

#intro #box {
  -ms-flex-line-pack: center;
      align-content: center;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (2fr)[2];
      grid-template-columns: repeat(2, 2fr);
  grid-gap: 2px;
  padding: 2px;
}

#intro #box .img {
  overflow: hidden;
}

#intro #box img {
  height: 100%;
  width: 100%;
}

#intro .intro-title {
  position: relative;
  left: 7rem;
  margin-top: 40%;
  text-align: center;
}

#intro .intro-title h1 {
  font-family: "Reckoner";
  font-size: 5rem;
}

#intro .intro-title h1::before {
  content: "";
  display: block;
  width: 20%;
  height: 2px;
  background-color: black;
}

#intro .intro-title p {
  color: #423f3f;
}

#intro .intro-title #btn {
  background-color: #3a2929;
  width: 100px;
  height: 40px;
  border-radius: 4px;
  border: none;
  font-family: "Agency FB";
  font-size: 15px;
  margin-top: 3rem;
  color: white;
  cursor: pointer;
  -webkit-box-shadow: 0px 1px 10px 0px #3a2929;
          box-shadow: 0px 1px 10px 0px #3a2929;
}

#intro .intro-title #btn:hover {
  -webkit-box-shadow: 0px 1px 10px 0px #3a2929, 0px 1px 10px 0px #3a2929;
          box-shadow: 0px 1px 10px 0px #3a2929, 0px 1px 10px 0px #3a2929;
}

#what-we-do {
  text-align: center;
  margin-top: 6rem;
}

#what-we-do h1 {
  font-size: 30px;
  font-family: "Agency FB";
}

#what-we-do #what-box {
  margin-top: 30px;
}

#what-we-do #what-box #do {
  display: -ms-grid;
  display: grid;
  padding: 20px;
  -ms-grid-columns: (1fr)[2];
      grid-template-columns: repeat(2, 1fr);
  grid-gap: 2px;
}

#what-we-do #what-box #do .text {
  text-align: justify;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-flow: column;
          flex-flow: column;
}

#what-we-do #what-box .img {
  overflow: hidden;
}

#what-we-do #what-box .img img {
  width: 50%;
  height: 50%;
}

.gallery {
  background-image: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0.5))), url(./img/back.jpg);
  background-image: linear-gradient(rgba(0, 0, 0, 0.5)), url(./img/back.jpg);
  background-attachment: fixed;
  background-size: cover;
  font-family: "Agency FB";
  text-align: center;
  font-size: 30px;
  color: white;
  margin: 15rem 40px 0px 40px;
}

.gallery h1 {
  padding-top: 2rem;
}

.gallery #gal-box {
  margin-top: 4rem;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[3];
      grid-template-columns: repeat(3, 1fr);
}

.gallery #gal-box .img {
  overflow: hidden;
  padding: 1rem;
}

.gallery #gal-box img {
  height: 100%;
  width: 100%;
}

#contact {
  background-image: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0.897))), url(./img/contact.png);
  background-image: linear-gradient(rgba(0, 0, 0, 0.897)), url(./img/contact.png);
  background-attachment: fixed;
  background-size: cover;
  background-position: center;
  position: relative;
  text-align: center;
  top: 10rem;
  color: white;
}

#contact h2 {
  padding-top: 3rem;
  margin-top: 6rem;
  font-family: "Agency FB";
  font-size: 30px;
}

#contact .address-box {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[3];
      grid-template-columns: repeat(3, 1fr);
  grid-gap: 2px;
}

#contact .address-box i {
  font-size: 35px;
  margin-top: 4rem;
}

#contact .address-box h2 {
  padding-bottom: 1rem;
}

#contact .address-box a {
  text-decoration: none;
}

#contact .form {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 100px;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-flow: column;
          flex-flow: column;
}

#contact .form input {
  padding: 20px;
  background-color: transparent;
  border: none;
  color: white;
  border-bottom: 1px solid white;
}

#contact .form textarea {
  background-color: transparent;
  color: white;
}

#contact .form .btn {
  position: relative;
  top: 4rem;
}

#contact .form .btn #btn1,
#contact .form .btn #btn2 {
  width: 100px;
  height: 50px;
  cursor: pointer;
  color: white;
}

#contact .form .btn #btn1 {
  background-color: #2b6d04;
  border: none;
}

#contact .form .btn #btn1:hover {
  -webkit-box-shadow: 1px 0px 10px 0px #2b6d04;
          box-shadow: 1px 0px 10px 0px #2b6d04;
}

#contact .form .btn #btn2 {
  background-color: rgba(87, 84, 84, 0.959);
  border: none;
}

#contact .form .btn #btn2:hover {
  -webkit-box-shadow: 1px 0px 10px 0px rgba(87, 84, 84, 0.959);
          box-shadow: 1px 0px 10px 0px rgba(87, 84, 84, 0.959);
}

@media screen and (max-width: 800px) {
  #contact .address-box {
    -ms-grid-columns: (1fr)[1];
        grid-template-columns: repeat(1, 1fr);
  }
}

footer {
  position: relative;
  top: 10rem;
  background: #2e2300;
  background-size: cover;
  font-family: "Agency FB", Arial, Helvetica, sans-serif;
  background-size: cover;
}

footer .btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  -ms-flex-line-pack: end;
      align-content: flex-end;
}

footer .btn button {
  height: 50px;
  background-color: #888807;
  border: none;
  color: white;
  cursor: pointer;
}

footer h3 {
  color: #fff;
  text-align: center;
  font-size: 30px;
}

footer p {
  color: white;
}

footer #p {
  text-align: right;
}

footer #box {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[2];
      grid-template-columns: repeat(2, 1fr);
  padding: 50px;
  text-align: center;
}

footer span {
  color: yellow;
  font-size: 20px;
}

@media screen and (max-width: 800px) {
  footer h3 {
    font-size: 12px;
  }
  footer #box {
    -ms-grid-columns: (1fr)[1];
        grid-template-columns: repeat(1, 1fr);
  }
  footer #box .items {
    padding-top: 1rem;
  }
  footer #box .items p {
    font-size: 10px;
  }
  footer .icons i {
    width: 13px;
    height: 13px;
    font-size: 13px;
  }
  footer #p {
    font-size: 10px;
  }
  footer #p span {
    font-size: 12px;
  }
}
/*# sourceMappingURL=styles.css.map */