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

body {
  font-family: 'Rokkitt', serif;
  font-size: 1.2em;
  font-weight: 500;
  list-style: none;
}

.orange {
  color: #ff9966;
}

.cinzel {
  font-family: 'Cinzel', serif;
}

.navbar nav {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  width: 100%;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  padding: 1%;
}

.navbar .logo {
  display: inline-block;
  width: 10%;
}

.navbar .logo img {
  height: 60%;
  width: 60%;
}

.navbar .span {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  vertical-align: middle;
  font-family: "Monoton", cursive;
  font-size: 2.25em;
  width: 100%;
}

.navbar .span span {
  letter-spacing: 5px;
}

.navbar .navlinks {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: normal;
      -ms-flex-pack: normal;
          justify-content: normal;
}

.navbar .navlinks ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}

.navbar .navlinks li {
  display: inline-block;
  padding: 2.5% 2.5%;
}

.navbar .navlinks li a {
  text-decoration: none;
  color: #000;
  display: block;
}

.navbar .navlinks li a::before {
  -webkit-transition: 0.5s;
  transition: 0.5s;
  height: 5px;
  content: "";
  background-color: #ff9966;
  bottom: 5px;
}

.navbar .navlinks li a:hover {
  font-size: 1.5rem;
  margin-bottom: 1px solid #ff9966;
  color: #ff9966;
  font-weight: 500;
  top: 5px;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

.navbar .burguer {
  display: none;
}

@media screen and (min-width: 300px) and (max-width: 599px) {
  .navbar .navlinks {
    display: none;
  }
  .navbar .logo img {
    height: 100%;
    width: 100%;
  }
  .navbar .span span {
    font-size: 0.4em;
    padding: 1.5% 0 0 4%;
  }
}

@media screen and (min-width: 600px) and (max-width: 899px) {
  .navbar .logo {
    display: inline-block;
    width: 10%;
    margin-top: 2%;
  }
  .navbar .span {
    font-size: 2em;
    padding: 2.5% 0 0 2%;
  }
  .navbar .navlinks {
    display: none;
  }
  .navbar .logo img {
    height: 100%;
    width: 100%;
  }
}

@media screen and (min-width: 900px) and (max-width: 1390px) {
  .navbar .logo {
    width: 13%;
    margin-top: 0.25%;
  }
  .navbar .span {
    font-size: 1.7em;
    width: 90%;
  }
  .navbar a:hover {
    font-size: 1.25rem;
  }
}

#hero {
  height: 80vh;
  background: url("../img/undraw_counting_stars_rrnl.svg") no-repeat bottom center;
  background-size: contain;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 0 7vw;
}

#hero .hero-container h2 {
  position: relative;
  bottom: 2.5em;
  font-size: 2.3rem;
  text-transform: capitalize;
  text-align: start;
  line-height: 150%;
  margin: 3%;
  padding: 5%;
  width: 35%;
}

#hero .hero-container h4 {
  position: relative;
  left: 45%;
  top: 2.5em;
  font-size: 1.7rem;
  line-height: 150%;
  text-align: end;
  width: 45%;
}

@media only screen and (min-width: 300px) and (max-width: 599px) {
  #hero {
    padding: 0;
    display: block;
    margin-bottom: 37vh;
  }
  #hero .hero-container h2 {
    font-size: 2rem;
    width: 90%;
    position: relative;
    top: 2.5em;
    text-align: center;
  }
  #hero .hero-container h4 {
    font-size: 1.15rem;
    text-align: center;
    width: 90%;
    position: relative;
    left: 1em;
    top: 25em;
  }
}

@media only screen and (max-height: 700px) {
  #hero {
    margin-bottom: 42vh;
  }
  #hero .hero-container h2 {
    font-size: 1.75rem;
    top: .25em;
  }
  #hero .hero-container h4 {
    font-size: 1.15rem;
    top: 21em;
  }
}

@media only screen and (min-width: 600px) and (max-width: 899px) {
  #hero {
    padding: 0;
    display: block;
    margin-bottom: 10vh;
  }
  #hero .hero-container h2 {
    font-size: 2rem;
    width: 90%;
    position: relative;
    top: 1em;
    text-align: center;
  }
  #hero .hero-container h4 {
    font-size: 1.15rem;
    text-align: center;
    width: 50%;
    position: relative;
    left: 17em;
    top: 27em;
  }
}

@media screen and (min-width: 900px) and (max-width: 1390px) {
  #hero .hero-container h2 {
    font-size: 2rem;
    width: 35%;
    top: 1em;
  }
  #hero .hero-container h4 {
    width: 60%;
  }
}

#features {
  margin: 10vh 5vw;
}

#features h4 {
  text-transform: uppercase;
  font-size: 2em;
  font-weight: 400;
  margin-bottom: 7%;
}

#features .features-container {
  padding: 5% 0;
  text-align: center;
}

#features .features-container .services {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  line-height: 150%;
}

#features .features-container .services .image {
  margin: 0;
  padding: 0;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
}

#features .features-container .services .image img {
  height: 80%;
  width: 80%;
}

#features .features-container .services .service-text {
  width: 40%;
  text-align: justify;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding-right: 10%;
  font-size: 1.20em;
}

#features .features-container .process {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  line-height: 150%;
  margin-top: 5vh;
}

#features .features-container .process .image {
  margin: 0;
  padding-left: 15%;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
}

#features .features-container .process .image img {
  height: 80%;
  width: 80%;
}

#features .features-container .process .process-text {
  width: 30%;
  text-align: justify;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  font-size: 1.25em;
}

@media screen and (min-width: 300px) and (max-width: 599px) {
  #features {
    margin: 1vh 1vw;
  }
  #features h4 {
    font-size: 1.75rem;
  }
  #features .features-container .services {
    display: block;
    padding: 0 3%;
  }
  #features .features-container .services .service-text {
    font-size: 1.05em;
    width: 100%;
    text-align: center;
    padding-right: 0;
  }
  #features .features-container .process {
    display: block;
    margin-top: 8%;
    padding: 0 3%;
  }
  #features .features-container .process .process-text {
    font-size: 1.05em;
    width: 100%;
    text-align: center;
  }
  #features .features-container .process .image {
    display: block;
    margin-top: 5vh;
  }
}

@media screen and (min-width: 600px) and (max-width: 899px) {
  #features {
    margin: 1vh 1vw;
  }
  #features h4 {
    font-size: 2.5rem;
  }
  #features .features-container .services {
    display: block;
    padding: 0 3%;
  }
  #features .features-container .services .service-text {
    font-size: 1.25em;
    width: 100%;
    text-align: center;
    padding-right: 0;
  }
  #features .features-container .process {
    display: block;
    margin-top: 8%;
    padding: 0 3%;
  }
  #features .features-container .process .process-text {
    font-size: 1.25em;
    width: 100%;
    text-align: center;
  }
  #features .features-container .process .image {
    display: block;
    margin-top: 5vh;
  }
}

@media screen and (min-width: 900px) and (max-width: 1390px) {
  #features h4 {
    line-height: 120%;
  }
  #features .features-container .services .service-text {
    width: 70%;
    text-align: justify;
  }
  #features .features-container .process .process-text {
    width: 70%;
  }
}

#clients {
  margin: 5vh 7vw;
}

#clients .clients-text {
  text-align: center;
}

#clients .clients-text h4 {
  text-transform: uppercase;
  font-size: 2rem;
}

#clients .clients-container {
  margin: 2%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

#clients .clients-container .client {
  display: inline-block;
  background: #cac9c9;
  height: 15vh;
  width: 15vw;
  margin: 1em;
  text-align: center;
}

#clients .clients-container .client img {
  display: inline-block;
  height: 100%;
  width: 80%;
}

@media screen and (min-width: 300px) and (max-width: 599px) {
  #clients {
    margin: 5vh 0;
  }
  #clients .clients-text h4 {
    font-size: 1.65rem;
  }
  #clients .clients-container {
    width: 90%;
    margin: 0 auto;
    display: block;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    text-align: center;
  }
  #clients .clients-container .client {
    display: block;
    width: 100%;
    background: #cac9c9;
    margin: .75rem 0;
    padding: 5%;
  }
}

@media screen and (min-width: 600px) and (max-width: 899px) {
  #clients {
    margin: 5vh 0 3vh 0;
  }
  #clients .clients-text h4 {
    font-size: 2.2rem;
    margin-bottom: 4vh;
  }
  #clients .clients-container {
    width: 90%;
    margin: 0 auto;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  #clients .clients-container .client {
    display: block;
    width: 40%;
    background: #cac9c9;
    margin: .75rem 1rem;
    padding: 5%;
  }
}

#contact {
  margin: 10vh 7vw 2vh 7vw;
  text-align: center;
}

#contact h4 {
  text-transform: uppercase;
  font-size: 2em;
  margin-bottom: 2%;
}

#contact p {
  font-weight: bold;
  font-size: 1.5em;
}

#contact .contact-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  padding: 1% 5%;
}

#contact .contact-container .contact-form {
  width: 35%;
  text-align: center;
  margin: 5% 10% 5% 15%;
}

#contact .contact-container .contact-form input, #contact .contact-container .contact-form select, #contact .contact-container .contact-form button {
  margin: 5% 0;
  width: 100%;
  font-size: 1.25rem;
  padding: 2%;
}

#contact .contact-container .contact-form button:hover {
  color: #ff9966;
  font-weight: 500;
}

#contact .contact-container .contact-image {
  margin: 0;
  padding: 0;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

#contact .contact-container .contact-image img {
  height: 80%;
  width: 80%;
}

@media screen and (min-width: 300px) and (max-width: 599px) {
  #contact {
    margin: 10vh 2vw 4vh 2vw;
  }
  #contact h4 {
    font-size: 1.75rem;
    margin-bottom: 2vh;
  }
  #contact p {
    font-size: 1.25rem;
  }
  #contact .contact-container {
    display: block;
    padding: 0 10%;
    margin-top: 3vh;
  }
  #contact .contact-container .contact-form {
    width: 100%;
    margin: 0;
    padding: 0;
  }
  #contact .contact-container .contact-image {
    text-align: center;
    margin-top: 5vh;
  }
}

@media screen and (min-width: 600px) and (max-width: 899px) {
  #contact {
    margin: 5vh 2vw 4vh 2vw;
  }
  #contact h4 {
    font-size: 2.2rem;
    margin-bottom: 2vh;
  }
  #contact p {
    font-size: 1.75rem;
  }
  #contact .contact-container {
    display: block;
    padding: 0 20%;
    margin-top: 3vh;
  }
  #contact .contact-container .contact-form {
    width: 100%;
    margin: 0;
    padding: 0;
  }
  #contact .contact-container .contact-form input, #contact .contact-container .contact-form select, #contact .contact-container .contact-form button {
    margin: 3% 0;
    width: 100%;
    font-size: 1.5rem;
    padding: 2%;
  }
  #contact .contact-container .contact-image {
    text-align: center;
    margin-top: 5vh;
  }
}

@media screen and (min-width: 900px) and (max-width: 1390px) {
  #contact .contact-container .contact-form {
    width: 70%;
  }
}

footer {
  margin: 0 auto;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-align: center;
  background-color: #000;
}

footer .footlinks {
  display: inline-block;
  width: 60vw;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

footer li {
  display: inline-block;
  margin: 2% 5%;
  padding: 1%;
}

footer .footerLink {
  color: #fff;
  text-decoration: none;
  display: block;
  width: 7vw;
  -webkit-transition: .5s ease-in-out;
  transition: .5s ease-in-out;
}

footer .footerLink:hover {
  -webkit-transform: scale(1.5);
          transform: scale(1.5);
  background-color: #fff;
  color: #000;
  border: 1px solid #fff;
  border-radius: 5px;
}

footer .footspan {
  -ms-flex-line-pack: center;
      align-content: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

footer .footspan span {
  color: white;
  font-family: 'Cinzel', cursive;
  font-size: 1.25em;
}

footer .footer-logo {
  display: inline-block;
}

footer .footer-logo img {
  margin: 2vh;
  height: 5vh;
  width: 5vw;
}

footer .copyright span {
  color: #fff;
}

footer .copyright #nicol-link {
  color: #fff;
}

@media (max-width: 400px) {
  footer .footer-logo {
    margin: 0;
    padding: 0;
  }
  footer .footer-logo img {
    height: 10vh;
    width: 10vw;
  }
  footer .footspan {
    padding-bottom: 5%;
  }
  footer .footlinks {
    margin: 0 auto;
  }
  footer .footlinks ul {
    text-align: justify;
  }
  footer .footlinks li {
    display: block;
    text-align: justify;
    padding-left: 30%;
    margin-bottom: 5%;
  }
  footer .copyright {
    margin-top: 5%;
  }
}
/*# sourceMappingURL=main.css.map */