/* Colors Variables */
:root {
  --purple: #473551;
  --black: #000000;
  --white: #ffffff;
  --gray-10: #f5f5f5;
  --gray-light: #dbdbdb;
  --gray-mid: #757575;
  --gray-dark: #1d1d1d;
}

/* Font setup
Proxima Nova Light: font-family: "proxima-nova", sans-serif; font-weight: 300; font-style: normal;
Proxima Nova Regular: font-family: "proxima-nova", sans-serif; font-weight: 400; font-style: normal;
Proxima Nova Bold: font-family: "proxima-nova", sans-serif; font-weight: 700; font-style: normal;
Proxima Nova Black: font-family: "proxima-nova", sans-serif; font-weight: 900; font-style: normal;
*/

*,
html,
body {
  font-family: "proxima-nova", sans-serif;
  font-weight: 400;
  font-style: normal;
  color: var(--black);
  font-size: 1em;
  line-height: 120%;
  margin: 0;
  padding: 0;
}

* {
  box-sizing: border-box;
}

::-moz-selection,
::selection {
  color: var(--gray-light);
  background: var(--gray-dark);
}

::selection {
  color: var(--gray-light);
  background: var(--gray-dark);
}

a {
  text-decoration: none;
  color: var(--gray-mid);
  transition: .5s ease;

  &:hover {
    color: var(--black);
    text-decoration: underline;
  }

  &:focus,
  &:focus-visible,
  &:active:focus {
    outline: none;
    box-shadow: none;
  }
}

img::-moz-selection,
img::selection {
  color: var(--gray-light);
  background: var(--gray-light);
}

img::selection {
  color: var(--gray-light);
  background: var(--gray-light);
}

.btn {
  border-radius: .5em;
  transition: .2s ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  background-color: var(--purple);
  color: var(--white);
  border: none;
  font-weight: 400;
  padding: .8rem 1.5rem;

  & i {
    color: var(--white);
  }
}

.btn-primary:hover,
.btn-primary:focus,
.btn-primary:active {
  background-color: var(--black);
  border: 0;
  text-decoration: none;
}

.btn-primary:focus,
.btn-primary:focus-visible,
.btn-primary:active:focus {
  background-color: var(--black);
  outline: none;
  box-shadow: 0 0 0 .25rem rgba(71, 53, 81, .2);
}

.btn-secondary {
  background-color: var(--white);
  border: 2px solid var(--gray-mid);
  font-weight: 400;
  padding: .8rem 1.5rem;
  color: var(--purple);

  & i {
    color: var(--purple);
  }

  &:hover,
  &:focus,
  &:active {
    background-color: var(--gray-10);
    border: 2px solid var(--gray-dark);
    color: var(--black);
    text-decoration: none;

    & i {
      color: var(--black);
    }
  }
}

.btn-sm {
  padding: .5rem 1rem;
  font-size: .9rem;
}

.form-control {
  border-radius: .5em;
  border: 2px solid var(--gray-light);
  padding: .8rem 1rem;
}

.form-control:focus,
.form-control:focus-visible {
  border: 2px solid var(--gray-mid);
  box-shadow: 0 0 0 .2rem rgba(210, 206, 212, 0.2);
}

.accordion-button {
  font-weight: 700;
  padding: 1.3em 1.2em;
}

.accordion-button:not(.collapsed) {
  color: var(--purple);
  background-color: var(--gray-10);
  box-shadow: inset 0 -1px 0 rgba(0, 0, 0, .125);
}

.accordion-button:focus {
  border-color: var(--gray-mid);
  box-shadow: 0 0 0 .2rem rgba(210, 206, 212, 0.2);
}

/* WHATSAPP WIDGET */
.whatsapp-widget {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 1000;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  padding: .4em;
  background: #128C7E;
  animation-duration: 2s;
  animation-fill-mode: both;
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
  animation-timing-function: ease-in-out;
}

.whatsapp-widget:hover {
  -moz-animation-name: bounce;
  animation-name: bounce;
}

.whatsapp-widget a {
  width: 80%;
  height: auto;
  text-align: center;
}

/* NAVBAR */
.navbar {
  background-color: transparent;
  margin-bottom: 0rem;
}

.navbar-nav {
  margin-top: 1rem;
}

.navbar-nav .nav-item {
  padding: .2rem 0;
}

.navbar-brand img {
  width: 50px;
  height: auto;
  transition: .6s ease;
}

.navbar-brand img:hover {
  opacity: 0.8;
}

.nav-link,
.navbar-brand {
  font-size: 1.2rem;
  color: var(--gray-mid);
  transition: .6s ease;

  &:hover,
  &:focus {
    color: var(--white);
    text-decoration: none;
  }

  &:focus-visible,
  &:active:focus {
    outline: none;
    box-shadow: 0 0 0 .1rem rgba(71, 53, 81, 0.2);
    background-color: transparent;
  }
}

.navbar-collapse {
  position: fixed;
  top: 0;
  left: 0;
  height: 100%;
  width: 70%;
  background-color: var(--black);
  padding: 3rem;
  z-index: 100;
}

.navbar-collapse.collapsing {
  height: 100%;
  left: -75%;
  transition: height 0s ease;
}

.navbar-collapse.show {
  height: 100%;
  transition: left 400ms ease-in-out;
}

.navbar-toggler.collapsed~.navbar-collapse {
  transition: left 400ms ease-in;
}

.nav-item .active,
.nav-link.show {
  font-weight: 700;
  color: var(--white);
}

.navbar-toggler:focus {
  box-shadow: none;
}

/* Define the shape and color of the hamburger lines */
.navbar-toggler span {
  display: block;
  background-color: var(--black);
  height: 3px;
  width: 25px;
  margin-top: 5px;
  margin-bottom: 5px;
  position: relative;
  left: 0;
  opacity: 1;
  transition: all 0.35s ease-out;
  transform-origin: center left;

  &.invert {
    background-color: var(--white);
  }
}

/* top line needs a little padding */
.navbar-toggler span:nth-child(1) {
  margin-top: 0.3em;
}

/*** Animate collapse into X. */
/* top line rotates 45 degrees clockwise and moves up and in a bit to close the center of the X in the center of the button */
.navbar-toggler:not(.collapsed) span:nth-child(1) {
  transform: translate(15%, -33%) rotate(45deg);
}

/* center line goes transparent */
.navbar-toggler:not(.collapsed) span:nth-child(2) {
  opacity: 0;
}

/* bottom line rotates 45 degrees counter clockwise, in, and down a bit to close the center of the X in the center of the button  */
.navbar-toggler:not(.collapsed) span:nth-child(3) {
  transform: translate(15%, 33%) rotate(-45deg);
}

/*** Animate collapse open into hamburger menu */
/* top line moves back to initial position and rotates back to 0 degrees */
.navbar-toggler span:nth-child(1) {
  transform: translate(0%, 0%) rotate(0deg);
}

/* middle line goes back to regular color and opacity */
.navbar-toggler span:nth-child(2) {
  opacity: 1;
}

/* bottom line goes back to initial position and rotates back to 0 degrees */
.navbar-toggler span:nth-child(3) {
  transform: translate(0%, 0%) rotate(0deg);
}

/* PREFOOTER */
#prefooter {
  background-color: var(--gray-10);
  color: var(--gray-dark);
  padding: 3em 0;
  text-align: center;
}

#prefooter h3 {
  font-size: 1.3em;
  font-weight: 700;
  margin-bottom: .8em;
}

#prefooter .prefooter-icon {

  &:focus,
  &:focus-visible,
  &:active:focus {
    outline: none;
    box-shadow: none;
  }
}

#prefooter p {
  font-size: 1em;
  font-weight: 400;
  line-height: 1.5em;
  margin-bottom: .2rem;
}

#prefooter a.prefooter-icon img {
  transition: transform .5s ease;

  &:hover {
    transform: scale(1.15);
  }
}

#prefooter div.icon-social {
  display: inline-block;

  &:hover {
    transform: scale(1.15);
  }
}

#prefooter .icon-social img {
  width: 20px;
  margin: 0 .6em;
}

img.whatsapp {
  width: 40px;
}

/* FOOTER */
#footer {
  background-color: var(--white);
  color: var(--purple);
  padding: 1em 0;
  text-align: center;
}

/* MODAL (LIGHTBOX) */
.modal-dialog-centered {
  display: flex;
  align-items: center;
  min-height: calc(100% - 1rem);
}

.modal.fade .modal-dialog {
  transition: transform .3s ease-out;
  transform: scale(0.9);
}

.modal.show .modal-dialog {
  transform: scale(1);
}

.modal-content {
  background-color: transparent;
  border: none;
  box-shadow: none;
}

.modal-body {
  padding: 0;
  text-align: center;
  position: relative;
}

.modal-header {
  border: none;
  padding: 0;
  position: absolute;
  top: 20px;
  right: 20px;
  z-index: 10;

  & .btn-close {
    background-color: rgba(255, 255, 255, 0.9);
    color: var(--white);
    border-radius: 50%;
    width: 24px;
    height: 24px;
  }
}

#lightboxImage {
  max-width: 100%;
  max-height: 90vh;
  height: auto;
  border-radius: 0.75rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

#lightboxCaption {
  color: var(--white);
  margin-top: 1rem;
  font-weight: 400;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.btn-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  background-color: rgba(0, 0, 0, 0.4);
  color: var(--white);
  border: none;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  font-size: 1.2rem;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background-color 0.2s ease;
  cursor: pointer;

  & i {
    color: var(--white);
  }
}

.btn-nav:hover {
  background-color: rgba(0, 0, 0, 0.7);
  color: var(--white);
}

.btn-nav.d-none {
  display: none;
}

.btn-prev {
  left: 10px;
}

.btn-next {
  right: 10px;
}

/* HOMEPAGE */
.home-slider {
  background: url('../images/foto-slider-01.webp') no-repeat center center;
  background-size: cover;
}

.home-slider-container {
  background-color: rgba(0, 0, 0, .6);
  color: var(--white);
}

.home-slider-container .row {
  padding-bottom: 5em;
}

.home-slider-container h1 {
  color: var(--white);
  font-size: 3em;
  font-weight: 300;
}

.home-slider-container a#arrow-down {
  position: absolute;
  bottom: 2em;
  transition: .5s ease;

  &:hover {
    transform: translateY(2px);

    & i {
      color: var(--white);
    }
  }

  &:focus-visible,
  &:active:focus {
    outline: none;
    box-shadow: 0 0 0 .1rem rgba(255, 255, 255, 0.2);
  }
}

.home-slider-container a i {
  color: var(--gray-mid);
  font-size: 3em;
  transition: .5s ease;
}

#home-section-message.container {
  padding: 5em 0;
  width: 90%;
}

#home-section-message.container h2 {
  font-size: 2em;
  font-weight: 700;
}

#home-section-message.container p {
  font-size: 1.3em;
  font-weight: 400;
  line-height: 1.5em;
}

#home-section-about {
  background-color: var(--purple);
}

#home-section-about img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

#home-section-about p,
#home-section-about h1,
#home-section-about h2,
#home-section-about h3,
#home-section-about h4,
#home-section-about h5,
#home-section-about h6 {
  color: var(--white);
}

#home-section-about h4 {
  font-size: .9em;
  font-weight: 300;
  letter-spacing: .5em;
  text-transform: uppercase
}

#home-section-about h2 {
  font-size: 2.5em;
  font-weight: 400;
}

#home-section-about p {
  font-size: 1.2em;
  font-weight: 400;
  line-height: 1.5em;
}

#home-section-services.container {
  padding: 5em 0;
  width: 80%;
}

#home-section-services h2 {
  font-size: 2.5em;
  font-weight: 400;
}

#home-section-services .img-container img {
  transition: .5s ease;
  width: 100%;
}

#home-section-services .img-container img:hover {
  opacity: 0.7;
}

#home-section-services .service-description {
  font-size: 1.7em;
  font-weight: 400;
}

/* ABOUT */
#about-section-title {
  padding: 3em 0;
  background-color: var(--purple);
}

#about-section-title h1 {
  font-size: 2.1em;
  font-weight: 400;
  color: var(--white);
}

#about-section-content h2 {
  font-size: 1.6em;
  font-weight: 700;
  color: var(--purple);
}

#about-section-content p {
  font-size: 1.2em;
  font-weight: 400;
  line-height: 1.5em;
}

#about-section-content img {
  width: 100%;
  height: 200px;
  object-fit: cover;

  &.lp {
    max-height: 400px;
  }
}

/* PORTFOLIO */
#portfolio-section-title {
  padding: 3em;
  background-color: var(--gray-10);
}

#portfolio-section-title h1 {
  font-size: 2.1em;
  font-weight: 400;

  & i {
    margin-right: .4em;
    font-size: .5em;
    vertical-align: middle;
    color: var(--gray-mid);
  }
}

#portfolio-section-title p {
  font-size: .9em;
  font-weight: 400;
  line-height: 1.15em;
  color: var(--gray-mid);

  & strong {
    color: var(--gray-mid);
  }
}

#portfolio-gallery-title {
  padding: 2em;
  background-color: var(--purple);
}

#portfolio-gallery-title h1 {
  font-size: 2.1em;
  font-weight: 400;
  color: var(--white);
}

#portfolio-password-block {
  width: 80%;
  margin: 6em auto;
}

#portfolio-password-block i {
  font-size: 2em;
}

#portfolio-password-block a#access-portfolio i {
  font-size: 3em;
  line-height: 1em;
  color: var(--gray-mid);
  transition: ease .2s;

  &:hover {
    color: var(--black);
  }
}

#portfolio-password-block p#error-message {
  color: #dc3545;
  margin-top: .5em;
  font-size: .9em;
  font-weight: 400;
}

#portfolio-password-block #access-portfolio {
  cursor: pointer;
}

.portfolio-item-wrapper,
.gallery-item-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
  border-radius: .3rem;
  cursor: pointer;
}

.portfolio-item,
.gallery-item {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.portfolio-item-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.6);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
  text-align: center;
  padding: 1rem;
}

.portfolio-item-overlay-text {
  font-size: 1.5em;
  font-weight: 400;
  color: var(--white);
}

.portfolio-item-wrapper:hover .portfolio-item,
.gallery-item-wrapper:hover .gallery-item {
  transform: scale(1.05);
}

.portfolio-item-wrapper:hover .portfolio-item-overlay {
  opacity: 1;
}

/* BLOG */
#blog-section-title,
#blog-post-title {
  background: no-repeat center center;
  background-size: cover;
}

.blog-section-title-container,
.blog-post-title-container {
  background-color: rgba(0, 0, 0, .4);
}

.blog-post-title-container {
  padding: 7em 0;
}

#blog-section-title h1 {
  color: var(--white);
  font-size: 2.1em;
  font-weight: 400;
}

#blog-section-content.container {
  width: 70%;
}

#blog-section-content .img-container {
  width: auto;
}

#blog-section-content .img-container img {
  transition: .5s ease;
  width: 100%;
  height: 150px;
  object-fit: cover;
}

#blog-section-content .img-container img:hover {
  opacity: 0.7;
}

#blog-section-content .blog-article-link a {
  font-size: 1.2em;
  line-height: 105%;
  font-weight: 400;
}

#blog-post-content h1 {
  font-size: 2em;
  font-weight: 700;
  margin-bottom: .5em;
  color: var(--purple);
}

#blog-post-content h2 {
  font-size: 1.5em;
  font-weight: 700;
  margin-bottom: .5em;
  color: var(--gray-dark);
}

#blog-post-content h3 {
  font-size: 1.3em;
  font-weight: 700;
  margin-bottom: .7em;
  color: var(--purple);
}

#blog-post-content p {
  font-size: 1.1em;
  line-height: 1.2em;
  color: var(--gray-dark);
  margin-bottom: 1.6em;
}

#blog-post-content ul {
  margin-bottom: 2em;
}

#blog-post-content ul li {
  font-size: 1.1em;
  line-height: 1.2em;
  color: var(--gray-dark);
  margin-bottom: .9em;
}

#blog-post-content blockquote {
  font-size: 1.15em;
  line-height: 1.25em;
  color: var(--purple);
  border-left: 2px solid var(--purple);
  padding-left: 1em;
}

#blog-post-content mark {
  background-color: var(--gray-10);
  padding: 0;
  line-height: 1.7em;
  color: var(--purple);
}

/* CONTACT */
#contact-section-content.container-fluid {
  width: 100%;
  border-top: 1px solid var(--gray-light);
}

#contact-section-title h2 {
  font-size: 2.1em;
  font-weight: 400;
  color: var(--white);
}

#contact-section-content p {
  font-size: 1.2em;
  font-weight: 400;
  line-height: 1.5em;
}

/* LANDING PAGES */
.lp-slider {
  background-size: cover;
}

.lp-slider-container {
  background-color: rgba(0, 0, 0, .6);
  color: var(--white);
}

.lp-slider-container h1 {
  color: var(--white);
  font-size: 3em;
  font-weight: 700;
}

.lp-slider-container .logo {
  transition: .5s ease;
  width: 200px;
  margin-top: 3em;
}

#about-section-content.lp img {
  max-height: 400px;
}

#lp-section-work {
  background-color: var(--gray-10);

  & h2 {
    font-weight: 700;
    font-size: calc(1.6rem + .9vw);
  }

  & h3 {
    font-weight: 700;
  }

  & p {
    font-size: 1.2em;
    line-height: 1.5em;
  }

  & .imgwork {
    max-width: 350px;
    margin: 0 auto;
  }
}

#lp-section-work .work {
  background-color: var(--white);
  border-radius: .5em;

  & p {
    font-size: 1.1em;
    line-height: 1.3em;
  }
}

/* 404 */
.page404 .img404 {
  width: 80%;

  & {
    @media (min-width: 768px) {
      width: 70%;
    }
  }

  & {
    @media (min-width: 992px) {
      width: 50%;
    }
  }
}

/* X-Small devices (portrait phones, less than 576px)
No media query for `xs` since this is the default in Bootstrap */

/* Small devices (landscape phones, 576px and up) */
@media (min-width: 576px) {

  /* NAVBAR */
  .nav-link {
    font-size: 2rem;
  }

  /* BLOG */
  #blog-section-content.container {
    width: 100%;
  }

  /* LANDING PAGES */
  .lp-slider-container h1 {
    font-size: 3em;
    font-weight: 400;
  }

  .lp-slider-container .logo {
    width: 250px;
  }

  /* MODAL (LIGHTBOX) */
  .modal-lg,
  .modal-xl {
    max-width: 90%;
  }
}

/* Medium devices (tablets, 768px and up) */
@media (min-width: 768px) {

  /* PREFOOTER */
  #prefooter div.row div {
    border-right: 1px solid var(--gray-light);
  }

  #prefooter div.row div:last-child {
    border-right: 0;
  }

  /* HOMEPAGE */
  .home-slider-container h1 {
    font-size: 4em;
  }

  #home-section-message.container {
    width: 70%;
  }

  #home-section-message.container h2 {
    font-size: 2.5em;
    font-weight: 700;
  }

  #home-section-message.container p {
    font-size: 1.4em;
    font-weight: 400;
    line-height: 1.5em;
  }

  #home-section-about img {
    height: auto;
  }

  #home-section-services.container {
    width: auto;
  }

  #home-section-services .service-description {
    font-size: 1.4em;
    font-weight: 400;
  }

  /* ABOUT */
  #about-section-title h1 {
    font-size: 2.5em;
    font-weight: 400;
  }

  #about-section-content h2 {
    font-size: 1.5em;
  }

  #about-section-content p {
    font-size: 1.2em;
    font-weight: 400;
    line-height: 1.4em;
  }

  /* PORTFOLIO */
  #portfolio-gallery-title h1 {
    font-size: 2.5em;
  }

  #portfolio-password-block {
    width: 40%;
  }

  /* BLOG */
  #blog-section-title h1 {
    font-size: 2.5em;
  }

  #blog-post-content h1 {
    font-size: 3em;
    margin-bottom: 1em;
  }

  #blog-post-content h2 {
    font-size: 2em;
  }

  #blog-post-content h3 {
    font-size: 1.6em;
  }

  #blog-post-content p {
    font-size: 1.2em;
    line-height: 1.4em;
  }

  #blog-post-content ul li {
    font-size: 1.2em;
    line-height: 1.4em;
  }

  #blog-post-content blockquote {
    font-size: 1.35em;
    line-height: 1.4em;
  }

  /* CONTACT */
  #contact-section-title h2 {
    font-size: 2.5em;
    font-weight: 400;
  }

  #contact-section-content p {
    font-size: 1.2em;
    font-weight: 400;
    line-height: 1.4em;
  }

  /* LANDING PAGES */
  .lp-slider-container h1 {
    font-size: 5em;
    font-weight: 300;
  }

  .lp-slider-container .logo {
    width: 300px;
  }

  #lp-section-work {
    & h2 {
      font-weight: 400;
    }
  }
}

/* Large devices (desktops, 992px and up) */
@media (min-width: 992px) {

  /* NAVBAR */
  .navbar-nav {
    margin-top: 0;
  }

  .navbar-brand img {
    width: 230px;
    height: auto;
  }

  .navbar-collapse {
    position: inherit;
    background-color: transparent;
    padding: 0;
  }

  .navbar-nav .nav-item {
    padding: 0 1.3rem;
  }

  .nav-link {
    font-size: 1.2rem;
    color: var(--gray-mid);
    text-decoration: none;
    padding-bottom: .3rem;
    border-bottom: .15rem solid transparent;
    transition: 0.2s ease;

    &:hover,
    &:focus {
      color: var(--black);
      border-bottom: .15rem solid var(--black);
    }

    &.invert {
      color: var(--gray-light);

      &:hover,
      &:focus {
        color: var(--white);
        border-bottom: .15rem solid var(--gray-light);
      }
    }
  }

  .nav-item .active {
    font-weight: 700;
    border-bottom: .15rem solid var(--black);

    &.invert {
      border-bottom: .15rem solid var(--gray-light);
    }
  }

  .nav-link.active,
  .nav-link.show {
    color: var(--black);

    &.invert {
      color: var(--white);
    }
  }

  .dropdown:hover .dropdown-menu {
    display: block;
  }

  /* MODAL (LIGHTBOX) */
  .modal-lg,
  .modal-xl {
    max-width: 90%;
  }

  /* ABOUT */
  #about-section-title {
    padding: 5.5em 0;
  }

  #about-section-title h1 {
    font-size: 3em;
    font-weight: 300;
  }

  #about-section-content h2 {
    font-size: 1.7em;
  }

  #about-section-content p {
    font-size: 1.1em;
    font-weight: 400;
    line-height: 1.3em;
  }

  #about-section-content img {
    height: auto;
  }

  /* PORTFOLIO */
  #portfolio-section-title {
    padding: 5em 4em;
  }

  #portfolio-section-title h1 {
    font-size: 3em;
    font-weight: 300;
  }

  #portfolio-section-title p {
    font-size: 1.2em;
    font-weight: 400;
    line-height: 1.3em;
  }

  #portfolio-gallery-title h1 {
    font-size: 3em;
    font-weight: 300;
  }

  /* BLOG */
  #blog-section-title h1 {
    font-size: 3em;
    font-weight: 300;
  }

}

/* X-Large devices (large desktops, 1200px and up) */
@media (min-width: 1200px) {

  /* NAVBAR */
  .navbar-brand img {
    width: 350px;
    height: auto;
  }

  /* HOMEPAGE */
  .home-slider-container h1 {
    font-size: 5em;
  }

  #home-section-message.container {
    padding: 5em 0;
    width: 60%;
  }

  #home-section-message.container h2 {
    font-size: 3em;
    font-weight: 700;
  }

  #home-section-message.container p {
    font-size: 1.6em;
    font-weight: 400;
    line-height: 1.5em;
  }

  #home-section-services .service-description {
    font-size: 1.7em;
  }

  /* ABOUT */
  #about-section-content p {
    font-size: 1.2em;
    line-height: 1.4em;
  }

  /* CONTACT */
  #contact-section-content p {
    font-size: 1.2em;
    line-height: 1.4em;
  }

}

/* XX-Large devices (larger desktops, 1400px and up) */
@media (min-width: 1400px) {

  /* ABOUT */
  #about-section-content p {
    font-size: 1.4em;
    line-height: 1.6em;
  }

  /* LANDING PAGES */
  .lp-slider-container h1 {
    font-size: 5em;
  }

  .lp-slider-container .logo {
    width: 400px;
    margin-top: 3em;
  }
}

@keyframes bounce {

  0%,
  40%,
  50%,
  80%,
  100% {
    transform: translateY(0);
  }

  20% {
    transform: translateY(-10px);
  }
}