.inner {
  display: inline-flex;
  align-items: center;
  width: 100%;
}

nav {
  width: 76%;
  display: inline-flex;
  justify-content: space-between;
}
@media (max-width: 500px) {
  nav {
    overflow: hidden;
    background-color: #2e2d2d;
    border-top: black solid 2px;
    flex-direction: column;
    width: 100%;
  }
}
nav a {
  font-family: "Bebas Neue";
  text-decoration: none;
  color: #f0ba8c;
  font-size: 30px;
}
@media (max-width: 500px) {
  nav a {
    float: left;
    display: block;
    color: #0066ff;
    text-align: center;
    padding: 14px 16px;
    text-decoration: none;
    font-size: 17px;
  }
}
nav a:hover {
  color: #438dfc !important;
}
@media (max-width: 500px) {
  nav a:hover {
    background-color: #585858;
    color: black;
  }
}

.topnav .icon {
  display: none;
}

.topnav a.active {
  color: #a7a3a1;
}

@media (max-width: 500px) {
  .topnav a:not(:first-child) {
    display: none;
  }
}

@media (max-width: 500px) {
  .topnav a.icon {
    float: right;
    display: block;
  }
}

@media (max-width: 500px) {
  .topnav.responsive {
    position: relative;
  }
}

@media (max-width: 500px) {
  .topnav.responsive .icon {
    position: absolute;
    right: 0;
    top: 0;
  }
}

@media (max-width: 500px) {
  .topnav.responsive a {
    float: none;
    display: block;
    text-align: left;
  }
}

.full_list-expanded {
  display: block;
  color: #d6a35f;
}

.logo {
  width: 20%;
  padding-left: 15px;
}
.logo img {
  width: 100px;
}
@media (max-width: 500px) {
  .logo {
    width: 100%;
    padding-left: 0px;
    display: inline-flex;
    justify-content: center;
  }
}

#header .inner {
  background-color: #0a0a0a;
}
@media (max-width: 500px) {
  #header .inner {
    background-color: #2e2d2d;
    display: inline-flex;
    flex-direction: column;
    justify-content: center;
  }
}

#back2Top {
  width: 40px;
  line-height: 40px;
  overflow: hidden;
  z-index: 999;
  display: none;
  cursor: pointer;
  -moz-transform: rotate(270deg);
  -webkit-transform: rotate(270deg);
  -o-transform: rotate(270deg);
  -ms-transform: rotate(270deg);
  transform: rotate(270deg);
  position: fixed;
  bottom: 50px;
  right: 0;
  background-color: peachpuff;
  color: #127df8;
  text-align: center;
  font-size: 30px;
  text-decoration: none;
}

#back2Top:hover {
  background-color: #272729;
  color: peachpuff;
}

html {
  background-color: #030303;
}

h1 {
  color: peachpuff;
}

h2 {
  color: #fffdfb;
  text-align: center;
  font-family: "Bebas Neue";
  font-size: 60px;
}
@media (max-width: 500px) {
  h2 {
    font-size: 25px;
  }
}

h3 {
  font-family: "Bebas Neue";
  color: #2f81fd;
  text-align: center;
}

p, h4, h5, h6 {
  font-family: "Roboto";
}

#banner .inner h1 {
  display: none;
}

#banner {
  background-image: linear-gradient(#2f81fd, #f8b894, black);
  height: 200px;
}
#banner .inner img {
  padding-right: 20%;
}
@media (max-width: 500px) {
  #banner .inner img {
    width: 100%;
    padding-right: 0%;
  }
}

.announcement button {
  border-radius: 20px;
  border-color: #ebe8e4;
  background-color: #313131;
  color: #e9b169;
  width: 250px;
  height: 50px;
}
@media (max-width: 500px) {
  .announcement button {
    display: none;
  }
}

#welcome .welcome-text h2 {
  padding-top: 30px;
  margin-bottom: 0px;
}

#welcome .welcome-text h3 {
  margin-top: 5px;
}

#welcome .welcome-text .typewriter {
  overflow: hidden;
  /* Ensures the content is not revealed until the animation */
  border-right: 0.15em solid orange;
  /* The typwriter cursor */
  white-space: nowrap;
  /* Keeps the content on a single line */
  margin: 0 auto;
  /* Gives that scrolling effect as the typing happens */
  letter-spacing: 0.05em;
  /* Adjust as needed */
  animation: typing 3.5s steps(40, end), blink-caret 0.75s step-end infinite;
}

/* The typing effect */
@keyframes typing {
  from {
    width: 0;
  }
  to {
    width: 100%;
  }
}
/* The typewriter cursor effect */
@keyframes blink-caret {
  from, to {
    border-color: transparent;
  }
  50% {
    border-color: orange;
  }
}
#one {
  background-color: #020202;
  color: #2f81fd;
  height: 600px;
  padding-top: 30px;
}
@media (max-width: 500px) {
  #one {
    height: auto;
  }
}
#one .inner {
  width: 100%;
  display: flex;
  justify-content: space-evenly;
}
@media (max-width: 500px) {
  #one .inner {
    flex-direction: column;
  }
}
#one .inner article {
  border: 1px solid #e9b169;
  width: 30%;
  text-align: center;
  height: 500px;
}
@media (max-width: 500px) {
  #one .inner article {
    width: 99%;
    height: auto;
  }
}
#one .inner article img {
  width: 100px;
  padding-top: 30px;
}
#one .inner article p {
  color: whitesmoke;
  padding-left: 15px;
  padding-right: 15px;
}

#about-one {
  height: auto;
  color: white;
  padding: 50px 50px 50px 50px;
}
@media (max-width: 500px) {
  #about-one {
    padding: 10px;
    text-align: center;
  }
}
#about-one .inner article {
  width: 100%;
  padding-bottom: 50px;
}
#about-one .inner article .content header h3 {
  text-align: center;
  font-size: 50px;
  color: #2f81fd;
}
#about-one .inner article .about-team header h3 {
  text-align: center;
  font-size: 50px;
  color: #e9b169;
}

#about-one .inner {
  display: flex;
  flex-direction: column;
}

@media (max-width: 500px) {
  .team-content {
    display: flex;
    flex-direction: row;
  }
}

.team-pics {
  display: flex;
  justify-content: space-around;
}
@media (max-width: 500px) {
  .team-pics {
    width: 30%;
    flex-direction: column;
  }
}

.team-descp {
  display: flex;
  justify-content: space-around;
  flex-direction: row;
}
@media (max-width: 500px) {
  .team-descp {
    width: 49%;
    flex-direction: column;
  }
}

.team-pics img, .team-descp h4 {
  width: 200px;
  border-radius: 50%;
  text-align: center;
}
@media (max-width: 500px) {
  .team-pics img, .team-descp h4 {
    width: 90%;
  }
}

#work-one .inner {
  display: flex;
  justify-content: center;
  flex-direction: column;
}
#work-one .inner article {
  width: 75%;
  height: auto;
  padding-bottom: 50px;
  color: white;
  text-align: center;
}
@media (max-width: 500px) {
  #work-one .inner article {
    width: 100%;
  }
}
#work-one .inner article .content header h3 {
  font-size: 50px;
}
#work-one .inner article .vid-photo #photos header h3 {
  font-size: 50px;
  color: #2f81fd;
}
#work-one .inner article .vid-photo #vids header h3 {
  font-size: 50px;
  color: #e9b169;
}

.vid-photo {
  display: flex;
  flex-direction: row;
}
@media (max-width: 500px) {
  .vid-photo {
    flex-direction: column;
  }
}

.inner .vid-photo article {
  height: auto;
  text-align: center;
}
@media (max-width: 500px) {
  .inner .vid-photo article {
    width: 90%;
  }
}

#photos {
  padding-right: 10px;
}
@media (max-width: 500px) {
  #photos {
    padding-right: 0px;
  }
}

#vids {
  padding-left: 10px;
}
@media (max-width: 500px) {
  #vids {
    padding-left: 0px;
  }
}

#service-one .inner {
  display: flex;
  justify-content: center;
  flex-direction: column;
}
#service-one .inner article {
  width: 75%;
  height: auto;
  padding-bottom: 50px;
  color: white;
  text-align: center;
  padding-bottom: 50px;
}
@media (max-width: 500px) {
  #service-one .inner article {
    width: 100%;
  }
}

#service-one .inner article h3 {
  font-size: 50px;
}

#contact-one {
  padding-bottom: 20px;
}
#contact-one .inner {
  display: flex;
  justify-content: center;
  flex-direction: column;
}
#contact-one form {
  width: 100%;
  border: solid 2px #e9b169;
  height: auto;
  padding-bottom: 50px;
  color: white;
  text-align: center;
  padding-top: 50px;
}
@media (max-width: 500px) {
  #contact-one form {
    width: 100%;
  }
}

#contact-one .contact {
  display: flex;
  flex-direction: row;
  justify-content: center;
}
#contact-one .contact .powr-web-form iframe {
  height: 450px;
}

.hvr-grow {
  transform: translateZ(0);
  box-shadow: 0 0 1px rgba(0, 0, 0, 0);
  backface-visibility: hidden;
  -moz-osx-font-smoothing: grayscale;
  transition-duration: 0.3s;
  transition-property: transform;
}

.hvr-grow:hover,
.hvr-grow:focus,
.hvr-grow:active {
  transform: scale(2.1);
}

.footer-content {
  width: 100%;
  display: flex;
  flex-direction: row;
  justify-content: flex-end;
}
@media (max-width: 500px) {
  .footer-content {
    justify-content: space-between;
    flex-direction: column-reverse;
  }
}

.footer-center {
  width: 100%;
}
@media (max-width: 500px) {
  .footer-center {
    border-right: solid black 0px;
    width: 100%;
  }
}

.contact-info {
  width: 30%;
}
@media (max-width: 500px) {
  .contact-info {
    width: 100%;
  }
}
.contact-info h4 {
  color: white;
}
.contact-info p {
  color: #6e4434;
}

footer {
  height: auto;
  background-color: #1f1e1e;
  color: #e9b169;
  text-align: center;
  padding-top: 25px;
  padding-bottom: 15px;
}
footer .social-icons img {
  padding-top: 20px;
  padding-bottom: 15px;
  width: 30px;
}
footer h5, footer h6 {
  margin-top: 0px;
}
footer h6 {
  margin-bottom: 2px;
}
footer img:hover, footer img:active {
  font-size: 150%;
}

/*# sourceMappingURL=styles.css.map */
