body {
  margin: 0;
  padding: 0;
  font-family: Arial, Helvetica, sans-serif;
  background-image: url("../images/bg.png");
}

.header {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  height: 60px;
  background: #1e90ff;
  padding: 0 20px;
  color: #fff;
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 15;
  -webkit-animation: header-down 0.5s ease-in-out forwards;
          animation: header-down 0.5s ease-in-out forwards;
  -webkit-animation-delay: 0;
          animation-delay: 0;
}

.header .logo {
  line-height: 60px;
  float: left;
  text-transform: uppercase;
  margin: 0;
  display: none;
}

.header .menu a {
  color: #fff;
  text-transform: uppercase;
  text-decoration: none;
  padding: 0 10px;
  -webkit-transition: 0.4s;
  transition: 0.4s;
  position: relative;
  border-bottom: 1px solid white;
}

.header .show-menu-btn, .header .hide-menu-btn {
  -webkit-transition: 0.4s;
  transition: 0.4s;
  font-size: 30px;
  cursor: pointer;
  display: none;
  z-index: 15;
}

.header .show-menu-btn {
  float: right;
}

.header .show-menu-btn i {
  line-height: 60px;
}

.header .menu a:hover, .header .show-menu-btn:hover, .header .hide-menu-btn:hover {
  color: #c0ee7e;
}

.header .show-menu-btn, .header .hide-menu-btn {
  display: block;
}

.header .menu {
  list-style: none;
  position: fixed;
  width: 100%;
  background: #1e90ff;
  right: -100%;
  top: 0;
  height: 100vh;
  font-size: 16px;
  text-align: center;
  padding: 40px 0;
  line-height: normal;
  -webkit-transition: 0.7s;
  transition: 0.7s;
  margin: 0;
  z-index: 12;
}

.header .menu a {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  display: block;
  line-height: 8vh;
  height: 8vh;
}

.header .hide-menu-btn {
  position: absolute;
  top: 8px;
  right: 20px;
}

.header .menu-visable {
  right: 0;
}

#top {
  position: fixed;
  top: 0;
}

.animated {
  opacity: 0;
}

#catapillar {
  display: none;
}

#to-the-top {
  display: none;
}

section {
  display: block;
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 20px;
  font-family: 'Love Ya Like A Sister', cursive;
  position: relative;
  background: #f2f2f2;
  background: -webkit-gradient(linear, left top, left bottom, from(#f2f2f2), color-stop(25%, #fffee0), color-stop(75%, #fffee0), to(#f2f2f2));
  background: linear-gradient(to bottom, #f2f2f2 0%, #fffee0 25%, #fffee0 75%, #f2f2f2 100%);
  margin-bottom: 10px;
  border-radius: 10px;
  -webkit-box-shadow: inset 0px 0px 30px 0px rgba(50, 50, 200, 0.5);
          box-shadow: inset 0px 0px 30px 0px rgba(50, 50, 200, 0.5);
}

section .indent {
  text-indent: 35px;
}

section ul {
  margin-left: 30px;
}

section .title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 30px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

section .crayon {
  height: 90px;
  width: auto;
  margin: 0 20px;
}

section h2 {
  font-size: 30px;
  text-align: center;
}

section h3 {
  font-size: 20px;
}

section h4 {
  font-size: 18px;
}

section .indent {
  text-indent: 30px;
}

section:after {
  content: '';
  position: absolute;
  bottom: -50px;
  left: 10px;
  right: 10px;
  height: 70px;
  background: url(../images/notepad_join_small.png);
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
  z-index: 3;
}

section .note-bg {
  background: url(../images/lines.png);
  background-position: center;
  background-size: contain;
}

#home {
  margin-top: 50px;
}

#home .photo {
  height: 0;
}

#home .photo img {
  height: 0;
}

#home .title h2 {
  opacity: 1;
}

#samples-menu {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

#samples-menu .image {
  margin-top: 15px;
  width: 100%;
  height: auto;
}

#testimonials .sign {
  text-align: right;
  margin-right: 60px;
}

#testimonials .carousel-index-wrap {
  display: none;
}

#gallery .gallery-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

#gallery .gallery-img {
  width: 40vw;
  height: 40vw;
  margin: 5px;
  -o-object-fit: cover;
     object-fit: cover;
  cursor: pointer;
}

#gallery .gallery-full-img {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background: rgba(0, 0, 0, 0.3);
  z-index: 10;
}

#gallery .gallery-full-img #gallery-full {
  height: 90vh;
  width: 90vw;
  position: fixed;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  -o-object-position: center;
     object-position: center;
  -o-object-fit: contain;
     object-fit: contain;
}

#gallery .gallery-full-img span {
  position: fixed;
  text-align: center;
  top: 60px;
  right: 0px;
  line-height: 60px;
  font-size: 50px;
  color: rgba(255, 255, 255, 0.9);
  height: 60px;
  width: 60px;
  background: rgba(0, 0, 0, 0.7);
  cursor: pointer;
  z-index: 4;
}

#gallery .gallery-full-img span:hover {
  color: white;
  background: rgba(0, 0, 0, 0.9);
}

#eyfs .read-more-state {
  display: none;
}

#eyfs .read-more {
  display: none;
  opacity: 0;
  max-height: 0;
  font-size: 0;
  -webkit-transition: .25s ease;
  transition: .25s ease;
}

#eyfs .read-more .image {
  max-height: 0;
}

#eyfs .read-more-state:checked ~ .read-more {
  display: block;
  opacity: 1;
  font-size: inherit;
  max-height: 999em;
}

#eyfs .read-more-state:checked ~ .read-more .image {
  width: 100%;
  max-height: 570px;
}

#eyfs .read-more-state ~ .read-more-btn:before {
  content: 'Show more';
}

#eyfs .read-more-state:checked ~ .read-more-btn:before {
  content: 'Show less';
}

#eyfs .read-more-btn {
  cursor: pointer;
  display: block;
  padding: 8px;
  width: 90px;
  text-align: center;
  color: #756666;
  line-height: 1.2;
  border: 1px solid #d6d1d1;
  border-radius: 5px;
  margin-top: 20px;
}

#contact {
  text-align: center;
}

#contact .map {
  margin: 0 auto;
  width: 90vw;
  max-width: 800px;
}

#contact .phone-icon {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  line-height: 40px;
}

#contact .phone-icon p {
  font-size: 20px;
  margin: 5px 0;
}

#contact .phone-icon img {
  height: 40px;
  width: 40px;
  margin-right: 20px;
}

#contact:after {
  display: none;
}

#footer {
  text-align: center;
}

#footer a {
  text-decoration: none;
  color: black;
}

#footer a:hover {
  color: blue;
}

.letters-wrap {
  position: fixed;
  top: 0;
  left: 0;
  -webkit-transition: 0.7s;
  transition: 0.7s;
  z-index: 13;
}

.letters-wrap .block-letters {
  display: block;
  position: absolute;
  top: 1px;
  left: 0;
  width: 270px;
  height: 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.letters-wrap .second-row {
  top: 28px;
}

.letters-wrap .letter {
  position: relative;
  height: 30px;
  width: 30px;
  border-radius: 5px;
  background: url("../images/block.png");
  opacity: 0;
}

.letters-wrap .letter:before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  height: 30px;
  width: 30px;
  border: 5px #015701 solid;
  opacity: 0.8;
  border-radius: 5px;
  -webkit-box-shadow: 0px 0px 3px 3px rgba(0, 0, 0, 0.8) inset;
          box-shadow: 0px 0px 3px 3px rgba(0, 0, 0, 0.8) inset;
}

.letters-wrap .letter:after {
  content: 'A';
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  line-height: 20px;
  font-size: 20px;
  color: #015701;
  font-weight: 700;
}

.letters-wrap .letter-L:before {
  border: 5px #015701 solid;
}

.letters-wrap .letter-L:after {
  content: 'L';
}

.letters-wrap .letter-I:before {
  border: 5px red solid;
}

.letters-wrap .letter-I:after {
  content: 'I';
}

.letters-wrap .letter-T:before {
  border: 5px blue solid;
}

.letters-wrap .letter-T:after {
  content: 'T';
}

.letters-wrap .letter-T-2:before {
  border: 5px brown solid;
}

.letters-wrap .letter-T-2:after {
  content: 'T';
}

.letters-wrap .letter-L-2:before {
  border: 5px green solid;
}

.letters-wrap .letter-L-2:after {
  content: 'L';
}

.letters-wrap .letter-E:before {
  border: 5px yellow solid;
}

.letters-wrap .letter-E:after {
  content: 'E';
}

.letters-wrap .letter-D:before {
  border: 5px yellow solid;
}

.letters-wrap .letter-D:after {
  content: 'D';
}

.letters-wrap .letter-U:before {
  border: 5px purple solid;
}

.letters-wrap .letter-U:after {
  content: 'U';
}

.letters-wrap .letter-C:before {
  border: 5px orange solid;
}

.letters-wrap .letter-C:after {
  content: 'C';
}

.letters-wrap .letter-K:before {
  border: 5px blue solid;
}

.letters-wrap .letter-K:after {
  content: 'K';
}

.letters-wrap .letter-N:before {
  border: 5px darkblue solid;
}

.letters-wrap .letter-N:after {
  content: 'N';
}

.letters-wrap .letter-G:before {
  border: 5px #C71585 solid;
}

.letters-wrap .letter-G:after {
  content: 'G';
}

.letters-wrap .letter-S:before {
  border: 5px #BC8F8F solid;
}

.letters-wrap .letter-S:after {
  content: 'S';
}

.letters-off {
  left: -100%;
}

@media screen and (min-width: 640px) {
  .header-down {
    position: fixed;
    -webkit-animation: header-down 0.5s forwards;
            animation: header-down 0.5s forwards;
  }
  .header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: 40px;
    background: #fff;
    color: #1e90ff;
  }
  .header .show-menu-btn, .header .hide-menu-btn {
    display: none;
  }
  .header .menu {
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    position: absolute;
    width: initial;
    top: 0;
    right: 0;
    height: 80px;
    background: transparent;
    padding: 0 20px 0 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
    line-height: 30px;
    -ms-flex-flow: wrap;
        flex-flow: wrap;
    font-weight: 700;
    font-family: 'Permanent Marker', cursive;
    font-family: 'Oleo Script', cursive;
    font-family: 'Knewave', cursive;
    font-family: 'Love Ya Like A Sister', cursive;
  }
  .header .menu li {
    padding: 0;
    z-index: 2;
  }
  .header .menu a {
    padding: 0;
    margin: 5px 10px;
    color: #1e90ff;
    position: relative;
    height: 60px;
    line-height: 60px;
    border: none;
  }
  .header .menu a:after {
    content: '';
    position: absolute;
    bottom: 10px;
    left: 0;
    right: 0;
    height: 4px;
    width: 0%;
    -webkit-transition: all 0.2s;
    transition: all 0.2s;
    background: #00FF00;
    border-radius: 3px;
  }
  .header .menu a:hover {
    color: #00FF00;
  }
  .header .menu a:hover:after {
    width: 110%;
  }
  .header:after {
    content: '';
    background: url("../images/clouds-frame2.png");
    background-size: contain;
    background-position-x: center;
    background-position-y: center;
    background-repeat: repeat;
    position: absolute;
    width: 200%;
    top: 40px;
    left: -50%;
    height: 100px;
    -webkit-animation: header-clouds 40s infinite alternate;
            animation: header-clouds 40s infinite alternate;
  }
  section {
    padding: 40px 30px;
    border-radius: 40px;
    -webkit-transform-origin: top;
            transform-origin: top;
    -webkit-box-shadow: inset 0px 0px 30px 0px rgba(50, 50, 200, 0.5);
            box-shadow: inset 0px 0px 30px 0px rgba(50, 50, 200, 0.5);
    margin-bottom: 15px;
  }
  section .note-bg {
    background: url(../images/lines-big.png);
    background-position: center;
    background-size: contain;
  }
  section .title {
    margin: 30px 0 40px 0;
  }
  section .title .crayon {
    margin: 0 30px;
  }
  section h2 {
    font-size: 48px;
    line-height: 90px;
    margin: 0;
  }
  section h3 {
    font-size: 24px;
  }
  section h4 {
    font-size: 20px;
  }
  section:after {
    top: -30px;
    bottom: initial;
    background: url(../images/notepad_join.png);
    background-position: center;
    background-size: contain;
    background-repeat: no-repeat;
    right: 20px;
    left: 20px;
  }
  .sec-anim {
    opacity: 0;
  }
  .section-flipIn {
    -webkit-animation: sectionFlipIn 1.5s ease-in-out forwards;
            animation: sectionFlipIn 1.5s ease-in-out forwards;
  }
  .section-flipIn-no {
    opacity: 1;
  }
  .animated {
    opacity: 0;
    -webkit-animation-delay: 300ms;
            animation-delay: 300ms;
  }
  #to-the-top {
    display: block;
    text-align: center;
    height: 40px;
    width: 40px;
    border-radius: 5px;
    background: #FF8C00;
    font-size: 30px;
    padding-top: 8px;
    opacity: 0.7;
    position: fixed;
    bottom: 60px;
    right: 60px;
    cursor: pointer;
    -webkit-transition: 500ms;
    transition: 500ms;
    opacity: 0;
    z-index: 3;
  }
  #catapillar {
    display: block;
    height: 50px;
    width: 80px;
    position: absolute;
    top: 0;
    left: 30px;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
    -webkit-animation: catapillar 6s linear 1s alternate infinite;
            animation: catapillar 6s linear 1s alternate infinite;
  }
  .letters-wrap {
    position: absolute;
    top: 150px;
    left: 50%;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
  }
  .letters-wrap .block-letters {
    display: block;
    position: absolute;
    top: 0;
    left: 50%;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
    width: 800px;
    height: 100px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .letters-wrap .second-row {
    top: 100px;
  }
  .letters-wrap .letter {
    position: relative;
    height: 80px;
    width: 80px;
    border-radius: 10px;
    background: url("../images/block.png");
    margin: 0 5px;
    opacity: 0;
  }
  .letters-wrap .letter:before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    height: 80px;
    width: 80px;
    border: 10px #015701 solid;
    opacity: 0.8;
    border-radius: 10px;
    -webkit-box-shadow: 0px 0px 3px 3px rgba(0, 0, 0, 0.8) inset;
            box-shadow: 0px 0px 3px 3px rgba(0, 0, 0, 0.8) inset;
  }
  .letters-wrap .letter:after {
    content: 'A';
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
    line-height: 50px;
    font-size: 50px;
    color: #015701;
    font-weight: 700;
  }
  .letters-wrap .letter-L:before {
    border: 10px #015701 solid;
  }
  .letters-wrap .letter-L:after {
    content: 'L';
  }
  .letters-wrap .letter-I:before {
    border: 10px red solid;
  }
  .letters-wrap .letter-I:after {
    content: 'I';
  }
  .letters-wrap .letter-T:before {
    border: 10px blue solid;
  }
  .letters-wrap .letter-T:after {
    content: 'T';
  }
  .letters-wrap .letter-T-2:before {
    border: 10px brown solid;
  }
  .letters-wrap .letter-T-2:after {
    content: 'T';
  }
  .letters-wrap .letter-L-2:before {
    border: 10px green solid;
  }
  .letters-wrap .letter-L-2:after {
    content: 'L';
  }
  .letters-wrap .letter-E:before {
    border: 10px yellow solid;
  }
  .letters-wrap .letter-E:after {
    content: 'E';
  }
  .letters-wrap .letter-D:before {
    border: 10px yellow solid;
  }
  .letters-wrap .letter-D:after {
    content: 'D';
  }
  .letters-wrap .letter-U:before {
    border: 10px purple solid;
  }
  .letters-wrap .letter-U:after {
    content: 'U';
  }
  .letters-wrap .letter-C:before {
    border: 10px orange solid;
  }
  .letters-wrap .letter-C:after {
    content: 'C';
  }
  .letters-wrap .letter-K:before {
    border: 10px blue solid;
  }
  .letters-wrap .letter-K:after {
    content: 'K';
  }
  .letters-wrap .letter-N:before {
    border: 10px darkblue solid;
  }
  .letters-wrap .letter-N:after {
    content: 'N';
  }
  .letters-wrap .letter-G:before {
    border: 10px #C71585 solid;
  }
  .letters-wrap .letter-G:after {
    content: 'G';
  }
  .letters-wrap .letter-S:before {
    border: 10px #BC8F8F solid;
  }
  .letters-wrap .letter-S:after {
    content: 'S';
  }
  #home {
    padding-top: 200px;
    margin-top: 550px;
    position: relative;
  }
  #home .photo {
    position: absolute;
    top: 0;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
    background: url(../images/blue_flower_frame.png);
    height: 400px;
    width: 400px;
    background-position: center;
    background-size: contain;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  #home .photo img {
    height: 250px;
    width: 250px;
    -o-object-fit: cover;
       object-fit: cover;
    border-radius: 50%;
  }
  #home:after {
    display: none;
  }
  #gallery .gallery-img {
    width: 300px;
    height: 300px;
    margin: 10px 10px;
  }
  #gallery .gallery-img img {
    width: 300px;
    height: 300px;
    -o-object-fit: cover;
       object-fit: cover;
  }
  #gallery .gallery-full-img span {
    top: 0;
  }
  #testimonials .carousel-wrap {
    margin: 0 auto;
    margin-top: 40px;
    max-width: 1200px;
    height: 600px;
    -webkit-transition: -webkit-transform 1000ms;
    transition: -webkit-transform 1000ms;
    transition: transform 1000ms;
    transition: transform 1000ms, -webkit-transform 1000ms;
    position: relative;
    overflow: hidden;
  }
  #testimonials .frame {
    width: 30%;
    height: 300px;
    -webkit-transform: perspective(2000px);
            transform: perspective(2000px);
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
    -webkit-transition: all 1s;
    transition: all 1s;
  }
  #testimonials .frame-left {
    -webkit-transform: translate(-155%, -50%);
            transform: translate(-155%, -50%);
    opacity: 1;
  }
  #testimonials .frame-far-left {
    -webkit-transform: translate(-275%, -50%);
            transform: translate(-275%, -50%);
    opacity: 0;
  }
  #testimonials .frame-center {
    -webkit-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
    opacity: 1;
    z-index: 10;
  }
  #testimonials .frame-right {
    -webkit-transform: translate(55%, -50%);
            transform: translate(55%, -50%);
    opacity: 1;
  }
  #testimonials .frame-far-right {
    -webkit-transform: translate(175%, -50%);
            transform: translate(175%, -50%);
    opacity: 0;
  }
  #testimonials .frame-central-zoom {
    -webkit-transition: all 0.5s easy-in-out 1s;
    transition: all 0.5s easy-in-out 1s;
    -webkit-transform: translate(-50%, -60%) scale(2, 1.7);
            transform: translate(-50%, -60%) scale(2, 1.7);
    -webkit-transform-origin: center;
            transform-origin: center;
  }
  #testimonials .left-panel {
    -webkit-transform-origin: 100% 50% 0px;
            transform-origin: 100% 50% 0px;
    -webkit-transform: perspective(1500px) rotateY(40deg);
            transform: perspective(1500px) rotateY(40deg);
    position: relative;
    -webkit-transform-style: preserve-3d;
            transform-style: preserve-3d;
  }
  #testimonials .right-panel {
    -webkit-transform-origin: 0% 50% 0px;
            transform-origin: 0% 50% 0px;
    -webkit-transform: perspective(1500px) rotateY(-40deg);
            transform: perspective(1500px) rotateY(-40deg);
    position: relative;
    -webkit-transform-style: preserve-3d;
            transform-style: preserve-3d;
  }
  #testimonials .center-panel {
    -webkit-transform-origin: 0% 50% 0px;
            transform-origin: 0% 50% 0px;
    -webkit-transform: perspective(1500px) rotateY(0deg);
            transform: perspective(1500px) rotateY(0deg);
    position: relative;
    -webkit-transform-style: preserve-3d;
            transform-style: preserve-3d;
  }
  #testimonials .panel {
    height: 300px;
    -webkit-transition: all 1s;
    transition: all 1s;
  }
  #testimonials .panel div {
    position: absolute;
    height: 100%;
    width: 100%;
    border: 2px solid #00A2E8;
    -webkit-backface-visibility: hidden;
            backface-visibility: hidden;
    background: #fff;
  }
  #testimonials .panel div p {
    margin: 0;
    padding: 20px;
    position: relative;
  }
  #testimonials .panel div .sign {
    position: absolute;
    bottom: 20px;
    right: 20px;
  }
  #testimonials .panel > :first-child {
    border-radius: 2px;
    -webkit-box-shadow: 0 0.5rem 4rem 0 rgba(0, 160, 230, 0.5);
            box-shadow: 0 0.5rem 4rem 0 rgba(0, 160, 230, 0.5);
  }
  #testimonials .panel > :nth-child(2) {
    top: 0;
    right: 0;
    width: 3rem;
    -webkit-transform: translate3d(5px, 0, -3rem) rotateY(90deg);
            transform: translate3d(5px, 0, -3rem) rotateY(90deg);
    -webkit-transform-origin: 100% 50%;
            transform-origin: 100% 50%;
  }
  #testimonials .panel > :nth-child(3) {
    top: 0;
    left: 0;
    width: 3rem;
    -webkit-transform: translate3d(-1px, 0, -3rem) rotateY(-90deg);
            transform: translate3d(-1px, 0, -3rem) rotateY(-90deg);
    -webkit-transform-origin: 0 50%;
            transform-origin: 0 50%;
  }
  #testimonials .carousel-index-wrap {
    position: absolute;
    bottom: 5px;
    left: 50%;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    height: 40px;
  }
  #testimonials .carousel-index-wrap #next, #testimonials .carousel-index-wrap #previous {
    color: #99d9ea;
    font-size: 40px;
    line-height: 40px;
    position: absolute;
    right: -30px;
    top: 0px;
    cursor: pointer;
  }
  #testimonials .carousel-index-wrap #next:hover, #testimonials .carousel-index-wrap #previous:hover {
    color: #00A2E8;
  }
  #testimonials .carousel-index-wrap #previous {
    right: initial;
    left: -30px;
  }
  #testimonials .carousel-index {
    height: 20px;
    width: 70px;
    margin: 0 5px;
    background: #99d9ea;
    border: 2px solid rgba(255, 255, 255, 0.9);
    border-radius: 5px;
    cursor: pointer;
  }
  #testimonials .carousel-index:hover {
    background: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 160, 230, 0.7)), color-stop(25%, #00a0e6), color-stop(50%, white), color-stop(75%, #00a0e6), to(rgba(0, 160, 230, 0.7)));
    background: linear-gradient(to bottom, rgba(0, 160, 230, 0.7) 0%, #00a0e6 25%, white 50%, #00a0e6 75%, rgba(0, 160, 230, 0.7) 100%);
    background: #00A2E8;
  }
  #testimonials .carousel-index-active {
    background: rgba(255, 255, 255, 0.9);
    background: -webkit-gradient(linear, left top, left bottom, from(#000071), color-stop(50%, #a9f9f9), to(#000071));
    background: linear-gradient(to bottom, #000071 0%, #a9f9f9 50%, #000071 100%);
    background: #00A2E8;
  }
  #contact {
    height: 200px;
    width: 300px;
    position: relative;
    padding: 0;
    margin: 0 auto;
    background: transparent;
    -webkit-box-shadow: inset 0px 0px 30px 0px rgba(50, 50, 200, 0);
            box-shadow: inset 0px 0px 30px 0px rgba(50, 50, 200, 0);
    border-radius: 0;
  }
  #contact:before {
    content: '';
    position: absolute;
    top: -100px;
    left: 50%;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
    height: 300px;
    width: 200px;
    border-left: dashed 3px rgba(255, 255, 255, 0.9);
    border-right: dashed 3px white;
    z-index: -10;
  }
  #contact:after {
    display: none;
  }
  #contact .contact-wrap {
    display: block;
    height: 400px;
    width: 400px;
    position: absolute;
    top: 50px;
    left: 50%;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
    background: url(../images/white_frame.png);
    background-position: center;
    background-size: contain;
    padding: 60px;
    -webkit-animation: contact 4s ease-in-out alternate infinite;
            animation: contact 4s ease-in-out alternate infinite;
    -webkit-transform-origin: top;
            transform-origin: top;
    z-index: 1;
  }
  #footer {
    width: 100%;
    height: 300px;
    margin-top: 250px;
    background: url("../images/clouds-frame.png");
    background-size: cover;
    background-position-x: center;
    background-position-y: center;
    background-repeat: no-repeat;
    -webkit-transform: rotate(180deg);
            transform: rotate(180deg);
    z-index: 0;
    text-align: center;
  }
  .copyrights {
    color: black;
    -webkit-transform: rotate(180deg);
            transform: rotate(180deg);
    padding-bottom: 80px;
  }
}

@media screen and (min-width: 640px) and (max-width: 1050px) {
  .header .menu a {
    height: 40px;
    line-height: 40px;
  }
  .header .menu a:after {
    bottom: 5px;
  }
  #testimonials p {
    font-size: 12px;
  }
  #gallery .gallery-img {
    width: 270px;
    height: 270px;
    margin: 5px 5px;
  }
}

@media screen and (min-width: 640px) and (max-width: 820px) {
  .letters-wrap .block-letters {
    width: 90vw;
  }
  .letters-wrap .letter {
    height: 60px;
    width: 60px;
  }
}

@media screen and (max-width: 640px) {
  .header {
    z-index: 10;
  }
}

.bounceInDown-1 {
  -webkit-animation-duration: 1s;
          animation-duration: 1s;
  -webkit-animation-name: bounceInDown1;
          animation-name: bounceInDown1;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  -webkit-animation-delay: 500ms;
          animation-delay: 500ms;
}

@-webkit-keyframes bounceInDown1 {
  from,
  60%,
  75%,
  90%,
  to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
            animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, -3000px, 0) rotate(0deg);
            transform: translate3d(0, -3000px, 0) rotate(0deg);
  }
  60% {
    opacity: 1;
    -webkit-transform: translate3d(0, 25px, 0);
            transform: translate3d(0, 25px, 0);
  }
  75% {
    -webkit-transform: translate3d(0, -10px, 0);
            transform: translate3d(0, -10px, 0);
  }
  90% {
    -webkit-transform: translate3d(0, 5px, 0);
            transform: translate3d(0, 5px, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0) rotate(-20deg);
            transform: translate3d(0, 0, 0) rotate(-20deg);
  }
}

@keyframes bounceInDown1 {
  from,
  60%,
  75%,
  90%,
  to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
            animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, -3000px, 0) rotate(0deg);
            transform: translate3d(0, -3000px, 0) rotate(0deg);
  }
  60% {
    opacity: 1;
    -webkit-transform: translate3d(0, 25px, 0);
            transform: translate3d(0, 25px, 0);
  }
  75% {
    -webkit-transform: translate3d(0, -10px, 0);
            transform: translate3d(0, -10px, 0);
  }
  90% {
    -webkit-transform: translate3d(0, 5px, 0);
            transform: translate3d(0, 5px, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0) rotate(-20deg);
            transform: translate3d(0, 0, 0) rotate(-20deg);
  }
}

.bounceInDown-2 {
  -webkit-animation-duration: 1s;
          animation-duration: 1s;
  -webkit-animation-name: bounceInDown2;
          animation-name: bounceInDown2;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  -webkit-animation-delay: 1000ms;
          animation-delay: 1000ms;
}

@-webkit-keyframes bounceInDown2 {
  from,
  60%,
  75%,
  90%,
  to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
            animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, -3000px, 0) rotate(0deg);
            transform: translate3d(0, -3000px, 0) rotate(0deg);
  }
  60% {
    opacity: 1;
    -webkit-transform: translate3d(0, 25px, 0);
            transform: translate3d(0, 25px, 0);
  }
  75% {
    -webkit-transform: translate3d(0, -10px, 0);
            transform: translate3d(0, -10px, 0);
  }
  90% {
    -webkit-transform: translate3d(0, 5px, 0);
            transform: translate3d(0, 5px, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0) rotate(5deg);
            transform: translate3d(0, 0, 0) rotate(5deg);
  }
}

@keyframes bounceInDown2 {
  from,
  60%,
  75%,
  90%,
  to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
            animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, -3000px, 0) rotate(0deg);
            transform: translate3d(0, -3000px, 0) rotate(0deg);
  }
  60% {
    opacity: 1;
    -webkit-transform: translate3d(0, 25px, 0);
            transform: translate3d(0, 25px, 0);
  }
  75% {
    -webkit-transform: translate3d(0, -10px, 0);
            transform: translate3d(0, -10px, 0);
  }
  90% {
    -webkit-transform: translate3d(0, 5px, 0);
            transform: translate3d(0, 5px, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0) rotate(5deg);
            transform: translate3d(0, 0, 0) rotate(5deg);
  }
}

.bounceInDown-3 {
  -webkit-animation-duration: 1s;
          animation-duration: 1s;
  -webkit-animation-name: bounceInDown3;
          animation-name: bounceInDown3;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  -webkit-animation-delay: 1500ms;
          animation-delay: 1500ms;
}

@-webkit-keyframes bounceInDown3 {
  from,
  60%,
  75%,
  90%,
  to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
            animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, -3000px, 0) rotate(0deg);
            transform: translate3d(0, -3000px, 0) rotate(0deg);
  }
  60% {
    opacity: 1;
    -webkit-transform: translate3d(0, 25px, 0);
            transform: translate3d(0, 25px, 0);
  }
  75% {
    -webkit-transform: translate3d(0, -10px, 0);
            transform: translate3d(0, -10px, 0);
  }
  90% {
    -webkit-transform: translate3d(0, 5px, 0);
            transform: translate3d(0, 5px, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0) rotate(-10deg);
            transform: translate3d(0, 0, 0) rotate(-10deg);
  }
}

@keyframes bounceInDown3 {
  from,
  60%,
  75%,
  90%,
  to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
            animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, -3000px, 0) rotate(0deg);
            transform: translate3d(0, -3000px, 0) rotate(0deg);
  }
  60% {
    opacity: 1;
    -webkit-transform: translate3d(0, 25px, 0);
            transform: translate3d(0, 25px, 0);
  }
  75% {
    -webkit-transform: translate3d(0, -10px, 0);
            transform: translate3d(0, -10px, 0);
  }
  90% {
    -webkit-transform: translate3d(0, 5px, 0);
            transform: translate3d(0, 5px, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0) rotate(-10deg);
            transform: translate3d(0, 0, 0) rotate(-10deg);
  }
}

.bounceInDown-4 {
  -webkit-animation-duration: 1s;
          animation-duration: 1s;
  -webkit-animation-name: bounceInDown4;
          animation-name: bounceInDown4;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  -webkit-animation-delay: 2000ms;
          animation-delay: 2000ms;
}

@-webkit-keyframes bounceInDown4 {
  from,
  60%,
  75%,
  90%,
  to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
            animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, -3000px, 0) rotate(0deg);
            transform: translate3d(0, -3000px, 0) rotate(0deg);
  }
  60% {
    opacity: 1;
    -webkit-transform: translate3d(0, 25px, 0);
            transform: translate3d(0, 25px, 0);
  }
  75% {
    -webkit-transform: translate3d(0, -10px, 0);
            transform: translate3d(0, -10px, 0);
  }
  90% {
    -webkit-transform: translate3d(0, 5px, 0);
            transform: translate3d(0, 5px, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0) rotate(-3deg);
            transform: translate3d(0, 0, 0) rotate(-3deg);
  }
}

@keyframes bounceInDown4 {
  from,
  60%,
  75%,
  90%,
  to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
            animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, -3000px, 0) rotate(0deg);
            transform: translate3d(0, -3000px, 0) rotate(0deg);
  }
  60% {
    opacity: 1;
    -webkit-transform: translate3d(0, 25px, 0);
            transform: translate3d(0, 25px, 0);
  }
  75% {
    -webkit-transform: translate3d(0, -10px, 0);
            transform: translate3d(0, -10px, 0);
  }
  90% {
    -webkit-transform: translate3d(0, 5px, 0);
            transform: translate3d(0, 5px, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0) rotate(-3deg);
            transform: translate3d(0, 0, 0) rotate(-3deg);
  }
}

.bounceInDown-5 {
  -webkit-animation-duration: 1s;
          animation-duration: 1s;
  -webkit-animation-name: bounceInDown5;
          animation-name: bounceInDown5;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  -webkit-animation-delay: 2500ms;
          animation-delay: 2500ms;
}

@-webkit-keyframes bounceInDown5 {
  from,
  60%,
  75%,
  90%,
  to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
            animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, -3000px, 0) rotate(0deg);
            transform: translate3d(0, -3000px, 0) rotate(0deg);
  }
  60% {
    opacity: 1;
    -webkit-transform: translate3d(0, 25px, 0);
            transform: translate3d(0, 25px, 0);
  }
  75% {
    -webkit-transform: translate3d(0, -10px, 0);
            transform: translate3d(0, -10px, 0);
  }
  90% {
    -webkit-transform: translate3d(0, 5px, 0);
            transform: translate3d(0, 5px, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0) rotate(13deg);
            transform: translate3d(0, 0, 0) rotate(13deg);
  }
}

@keyframes bounceInDown5 {
  from,
  60%,
  75%,
  90%,
  to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
            animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, -3000px, 0) rotate(0deg);
            transform: translate3d(0, -3000px, 0) rotate(0deg);
  }
  60% {
    opacity: 1;
    -webkit-transform: translate3d(0, 25px, 0);
            transform: translate3d(0, 25px, 0);
  }
  75% {
    -webkit-transform: translate3d(0, -10px, 0);
            transform: translate3d(0, -10px, 0);
  }
  90% {
    -webkit-transform: translate3d(0, 5px, 0);
            transform: translate3d(0, 5px, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0) rotate(13deg);
            transform: translate3d(0, 0, 0) rotate(13deg);
  }
}

.bounceInDown-6 {
  -webkit-animation-duration: 1s;
          animation-duration: 1s;
  -webkit-animation-name: bounceInDown6;
          animation-name: bounceInDown6;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  -webkit-animation-delay: 3000ms;
          animation-delay: 3000ms;
}

@-webkit-keyframes bounceInDown6 {
  from,
  60%,
  75%,
  90%,
  to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
            animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, -3000px, 0) rotate(0deg);
            transform: translate3d(0, -3000px, 0) rotate(0deg);
  }
  60% {
    opacity: 1;
    -webkit-transform: translate3d(0, 25px, 0);
            transform: translate3d(0, 25px, 0);
  }
  75% {
    -webkit-transform: translate3d(0, -10px, 0);
            transform: translate3d(0, -10px, 0);
  }
  90% {
    -webkit-transform: translate3d(0, 5px, 0);
            transform: translate3d(0, 5px, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0) rotate(5deg);
            transform: translate3d(0, 0, 0) rotate(5deg);
  }
}

@keyframes bounceInDown6 {
  from,
  60%,
  75%,
  90%,
  to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
            animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, -3000px, 0) rotate(0deg);
            transform: translate3d(0, -3000px, 0) rotate(0deg);
  }
  60% {
    opacity: 1;
    -webkit-transform: translate3d(0, 25px, 0);
            transform: translate3d(0, 25px, 0);
  }
  75% {
    -webkit-transform: translate3d(0, -10px, 0);
            transform: translate3d(0, -10px, 0);
  }
  90% {
    -webkit-transform: translate3d(0, 5px, 0);
            transform: translate3d(0, 5px, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0) rotate(5deg);
            transform: translate3d(0, 0, 0) rotate(5deg);
  }
}

.bounceInDown-7 {
  -webkit-animation-duration: 1s;
          animation-duration: 1s;
  -webkit-animation-name: bounceInDown7;
          animation-name: bounceInDown7;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  -webkit-animation-delay: 3500ms;
          animation-delay: 3500ms;
}

@-webkit-keyframes bounceInDown7 {
  from,
  60%,
  75%,
  90%,
  to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
            animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, -3000px, 0) rotate(0deg);
            transform: translate3d(0, -3000px, 0) rotate(0deg);
  }
  60% {
    opacity: 1;
    -webkit-transform: translate3d(0, 25px, 0);
            transform: translate3d(0, 25px, 0);
  }
  75% {
    -webkit-transform: translate3d(0, -10px, 0);
            transform: translate3d(0, -10px, 0);
  }
  90% {
    -webkit-transform: translate3d(0, 5px, 0);
            transform: translate3d(0, 5px, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0) rotate(0deg);
            transform: translate3d(0, 0, 0) rotate(0deg);
  }
}

@keyframes bounceInDown7 {
  from,
  60%,
  75%,
  90%,
  to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
            animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, -3000px, 0) rotate(0deg);
            transform: translate3d(0, -3000px, 0) rotate(0deg);
  }
  60% {
    opacity: 1;
    -webkit-transform: translate3d(0, 25px, 0);
            transform: translate3d(0, 25px, 0);
  }
  75% {
    -webkit-transform: translate3d(0, -10px, 0);
            transform: translate3d(0, -10px, 0);
  }
  90% {
    -webkit-transform: translate3d(0, 5px, 0);
            transform: translate3d(0, 5px, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0) rotate(0deg);
            transform: translate3d(0, 0, 0) rotate(0deg);
  }
}

.bounceInDown-8 {
  -webkit-animation-duration: 1s;
          animation-duration: 1s;
  -webkit-animation-name: bounceInDown8;
          animation-name: bounceInDown8;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  -webkit-animation-delay: 4000ms;
          animation-delay: 4000ms;
}

@-webkit-keyframes bounceInDown8 {
  from,
  60%,
  75%,
  90%,
  to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
            animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, -3000px, 0) rotate(0deg);
            transform: translate3d(0, -3000px, 0) rotate(0deg);
  }
  60% {
    opacity: 1;
    -webkit-transform: translate3d(0, 25px, 0);
            transform: translate3d(0, 25px, 0);
  }
  75% {
    -webkit-transform: translate3d(0, -10px, 0);
            transform: translate3d(0, -10px, 0);
  }
  90% {
    -webkit-transform: translate3d(0, 5px, 0);
            transform: translate3d(0, 5px, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0) rotate(-15deg);
            transform: translate3d(0, 0, 0) rotate(-15deg);
  }
}

@keyframes bounceInDown8 {
  from,
  60%,
  75%,
  90%,
  to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
            animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, -3000px, 0) rotate(0deg);
            transform: translate3d(0, -3000px, 0) rotate(0deg);
  }
  60% {
    opacity: 1;
    -webkit-transform: translate3d(0, 25px, 0);
            transform: translate3d(0, 25px, 0);
  }
  75% {
    -webkit-transform: translate3d(0, -10px, 0);
            transform: translate3d(0, -10px, 0);
  }
  90% {
    -webkit-transform: translate3d(0, 5px, 0);
            transform: translate3d(0, 5px, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0) rotate(-15deg);
            transform: translate3d(0, 0, 0) rotate(-15deg);
  }
}

.bounceInDown-9 {
  -webkit-animation-duration: 1s;
          animation-duration: 1s;
  -webkit-animation-name: bounceInDown9;
          animation-name: bounceInDown9;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  -webkit-animation-delay: 4500ms;
          animation-delay: 4500ms;
}

@-webkit-keyframes bounceInDown9 {
  from,
  60%,
  75%,
  90%,
  to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
            animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, -3000px, 0) rotate(0deg);
            transform: translate3d(0, -3000px, 0) rotate(0deg);
  }
  60% {
    opacity: 1;
    -webkit-transform: translate3d(0, 25px, 0);
            transform: translate3d(0, 25px, 0);
  }
  75% {
    -webkit-transform: translate3d(0, -10px, 0);
            transform: translate3d(0, -10px, 0);
  }
  90% {
    -webkit-transform: translate3d(0, 5px, 0);
            transform: translate3d(0, 5px, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0) rotate(5deg);
            transform: translate3d(0, 0, 0) rotate(5deg);
  }
}

@keyframes bounceInDown9 {
  from,
  60%,
  75%,
  90%,
  to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
            animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, -3000px, 0) rotate(0deg);
            transform: translate3d(0, -3000px, 0) rotate(0deg);
  }
  60% {
    opacity: 1;
    -webkit-transform: translate3d(0, 25px, 0);
            transform: translate3d(0, 25px, 0);
  }
  75% {
    -webkit-transform: translate3d(0, -10px, 0);
            transform: translate3d(0, -10px, 0);
  }
  90% {
    -webkit-transform: translate3d(0, 5px, 0);
            transform: translate3d(0, 5px, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0) rotate(5deg);
            transform: translate3d(0, 0, 0) rotate(5deg);
  }
}

.bounceInDown-10 {
  -webkit-animation-duration: 1s;
          animation-duration: 1s;
  -webkit-animation-name: bounceInDown10;
          animation-name: bounceInDown10;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  -webkit-animation-delay: 5000ms;
          animation-delay: 5000ms;
}

@-webkit-keyframes bounceInDown10 {
  from,
  60%,
  75%,
  90%,
  to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
            animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, -3000px, 0) rotate(0deg);
            transform: translate3d(0, -3000px, 0) rotate(0deg);
  }
  60% {
    opacity: 1;
    -webkit-transform: translate3d(0, 25px, 0);
            transform: translate3d(0, 25px, 0);
  }
  75% {
    -webkit-transform: translate3d(0, -10px, 0);
            transform: translate3d(0, -10px, 0);
  }
  90% {
    -webkit-transform: translate3d(0, 5px, 0);
            transform: translate3d(0, 5px, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0) rotate(-7deg);
            transform: translate3d(0, 0, 0) rotate(-7deg);
  }
}

@keyframes bounceInDown10 {
  from,
  60%,
  75%,
  90%,
  to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
            animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, -3000px, 0) rotate(0deg);
            transform: translate3d(0, -3000px, 0) rotate(0deg);
  }
  60% {
    opacity: 1;
    -webkit-transform: translate3d(0, 25px, 0);
            transform: translate3d(0, 25px, 0);
  }
  75% {
    -webkit-transform: translate3d(0, -10px, 0);
            transform: translate3d(0, -10px, 0);
  }
  90% {
    -webkit-transform: translate3d(0, 5px, 0);
            transform: translate3d(0, 5px, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0) rotate(-7deg);
            transform: translate3d(0, 0, 0) rotate(-7deg);
  }
}

.bounceInDown-11 {
  -webkit-animation-duration: 1s;
          animation-duration: 1s;
  -webkit-animation-name: bounceInDown11;
          animation-name: bounceInDown11;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  -webkit-animation-delay: 5500ms;
          animation-delay: 5500ms;
}

@-webkit-keyframes bounceInDown11 {
  from,
  60%,
  75%,
  90%,
  to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
            animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, -3000px, 0) rotate(0deg);
            transform: translate3d(0, -3000px, 0) rotate(0deg);
  }
  60% {
    opacity: 1;
    -webkit-transform: translate3d(0, 25px, 0);
            transform: translate3d(0, 25px, 0);
  }
  75% {
    -webkit-transform: translate3d(0, -10px, 0);
            transform: translate3d(0, -10px, 0);
  }
  90% {
    -webkit-transform: translate3d(0, 5px, 0);
            transform: translate3d(0, 5px, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0) rotate(20deg);
            transform: translate3d(0, 0, 0) rotate(20deg);
  }
}

@keyframes bounceInDown11 {
  from,
  60%,
  75%,
  90%,
  to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
            animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, -3000px, 0) rotate(0deg);
            transform: translate3d(0, -3000px, 0) rotate(0deg);
  }
  60% {
    opacity: 1;
    -webkit-transform: translate3d(0, 25px, 0);
            transform: translate3d(0, 25px, 0);
  }
  75% {
    -webkit-transform: translate3d(0, -10px, 0);
            transform: translate3d(0, -10px, 0);
  }
  90% {
    -webkit-transform: translate3d(0, 5px, 0);
            transform: translate3d(0, 5px, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0) rotate(20deg);
            transform: translate3d(0, 0, 0) rotate(20deg);
  }
}

.bounceInDown-12 {
  -webkit-animation-duration: 1s;
          animation-duration: 1s;
  -webkit-animation-name: bounceInDown12;
          animation-name: bounceInDown12;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  -webkit-animation-delay: 6000ms;
          animation-delay: 6000ms;
}

@-webkit-keyframes bounceInDown12 {
  from,
  60%,
  75%,
  90%,
  to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
            animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, -3000px, 0) rotate(0deg);
            transform: translate3d(0, -3000px, 0) rotate(0deg);
  }
  60% {
    opacity: 1;
    -webkit-transform: translate3d(0, 25px, 0);
            transform: translate3d(0, 25px, 0);
  }
  75% {
    -webkit-transform: translate3d(0, -10px, 0);
            transform: translate3d(0, -10px, 0);
  }
  90% {
    -webkit-transform: translate3d(0, 5px, 0);
            transform: translate3d(0, 5px, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0) rotate(-5deg);
            transform: translate3d(0, 0, 0) rotate(-5deg);
  }
}

@keyframes bounceInDown12 {
  from,
  60%,
  75%,
  90%,
  to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
            animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, -3000px, 0) rotate(0deg);
            transform: translate3d(0, -3000px, 0) rotate(0deg);
  }
  60% {
    opacity: 1;
    -webkit-transform: translate3d(0, 25px, 0);
            transform: translate3d(0, 25px, 0);
  }
  75% {
    -webkit-transform: translate3d(0, -10px, 0);
            transform: translate3d(0, -10px, 0);
  }
  90% {
    -webkit-transform: translate3d(0, 5px, 0);
            transform: translate3d(0, 5px, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0) rotate(-5deg);
            transform: translate3d(0, 0, 0) rotate(-5deg);
  }
}

.bounceInDown-13 {
  -webkit-animation-duration: 1s;
          animation-duration: 1s;
  -webkit-animation-name: bounceInDown13;
          animation-name: bounceInDown13;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  -webkit-animation-delay: 6500ms;
          animation-delay: 6500ms;
}

@-webkit-keyframes bounceInDown13 {
  from,
  60%,
  75%,
  90%,
  to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
            animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, -3000px, 0) rotate(0deg);
            transform: translate3d(0, -3000px, 0) rotate(0deg);
  }
  60% {
    opacity: 1;
    -webkit-transform: translate3d(0, 25px, 0);
            transform: translate3d(0, 25px, 0);
  }
  75% {
    -webkit-transform: translate3d(0, -10px, 0);
            transform: translate3d(0, -10px, 0);
  }
  90% {
    -webkit-transform: translate3d(0, 5px, 0);
            transform: translate3d(0, 5px, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0) rotate(7deg);
            transform: translate3d(0, 0, 0) rotate(7deg);
  }
}

@keyframes bounceInDown13 {
  from,
  60%,
  75%,
  90%,
  to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
            animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, -3000px, 0) rotate(0deg);
            transform: translate3d(0, -3000px, 0) rotate(0deg);
  }
  60% {
    opacity: 1;
    -webkit-transform: translate3d(0, 25px, 0);
            transform: translate3d(0, 25px, 0);
  }
  75% {
    -webkit-transform: translate3d(0, -10px, 0);
            transform: translate3d(0, -10px, 0);
  }
  90% {
    -webkit-transform: translate3d(0, 5px, 0);
            transform: translate3d(0, 5px, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0) rotate(7deg);
            transform: translate3d(0, 0, 0) rotate(7deg);
  }
}

.bounceInDown-14 {
  -webkit-animation-duration: 1s;
          animation-duration: 1s;
  -webkit-animation-name: bounceInDown14;
          animation-name: bounceInDown14;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  -webkit-animation-delay: 7000ms;
          animation-delay: 7000ms;
}

@-webkit-keyframes bounceInDown14 {
  from,
  60%,
  75%,
  90%,
  to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
            animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, -3000px, 0) rotate(0deg);
            transform: translate3d(0, -3000px, 0) rotate(0deg);
  }
  60% {
    opacity: 1;
    -webkit-transform: translate3d(0, 25px, 0);
            transform: translate3d(0, 25px, 0);
  }
  75% {
    -webkit-transform: translate3d(0, -10px, 0);
            transform: translate3d(0, -10px, 0);
  }
  90% {
    -webkit-transform: translate3d(0, 5px, 0);
            transform: translate3d(0, 5px, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0) rotate(-10deg);
            transform: translate3d(0, 0, 0) rotate(-10deg);
  }
}

@keyframes bounceInDown14 {
  from,
  60%,
  75%,
  90%,
  to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
            animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, -3000px, 0) rotate(0deg);
            transform: translate3d(0, -3000px, 0) rotate(0deg);
  }
  60% {
    opacity: 1;
    -webkit-transform: translate3d(0, 25px, 0);
            transform: translate3d(0, 25px, 0);
  }
  75% {
    -webkit-transform: translate3d(0, -10px, 0);
            transform: translate3d(0, -10px, 0);
  }
  90% {
    -webkit-transform: translate3d(0, 5px, 0);
            transform: translate3d(0, 5px, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0) rotate(-10deg);
            transform: translate3d(0, 0, 0) rotate(-10deg);
  }
}

.bounceInDown-15 {
  -webkit-animation-duration: 1s;
          animation-duration: 1s;
  -webkit-animation-name: bounceInDown15;
          animation-name: bounceInDown15;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  -webkit-animation-delay: 7500ms;
          animation-delay: 7500ms;
}

@-webkit-keyframes bounceInDown15 {
  from,
  60%,
  75%,
  90%,
  to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
            animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, -3000px, 0) rotate(0deg);
            transform: translate3d(0, -3000px, 0) rotate(0deg);
  }
  60% {
    opacity: 1;
    -webkit-transform: translate3d(0, 25px, 0);
            transform: translate3d(0, 25px, 0);
  }
  75% {
    -webkit-transform: translate3d(0, -10px, 0);
            transform: translate3d(0, -10px, 0);
  }
  90% {
    -webkit-transform: translate3d(0, 5px, 0);
            transform: translate3d(0, 5px, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0) rotate(-5deg);
            transform: translate3d(0, 0, 0) rotate(-5deg);
  }
}

@keyframes bounceInDown15 {
  from,
  60%,
  75%,
  90%,
  to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
            animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, -3000px, 0) rotate(0deg);
            transform: translate3d(0, -3000px, 0) rotate(0deg);
  }
  60% {
    opacity: 1;
    -webkit-transform: translate3d(0, 25px, 0);
            transform: translate3d(0, 25px, 0);
  }
  75% {
    -webkit-transform: translate3d(0, -10px, 0);
            transform: translate3d(0, -10px, 0);
  }
  90% {
    -webkit-transform: translate3d(0, 5px, 0);
            transform: translate3d(0, 5px, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0) rotate(-5deg);
            transform: translate3d(0, 0, 0) rotate(-5deg);
  }
}

@-webkit-keyframes header-anim {
  0% {
    width: 0;
  }
  100% {
    width: 100%;
  }
}

@keyframes header-anim {
  0% {
    width: 0;
  }
  100% {
    width: 100%;
  }
}

@-webkit-keyframes catapillar {
  0% {
    left: 30px;
  }
  100% {
    left: 90%;
  }
}

@keyframes catapillar {
  0% {
    left: 30px;
  }
  100% {
    left: 90%;
  }
}

@-webkit-keyframes contact {
  0% {
    -webkit-transform: translateX(-50%) perspective(400px) rotate3d(1, 0, 0, 2deg);
            transform: translateX(-50%) perspective(400px) rotate3d(1, 0, 0, 2deg);
  }
  100% {
    -webkit-transform: translateX(-50%) perspective(400px) rotate3d(1, 0, 0, -2deg);
            transform: translateX(-50%) perspective(400px) rotate3d(1, 0, 0, -2deg);
  }
}

@keyframes contact {
  0% {
    -webkit-transform: translateX(-50%) perspective(400px) rotate3d(1, 0, 0, 2deg);
            transform: translateX(-50%) perspective(400px) rotate3d(1, 0, 0, 2deg);
  }
  100% {
    -webkit-transform: translateX(-50%) perspective(400px) rotate3d(1, 0, 0, -2deg);
            transform: translateX(-50%) perspective(400px) rotate3d(1, 0, 0, -2deg);
  }
}

@-webkit-keyframes sectionFlipIn {
  0% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
            transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    opacity: 0;
  }
  40% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
            transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
  }
  60% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -5deg);
            transform: perspective(400px) rotate3d(1, 0, 0, -5deg);
    opacity: 1;
  }
  80% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 2deg);
            transform: perspective(400px) rotate3d(1, 0, 0, 2deg);
    opacity: 1;
  }
  100% {
    -webkit-transform: perspective(400px);
            transform: perspective(400px);
    opacity: 1;
  }
}

@keyframes sectionFlipIn {
  0% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
            transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    opacity: 0;
  }
  40% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
            transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
  }
  60% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -5deg);
            transform: perspective(400px) rotate3d(1, 0, 0, -5deg);
    opacity: 1;
  }
  80% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 2deg);
            transform: perspective(400px) rotate3d(1, 0, 0, 2deg);
    opacity: 1;
  }
  100% {
    -webkit-transform: perspective(400px);
            transform: perspective(400px);
    opacity: 1;
  }
}

@-webkit-keyframes header-down {
  0% {
    opacity: 0;
    -webkit-transform: translateY(-100%);
            transform: translateY(-100%);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}

@keyframes header-down {
  0% {
    opacity: 0;
    -webkit-transform: translateY(-100%);
            transform: translateY(-100%);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}

@-webkit-keyframes header-clouds {
  0% {
    left: -100%;
  }
  100% {
    left: 0;
  }
}

@keyframes header-clouds {
  0% {
    left: -100%;
  }
  100% {
    left: 0;
  }
}
/*# sourceMappingURL=style.css.map */