.h-hero {
  font-size: 4.5em;
  line-height: 1.1;
}
.h1 {
  font-size: 2.8em;
  line-height: 1.15;
}
.h2 {
  font-size: 2.2em;
  line-height: 1.2;
}
.h3 {
  font-size: 1.8em;
  line-height: 1.2;
}
.h4 {
  font-size: 1.6em;
  line-height: 1.3;
}
.h5 {
  font-size: 1.4em;
  line-height: 1.3;
}
.h6 {
  font-size: 1.3em;
  line-height: 1.4;
}
.b1 {
  font-size: 1.2em;
  line-height: 1.5;
}
.b2 {
  font-size: 1.1em;
  line-height: 1.4;
}
.b3 {
  font-size: 0.9em;
  line-height: 1.4;
}
.b4 {
  font-size: 0.8em;
  line-height: 1.4;
}
.b5 {
  font-size: 0.7em;
  line-height: 1.3;
}
.btn {
  font-size: 1em;
  padding: 0.7em 1.3em;
  line-height: 1.3;
  align-items: center;
  display: flex;
  text-align: center;
  gap: 0.4em;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  background-color: transparent;
  box-shadow: none;
  text-transform: none;
  transition: none;
  transition: all 0.2s ease-in-out;
  width: fit-content;
  text-decoration: none !important;
  border: none;
}
.btn span {
  font-weight: 700;
}
@media (max-width: 599.98px) {
  .btn span {
    display: none;
  }
}
.btn:hover {
  transition: all 0.2s ease-in-out;
  transform: scale(1.03);
  text-decoration: none !important;
}
.btn--color1 {
  background-color: var(--color1);
  color: white;
}
.btn--color1:hover,
.btn--color1:focus {
  color: white;
  filter: var(--hover);
}
.btn--color1:active {
  filter: var(--active);
}
.btn--outline-color1 {
  background-color: transparent;
  box-shadow: inset 0 0 0 2px var(--color1);
  color: var(--color1);
}
.btn--outline-color1:hover,
.btn--outline-color1:focus {
  filter: var(--hover);
  color: white;
  box-shadow: inset 0 0 0 100px var(--color1);
}
.btn--color2 {
  background-color: var(--color2);
  color: white;
}
.btn--color2:hover,
.btn--color2:focus {
  color: white;
  filter: var(--hover);
}
.btn--color2:active {
  filter: var(--active);
}
.btn--color3 {
  background-color: var(--color3);
  color: white;
}
.btn--color3:hover,
.btn--color3:focus {
  color: white;
  filter: var(--hover);
}
.btn--color3:active {
  filter: var(--active);
}
.btn--outline-color2 {
  background-color: transparent;
  box-shadow: inset 0 0 0 2px var(--color2);
  color: var(--color2);
}
.btn--outline-color2:hover,
.btn--outline-color2:focus {
  filter: var(--hover);
  color: white;
  box-shadow: inset 0 0 0 100px var(--color2);
}
.btn--white {
  background-color: white;
  color: var(--color1);
}
.btn--white:hover,
.btn--white:focus {
  filter: var(--hover);
}
.btn--white:active {
  filter: var(--active);
}
.btn--outline-white {
  background-color: transparent;
  box-shadow: inset 0 0 0 1px white;
  color: white;
}
.btn--outline-white:hover,
.btn--outline-white:focus {
  box-shadow: inset 0 0 0 4px white;
  color: white;
}
.btn--clear-dark {
  background-color: transparent;
  color: var(--color2);
}
.btn--clear-dark:hover,
.btn--clear-dark:focus {
  color: var(--color1);
}
.btn--clear-white {
  background-color: transparent;
  color: #fffc;
}
.btn--clear-white:hover,
.btn--clear-white:focus {
  color: white;
}
.btn--xs {
  font-size: 0.75em;
}
.btn--sm {
  font-size: 0.85em;
}
.btn--rg {
  font-size: 1em;
}
.btn--md {
  font-size: 1.35em;
}
.btn--lg {
  font-size: 1.4em;
}
.btn--xl {
  font-size: 1.8em;
}
* {
  box-sizing: border-box;
}
html {
  height: 100%;
  margin: 0;
  padding: 0;
}
body {
  min-height: 100%;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: auto 1fr auto;
  grid-template-areas: "header" "content" "footer";
}
@media (min-width: 768px)  and (max-width: 991.98px) {
  body {
    font-size: 80%;
  }
}
@media (min-width: 992px)  and (max-width: 1199.98px) {
  body {
    font-size: 90%;
  }
}
header {
  grid-area: header;
  position: relative;
  z-index: 10;
}
.content {
  grid-area: content;
  position: relative;
  z-index: 0;
}
.content > .container {
  margin-right: auto;
  margin-left: auto;
  position: relative;
}
@media (max-width: 599.98px) {
  .content > .container {
    padding-top: 1.5em;
    padding-bottom: 1.5em;
  }
}
@media (min-width: 600px)  and (max-width: 767.98px) {
  .content > .container {
    padding-top: 3em;
    padding-bottom: 3em;
  }
}
@media (min-width: 768px) {
  .content > .container {
    padding-top: 5em;
    padding-bottom: 5em;
  }
}
.content > .container section {
  grid-column: 1/13;
}
.content a {
  position: relative;
  text-decoration: none;
}
.content a:hover {
  filter: var(--hover);
  text-decoration: underline;
}
.container--aside {
  display: flex;
}
@media (max-width: 767.98px) {
  .container--aside {
    flex-direction: column;
  }
}
@media (min-width: 768px) and (max-width: 1199.98px) {
  .container--aside {
    gap: 3em;
  }
}
@media (min-width: 1200px) {
  .container--aside {
    gap: 4em;
  }
}
.container--aside main {
  width: 100%;
}
.container--aside aside {
  flex: 1;
}
@media (max-width: 767.98px) {
  .container--aside aside {
    width: 100%;
  }
}
@media (min-width: 768px)  and (max-width: 991.98px) {
  .container--aside aside {
    min-width: 220px;
  }
}
@media (min-width: 992px)  and (max-width: 1199.98px) {
  .container--aside aside {
    min-width: 250px;
  }
}
@media (min-width: 1200px) {
  .container--aside aside {
    min-width: 320px;
  }
}
footer {
  grid-area: footer;
}
.container {
  margin: auto;
  padding: 0 1.3em;
}
@media (max-width: 767.98px) {
  .grid,
  .container {
    width: 100vw;
  }
  .container {
    padding: 0 1em 0 1.3em;
}
}
@media (min-width: 768px) and (max-width: 1499.98px) {
  .grid,
  .container {
    width: 95%;
  }
}
.max-width {
  width: 100%;
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
}
a {
  transition: all 0.2s ease-in-out;
}
a:hover {
  transition: all 0.2s ease-in-out;
}
.bg-fill {
  position: relative;
  overflow: hidden;
  width: 100%;
  z-index: 0;
}
.bg-fill .bg-fill__img {
  background-position: center center;
  background-repeat: no-repeat;
  -webkit-background-size: cover;
  -moz-background-size: cover;
  -o-background-size: cover;
  background-size: cover;
  position: absolute;
  height: 100%;
  width: 100%;
  top: 0;
  left: 0;
  right: 0;
}
.scrollable {
  overflow-y: auto;
  overflow-x: hidden;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
}
.scrollable::-webkit-scrollbar {
  width: 5px;
}
.scrollable::-webkit-scrollbar-track {
  background: transparent;
}
.scrollable::-webkit-scrollbar-thumb {
  background: rgba(0, 0, 0, 0.3);
  border-radius: 4px;
  cursor: pointer;
}
.scrollable::-webkit-scrollbar-thumb:hover {
  background: var(--primary-color);
}
.truncate {
  display: table;
  table-layout: fixed;
  width: 100%;
  white-space: nowrap;
}
.truncate > span {
  display: table-cell;
  overflow: hidden;
  text-overflow: ellipsis;
  height: 17px;
}
.spacer--1 {
  height: 1em;
}
.spacer--2 {
  height: 2em;
}
.spacer--3 {
  height: 3em;
}
.spacer--4 {
  height: 4em;
}
.no-bottom-padding {
  padding-bottom: 0 !important;
}
@media (max-width: 767.98px) {
  .hidden-md {
    display: none;
  }
}
@media (min-width: 768px) {
  .md-hidden {
    display: none;
  }
}
.hide {
  display: none;
}
.grid {
  display: grid;
  position: relative;
  margin-right: auto;
  margin-left: auto;
}
@media (max-width: 599.98px) {
  .grid {
    grid-row-gap: 8px;
    grid-column-gap: 8px;
  }
}
@media (min-width: 600px)  and (max-width: 767.98px) {
  .grid {
    grid-row-gap: 12px;
    grid-column-gap: 12px;
  }
}
@media (min-width: 768px) {
  .grid {
    grid-row-gap: 16px;
    grid-column-gap: 16px;
  }
}
.grid--col1 {
  grid-template-columns: 1fr;
}
.grid--col2 {
  grid-template-columns: repeat(2, 1fr);
}
.grid--col3 {
  grid-template-columns: repeat(3, 1fr);
}
.grid--col4 {
  grid-template-columns: repeat(4, 1fr);
}
.grid--col5 {
  grid-template-columns: repeat(5, 1fr);
}
.grid--col6 {
  grid-template-columns: repeat(6, 1fr);
}
.grid--col7 {
  grid-template-columns: repeat(7, 1fr);
}
.grid--col8 {
  grid-template-columns: repeat(8, 1fr);
}
.grid--col9 {
  grid-template-columns: repeat(9, 1fr);
}
.grid--col10 {
  grid-template-columns: repeat(10, 1fr);
}
.grid--col11 {
  grid-template-columns: repeat(11, 1fr);
}
.grid--col12 {
  grid-template-columns: repeat(12, 1fr);
}
.hamburger {
  display: inline-block;
  cursor: pointer;
  transition-property: opacity, filter;
  transition-duration: 0.15s;
  transition-timing-function: linear;
  font: inherit;
  color: inherit;
  text-transform: none;
  background-color: transparent;
  border: 0;
  margin: 0;
  overflow: visible;
}
.hamburger-box {
  width: 44px;
  height: 44px;
  display: inline-block;
  position: relative;
}
.hamburger-inner {
  display: block;
  top: 50%;
  margin-top: -2px;
}
.hamburger-inner,
.hamburger-inner::before,
.hamburger-inner::after {
  width: 33px;
  height: 3px;
  position: absolute;
  border-radius: 1em;
  transition-property: transform;
  transition-duration: 0.15s;
  transition-timing-function: ease;
  left: 0;
  right: 0;
  margin: auto;
}
.hamburger-inner::before,
.hamburger-inner::after {
  content: '';
  display: block;
}
.hamburger-inner::before {
  top: -9px;
}
.hamburger-inner::after {
  bottom: -9px;
}
.hamburger--squeeze .hamburger-inner {
  transition-duration: 0.075s;
  transition-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
}
.hamburger--squeeze .hamburger-inner::before {
  transition: top 0.075s 0.12s ease, opacity 0.075s ease;
}
.hamburger--squeeze .hamburger-inner::after {
  transition: bottom 0.075s 0.12s ease, transform 0.075s cubic-bezier(0.55, 0.055, 0.675, 0.19);
}
.hamburger--squeeze.is-active .hamburger-inner {
  transform: rotate(45deg);
  transition-delay: 0.12s;
  transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
}
.hamburger--squeeze.is-active .hamburger-inner::before {
  top: 0;
  opacity: 0;
  transition: top 0.075s ease, opacity 0.075s 0.12s ease;
}
.hamburger--squeeze.is-active .hamburger-inner::after {
  bottom: 0;
  transform: rotate(-90deg);
  transition: bottom 0.075s ease, transform 0.075s 0.12s cubic-bezier(0.215, 0.61, 0.355, 1);
}
aside .sticky {
  display: flex;
  flex-direction: column;
  gap: 2em;
}
@media (max-width: 767.98px) {
  aside {
    margin-top: 2em;
  }
}
aside .wp-block-tag-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6em;
}
aside .tag-cloud-link {
  text-transform: uppercase;
  box-shadow: 0 0 0 1px #0001;
  padding: 0.3em 0.5em;
  color: #0008;
  transition: all 0.2s ease-in-out;
  border-radius: 2px;
  margin: 0 !important;
  font-size: 0.7em !important;
  line-height: 1.3 !important;
}
aside .tag-cloud-link:hover {
  background: var(--color1);
  box-shadow: none;
  transition: all 0.2s ease-in-out;
  text-decoration: none;
  color: white;
}
aside img {
  border-radius: 3px;
  width: 100%;
}
aside .wp-block-heading {
  margin: 0 0 1em;
}
aside a {
  color: black;
}
aside a:hover {
  color: var(--color1);
}
.sticky {
  position: sticky;
  top: 2em;
}
.widget {
  margin: 0 0 1em;
}
.widget::marker {
  display: none;
}
.widget ul li {
  padding: 5px 0;
}
.widget ul li a {
  color: black;
}
.widget ul li a:hover {
  color: var(--color1);
}
.wp-block-latest-posts {
  display: flex;
  flex-direction: column;
  gap: 0.5em;
}
.wp-block-latest-posts li {
  padding: 1em;
  display: flex;
  align-items: center;
  flex-flow: row-reverse;
  gap: 1.5em;
  background: white;
  border-radius: 3px;
  box-shadow: 0 0 0 1px #0001, 0 2px 5px #0002;
}
.wp-block-latest-posts li time {
  color: #0008;
  margin: 0.3em 0 0;
}
.wp-block-latest-posts .wp-post-image {
  display: block;
}
.wp-block-latest-posts__featured-image {
  max-width: 70px;
  flex: none;
}
.wp-block-latest-posts__post-title {
  font-weight: 500;
  font-size: 1em;
  line-height: 1.3;
  display: block;
  flex-grow: 1;
}
.wp-block-latest-posts__post-title:hover {
  text-decoration: none !important;
}
.wp-block-categories .cat-item {
  padding: 0.3em 0;
}
.tagcloud,
.author-box,
.comments-area {
  margin-left: inherit;
}
.post--excerpt {
  display: flex;
}
@media (max-width: 767.98px) {
  .post--excerpt {
    font-size: 85%;
  }
}
@media (min-width: 768px)  and (max-width: 991.98px) {
  .post--excerpt {
    flex-direction: column;
  }
}
@media (max-width: 991.98px) {
  .post--excerpt {
    gap: 2em;
  }
}
@media (min-width: 992px) {
  .post--excerpt {
    gap: 2em 3em;
  }
}
.post--excerpt .post__title {
  color: black;
  display: block;
}
.post--excerpt .post__title:hover {
  color: var(--color1);
  text-decoration: none;
}
.post--excerpt .post__title h2 {
  font-weight: 600;
  margin: 0;
}
.post--excerpt .post__meta {
  color: #0008;
  font-size: 0.9em;
  line-height: 1.4;
}
.post--excerpt .post__meta div {
  display: inline-block;
}
.post--excerpt .post__meta span {
  font-weight: 300;
  padding: 0 4px 0 8px;
  opacity: 0.4;
}
.post--excerpt .post__meta .post__author a {
  color: black;
  font-size: inherit;
}
.post--excerpt .post__meta .post__author a:hover {
  color: var(--color1);
  text-decoration: none;
}
.post--excerpt .post__date {
  font-size: 90%;
}
.post--excerpt .post__excerpt p {
  margin: 0;
}
.post--excerpt .post__read-time {
  color: rgba(0, 0, 0, 0.6);
}
.post--excerpt .post__read-time iconify-icon {
  top: 2px;
}
.post--list .post__excerpt p {
  font-size: 1.2em;
  line-height: 1.5;
}
.post--list .post__title h2 {
  font-size: 1.8em;
  line-height: 1.2;
}
.related-posts .post--related {
  align-items: center;
  box-shadow: 0 0 0 1px #0001, 0 2px 5px #0002;
  padding: 1.5em;
  border-radius: 3px;
  margin: 8px 0;
}
.related-posts h2 {
  margin-top: 2em;
}
@media (max-width: 599.98px) {
  .related-posts .post__content {
    font-size: 90%;
  }
}
.related-posts .post__thumb {
  flex: none;
}
@media (max-width: 599.98px) {
  .related-posts .post__thumb {
    width: 80px !important;
    height: 80px;
  }
}
@media (min-width: 600px) {
  .related-posts .post__thumb {
    width: 120px !important;
    height: 120px;
  }
}
.related-posts .post__read-time iconify-icon {
  position: relative;
  top: 2px;
}
.post--single .tagcloud {
  display: flex;
  flex-wrap: wrap;
  gap: 0.1em 0.6em;
  margin-top: 2em;
  margin-bottom: 2em;
}
.post--single .tagcloud b {
  font-weight: bold;
}
.post--single .tagcloud a {
  text-transform: uppercase;
  color: #0008;
  font-size: 0.7em !important;
  line-height: 1.3 !important;
  transition: all 0.2s ease-in-out;
}
.post--single .tagcloud a:hover {
  color: var(--color1);
  transition: all 0.2s ease-in-out;
}
.blog .post,
.archive .post,
.search .post,
.author .post {
  flex-wrap: wrap;
  margin-bottom: 3em;
}
@media (max-width: 599.98px) {
  .blog .post .post__content,
  .archive .post .post__content,
  .search .post .post__content,
  .author .post .post__content {
    order: 2;
  }
  .blog .post .post__thumb,
  .archive .post .post__thumb,
  .search .post .post__thumb,
  .author .post .post__thumb {
    order: 1;
  }
  .blog .post .post__footer,
  .archive .post .post__footer,
  .search .post .post__footer,
  .author .post .post__footer {
    order: 3;
  }
}
@media (min-width: 768px)  and (max-width: 991.98px) {
  .blog .post .post__content,
  .archive .post .post__content,
  .search .post .post__content,
  .author .post .post__content {
    order: 2;
  }
  .blog .post .post__thumb,
  .archive .post .post__thumb,
  .search .post .post__thumb,
  .author .post .post__thumb {
    order: 1;
  }
  .blog .post .post__footer,
  .archive .post .post__footer,
  .search .post .post__footer,
  .author .post .post__footer {
    order: 3;
  }
}
.blog .post .post__content,
.archive .post .post__content,
.search .post .post__content,
.author .post .post__content {
  justify-content: center;
}
.blog .post .post__thumb,
.archive .post .post__thumb,
.search .post .post__thumb,
.author .post .post__thumb {
  flex: none;
}
@media (max-width: 599.98px) {
  .blog .post .post__thumb,
  .archive .post .post__thumb,
  .search .post .post__thumb,
  .author .post .post__thumb {
    height: 230px;
  }
}
@media (min-width: 600px)  and (max-width: 767.98px) {
  .blog .post .post__thumb,
  .archive .post .post__thumb,
  .search .post .post__thumb,
  .author .post .post__thumb {
    width: 200px !important;
    height: 200px;
  }
}
@media (min-width: 768px)  and (max-width: 991.98px) {
  .blog .post .post__thumb,
  .archive .post .post__thumb,
  .search .post .post__thumb,
  .author .post .post__thumb {
    height: 300px;
  }
}
@media (min-width: 992px)  and (max-width: 1199.98px) {
  .blog .post .post__thumb,
  .archive .post .post__thumb,
  .search .post .post__thumb,
  .author .post .post__thumb {
    width: 200px !important;
    height: 200px;
  }
}
@media (min-width: 1200px) {
  .blog .post .post__thumb,
  .archive .post .post__thumb,
  .search .post .post__thumb,
  .author .post .post__thumb {
    width: 250px !important;
    height: 250px;
  }
}
.post__content {
  display: flex;
  flex-direction: column;
  gap: 0.5em;
  flex: 1;
}
.post__thumb {
  border-radius: 3px;
}
.post__category {
  margin-bottom: 0.5em;
}
.post__category a {
  background: var(--color1);
  color: white;
  padding: 0.4em 0.8em;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-weight: 500;
  display: inline-block;
  font-size: 0.7em;
  line-height: 1.3;
}
.post__category a:hover {
  text-decoration: none;
}
.post__excerpt a {
  display: inline-block;
}
.post__footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid #0002;
  padding-top: 1em;
  width: 100%;
  order: 3;
}
.post__footer iconify-icon {
  position: relative;
}
.post__continue-reading {
  text-transform: uppercase;
  letter-spacing: 1px;
  color: black;
  font-weight: 500;
  display: block;
  font-size: 0.8em;
  line-height: 1.4;
}
.post__continue-reading:hover {
  text-decoration: none !important;
  color: var(--color1);
}
.post__continue-reading iconify-icon {
  top: 1px;
}
.author-box {
  display: flex;
  align-items: center;
  box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.1), 0 3px 8px rgba(0, 0, 0, 0.2);
  padding: 1.5em;
  margin-top: 2em;
  margin-bottom: 2em;
  gap: 2em;
}
@media (max-width: 599.98px) {
  .author-box {
    flex-direction: column;
  }
}
.author-box__avatar img {
  height: auto;
  display: block;
  border-radius: 1000px;
}
@media (max-width: 599.98px) {
  .author-box__avatar img {
    width: 200px;
  }
}
@media (min-width: 600px)  and (max-width: 767.98px) {
  .author-box__avatar img {
    width: 150px;
  }
}
@media (min-width: 768px)  and (max-width: 991.98px) {
  .author-box__avatar img {
    width: 100px;
  }
}
@media (min-width: 992px) {
  .author-box__avatar img {
    width: 120px;
  }
}
.author-box__content {
  display: grid;
  grid-row-gap: 0.5em;
  flex-grow: 1;
}
.author-box__author {
  font-weight: 600;
  font-size: 1.3em;
  line-height: 1.4;
}
.author-box__bio {
  color: rgba(0, 0, 0, 0.8);
}
.author-box__btn {
  margin-top: 0.5em;
}
.post-navigation {
  display: flex;
  justify-content: space-between;
  gap: 1em;
  margin-top: 2em;
  margin-left: 0;
}
@media (max-width: 599.98px) {
  .post-navigation {
    font-size: 80%;
  }
}
.post-navigation__item {
  display: flex;
  flex: 1;
  transition: all 0.2s ease-in-out;
  box-shadow: 0 0 0 1px #0003;
  padding: 0.8em 1em;
  border-radius: 3px;
}
.post-navigation__item:hover {
  text-decoration: none !important;
  transition: all 0.2s ease-in-out;
  box-shadow: 0 0 0 4px var(--color1);
}
.post-navigation__item:hover .post-navigation__title {
  color: var(--color1);
}
.post-navigation__title {
  color: black;
  transition: all 0.2s ease-in-out;
}
.post-navigation__title span {
  color: #0009;
  text-transform: uppercase;
  display: block;
  display: flex;
  align-items: center;
  gap: 2px;
  margin-bottom: 4px;
  font-size: 0.7em;
  line-height: 1.3;
}
.post-navigation__title span iconify-icon {
  position: relative;
  top: -1px;
}
.post-navigation__item--next {
  text-align: right;
  justify-content: right;
}
.post-navigation__item--next span {
  justify-content: end;
}
.pagination {
  margin-top: 2em;
}
.pagination .page-numbers {
  display: flex;
  gap: 1em;
  color: #0009;
}
.pagination .page-numbers:hover {
  color: var(--color1);
}
.pagination .page-numbers .current {
  font-weight: 600;
  color: black;
}
/*
.btn--primary {
	background-color: var(--primary);
	color: white;
	&:hover, &:focus {color: white; filter: var(--primary);}
	&:active {filter: var(--active);}
}


.btn--white {
	background-color: white;
	color: var(--color1);

	&:hover, &:focus {color: var(--hover);}
}

.btn--clear {
	background-color: transparent;
	color: @black5;
	letter-spacing: 0.1em;
	font-family: .hfont();
	font-weight: .hfont()--bold;
	&:hover, &:focus {color: var(--color1);}	
}

.btn--shadow {
	background-color: @black3;
	color: white;
	
	&:hover, &:focus {box-shadow: inset 0 0 0 3px var(--color1);}
	&:active {filter: var(--active);}
}

.btn--outline-light {
	background-color: transparent;
	box-shadow: inset 0 0 0 1px @white5;
	color: @white5;
	
	&:hover, &:focus {
		box-shadow: inset 0 0 0 3px var(--color1);
		color: white;
	}	
}

.btn--outline-accent {
	background-color: transparent;
	box-shadow: inset 0 0 0 2px var(--color1);
	color: var(--color1);

	&:hover, &:focus {
		box-shadow: inset 0 0 0 2px white;
		color: white;
	}	
}

*/
.comments-area hr {
  border-width: 0 0 5px;
  border-style: solid;
  border-color: rgba(0, 0, 0, 0.1);
}
.comments-title {
  font-size: [object Object],[object Object];
  font-weight: 600;
}
.comment-reply-title {
  font-size: [object Object],[object Object];
  font-weight: 600;
}
.comment {
  margin: 0 0 2em;
}
.comment__wrapper {
  display: flex;
}
.comment__avatar {
  flex: none;
  margin-right: 1em;
}
.comment__avatar img {
  width: 2.5em;
  height: 2.5em;
  border-radius: 100px;
}
.comment__author-info {
  margin: 0 0 0.5em;
}
.comment__author-name a {
  font-weight: 500;
  color: black;
  font-size: 0.9em;
}
.comment__date a {
  color: rgba(0, 0, 0, 0.6);
  font-size: 0.7em;
}
.comment__body {
  flex: auto;
  font-size: 90%;
}
.comment__body *:last-child {
  margin-bottom: 0;
}
.comment-reply-link {
  text-transform: uppercase;
  font-size: 0.7em;
  color: rgba(0, 0, 0, 0.4);
  font-weight: 400;
  margin-top: 0.8em;
  display: block;
}
.comment-reply-link:hover {
  color: var(--color1);
}
.comment-form-comment label {
  display: none;
}
.comment-form-comment textarea {
  width: 100%;
  padding: 0.7em 1em;
  font-size: 1em;
}
.form-submit .submit {
  font-size: 1em;
  padding: 0.7em 1.3em;
  line-height: 1.3;
  align-items: center;
  display: flex;
  text-align: center;
  gap: 0.4em;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  background-color: transparent;
  box-shadow: none;
  text-transform: none;
  transition: none;
  transition: all 0.2s ease-in-out;
  width: fit-content;
  text-decoration: none !important;
  background-color: var(--color1);
  font-size: 1.2em;
  color: white;
  border: none;
  cursor: pointer;
}
.form-submit .submit span {
  font-weight: 700;
}
@media (max-width: 599.98px) {
  .form-submit .submit span {
    display: none;
  }
}
.form-submit .submit:hover {
  transition: all 0.2s ease-in-out;
  transform: scale(1.03);
  text-decoration: none !important;
}
.form-submit .submit:hover,
.form-submit .submit:focus {
  color: white;
  filter: var(--hover);
}
.form-submit .submit:active {
  filter: var(--active);
}
footer > .container {
  display: flex;
  padding-bottom: 2em;
  position: relative;
  z-index: 1;
}
footer > .container .btn {
  margin-top: 1.5em;
}
@media (max-width: 991.98px) {
  footer > .container {
    padding-top: 3em;
    column-gap: 3em;
    row-gap: 1em;
  }
}
@media (min-width: 992px) {
  footer > .container {
    gap: 4em;
    padding-top: 5em;
    justify-content: space-between;
  }
}
@media (max-width: 991.98px) {
  footer > .container {
    flex-wrap: wrap;
    flex-direction: column;
  }
}
footer h3 {
  font-size: 1.3em;
  line-height: 1.4;
  margin-top: 0;
}
footer .footer__col p {
  font-size: 1.1em;
  line-height: 1.4;
}
footer a {
  text-decoration: none;
}
footer .bg-fill__img {
  z-index: 0;
}
@media (max-width: 991.98px) {
  .footer__col--menu {
    flex-grow: 1;
  }
  .footer__col--about {
    margin-bottom: 2em;
  }
  .footer__col--logo {
    margin-top: 1em;
  }
}
.footer__menu {
  display: flex;
  flex-direction: column;
  gap: 0.8em;
}
@media (max-width: 599.98px) {
  .footer__menu {
    margin: 0 0 1em;
  }
  .footer__col--logo {

    justify-content: center;
  }
  .footer__col--logo img {
    max-width: 180px;
    margin-top: 2em;
  }
}
.footer__menu .menu-item {
  display: block;
}
.footer__menu .menu-item a {
  text-decoration: none;
  display: block;
  line-height: 1.3;
}
.footer__subscribe {
  max-width: 350px;
}
.center_icon {
  display: flex;
  align-items: center;
  gap: 0.5em;
}
.business__hours {
  font-size: 0.85em;
  color: #fff8;
  position: relative;
  text-align: right;
}
.footer__col--about {
  flex-grow: 1;
  max-width: 500px;
}
@media (min-width: 992px) {
  .footer__col--about p {
    max-width: 700px;
  }
}
.footer__col--about .phone {
  margin-right: 0.8em;
}
.footer__social {
  color: white;
  flex: none;
}
.footer__social .social__menu {
  display: flex;
  flex-wrap: wrap;
  gap: 1em;
  position: relative;
  right: 30px;
}
.footer__social .social__menu .menu-item a {
  font-size: 1.6em;
  line-height: 1.3;
  display: block;
}
.footer__social .social__menu .menu-item a iconify-icon {
  display: block;
}
.footer__social .social__menu .menu-item a:hover {
  transform: scale(1.2);
}
.footer__col--logo {
  flex: none;
  order: 3;
  display: flex;
  align-items: center;
}
.footer__col--logo img {
  width: 100%;
  height: auto;
}
.footer__logo {
  width: 100%;
  height: auto;
  position: relative;
}
@media (max-width: 991.98px) {
  .footer__logo {
    max-width: 180px;
  }
}
@media (min-width: 992px) {
  .footer__logo {
    max-width: 180px;
  }
}
.footer__bottom .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  margin-top: 1em;
  padding-top: 2em;
  padding-bottom: 2em;
  gap: 3em;
}
.footer__bottom .container:before {
  content: '';
  position: absolute;
  top: 0;
  left: 20px;
  right: 20px;
}
.footer__copyright {
  font-size: 0.7em;
  line-height: 1.3;
  opacity: 0.4;
  letter-spacing: 1px;
  text-transform: uppercase;
}
.footer__phone-hours {
  max-width: fit-content;
}
.footer__contact-details {
  display: flex;
  color: #fff;
  flex-direction: row;
  gap: 1em;
}

.gform_body input[type="text"],
.gform_body input[type="email"],
.gform_body input[type="tel"],
.gform_body input[type="url"],
.gform_body textarea {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  padding: 10px;
  font-size: 1em;
  border: none;
  border-radius: 3px;
  box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.4);
  width: 100%;
}
.gfield {
  width: 100%;
}
.gfield--type-choice {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  width: 100%;
  border: none;
  padding: 0;
  margin: 0;
}
.gfield--type-choice button {
  width: fit-content;
  margin-top: 0.5em;
}
.gchoice {
  margin: 0 0 0.4em;
  display: flex;
  align-items: start;
  gap: 0.5em;
}
.gchoice input {
  margin: 0.37em 0 0;
}
.gfield_checkbox {
  display: flex;
  flex-direction: column;
  gap: 0.4em;
}
@media (min-width: 600px) {
  .gfield--width-half {
    flex-basis: calc(50% - 8px);
  }
}
.gform_fields {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5em 1em;
}
.gform_required_legend {
  display: none;
}
.ginput_container {
  margin: 0;
}
.gfield_label {
  font-size: 1.1em;
  line-height: 1.4;
  font-weight: 500;
  margin: 0 0 5px;
  display: block;
}
.gform_validation_errors,
.gform_confirmation_wrapper {
  padding: 1.5em;
  border: none;
  margin-bottom: 2em !important;
  border-radius: 3px;
  outline: none;
}
.gform-icon {
  display: none;
}
.gform_submission_error,
.gform_confirmation_message {
  color: white;
  margin: 0 !important;
  font-weight: 500 !important;
  font-size: 1.3em !important;
  line-height: 1.4 !important;
}
.gform_validation_errors {
  background: #d20000;
}
.gform_confirmation_wrapper {
  background: green;
}
.gform_button {
  font-size: 1em;
  padding: 0.7em 1.3em;
  line-height: 1.3;
  align-items: center;
  display: flex;
  text-align: center;
  gap: 0.4em;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  background-color: transparent;
  box-shadow: none;
  text-transform: none;
  transition: none;
  transition: all 0.2s ease-in-out;
  width: fit-content;
  text-decoration: none !important;
  border: none;
  background-color: var(--color1);
  color: white;
  cursor: pointer;
}
.gform_button span {
  font-weight: 700;
}
@media (max-width: 599.98px) {
  .gform_button span {
    display: none;
  }
}
.gform_button:hover {
  transition: all 0.2s ease-in-out;
  transform: scale(1.03);
  text-decoration: none !important;
}
.gform_button:hover,
.gform_button:focus {
  color: white;
  filter: var(--hover);
}
.gform_button:active {
  filter: var(--active);
}
.gfield_required {
  color: rgba(0, 0, 0, 0.6);
}
.gfield_required_asterisk {
  font-size: 0.9em;
  margin-left: 0.2em;
}
.gfield_error {
  border: none;
  background: transparent;
  padding: 0;
}
.gfield_error input[type="text"],
.gfield_error input[type="email"],
.gfield_error input[type="tel"],
.gfield_error input[type="url"],
.gfield_error.gfield--type-choice,
.gfield_error textarea {
  border: none;
  box-shadow: 0 0 0 1px #d20000 !important;
  background: #fff7f7;
}
.gfield_error .gfield_validation_message {
  font-size: 0.8em;
  line-height: 1.4;
  font-weight: 400;
  color: #d20000 !important;
  padding: 0.4em 0 0 !important;
  background: none !important;
  border: none !important;
}
.grecaptcha-badge {
  opacity: 0;
}
.gform_footer {
  margin-top: 1.5em;
  display: flex;
  align-items: center;
  gap: 0.5em;
}
.gform_footer .gform_button {
  margin-right: 1em;
}
.gform_page_footer {
  display: flex;
  gap: 1em;
  justify-content: space-between;
  margin: 2em 0 0;
}
.gform_page_footer .gform_previous_button {
  order: 1;
}
.gform_page_footer .gform_ajax_spinner {
  order: 2;
}
.gform_page_footer .gform_next_button {
  order: 3;
}
.gform_page_footer .gform_button {
  order: 3;
}
.gform_page_footer .gform_previous_button,
.gform_page_footer .gform_next_button {
  font-size: 1em;
  padding: 0.7em 1.3em;
  line-height: 1.3;
  align-items: center;
  display: flex;
  text-align: center;
  gap: 0.4em;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  box-shadow: none;
  text-transform: none;
  transition: none;
  transition: all 0.2s ease-in-out;
  width: fit-content;
  text-decoration: none !important;
  border: none;
  background-color: transparent;
  box-shadow: inset 0 0 0 2px var(--color2);
  color: var(--color2);
}
.gform_page_footer .gform_previous_button span,
.gform_page_footer .gform_next_button span {
  font-weight: 700;
}
@media (max-width: 599.98px) {
  .gform_page_footer .gform_previous_button span,
  .gform_page_footer .gform_next_button span {
    display: none;
  }
}
.gform_page_footer .gform_previous_button:hover,
.gform_page_footer .gform_next_button:hover {
  transition: all 0.2s ease-in-out;
  transform: scale(1.03);
  text-decoration: none !important;
}
.gform_page_footer .gform_previous_button:hover,
.gform_page_footer .gform_next_button:hover,
.gform_page_footer .gform_previous_button:focus,
.gform_page_footer .gform_next_button:focus {
  filter: var(--hover);
  color: white;
  box-shadow: inset 0 0 0 100px var(--color2);
}
input[type="submit"]::-moz-focus-inner,
input[type="button"]::-moz-focus-inner,
a:focus {
  border: 0px;
}
input[type="submit"]:focus,
input[type="button"]:focus,
a:focus {
  outline: none;
}
input:-moz-placeholder {
  color: rgba(0, 0, 0, 0.3);
  font-weight: 400;
}
input::-moz-placeholder {
  color: rgba(0, 0, 0, 0.3);
  font-weight: 400;
}
input:-ms-input-placeholder {
  color: rgba(0, 0, 0, 0.3);
  font-weight: 400;
}
input::-webkit-input-placeholder {
  color: rgba(0, 0, 0, 0.3);
  font-weight: 400;
}
textarea.form-control:-moz-placeholder {
  color: rgba(0, 0, 0, 0.3);
  font-weight: 400;
}
textarea.form-control::-moz-placeholder {
  color: rgba(0, 0, 0, 0.3);
  font-weight: 400;
}
textarea.form-control:-ms-input-placeholder {
  color: rgba(0, 0, 0, 0.3);
  font-weight: 400;
}
textarea.form-control::-webkit-input-placeholder {
  color: rgba(0, 0, 0, 0.3);
  font-weight: 400;
}
input::-moz-focus-inner {
  border: 0;
}
/*
.select {
	position: relative;

	select {
		border: 1px solid @black2;
		.gradient-w-g;
		//background: transparent;
		padding: 4px 24px 4px 8px;
		font-size: 13px;
		line-height: 21px;
		color: @black9;
		cursor: pointer;
		-webkit-appearance: none;
		-moz-appearance: none;
		appearance: none;
		padding: 3px 5px;
		border-radius: 3px;
		text-indent: 0.01px;
		text-overflow: '';
		width: 100%;
	
		&:hover {
			border-color: var(--color1);
			color: var(--color1);
			background: white;
		}
	}

	&:hover:after {color: var(--color1);}

	&:after {
		pointer-events: none;
		content: "▾";
		position: absolute;
		top: 0;
		right: 7px;
		bottom: 0;
		font-size: 15px;
		line-height: 28px;
		z-index: 5;
		color: @black6;
		background: 0 0;
	}
}
*/
header {
  box-shadow: 0 0 8px #0004;
}
@media (max-width: 599.98px) {
  header {
    max-width: 100vw;
    padding: 10px 0;
  }
}
header .container {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
}
@media (max-width: 767.98px) {
  header .container {
    flex-wrap: wrap;
  }
}
@media (min-width: 768px)  and (max-width: 991.98px) {
  header .container {
    padding-top: 1.8em;
    padding-bottom: 1.8em;
  }
}
@media (max-width: 767.98px) {
  header .container {
    align-items: center;
  }
}
@media (min-width: 992px) {
  header .container {
    padding-top: 2em;
    padding-bottom: 2em;
  }
}
.header__logo {
  order: 1;
}
@media (max-width: 767.98px) {
  .header__logo {
    display: flex;
    align-items: center;
    flex: auto;
    justify-content: center;
    position: absolute;
    right: 0;
    left: 0;
    top: -17px;
    padding-top: 1.5em;
    padding-bottom: 1.5em;

  }
  .header__logo a img,
.header__logo a svg {
  display: block;
  width: auto;
  height: 28px!important;
}
}
.header__logo a {
  display: inline-block;
  flex-grow: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}
.header__logo a img,
.header__logo a svg {
  display: block;
  width: auto;
}

.nav-toggle {
  padding: 0;
  width: 44px;
  height: 44px;
  line-height: 44px;
  outline: none;
  order: 1;
}
@media (min-width: 768px) {
  .nav-toggle {
    display: none;
  }
}
.hamburger.is-active .hamburger-inner,
.hamburger.is-active .hamburger-inner::before,
.hamburger.is-active .hamburger-inner::after {
  background-color: var(--color5);
}
.hamburger-inner,
.hamburger-inner::before,
.hamburger-inner::after {
  background-color: var(--color1);
}
.header__nav {
  flex: none;
}
@media (max-width: 767.98px) {
  .header__nav {
    display: none;
    order: 4;
    width: 100%;
  }
}
@media (min-width: 768px) {
  .header__nav {
    order: 0;
    display: block !important;
  }
}
.header__nav .open {
  display: block;
}
.header__nav .header__menu {
  display: flex;
  margin: 0;
  padding: 0;
  gap: 0.2em;
}
@media (max-width: 767.98px) {
  .header__nav .header__menu {
    flex-direction: column;
    width: 100vw;
    height: 100vh;
    position: fixed;
    top: 0;
    left: 0;
    background-color: var(--color1) !important;
    padding-top: 3em;
    font-size: 1.35em;
    z-index: -1;
  }
  .active__header {
    position: fixed;
  }
}
.header__nav .header__menu .menu-item {
  list-style: none;
}
.header__nav .header__menu .menu-item a {
  text-decoration: none;
}
.header__nav .header__menu > .menu-item {
  position: relative;
  display: flex;
  align-items: center;
  width: 100%;
}
.header__nav .header__menu > .menu-item > a {
  padding: 8px 12px;
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: end;
  width: max-content;
  font-weight: 700;
}
.header__nav .header__menu > .menu-item > a:after {
  content: '';
  transition: all 0.2s ease-in-out;
}
@media (max-width: 767.98px) {
  .header__nav .header__menu > .menu-item > a {
    padding: 8px 16px;
  }
}
@media (min-width: 768px) {
  .header__nav .header__menu > .current-menu-item:after {
    content: '';
    height: 2px;
    background: white;
    position: absolute;
    bottom: 0;
    left: 12px;
    right: 12px;
  }
}
.header__nav .header__menu > .current-menu-item a:hover {
  background: transparent;
  cursor: default;
}
.header__nav .header__menu > .menu-item-has-children > a:before {
  content: url('https://api.iconify.design/ic/baseline-arrow-drop-down.svg?color=white');
  padding: 0 0 0 4px;
  position: relative;
  top: 3px;
  order: 2;
}
.header__nav .header__menu > .menu-item-has-children > .sub-menu {
  background: white;
}
@media (max-width: 767.98px) {
  .header__nav .header__menu > .menu-item-has-children > .sub-menu {
    padding: 8px 0;
    margin: 8px 0;
  }
}
@media (min-width: 768px) {
  .header__nav .header__menu > .menu-item-has-children > .sub-menu {
    background: white;
    position: absolute;
    top: 50px;
    right: 0;
    padding: 8px 0;
    border-radius: 4px;
    box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.1), 0 1px 5px rgba(0, 0, 0, 0.4);
    min-width: 180px;
  }
}
.header__nav .header__menu > .menu-item-has-children > .sub-menu .menu-item a {
  display: block;
  padding: 8px 16px;
  width: 100%;
  font-weight: 400;
}
@media (max-width: 767.98px) {
  .header__nav .header__menu > .menu-item-has-children > .sub-menu .menu-item a {
    text-align: center;
  }
}
@media (min-width: 768px) {
  .header__nav .header__menu > .menu-item-has-children > .sub-menu .menu-item a {
    color: black;
  }
}
.header__nav .header__menu > .menu-item-has-children > .sub-menu .menu-item a:hover {
  color: var(--color1);
}
.header__menu > .menu-item .menu-item-has-children > a {
  position: relative;
}
.header__menu > .menu-item .menu-item-has-children > a::after {
  position: absolute;
  right: 8px;
  top: 9px;
}
.header__menu > .menu-item > .sub-menu .sub-menu {
  border-left: 1px solid #c7c7c7;
  margin-left: 1em;
}
.header__cta {
  margin-left: 1em;
}
@media (max-width: 767.98px) {
  .header__cta {
    order: 2;
    margin-left: 0;
    padding: 0.6em 1.2em!important;
    font-size: .9em!important;
  }
}
@media (min-width: 768px) {
  .header__cta {
    order: 3;
  }
}
.menu-item-has-children > .sub-menu {
  display: none;
}
.menu-item-has-children > a:before {
  content: url('https://api.iconify.design/ic/baseline-arrow-drop-down.svg?color=black');
  padding: 0 0 0 4px;
  position: relative;
  top: 3px;
}
.header__social {
  color: white;
  flex: none;
}
@media (max-width: 767.98px) {
  .header__social {
    order: 2;
  }
}
@media (min-width: 768px) {
  .header__social {
    order: 2;
  }
}
.header__social .social__menu {
  display: flex;
}
.header__social .social__menu .menu-item {
  margin-left: 16px;
}
.header__social .social__menu .menu-item a {
  color: white;
}
.header__social .social__menu .menu-item a:hover {
  opacity: 0.6;
}
.header--trans header {
  position: absolute;
  width: 100%;
}
.header--wide .container {
  max-width: 100%;
}
.header--trans .header__menu > .menu-item > a:hover,
.header--dark .header__menu > .menu-item > a:hover {
  color: white;
}
.fadeIn.come-in {
  animation-timing-function: cubic-bezier(0, 0, 0, 1);
  animation-iteration-count: 1;
  animation-direction: normal;
  animation-fill-mode: forwards;
  animation-play-state: running;
  animation-name: come-in;
  opacity: 1;
}
.slideUp.come-in {
  -webkit-transform: translateY(200px);
  transform: translateY(200px);
  animation-timing-function: cubic-bezier(0, 0, 0, 1);
  animation-iteration-count: 1;
  animation-direction: normal;
  animation-fill-mode: forwards;
  animation-play-state: running;
  animation-name: come-in;
  opacity: 1;
}
@keyframes come-in {
  to {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}
.slideDown.come-in {
  -webkit-transform: translateY(-200px);
  transform: translateY(-200px);
  animation-timing-function: cubic-bezier(0, 0, 0, 1);
  animation-iteration-count: 1;
  animation-direction: normal;
  animation-fill-mode: forwards;
  animation-play-state: running;
  animation-name: come-in;
  opacity: 1;
}
@keyframes come-in {
  to {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}
.slideLeft.come-in {
  -webkit-transform: translateX(200px);
  transform: translateX(200px);
  animation-timing-function: cubic-bezier(0, 0, 0, 1);
  animation-iteration-count: 1;
  animation-direction: normal;
  animation-fill-mode: forwards;
  animation-play-state: running;
  animation-name: come-in;
  opacity: 1;
}
@keyframes come-in {
  to {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}
.slideRight.come-in {
  -webkit-transform: translateX(-200px);
  transform: translateX(-200px);
  animation-timing-function: cubic-bezier(0, 0, 0, 1);
  animation-iteration-count: 1;
  animation-direction: normal;
  animation-fill-mode: forwards;
  animation-play-state: running;
  animation-name: come-in;
  opacity: 1;
}
@keyframes come-in {
  to {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}
.slideGrow.come-in {
  -webkit-transform: translateY(0px) scale(0.8);
  transform: translateY(0px) scale(0.8);
  animation-timing-function: cubic-bezier(0, 0, 0, 1);
  animation-iteration-count: 1;
  animation-direction: normal;
  animation-fill-mode: forwards;
  animation-play-state: running;
  animation-name: come-in;
  opacity: 1;
}
@keyframes come-in {
  to {
    -webkit-transform: translateY(0) scale(1);
    transform: translateY(0) scale(1);
  }
}
.slideGrowUp.come-in {
  -webkit-transform: translateY(100px) scale(0.8);
  transform: translateY(100px) scale(0.8);
  animation-timing-function: cubic-bezier(0, 0, 0, 1);
  animation-iteration-count: 1;
  animation-direction: normal;
  animation-fill-mode: forwards;
  animation-play-state: running;
  animation-name: come-in;
  opacity: 1;
}
@keyframes come-in {
  to {
    -webkit-transform: translateY(0) scale(1);
    transform: translateY(0) scale(1);
  }
}
.slideGrowDown.come-in {
  -webkit-transform: translateY(-100px) scale(0.8);
  transform: translateY(-100px) scale(0.8);
  animation-timing-function: cubic-bezier(0, 0, 0, 1);
  animation-iteration-count: 1;
  animation-direction: normal;
  animation-fill-mode: forwards;
  animation-play-state: running;
  animation-name: come-in;
  opacity: 1;
}
@keyframes come-in {
  to {
    -webkit-transform: translateY(0) scale(1);
    transform: translateY(0) scale(1);
  }
}
.slideGrowLeft.come-in {
  -webkit-transform: translateX(100px) scale(0.8);
  transform: translateX(100px) scale(0.8);
  animation-timing-function: cubic-bezier(0, 0, 0, 1);
  animation-iteration-count: 1;
  animation-direction: normal;
  animation-fill-mode: forwards;
  animation-play-state: running;
  animation-name: come-in;
  opacity: 1;
}
@keyframes come-in {
  to {
    -webkit-transform: translateY(0) scale(1);
    transform: translateY(0) scale(1);
  }
}
.slideGrowRight.come-in {
  -webkit-transform: translateX(-100px) scale(0.8);
  transform: translateX(-100px) scale(0.8);
  animation-timing-function: cubic-bezier(0, 0, 0, 1);
  animation-iteration-count: 1;
  animation-direction: normal;
  animation-fill-mode: forwards;
  animation-play-state: running;
  animation-name: come-in;
  opacity: 1;
}
@keyframes come-in {
  to {
    -webkit-transform: translateY(0) scale(1);
    transform: translateY(0) scale(1);
  }
}
.move {
  opacity: 0;
  transition: all 1s ease-in-out;
}
.move.already-visible {
  opacity: 1;
  visibility: visible;
}
.come-in {
  visibility: visible;
}
.come-in.already-visible {
  transform: none;
}
.delay-250 {
  -webkit-animation-delay: 250ms;
  animation-delay: 250ms;
}
.delay-500 {
  -webkit-animation-delay: 500ms;
  animation-delay: 500ms;
}
.delay-750 {
  -webkit-animation-delay: 750ms;
  animation-delay: 750ms;
}
.delay-1000 {
  -webkit-animation-delay: 1s;
  animation-delay: 1s;
}
.delay-2000 {
  -webkit-animation-delay: 2s;
  animation-delay: 2s;
}
.delay-3000 {
  -webkit-animation-delay: 3s;
  animation-delay: 3s;
}
.delay-4000 {
  -webkit-animation-delay: 4s;
  animation-delay: 4s;
}
.delay-5000 {
  -webkit-animation-delay: 5s;
  animation-delay: 5s;
}
.speed-250 {
  -webkit-animation-duration: 250ms;
  animation-duration: 250ms;
}
.speed-500 {
  -webkit-animation-duration: 500ms;
  animation-duration: 500ms;
}
.speed-750 {
  -webkit-animation-duration: 750ms;
  animation-duration: 750ms;
}
.speed-1000 {
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
}
.speed-1500 {
  -webkit-animation-duration: 1.5s;
  animation-duration: 1.5s;
}
.speed-2000 {
  -webkit-animation-duration: 2s;
  animation-duration: 2s;
}
.speed-3000 {
  -webkit-animation-duration: 3s;
  animation-duration: 3s;
}
/*

@charset "UTF-8";

/*!
 * animate.css -https://daneden.github.io/animate.css/
 * Version - 3.7.2
 * Licensed under the MIT license - http://opensource.org/licenses/MIT
 *
 * Copyright (c) 2019 Daniel Eden
 */
/*
 
 //--------------------------------------
 // Fade in
 //--------------------------------------
 
 @-webkit-keyframes fadeIn {
   from {
     opacity: 0;
  }
 
   to {
     opacity: 1;
  }
}
 
 @keyframes fadeIn {
   from {
     opacity: 0;
  }
 
   to {
     opacity: 1;
  }
}
 
 .fadeIn {
   -webkit-animation-name: fadeIn;
   animation-name: fadeIn;
}
 
 //--------------------------------------
 // Fade in down
 //--------------------------------------
 
 @-webkit-keyframes fadeInDown {
   from {
     opacity: 0;
     -webkit-transform: translate3d(0, -100%, 0);
     transform: translate3d(0, -100%, 0);
  }
 
   to {
     opacity: 1;
     -webkit-transform: translate3d(0, 0, 0);
     transform: translate3d(0, 0, 0);
  }
}
 
 @keyframes fadeInDown {
   from {
     opacity: 0;
     -webkit-transform: translate3d(0, -100%, 0);
     transform: translate3d(0, -100%, 0);
  }
 
   to {
     opacity: 1;
     -webkit-transform: translate3d(0, 0, 0);
     transform: translate3d(0, 0, 0);
  }
}
 
 .fadeInDown {
   -webkit-animation-name: fadeInDown;
   animation-name: fadeInDown;
}
 
 //--------------------------------------
 // Fade in down big
 //--------------------------------------
 
 @-webkit-keyframes fadeInDownBig {
   from {
     opacity: 0;
     -webkit-transform: translate3d(0, -2000px, 0);
     transform: translate3d(0, -2000px, 0);
  }
 
   to {
     opacity: 1;
     -webkit-transform: translate3d(0, 0, 0);
     transform: translate3d(0, 0, 0);
  }
}
 
 @keyframes fadeInDownBig {
   from {
     opacity: 0;
     -webkit-transform: translate3d(0, -2000px, 0);
     transform: translate3d(0, -2000px, 0);
  }
 
   to {
     opacity: 1;
     -webkit-transform: translate3d(0, 0, 0);
     transform: translate3d(0, 0, 0);
  }
}
 
 .fadeInDownBig {
   -webkit-animation-name: fadeInDownBig;
   animation-name: fadeInDownBig;
}
 
 //--------------------------------------
 // Fade in left
 //--------------------------------------
 
 @-webkit-keyframes fadeInLeft {
   from {
     opacity: 0;
     -webkit-transform: translate3d(-100%, 0, 0);
     transform: translate3d(-100%, 0, 0);
  }
 
   to {
     opacity: 1;
     -webkit-transform: translate3d(0, 0, 0);
     transform: translate3d(0, 0, 0);
  }
}
 
 @keyframes fadeInLeft {
   from {
     opacity: 0;
     -webkit-transform: translate3d(-100%, 0, 0);
     transform: translate3d(-100%, 0, 0);
  }
 
   to {
     opacity: 1;
     -webkit-transform: translate3d(0, 0, 0);
     transform: translate3d(0, 0, 0);
  }
}
 
 .fadeInLeft {
   -webkit-animation-name: fadeInLeft;
   animation-name: fadeInLeft;
}
 
 //--------------------------------------
 // Fade in left big
 //--------------------------------------
 
 @-webkit-keyframes fadeInLeftBig {
   from {
     opacity: 0;
     -webkit-transform: translate3d(-2000px, 0, 0);
     transform: translate3d(-2000px, 0, 0);
  }
 
   to {
     opacity: 1;
     -webkit-transform: translate3d(0, 0, 0);
     transform: translate3d(0, 0, 0);
  }
}
 
 @keyframes fadeInLeftBig {
   from {
     opacity: 0;
     -webkit-transform: translate3d(-2000px, 0, 0);
     transform: translate3d(-2000px, 0, 0);
  }
 
   to {
     opacity: 1;
     -webkit-transform: translate3d(0, 0, 0);
     transform: translate3d(0, 0, 0);
  }
}
 
 .fadeInLeftBig {
   -webkit-animation-name: fadeInLeftBig;
   animation-name: fadeInLeftBig;
}
 
 //--------------------------------------
 // Fade in right
 //--------------------------------------
 
 @-webkit-keyframes fadeInRight {
   from {
     opacity: 0;
     -webkit-transform: translate3d(100%, 0, 0);
     transform: translate3d(100%, 0, 0);
  }
 
   to {
     opacity: 1;
     -webkit-transform: translate3d(0, 0, 0);
     transform: translate3d(0, 0, 0);
  }
}
 
 @keyframes fadeInRight {
   from {
     opacity: 0;
     -webkit-transform: translate3d(100%, 0, 0);
     transform: translate3d(100%, 0, 0);
  }
 
   to {
     opacity: 1;
     -webkit-transform: translate3d(0, 0, 0);
     transform: translate3d(0, 0, 0);
  }
}
 
 .fadeInRight {
   -webkit-animation-name: fadeInRight;
   animation-name: fadeInRight;
}
 
 //--------------------------------------
 // Fade in right big
 //--------------------------------------
 
 @-webkit-keyframes fadeInRightBig {
   from {
     opacity: 0;
     -webkit-transform: translate3d(2000px, 0, 0);
     transform: translate3d(2000px, 0, 0);
  }
 
   to {
     opacity: 1;
     -webkit-transform: translate3d(0, 0, 0);
     transform: translate3d(0, 0, 0);
  }
}
 
 @keyframes fadeInRightBig {
   from {
     opacity: 0;
     -webkit-transform: translate3d(2000px, 0, 0);
     transform: translate3d(2000px, 0, 0);
  }
 
   to {
     opacity: 1;
     -webkit-transform: translate3d(0, 0, 0);
     transform: translate3d(0, 0, 0);
  }
}
 
 .fadeInRightBig {
   -webkit-animation-name: fadeInRightBig;
   animation-name: fadeInRightBig;
}
 
 //--------------------------------------
 // Fade in up
 //--------------------------------------
 
 @-webkit-keyframes fadeInUp {
   from {
     opacity: 0;
     -webkit-transform: translate3d(0, 100%, 0);
     transform: translate3d(0, 100%, 0);
  }
 
   to {
     opacity: 1;
     -webkit-transform: translate3d(0, 0, 0);
     transform: translate3d(0, 0, 0);
  }
}
 
 @keyframes fadeInUp {
   from {
     opacity: 0;
     -webkit-transform: translate3d(0, 100%, 0);
     transform: translate3d(0, 100%, 0);
  }
 
   to {
     opacity: 1;
     -webkit-transform: translate3d(0, 0, 0);
     transform: translate3d(0, 0, 0);
  }
}
 
 .fadeInUp {
   -webkit-animation-name: fadeInUp;
   animation-name: fadeInUp;
}
 
 //--------------------------------------
 // Fade in up big
 //--------------------------------------
 
 @-webkit-keyframes fadeInUpBig {
   from {
     opacity: 0;
     -webkit-transform: translate3d(0, 2000px, 0);
     transform: translate3d(0, 2000px, 0);
  }
 
   to {
     opacity: 1;
     -webkit-transform: translate3d(0, 0, 0);
     transform: translate3d(0, 0, 0);
  }
}
 
 @keyframes fadeInUpBig {
   from {
     opacity: 0;
     -webkit-transform: translate3d(0, 2000px, 0);
     transform: translate3d(0, 2000px, 0);
  }
 
   to {
     opacity: 1;
     -webkit-transform: translate3d(0, 0, 0);
     transform: translate3d(0, 0, 0);
  }
}
 
 .fadeInUpBig {
   -webkit-animation-name: fadeInUpBig;
   animation-name: fadeInUpBig;
}
 
 //--------------------------------------
 // Zoom in
 //--------------------------------------
 
 @-webkit-keyframes zoomIn {
   from {
     opacity: 0;
     -webkit-transform: scale3d(0.3, 0.3, 0.3);
     transform: scale3d(0.3, 0.3, 0.3);
  }
 
   50% {
     opacity: 1;
  }
}
 
 @keyframes zoomIn {
   from {
     opacity: 0;
     -webkit-transform: scale3d(0.3, 0.3, 0.3);
     transform: scale3d(0.3, 0.3, 0.3);
  }
 
   50% {
     opacity: 1;
  }
}
 
 .zoomIn {
   -webkit-animation-name: zoomIn;
   animation-name: zoomIn;
}
 
 //--------------------------------------
 // Zoom in down
 //--------------------------------------
 
 @-webkit-keyframes zoomInDown {
   from {
     opacity: 0;
     -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -1000px, 0);
     transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -1000px, 0);
     -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
     animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
 
   60% {
     opacity: 1;
     -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
     transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
     -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
     animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
 
 @keyframes zoomInDown {
   from {
     opacity: 0;
     -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -1000px, 0);
     transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -1000px, 0);
     -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
     animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
 
   60% {
     opacity: 1;
     -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
     transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
     -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
     animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
 
 .zoomInDown {
   -webkit-animation-name: zoomInDown;
   animation-name: zoomInDown;
}
 
 //--------------------------------------
 // Zoom in left
 //--------------------------------------
 
 @-webkit-keyframes zoomInLeft {
   from {
     opacity: 0;
     -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(-1000px, 0, 0);
     transform: scale3d(0.1, 0.1, 0.1) translate3d(-1000px, 0, 0);
     -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
     animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
 
   60% {
     opacity: 1;
     -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(10px, 0, 0);
     transform: scale3d(0.475, 0.475, 0.475) translate3d(10px, 0, 0);
     -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
     animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
 
 @keyframes zoomInLeft {
   from {
     opacity: 0;
     -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(-1000px, 0, 0);
     transform: scale3d(0.1, 0.1, 0.1) translate3d(-1000px, 0, 0);
     -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
     animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
 
   60% {
     opacity: 1;
     -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(10px, 0, 0);
     transform: scale3d(0.475, 0.475, 0.475) translate3d(10px, 0, 0);
     -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
     animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
 
 .zoomInLeft {
   -webkit-animation-name: zoomInLeft;
   animation-name: zoomInLeft;
}
 
 //--------------------------------------
 // Zoom in right
 //--------------------------------------
 
 @-webkit-keyframes zoomInRight {
   from {
     opacity: 0;
     -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(1000px, 0, 0);
     transform: scale3d(0.1, 0.1, 0.1) translate3d(1000px, 0, 0);
     -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
     animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
 
   60% {
     opacity: 1;
     -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(-10px, 0, 0);
     transform: scale3d(0.475, 0.475, 0.475) translate3d(-10px, 0, 0);
     -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
     animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
 
 @keyframes zoomInRight {
   from {
     opacity: 0;
     -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(1000px, 0, 0);
     transform: scale3d(0.1, 0.1, 0.1) translate3d(1000px, 0, 0);
     -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
     animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
 
   60% {
     opacity: 1;
     -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(-10px, 0, 0);
     transform: scale3d(0.475, 0.475, 0.475) translate3d(-10px, 0, 0);
     -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
     animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
 
 .zoomInRight {
   -webkit-animation-name: zoomInRight;
   animation-name: zoomInRight;
}
 
 //--------------------------------------
 // Zoom in up
 //--------------------------------------
 
 @-webkit-keyframes zoomInUp {
   from {
     opacity: 0;
     -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 1000px, 0);
     transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 1000px, 0);
     -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
     animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
 
   60% {
     opacity: 1;
     -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
     transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
     -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
     animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
 
 @keyframes zoomInUp {
   from {
     opacity: 0;
     -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 1000px, 0);
     transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 1000px, 0);
     -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
     animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
 
   60% {
     opacity: 1;
     -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
     transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
     -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
     animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
 
 .zoomInUp {
   -webkit-animation-name: zoomInUp;
   animation-name: zoomInUp;
}
 
 //--------------------------------------
 // Zoom out
 //--------------------------------------
 
 @-webkit-keyframes zoomOut {
   from {
     opacity: 1;
  }
 
   50% {
     opacity: 0;
     -webkit-transform: scale3d(0.3, 0.3, 0.3);
     transform: scale3d(0.3, 0.3, 0.3);
  }
 
   to {
     opacity: 0;
  }
}
 
 @keyframes zoomOut {
   from {
     opacity: 1;
  }
 
   50% {
     opacity: 0;
     -webkit-transform: scale3d(0.3, 0.3, 0.3);
     transform: scale3d(0.3, 0.3, 0.3);
  }
 
   to {
     opacity: 0;
  }
}
 
 .zoomOut {
   -webkit-animation-name: zoomOut;
   animation-name: zoomOut;
}
 
 //--------------------------------------
 // Zoom out down
 //--------------------------------------
 
 @-webkit-keyframes zoomOutDown {
   40% {
     opacity: 1;
     -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
     transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
     -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
     animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
 
   to {
     opacity: 0;
     -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 2000px, 0);
     transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 2000px, 0);
     -webkit-transform-origin: center bottom;
     transform-origin: center bottom;
     -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
     animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
 
 @keyframes zoomOutDown {
   40% {
     opacity: 1;
     -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
     transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
     -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
     animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
 
   to {
     opacity: 0;
     -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 2000px, 0);
     transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 2000px, 0);
     -webkit-transform-origin: center bottom;
     transform-origin: center bottom;
     -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
     animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
 
 .zoomOutDown {
   -webkit-animation-name: zoomOutDown;
   animation-name: zoomOutDown;
}
 
 //--------------------------------------
 // Zoom out left
 //--------------------------------------
 
 @-webkit-keyframes zoomOutLeft {
   40% {
     opacity: 1;
     -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(42px, 0, 0);
     transform: scale3d(0.475, 0.475, 0.475) translate3d(42px, 0, 0);
  }
 
   to {
     opacity: 0;
     -webkit-transform: scale(0.1) translate3d(-2000px, 0, 0);
     transform: scale(0.1) translate3d(-2000px, 0, 0);
     -webkit-transform-origin: left center;
     transform-origin: left center;
  }
}
 
 @keyframes zoomOutLeft {
   40% {
     opacity: 1;
     -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(42px, 0, 0);
     transform: scale3d(0.475, 0.475, 0.475) translate3d(42px, 0, 0);
  }
 
   to {
     opacity: 0;
     -webkit-transform: scale(0.1) translate3d(-2000px, 0, 0);
     transform: scale(0.1) translate3d(-2000px, 0, 0);
     -webkit-transform-origin: left center;
     transform-origin: left center;
  }
}
 
 .zoomOutLeft {
   -webkit-animation-name: zoomOutLeft;
   animation-name: zoomOutLeft;
}
 
 //--------------------------------------
 // Zoom out right
 //--------------------------------------
 
 @-webkit-keyframes zoomOutRight {
   40% {
     opacity: 1;
     -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(-42px, 0, 0);
     transform: scale3d(0.475, 0.475, 0.475) translate3d(-42px, 0, 0);
  }
 
   to {
     opacity: 0;
     -webkit-transform: scale(0.1) translate3d(2000px, 0, 0);
     transform: scale(0.1) translate3d(2000px, 0, 0);
     -webkit-transform-origin: right center;
     transform-origin: right center;
  }
}
 
 @keyframes zoomOutRight {
   40% {
     opacity: 1;
     -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(-42px, 0, 0);
     transform: scale3d(0.475, 0.475, 0.475) translate3d(-42px, 0, 0);
  }
 
   to {
     opacity: 0;
     -webkit-transform: scale(0.1) translate3d(2000px, 0, 0);
     transform: scale(0.1) translate3d(2000px, 0, 0);
     -webkit-transform-origin: right center;
     transform-origin: right center;
  }
}
 
 .zoomOutRight {
   -webkit-animation-name: zoomOutRight;
   animation-name: zoomOutRight;
}
 
 //--------------------------------------
 // Zoom out up
 //--------------------------------------
 
 @-webkit-keyframes zoomOutUp {
   40% {
     opacity: 1;
     -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
     transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
     -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
     animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
 
   to {
     opacity: 0;
     -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -2000px, 0);
     transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -2000px, 0);
     -webkit-transform-origin: center bottom;
     transform-origin: center bottom;
     -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
     animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
 
 @keyframes zoomOutUp {
   40% {
     opacity: 1;
     -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
     transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
     -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
     animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
 
   to {
     opacity: 0;
     -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -2000px, 0);
     transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -2000px, 0);
     -webkit-transform-origin: center bottom;
     transform-origin: center bottom;
     -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
     animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
 
 .zoomOutUp {
   -webkit-animation-name: zoomOutUp;
   animation-name: zoomOutUp;
}
 
 */
/*
 
 //--------------------------------------
 // Animated
 //--------------------------------------
 
 .animated {
   -webkit-animation-duration: 1s;
   animation-duration: 1s;
   -webkit-animation-fill-mode: both;
   animation-fill-mode: both;
}
 
 .animated.infinite {
   -webkit-animation-iteration-count: infinite;
   animation-iteration-count: infinite;
}
 
 .animated.delay-1s {
   -webkit-animation-delay: 1s;
   animation-delay: 1s;
}
 
 .animated.delay-2s {
   -webkit-animation-delay: 2s;
   animation-delay: 2s;
}
 
 .animated.delay-3s {
   -webkit-animation-delay: 3s;
   animation-delay: 3s;
}
 
 .animated.delay-4s {
   -webkit-animation-delay: 4s;
   animation-delay: 4s;
}
 
 .animated.delay-5s {
   -webkit-animation-delay: 5s;
   animation-delay: 5s;
}
 
 .animated.fast {
   -webkit-animation-duration: 800ms;
   animation-duration: 800ms;
}
 
 .animated.faster {
   -webkit-animation-duration: 500ms;
   animation-duration: 500ms;
}
 
 .animated.slow1 {
   -webkit-animation-duration: .5s;
   animation-duration: .5s;
}
 
 .animated.slow2 {
   -webkit-animation-duration: 1s;
   animation-duration: 1s;
}
 
 .animated.slow3 {
   -webkit-animation-duration: 1.5s;
   animation-duration: 1.5s;
}
 
 .animated.slow {
   -webkit-animation-duration: 2s;
   animation-duration: 2s;
}
 
 .animated.slower {
   -webkit-animation-duration: 3s;
   animation-duration: 3s;
}
 
 /*

//--------------------------------------
// Bounce
//--------------------------------------

@-webkit-keyframes bounce {
  from,
  20%,
  53%,
  80%,
  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);
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
 }

  40%,
  43% {
    -webkit-animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    -webkit-transform: translate3d(0, -30px, 0);
    transform: translate3d(0, -30px, 0);
 }

  70% {
    -webkit-animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    -webkit-transform: translate3d(0, -15px, 0);
    transform: translate3d(0, -15px, 0);
 }

  90% {
    -webkit-transform: translate3d(0, -4px, 0);
    transform: translate3d(0, -4px, 0);
 }
}

@keyframes bounce {
  from,
  20%,
  53%,
  80%,
  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);
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
 }

  40%,
  43% {
    -webkit-animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    -webkit-transform: translate3d(0, -30px, 0);
    transform: translate3d(0, -30px, 0);
 }

  70% {
    -webkit-animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    -webkit-transform: translate3d(0, -15px, 0);
    transform: translate3d(0, -15px, 0);
 }

  90% {
    -webkit-transform: translate3d(0, -4px, 0);
    transform: translate3d(0, -4px, 0);
 }
}

.bounce {
  -webkit-animation-name: bounce;
  animation-name: bounce;
  -webkit-transform-origin: center bottom;
  transform-origin: center bottom;
}

//--------------------------------------
// Flash
//--------------------------------------

@-webkit-keyframes flash {
  from,
  50%,
  to {
    opacity: 1;
 }

  25%,
  75% {
    opacity: 0;
 }
}

@keyframes flash {
  from,
  50%,
  to {
    opacity: 1;
 }

  25%,
  75% {
    opacity: 0;
 }
}

.flash {
  -webkit-animation-name: flash;
  animation-name: flash;
}

/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */
/*

@-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);
 }
}

*/
/* .pulse {
  -webkit-animation-name: pulse;
  animation-name: pulse;
}

@-webkit-keyframes rubberBand {
  from {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
 }

  30% {
    -webkit-transform: scale3d(1.25, 0.75, 1);
    transform: scale3d(1.25, 0.75, 1);
 }

  40% {
    -webkit-transform: scale3d(0.75, 1.25, 1);
    transform: scale3d(0.75, 1.25, 1);
 }

  50% {
    -webkit-transform: scale3d(1.15, 0.85, 1);
    transform: scale3d(1.15, 0.85, 1);
 }

  65% {
    -webkit-transform: scale3d(0.95, 1.05, 1);
    transform: scale3d(0.95, 1.05, 1);
 }

  75% {
    -webkit-transform: scale3d(1.05, 0.95, 1);
    transform: scale3d(1.05, 0.95, 1);
 }

  to {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
 }
} 

//--------------------------------------
// Rubber band
//--------------------------------------

@keyframes rubberBand {
  from {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
 }

  30% {
    -webkit-transform: scale3d(1.25, 0.75, 1);
    transform: scale3d(1.25, 0.75, 1);
 }

  40% {
    -webkit-transform: scale3d(0.75, 1.25, 1);
    transform: scale3d(0.75, 1.25, 1);
 }

  50% {
    -webkit-transform: scale3d(1.15, 0.85, 1);
    transform: scale3d(1.15, 0.85, 1);
 }

  65% {
    -webkit-transform: scale3d(0.95, 1.05, 1);
    transform: scale3d(0.95, 1.05, 1);
 }

  75% {
    -webkit-transform: scale3d(1.05, 0.95, 1);
    transform: scale3d(1.05, 0.95, 1);
 }

  to {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
 }
}

.rubberBand {
  -webkit-animation-name: rubberBand;
  animation-name: rubberBand;
}

//--------------------------------------
// Shake
//--------------------------------------

@-webkit-keyframes shake {
  from,
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
 }

  10%,
  30%,
  50%,
  70%,
  90% {
    -webkit-transform: translate3d(-10px, 0, 0);
    transform: translate3d(-10px, 0, 0);
 }

  20%,
  40%,
  60%,
  80% {
    -webkit-transform: translate3d(10px, 0, 0);
    transform: translate3d(10px, 0, 0);
 }
}

@keyframes shake {
  from,
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
 }

  10%,
  30%,
  50%,
  70%,
  90% {
    -webkit-transform: translate3d(-10px, 0, 0);
    transform: translate3d(-10px, 0, 0);
 }

  20%,
  40%,
  60%,
  80% {
    -webkit-transform: translate3d(10px, 0, 0);
    transform: translate3d(10px, 0, 0);
 }
}

.shake {
  -webkit-animation-name: shake;
  animation-name: shake;
}

//--------------------------------------
// Head shake
//--------------------------------------

@-webkit-keyframes headShake {
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
 }

  6.5% {
    -webkit-transform: translateX(-6px) rotateY(-9deg);
    transform: translateX(-6px) rotateY(-9deg);
 }

  18.5% {
    -webkit-transform: translateX(5px) rotateY(7deg);
    transform: translateX(5px) rotateY(7deg);
 }

  31.5% {
    -webkit-transform: translateX(-3px) rotateY(-5deg);
    transform: translateX(-3px) rotateY(-5deg);
 }

  43.5% {
    -webkit-transform: translateX(2px) rotateY(3deg);
    transform: translateX(2px) rotateY(3deg);
 }

  50% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
 }
}

@keyframes headShake {
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
 }

  6.5% {
    -webkit-transform: translateX(-6px) rotateY(-9deg);
    transform: translateX(-6px) rotateY(-9deg);
 }

  18.5% {
    -webkit-transform: translateX(5px) rotateY(7deg);
    transform: translateX(5px) rotateY(7deg);
 }

  31.5% {
    -webkit-transform: translateX(-3px) rotateY(-5deg);
    transform: translateX(-3px) rotateY(-5deg);
 }

  43.5% {
    -webkit-transform: translateX(2px) rotateY(3deg);
    transform: translateX(2px) rotateY(3deg);
 }

  50% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
 }
}

.headShake {
  -webkit-animation-timing-function: ease-in-out;
  animation-timing-function: ease-in-out;
  -webkit-animation-name: headShake;
  animation-name: headShake;
}

//--------------------------------------
// Swing
//--------------------------------------

@-webkit-keyframes swing {
  20% {
    -webkit-transform: rotate3d(0, 0, 1, 15deg);
    transform: rotate3d(0, 0, 1, 15deg);
 }

  40% {
    -webkit-transform: rotate3d(0, 0, 1, -10deg);
    transform: rotate3d(0, 0, 1, -10deg);
 }

  60% {
    -webkit-transform: rotate3d(0, 0, 1, 5deg);
    transform: rotate3d(0, 0, 1, 5deg);
 }

  80% {
    -webkit-transform: rotate3d(0, 0, 1, -5deg);
    transform: rotate3d(0, 0, 1, -5deg);
 }

  to {
    -webkit-transform: rotate3d(0, 0, 1, 0deg);
    transform: rotate3d(0, 0, 1, 0deg);
 }
}

@keyframes swing {
  20% {
    -webkit-transform: rotate3d(0, 0, 1, 15deg);
    transform: rotate3d(0, 0, 1, 15deg);
 }

  40% {
    -webkit-transform: rotate3d(0, 0, 1, -10deg);
    transform: rotate3d(0, 0, 1, -10deg);
 }

  60% {
    -webkit-transform: rotate3d(0, 0, 1, 5deg);
    transform: rotate3d(0, 0, 1, 5deg);
 }

  80% {
    -webkit-transform: rotate3d(0, 0, 1, -5deg);
    transform: rotate3d(0, 0, 1, -5deg);
 }

  to {
    -webkit-transform: rotate3d(0, 0, 1, 0deg);
    transform: rotate3d(0, 0, 1, 0deg);
 }
}

.swing {
  -webkit-transform-origin: top center;
  transform-origin: top center;
  -webkit-animation-name: swing;
  animation-name: swing;
}

//--------------------------------------
// Tada
//--------------------------------------

@-webkit-keyframes tada {
  from {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
 }

  10%,
  20% {
    -webkit-transform: scale3d(0.9, 0.9, 0.9) rotate3d(0, 0, 1, -3deg);
    transform: scale3d(0.9, 0.9, 0.9) rotate3d(0, 0, 1, -3deg);
 }

  30%,
  50%,
  70%,
  90% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
    transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
 }

  40%,
  60%,
  80% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
    transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
 }

  to {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
 }
}

@keyframes tada {
  from {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
 }

  10%,
  20% {
    -webkit-transform: scale3d(0.9, 0.9, 0.9) rotate3d(0, 0, 1, -3deg);
    transform: scale3d(0.9, 0.9, 0.9) rotate3d(0, 0, 1, -3deg);
 }

  30%,
  50%,
  70%,
  90% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
    transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
 }

  40%,
  60%,
  80% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
    transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
 }

  to {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
 }
}

.tada {
  -webkit-animation-name: tada;
  animation-name: tada;
}

//--------------------------------------
// Wobble
//--------------------------------------

@-webkit-keyframes wobble {
  from {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
 }

  15% {
    -webkit-transform: translate3d(-25%, 0, 0) rotate3d(0, 0, 1, -5deg);
    transform: translate3d(-25%, 0, 0) rotate3d(0, 0, 1, -5deg);
 }

  30% {
    -webkit-transform: translate3d(20%, 0, 0) rotate3d(0, 0, 1, 3deg);
    transform: translate3d(20%, 0, 0) rotate3d(0, 0, 1, 3deg);
 }

  45% {
    -webkit-transform: translate3d(-15%, 0, 0) rotate3d(0, 0, 1, -3deg);
    transform: translate3d(-15%, 0, 0) rotate3d(0, 0, 1, -3deg);
 }

  60% {
    -webkit-transform: translate3d(10%, 0, 0) rotate3d(0, 0, 1, 2deg);
    transform: translate3d(10%, 0, 0) rotate3d(0, 0, 1, 2deg);
 }

  75% {
    -webkit-transform: translate3d(-5%, 0, 0) rotate3d(0, 0, 1, -1deg);
    transform: translate3d(-5%, 0, 0) rotate3d(0, 0, 1, -1deg);
 }

  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
 }
}

@keyframes wobble {
  from {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
 }

  15% {
    -webkit-transform: translate3d(-25%, 0, 0) rotate3d(0, 0, 1, -5deg);
    transform: translate3d(-25%, 0, 0) rotate3d(0, 0, 1, -5deg);
 }

  30% {
    -webkit-transform: translate3d(20%, 0, 0) rotate3d(0, 0, 1, 3deg);
    transform: translate3d(20%, 0, 0) rotate3d(0, 0, 1, 3deg);
 }

  45% {
    -webkit-transform: translate3d(-15%, 0, 0) rotate3d(0, 0, 1, -3deg);
    transform: translate3d(-15%, 0, 0) rotate3d(0, 0, 1, -3deg);
 }

  60% {
    -webkit-transform: translate3d(10%, 0, 0) rotate3d(0, 0, 1, 2deg);
    transform: translate3d(10%, 0, 0) rotate3d(0, 0, 1, 2deg);
 }

  75% {
    -webkit-transform: translate3d(-5%, 0, 0) rotate3d(0, 0, 1, -1deg);
    transform: translate3d(-5%, 0, 0) rotate3d(0, 0, 1, -1deg);
 }

  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
 }
}

.wobble {
  -webkit-animation-name: wobble;
  animation-name: wobble;
}

//--------------------------------------
// Jello
//--------------------------------------

@-webkit-keyframes jello {
  from,
  11.1%,
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
 }

  22.2% {
    -webkit-transform: skewX(-12.5deg) skewY(-12.5deg);
    transform: skewX(-12.5deg) skewY(-12.5deg);
 }

  33.3% {
    -webkit-transform: skewX(6.25deg) skewY(6.25deg);
    transform: skewX(6.25deg) skewY(6.25deg);
 }

  44.4% {
    -webkit-transform: skewX(-3.125deg) skewY(-3.125deg);
    transform: skewX(-3.125deg) skewY(-3.125deg);
 }

  55.5% {
    -webkit-transform: skewX(1.5625deg) skewY(1.5625deg);
    transform: skewX(1.5625deg) skewY(1.5625deg);
 }

  66.6% {
    -webkit-transform: skewX(-0.78125deg) skewY(-0.78125deg);
    transform: skewX(-0.78125deg) skewY(-0.78125deg);
 }

  77.7% {
    -webkit-transform: skewX(0.390625deg) skewY(0.390625deg);
    transform: skewX(0.390625deg) skewY(0.390625deg);
 }

  88.8% {
    -webkit-transform: skewX(-0.1953125deg) skewY(-0.1953125deg);
    transform: skewX(-0.1953125deg) skewY(-0.1953125deg);
 }
}

@keyframes jello {
  from,
  11.1%,
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
 }

  22.2% {
    -webkit-transform: skewX(-12.5deg) skewY(-12.5deg);
    transform: skewX(-12.5deg) skewY(-12.5deg);
 }

  33.3% {
    -webkit-transform: skewX(6.25deg) skewY(6.25deg);
    transform: skewX(6.25deg) skewY(6.25deg);
 }

  44.4% {
    -webkit-transform: skewX(-3.125deg) skewY(-3.125deg);
    transform: skewX(-3.125deg) skewY(-3.125deg);
 }

  55.5% {
    -webkit-transform: skewX(1.5625deg) skewY(1.5625deg);
    transform: skewX(1.5625deg) skewY(1.5625deg);
 }

  66.6% {
    -webkit-transform: skewX(-0.78125deg) skewY(-0.78125deg);
    transform: skewX(-0.78125deg) skewY(-0.78125deg);
 }

  77.7% {
    -webkit-transform: skewX(0.390625deg) skewY(0.390625deg);
    transform: skewX(0.390625deg) skewY(0.390625deg);
 }

  88.8% {
    -webkit-transform: skewX(-0.1953125deg) skewY(-0.1953125deg);
    transform: skewX(-0.1953125deg) skewY(-0.1953125deg);
 }
}

.jello {
  -webkit-animation-name: jello;
  animation-name: jello;
  -webkit-transform-origin: center;
  transform-origin: center;
}

//--------------------------------------
// Heartbeat
//--------------------------------------

@-webkit-keyframes heartBeat {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
 }

  14% {
    -webkit-transform: scale(1.3);
    transform: scale(1.3);
 }

  28% {
    -webkit-transform: scale(1);
    transform: scale(1);
 }

  42% {
    -webkit-transform: scale(1.3);
    transform: scale(1.3);
 }

  70% {
    -webkit-transform: scale(1);
    transform: scale(1);
 }
}

@keyframes heartBeat {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
 }

  14% {
    -webkit-transform: scale(1.3);
    transform: scale(1.3);
 }

  28% {
    -webkit-transform: scale(1);
    transform: scale(1);
 }

  42% {
    -webkit-transform: scale(1.3);
    transform: scale(1.3);
 }

  70% {
    -webkit-transform: scale(1);
    transform: scale(1);
 }
}

.heartBeat {
  -webkit-animation-name: heartBeat;
  animation-name: heartBeat;
  -webkit-animation-duration: 1.3s;
  animation-duration: 1.3s;
  -webkit-animation-timing-function: ease-in-out;
  animation-timing-function: ease-in-out;
}

//--------------------------------------
// Bounce in
//--------------------------------------

@-webkit-keyframes bounceIn {
  from,
  20%,
  40%,
  60%,
  80%,
  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: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
 }

  20% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1);
    transform: scale3d(1.1, 1.1, 1.1);
 }

  40% {
    -webkit-transform: scale3d(0.9, 0.9, 0.9);
    transform: scale3d(0.9, 0.9, 0.9);
 }

  60% {
    opacity: 1;
    -webkit-transform: scale3d(1.03, 1.03, 1.03);
    transform: scale3d(1.03, 1.03, 1.03);
 }

  80% {
    -webkit-transform: scale3d(0.97, 0.97, 0.97);
    transform: scale3d(0.97, 0.97, 0.97);
 }

  to {
    opacity: 1;
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
 }
}

@keyframes bounceIn {
  from,
  20%,
  40%,
  60%,
  80%,
  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: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
 }

  20% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1);
    transform: scale3d(1.1, 1.1, 1.1);
 }

  40% {
    -webkit-transform: scale3d(0.9, 0.9, 0.9);
    transform: scale3d(0.9, 0.9, 0.9);
 }

  60% {
    opacity: 1;
    -webkit-transform: scale3d(1.03, 1.03, 1.03);
    transform: scale3d(1.03, 1.03, 1.03);
 }

  80% {
    -webkit-transform: scale3d(0.97, 0.97, 0.97);
    transform: scale3d(0.97, 0.97, 0.97);
 }

  to {
    opacity: 1;
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
 }
}

.bounceIn {
  -webkit-animation-duration: 0.75s;
  animation-duration: 0.75s;
  -webkit-animation-name: bounceIn;
  animation-name: bounceIn;
}

//--------------------------------------
// Bounce in down
//--------------------------------------

@-webkit-keyframes bounceInDown {
  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);
    transform: translate3d(0, -3000px, 0);
 }

  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 {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
 }
}

@keyframes bounceInDown {
  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);
    transform: translate3d(0, -3000px, 0);
 }

  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 {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
 }
}

.bounceInDown {
  -webkit-animation-name: bounceInDown;
  animation-name: bounceInDown;
}

//--------------------------------------
// Bounce in left
//--------------------------------------

@-webkit-keyframes bounceInLeft {
  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(-3000px, 0, 0);
    transform: translate3d(-3000px, 0, 0);
 }

  60% {
    opacity: 1;
    -webkit-transform: translate3d(25px, 0, 0);
    transform: translate3d(25px, 0, 0);
 }

  75% {
    -webkit-transform: translate3d(-10px, 0, 0);
    transform: translate3d(-10px, 0, 0);
 }

  90% {
    -webkit-transform: translate3d(5px, 0, 0);
    transform: translate3d(5px, 0, 0);
 }

  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
 }
}

@keyframes bounceInLeft {
  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(-3000px, 0, 0);
    transform: translate3d(-3000px, 0, 0);
 }

  60% {
    opacity: 1;
    -webkit-transform: translate3d(25px, 0, 0);
    transform: translate3d(25px, 0, 0);
 }

  75% {
    -webkit-transform: translate3d(-10px, 0, 0);
    transform: translate3d(-10px, 0, 0);
 }

  90% {
    -webkit-transform: translate3d(5px, 0, 0);
    transform: translate3d(5px, 0, 0);
 }

  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
 }
}

.bounceInLeft {
  -webkit-animation-name: bounceInLeft;
  animation-name: bounceInLeft;
}

@-webkit-keyframes bounceInRight {
  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);
 }

  from {
    opacity: 0;
    -webkit-transform: translate3d(3000px, 0, 0);
    transform: translate3d(3000px, 0, 0);
 }

  60% {
    opacity: 1;
    -webkit-transform: translate3d(-25px, 0, 0);
    transform: translate3d(-25px, 0, 0);
 }

  75% {
    -webkit-transform: translate3d(10px, 0, 0);
    transform: translate3d(10px, 0, 0);
 }

  90% {
    -webkit-transform: translate3d(-5px, 0, 0);
    transform: translate3d(-5px, 0, 0);
 }

  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
 }
}

//--------------------------------------
// Bounce in right
//--------------------------------------

@keyframes bounceInRight {
  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);
 }

  from {
    opacity: 0;
    -webkit-transform: translate3d(3000px, 0, 0);
    transform: translate3d(3000px, 0, 0);
 }

  60% {
    opacity: 1;
    -webkit-transform: translate3d(-25px, 0, 0);
    transform: translate3d(-25px, 0, 0);
 }

  75% {
    -webkit-transform: translate3d(10px, 0, 0);
    transform: translate3d(10px, 0, 0);
 }

  90% {
    -webkit-transform: translate3d(-5px, 0, 0);
    transform: translate3d(-5px, 0, 0);
 }

  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
 }
}

.bounceInRight {
  -webkit-animation-name: bounceInRight;
  animation-name: bounceInRight;
}

//--------------------------------------
// Bounce in up
//--------------------------------------

@-webkit-keyframes bounceInUp {
  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);
 }

  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 3000px, 0);
    transform: translate3d(0, 3000px, 0);
 }

  60% {
    opacity: 1;
    -webkit-transform: translate3d(0, -20px, 0);
    transform: translate3d(0, -20px, 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 {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
 }
}

@keyframes bounceInUp {
  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);
 }

  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 3000px, 0);
    transform: translate3d(0, 3000px, 0);
 }

  60% {
    opacity: 1;
    -webkit-transform: translate3d(0, -20px, 0);
    transform: translate3d(0, -20px, 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 {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
 }
}

.bounceInUp {
  -webkit-animation-name: bounceInUp;
  animation-name: bounceInUp;
}

//--------------------------------------
// Bounce out
//--------------------------------------

@-webkit-keyframes bounceOut {
  20% {
    -webkit-transform: scale3d(0.9, 0.9, 0.9);
    transform: scale3d(0.9, 0.9, 0.9);
 }

  50%,
  55% {
    opacity: 1;
    -webkit-transform: scale3d(1.1, 1.1, 1.1);
    transform: scale3d(1.1, 1.1, 1.1);
 }

  to {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
 }
}

@keyframes bounceOut {
  20% {
    -webkit-transform: scale3d(0.9, 0.9, 0.9);
    transform: scale3d(0.9, 0.9, 0.9);
 }

  50%,
  55% {
    opacity: 1;
    -webkit-transform: scale3d(1.1, 1.1, 1.1);
    transform: scale3d(1.1, 1.1, 1.1);
 }

  to {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
 }
}

.bounceOut {
  -webkit-animation-duration: 0.75s;
  animation-duration: 0.75s;
  -webkit-animation-name: bounceOut;
  animation-name: bounceOut;
}

//--------------------------------------
// Bounce out down
//--------------------------------------

@-webkit-keyframes bounceOutDown {
  20% {
    -webkit-transform: translate3d(0, 10px, 0);
    transform: translate3d(0, 10px, 0);
 }

  40%,
  45% {
    opacity: 1;
    -webkit-transform: translate3d(0, -20px, 0);
    transform: translate3d(0, -20px, 0);
 }

  to {
    opacity: 0;
    -webkit-transform: translate3d(0, 2000px, 0);
    transform: translate3d(0, 2000px, 0);
 }
}

@keyframes bounceOutDown {
  20% {
    -webkit-transform: translate3d(0, 10px, 0);
    transform: translate3d(0, 10px, 0);
 }

  40%,
  45% {
    opacity: 1;
    -webkit-transform: translate3d(0, -20px, 0);
    transform: translate3d(0, -20px, 0);
 }

  to {
    opacity: 0;
    -webkit-transform: translate3d(0, 2000px, 0);
    transform: translate3d(0, 2000px, 0);
 }
}

.bounceOutDown {
  -webkit-animation-name: bounceOutDown;
  animation-name: bounceOutDown;
}

//--------------------------------------
// Bounce out left
//--------------------------------------

@-webkit-keyframes bounceOutLeft {
  20% {
    opacity: 1;
    -webkit-transform: translate3d(20px, 0, 0);
    transform: translate3d(20px, 0, 0);
 }

  to {
    opacity: 0;
    -webkit-transform: translate3d(-2000px, 0, 0);
    transform: translate3d(-2000px, 0, 0);
 }
}

@keyframes bounceOutLeft {
  20% {
    opacity: 1;
    -webkit-transform: translate3d(20px, 0, 0);
    transform: translate3d(20px, 0, 0);
 }

  to {
    opacity: 0;
    -webkit-transform: translate3d(-2000px, 0, 0);
    transform: translate3d(-2000px, 0, 0);
 }
}

.bounceOutLeft {
  -webkit-animation-name: bounceOutLeft;
  animation-name: bounceOutLeft;
}

//--------------------------------------
// Bounce out right
//--------------------------------------

@-webkit-keyframes bounceOutRight {
  20% {
    opacity: 1;
    -webkit-transform: translate3d(-20px, 0, 0);
    transform: translate3d(-20px, 0, 0);
 }

  to {
    opacity: 0;
    -webkit-transform: translate3d(2000px, 0, 0);
    transform: translate3d(2000px, 0, 0);
 }
}

@keyframes bounceOutRight {
  20% {
    opacity: 1;
    -webkit-transform: translate3d(-20px, 0, 0);
    transform: translate3d(-20px, 0, 0);
 }

  to {
    opacity: 0;
    -webkit-transform: translate3d(2000px, 0, 0);
    transform: translate3d(2000px, 0, 0);
 }
}

.bounceOutRight {
  -webkit-animation-name: bounceOutRight;
  animation-name: bounceOutRight;
}

//--------------------------------------
// Bounce out up
//--------------------------------------

@-webkit-keyframes bounceOutUp {
  20% {
    -webkit-transform: translate3d(0, -10px, 0);
    transform: translate3d(0, -10px, 0);
 }

  40%,
  45% {
    opacity: 1;
    -webkit-transform: translate3d(0, 20px, 0);
    transform: translate3d(0, 20px, 0);
 }

  to {
    opacity: 0;
    -webkit-transform: translate3d(0, -2000px, 0);
    transform: translate3d(0, -2000px, 0);
 }
}

@keyframes bounceOutUp {
  20% {
    -webkit-transform: translate3d(0, -10px, 0);
    transform: translate3d(0, -10px, 0);
 }

  40%,
  45% {
    opacity: 1;
    -webkit-transform: translate3d(0, 20px, 0);
    transform: translate3d(0, 20px, 0);
 }

  to {
    opacity: 0;
    -webkit-transform: translate3d(0, -2000px, 0);
    transform: translate3d(0, -2000px, 0);
 }
}

.bounceOutUp {
  -webkit-animation-name: bounceOutUp;
  animation-name: bounceOutUp;
}

*/
/*

//--------------------------------------
// Fade out
//--------------------------------------

@-webkit-keyframes fadeOut {
  from {
    opacity: 1;
 }

  to {
    opacity: 0;
 }
}

@keyframes fadeOut {
  from {
    opacity: 1;
 }

  to {
    opacity: 0;
 }
}

.fadeOut {
  -webkit-animation-name: fadeOut;
  animation-name: fadeOut;
}

//--------------------------------------
// Fade out down
//--------------------------------------

@-webkit-keyframes fadeOutDown {
  from {
    opacity: 1;
 }

  to {
    opacity: 0;
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
 }
}

@keyframes fadeOutDown {
  from {
    opacity: 1;
 }

  to {
    opacity: 0;
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
 }
}

.fadeOutDown {
  -webkit-animation-name: fadeOutDown;
  animation-name: fadeOutDown;
}

//--------------------------------------
// Fade out down big
//--------------------------------------

@-webkit-keyframes fadeOutDownBig {
  from {
    opacity: 1;
 }

  to {
    opacity: 0;
    -webkit-transform: translate3d(0, 2000px, 0);
    transform: translate3d(0, 2000px, 0);
 }
}

@keyframes fadeOutDownBig {
  from {
    opacity: 1;
 }

  to {
    opacity: 0;
    -webkit-transform: translate3d(0, 2000px, 0);
    transform: translate3d(0, 2000px, 0);
 }
}

.fadeOutDownBig {
  -webkit-animation-name: fadeOutDownBig;
  animation-name: fadeOutDownBig;
}

//--------------------------------------
// Fade out left
//--------------------------------------

@-webkit-keyframes fadeOutLeft {
  from {
    opacity: 1;
 }

  to {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
 }
}

@keyframes fadeOutLeft {
  from {
    opacity: 1;
 }

  to {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
 }
}

.fadeOutLeft {
  -webkit-animation-name: fadeOutLeft;
  animation-name: fadeOutLeft;
}

//--------------------------------------
// Fade out left big
//--------------------------------------

@-webkit-keyframes fadeOutLeftBig {
  from {
    opacity: 1;
 }

  to {
    opacity: 0;
    -webkit-transform: translate3d(-2000px, 0, 0);
    transform: translate3d(-2000px, 0, 0);
 }
}

@keyframes fadeOutLeftBig {
  from {
    opacity: 1;
 }

  to {
    opacity: 0;
    -webkit-transform: translate3d(-2000px, 0, 0);
    transform: translate3d(-2000px, 0, 0);
 }
}

.fadeOutLeftBig {
  -webkit-animation-name: fadeOutLeftBig;
  animation-name: fadeOutLeftBig;
}

//--------------------------------------
// Fade out right
//--------------------------------------

@-webkit-keyframes fadeOutRight {
  from {
    opacity: 1;
 }

  to {
    opacity: 0;
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
 }
}

@keyframes fadeOutRight {
  from {
    opacity: 1;
 }

  to {
    opacity: 0;
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
 }
}

.fadeOutRight {
  -webkit-animation-name: fadeOutRight;
  animation-name: fadeOutRight;
}

//--------------------------------------
// Fade out right big
//--------------------------------------

@-webkit-keyframes fadeOutRightBig {
  from {
    opacity: 1;
 }

  to {
    opacity: 0;
    -webkit-transform: translate3d(2000px, 0, 0);
    transform: translate3d(2000px, 0, 0);
 }
}

@keyframes fadeOutRightBig {
  from {
    opacity: 1;
 }

  to {
    opacity: 0;
    -webkit-transform: translate3d(2000px, 0, 0);
    transform: translate3d(2000px, 0, 0);
 }
}

.fadeOutRightBig {
  -webkit-animation-name: fadeOutRightBig;
  animation-name: fadeOutRightBig;
}

//--------------------------------------
// Fade out up
//--------------------------------------

@-webkit-keyframes fadeOutUp {
  from {
    opacity: 1;
 }

  to {
    opacity: 0;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
 }
}

@keyframes fadeOutUp {
  from {
    opacity: 1;
 }

  to {
    opacity: 0;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
 }
}

.fadeOutUp {
  -webkit-animation-name: fadeOutUp;
  animation-name: fadeOutUp;
}

//--------------------------------------
// Fade out up big
//--------------------------------------

@-webkit-keyframes fadeOutUpBig {
  from {
    opacity: 1;
 }

  to {
    opacity: 0;
    -webkit-transform: translate3d(0, -2000px, 0);
    transform: translate3d(0, -2000px, 0);
 }
}

@keyframes fadeOutUpBig {
  from {
    opacity: 1;
 }

  to {
    opacity: 0;
    -webkit-transform: translate3d(0, -2000px, 0);
    transform: translate3d(0, -2000px, 0);
 }
}

.fadeOutUpBig {
  -webkit-animation-name: fadeOutUpBig;
  animation-name: fadeOutUpBig;
}

//--------------------------------------
// Flip
//--------------------------------------

@-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;
 }
}

.animated.flip {
  -webkit-backface-visibility: visible;
  backface-visibility: visible;
  -webkit-animation-name: flip;
  animation-name: flip;
}

//--------------------------------------
// Flip in X
//--------------------------------------

@-webkit-keyframes flipInX {
  from {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
    opacity: 0;
 }

  40% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
 }

  60% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
    transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
    opacity: 1;
 }

  80% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -5deg);
    transform: perspective(400px) rotate3d(1, 0, 0, -5deg);
 }

  to {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
 }
}

@keyframes flipInX {
  from {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
    opacity: 0;
 }

  40% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
 }

  60% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
    transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
    opacity: 1;
 }

  80% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -5deg);
    transform: perspective(400px) rotate3d(1, 0, 0, -5deg);
 }

  to {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
 }
}

.flipInX {
  -webkit-backface-visibility: visible !important;
  backface-visibility: visible !important;
  -webkit-animation-name: flipInX;
  animation-name: flipInX;
}

//--------------------------------------
// Flip in Y
//--------------------------------------

@-webkit-keyframes flipInY {
  from {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
    opacity: 0;
 }

  40% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -20deg);
    transform: perspective(400px) rotate3d(0, 1, 0, -20deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
 }

  60% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 10deg);
    transform: perspective(400px) rotate3d(0, 1, 0, 10deg);
    opacity: 1;
 }

  80% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -5deg);
    transform: perspective(400px) rotate3d(0, 1, 0, -5deg);
 }

  to {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
 }
}

@keyframes flipInY {
  from {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
    opacity: 0;
 }

  40% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -20deg);
    transform: perspective(400px) rotate3d(0, 1, 0, -20deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
 }

  60% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 10deg);
    transform: perspective(400px) rotate3d(0, 1, 0, 10deg);
    opacity: 1;
 }

  80% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -5deg);
    transform: perspective(400px) rotate3d(0, 1, 0, -5deg);
 }

  to {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
 }
}

.flipInY {
  -webkit-backface-visibility: visible !important;
  backface-visibility: visible !important;
  -webkit-animation-name: flipInY;
  animation-name: flipInY;
}

//--------------------------------------
// Flip out X
//--------------------------------------

@-webkit-keyframes flipOutX {
  from {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
 }

  30% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    opacity: 1;
 }

  to {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    opacity: 0;
 }
}

@keyframes flipOutX {
  from {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
 }

  30% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    opacity: 1;
 }

  to {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    opacity: 0;
 }
}

.flipOutX {
  -webkit-animation-duration: 0.75s;
  animation-duration: 0.75s;
  -webkit-animation-name: flipOutX;
  animation-name: flipOutX;
  -webkit-backface-visibility: visible !important;
  backface-visibility: visible !important;
}

//--------------------------------------
// Flip out Y
//--------------------------------------

@-webkit-keyframes flipOutY {
  from {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
 }

  30% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -15deg);
    transform: perspective(400px) rotate3d(0, 1, 0, -15deg);
    opacity: 1;
 }

  to {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    opacity: 0;
 }
}

@keyframes flipOutY {
  from {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
 }

  30% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -15deg);
    transform: perspective(400px) rotate3d(0, 1, 0, -15deg);
    opacity: 1;
 }

  to {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    opacity: 0;
 }
}

.flipOutY {
  -webkit-animation-duration: 0.75s;
  animation-duration: 0.75s;
  -webkit-backface-visibility: visible !important;
  backface-visibility: visible !important;
  -webkit-animation-name: flipOutY;
  animation-name: flipOutY;
}

//--------------------------------------
// Light speed in
//--------------------------------------

@-webkit-keyframes lightSpeedIn {
  from {
    -webkit-transform: translate3d(100%, 0, 0) skewX(-30deg);
    transform: translate3d(100%, 0, 0) skewX(-30deg);
    opacity: 0;
 }

  60% {
    -webkit-transform: skewX(20deg);
    transform: skewX(20deg);
    opacity: 1;
 }

  80% {
    -webkit-transform: skewX(-5deg);
    transform: skewX(-5deg);
 }

  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
 }
}

@keyframes lightSpeedIn {
  from {
    -webkit-transform: translate3d(100%, 0, 0) skewX(-30deg);
    transform: translate3d(100%, 0, 0) skewX(-30deg);
    opacity: 0;
 }

  60% {
    -webkit-transform: skewX(20deg);
    transform: skewX(20deg);
    opacity: 1;
 }

  80% {
    -webkit-transform: skewX(-5deg);
    transform: skewX(-5deg);
 }

  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
 }
}

.lightSpeedIn {
  -webkit-animation-name: lightSpeedIn;
  animation-name: lightSpeedIn;
  -webkit-animation-timing-function: ease-out;
  animation-timing-function: ease-out;
}

//--------------------------------------
// Light speed out
//--------------------------------------

@-webkit-keyframes lightSpeedOut {
  from {
    opacity: 1;
 }

  to {
    -webkit-transform: translate3d(100%, 0, 0) skewX(30deg);
    transform: translate3d(100%, 0, 0) skewX(30deg);
    opacity: 0;
 }
}

@keyframes lightSpeedOut {
  from {
    opacity: 1;
 }

  to {
    -webkit-transform: translate3d(100%, 0, 0) skewX(30deg);
    transform: translate3d(100%, 0, 0) skewX(30deg);
    opacity: 0;
 }
}

.lightSpeedOut {
  -webkit-animation-name: lightSpeedOut;
  animation-name: lightSpeedOut;
  -webkit-animation-timing-function: ease-in;
  animation-timing-function: ease-in;
}

//--------------------------------------
// Rotate in
//--------------------------------------

@-webkit-keyframes rotateIn {
  from {
    -webkit-transform-origin: center;
    transform-origin: center;
    -webkit-transform: rotate3d(0, 0, 1, -200deg);
    transform: rotate3d(0, 0, 1, -200deg);
    opacity: 0;
 }

  to {
    -webkit-transform-origin: center;
    transform-origin: center;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    opacity: 1;
 }
}

@keyframes rotateIn {
  from {
    -webkit-transform-origin: center;
    transform-origin: center;
    -webkit-transform: rotate3d(0, 0, 1, -200deg);
    transform: rotate3d(0, 0, 1, -200deg);
    opacity: 0;
 }

  to {
    -webkit-transform-origin: center;
    transform-origin: center;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    opacity: 1;
 }
}

.rotateIn {
  -webkit-animation-name: rotateIn;
  animation-name: rotateIn;
}

//--------------------------------------
// Rotate in down left
//--------------------------------------

@-webkit-keyframes rotateInDownLeft {
  from {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate3d(0, 0, 1, -45deg);
    transform: rotate3d(0, 0, 1, -45deg);
    opacity: 0;
 }

  to {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    opacity: 1;
 }
}

@keyframes rotateInDownLeft {
  from {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate3d(0, 0, 1, -45deg);
    transform: rotate3d(0, 0, 1, -45deg);
    opacity: 0;
 }

  to {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    opacity: 1;
 }
}

.rotateInDownLeft {
  -webkit-animation-name: rotateInDownLeft;
  animation-name: rotateInDownLeft;
}

//--------------------------------------
// Rotate in down right
//--------------------------------------

@-webkit-keyframes rotateInDownRight {
  from {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate3d(0, 0, 1, 45deg);
    transform: rotate3d(0, 0, 1, 45deg);
    opacity: 0;
 }

  to {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    opacity: 1;
 }
}

@keyframes rotateInDownRight {
  from {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate3d(0, 0, 1, 45deg);
    transform: rotate3d(0, 0, 1, 45deg);
    opacity: 0;
 }

  to {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    opacity: 1;
 }
}

.rotateInDownRight {
  -webkit-animation-name: rotateInDownRight;
  animation-name: rotateInDownRight;
}

//--------------------------------------
// Rotate in up left
//--------------------------------------

@-webkit-keyframes rotateInUpLeft {
  from {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate3d(0, 0, 1, 45deg);
    transform: rotate3d(0, 0, 1, 45deg);
    opacity: 0;
 }

  to {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    opacity: 1;
 }
}

@keyframes rotateInUpLeft {
  from {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate3d(0, 0, 1, 45deg);
    transform: rotate3d(0, 0, 1, 45deg);
    opacity: 0;
 }

  to {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    opacity: 1;
 }
}

.rotateInUpLeft {
  -webkit-animation-name: rotateInUpLeft;
  animation-name: rotateInUpLeft;
}

//--------------------------------------
// Rotate in up Right
//--------------------------------------

@-webkit-keyframes rotateInUpRight {
  from {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate3d(0, 0, 1, -90deg);
    transform: rotate3d(0, 0, 1, -90deg);
    opacity: 0;
 }

  to {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    opacity: 1;
 }
}

@keyframes rotateInUpRight {
  from {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate3d(0, 0, 1, -90deg);
    transform: rotate3d(0, 0, 1, -90deg);
    opacity: 0;
 }

  to {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    opacity: 1;
 }
}

.rotateInUpRight {
  -webkit-animation-name: rotateInUpRight;
  animation-name: rotateInUpRight;
}

//--------------------------------------
// Rotate out
//--------------------------------------

@-webkit-keyframes rotateOut {
  from {
    -webkit-transform-origin: center;
    transform-origin: center;
    opacity: 1;
 }

  to {
    -webkit-transform-origin: center;
    transform-origin: center;
    -webkit-transform: rotate3d(0, 0, 1, 200deg);
    transform: rotate3d(0, 0, 1, 200deg);
    opacity: 0;
 }
}

@keyframes rotateOut {
  from {
    -webkit-transform-origin: center;
    transform-origin: center;
    opacity: 1;
 }

  to {
    -webkit-transform-origin: center;
    transform-origin: center;
    -webkit-transform: rotate3d(0, 0, 1, 200deg);
    transform: rotate3d(0, 0, 1, 200deg);
    opacity: 0;
 }
}

.rotateOut {
  -webkit-animation-name: rotateOut;
  animation-name: rotateOut;
}

//--------------------------------------
// Rotate out down left
//--------------------------------------

@-webkit-keyframes rotateOutDownLeft {
  from {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    opacity: 1;
 }

  to {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate3d(0, 0, 1, 45deg);
    transform: rotate3d(0, 0, 1, 45deg);
    opacity: 0;
 }
}

@keyframes rotateOutDownLeft {
  from {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    opacity: 1;
 }

  to {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate3d(0, 0, 1, 45deg);
    transform: rotate3d(0, 0, 1, 45deg);
    opacity: 0;
 }
}

.rotateOutDownLeft {
  -webkit-animation-name: rotateOutDownLeft;
  animation-name: rotateOutDownLeft;
}

//--------------------------------------
// Rotate out down right
//--------------------------------------

@-webkit-keyframes rotateOutDownRight {
  from {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    opacity: 1;
 }

  to {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate3d(0, 0, 1, -45deg);
    transform: rotate3d(0, 0, 1, -45deg);
    opacity: 0;
 }
}

@keyframes rotateOutDownRight {
  from {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    opacity: 1;
 }

  to {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate3d(0, 0, 1, -45deg);
    transform: rotate3d(0, 0, 1, -45deg);
    opacity: 0;
 }
}

.rotateOutDownRight {
  -webkit-animation-name: rotateOutDownRight;
  animation-name: rotateOutDownRight;
}

//--------------------------------------
// Rotate out up left
//--------------------------------------

@-webkit-keyframes rotateOutUpLeft {
  from {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    opacity: 1;
 }

  to {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate3d(0, 0, 1, -45deg);
    transform: rotate3d(0, 0, 1, -45deg);
    opacity: 0;
 }
}

@keyframes rotateOutUpLeft {
  from {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    opacity: 1;
 }

  to {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate3d(0, 0, 1, -45deg);
    transform: rotate3d(0, 0, 1, -45deg);
    opacity: 0;
 }
}

.rotateOutUpLeft {
  -webkit-animation-name: rotateOutUpLeft;
  animation-name: rotateOutUpLeft;
}

//--------------------------------------
// Rotate out up right
//--------------------------------------

@-webkit-keyframes rotateOutUpRight {
  from {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    opacity: 1;
 }

  to {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate3d(0, 0, 1, 90deg);
    transform: rotate3d(0, 0, 1, 90deg);
    opacity: 0;
 }
}

@keyframes rotateOutUpRight {
  from {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    opacity: 1;
 }

  to {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate3d(0, 0, 1, 90deg);
    transform: rotate3d(0, 0, 1, 90deg);
    opacity: 0;
 }
}

.rotateOutUpRight {
  -webkit-animation-name: rotateOutUpRight;
  animation-name: rotateOutUpRight;
}

//--------------------------------------
// Hinge
//--------------------------------------

@-webkit-keyframes hinge {
  0% {
    -webkit-transform-origin: top left;
    transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
 }

  20%,
  60% {
    -webkit-transform: rotate3d(0, 0, 1, 80deg);
    transform: rotate3d(0, 0, 1, 80deg);
    -webkit-transform-origin: top left;
    transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
 }

  40%,
  80% {
    -webkit-transform: rotate3d(0, 0, 1, 60deg);
    transform: rotate3d(0, 0, 1, 60deg);
    -webkit-transform-origin: top left;
    transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
    opacity: 1;
 }

  to {
    -webkit-transform: translate3d(0, 700px, 0);
    transform: translate3d(0, 700px, 0);
    opacity: 0;
 }
}

@keyframes hinge {
  0% {
    -webkit-transform-origin: top left;
    transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
 }

  20%,
  60% {
    -webkit-transform: rotate3d(0, 0, 1, 80deg);
    transform: rotate3d(0, 0, 1, 80deg);
    -webkit-transform-origin: top left;
    transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
 }

  40%,
  80% {
    -webkit-transform: rotate3d(0, 0, 1, 60deg);
    transform: rotate3d(0, 0, 1, 60deg);
    -webkit-transform-origin: top left;
    transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
    opacity: 1;
 }

  to {
    -webkit-transform: translate3d(0, 700px, 0);
    transform: translate3d(0, 700px, 0);
    opacity: 0;
 }
}

.hinge {
  -webkit-animation-duration: 2s;
  animation-duration: 2s;
  -webkit-animation-name: hinge;
  animation-name: hinge;
}

//--------------------------------------
// Jack in the box
//--------------------------------------

@-webkit-keyframes jackInTheBox {
  from {
    opacity: 0;
    -webkit-transform: scale(0.1) rotate(30deg);
    transform: scale(0.1) rotate(30deg);
    -webkit-transform-origin: center bottom;
    transform-origin: center bottom;
 }

  50% {
    -webkit-transform: rotate(-10deg);
    transform: rotate(-10deg);
 }

  70% {
    -webkit-transform: rotate(3deg);
    transform: rotate(3deg);
 }

  to {
    opacity: 1;
    -webkit-transform: scale(1);
    transform: scale(1);
 }
}

@keyframes jackInTheBox {
  from {
    opacity: 0;
    -webkit-transform: scale(0.1) rotate(30deg);
    transform: scale(0.1) rotate(30deg);
    -webkit-transform-origin: center bottom;
    transform-origin: center bottom;
 }

  50% {
    -webkit-transform: rotate(-10deg);
    transform: rotate(-10deg);
 }

  70% {
    -webkit-transform: rotate(3deg);
    transform: rotate(3deg);
 }

  to {
    opacity: 1;
    -webkit-transform: scale(1);
    transform: scale(1);
 }
}

.jackInTheBox {
  -webkit-animation-name: jackInTheBox;
  animation-name: jackInTheBox;
}

//--------------------------------------
// Roll in
//--------------------------------------

@-webkit-keyframes rollIn {
  from {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 0, 0) rotate3d(0, 0, 1, -120deg);
    transform: translate3d(-100%, 0, 0) rotate3d(0, 0, 1, -120deg);
 }

  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
 }
}

@keyframes rollIn {
  from {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 0, 0) rotate3d(0, 0, 1, -120deg);
    transform: translate3d(-100%, 0, 0) rotate3d(0, 0, 1, -120deg);
 }

  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
 }
}

.rollIn {
  -webkit-animation-name: rollIn;
  animation-name: rollIn;
}

//--------------------------------------
// Roll out
//--------------------------------------

@-webkit-keyframes rollOut {
  from {
    opacity: 1;
 }

  to {
    opacity: 0;
    -webkit-transform: translate3d(100%, 0, 0) rotate3d(0, 0, 1, 120deg);
    transform: translate3d(100%, 0, 0) rotate3d(0, 0, 1, 120deg);
 }
}

@keyframes rollOut {
  from {
    opacity: 1;
 }

  to {
    opacity: 0;
    -webkit-transform: translate3d(100%, 0, 0) rotate3d(0, 0, 1, 120deg);
    transform: translate3d(100%, 0, 0) rotate3d(0, 0, 1, 120deg);
 }
}

.rollOut {
  -webkit-animation-name: rollOut;
  animation-name: rollOut;
}

*/
/*

//--------------------------------------
// Slide in down
//--------------------------------------

@-webkit-keyframes slideInDown {
  from {
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
    visibility: visible;
 }

  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
 }
}

@keyframes slideInDown {
  from {
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
    visibility: visible;
 }

  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
 }
}

.slideInDown {
  -webkit-animation-name: slideInDown;
  animation-name: slideInDown;
}

//--------------------------------------
// Slide in left
//--------------------------------------

@-webkit-keyframes slideInLeft {
  from {
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
    visibility: visible;
 }

  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
 }
}

@keyframes slideInLeft {
  from {
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
    visibility: visible;
 }

  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
 }
}

.slideInLeft {
  -webkit-animation-name: slideInLeft;
  animation-name: slideInLeft;
}

//--------------------------------------
// Slide in right
//--------------------------------------

@-webkit-keyframes slideInRight {
  from {
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
    visibility: visible;
 }

  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
 }
}

@keyframes slideInRight {
  from {
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
    visibility: visible;
 }

  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
 }
}

.slideInRight {
  -webkit-animation-name: slideInRight;
  animation-name: slideInRight;
}

//--------------------------------------
// Slide in up
//--------------------------------------

@-webkit-keyframes slideInUp {
  from {
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
    visibility: visible;
 }

  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
 }
}

@keyframes slideInUp {
  from {
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
    visibility: visible;
 }

  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
 }
}

.slideInUp {
  -webkit-animation-name: slideInUp;
  animation-name: slideInUp;
}

//--------------------------------------
// Slide out down
//--------------------------------------

@-webkit-keyframes slideOutDown {
  from {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
 }

  to {
    visibility: hidden;
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
 }
}

@keyframes slideOutDown {
  from {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
 }

  to {
    visibility: hidden;
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
 }
}

.slideOutDown {
  -webkit-animation-name: slideOutDown;
  animation-name: slideOutDown;
}

//--------------------------------------
// Slide out left
//--------------------------------------

@-webkit-keyframes slideOutLeft {
  from {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
 }

  to {
    visibility: hidden;
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
 }
}

@keyframes slideOutLeft {
  from {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
 }

  to {
    visibility: hidden;
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
 }
}

.slideOutLeft {
  -webkit-animation-name: slideOutLeft;
  animation-name: slideOutLeft;
}

//--------------------------------------
// Slide out right
//--------------------------------------

@-webkit-keyframes slideOutRight {
  from {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
 }

  to {
    visibility: hidden;
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
 }
}

@keyframes slideOutRight {
  from {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
 }

  to {
    visibility: hidden;
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
 }
}

.slideOutRight {
  -webkit-animation-name: slideOutRight;
  animation-name: slideOutRight;
}

//--------------------------------------
// Slide out up
//--------------------------------------

@-webkit-keyframes slideOutUp {
  from {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
 }

  to {
    visibility: hidden;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
 }
}

@keyframes slideOutUp {
  from {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
 }

  to {
    visibility: hidden;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
 }
}

.slideOutUp {
  -webkit-animation-name: slideOutUp;
  animation-name: slideOutUp;
}

*/
/*
@media (print), (prefers-reduced-motion: reduce) {
  .animated {
    -webkit-animation-duration: 1ms !important;
    animation-duration: 1ms !important;
    -webkit-transition-duration: 1ms !important;
    transition-duration: 1ms !important;
    -webkit-animation-iteration-count: 1 !important;
    animation-iteration-count: 1 !important;
 }
}
*/
@media (min-width: 768px) {
  .page-template-page-wide-php .type .apply-max-width,
  .page-template-page-wide-php .type p,
  .page-template-page-wide-php .type blockquote,
  .page-template-page-wide-php .type ol,
  .page-template-page-wide-php .type ul,
  .page-template-page-wide-php .type pre,
  .page-template-page-wide-php .type h1,
  .page-template-page-wide-php .type h2,
  .page-template-page-wide-php .type h3,
  .page-template-page-wide-php .type h4,
  .page-template-page-wide-php .type h5,
  .page-template-page-wide-php .type h6,
  .page-template-page-wide-php .type hr,
  .page-template-page-wide-php .type .crumbs,
  .page-template-page-wide-php .type .wp-block-buttons,
  .page-template-page-wide-php .type .wp-block-pullquote,
  .page-template-page-wide-php .type figure.wp-block-image,
  .page-template-page-wide-php .type .accordion,
  .page-template-page-wide-php .type .team,
  .page-template-page-wide-php .type .wp-block-group,
  .page-template-page-wide-php .type .wp-block-embed.aligncenter,
  .page-template-page-wide-php .type .gform_wrapper,
  .page-template-page-wide-php .type .gform_confirmation_wrapper,
  .page-template-page-wide-php .type #mc_embed_shell {
    margin-left: auto;
  }
}
.page-heading.align--left .container {
  justify-content: space-between;
}
@media (max-width: 599.98px) {
  .page-heading.align--left .container {
    flex-direction: column;
  }
}
@media (min-width: 600px) {
  .page-heading.align--left .container {
    align-items: center;
  }
}
.page-heading.align--center .container {
  flex-direction: column;
  justify-content: center;
}
.page-heading .container {
  position: relative;
  z-index: 1;
  display: flex;
  gap: 1em 5em;
}
@media (max-width: 599.98px) {
  .page-heading .container {
    font-size: 70%;
    padding-top: 6em;
    padding-bottom: 6em;
    flex-direction: column;
  }
}
@media (min-width: 600px)  and (max-width: 767.98px) {
  .page-heading .container {
    font-size: 80%;
    padding-top: 6em;
    padding-bottom: 6em;
  }
}
@media (min-width: 600px) {
  .page-heading .container {
    align-items: center;
  }
}
@media (min-width: 768px)  and (max-width: 991.98px) {
  .page-heading .container {
    font-size: 90%;
  }
}
@media (min-width: 768px) {
  .page-heading .container {
    padding-top: 8em;
    padding-bottom: 8em;
  }
}
.page-heading .container .page__title {
  font-size: 2.8em;
  line-height: 1.15;
  max-width: 900px;
  margin-top: 0;
  margin-bottom: 0;
}
.page-heading.align--left {
  text-align: left;
}
.page-heading.align--center {
  text-align: center;
}
.page-heading.align--center .page__title {
  margin-left: auto;
  margin-right: auto;
}
.page-heading.align--center .post__meta {
  justify-content: center;
}
.page-heading.align--right {
  text-align: right;
}
.page-heading.align--right .post__meta {
  justify-content: end;
}
.page-heading .post__category {
  margin-bottom: 2em;
}
.page-heading .post__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8em;
  margin-top: 1.5em;
}
.page-heading .post__meta a {
  color: inherit;
}
.page-heading .post__meta span {
  opacity: 0.4;
  font-weight: 300;
}
.page-heading .post__read-time iconify-icon {
  position: relative;
  top: 2px;
}
.post-template-default blockquote {
  margin-left: 0;
}
.widget_nav_menu .menu {
  display: flex;
  flex-direction: column;
  gap: 0.5em;
}
.widget_nav_menu .menu .menu-item {
  padding: 0;
}
.widget_nav_menu .menu .menu-item a {
  padding: 1em;
  background: white;
  border-radius: 3px;
  box-shadow: 0 0 0 1px #0001, 0 2px 5px #0002;
  border-left: 5px solid var(--color1);
  display: block;
}
.widget_nav_menu .menu .menu-item a:hover {
  text-decoration: none;
  border-left: 10px solid var(--color1);
}
.quiz {
  display: flex;
  align-items: center;
  grid-area: content;
}
@media (max-width: 599.98px) {
  .quiz {
    padding: 2em 0;
  }
}
@media (min-width: 992px) {
  .quiz {
    padding: 3em;
  }
}
.quiz .wp-block-verse {
  font-size: 1.7em !important;
  font-weight: 400 !important;
}
.quiz .container {
  width: 100%;
  max-width: 760px;
}
.quiz fieldset .gfield_label {
  font-size: 1.5em;
  font-weight: 500;
  line-height: 1.3;
  margin-bottom: 1em;
}
.quiz .ginput_container_number input {
  box-shadow: none !important;
  background: transparent;
  padding: 0 !important;
  font-size: 5em !important;
  font-weight: 600;
}
.quiz .gfield-choice-input {
  margin: 0.53em 0 0;
}
.quiz .gchoice .gform-field-label {
  font-size: 1.2em;
  letter-spacing: 0.02em;
}
.quiz .gform_fields .gfield_error {
  border: none !important;
  background: transparent !important;
  box-shadow: none !important;
}
.quiz .gform_fields .gfield_validation_message {
  display: none;
}
.search-box {
  display: flex;
  gap: 5px;
}
.search-box__input {
  border-width: 1px;
  border-style: solid;
  border-color: rgba(0, 0, 0, 0.4);
  flex: auto;
  padding: 8px 10px;
  font-size: 1.1em;
  border-radius: 3px 0 0 3px;
}
.search-box__button {
  background-color: var(--color1);
  background-image: url('https://api.iconify.design/iconamoon/search-bold.svg?color=white');
  background-repeat: no-repeat;
  background-position: center;
  flex: none;
  cursor: pointer;
  border: none;
  border-radius: 3px !important;
  font-size: 1.5em;
  padding: 0;
  width: 40px;
  line-height: 0;
}
.search-box__select {
  width: 80px;
  padding: 0 8px;
}
.search-page__results {
  display: flex;
  flex-direction: column;
  gap: 1.5em;
}
.search-page__item-title {
  color: black;
}
.search-page__item-title:hover {
  color: var(--color1);
}
.search-page__item-title h3 {
  margin: 0 0 0.2em;
  font-weight: 600;
  font-size: 1.2em;
  line-height: 1.5;
}
.search-page__excerpt p {
  font-size: 1.1em;
  line-height: 1.4;
  margin: 0;
  color: #000c;
}
.search-page {
  margin: 0 0 1.5em 0;
}
.search-page__title {
  margin-top: 8px;
}
.search-count,
.search-terms {
  font-weight: bold;
}
* {
  font-weight: 400;
}
ul,
ol {
  margin: 0;
  padding: 0;
}
ul li,
ol li {
  list-style: none;
}
h2 em,
h3 em,
h4 em,
h5 em,
h6 em,
h2 i,
h3 i,
h4 i,
h5 i,
h6 i,
h2 strong,
h3 strong,
h4 strong,
h5 strong,
h6 strong,
h2 b,
h3 b,
h4 b,
h5 b,
h6 b {
  font-family: inherit;
  font-weight: inherit;
  line-height: inherit;
}
@media (max-width: 767.98px) {
  .type .wp-block-verse,
  .type h2.wp-block-heading {
    font-size: 1.8em !important;
  }
}
@media (min-width: 768px)  and (max-width: 991.98px) {
  .type .wp-block-verse,
  .type h2.wp-block-heading {
    font-size: 2em !important;
  }
}
.type p,
.type blockquote,
.type > ul,
.type > ol,
.type pre {
  word-break: break-word;
  font-size: 1.2em;
  line-height: 1.5;
  color: #444;
}
.type p strong,
.type blockquote strong,
.type > ul strong,
.type > ol strong,
.type pre strong,
.type p b,
.type blockquote b,
.type > ul b,
.type > ol b,
.type pre b {
  font-weight: 700;
  color: black;
}
.type p em,
.type blockquote em,
.type > ul em,
.type > ol em,
.type pre em,
.type p i,
.type blockquote i,
.type > ul i,
.type > ol i,
.type pre i {
  font-style: italic;
}
.type h1 {
  font-size: 2.8em;
  line-height: 1.15;
}
.type h2 {
  font-size: 2.2em;
  line-height: 1.2;
}
.type h3 {
  font-size: 1.8em;
  line-height: 1.2;
}
.type h4 {
  font-size: 1.6em;
  line-height: 1.3;
}
.type h5 {
  font-size: 1.4em;
  line-height: 1.3;
}
.type h6 {
  font-size: 1.3em;
  line-height: 1.4;
}
@media (min-width: 768px) {
  .type .apply-max-width,
  .type p,
  .type blockquote,
  .type ol,
  .type ul,
  .type pre,
  .type h1,
  .type h2,
  .type h3,
  .type h4,
  .type h5,
  .type h6,
  .type hr,
  .type .crumbs,
  .type .wp-block-buttons,
  .type .wp-block-pullquote,
  .type figure.wp-block-image,
  .type .accordion,
  .type .team,
  .type .wp-block-group,
  .type .wp-block-embed.aligncenter,
  .type .gform_wrapper,
  .type .gform_confirmation_wrapper,
  .type #mc_embed_shell {
    max-width: 760px;
    margin-right: auto;
  }
}
.type p,
.type ul,
.type ol,
.type pre,
.type figure.alignright,
.type figure.alignleft {
  margin-top: 0.8em;
  margin-bottom: 0.8em;
}
.type .margin-y2,
.type hr,
.type figure.wp-block-image,
.type figure.aligncenter,
.type .wp-block-gallery,
.type .wp-block-embed,
.type .wp-block-video,
.type .wp-block-buttons,
.type .page-links,
.type .wp-block-quote,
.type .accordion,
.type .team,
.type .wp-block-group {
  margin-top: 2em;
  margin-bottom: 2em;
}
.type h1,
.type h2,
.type h3,
.type h4,
.type h5,
.type h6 {
  margin-top: 1.5em;
  margin-bottom: 0.8rem;
}
.type a {
  position: relative;
  text-decoration: none;
}
.type a:hover {
  filter: var(--hover);
  text-decoration: underline;
}
.type .wp-block-quote,
.type .wp-block-pullquote {
  border: none;
}
.type .wp-block-quote cite,
.type .wp-block-pullquote cite {
  font-style: normal;
}
.type .wp-block-quote {
  padding: 0 0 0 1em;
  position: relative;
  font-size: 1.2em;
  font-style: normal;
  letter-spacing: normal;
  border-left: 5px solid var(--color1);
}
.type .wp-block-quote cite {
  font-size: 0.7em;
  line-height: 1.3;
  color: rgba(0, 0, 0, 0.6);
  margin-top: -8px;
  display: block;
}
.type .wp-block-pullquote blockquote {
  margin: 0;
  background: var(--primary);
  color: white;
  padding: 1.8em 2em;
  margin: 0 2em 1em 0;
  font-size: 1.5em;
  border-radius: 4px;
}
@media (min-width: 0px)    and (max-width: 359.98px) {
  .type .wp-block-pullquote blockquote {
    margin-right: auto;
  }
}
@media (min-width: 360px)  and (max-width: 599.98px) {
  .type .wp-block-pullquote blockquote {
    font-size: 1.2em;
  }
}
@media (min-width: 360px) {
  .type .wp-block-pullquote blockquote {
    width: 50%;
    float: left;
  }
}
.type .wp-block-pullquote cite {
  font-size: 0.7em;
  line-height: 1.3;
  color: rgba(255, 255, 255, 0.6);
  margin-top: -8px;
  display: block;
}
.type .wp-block-separator {
  border-color: #0002;
}
.type img {
  border-style: none;
  border-radius: 4px;
}
.type .wp-block-image figure > a {
  display: block;
  box-shadow: 0 0 0 2px white, 0 0 0 3px #0002, 0 0 0 1px #0001, 0 3px 6px #0005;
  border-radius: 4px;
}
.type figure.aligncenter {
  width: 100%;
}
.type figure.aligncenter img {
  width: 100%;
  height: auto;
}
.type figure.alignleft,
.type figure.alignright {
  width: 50%;
}
.type figure.alignleft img,
.type figure.alignright img {
  width: 100%;
  height: auto;
}
.type figure.alignleft {
  float: left;
}
@media (max-width: 599.98px) {
  .type figure.alignleft {
    margin: 0 1em 1em 0;
  }
}
@media (min-width: 600px) {
  .type figure.alignleft {
    margin: 0 2em 1em 0;
  }
}
.type figure.alignright {
  float: right;
}
@media (max-width: 599.98px) {
  .type figure.alignright {
    margin: 0 0 1em 1em;
  }
}
@media (min-width: 600px) {
  .type figure.alignright {
    margin: 0 0 1em 2em;
  }
}
.type .wp-element-caption {
  text-align: center;
  line-height: 1.3;
  color: #0008;
  padding: 1em 0 0;
  margin: 0;
  font-size: 0.9em;
  line-height: 1.4;
}
.type .wp-block-video video {
  width: 100%;
  border: 1px solid rgba(0, 0, 0, 0.6);
}
.type .wp-block-video figcaption {
  font-size: 0.9em;
  padding: 0.5em 0 0;
  font-weight: 600;
}
.type .wp-block-embed {
  margin-left: 0;
  margin-right: 0;
}
.type .wp-block-embed .wp-block-embed__wrapper {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  max-width: 100%;
}
.type .wp-block-embed .wp-block-embed__wrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.type ul,
.type ol {
  padding-left: 2.2em;
}
.type li {
  margin: 0.5em 0;
}
.type ul li {
  list-style: disc;
}
.type ol li {
  list-style: decimal;
}
.type code {
  background-color: #f5f5f5;
  border: 1px solid #0002;
  padding: 0.7em 1em;
}
.type .wp-block-preformatted {
  overflow: auto;
  padding: 1em;
  border: 1px solid #cbc9cf;
  border-radius: 3px;
  background: #f2f2f3;
  white-space: pre-wrap;
  font-family: 'Courier New', monospace;
}
.type .wp-block-verse {
  white-space: pre-wrap;
  overflow: visible;
  font-weight: 300;
  font-size: 2.2em;
  line-height: 1.2;
}
@media (max-width: 599.98px) {
  .type .wp-block-verse {
    font-size: 1.6em;
    line-height: 1.3;
  }
}
.type hr {
  box-sizing: content-box;
  height: 0;
  overflow: visible;
}
.type sup {
  position: relative;
  left: -4px;
  top: 1px;
  font-size: 50%;
}
.type .has-vivid-red-color {
  color: #d20000;
}
.type > :first-child {
  margin-top: 0 !important;
}
.type > :first-child figure {
  margin-top: 0 !important;
}
.type > :last-child {
  margin-bottom: 0 !important;
}
.type > :last-child figure {
  margin-bottom: 0 !important;
}
.wp-block-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 1em;
}
.type .wp-block-button__link,
aside .wp-block-button__link {
  font-size: 1em;
  padding: 0.7em 1.3em;
  line-height: 1.3;
  align-items: center;
  display: flex;
  text-align: center;
  gap: 0.4em;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  background-color: transparent;
  box-shadow: none;
  text-transform: none;
  transition: none;
  transition: all 0.2s ease-in-out;
  width: fit-content;
  text-decoration: none !important;
  border: none;
  font-size: 1em !important;
  background-color: var(--color1) !important;
  color: white !important;
  text-decoration: none;
}
.type .wp-block-button__link span,
aside .wp-block-button__link span {
  font-weight: 700;
}
@media (max-width: 599.98px) {
  .type .wp-block-button__link span,
  aside .wp-block-button__link span {
    display: none;
  }
}
.type .wp-block-button__link:hover,
aside .wp-block-button__link:hover {
  transition: all 0.2s ease-in-out;
  transform: scale(1.03);
  text-decoration: none !important;
}
.type .wp-block-button__link:hover,
aside .wp-block-button__link:hover,
.type .wp-block-button__link:focus,
aside .wp-block-button__link:focus {
  color: white !important;
  filter: var(--hover) !important;
}
.type .wp-block-button__link:active,
aside .wp-block-button__link:active {
  filter: var(--active) !important;
}
.accordion {
  list-style: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 1em;
  max-width: 600px;
}
.accordion__button {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1em;
  width: 100%;
  padding: 0.8em 1em;
  border: none;
  text-align: left;
  cursor: pointer;
  position: relative;
  font-weight: 500;
  transition: all 0.2s ease-in-out;
  background: white;
  border-radius: .5em;
  box-shadow: 0 0 0 1px #0002;

}
.accordion__item {
  border-radius: 0.5em;
}

.accordion__button:hover {
  color: white!important;
  background: var(--color2);
  transition: all 0.2s ease-in-out;
}
@media (max-width: 599.98px) {
  .accordion__button {
    font-size: 1.1em;
    line-height: 1.4;
  }
}
@media (min-width: 600px)  and (max-width: 767.98px) {
  .accordion__button {
    font-size: 1.2em;
    line-height: 1.5;
  }
}
.accordion__item.active .accordion__button {
  border-radius: 0.5em 0.5em 0 0;
  box-shadow: none;
}

@media (min-width: 768px) {
  .accordion__button {
    font-size: 1.3em;
    line-height: 1.4;
  }
}
.accordion__button .accordion__close {
  display: none;
}
.accordion__content {
  display: none;
  padding: 1.2em 1.5em;
  background-color: #fff;
  border-radius: 0 0.5em .5em;
}

.accordion__item.active .accordion__open {
  display: none;
}
.accordion__item.active .accordion__close {
  display: block;
}

.accordion__item.active {
  box-shadow: 0 0 0 1px #0002;

}
.download {
  display: flex;
  align-items: center;
  padding: 2em;
  box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.1), 0 3px 8px rgba(0, 0, 0, 0.2);
  border-width: 0 0 0 10px;
  border-style: solid;
}
@media (max-width: 599.98px) {
  .download {
    flex-direction: column;
    gap: 3em;
    font-size: 90%;
  }
}
@media (min-width: 600px) and (max-width: 991.98px) {
  .download {
    gap: 2em;
    font-size: 90%;
  }
}
@media (min-width: 992px) {
  .download {
    gap: 4em;
  }
}
.download.theme--light .download__subtitle {
  color: rgba(0, 0, 0, 0.8);
}
.download.theme--light .download__filename {
  color: rgba(0, 0, 0, 0.5);
}
.download.theme--dark .download__title {
  color: white;
}
.download.theme--dark .download__subtitle {
  color: rgba(255, 255, 255, 0.8);
}
.download.theme--dark .download__filename {
  color: rgba(255, 255, 255, 0.5);
}
.download__thumbnail {
  box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.1), 0 4px 6px rgba(0, 0, 0, 0.2);
}
.download__title {
  font-size: 1.4em;
  line-height: 1.3;
  font-weight: 600;
}
.download__subtitle {
  font-size: 1.1em;
  line-height: 1.4;
  margin: 0.5em 0 0;
}
.download__btn {
  margin-top: 1em;
}
.download__filename {
  font-size: 0.8em;
  line-height: 1.4;
  margin-top: 1em;
}
.testimonials__item {
  display: inline-block;
  background: white;
  margin-bottom: 1.5em;
  padding: 2em;
  box-shadow: 0 5px 8px #0002;
  border-radius: 0.5em!important;
}
.testimonials__quote-icon {
  display: inline-block;
  position: relative;
  left: -0.1em;
}
.testimonials__quote-icon iconify-icon {
  display: block;
}
.testimonials__quote {
  line-height: 1.4;
  margin: 0 0 1em;
  font-size: 1.2em;
  line-height: 1.5;
}
.testimonials__meta {
  display: flex;
  gap: 1.5em;
  align-items: center;
  flex-direction: column;
  margin-bottom: .5em;
}
.testimonials__info {
  line-height: 1.4;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.testimonials__photo {
  width: 135px;
  height: 135px;
  border-radius: 100%;
}
.testimonials__name {
  line-height: 1.3;
  display: block;
  font-weight: 800;
  margin: 0 0 0.2em;
  font-size: 1.25em;
  text-align: center;
}
.testimonials__title,
.testimonials__additional {
  font-size: 0.8em;
  line-height: 1.4;
  color: #0009;
}
@media (max-width: 599.98px) {
  .testimonials {
    padding-top: 2em;
    padding-bottom: 0;
  }
}
@media (min-width: 600px)  and (max-width: 767.98px) {
  .testimonials {
    padding-top: 3em;
    padding-bottom: 3em;
  }
}
@media (min-width: 768px) {
  .testimonials {
    padding-top: 5em;
    padding-bottom: 5em;
  }
}
.testimonials .container {
  position: relative;
  z-index: 4;
  gap: 1.5em;
  margin-left: auto;
  margin-right: auto;
}
.testimonials .container .section__title {
  color: var(--color1);
}
.testimonials .container .section__title span {
  position: relative;
  font-weight: 600;
  font-family: "Belanosima", sans-serif;
  display: inline-block;
}
.testimonials .container .section__title span::before {
  content: "";
  display: block;
  position: absolute;
  top: 55%;
  left: -6px;
  width: calc(105%);
  height: calc(40%);
  background: rgba(247, 155, 27, 0.5);
  z-index: -1;
}
.testimonials--list {
  column-count: 1;
}
@media (max-width: 599.98px) {
  .testimonials--grid2 {
    column-count: 1;
  }
}
@media (min-width: 600px) {
  .testimonials--grid2 {
    column-count: 2;
  }
}
@media (max-width: 599.98px) {
  .testimonials--grid3 {
    column-count: 1;
  }
}
@media (min-width: 600px) and (max-width: 991.98px) {
  .testimonials--grid3 {
    column-count: 2;
  }
}
@media (min-width: 992px) {
  .testimonials--grid3 {
    column-count: 3;
  }
.testimonials__heading {
  text-align: center;
}
@media (max-width: 767.98px) {
  .testimonials__heading {
    margin-bottom: 2em;
  }
}
@media (min-width: 768px) {
  .testimonials__heading {
    margin-bottom: 3em;
  }
}
.testimonials__value-prop {
  font-weight: 500;
  display: block;
  margin: 0 0 0.5em;
  font-size: 1.3em;
  line-height: 1.4;
}
.team {
  display: grid;
  gap: 3em;
}
@media (max-width: 599.98px) {
  .team {
    grid-template-columns: repeat(1, 1fr);
  }
}
@media (min-width: 600px)  and (max-width: 767.98px) {
  .team {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 767.98px) {
  .team {
    margin: 3em 0;
  }
}
@media (min-width: 768px) {
  .team {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (min-width: 1200px) {
  .team {
    margin: 5em -10em 8em;
  }
}
.team__item {
  display: flex;
  flex-direction: column;
}
.team__img {
  margin-bottom: 0.5em;
}
.team__img img {
  width: 100%;
  height: auto;
}
.team__name {
  font-size: 1.2em;
  font-weight: 700;
}
.team__title {
  color: #0009;
}
}