body {
  margin: 0;
  padding: 0;
}

.brown {
  fill: #BFB0AA;
}

.white {
  fill: #FFFFFF;
}

.purple {
  fill: #54508D;
}

.gray {
  fill: #E8EDF0;
}

.yellow {
  fill: #FFCC33;
}

#wrapper {
  margin: auto;
  font-family: "Quicksand", sans-serif;
  scroll-snap-type: y mandatory;
}

#header {
  margin: auto;
  max-width: 1240px;
  padding: 1rem;
}
#header nav {
  font-size: 1.25rem;
}
#header nav ul {
  list-style: none;
  text-align: center;
  margin: 0;
  padding: 0;
}
#header nav ul li {
  display: inline-block;
  padding: 1rem;
}
#header nav ul li a {
  text-decoration: none;
  color: #000;
}
#header nav ul li a:hover {
  color: #54508d;
}
#header nav ul li #resume {
  display: inline-block;
  margin-top: 1rem;
  padding: 0.5rem 1rem;
  border-radius: 100px;
  text-decoration: none;
  background-color: #ffcc33;
}

#logo a {
  text-decoration: none;
  color: #000;
}
#logo a:hover {
  color: #54508d;
}
#logo svg {
  width: 90%;
  max-width: 100px;
  display: block;
  margin: auto;
  margin-top: 1rem;
}
#logo div {
  text-align: center;
  font-size: 2rem;
}

#showcase-wrapper {
  background-color: #efefef;
}

#showcase {
  padding: 3rem 2rem;
  margin: auto;
}
#showcase .category {
  display: inline-block;
  padding: 1rem;
  border-radius: 100px;
  background-color: #54508d;
  color: #fff;
  position: absolute;
  top: 1rem;
  left: -1rem;
}
#showcase .project {
  margin-bottom: 1rem;
  position: relative;
  height: 0;
  width: 100%;
  padding-bottom: 100%;
  transition: all 0.5s ease-in-out;
}
#showcase .project:hover {
  background-color: #fff;
  border-radius: 5px;
  cursor: pointer;
  box-shadow: 10px 10px 0px #b7b7b7;
}
#showcase .project img {
  width: 30%;
  max-width: 150px;
  position: relative;
  left: 50%;
  margin-top: 50%;
  transform: translateY(-50%) translateX(-50%);
}

#quote-wrapper {
  background-color: #54508d;
  color: #fff;
  padding: 2rem 0;
  text-align: center;
  font-size: 1.5rem;
  background-image: url(accent.svg);
  background-repeat: no-repeat;
  background-position: bottom right;
  background-size: auto 60%;
}
#quote-wrapper cite {
  font-size: 1rem;
  display: block;
  top: -2rem;
  margin-bottom: 1rem;
}
#quote-wrapper a {
  background-color: #ffcc33;
  font-size: 0.75rem;
  display: inline-block;
  text-decoration: none;
  color: #000;
  padding: 0.75rem;
  border-radius: 100px;
  margin-top: 1rem;
}

@keyframes shadow-drop {
  0% {
    box-shadow: 0px 0px 0px rgba(0, 0, 0, 0);
  }
  100% {
    box-shadow: 10px 10px 0px #b7b7b7;
  }
}
#footer {
  background-color: #efefef;
  text-align: center;
  padding: 2rem;
}
#footer #social-media a {
  color: #000;
  text-decoration: none;
  display: inline-block;
  padding: 0 1em;
  margin: 1em auto;
}
#footer #social-media a:hover {
  color: #54508d;
}

.gray-bg {
  background-color: #efefef;
}

.content-wrapper {
  max-width: 1240px;
  margin: auto;
  padding: 2rem;
}
.content-wrapper h1, .content-wrapper h2 {
  margin-top: 0;
}
.content-wrapper h2 {
  font-size: 1.7rem;
}
.content-wrapper a {
  text-decoration: none;
  font-weight: 800;
  color: #000;
}
.content-wrapper a:hover {
  color: #54508d;
}
.content-wrapper img {
  max-width: 90%;
  display: block;
  margin: auto;
}
.content-wrapper p {
  font-size: 1.5rem;
}

@keyframes jump {
  0% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-5px);
  }
  100% {
    transform: translateY(0px);
  }
}
#top-btn {
  display: block;
  max-width: 2.5rem;
  position: fixed;
  bottom: 1rem;
  right: 1rem;
  opacity: 0;
  z-index: -1;
  transition: opacity 0.2s ease-in-out;
}
#top-btn svg {
  display: block;
  width: 100%;
  animation-name: jump;
  animation-duration: 1s;
  animation-iteration-count: infinite;
}
#top-btn svg .top-circle {
  transition: all 0.2s ease-in-out;
}
#top-btn svg:hover .top-circle {
  fill: #54508d;
}

@media screen and (min-width: 800px) {
  #header nav ul {
    text-align: right;
  }

  #logo a {
    display: inline-block;
  }
  #logo svg {
    margin: 1rem;
    margin-bottom: 0;
  }
  #logo div {
    text-align: left;
    margin-left: 100px;
  }

  #hero {
    overflow: auto;
  }
  #hero svg {
    float: left;
    width: 50%;
  }
  #hero #hero-content {
    float: right;
    width: 50%;
    text-align: left;
    margin-bottom: 2rem;
  }
  #hero #hero-content p {
    text-align: left;
    font-size: 3rem;
  }
  #hero #hero-content a {
    font-size: 1rem;
    margin-left: 3rem;
  }

  #showcase, #services-wrapper, #rates {
    display: grid;
    grid-template-columns: calc(33% - 2rem) calc(33% - 2rem) calc(33% - 2rem);
    grid-gap: 3rem;
    max-width: 1240px;
    margin: auto;
  }

  #quote-wrapper {
    background-size: auto 90%;
  }

  #rates .rates {
    margin-bottom: 0;
  }
}
/* --------------------------------------- */
/* -------------  Animation  ------------- */
/* --------------------------------------- */
@keyframes phone {
  0% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-10px);
  }
  100% {
    transform: translateY(0px);
  }
}
#phone-model {
  animation-name: phone;
  animation-duration: 2s;
  animation-iteration-count: infinite;
}

@keyframes shadow {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(0.95);
  }
  100% {
    transform: scale(1);
  }
}
#shadow {
  transform-origin: center;
  animation-name: shadow;
  animation-duration: 2s;
  animation-iteration-count: infinite;
}

@keyframes bubble {
  0% {
    transform: translateY(5px);
    opacity: 0;
  }
  50% {
    transform: translateY(0px);
    opacity: 1;
  }
  100% {
    transform: translateY(5px);
    opacity: 0;
  }
}
#bubble {
  transform-origin: center;
  animation-name: bubble;
  animation-duration: 2s;
  animation-iteration-count: infinite;
}

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