:root {
  --white: hsl(0, 0%, 100%);
  --soft-red: hsl(7, 99%, 70%);
  --soft-red-a: hsla(7, 99%, 70%, 0.3);
  --yellow: hsl(51, 100%, 49%);
  --yellow-a: hsla(51, 100%, 49%, 0.3);
  --dark-desaturated-cyan: hsl(167, 40%, 24%);
  --dark-blue: hsl(198, 62%, 26%);
  --dark-moderate-cyan: hsl(168, 34%, 41%);
  --very-dark-desaturated-blue: hsl(212, 27%, 19%);
  --very-dark-grayish-blue: hsl(213, 9%, 39%);
  --dark-grayish-blue: hsl(232, 10%, 55%);
  --grayish-blue: hsl(210, 4%, 67%);
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Barlow', sans-serif;
  overflow-x: hidden;
  background-color: #ddd;
}

.main {
  overflow: hidden;
}

.container {
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
}

.nav {
  padding: 20px;
  padding-right: 10px;
  color: var(--white);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.nav-desktop {
  display: none;
}

.nav-mobile {
  font-size: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: calc(100% - 40px);
  position: absolute;
  background-color: var(--white);
  top: 120px;
  -webkit-transform: translateY(-200%);
          transform: translateY(-200%);
  z-index: 1;
  padding: 40px;
  opacity: 1;
  -webkit-transition: opacity .5s, -webkit-transform .5s;
  transition: opacity .5s, -webkit-transform .5s;
  transition: transform .5s, opacity .5s;
  transition: transform .5s, opacity .5s, -webkit-transform .5s;
}

.nav-mobile::before {
  position: absolute;
  content: '';
  width: 0;
  height: 0;
  border-bottom: 100px solid var(--white);
  border-left: 100px solid transparent;
  top: -40px;
  right: 0;
}

.nav-mobile a {
  margin-bottom: 40px;
  text-decoration: none;
  color: var(--grayish-blue);
  -webkit-transition: color .3s, background-color .3s;
  transition: color .3s, background-color .3s;
}

.nav-mobile a:hover {
  color: var(--dark-blue);
}

.nav-mobile a:last-child {
  font-family: 'Fraunces', serif;
  background-color: var(--yellow-a);
  padding: 15px 30px;
  color: var(--dark-blue);
  border-radius: 32px;
  text-transform: uppercase;
  margin-bottom: 0;
}

.nav-mobile a:last-child:hover {
  color: var(--very-dark-desaturated-blue);
  background-color: var(--yellow);
}

.nav__logo {
  font-size: 16px;
}

.nav__logo a {
  text-decoration: none;
  color: var(--white);
}

.nav__btn {
  font-size: 32px;
  cursor: pointer;
  padding: 10px;
  z-index: 99;
}

.nav .active {
  opacity: 1;
  -webkit-transform: translateY(0);
          transform: translateY(0);
}

.header {
  background-image: url("../images/mobile/image-header.jpg");
  height: 100vh;
  background-size: cover;
  background-position: 50%;
  position: relative;
}

.header__text {
  color: var(--white);
  font-size: 26px;
  letter-spacing: 6px;
  margin: 30px;
  font-family: 'Fraunces', serif;
  text-transform: uppercase;
  text-align: center;
  margin-top: 120px;
}

.header__arrow {
  position: absolute;
  margin-top: 40px;
  left: 50%;
  bottom: 100px;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  -webkit-animation: bounce-top 2s infinite both;
          animation: bounce-top 2s infinite both;
}

/* ----------------------------------------------
 * Generated by Animista on 2021-10-14 17:19:29
 * Licensed under FreeBSD License.
 * See http://animista.net/license for more info. 
 * w: http://animista.net, t: @cssanimista
 * ---------------------------------------------- */
/**
 * ----------------------------------------
 * animation bounce-top
 * ----------------------------------------
 */
@-webkit-keyframes bounce-top {
  0% {
    -webkit-transform: translateY(-45px);
    transform: translateY(-45px);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
    opacity: 1;
  }
  24% {
    opacity: 1;
  }
  40% {
    -webkit-transform: translateY(-24px);
    transform: translateY(-24px);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
  65% {
    -webkit-transform: translateY(-12px);
    transform: translateY(-12px);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
  25%,
  55%,
  75%,
  87% {
    -webkit-transform: translateY(0px);
    transform: translateY(0px);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
  }
  100% {
    -webkit-transform: translateY(0px);
    transform: translateY(0px);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
    opacity: 1;
  }
}
@keyframes bounce-top {
  0% {
    -webkit-transform: translateY(-45px);
    transform: translateY(-45px);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
    opacity: 1;
  }
  24% {
    opacity: 1;
  }
  40% {
    -webkit-transform: translateY(-24px);
    transform: translateY(-24px);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
  65% {
    -webkit-transform: translateY(-12px);
    transform: translateY(-12px);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
  25%,
  55%,
  75%,
  87% {
    -webkit-transform: translateY(0px);
    transform: translateY(0px);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
  }
  100% {
    -webkit-transform: translateY(0px);
    transform: translateY(0px);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
    opacity: 1;
  }
}

.about__img {
  width: 100%;
  height: 50vh;
  background-size: cover;
  background-position: center;
}

.about__img--first {
  background-image: url("../images/mobile/image-transform.jpg");
}

.about__img--second {
  background-image: url("../images/mobile/image-stand-out.jpg");
}

.about__details {
  text-align: center;
  background-color: var(--white);
  padding: 60px 20px;
}

.about__heading {
  font-family: 'Fraunces', serif;
  font-size: 30px;
  margin-bottom: 30px;
}

.about__text {
  color: var(--grayish-blue);
  line-height: 1.5;
  font-size: 18px;
  margin-bottom: 30px;
}

.about__link {
  font-family: 'Fraunces', serif;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--very-dark-desaturated-blue);
  position: relative;
  z-index: 1;
}

.about__link--first:hover::before {
  background-color: var(--yellow);
}

.about__link--second:hover::before {
  background-color: var(--soft-red);
}

.about__link::before {
  position: absolute;
  content: '';
  width: 100%;
  height: 5px;
  bottom: 0;
  border-radius: 8px;
  z-index: -1;
  -webkit-transition: background-color .3s;
  transition: background-color .3s;
}

.about__link--first::before {
  background-color: var(--yellow-a);
}

.about__link--second::before {
  background-color: var(--soft-red-a);
}

.services__section {
  width: 100%;
  height: 80vh;
  background-size: cover;
  background-position: 50% 50%;
  position: relative;
}

.services__section--first {
  background-image: url("../images/mobile/image-graphic-design.jpg");
}

.services__section--second {
  background-image: url("../images/mobile/image-photography.jpg");
}

.services__details {
  padding: 15px;
  text-align: center;
  position: absolute;
  bottom: 50px;
}

.services__details--first {
  color: var(--dark-desaturated-cyan);
}

.services__details--second {
  color: var(--dark-blue);
}

.services__heading {
  font-family: 'Fraunces', serif;
  margin-bottom: 30px;
}

.services__text {
  line-height: 1.5;
}

.reviews {
  text-align: center;
  padding: 30px;
}

.reviews__heading {
  font-family: 'Fraunces', serif;
  text-transform: uppercase;
  font-size: 16px;
  margin-top: 30px;
  letter-spacing: 6px;
  color: var(--dark-grayish-blue);
}

.reviews__review {
  margin: 80px 10px;
}

.reviews__img img {
  border-radius: 50%;
  height: 60px;
  width: 60px;
  background-size: cover;
  background-position: center;
}

.reviews__text {
  color: var(--dark-grayish-blue);
  line-height: 1.5;
  margin: 25px 0;
}

.reviews__person-name {
  font-family: 'Fraunces', serif;
  margin-bottom: 10px;
}

.reviews__person-info {
  color: var(--dark-grayish-blue);
  font-size: 12px;
}

.projects {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.projects__project {
  width: 50%;
  height: 25vh;
  background-size: cover;
  background-position: center;
}

.projects__project--one {
  background-image: url("../images/mobile/image-gallery-milkbottles.jpg");
}

.projects__project--two {
  background-image: url("../images/mobile/image-gallery-orange.jpg");
}

.projects__project--three {
  background-image: url("../images/mobile/image-gallery-cone.jpg");
}

.projects__project--four {
  background-image: url("../images/mobile/image-gallery-sugar-cubes.jpg");
}

.footer {
  background-color: var(--dark-moderate-cyan);
  color: var(--dark-desaturated-cyan);
}

.footer__container {
  max-width: 280px;
  margin: 0 auto;
  padding: 20px;
}

.footer__logo {
  font-size: 30px;
  font-weight: 800;
  text-align: center;
  margin: 20px 0;
}

.footer__logo a {
  text-decoration: none;
  color: var(--dark-desaturated-cyan);
}

.footer__nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-pack: distribute;
      justify-content: space-around;
  margin-bottom: 40px;
}

.footer__nav-link {
  text-decoration: none;
  color: var(--dark-desaturated-cyan);
  -webkit-transition: color .5s;
  transition: color .5s;
}

.footer__nav-link:hover {
  color: var(--white);
}

.footer__social-media {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 20px 50px;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  font-size: 20px;
}

.footer__social-media a {
  text-decoration: none;
  color: var(--dark-desaturated-cyan);
  -webkit-transition: color .5s;
  transition: color .5s;
}

.footer__social-media a:hover {
  color: var(--white);
}

@media (min-width: 768px) {
  .nav-mobile {
    display: none;
  }
  .nav-desktop {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
  .nav-desktop a {
    text-decoration: none;
    color: var(--white);
    margin-left: 30px;
    -webkit-transition: color .3s, background-color .3s;
    transition: color .3s, background-color .3s;
  }
  .nav-desktop a:hover {
    color: var(--dark-blue);
  }
  .nav-desktop a:last-child {
    font-family: 'Fraunces', serif;
    background-color: var(--white);
    padding: 15px 30px;
    color: var(--dark-blue);
    border-radius: 32px;
    text-transform: uppercase;
    margin-bottom: 0;
  }
  .nav-desktop a:last-child:hover {
    color: var(--white);
    background-color: #6eceff;
  }
  .nav__btn {
    display: none;
  }
  .header {
    background-image: url("../images/desktop/image-header.jpg");
  }
  .header__text {
    font-size: 50px;
  }
  .about__section {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    height: 50vw;
    max-height: 600px;
  }
  .about__img {
    width: 50%;
    height: 100%;
    background-position: center 20%;
  }
  .about__img--first {
    background-image: url("../images/desktop/image-transform.jpg");
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
  }
  .about__img--second {
    background-image: url("../images/desktop/image-stand-out.jpg");
  }
  .about__details {
    width: 50%;
    padding: 40px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    text-align: left;
  }
  .about__text {
    font-size: 16px;
  }
  .services__container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  .services__section {
    height: 50vw;
    max-height: 600px;
  }
  .services__section--first {
    background-image: url("../images/desktop/image-graphic-design.jpg");
  }
  .services__section--second {
    background-image: url("../images/desktop/image-photography.jpg");
  }
  .services__details {
    padding: 40px;
    bottom: 0;
  }
  .services__text {
    font-size: 14px;
  }
  .reviews__container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
  .reviews__review {
    width: 30%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    height: 280px;
  }
  .reviews__person-name {
    margin-top: auto;
  }
  .projects__project {
    width: 25%;
    height: 50vh;
  }
  .projects__project--one {
    background-image: url("../images/desktop/image-gallery-milkbottles.jpg");
  }
  .projects__project--two {
    background-image: url("../images/desktop/image-gallery-orange.jpg");
  }
  .projects__project--three {
    background-image: url("../images/desktop/image-gallery-cone.jpg");
  }
  .projects__project--four {
    background-image: url("../images/mobile/image-gallery-sugar-cubes.jpg");
  }
}
/*# sourceMappingURL=style.css.map */