* {
  margin: 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

body {
  font-family: 'Montserrat', sans-serif;
  font-family: 'Roboto', sans-serif;
  background: #D2D2D1;
  background: -webkit-gradient(linear, left top, right top, from(#D2D2D1), to(#3B436A));
  background: linear-gradient(to right, #D2D2D1 0%, #3B436A 100%);
}

::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-thumb {
  border-radius: 0 0 10px 10px;
  background-color: #000000;
  -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
          box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
}

::-webkit-scrollbar-track {
  background-color: #999494;
  -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
          box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
}

nav {
  width: 100%;
  position: relative;
}

nav img {
  width: 100%;
  position: relative;
  top: 0;
  left: 0;
}

nav .navigation {
  width: 40%;
  position: absolute;
  top: 0;
  right: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -ms-flex-pack: distribute;
      justify-content: space-around;
  -ms-flex-line-pack: distribute;
      align-content: space-around;
  text-align: center;
}

nav .navigation ul {
  list-style: none;
  margin-top: 10%;
  -webkit-transform: translate(0 -50%);
          transform: translate(0 -50%);
  margin-right: 3%;
}

nav .navigation ul .logo {
  -webkit-animation: pulse 2s infinite;
          animation: pulse 2s infinite;
}

nav .navigation ul li {
  padding: 5%;
  font-weight: bolder;
  font-size: 3vw;
}

nav .navigation ul li a {
  text-shadow: black 2px 3px 3px;
  text-decoration: none;
  color: #6b2525;
}

nav .navigation ul li span {
  color: red;
}

nav .navigation ul li:nth-child(2) {
  -webkit-animation: pulse 2s infinite 1s;
          animation: pulse 2s infinite 1s;
}

nav .navigation ul li:nth-child(3) {
  -webkit-animation: pulse 2s infinite 2s;
          animation: pulse 2s infinite 2s;
}

nav .navigation ul li:nth-child(4) {
  -webkit-animation: pulse 2s infinite 3s;
          animation: pulse 2s infinite 3s;
}

nav .navigation ul li:nth-child(5) {
  -webkit-animation: pulse 2s infinite 4s;
          animation: pulse 2s infinite 4s;
}

.ncc {
  position: relative;
  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%;
}

.ncc .approved {
  width: 70%;
  margin: auto;
  padding: 1rem  10%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.ncc .approved .nccLogo {
  width: 60%;
  margin: auto;
}

.ncc .video {
  position: relative;
  padding-top: 28.125%;
  padding-bottom: 28.125%;
  width: 60%;
  margin: auto;
}

.ncc .video iframe {
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 100%;
  height: 50%;
}

.paralax {
  background-image: url(img/7.1.jpg);
  background-attachment: fixed;
  background-position: cover;
  background-repeat: no-repeat;
  background-size: 100% 100%;
  width: 100%;
  height: 250px;
  opacity: 0.9;
}

@media only screen and (min-width: 320px) and (max-width: 500px) {
  .paralax {
    height: 180px;
  }
}

.qouta {
  position: relative;
  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;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-line-pack: center;
      align-content: center;
  text-align: center;
  background: -webkit-gradient(linear, left top, right top, from(#D2D2D1), to(#3B436A));
  background: linear-gradient(to right, #D2D2D1 0%, #3B436A 100%);
}

.qouta .box {
  margin: 4% auto;
  width: 80%;
}

.qouta .box h1 {
  font-size: 1.5rem;
  text-shadow: #4e2222 1px 1px 5px;
}

.qouta .box button {
  font-size: 1rem;
  font-weight: bolder;
  margin: 1rem;
  padding: 1.5vw 2vw;
  border-radius: 40px;
  color: #4499cb;
  -webkit-box-shadow: 6px 8px 27px 6px #000000;
          box-shadow: 6px 8px 27px 6px #000000;
  outline: none;
}

.qouta .box button:hover {
  background-color: cyan;
  color: darkblue;
  -webkit-box-shadow: 10px 10px 30px 10px #000000;
          box-shadow: 10px 10px 30px 10px #000000;
}

.qouta .box p {
  font-size: 1.5vw;
  position: absolute;
  right: 0;
  bottom: 0;
}

.services {
  width: 100%;
  height: auto;
  text-align: center;
  margin-top: 4vw;
}

.services h1 {
  font-size: 3vw;
  text-shadow: #4e2222 1px 1px 5px;
}

.services .icons {
  width: 80%;
  background: transparent;
  text-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  margin: 1rem auto 3rem auto;
}

.services .icons svg {
  margin: 2vw;
  width: 7vw;
}

.services .icons svg path {
  fill: transparent;
  stroke-width: 10;
  stroke: #58391c;
  stroke-dasharray: 2650;
  stroke-dashoffset: 0;
}

.services .icons svg:hover path {
  -webkit-animation: filler 3s linear forwards;
          animation: filler 3s linear forwards;
}

.services .icons svg:nth-child(5) path {
  stroke-dasharray: 2120;
  stroke-dashoffset: 0;
}

.services .icons svg:nth-child(9) {
  -webkit-animation: pulse 2s infinite 1s;
          animation: pulse 2s infinite 1s;
}

.services .icons a {
  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;
  justify-content: center;
  text-decoration: none;
  color: black;
  font-size: 2vw;
  font-weight: bolder;
  text-align: center;
}

.services .icons .topDeck {
  -ms-flex-pack: distribute;
      justify-content: space-around;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
}

.services .icons .middleDeck {
  -ms-flex-pack: distribute;
      justify-content: space-around;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
}

.services .icons .bottomDeck {
  -ms-flex-pack: distribute;
      justify-content: space-around;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
}

.services .details {
  width: 80%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  margin: auto;
  font-size: 1rem;
}

.services .details .box {
  margin: 4vw auto;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: space-evenly;
      -ms-flex-pack: space-evenly;
          justify-content: space-evenly;
}

.services .details .box ul {
  list-style: none;
  text-align: center;
  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;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.services .details .box ul li {
  margin: 0.2vw;
}

.services .details .reverseBox {
  margin: 1vw auto;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
  -webkit-box-pack: space-evenly;
      -ms-flex-pack: space-evenly;
          justify-content: space-evenly;
}

.services .details .reverseBox ul {
  list-style: none;
  text-align: center;
  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;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.services .details .reverseBox ul li {
  margin: 0.2vw;
}

.services .details img {
  border-radius: 2vw;
  width: 40%;
  height: 14vw;
}

.white {
  background-color: white;
}

.paralaxTwo {
  background-image: url('img/5.jpg');
  background-attachment: fixed;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  width: 100%;
  height: 100vh; /* Full screen height */
  opacity: 0.9;
}

.price {
  width: 100%;
  text-align: center;
}

.price .plan {
  width: 80%;
  margin: 2rem auto;
}

.price .plan h1 {
  font-size: 2rem;
  text-shadow: #4e2222 1px 1px 5px;
}

.price .plan p {
  margin-top: 2rem;
}

.price .mainPrice {
  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;
}

@media screen and (min-width: 320px) and (max-width: 1000px) {
  .price .mainPrice .caravan .image {
    display: none;
  }
  .price .mainPrice .caravan .text {
    width: 100%;
  }
  .price .mainPrice .motorhome .image {
    display: none;
  }
  .price .mainPrice .motorhome .text {
    width: 100%;
  }
}

.price .mainPrice .caravan {
  margin: auto;
  width: 80%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-line-pack: center;
      align-content: center;
  text-align: center;
}

.price .mainPrice .caravan h1 {
  font-size: 2rem;
}

.price .mainPrice .caravan img {
  height: 18vw;
  padding: 2rem;
  border-radius: 20%;
}

.price .mainPrice .caravan .image {
  width: 50%;
}

.price .mainPrice .caravan .text {
  margin: 2rem auto;
  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: space-evenly;
      -ms-flex-pack: space-evenly;
          justify-content: space-evenly;
  font-size: 1.2rem;
  width: 50%;
}

.price .mainPrice .motorhome {
  width: 80%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin: auto;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-line-pack: center;
      align-content: center;
  text-align: center;
}

.price .mainPrice .motorhome h1 {
  font-size: 2rem;
}

.price .mainPrice .motorhome img {
  width: 18vw;
  padding: 2rem;
  border-radius: 20%;
}

.price .mainPrice .motorhome .image {
  width: 50%;
}

.price .mainPrice .motorhome .text {
  margin: 2rem auto;
  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: space-evenly;
      -ms-flex-pack: space-evenly;
          justify-content: space-evenly;
  font-size: 1.2rem;
  width: 50%;
}

.price .mainPrice .otherService {
  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;
  text-align: center;
  -webkit-box-pack: space-evenly;
      -ms-flex-pack: space-evenly;
          justify-content: space-evenly;
}

.price .mainPrice .otherService h1 {
  font-size: 3vw;
  text-shadow: #4e2222 1px 1px 5px;
  margin: 1rem auto;
}

.price .mainPrice .otherService .other {
  width: 80%;
  margin: 1rem auto;
}

.price .mainPrice .otherService .other h2 {
  margin-bottom: 1rem;
}

.about {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: space-evenly;
      -ms-flex-pack: space-evenly;
          justify-content: space-evenly;
  -ms-flex-line-pack: center;
      align-content: center;
  margin: 2rem auto;
}

.about .middle {
  width: 30%;
}

.about .middle img {
  width: 100%;
  border-radius: 40%;
}

.about .right {
  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-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-line-pack: center;
      align-content: center;
  text-align: center;
}

.about .right h1 {
  font-size: 1rem;
}

.about .right img {
  width: 60%;
  margin: 0 auto;
}

.popups {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: 1000;
  display: none;
  background-color: rgba(44, 44, 44, 0.315);
  overflow: scroll;
  overflow-x: hidden;
}

.popups .form::-webkit-scrollbar {
  display: none;
}

.popups .form {
  border: 5px #575757 solid;
  border-radius: 50px;
  background-color: white;
  position: relative;
  margin: auto;
  width: 75%;
}

.popups .form form #spam {
  display: none;
}

.popups .form form .super {
  display: none;
}

.popups .form form .upper {
  padding: 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.popups .form form .upper h1 {
  text-align: center;
  font-size: 1.5rem;
}

.popups .form form .upper img {
  position: absolute;
  right: 30px;
  top: 20px;
  width: 20px;
  float: right;
}

.popups .form form .name {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: space-evenly;
      -ms-flex-pack: space-evenly;
          justify-content: space-evenly;
  padding: 5px;
  width: 80%;
  margin: auto;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.popups .form form .name label {
  font-weight: bolder;
  padding: 1rem;
  font-size: 1rem;
}

.popups .form form .name input {
  outline: olive;
  font-size: 1rem;
  padding: 0.5rem;
  margin: 0.5rem;
  background-color: #f0ebeb;
}

.popups .form form .name textarea {
  text-align: center;
  background-color: #f0ebeb;
  max-width: 100%;
  margin: auto;
}

.popups .form form .button {
  float: right;
  position: relative;
  right: 20px;
  bottom: 20px;
  font-size: 20px;
  font-weight: bolder;
  padding: 10px 20px;
  border-radius: 40px;
  color: #4499cb;
  -webkit-box-shadow: 3px 4px 13px 3px #000000;
          box-shadow: 3px 4px 13px 3px #000000;
  outline: none;
}

.popups .form form .button:hover {
  background-color: cyan;
  color: darkblue;
  -webkit-box-shadow: 10px 5px 15px 5px #000000;
          box-shadow: 10px 5px 15px 5px #000000;
}

@media screen and (min-width: 320px) and (max-width: 500px) {
  .popups .form {
    width: 90%;
  }
}

footer {
  position: relative;
  width: 100%;
  background: -webkit-gradient(linear, left top, right top, from(#D2D2D1), to(#3B436A));
  background: linear-gradient(to right, #D2D2D1 0%, #3B436A 100%);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  text-align: center;
}

footer .bottom {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin: 1rem auto;
}

footer .bottom .details {
  width: 50%;
}

footer .bottom .details a {
  text-decoration: none;
  color: black;
}

footer .bottom .details ul {
  list-style: none;
}

footer .bottom .details ul li {
  padding: 0.2rem;
}

footer .bottom .social {
  margin: auto;
  padding: 0.5rem;
  font-size: 1rem;
  width: 50%;
  line-height: 1.5rem;
}

@media screen and (min-width: 320px) and (max-width: 500px) {
  footer .bottom {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    text-align: center;
  }
  footer .bottom .details {
    width: 90%;
    margin: auto;
  }
  footer .bottom .social {
    width: 90%;
    margin: auto;
    padding: 0.5rem;
  }
}

.copy {
  position: relative;
  width: 90%;
  margin: 0.2rem auto;
}

.copy a {
  text-decoration: none;
  color: black;
}

.line {
  width: 80%;
  margin: 2rem auto;
  height: 1px;
  background-color: black;
}

.black {
  color: black;
  font-weight: bolder;
  font-style: italic;
}

.smallLine {
  width: 50%;
  height: 1px;
  margin: 0.5rem auto;
  background-color: black;
}

@-webkit-keyframes pulse {
  from {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
  50% {
    -webkit-transform: scale3d(1.05, 1.05, 1.05);
    transform: scale3d(1.05, 1.05, 1.05);
  }
  to {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}

@keyframes pulse {
  from {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
  50% {
    -webkit-transform: scale3d(1.05, 1.05, 1.05);
    transform: scale3d(1.05, 1.05, 1.05);
  }
  to {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}

@-webkit-keyframes flip {
  from {
    -webkit-transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 0) rotate3d(0, 1, 0, -360deg);
            transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 0) rotate3d(0, 1, 0, -360deg);
    -webkit-animation-timing-function: ease-out;
            animation-timing-function: ease-out;
  }
  40% {
    -webkit-transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -190deg);
            transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -190deg);
    -webkit-animation-timing-function: ease-out;
            animation-timing-function: ease-out;
  }
  50% {
    -webkit-transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -170deg);
            transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -170deg);
    -webkit-animation-timing-function: ease-in;
            animation-timing-function: ease-in;
  }
  80% {
    -webkit-transform: perspective(400px) scale3d(0.95, 0.95, 0.95) translate3d(0, 0, 0) rotate3d(0, 1, 0, 0deg);
            transform: perspective(400px) scale3d(0.95, 0.95, 0.95) translate3d(0, 0, 0) rotate3d(0, 1, 0, 0deg);
    -webkit-animation-timing-function: ease-in;
            animation-timing-function: ease-in;
  }
  to {
    -webkit-transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 0) rotate3d(0, 1, 0, 0deg);
            transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 0) rotate3d(0, 1, 0, 0deg);
    -webkit-animation-timing-function: ease-in;
            animation-timing-function: ease-in;
  }
}

@keyframes flip {
  from {
    -webkit-transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 0) rotate3d(0, 1, 0, -360deg);
            transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 0) rotate3d(0, 1, 0, -360deg);
    -webkit-animation-timing-function: ease-out;
            animation-timing-function: ease-out;
  }
  40% {
    -webkit-transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -190deg);
            transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -190deg);
    -webkit-animation-timing-function: ease-out;
            animation-timing-function: ease-out;
  }
  50% {
    -webkit-transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -170deg);
            transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -170deg);
    -webkit-animation-timing-function: ease-in;
            animation-timing-function: ease-in;
  }
  80% {
    -webkit-transform: perspective(400px) scale3d(0.95, 0.95, 0.95) translate3d(0, 0, 0) rotate3d(0, 1, 0, 0deg);
            transform: perspective(400px) scale3d(0.95, 0.95, 0.95) translate3d(0, 0, 0) rotate3d(0, 1, 0, 0deg);
    -webkit-animation-timing-function: ease-in;
            animation-timing-function: ease-in;
  }
  to {
    -webkit-transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 0) rotate3d(0, 1, 0, 0deg);
            transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 0) rotate3d(0, 1, 0, 0deg);
    -webkit-animation-timing-function: ease-in;
            animation-timing-function: ease-in;
  }
}

@-webkit-keyframes roll {
  from {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  to {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}

@keyframes roll {
  from {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  to {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}

.roll {
  -webkit-animation: roll 2.5s 2;
          animation: roll 2.5s 2;
}

@-webkit-keyframes movein {
  from {
    -webkit-transform: translateX(-100vw);
            transform: translateX(-100vw);
  }
  to {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
}

@keyframes movein {
  from {
    -webkit-transform: translateX(-100vw);
            transform: translateX(-100vw);
  }
  to {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
}

.movein {
  -webkit-animation: movein 5s 1;
          animation: movein 5s 1;
}

@-webkit-keyframes filler {
  0% {
    stroke-dashoffset: 0;
  }
  40% {
    stroke-dashoffset: 2650;
  }
  80% {
    stroke-dashoffset: 5300;
    fill: transparent;
  }
  100% {
    stroke-dashoffset: 5300;
    fill: #58391c;
  }
}

@keyframes filler {
  0% {
    stroke-dashoffset: 0;
  }
  40% {
    stroke-dashoffset: 2650;
  }
  80% {
    stroke-dashoffset: 5300;
    fill: transparent;
  }
  100% {
    stroke-dashoffset: 5300;
    fill: #58391c;
  }
}

@-webkit-keyframes into {
  0% {
    stroke-dashoffset: 0;
  }
  40% {
    stroke-dashoffset: 2650;
  }
  80% {
    stroke-dashoffset: 5300;
    fill: transparent;
  }
  100% {
    stroke-dashoffset: 5300;
    fill: #58391c;
  }
}

@keyframes into {
  0% {
    stroke-dashoffset: 0;
  }
  40% {
    stroke-dashoffset: 2650;
  }
  80% {
    stroke-dashoffset: 5300;
    fill: transparent;
  }
  100% {
    stroke-dashoffset: 5300;
    fill: #58391c;
  }
}

.into {
  -webkit-animation: into 4s linear forwards;
          animation: into 4s linear forwards;
}

@-webkit-keyframes fadein {
  from {
    opacity: 0;
    scale: 0.2;
  }
  to {
    opacity: 1;
    scale: 0.9;
  }
}

@keyframes fadein {
  from {
    opacity: 0;
    scale: 0.2;
  }
  to {
    opacity: 1;
    scale: 0.9;
  }
}

@-webkit-keyframes fadeout {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}

@keyframes fadeout {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}

@-webkit-keyframes opening {
  from {
    opacity: 0;
    height: 0;
  }
  to {
    opacity: 1;
    height: 20rem;
  }
}

@keyframes opening {
  from {
    opacity: 0;
    height: 0;
  }
  to {
    opacity: 1;
    height: 20rem;
  }
}

.opens {
  -webkit-animation: opening 2s 1 forwards;
          animation: opening 2s 1 forwards;
}

@-webkit-keyframes drop {
  from {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  to {
    -webkit-transform: translateY(100vh);
            transform: translateY(100vh);
    opacity: 1;
  }
}

@keyframes drop {
  from {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  to {
    -webkit-transform: translateY(100vh);
            transform: translateY(100vh);
    opacity: 1;
  }
}
/*# sourceMappingURL=index.css.map */