@import url("https://fonts.googleapis.com/css2?family=Playfair+Display&display=swap");
@import url("https://fonts.googleapis.com/css?family=Open+Sans:300,400,600,800&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Oswald:wght@500&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Lato:ital,wght@0,100;0,300;0,400;0,700;0,900;1,100;1,300;1,400;1,700;1,900&display=swap");
:root {
  --system-ui: system-ui, "Segoe UI", Roboto, Helvetica, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
  scroll-behavior: smooth;
}

*, *::before, *::after {
  box-sizing: border-box;
}

::-webkit-scrollbar {
  width: 10px;
}

::-webkit-scrollbar-track {
  background: hsl(0, 0%, 90%);
}

::-webkit-scrollbar-thumb {
  background: hsl(0, 0%, 80%);
}

::-webkit-scrollbar-thumb:hover {
  background: hsl(0, 0%, 70%);
}

@media (prefers-reduced-motion: no-preference) {
  :root {
    scroll-behavior: smooth;
  }
}
html {
  font-size: 62.5%;
  overflow-x: hidden;
  scroll-behavior: smooth;
  scroll-padding-top: 6rem;
}

body {
  margin: 0;
  padding: 0;
  font-size: 1.7rem;
  font-weight: 400;
  line-height: 1.5;
  font-family: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", "Noto Sans", "Liberation Sans", Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  background-color: #fff;
  overflow-x: hidden;
  position: relative;
}

a {
  text-decoration: none;
  color: #f5f5f5;
}

ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

h1, h2 {
  margin-top: 0;
  margin-bottom: 0.5rem;
  line-height: 1.2;
  font-family: "Playfair Display", serif;
  font-weight: normal;
  color: #515358;
  -webkit-font-smoothing: antialiased;
}

h1 small, h2 small {
  font-weight: 400;
  line-height: 1;
  color: #333;
  font-size: 0.875em;
}

h1 {
  font-size: calc(1.375rem + 1.5vw);
}
@media (min-width: 992px) {
  h1 {
    font-size: 2.5rem;
  }
}

h2 {
  font-size: calc(1.325rem + 0.9vw);
}
@media (min-width: 992px) {
  h2 {
    font-size: 2rem;
  }
}

h1 {
  font-size: 36px;
  line-height: 45px;
}

h2 {
  font-size: 30px;
  line-height: 40px;
}

h1 small {
  font-size: 50%;
}

h2 small {
  font-size: 60%;
}

small {
  display: block;
  margin-top: 5px;
  font-size: 90%;
  opacity: 0.7;
  font-family: "Open Sans", sans-serif;
}

.heading {
  margin: 20px auto 20px;
  width: 400px;
  position: relative;
}
.heading .mask {
  overflow: hidden;
  height: 20px;
}
.heading .mask:after {
  content: "";
  display: block;
  margin: -25px auto 0;
  width: 100%;
  height: 25px;
  border-radius: 125px/12px;
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.6);
}

img, svg {
  vertical-align: middle;
}

.container {
  width: 100%;
  padding: 0;
  margin: 0 auto;
  position: relative;
}
@media (min-width: 576px) {
  .container {
    max-width: 540px;
  }
}
@media (min-width: 768px) {
  .container {
    max-width: 720px;
  }
}
@media (min-width: 992px) {
  .container {
    max-width: 960px;
  }
}
@media (min-width: 1200px) {
  .container {
    max-width: 1140px;
  }
}

.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 2021;
  background-color: #f5f5f5;
  transition: background-color 0.5s ease-in-out, padding 0.5s ease-in-out;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  padding: 0.5rem 0;
  border-bottom: 1px solid white;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.25);
}
.navbar.affix {
  border-bottom: 1px solid white;
  padding: 10px 0;
  background: #f5f5f5 !important;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.5);
}
.navbar.affix .navbar-brand svg {
  fill: #333;
}
.navbar.affix .navbar-brand:hover svg, .navbar.affix .navbar-brand:focus svg {
  fill: #000;
}
.navbar.affix .navbar-collapse .navbar-nav .nav-link {
  color: #333;
}
.navbar.affix .navbar-collapse .navbar-nav .nav-link:hover, .navbar.affix .navbar-collapse .navbar-nav .nav-link:focus {
  color: #ff4530;
}
@media (min-width: 992px) {
  .navbar {
    position: fixed;
    flex-wrap: nowrap;
    justify-content: flex-start;
    background-color: rgba(0, 0, 0, 0);
    box-shadow: none;
    border-bottom: none;
  }
  .navbar.affix {
    border-bottom: 1px solid white;
    padding: 10px 0;
    background: #f5f5f5 !important;
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.5);
  }
  .navbar.affix .navbar-brand svg {
    fill: #333;
  }
  .navbar.affix .navbar-brand > span {
    color: #333;
  }
  .navbar.affix .navbar-brand:hover svg, .navbar.affix .navbar-brand:focus svg {
    fill: #000;
  }
  .navbar.affix .navbar-brand:hover span, .navbar.affix .navbar-brand:focus span {
    color: #000;
  }
  .navbar.affix .navbar-collapse .navbar-nav .nav-link {
    color: #333;
  }
  .navbar.affix .navbar-collapse .navbar-nav .nav-link:hover, .navbar.affix .navbar-collapse .navbar-nav .nav-link:focus {
    color: #ff4530;
  }
}
.navbar > .container {
  display: flex;
  flex-wrap: inherit;
  align-items: center;
  justify-content: space-between;
}
.navbar .navbar-brand {
  opacity: 0.9;
}
.navbar .navbar-brand svg {
  height: 2rem;
  fill: #333;
  margin: 1.6rem 1rem 2.3rem 2.5rem;
}
@media (min-width: 992px) {
  .navbar .navbar-brand svg {
    fill: #f5f5f5;
  }
}
@media (min-width: 992px) {
  .navbar .navbar-brand:hover, .navbar .navbar-brand:focus {
    opacity: 1;
  }
  .navbar .navbar-brand:hover svg, .navbar .navbar-brand:focus svg {
    fill: #fff;
  }
}
.navbar .navbar-brand span {
  color: #333;
}
@media (min-width: 992px) {
  .navbar .navbar-brand span {
    color: #f5f5f5;
  }
}
.navbar .navbar-brand span span {
  color: #f09121;
}
.navbar .navbar-toggler {
  background-image: none;
  background-color: transparent;
  border: 1px solid transparent;
  margin-right: 2rem;
}
.navbar .navbar-toggler:focus {
  outline: 0;
}
.navbar .navbar-toggler .icon-bar {
  width: 25px;
  height: 2px;
  background-color: #333;
  display: block;
  margin: 4px 0;
  border-radius: 2px;
  transition: all 0.3s ease-in-out;
}
.navbar .navbar-toggler.is-opened .icon-bar:nth-child(2) {
  opacity: 0;
}
.navbar .navbar-toggler.is-opened .icon-bar:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}
.navbar .navbar-toggler.is-opened .icon-bar:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}
@media (min-width: 992px) {
  .navbar .navbar-toggler {
    display: none;
  }
}
.navbar .navbar-collapse {
  flex-basis: 100%;
  flex-grow: 1;
  align-items: center;
}
.navbar .navbar-collapse.collapse {
  transition: height 0.35s ease-in-out;
  overflow: hidden;
  /*&.show {
    background-color: #ff4530;
  }*/
}
.navbar .navbar-collapse.collapse:not(.show) {
  display: none;
}
@media (min-width: 992px) {
  .navbar .navbar-collapse {
    display: flex !important;
    flex-basis: auto;
  }
  .navbar .navbar-collapse.collapse.show {
    height: auto !important;
  }
}
.navbar .navbar-collapse .navbar-nav {
  display: flex;
  flex-direction: column;
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
}
@media (min-width: 992px) {
  .navbar .navbar-collapse .navbar-nav {
    flex-direction: row;
    margin-left: auto !important;
  }
}
.navbar .navbar-collapse .navbar-nav .nav-link {
  display: block;
  padding: 1rem 1.5rem;
  font-size: 1.4rem;
  color: #333;
  text-decoration: none;
  transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out;
  text-transform: uppercase;
  font-weight: 100;
  letter-spacing: 1px;
}
.navbar .navbar-collapse .navbar-nav .nav-link:hover, .navbar .navbar-collapse .navbar-nav .nav-link:focus {
  color: #333;
}
@media (min-width: 992px) {
  .navbar .navbar-collapse .navbar-nav .nav-link {
    padding-right: 1rem;
    padding-left: 1rem;
    color: #f5f5f5;
  }
  .navbar .navbar-collapse .navbar-nav .nav-link:hover, .navbar .navbar-collapse .navbar-nav .nav-link:focus {
    color: #fff;
  }
}

@media (prefers-reduced-motion: reduce) {
  .navbar-toggler {
    transition: none;
  }
  .nav-link {
    transition: none;
  }
}
main {
  position: relative;
  overflow: hidden;
  width: 100%;
  min-height: 100vh;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  background: url("../img/main.jpg") no-repeat center center;
  background-position-x: 60%;
  background-size: cover;
  background-attachment: fixed;
  /*display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;*/
  text-align: center;
  color: #f5f5f5;
  /*#intro {
    width: 100%;
    position: relative;
    text-align: center;
    @include desktop-up {
      width: 800px;
      //margin-left: 100px;
    }
    @include xdesktop-up {
      width: 1000px;
      //margin-left: 200px;
    }
    #mart-svg {
      position: relative;
      height: 7rem;
      margin: 20rem auto 4rem;
      svg {
        height: 100%;
        fill: $lcolor;
        display: block;
        margin: 0 auto;
        filter: drop-shadow(2px 2px 2px rgb(0 0 0 / 0.4));
      }
      @include phone-up {
        height: 10rem;
      }
      @include desktop-up {
        height: 15rem;
        margin: 25rem auto 5rem;
      }
      span {
        //font-family: $serif-font;
        -webkit-font-smoothing: antialiased;
        position: absolute;
        right: 40px;
        bottom: -3px;
        font-size: 1.3rem;
        text-transform: uppercase;
        opacity: 0.8;
        letter-spacing: 8px;
        text-shadow: 1px 1px 3px rgb(0 0 0 / 0.5);
        @include desktop-up {
          right: 108px;
          bottom: 8px;
          font-size: 2rem;
        }
        @include xdesktop-up {
          right: 208px;
        }
      }
    }

    .shadow {
      opacity: 0.5;
      position: absolute;
      height: 30rem;
      bottom: 0;
      left: 0;
      right: 0;
      z-index: 2;
      background: linear-gradient(to bottom, transparent 0%, #000 100%);
      display: none;
    }
    h1 {
      font-weight: 400;
      letter-spacing: -1px;
      font-size: 6.5rem;
      margin-bottom: 5rem;
      margin-top: 25rem;
      color: $lcolor;
      text-shadow: 2px 2px 2px rgba(0, 0, 0, 0.1);
      @include phone-up {
        font-size: 8rem;
      }
      @include desktop-up {
        margin-bottom: 6rem;
        margin-top: 40rem;
        font-size: 10rem;
      }
    }
    p {
      color: rgba($lcolor, 0.8);
      font-size: 1.7rem;
      font-weight: 100;
      text-shadow: 2px 2px 2px rgba(0, 0, 0, 0.1);
      text-transform: uppercase;
      letter-spacing: 1px;
      margin: 0rem 3rem 8rem;
      @include phone-up {
        //margin: 0rem 3rem 10rem;
        //font-size: 2rem;
      }
      @include desktop-up {
        margin: 0 auto 10rem;
        font-size: 2rem;
        width: 700px;
      }
      @include xdesktop-up {
        width: 800px;
      }
    }
    a.start {
      display: block;
      color: rgba($lcolor, 0.7);
      text-transform: uppercase;
      border: 2px solid rgba($lcolor, 0.7);
      padding: 10px;
      font-size: 16px;
      font-weight: 100;
      width: 160px;
      border-radius: 500px;
      cursor: pointer;
      margin: 0 auto;
      background-color: transparent;
      transition: all 0.2s ease-in-out;
      &:hover, &:focus {
        color: $wcolor;
        border-color: $wcolor;
      }
    }
    a.button--scroll {
      display: none;
      opacity: 0.7;
      z-index: 3;
      bottom: 8rem;
      position: absolute;
      animation-duration: 2s;
      animation-timing-function: ease-in-out;
      animation-iteration-count: infinite;
      animation-name: upDown;
    }
    @keyframes upDown {
      0% {
        transform: translateY(-15px);
      }
      50% {
        transform: translateY(0);
      }
      100% {
        transform: translateY(-15px);
      }
    }
  }*/
}
main .overlay {
  display: none;
  position: absolute;
  z-index: 1;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background: rgba(0, 0, 0, 0.6);
}
main #intro {
  width: 70vw;
  margin: 0;
  display: block;
  position: absolute;
  top: 25%;
}
@media (min-width: 576px) {
  main #intro {
    top: 4%;
  }
}
@media (min-width: 992px) {
  main #intro {
    top: 50%;
    transform: translateY(-50%);
  }
}
main #intro #mart-svg {
  position: relative;
  height: 5rem;
  width: 20rem;
  margin: 13rem auto 2.5rem;
}
@media (min-width: 576px) {
  main #intro #mart-svg {
    height: 8rem;
    width: 25rem;
    margin: 15rem auto 4rem;
  }
}
main #intro #mart-svg svg {
  height: 100%;
  fill: #f5f5f5;
  display: block;
  margin: 0 auto;
  filter: drop-shadow(2px 2px 2px rgba(0, 0, 0, 0.4));
}
main #intro #mart-svg span {
  position: absolute;
  right: 23px;
  bottom: -3px;
  font-size: 0.9rem;
  text-transform: uppercase;
  opacity: 0.8;
  letter-spacing: 4px;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
}
@media (min-width: 576px) {
  main #intro #mart-svg span {
    right: -2px;
    bottom: -2px;
    font-size: 1.3rem;
    letter-spacing: 8px;
  }
}
main #intro p {
  color: rgba(245, 245, 245, 0.8);
  font-size: 1.2rem;
  font-weight: 100;
  text-shadow: 2px 2px 2px rgba(0, 0, 0, 0.1);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin: 0 2rem 5rem;
}
@media (min-width: 576px) {
  main #intro p {
    margin: 0 3rem 5rem;
    font-size: 1.4rem;
  }
}
@media (min-width: 992px) {
  main #intro p {
    margin: 0 auto 5rem;
    font-size: 1.7rem;
    width: 550px;
  }
}
@media (min-width: 1200px) {
  main #intro p {
    width: 700px;
  }
}
main a {
  display: block;
  color: rgba(245, 245, 245, 0.7);
  text-transform: uppercase;
  border: 2px solid rgba(245, 245, 245, 0.7);
  padding: 10px;
  font-size: 16px;
  font-weight: 100;
  width: 160px;
  border-radius: 500px;
  cursor: pointer;
  margin: 0 auto;
  background-color: transparent;
}
main a:hover, main a:focus {
  color: #fff;
  border-color: #fff;
}
section {
  position: relative;
  overflow: hidden;
  padding: 8rem 0;
}
section .container {
  text-align: center;
}

section p {
  color: #333;
  margin: 1rem 1rem 4rem;
  font-family: "Open Sans", sans-serif;
  font-weight: 100;
  font-size: 17px;
  line-height: 28px;
}
section p strong {
  font-weight: 400;
}
#services, #contact {
  background-color: #333;
  /*h1 {
    //color: #f7ca18;
  }*/
}
#services p, #contact p {
  color: rgba(245, 245, 245, 0.5);
  margin: 1rem 1rem 4rem;
}

#services {
  background-color: #f2f7f8;
}
#services p {
  color: #454545;
  font-style: italic;
}
#services ul {
  display: flex;
  flex-wrap: wrap;
}
#services ul li {
  position: relative;
  display: flex;
  padding: 1rem;
  width: 100%;
}
@media (min-width: 768px) {
  #services ul li {
    width: 50%;
  }
}
@media (min-width: 992px) {
  #services ul li {
    width: 33.3333%;
  }
}
#services ul li div {
  background-color: #f5f5f5;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  width: 100%;
  height: 300px;
  position: relative;
  background-size: cover;
  background-position: center;
}
#services ul li div:after {
  content: " ";
  position: absolute;
  width: 100%;
  height: 100%;
  z-index: 1;
}
@media (min-width: 768px) {
  #services ul li div {
    border-radius: 0.5rem;
    box-shadow: 0 1px 1px rgba(0, 0, 0, 0.1), 0 2px 2px rgba(0, 0, 0, 0.1), 0 4px 4px rgba(0, 0, 0, 0.1), 0 8px 8px rgba(0, 0, 0, 0.1), 0 16px 16px rgba(0, 0, 0, 0.1);
  }
}
#services ul li:nth-child(1) div {
  background-image: url(../img/portrait.jpg);
}
#services ul li:nth-child(2) div {
  background-image: url(../img/pet.jpg);
}
#services ul li:nth-child(3) div {
  background-image: url(../img/advertising.jpg);
}
#services ul li:nth-child(4) div {
  background-image: url(https://picsum.photos/500/300/?image=193);
}
#services ul li:nth-child(5) div {
  background-image: url(../img/food.jpg);
}
#services ul li:nth-child(6) div {
  background-image: url(../img/product.jpg);
}
#services ul li h2 {
  color: #f5f5f5;
  font-size: 25px;
  font-weight: 500;
  letter-spacing: -0.2px;
  font-family: "Oswald", sans-serif;
  text-transform: uppercase;
  margin: 0;
  padding: 8px;
  width: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 2;
}

#gallery {
  padding-bottom: 90px;
}
#gallery .container {
  display: flex;
  margin: 0 auto;
  flex-flow: row wrap;
  justify-content: center;
  align-content: flex-start;
}
#gallery .container h1 .heading {
  margin-bottom: 0px;
}
#gallery .container h1, #gallery .container p {
  flex: 0 0 100%;
}
#gallery .container p {
  color: #454545;
  font-style: italic;
}
#gallery .container > div {
  position: relative;
  width: 320px;
  height: 250px;
  flex: auto;
  background-size: cover;
  background-position: center center;
}
@media (min-width: 992px) {
  #gallery .container > div {
    margin: 7px;
  }
}
#gallery .container > div.two {
  width: 100%;
}
@media (min-width: 992px) {
  #gallery .container > div.two {
    flex: 700px;
  }
}
#gallery .container > div:nth-child(2) {
  background-image: url(http://picsum.photos/id/1023/1920/1080/);
}
#gallery .container > div:nth-child(3) {
  background-image: url(http://picsum.photos/id/1011/1920/1080/);
}
#gallery .container > div:nth-child(4) {
  background-image: url(http://picsum.photos/id/1005/1920/1080/);
}
#gallery .container > div:nth-child(5) {
  background-image: url(http://picsum.photos/id/1026/1920/1080/);
}
#gallery .container > div:nth-child(6) {
  background-image: url(http://picsum.photos/id/1020/1920/1080/);
}
#gallery .container > div:nth-child(7) {
  background-image: url(http://picsum.photos/id/1027/1920/1080/);
}
#gallery .container > div:nth-child(8) {
  background-image: url(http://picsum.photos/id/1014/1920/1080/);
}
#gallery .container > div:nth-child(9) {
  background-image: url(http://picsum.photos/id/1044/1920/1080/);
}
#gallery .container > div:nth-child(10) {
  background-image: url(http://picsum.photos/id/1027/1920/1080/);
}
#gallery .container > div ul {
  display: none;
  color: #fff;
}
#gallery .container > div ul li {
  display: inline-block;
  font-size: 1.3rem;
  font-weight: 600;
}
#gallery .container > div ul li:nth-child(1) {
  margin-right: 2.2rem;
}
#gallery .container > div:hover ul, #gallery .container > div:focus ul {
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  top: 0;
  width: 100%;
  height: 100%;
  margin: 0;
  cursor: pointer;
  background-color: #333;
}
#gallery::before, #gallery::after {
  bottom: 0;
  left: 0;
  z-index: 0;
  width: 50%;
  height: 40px;
  position: absolute;
  content: "";
  pointer-events: none;
  background-color: #333;
}
#gallery::before {
  border-radius: 0 80px 0 0;
}
#gallery::after {
  left: 50%;
  border-radius: 80px 0 0 0;
}

#contact {
  background-color: #333;
}
#contact h1 {
  color: #f5f5f5;
  font-size: 40px;
}
#contact h1 small {
  color: #f5f5f5;
  font-weight: 100;
  font-size: 46%;
  padding-bottom: 10px;
}
#contact form {
  padding: 1rem;
}
#contact form input, #contact form textarea {
  border: none;
  border-radius: 4px;
  display: block;
  margin-bottom: 1rem;
  padding: 2rem;
  width: 100%;
  background-color: rgba(255, 255, 255, 0.07);
  color: #f5f5f5;
  font-size: 1.7rem;
}
#contact form textarea {
  height: 14rem;
}
#contact form input[type=submit] {
  background-color: #ff4530;
  border-radius: 5px;
  color: #fff;
  padding: 1.5rem;
  text-transform: uppercase;
}
@media (min-width: 992px) {
  #contact form input[type=submit] {
    padding: 1.5rem 3.1rem;
    width: auto;
  }
}
@media (min-width: 992px) {
  #contact form .full-half {
    float: left;
    margin-right: 2.5%;
    width: 48.75%;
  }
}
@media (min-width: 992px) {
  #contact form .full-half:nth-of-type(2n) {
    margin-right: 0;
  }
}
@media (min-width: 992px) {
  #contact form {
    padding: 0rem 3rem 3rem;
  }
}

footer {
  color: #cecece;
  background-color: #2f3539;
  border-top: 1px solid #393f43;
  line-height: 6rem;
}
footer .container {
  display: flex;
  justify-content: space-between;
  flex-direction: column;
}
footer .container .social-list {
  display: flex;
  justify-content: center;
  flex-grow: 0;
  margin: 0;
  padding: 0;
}
@media (min-width: 992px) {
  footer .container .social-list {
    justify-content: space-between;
  }
}
footer .container .social-list li {
  padding: 0 15px;
}
footer .container .copyrights {
  display: flex;
  flex-grow: 1;
  text-align: center;
  font-size: 1.5rem;
  justify-content: flex-end;
  flex-direction: column;
  line-height: 3rem;
  margin-bottom: 3rem;
}
footer .container .copyrights .sp {
  display: none;
}
@media (min-width: 992px) {
  footer .container .copyrights {
    flex-direction: row;
    justify-content: flex-end;
    line-height: 6rem;
    margin-bottom: 0;
  }
  footer .container .copyrights .sp {
    display: flex;
    margin: 0 10px;
  }
}
footer .container .copyrights a {
  text-decoration: underline;
}
footer .container ul a {
  font-size: 2rem;
  color: #8d8d8d;
}
footer .container ul a:hover {
  color: #fff;
}
@media (min-width: 992px) {
  footer .container {
    flex-direction: row;
  }
}

.animate__animated {
  animation-duration: 1s;
  animation-fill-mode: both;
}
@keyframes bounce {
  from, 20%, 53%, to {
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    transform: translate3d(0, 0, 0);
  }
  40%, 43% {
    animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    transform: translate3d(0, -30px, 0) scaleY(1.1);
  }
  70% {
    animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    transform: translate3d(0, -15px, 0) scaleY(1.05);
  }
  80% {
    transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    transform: translate3d(0, 0, 0) scaleY(0.95);
  }
  90% {
    transform: translate3d(0, -4px, 0) scaleY(1.02);
  }
}
.animate__bounce {
  animation-name: bounce;
  transform-origin: center bottom;
  animation-delay: 1s;
}
@keyframes zoomInDown {
  from {
    opacity: 0;
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -1000px, 0);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  60% {
    opacity: 1;
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
.animate__zoomInDown {
  animation-name: zoomInDown;
}
@keyframes zoomInUp {
  from {
    opacity: 0;
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 1000px, 0);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  60% {
    opacity: 1;
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
.animate__zoomInUp {
  animation-name: zoomInUp;
}/*# sourceMappingURL=main.css.map */