html {
  font-size: 100%;
}

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

body {
  font-size: 14px;
}

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

.flex-jc-sb {
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.flex-jc-c {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.flex-ai-c {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.flex-ai-s-c {
  -ms-flex-item-align: center;
      -ms-grid-row-align: center;
      align-self: center;
}

h1, h2, h3, h4, h5, h6 {
  text-transform: uppercase;
  font-family: 'Josefin Sans', sans-serif;
  font-weight: 300;
  font-size: 2rem;
}

p, a {
  font-family: 'Josefin Sans', serif;
}

@media screen and (max-width: 880px) {
  .header .menu-icon {
    display: block;
  }
  .header .menu-icon__line {
    -webkit-animation: closedMid .8s backwards;
            animation: closedMid .8s backwards;
    animation-direction: reverse;
  }
  .header .menu-icon__line::before {
    -webkit-animation: closedTop .8s backwards;
            animation: closedTop .8s backwards;
    animation-direction: reverse;
  }
  .header .menu-icon__line::after {
    -webkit-animation: closedTop .8s backwards;
            animation: closedTop .8s backwards;
    animation-direction: reverse;
  }
  .header .nav-links {
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: space-evenly;
        -ms-flex-pack: space-evenly;
            justify-content: space-evenly;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    padding: 10rem 0;
    width: 100vw;
    height: 100vh;
    font-size: 2rem;
    color: white;
    background: black;
    -webkit-transition: opacity .8s .5s, -webkit-clip-path 1s .5s;
    transition: opacity .8s .5s, -webkit-clip-path 1s .5s;
    transition: opacity .8s .5s, clip-path 1s .5s;
    transition: opacity .8s .5s, clip-path 1s .5s, -webkit-clip-path 1s .5s;
    -webkit-clip-path: circle(200px at top right);
            clip-path: circle(200px at top right);
  }
  .header .menu-btn:checked ~ .nav-links {
    opacity: 1;
    -webkit-clip-path: circle(100% at center);
            clip-path: circle(100% at center);
  }
  .header .menu-btn:checked ~ .menu-icon {
    border-radius: 50%;
    -webkit-animation: pulse 1s;
            animation: pulse 1s;
  }
  .header .menu-btn:checked ~ .menu-icon .menu-icon__line {
    background-color: white;
    -webkit-animation: openMid .8s forwards;
            animation: openMid .8s forwards;
  }
  .header .menu-btn:checked ~ .menu-icon .menu-icon__line::before {
    background: white;
    -webkit-animation: openTop .8s forwards;
            animation: openTop .8s forwards;
  }
  .header .menu-btn:checked ~ .menu-icon .menu-icon__line::after {
    background: white;
    -webkit-animation: openBtm .8s forwards;
            animation: openBtm .8s forwards;
  }
}

@-webkit-keyframes openTop {
  0% {
    -webkit-transform: translateY(-5px) rotate(0deg);
            transform: translateY(-5px) rotate(0deg);
  }
  50% {
    -webkit-transform: translateY(0px) rotate(0deg);
            transform: translateY(0px) rotate(0deg);
  }
  100% {
    -webkit-transform: translateY(0px) rotate(90deg);
            transform: translateY(0px) rotate(90deg);
  }
}

@keyframes openTop {
  0% {
    -webkit-transform: translateY(-5px) rotate(0deg);
            transform: translateY(-5px) rotate(0deg);
  }
  50% {
    -webkit-transform: translateY(0px) rotate(0deg);
            transform: translateY(0px) rotate(0deg);
  }
  100% {
    -webkit-transform: translateY(0px) rotate(90deg);
            transform: translateY(0px) rotate(90deg);
  }
}

@-webkit-keyframes openMid {
  50% {
    -webkit-transform: translateY(0px);
            transform: translateY(0px);
  }
  100% {
    -webkit-transform: translateY(0px);
            transform: translateY(0px);
  }
}

@keyframes openMid {
  50% {
    -webkit-transform: translateY(0px);
            transform: translateY(0px);
  }
  100% {
    -webkit-transform: translateY(0px);
            transform: translateY(0px);
  }
}

@-webkit-keyframes openBtm {
  0% {
    -webkit-transform: translateY(5px) rotate(0deg);
            transform: translateY(5px) rotate(0deg);
  }
  50% {
    -webkit-transform: translateY(0px) rotate(0deg);
            transform: translateY(0px) rotate(0deg);
  }
  100% {
    -webkit-transform: translateY(0px) rotate(90deg);
            transform: translateY(0px) rotate(90deg);
  }
}

@keyframes openBtm {
  0% {
    -webkit-transform: translateY(5px) rotate(0deg);
            transform: translateY(5px) rotate(0deg);
  }
  50% {
    -webkit-transform: translateY(0px) rotate(0deg);
            transform: translateY(0px) rotate(0deg);
  }
  100% {
    -webkit-transform: translateY(0px) rotate(90deg);
            transform: translateY(0px) rotate(90deg);
  }
}

@-webkit-keyframes pulse {
  from {
    -webkit-box-shadow: 0 0 0 0px rgba(255, 255, 255, 0.6);
            box-shadow: 0 0 0 0px rgba(255, 255, 255, 0.6);
    background: rgba(255, 255, 255, 0.6);
  }
  to {
    -webkit-box-shadow: 0 0 0 1000px rgba(255, 255, 255, 0.6);
            box-shadow: 0 0 0 1000px rgba(255, 255, 255, 0.6);
    background: rgba(255, 255, 255, 0.6);
  }
}

@keyframes pulse {
  from {
    -webkit-box-shadow: 0 0 0 0px rgba(255, 255, 255, 0.6);
            box-shadow: 0 0 0 0px rgba(255, 255, 255, 0.6);
    background: rgba(255, 255, 255, 0.6);
  }
  to {
    -webkit-box-shadow: 0 0 0 1000px rgba(255, 255, 255, 0.6);
            box-shadow: 0 0 0 1000px rgba(255, 255, 255, 0.6);
    background: rgba(255, 255, 255, 0.6);
  }
}

@-webkit-keyframes closedTop {
  0% {
    -webkit-transform: translateY(-5px) rotate(0deg);
            transform: translateY(-5px) rotate(0deg);
  }
  50% {
    -webkit-transform: translateY(0px) rotate(0deg);
            transform: translateY(0px) rotate(0deg);
  }
  100% {
    -webkit-transform: translateY(0px) rotate(90deg);
            transform: translateY(0px) rotate(90deg);
  }
}

@keyframes closedTop {
  0% {
    -webkit-transform: translateY(-5px) rotate(0deg);
            transform: translateY(-5px) rotate(0deg);
  }
  50% {
    -webkit-transform: translateY(0px) rotate(0deg);
            transform: translateY(0px) rotate(0deg);
  }
  100% {
    -webkit-transform: translateY(0px) rotate(90deg);
            transform: translateY(0px) rotate(90deg);
  }
}

@-webkit-keyframes closedMid {
  50% {
    -webkit-transform: translateY(0px);
            transform: translateY(0px);
  }
  100% {
    -webkit-transform: translateY(0px);
            transform: translateY(0px);
  }
}

@keyframes closedMid {
  50% {
    -webkit-transform: translateY(0px);
            transform: translateY(0px);
  }
  100% {
    -webkit-transform: translateY(0px);
            transform: translateY(0px);
  }
}

@-webkit-keyframes closedBtm {
  0% {
    -webkit-transform: translateY(5px) rotate(0deg);
            transform: translateY(5px) rotate(0deg);
  }
  50% {
    -webkit-transform: translateY(0px) rotate(0deg);
            transform: translateY(0px) rotate(0deg);
  }
  100% {
    -webkit-transform: translateY(0px) rotate(90deg);
            transform: translateY(0px) rotate(90deg);
  }
}

@keyframes closedBtm {
  0% {
    -webkit-transform: translateY(5px) rotate(0deg);
            transform: translateY(5px) rotate(0deg);
  }
  50% {
    -webkit-transform: translateY(0px) rotate(0deg);
            transform: translateY(0px) rotate(0deg);
  }
  100% {
    -webkit-transform: translateY(0px) rotate(90deg);
            transform: translateY(0px) rotate(90deg);
  }
}

html {
  overflow: auto;
}

header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  background-image: url(../images/mobile/image-hero.jpg);
  background-size: cover;
  background-repeat: no-repeat;
  width: 100%;
  height: 100vh;
}

header::before {
  background-color: rgba(0, 0, 0, 0.37);
  content: '';
  display: block;
  height: 100%;
  position: absolute;
  width: 100%;
  z-index: -1;
}

@media screen and (min-width: 600px) {
  header {
    position: relative;
    background-size: cover;
    background-image: url(../images/desktop/image-hero.jpg);
    background-position: top;
    width: 100%;
    height: 80vh;
  }
  header::before {
    background-color: rgba(0, 0, 0, 0.37);
    content: '';
    display: block;
    height: 100%;
    position: absolute;
    width: 100%;
  }
}

header .header__img {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  background-image: url(../images/mobile/image-hero.jpg);
  background-size: cover;
  background-repeat: no-repeat;
  width: 100%;
  height: 100vh;
}

header .header__img::before {
  background-color: rgba(0, 0, 0, 0.37);
  content: '';
  display: block;
  height: 100%;
  position: absolute;
  width: 100%;
  z-index: -1;
}

@media screen and (min-width: 600px) {
  header .header__img {
    position: relative;
    background-size: cover;
    background-image: url(../images/desktop/image-hero.jpg);
    background-position: top;
    width: 100%;
    height: 80vh;
  }
  header .header__img::before {
    background-color: rgba(0, 0, 0, 0.37);
    content: '';
    display: block;
    height: 100%;
    position: absolute;
    width: 100%;
  }
}

header nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  position: relative;
  width: 100%;
  height: 20%;
  padding: 2rem;
}

@media screen and (min-width: 880px) {
  header nav {
    width: 85%;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -ms-grid-column-align: center;
        justify-self: center;
    -ms-flex-item-align: center;
        -ms-grid-row-align: center;
        align-self: center;
  }
}

header nav .nav__logotop {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  background-image: url(../images/logo.svg);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  width: 100%;
  max-width: 20rem;
  height: 100%;
  max-width: 10rem;
  z-index: 155;
}

header nav .nav__logotop a {
  display: block;
  width: 100%;
  height: 100%;
}

@media screen and (min-width: 880px) {
  header nav .nav__logotop {
    width: 40%;
  }
  header nav .nav__logotop a {
    display: block;
    width: 100%;
    height: 100%;
  }
}

header nav .nav-links {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  list-style: none;
}

@media screen and (min-width: 880px) {
  header nav .nav-links {
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    max-width: 40rem;
    width: 70%;
  }
}

header nav .nav-link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-line-pack: left;
      align-content: left;
  position: relative;
  margin-left: 2rem;
  width: 80%;
}

@media screen and (min-width: 880px) {
  header nav .nav-link {
    text-align: center;
    -ms-flex-item-align: center;
        -ms-grid-row-align: center;
        align-self: center;
    width: 20%;
    margin-left: 20px;
  }
  header nav .nav-link:hover {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  header nav .nav-link:hover:hover::after {
    content: "";
    display: block;
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    margin: auto;
    width: 25%;
    border-bottom: 1px solid white;
  }
}

header nav .nav-link a {
  text-decoration: none;
  color: white;
  width: 100%;
  height: 100%;
  text-transform: uppercase;
  padding: 1rem .5rem;
}

header nav .menu-icon {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-item-align: center;
      align-self: center;
  padding: 20px 10px;
  cursor: pointer;
  z-index: 5;
}

@media screen and (min-width: 880px) {
  header nav .menu-icon {
    display: none;
  }
}

header nav .menu-icon__line {
  display: block;
  position: relative;
  height: 2px;
  width: 20px;
  border-radius: 4px;
  background: white;
}

header nav .menu-icon__line::before, header nav .menu-icon__line::after {
  content: '';
  position: absolute;
  height: 100%;
  width: 100%;
  border-radius: 4px;
  background: white;
}

header nav .menu-icon__line::before {
  -webkit-transform: translateY(-6px);
          transform: translateY(-6px);
}

header nav .menu-icon__line::after {
  -webkit-transform: translateY(6px);
          transform: translateY(6px);
}

header nav .menu-btn {
  display: none;
}

header nav .menu-icon__line, header nav .menu-icon__line::before, header nav .menu-icon__line::after {
  background: white;
}

.header__article {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-line-pack: center;
      align-content: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 85%;
  height: 100%;
  margin: 0 auto;
}

@media screen and (min-width: 880px) {
  .header__article {
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
  }
}

.header__article .header__txt {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-item-align: center;
      align-self: center;
  margin: auto 2rem;
  width: 80%;
  border: 2px solid #fff;
  padding: 2rem;
}

.header__article .header__txt h1 {
  display: block;
  text-align: left;
  margin: auto 0;
  font-size: 7vw;
  line-height: 120%;
  color: white;
}

@media screen and (min-width: 880px) {
  .header__article .header__txt {
    margin: auto 2rem;
    max-width: 50%;
    max-height: 60%;
    border: 2px solid #fff;
    padding: 2rem;
  }
  .header__article .header__txt h1 {
    font-size: 4.2vw;
  }
}

@media screen and (min-width: 1824px) {
  .header__article .header__txt {
    max-width: 40;
  }
}

.first {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-item-align: center;
      align-self: center;
  margin: 0 auto;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  padding: 4rem 2rem 2rem 2rem;
  background-color: white;
}

.first img {
  max-width: 70vw;
  -ms-flex-item-align: center;
      -ms-grid-row-align: center;
      align-self: center;
}

.first img:nth-child(2) {
  display: none;
}

.first__txt {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-item-align: center;
      align-self: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  padding: 2rem;
  width: 100%;
  max-width: 80vw;
}

.first__txt h2 {
  display: block;
  margin-bottom: 1rem;
  text-align: center;
  color: black;
  font-size: clamp(1.125rem, 5.5vw, 3rem);
}

.first__txt p {
  width: 90%;
  color: #8c8c8c;
  text-align: center;
  -ms-flex-item-align: center;
      -ms-grid-row-align: center;
      align-self: center;
  font-size: clamp(0.9rem, 2vw, 1rem);
}

@media screen and (min-width: 880px) {
  .first {
    width: 85vw;
    -ms-grid-column-align: center;
        justify-self: center;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    position: relative;
  }
  .first img {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-item-align: start;
        align-self: flex-start;
    width: 80vw;
    max-width: 60rem;
  }
  .first img:nth-child(1) {
    display: none;
  }
  .first img:nth-child(2) {
    display: block;
  }
  .first__txt {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    max-width: 55%;
    height: 25rem;
    background-color: white;
    position: absolute;
    bottom: 0;
    left: 55%;
    padding: 4vw;
  }
  .first__txt h2 {
    display: block;
    text-align: left;
    font-size: clamp(1.125rem, 3vw, 3rem);
  }
  .first__txt p {
    -ms-flex-item-align: start;
        align-self: flex-start;
    text-align: left;
    line-height: 150%;
    width: 80%;
    font-size: clamp(0.9rem, 0.9vw, 1rem);
  }
}

@media screen and (min-width: 1824px) {
  .first__txt {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    max-width: 60%;
    height: 30rem;
    background-color: white;
    position: absolute;
    bottom: 0;
    left: 40%;
    padding: 4vw;
  }
  .first h2 {
    font-size: clamp(1.5rem, 4vw, 3.5rem);
  }
  .first p {
    width: 90%;
    font-size: clamp(1.25rem, 1vw, 1rem);
  }
}

.creations {
  width: 100%;
  margin-top: 2rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.creations #title-mobile {
  text-align: center;
  margin-bottom: 2rem;
}

@media screen and (min-width: 880px) {
  .creations #title-mobile {
    display: none;
  }
}

.creations .creations__content {
  padding-top: 1rem;
}

@media screen and (min-width: 880px) {
  .creations .creations__content {
    position: relative;
    width: 100%;
    max-width: 110rem;
    -ms-grid-row-align: center;
        align-self: center;
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: (1fr)[4];
        grid-template-columns: repeat(4, 1fr);
    grid-gap: 2rem;
    padding: 6rem 3rem;
  }
}

.creations .creations__content h2 {
  display: none;
}

@media screen and (min-width: 880px) {
  .creations .creations__content h2 {
    display: block;
    position: absolute;
    top: 0;
    left: 5%;
  }
}

.creations .creations__content .content__categories {
  position: relative;
  width: 80%;
  max-width: 40rem;
  margin: 0 auto;
  margin-bottom: 2rem;
  background-color: #000;
  z-index: 1;
}

@media screen and (min-width: 880px) {
  .creations .creations__content .content__categories {
    height: 400px;
    width: 100%;
    max-width: 20rem;
    margin-bottom: 0;
  }
}

@media screen and (min-width: 1824px) {
  .creations .creations__content .content__categories {
    height: 40rem;
    width: 100%;
  }
}

.creations .creations__content .content__categories:hover {
  cursor: pointer;
  background-color: rgba(255, 255, 255, 0.5);
}

.creations .creations__content .content__categories p:hover {
  color: black;
  cursor: pointer;
}

.creations .creations__content .content__categories p {
  position: absolute;
  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: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  -ms-flex-item-align: end;
      align-self: flex-end;
  padding: 1rem;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  padding-right: 50%;
  font-size: 1.5rem;
  line-height: 1.5rem;
  color: white;
  font-weight: 300;
  text-transform: uppercase;
  z-index: 5;
}

@media screen and (min-width: 880px) {
  .creations .creations__content .content__categories p {
    padding-right: 20%;
  }
}

.creations .creations__content .content__categories img {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-item-align: center;
      align-self: center;
  width: 100%;
  height: 100%;
  z-index: -1;
  -webkit-mask-image: linear-gradient(-150deg, black 15%, transparent 100%);
          mask-image: linear-gradient(-150deg, black 15%, transparent 100%);
}

.creations .creations__content .content__categories #img1 {
  display: block;
}

.creations .creations__content .content__categories #img2 {
  display: none;
}

@media screen and (min-width: 880px) {
  .creations .creations__content .content__categories #img1 {
    display: none;
  }
  .creations .creations__content .content__categories #img2 {
    display: block;
  }
}

.creations .creations__content .content__categories a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  z-index: 10;
}

.creations .creations__content .creations__btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-line-pack: center;
      align-content: center;
  margin: 0 auto;
  width: 30%;
  height: 10%;
  padding: .8rem .7rem;
  text-decoration: none;
  text-transform: uppercase;
  font-size: 1rem;
  border: 1px solid #000;
  color: black;
}

.creations .creations__content .creations__btn:hover {
  cursor: pointer;
  color: white;
  background-color: black;
}

@media screen and (min-width: 880px) {
  .creations .creations__content .creations__btn {
    position: absolute;
    top: 0;
    right: 5%;
    width: 15rem;
    height: 3rem;
  }
}

.nav-bottom {
  position: relative;
  width: 100%;
  margin-top: 5rem;
  background-color: black;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

@media screen and (min-width: 880px) {
  .nav-bottom__left {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    width: 50%;
    height: 100%;
  }
}

@media screen and (min-width: 880px) {
  .nav-bottom__right {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    width: 40%;
    height: 100%;
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
    -webkit-box-align: end;
        -ms-flex-align: end;
            align-items: flex-end;
  }
}

@media screen and (min-width: 880px) {
  .nav-bottom {
    padding: 2rem 5%;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    height: 20vh;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
}

.nav-bottom .logo-footer {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  background-image: url(../images/logo.svg);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  width: 100%;
  max-width: 20rem;
  height: 5rem;
  max-width: 10rem;
  z-index: 155;
  margin: 0 auto;
}

.nav-bottom .logo-footer a {
  display: block;
  width: 100%;
  height: 100%;
}

@media screen and (min-width: 600px) {
  .nav-bottom .logo-footer {
    width: 100%;
    -ms-flex-item-align: start;
        align-self: flex-start;
  }
}

@media screen and (min-width: 880px) {
  .nav-bottom .logo-footer {
    margin: 0;
  }
}

.nav-bottom nav {
  position: relative;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-line-pack: start;
      align-content: flex-start;
  text-align: center;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  margin-bottom: 2rem;
}

@media screen and (min-width: 880px) {
  .nav-bottom nav {
    position: absolute;
    -ms-flex-item-align: start;
        align-self: flex-start;
    left: 0;
    bottom: 0;
    margin-left: 5%;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    width: 50%;
    height: 10vh;
  }
}

.nav-bottom nav li {
  position: relative;
  -ms-flex-item-align: center;
      align-self: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
}

.nav-bottom nav li:hover::after {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
  width: 25%;
  border-bottom: 1px solid white;
}

@media screen and (min-width: 880px) {
  .nav-bottom nav li {
    margin-top: 5%;
  }
}

.nav-bottom nav a {
  display: block;
  padding: 1rem 1rem;
  font-size: 1.5rem;
  text-decoration: none;
  width: 100%;
  color: white;
}

@media screen and (min-width: 880px) {
  .nav-bottom nav .nav-bottom__first {
    padding: 1rem 1rem 1rem 0;
    text-align: left;
  }
}

.nav-bottom .socialmedia-bottom {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-pack: distribute;
      justify-content: space-around;
  width: 50%;
  margin: 0 auto;
  list-style: none;
}

@media screen and (min-width: 880px) {
  .nav-bottom .socialmedia-bottom {
    position: absolute;
    top: 2rem;
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
    -ms-flex-item-align: end;
        align-self: flex-end;
    margin: 0;
  }
}

.nav-bottom .socialmedia-bottom li {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.nav-bottom .socialmedia-bottom li:hover::after {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
  width: 25%;
  border-bottom: 1px solid white;
}

.nav-bottom .socialmedia-bottom img {
  padding: 1rem;
  width: 53px;
  height: 53px;
}

.nav-bottom .socialmedia-bottom a {
  display: block;
  width: 100%;
}

.nav-bottom .attribution {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  width: 100%;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-top: 1rem;
}

@media screen and (min-width: 880px) {
  .nav-bottom .attribution {
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
    -ms-flex-line-pack: end;
        align-content: flex-end;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    margin-bottom: 2rem;
    position: absolute;
    bottom: 0;
    right: 5%;
    width: 50%;
  }
}

.nav-bottom .attribution p, .nav-bottom .attribution a {
  display: block;
  text-align: center;
  color: dimgray;
}

.nav-bottom .attribution p:first-child, .nav-bottom .attribution a:first-child {
  margin-bottom: 1rem;
}

@media screen and (min-width: 880px) {
  .nav-bottom .attribution p, .nav-bottom .attribution a {
    margin-right: 1rem;
  }
}
/*# sourceMappingURL=style.css.map */