@import url("https://fonts.googleapis.com/css2?family=Inter:wght@100;200;300;400;500;600;700;800;900&display=swap");
*,
::after,
::before {
  box-sizing: border-box;
}

html,
body {
  overflow-x: hidden;
  margin: 0;
  padding: 0;
}

a,
button {
  cursor: pointer;
}

a {
  text-decoration: none;
}

button {
  border: none;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: transparent;
}

input {
  border: none;
  outline: none;
}

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

textarea {
  border: none;
  outline: none;
}

.flex {
  display: flex;
}

.flex-wrap {
  flex-wrap: wrap;
}

.items-start {
  align-items: flex-start;
}

.items-center {
  align-items: center;
}

.items-end {
  align-items: flex-end;
}

.justify-start {
  justify-content: flex-start;
}

.justify-center {
  justify-content: center;
}

.justify-end {
  justify-content: flex-end;
}

.justify-between {
  justify-content: space-between;
}

.container {
  max-width: 1140px;
  margin-right: auto;
  margin-left: auto;
}

@media (max-width: 1199.98px) {
  .container {
    max-width: 688px;
  }
}
@media (max-width: 767.98px) {
  .container {
    max-width: 516px;
  }
}
@media (max-width: 575.98px) {
  .container {
    max-width: 280px;
  }
}
.relative {
  position: relative;
}

.navbar-wrapper {
  height: 88px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  font-family: aileron, sans-serif;
}

.navbar-left {
  display: flex;
  align-items: center;
  column-gap: 114px;
}

.navbar-brand img:hover {
  opacity: 0.8;
}

.navbar-ul {
  display: flex;
  align-items: center;
  column-gap: 36px;
}

.navbar-li {
  font-size: 14px;
  letter-spacing: 0.1px;
  color: #3b3a40;
}
.navbar-li:hover {
  text-decoration: underline;
}

.navbar-right {
  display: flex;
  align-items: center;
  column-gap: 46px;
}

.navbar-button:first-child {
  font-size: 14px;
  letter-spacing: 0.1px;
  color: #3b3a40;
}
.navbar-button:first-child:hover {
  text-decoration: underline;
}
.navbar-button:last-child {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 116px;
  height: 38px;
  border-radius: 4px;
  border: solid 1px #d1d0d6;
  background-color: #fff;
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 0.2px;
  color: #000;
}
.navbar-button:last-child:hover {
  border-color: #000;
}

.navbar-toggle {
  cursor: pointer;
  display: none;
}

.navbar-collapse {
  position: absolute;
  top: 88px;
  left: 50%;
  transform: translateX(-50%);
  display: none !important;
  flex-direction: column;
  width: 668px;
  background-color: #fff;
  border-radius: 16px;
  padding: 24px;
  box-shadow: 0 5px 15px 0 rgba(0, 0, 0, 0.05), inset 0 -1px 1px 0 rgba(0, 0, 0, 0.1);
  font-family: aileron, sans-serif;
}
.navbar-collapse a {
  padding: 10px 0;
  color: #000;
}
.navbar-collapse a:hover {
  text-decoration: underline;
}
.navbar-collapse a:nth-child(5),
.navbar-collapse a:nth-child(6) {
  display: none;
}

@media (max-width: 1199.98px) {
  .show {
    display: flex !important;
  }

  .navbar-left {
    column-gap: 16px;
  }

  .navbar-toggle {
    display: block;
  }

  .navbar-ul {
    display: none;
  }

  .navbar-right {
    column-gap: 40px;
  }

  .navbar-button:last-child {
    font-size: 14px;
    letter-spacing: 0.18px;
  }

  .navbar-collapse {
    width: 688px;
  }
}
@media (max-width: 767.98px) {
  .navbar-collapse {
    width: 516px;
  }
}
@media (max-width: 575.98px) {
  .navbar-container {
    max-width: 280px;
  }

  .navbar-wrapper {
    height: 72px;
  }

  .navbar-left {
    width: 100%;
    flex-direction: row-reverse;
    justify-content: space-between;
  }

  .navbar-brand img {
    width: 73px;
  }

  .navbar-right {
    display: none;
  }

  .navbar-collapse {
    top: 72px;
    width: 280px;
  }
  .navbar-collapse a:nth-child(5),
.navbar-collapse a:nth-child(6) {
    display: block;
  }
}
.trust {
  background-image: url(../images/trust-bg.svg);
  background-position: center;
  background-repeat: no-repeat;
  padding: 100px 0;
  font-family: aileron, sans-serif;
  text-align: center;
}

.trust-title {
  width: 546px;
  font-size: 36px;
  line-height: 1.28;
  letter-spacing: 0.6px;
  color: #000;
  margin: auto;
}

.trust-desc {
  font-size: 20px;
  line-height: 1.5;
  letter-spacing: 0.3px;
  color: #64626a;
  margin-top: 16px;
  margin-bottom: 94px;
}

.trust-cards {
  display: flex;
  justify-content: center;
  column-gap: 30px;
}

.trust-card {
  width: 458px;
  background-color: #fff;
  border-radius: 12px;
  border: solid 1px #d1d0d6;
  padding-bottom: 64px;
}

.trust-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 92px;
  height: 92px;
  box-shadow: 0 10px 30px 0 rgba(0, 0, 0, 0.08);
  background-color: #fff;
  border-radius: 50%;
  margin: auto;
  margin-top: -46px;
}

.trust-b {
  font-size: 24px;
  font-weight: bold;
  letter-spacing: 0.4px;
  color: #000;
  margin-top: 32px;
  margin-bottom: 16px;
}

.trust-p {
  width: 282px;
  font-size: 16px;
  line-height: 1.63;
  letter-spacing: 0.2px;
  color: #64626a;
  margin: auto;
}

@media (max-width: 1199.98px) {
  .trust {
    background-image: url(../images/trust-tablet-bg.svg);
    padding-top: 56px;
    padding-bottom: 108px;
  }

  .trust-title {
    width: 442px;
    font-size: 28px;
    letter-spacing: 0.47px;
  }

  .trust-desc {
    font-size: 14px;
    line-height: 1.71;
    letter-spacing: 0.21px;
    margin-bottom: 68px;
  }

  .trust-cards {
    column-gap: 20px;
  }

  .trust-card {
    width: 334px;
    padding-bottom: 40px;
  }

  .trust-icon {
    width: 56px;
    height: 56px;
    margin-top: -28px;
  }
  .trust-icon img {
    width: 32px;
  }

  .trust-b {
    font-size: 20px;
    letter-spacing: 0.33px;
  }

  .trust-p {
    font-size: 14px;
    line-height: 1.71;
    letter-spacing: 0.18px;
  }
}
@media (max-width: 767.98px) {
  .trust {
    background-position: bottom center;
  }

  .trust-cards {
    flex-direction: column;
    align-items: center;
    row-gap: 52px;
  }
}
@media (max-width: 575.98px) {
  .trust {
    background-image: url(../images/trust-mobile-bg.svg);
    padding-top: 40px;
    padding-bottom: 46px;
  }

  .trust-title {
    width: 280px;
    font-size: 24px;
    letter-spacing: 0.4px;
  }

  .trust-desc {
    width: 273px;
    margin: auto;
    margin-top: 16px;
    margin-bottom: 52px;
  }
  .trust-desc br {
    display: none;
  }

  .trust-card {
    width: 280px;
    padding-bottom: 16px;
  }

  .trust-b {
    margin-top: 16px;
  }

  .trust-p {
    width: 247px;
  }
}
.cta {
  padding: 100px 0;
  font-family: aileron, sans-serif;
}

.cta-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background-image: url(../images/cta-pattern.svg);
  background-position: right;
  background-repeat: no-repeat;
  background-blend-mode: multiply;
  background-color: #26875c;
  border-radius: 12px;
  padding: 72px 97px;
}

.cta-title {
  width: 491px;
  font-size: 36px;
  font-weight: bold;
  letter-spacing: 0.6px;
  color: #fff;
}

.cta-button {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 180px;
  height: 60px;
  border-radius: 4px;
  box-shadow: 0 30px 80px 0 rgba(0, 0, 0, 0.1);
  background-color: #fff;
  font-size: 16px;
  font-weight: bold;
  letter-spacing: 0.2px;
  color: #000;
}
.cta-button:hover {
  opacity: 0.8;
}

@media (max-width: 1199.98px) {
  .cta {
    padding: 56px 0;
  }

  .cta-wrapper {
    background-image: url(../images/cta-tablet-pattern.svg);
    padding: 56px 24px;
  }

  .cta-title {
    width: 320px;
    font-size: 28px;
    letter-spacing: 0.47px;
  }

  .cta-button {
    height: 52px;
    font-size: 14px;
    letter-spacing: 0.18px;
  }
}
@media (max-width: 767.98px) {
  .cta-wrapper {
    flex-direction: column;
    row-gap: 40px;
    text-align: center;
    background-position: bottom center;
  }
}
@media (max-width: 575.98px) {
  .cta {
    padding: 40px 0;
  }

  .cta-wrapper {
    background-image: url(../images/cta-mobile-pattern.svg);
    padding: 40px 16px;
  }

  .cta-title {
    width: auto;
    font-size: 24px;
    letter-spacing: 0.4px;
  }
}
.cta2 {
  padding: 100px 0;
  font-family: aileron, sans-serif;
}

.cta2-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 72px 97px;
  border-radius: 12px;
  box-shadow: 0 30px 80px 0 rgba(0, 0, 0, 0.08);
  background-image: url(../images/cta2-pattern.svg);
}

.cta2-title {
  font-size: 36px;
  font-weight: bold;
  letter-spacing: 0.6px;
  color: #000;
}

.cta2-button {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 180px;
  height: 60px;
  padding: 20px 33px 20px 34px;
  border-radius: 4px;
  background-color: #26875c;
  font-size: 16px;
  font-weight: bold;
  letter-spacing: 0.2px;
  color: #fff;
}
.cta2-button:hover {
  opacity: 0.8;
}

@media (max-width: 1199.98px) {
  .cta2 {
    padding: 56px 0;
  }

  .cta2-wrapper {
    background-image: url(../images/cta2-tablet-pattern.svg);
    padding: 56px;
    padding-left: 37px;
    padding-right: 26px;
  }

  .cta2-title {
    font-size: 28px;
    letter-spacing: 0.47px;
  }

  .cta2-button {
    height: 52px;
    font-size: 14px;
    letter-spacing: 0.18px;
  }
}
@media (max-width: 575.98px) {
  .cta2 {
    padding: 40px 0;
  }

  .cta2-wrapper {
    background-image: url(../images/cta2-mobile-pattern.svg);
    flex-direction: column;
    row-gap: 65px;
    text-align: center;
    padding: 0;
    padding-top: 40px;
    padding-bottom: 44px;
  }

  .cta2-title {
    font-size: 24px;
    letter-spacing: 0.4px;
  }
}
footer {
  font-family: "Inter", sans-serif;
  padding-top: 100px;
  padding-bottom: 94px;
}

.footer-wrapper {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  padding-right: 79px;
}

.footer-left {
  display: flex;
  flex-direction: column;
}

.footer-socials {
  display: flex;
  flex-direction: column;
}
.footer-socials a {
  font-size: 14px;
  line-height: 2.43;
  color: #64626a;
}
.footer-socials a:hover {
  text-decoration: underline;
}

.footer-socials--desktop {
  margin-top: 24px;
  margin-bottom: 64px;
}

.footer-socials--mobile {
  display: none;
}

.footer-p {
  font-size: 14px;
  color: #64626a;
}

.footer-right {
  display: flex;
}

.footer-uls {
  display: flex;
  align-items: flex-start;
}

.footer-ul {
  display: flex;
  flex-direction: column;
}

.footer-ul--second {
  margin-right: 72px;
  margin-left: 130px;
}

.footer-header {
  font-size: 14px;
  font-weight: bold;
  color: #000;
  margin-bottom: 19px;
}

.footer-li {
  font-size: 14px;
  line-height: 2.43;
  color: #64626a;
}
.footer-li:hover {
  text-decoration: underline;
}

@media (max-width: 1199.98px) {
  footer {
    padding-top: 52px;
    padding-bottom: 56px;
  }

  .footer-wrapper {
    padding-right: 0;
  }

  .footer-brand img {
    width: 81px;
  }

  .footer-socials--desktop {
    margin-top: 30px;
    margin-bottom: 40px;
  }

  .footer-right {
    margin-top: 4px;
  }

  .footer-ul--second {
    margin-left: 110px;
  }
}
@media (max-width: 767.98px) {
  .footer-right {
    column-gap: 40px;
  }

  .footer-uls {
    column-gap: 40px;
  }

  .footer-ul--second {
    margin: 0;
  }
}
@media (max-width: 575.98px) {
  footer {
    padding-top: 40px;
    padding-bottom: 24px;
  }

  .footer-container {
    max-width: 320px;
  }

  .footer-wrapper {
    flex-direction: column-reverse;
  }

  .footer-left {
    width: 100%;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    border-top: 1px solid #e8e7e8;
    margin-top: 24px;
    padding: 20px;
    padding-top: 24px;
    padding-bottom: 0;
  }

  .footer-brand img {
    width: 49px;
  }

  .footer-p {
    font-size: 12px;
  }

  .footer-right {
    column-gap: 50px;
    padding: 0 20px;
  }

  .footer-uls {
    flex-direction: column;
  }

  .footer-uls:nth-child(1) {
    row-gap: 68px;
  }

  .footer-uls:nth-child(2) {
    row-gap: 51px;
  }

  .footer-socials--desktop {
    display: none;
  }

  .footer-socials--mobile {
    display: flex;
  }

  .footer-socials a {
    font-size: 12px;
    line-height: 1.83;
  }

  .footer-header {
    margin-bottom: 10px;
  }

  .footer-li {
    font-size: 12px;
    line-height: 1.83;
  }
}
header.header-about {
  background-image: url(../images/about-hero-image.svg);
  background-position: center;
  background-repeat: no-repeat;
}
header.header-about .hero {
  padding: 100px 0;
  font-family: aileron, sans-serif;
  text-align: center;
}
header.header-about .hero-title {
  font-size: 60px;
  letter-spacing: 1px;
  color: #000;
  margin-bottom: 24px;
}
header.header-about .hero-desc {
  font-size: 20px;
  line-height: 1.5;
  letter-spacing: 0.3px;
  color: #64626a;
}

@media (max-width: 1199.98px) {
  header.header-about {
    background-image: url(../images/about-hero-image-tablet.svg);
  }
  header.header-about .hero {
    padding: 56px 0;
  }
  header.header-about .hero-title {
    font-size: 36px;
    letter-spacing: 0.6px;
    margin-bottom: 32px;
  }
  header.header-about .hero-desc {
    font-size: 16px;
    line-height: 1.63;
    letter-spacing: 0.24px;
  }
}
@media (max-width: 575.98px) {
  header.header-about {
    background-image: url(../images/about-hero-image-mobile.svg);
  }
  header.header-about .hero {
    padding-bottom: 40px;
  }
  header.header-about .hero-title {
    font-size: 32px;
    letter-spacing: 0.53px;
    margin-bottom: 24px;
  }
  header.header-about .hero-title br {
    display: none;
  }
  header.header-about .hero-desc {
    font-size: 14px;
    line-height: 1.71;
    letter-spacing: 0.21px;
    padding: 0 4px;
  }
  header.header-about .hero-desc > br {
    display: block !important;
  }
  header.header-about .hero-desc br {
    display: none;
  }
}
header.header-careers {
  background-color: #f8f8f8;
  background-image: url(../images/careers-header-bg.svg);
  background-position: center;
  background-repeat: no-repeat;
  background-blend-mode: darken;
}
header.header-careers .hero {
  font-family: aileron, sans-serif;
  padding-top: 100px;
  padding-bottom: 196px;
}
header.header-careers .hero-title {
  font-size: 60px;
  letter-spacing: 1px;
  color: #000;
  text-align: center;
  margin-bottom: 48px;
}
header.header-careers .hero-form {
  display: flex;
  align-items: center;
  justify-content: center;
  column-gap: 8px;
}
header.header-careers .hero-inputs {
  display: flex;
  align-items: center;
  column-gap: 30px;
}
header.header-careers .hero-input {
  display: flex;
  align-items: center;
  column-gap: 16px;
  font-size: 20px;
  letter-spacing: 0.3px;
  color: #64626a;
}
header.header-careers .hero-dropdown {
  position: relative;
  width: 263px;
  font-size: 14px;
  letter-spacing: 0.18px;
  color: #8e8c95;
  outline: none;
  cursor: pointer;
}
header.header-careers .hero-select {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 48px;
  border-radius: 4px;
  border: solid 1px #d1d0d6;
  background-color: #fff;
  padding-right: 12px;
  padding-left: 16px;
}
header.header-careers .hero-dropdown-menu {
  position: absolute;
  display: none;
  width: 100%;
  background-color: #fff;
  border-radius: 4px;
  border: solid 1px #d1d0d6;
  border-top: none;
  border-top-left-radius: 0;
  border-top-right-radius: 0;
  padding-right: 12px;
  padding-bottom: 8px;
  padding-left: 16px;
}
header.header-careers .hero-dropdown-menu li {
  display: flex;
  align-items: center;
  height: 36px;
}
header.header-careers .hero-button {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 4px;
  background-color: #26875c;
}
header.header-careers .hero-button:hover {
  opacity: 0.8;
}
header.header-careers .hero-button div {
  display: none;
}

@media (max-width: 1199.98px) {
  header.header-careers {
    background-image: url(../images/careers-header-bg-tablet.svg);
  }
  header.header-careers .hero {
    padding-top: 56px;
    padding-bottom: 151px;
  }
  header.header-careers .hero-title {
    font-size: 36px;
    letter-spacing: 0.6px;
    margin-bottom: 32px;
  }
  header.header-careers .hero-form {
    column-gap: 16px;
  }
  header.header-careers .hero-input {
    font-size: 14px;
    letter-spacing: 0.21px;
    column-gap: 14px;
  }
  header.header-careers .hero-dropdown {
    width: 178px;
  }
  header.header-careers .hero-select,
header.header-careers .hero-dropdown-menu {
    padding-left: 12px;
  }
  header.header-careers .hero-button img {
    width: 20px;
  }
}
@media (max-width: 767.98px) {
  header.header-careers .hero-inputs {
    display: none;
  }
  header.header-careers .hero-button {
    justify-content: space-between;
    width: 170px;
    padding: 0 24px;
  }
  header.header-careers .hero-button div {
    display: block;
    font-size: 14px;
    letter-spacing: 0.18px;
    color: #fff;
  }
}
@media (max-width: 575.98px) {
  header.header-careers {
    background-image: url(../images/careers-header-bg-mobile.svg);
  }
  header.header-careers .hero {
    padding-top: 63px;
    padding-bottom: 128px;
  }
  header.header-careers .hero-title {
    font-size: 32px;
    letter-spacing: 0.53px;
    margin-bottom: 24px;
    padding: 0 44px;
  }
  header.header-careers .hero-button {
    padding-right: 14px;
  }
}
header.header-contact {
  background-color: #f8f8f8;
  background-image: url(../images/contact-hero-image.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-blend-mode: darken;
}
header.header-contact .hero {
  padding: 100px 0;
  font-family: aileron, sans-serif;
}
header.header-contact .hero-wrapper {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}
header.header-contact .hero-title {
  font-size: 60px;
  letter-spacing: 1px;
  color: #000;
  margin-top: 64px;
}
header.header-contact .hero-desc {
  width: 460px;
  font-size: 20px;
  line-height: 1.5;
  letter-spacing: 0.3px;
  color: #64626a;
  margin-top: 24px;
  margin-bottom: 48px;
}
header.header-contact .hero-links {
  display: flex;
  flex-direction: column;
  row-gap: 4px;
}
header.header-contact .hero-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 458px;
  height: 64px;
  padding: 0 24px;
  border-radius: 12px;
  background-color: #fff;
}
header.header-contact .hero-link:nth-child(1) {
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
}
header.header-contact .hero-link:nth-child(2) {
  border-top-left-radius: 0;
  border-top-right-radius: 0;
}
header.header-contact .hero-link div:nth-child(1) {
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 0.2px;
  color: #3b3a40;
}
header.header-contact .hero-link div:nth-child(2) {
  font-size: 20px;
  font-weight: bold;
  line-height: 1.5;
  letter-spacing: 0.3px;
  color: #26875c;
}
header.header-contact .hero-card {
  width: 555px;
  padding: 32px;
  border-radius: 12px;
  box-shadow: 0 30px 80px 0 rgba(0, 0, 0, 0.08);
  background-color: #fff;
}
header.header-contact .hero-b {
  font-size: 24px;
  font-weight: bold;
  line-height: 1.42;
  letter-spacing: 0.4px;
  color: #000;
  margin-bottom: 8px;
}
header.header-contact .hero-p {
  font-size: 16px;
  line-height: 1.63;
  letter-spacing: 0.2px;
  color: #64626a;
}
header.header-contact .hero-form {
  display: flex;
  flex-direction: column;
  row-gap: 24px;
  margin-top: 32px;
  margin-bottom: 24px;
}
header.header-contact .hero-form label {
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 0.2px;
  color: #000;
}
header.header-contact .hero-form label span {
  color: #ff6846;
}
header.header-contact .hero-form input {
  display: flex;
  align-items: center;
  width: 233px;
  height: 48px;
  padding: 0 18px;
  border-radius: 4px;
  border: solid 1px #d1d0d6;
}
header.header-contact .hero-form input::placeholder {
  font-size: 14px;
  letter-spacing: 0.18px;
  color: #8e8c95;
}
header.header-contact .hero-form textarea {
  font-family: aileron, sans-serif;
  height: 144px;
  padding: 16px 18px;
  border-radius: 4px;
  border: solid 1px #d1d0d6;
}
header.header-contact .hero-form textarea::placeholder {
  font-size: 14px;
  letter-spacing: 0.18px;
  color: #8e8c95;
}
header.header-contact .hero-inputs {
  display: flex;
  column-gap: 24px;
}
header.header-contact .hero-input {
  display: flex;
  flex-direction: column;
  row-gap: 8px;
}
header.header-contact .hero-dropdown {
  position: relative;
  outline: none;
  font-size: 14px;
  letter-spacing: 0.18px;
  color: #8e8c95;
  cursor: pointer;
}
header.header-contact .hero-select {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 48px;
  border: solid 1px #d1d0d6;
  border-radius: 4px;
  padding-right: 12px;
  padding-left: 18px;
}
header.header-contact .hero-dropdown-menu {
  position: absolute;
  display: none;
  width: 100%;
  padding: 0 18px;
  background-color: #fff;
  border-radius: 4px;
  border: solid 1px #d1d0d6;
  border-top: none;
  border-top-left-radius: 0;
  border-top-right-radius: 0;
  padding-bottom: 8px;
}
header.header-contact .hero-dropdown-menu li {
  display: flex;
  align-items: center;
  width: 100%;
  height: 40px;
}
header.header-contact .hero-button {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 60px;
  border-radius: 4px;
  background-color: #26875c;
  font-size: 16px;
  font-weight: bold;
  letter-spacing: 0.2px;
  color: #fff;
}
header.header-contact .hero-button:hover {
  opacity: 0.8;
}

@media (max-width: 1199.98px) {
  header.header-contact {
    background-image: url(../images/contact-hero-image-tablet.svg);
  }
  header.header-contact .hero {
    padding: 56px 0;
  }
  header.header-contact .hero-title {
    font-size: 36px;
    letter-spacing: 0.6px;
    margin-top: 56px;
  }
  header.header-contact .hero-desc {
    width: 301px;
    font-size: 14px;
    line-height: 1.71;
    letter-spacing: 0.21px;
    margin-top: 16px;
    margin-bottom: 24px;
  }
  header.header-contact .hero-links {
    row-gap: 8px;
  }
  header.header-contact .hero-link {
    width: 301px;
    height: 52px;
    padding-right: 16px;
    padding-left: 12px;
  }
  header.header-contact .hero-link div:nth-child(1) {
    font-size: 14px;
    letter-spacing: 0.18px;
  }
  header.header-contact .hero-link div:nth-child(2) {
    font-size: 16px;
    line-height: 1.88;
    letter-spacing: 0.24px;
  }
  header.header-contact .hero-card {
    width: 347px;
    padding: 16px;
    padding-bottom: 24px;
  }
  header.header-contact .hero-b {
    font-size: 24px;
    line-height: 1.42;
    letter-spacing: 0.4px;
  }
  header.header-contact .hero-p {
    font-size: 14px;
    line-height: 1.71;
    letter-spacing: 0.18px;
  }
  header.header-contact .hero-form {
    row-gap: 16px;
    margin-top: 20px;
  }
  header.header-contact .hero-form label {
    font-size: 14px;
    letter-spacing: 0.18px;
  }
  header.header-contact .hero-form input {
    width: 150px;
    padding: 0 12px;
  }
  header.header-contact .hero-form textarea {
    height: 89px;
    padding: 14px 12px;
  }
  header.header-contact .hero-inputs {
    column-gap: 15px;
  }
  header.header-contact .hero-select {
    padding-right: 14px;
    padding-left: 12px;
  }
  header.header-contact .hero-button {
    height: 52px;
    font-size: 14px;
    letter-spacing: 0.18px;
  }
}
@media (max-width: 767.98px) {
  header.header-contact .hero-wrapper {
    flex-direction: column;
    align-items: center;
    row-gap: 40px;
  }
  header.header-contact .hero-title {
    margin-top: 0;
  }
}
@media (max-width: 575.98px) {
  header.header-contact {
    background-image: url(../images/contact-hero-image-mobile.svg);
  }
  header.header-contact .hero {
    padding-top: 63px;
  }
  header.header-contact .hero-wrapper {
    row-gap: 24px;
  }
  header.header-contact .hero-title {
    font-size: 32px;
    letter-spacing: 0.53px;
    text-align: center;
  }
  header.header-contact .hero-desc {
    width: 280px;
    text-align: center;
    margin: auto;
    margin-top: 17px;
    margin-bottom: 24px;
  }
  header.header-contact .hero-links {
    align-items: center;
  }
  header.header-contact .hero-link {
    width: 280px;
    height: 48px;
    padding: 0 14px;
  }
  header.header-contact .hero-link div:nth-child(1) {
    font-size: 12px;
    letter-spacing: 0.15px;
  }
  header.header-contact .hero-link div:nth-child(2) {
    font-size: 14px;
    line-height: 2.14;
    letter-spacing: 0.21px;
  }
  header.header-contact .hero-card {
    width: 280px;
    padding-bottom: 16px;
  }
  header.header-contact .hero-b {
    font-size: 18px;
    line-height: 1.89;
    letter-spacing: 0.3px;
    margin-bottom: 9px;
  }
  header.header-contact .hero-p {
    font-size: 12px;
    line-height: 1.83;
    letter-spacing: 0.15px;
  }
  header.header-contact .hero-form {
    margin-top: 25px;
    margin-bottom: 16px;
  }
  header.header-contact .hero-form label {
    font-size: 12px;
    letter-spacing: 0.15px;
  }
  header.header-contact .hero-form input {
    width: auto;
    height: 39px;
  }
  header.header-contact .hero-form input::placeholder {
    font-size: 12px;
    letter-spacing: 0.15px;
  }
  header.header-contact .hero-form textarea {
    padding: 12px;
  }
  header.header-contact .hero-form textarea::placeholder {
    font-size: 12px;
    letter-spacing: 0.15px;
  }
  header.header-contact .hero-inputs {
    flex-direction: column;
    row-gap: 16px;
  }
  header.header-contact .hero-dropdown {
    font-size: 12px;
    letter-spacing: 0.15px;
  }
  header.header-contact .hero-select {
    height: 39px;
    padding-right: 10px;
  }
  header.header-contact .hero-select img {
    width: 20px;
  }
  header.header-contact .hero-button {
    height: 39px;
  }
}
header.header-faq {
  background-color: #f8f8f8;
  background-image: url(../images/faq-header-bg.svg);
  background-position: center;
  background-repeat: no-repeat;
  background-blend-mode: darken;
}
header.header-faq .hero {
  padding: 100px 0;
  font-family: aileron, sans-serif;
}
header.header-faq .hero-title {
  font-size: 60px;
  letter-spacing: 1px;
  text-align: center;
  color: #000;
  margin-bottom: 48px;
}
header.header-faq .hero-form {
  display: flex;
  align-items: center;
  column-gap: 8px;
  width: 750px;
  height: 64px;
  border-radius: 4px;
  box-shadow: 0 30px 80px 0 rgba(0, 0, 0, 0.08);
  background-color: #fff;
  padding: 0 16px;
  margin: auto;
}
header.header-faq .hero-form input {
  flex-grow: 1;
}
header.header-faq .hero-form input::placeholder {
  font-size: 16px;
  letter-spacing: 0.2px;
  color: #8e8c95;
}

@media (max-width: 1199.98px) {
  header.header-faq {
    background-image: url(../images/faq-header-bg-tablet.svg);
  }
  header.header-faq .hero {
    padding-top: 56px;
    padding-bottom: 104px;
  }
  header.header-faq .hero-title {
    font-size: 36px;
    letter-spacing: 0.6px;
    margin-bottom: 32px;
  }
  header.header-faq .hero-form {
    width: 553px;
    height: 52px;
    column-gap: 12px;
  }
  header.header-faq .hero-form button img {
    width: 24px;
  }
  header.header-faq .hero-form input::placeholder {
    font-size: 14px;
    letter-spacing: 0.18px;
  }
}
@media (max-width: 767.98px) {
  header.header-faq .hero-form {
    width: 516px;
  }
}
@media (max-width: 575.98px) {
  header.header-faq {
    background-image: url(../images/faq-header-bg-mobile.svg);
  }
  header.header-faq .hero {
    padding-bottom: 56px;
  }
  header.header-faq .hero-title {
    font-size: 32px;
    letter-spacing: 0.53px;
    margin-bottom: 40px;
  }
  header.header-faq .hero-title br {
    display: none;
  }
  header.header-faq .hero-form {
    width: 280px;
  }
}
header.header-home .hero {
  font-family: aileron, sans-serif;
  padding-top: 94px;
  padding-bottom: 107px;
}
header.header-home .hero-container {
  max-width: 1440px;
  padding-left: 150px;
}
header.header-home .hero-wrapper {
  display: flex;
  justify-content: space-between;
}
header.header-home .hero-title {
  font-size: 60px;
  letter-spacing: 1px;
  color: #000;
}
header.header-home .hero-desc {
  font-size: 20px;
  line-height: 1.5;
  letter-spacing: 0.3px;
  color: #64626a;
  margin-top: 24px;
  margin-bottom: 64px;
}
header.header-home .hero-form {
  display: flex;
  align-items: center;
  height: 60px;
  border-radius: 4px;
}
header.header-home .hero-form input {
  width: 348px;
  height: 100%;
  border: solid 2px #d1d0d6;
  border-right: none;
  padding: 0 20px;
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 0.2px;
}
header.header-home .hero-form input::placeholder {
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 0.2px;
}
header.header-home .hero-form button {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 140px;
  height: 100%;
  border-radius: 4px;
  background-color: #26875c;
  font-size: 16px;
  font-weight: bold;
  letter-spacing: 0.2px;
  color: #fff;
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
}
header.header-home .hero-form button:hover {
  opacity: 0.8;
}
header.header-home .hero-p {
  font-size: 12px;
  color: #64626a;
  margin-top: 12px;
}
header.header-home .hero-image {
  width: 608px;
  height: 519px;
  object-fit: cover;
  object-position: left;
}

@media (max-width: 1199.98px) {
  header.header-home .hero {
    padding: 56px 0;
  }
  header.header-home .hero-container {
    max-width: 768px;
    padding-left: 40px;
  }
  header.header-home .hero-title {
    font-size: 36px;
    letter-spacing: 0.6px;
  }
  header.header-home .hero-desc {
    font-size: 14px;
    line-height: 1.71;
    letter-spacing: 0.21px;
    margin-top: 16px;
    margin-bottom: 24px;
  }
  header.header-home .hero-form {
    height: 52px;
  }
  header.header-home .hero-form input {
    width: 204px;
    padding: 0 16px;
    font-size: 14px;
    letter-spacing: 0.18px;
  }
  header.header-home .hero-form input::placeholder {
    font-size: 14px;
    letter-spacing: 0.18px;
  }
  header.header-home .hero-form button {
    font-size: 14px;
    letter-spacing: 0.18px;
  }
  header.header-home .hero-p {
    margin-top: 14px;
  }
  header.header-home .hero-image {
    width: 354px;
    height: auto;
    margin-top: 4px;
  }
}
@media (max-width: 767.98px) {
  header.header-home .hero-container {
    max-width: 576px;
  }
  header.header-home .hero-wrapper {
    flex-direction: column;
    align-items: center;
    row-gap: 40px;
    text-align: center;
  }
  header.header-home .hero-wrapper > div:first-child {
    padding-right: 40px;
  }
}
@media (max-width: 575.98px) {
  header.header-home .hero-container {
    max-width: 320px;
    padding-left: 20px;
  }
  header.header-home .hero-wrapper > div:first-child {
    padding-right: 20px;
  }
  header.header-home .hero-title {
    font-size: 32px;
    letter-spacing: 0.53px;
  }
  header.header-home .hero-desc {
    width: 280px;
    margin: auto;
    margin-top: 16px;
    margin-bottom: 24px;
  }
  header.header-home .hero-desc br {
    display: none;
  }
  header.header-home .hero-form {
    height: 44px;
    justify-content: center;
  }
  header.header-home .hero-form input {
    display: none;
  }
  header.header-home .hero-image {
    width: 300px;
  }
}
header.header-pricing {
  background-color: #f8f8f8;
  background-image: url(../images/bg-pricing.png);
  background-position: center;
  background-repeat: no-repeat;
}
header.header-pricing .hero {
  font-family: aileron, sans-serif;
  text-align: center;
  padding: 100px 0;
}
header.header-pricing .hero-title {
  font-size: 60px;
  letter-spacing: 1px;
  color: #000;
}
header.header-pricing .hero-desc {
  font-size: 20px;
  line-height: 1.5;
  letter-spacing: 0.3px;
  color: #64626a;
  margin-top: 24px;
  margin-bottom: 48px;
}
header.header-pricing .hero-selector {
  display: flex;
  justify-content: center;
  column-gap: 16px;
  font-size: 18px;
  font-weight: bold;
  line-height: 1.67;
  color: #3b3a40;
}
header.header-pricing .hero-selector > div:last-child {
  margin-top: 17px;
}
header.header-pricing .hero-span {
  font-size: 14px;
  font-weight: 600;
  font-style: italic;
  color: #26875c;
}
header.header-pricing .hero-radio {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  width: 88px;
  height: 48px;
  padding: 0 4px;
  background-color: #26875c;
  border-radius: 28.5px;
  margin-top: 8px;
  cursor: pointer;
}
header.header-pricing .hero-radio div {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: #fff;
}
header.header-pricing .hero-radio.inactive {
  background-color: #ddd;
  justify-content: flex-end;
}
header.header-pricing .hero-cards {
  display: flex;
  column-gap: 30px;
  margin-top: 92px;
  margin-bottom: 100px;
}
header.header-pricing .hero-card {
  width: 360px;
  border-radius: 12px;
  border: solid 1px #d1d0d6;
  background-color: #fff;
  text-align: left;
  padding: 24px;
  padding-bottom: 32px;
}
header.header-pricing .hero-card:hover {
  border-color: #fff;
  box-shadow: 0 30px 80px 0 rgba(0, 0, 0, 0.08);
}
header.header-pricing .hero-texts {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  padding-bottom: 20px;
  border-bottom: dashed 1px #d1d0d6;
}
header.header-pricing .hero-plan {
  font-size: 24px;
  font-weight: bold;
  letter-spacing: 0.4px;
  color: #000;
  margin-bottom: 8px;
}
header.header-pricing .hero-quota {
  font-size: 14px;
  color: #64626a;
}
header.header-pricing .hero-price {
  font-size: 36px;
  font-weight: 600;
  letter-spacing: 0.6px;
  color: #3b3a40;
}
header.header-pricing .hero-ul {
  height: 168px;
  display: flex;
  flex-direction: column;
  row-gap: 12px;
  margin-top: 27px;
  margin-bottom: 40px;
}
header.header-pricing .hero-li {
  display: flex;
  align-items: center;
  column-gap: 12px;
  font-size: 14px;
  color: #64626a;
}
header.header-pricing .hero-buttons {
  display: flex;
  flex-direction: column;
  row-gap: 24px;
}
header.header-pricing .hero-button:nth-child(1) {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 48px;
  border-radius: 4px;
  font-size: 16px;
  font-weight: bold;
  letter-spacing: 0.2px;
  border: 1px solid #26875c;
  color: #26875c;
}
header.header-pricing .hero-button:nth-child(1):hover {
  background-color: #26875c;
  color: #fff;
}
header.header-pricing .hero-button:nth-child(2) {
  font-size: 16px;
  font-weight: bold;
  letter-spacing: 0.2px;
  text-align: center;
  color: #b3b1b7;
}
header.header-pricing .hero-button:nth-child(2):hover {
  text-decoration: underline;
}
header.header-pricing .hero-b {
  font-size: 24px;
  font-weight: bold;
  line-height: 1.42;
  letter-spacing: 0.4px;
  color: #000;
}
header.header-pricing .hero-p {
  font-size: 14px;
  line-height: 1.71;
  letter-spacing: 0.12px;
  color: #64626a;
  margin-top: 12px;
  margin-bottom: 48px;
}
header.header-pricing .hero-link {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.8px;
  color: #26875c;
  text-decoration: underline;
}

@media (max-width: 1199.98px) {
  header.header-pricing {
    background-image: url(../images/bg-pricing-tablet.png);
  }
  header.header-pricing .hero {
    padding: 56px 0;
  }
  header.header-pricing .hero-container {
    max-width: 730px;
  }
  header.header-pricing .hero-title {
    font-size: 36px;
    letter-spacing: 0.6px;
  }
  header.header-pricing .hero-desc {
    font-size: 14px;
    line-height: 1.71;
    letter-spacing: 0.21px;
    margin-top: 16px;
    margin-bottom: 40px;
  }
  header.header-pricing .hero-selector {
    column-gap: 12px;
    font-size: 14px;
    line-height: 1.71;
    text-align: right;
  }
  header.header-pricing .hero-selector > div:last-child {
    margin-top: 7px;
  }
  header.header-pricing .hero-radio {
    width: 59px;
    height: 32px;
    padding: 0 3px;
    margin-top: 3px;
  }
  header.header-pricing .hero-radio div {
    width: 27px;
    height: 27px;
  }
  header.header-pricing .hero-span {
    font-size: 12px;
  }
  header.header-pricing .hero-cards {
    column-gap: 20px;
    margin: 56px 0;
  }
  header.header-pricing .hero-card {
    width: 230px;
    padding: 14px;
    padding-bottom: 16px;
  }
  header.header-pricing .hero-texts {
    padding-bottom: 13px;
  }
  header.header-pricing .hero-plan {
    font-size: 16px;
    letter-spacing: 0.27px;
    margin-bottom: 6px;
  }
  header.header-pricing .hero-price {
    font-size: 28px;
    letter-spacing: 0.47px;
  }
  header.header-pricing .hero-ul {
    height: 164px;
    row-gap: 14px;
    margin-top: 16px;
    margin-bottom: 55px;
  }
  header.header-pricing .hero-li {
    align-items: flex-start;
    column-gap: 8px;
  }
  header.header-pricing .hero-li img {
    width: 24px;
  }
  header.header-pricing .hero-buttons {
    row-gap: 16px;
  }
  header.header-pricing .hero-button:nth-child(1) {
    font-size: 14px;
    letter-spacing: 0.18px;
  }
  header.header-pricing .hero-button:nth-child(2) {
    font-size: 14px;
    letter-spacing: 0.18px;
  }
  header.header-pricing .hero-b {
    font-size: 20px;
    line-height: 1.7;
    letter-spacing: 0.33px;
  }
  header.header-pricing .hero-p {
    margin-top: 8px;
    margin-bottom: 32px;
  }
}
@media (max-width: 767.98px) {
  header.header-pricing .hero-container {
    max-width: 516px;
  }
  header.header-pricing .hero-cards {
    flex-wrap: wrap;
    justify-content: center;
    row-gap: 20px;
  }
  header.header-pricing .hero-b br,
header.header-pricing .hero-p br {
    display: none;
  }
}
@media (max-width: 575.98px) {
  header.header-pricing {
    background-image: url(../images/bg-pricing-mobile.png);
  }
  header.header-pricing .hero-container {
    max-width: 280px;
  }
  header.header-pricing .hero-title {
    font-size: 32px;
    letter-spacing: 0.53px;
  }
  header.header-pricing .hero-desc {
    margin-bottom: 24px;
    padding: 0 20px;
  }
  header.header-pricing .hero-cards {
    row-gap: 32px;
    margin-top: 40px;
    margin-bottom: 38px;
  }
  header.header-pricing .hero-card {
    width: 280px;
  }
  header.header-pricing .hero-p {
    margin-top: 14px;
    margin-bottom: 20px;
  }
}
header.header-product {
  background: #fff;
}
header.header-product .hero {
  font-family: aileron, sans-serif;
  padding-top: 102px;
  padding-bottom: 118px;
}
header.header-product .hero-container {
  max-width: 1440px;
  padding-left: 150px;
}
header.header-product .hero-wrapper {
  display: flex;
  justify-content: space-between;
}
header.header-product .hero-badge {
  display: flex;
  align-items: center;
  justify-content: center;
  column-gap: 12px;
  width: 126px;
  height: 38px;
  border-radius: 4px;
  background-color: #e8e7e8;
  font-size: 16px;
  letter-spacing: 0.3px;
  color: #000;
  margin-top: 9px;
  margin-bottom: 24px;
}
header.header-product .hero-title {
  font-size: 60px;
  letter-spacing: 1px;
  color: #000;
}
header.header-product .hero-desc {
  font-size: 20px;
  line-height: 1.5;
  letter-spacing: 0.3px;
  color: #64626a;
  margin-top: 24px;
  margin-bottom: 64px;
}
header.header-product .hero-form {
  display: flex;
  align-items: center;
  height: 60px;
  border-radius: 4px;
}
header.header-product .hero-form input {
  width: 348px;
  height: 100%;
  border: solid 2px #d1d0d6;
  border-right: none;
  padding: 0 20px;
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 0.2px;
}
header.header-product .hero-form input::placeholder {
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 0.2px;
}
header.header-product .hero-form button {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 140px;
  height: 100%;
  border-radius: 4px;
  background-color: #26875c;
  font-size: 16px;
  font-weight: bold;
  letter-spacing: 0.2px;
  color: #fff;
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
}
header.header-product .hero-form button:hover {
  opacity: 0.8;
}
header.header-product .hero-p {
  font-size: 12px;
  color: #64626a;
  margin-top: 12px;
}

@media (max-width: 1199.98px) {
  header.header-product .hero {
    padding-top: 56px;
    padding-bottom: 46px;
  }
  header.header-product .hero-container {
    max-width: 768px;
    padding-left: 40px;
  }
  header.header-product .hero-badge {
    width: 114px;
    height: 37px;
    font-size: 14px;
    letter-spacing: 0.26px;
    margin-top: 0;
    margin-bottom: 16px;
  }
  header.header-product .hero-badge img {
    width: 19px;
  }
  header.header-product .hero-title {
    font-size: 36px;
    letter-spacing: 0.6px;
  }
  header.header-product .hero-desc {
    font-size: 14px;
    line-height: 1.71;
    letter-spacing: 0.21px;
    margin-top: 16px;
    margin-bottom: 24px;
  }
  header.header-product .hero-form {
    height: 52px;
  }
  header.header-product .hero-form input {
    width: 204px;
    font-size: 14px;
    letter-spacing: 0.18px;
    padding: 0 16px;
  }
  header.header-product .hero-form input::placeholder {
    font-size: 14px;
    letter-spacing: 0.18px;
  }
  header.header-product .hero-form button {
    font-size: 14px;
    letter-spacing: 0.18px;
  }
  header.header-product .hero-p {
    margin-top: 14px;
  }
  header.header-product .hero-image {
    width: 371px;
    margin-top: 27px;
  }
}
@media (max-width: 767.98px) {
  header.header-product .hero-container {
    max-width: 516px;
    padding-left: 0;
  }
  header.header-product .hero-wrapper {
    flex-direction: column;
    align-items: center;
  }
}
@media (max-width: 575.98px) {
  header.header-product .hero {
    padding-bottom: 0;
    text-align: center;
  }
  header.header-product .hero-container {
    max-width: 320px;
  }
  header.header-product .hero-badge {
    margin: auto;
    margin-bottom: 16px;
  }
  header.header-product .hero-title {
    padding: 0 20px;
    font-size: 32px;
    letter-spacing: 0.53px;
  }
  header.header-product .hero-title br {
    display: none;
  }
  header.header-product .hero-desc {
    padding: 0 20px;
  }
  header.header-product .hero-desc br {
    display: none;
  }
  header.header-product .hero-form {
    justify-content: center;
  }
  header.header-product .hero-form input {
    display: none;
  }
  header.header-product .hero-form button {
    height: 44px;
    border-radius: 4px;
  }
  header.header-product .hero-image {
    width: 307px;
  }
}
.step {
  padding: 100px 0;
  font-family: aileron, sans-serif;
  text-align: center;
}
.step .step-wrapper {
  padding: 100px 0;
  border-radius: 12px;
  border: solid 1px #e8e7e8;
  background-color: #f8f8f8;
}
.step .step-title {
  font-size: 36px;
  letter-spacing: 0.6px;
  color: #000;
}
.step .step-desc {
  font-size: 20px;
  line-height: 1.5;
  letter-spacing: 0.3px;
  color: #64626a;
  margin-top: 16px;
  margin-bottom: 48px;
}
.step .step-cards {
  display: flex;
  justify-content: center;
}
.step .step-arrow {
  margin-left: 95px;
  margin-right: 71px;
}
.step .step-p {
  font-size: 14px;
  font-weight: 900;
  letter-spacing: 1px;
  color: #26875c;
  margin-bottom: 24px;
}

@media (max-width: 1199.98px) {
  .step {
    padding: 56px 0;
  }
  .step .step-container {
    max-width: 728px;
  }
  .step .step-wrapper {
    padding: 20px;
    padding-top: 56px;
    padding-bottom: 60px;
  }
  .step .step-title {
    font-size: 28px;
    letter-spacing: 0.47px;
  }
  .step .step-desc {
    font-size: 14px;
    line-height: 1.71;
    letter-spacing: 0.21px;
    margin-bottom: 40px;
  }
  .step .step-card:first-child img {
    width: 269.6px;
  }
  .step .step-card:last-child img {
    width: 285.77px;
  }
  .step .step-arrow {
    width: 65.64px;
    margin-right: 42px;
    margin-left: 24px;
  }
}
@media (max-width: 767.98px) {
  .step {
    background-color: #f8f8f8;
  }
  .step .step-container {
    max-width: 516px;
  }
  .step .step-wrapper {
    border-radius: 0;
    border: none;
    background-color: transparent;
    padding: 0;
  }
  .step .step-cards {
    flex-direction: column;
    row-gap: 40px;
  }
  .step .step-arrow {
    display: none;
  }
}
@media (max-width: 575.98px) {
  .step {
    padding: 40px 0;
  }
  .step .step-container {
    max-width: 286px;
  }
  .step .step-title {
    width: 206px;
    font-size: 24px;
    letter-spacing: 0.4px;
    margin: auto;
  }
  .step .step-desc br {
    display: none;
  }
  .step .step-p {
    margin-bottom: 16px;
  }
}
.feature {
  padding: 100px 0;
  font-family: aileron, sans-serif;
}
.feature .feature-title {
  font-size: 36px;
  letter-spacing: 0.6px;
  color: #000;
}
.feature .feature-desc {
  font-size: 20px;
  line-height: 1.5;
  letter-spacing: 0.3px;
  color: #64626a;
  margin-top: 16px;
  margin-bottom: 48px;
}
.feature .feature-tab {
  display: flex;
  justify-content: space-between;
}
.feature .feature-cards {
  display: flex;
  flex-direction: column;
  row-gap: 8px;
}
.feature .feature-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 263px;
  height: 60px;
  padding: 0 16px;
  border-radius: 8px;
  box-shadow: 0 10px 30px 0 rgba(0, 0, 0, 0.1);
  background-color: #fff;
  cursor: pointer;
}
.feature .feature-card > div {
  display: flex;
  align-items: center;
  column-gap: 16px;
}
.feature .feature-card .feature-chevron {
  display: block;
}
.feature .feature-card.inactive {
  background-color: transparent;
  box-shadow: none;
}
.feature .feature-card.inactive:hover .feature-chevron {
  display: block;
}
.feature .feature-card.inactive .feature-chevron {
  display: none;
}
.feature .feature-p {
  font-size: 16px;
  letter-spacing: 0.3px;
  color: #000;
}

@media (max-width: 1199.98px) {
  .feature {
    padding: 56px 0;
  }
  .feature .feature-container {
    max-width: 768px;
    padding-left: 40px;
  }
  .feature .feature-title {
    font-size: 28px;
    letter-spacing: 0.47px;
  }
  .feature .feature-desc {
    font-size: 14px;
    line-height: 1.71;
    letter-spacing: 0.21px;
    margin-bottom: 40px;
  }
  .feature .feature-tab {
    align-items: center;
  }
  .feature .feature-cards {
    row-gap: 4px;
  }
  .feature .feature-card {
    width: 217px;
    height: 52px;
    padding: 0 8px;
  }
  .feature .feature-card > div {
    column-gap: 8px;
  }
  .feature .feature-p {
    font-size: 14px;
    letter-spacing: 0.26px;
  }
  .feature .feature-image {
    width: 501px;
  }
}
@media (max-width: 767.98px) {
  .feature .feature-container {
    max-width: 576px;
  }
  .feature .feature-title {
    text-align: center;
    margin-right: 40px;
  }
  .feature .feature-desc {
    text-align: center;
    margin-right: 40px;
  }
  .feature .feature-tab {
    flex-direction: column;
    align-items: center;
    row-gap: 28px;
  }
  .feature .feature-cards {
    margin-right: 40px;
  }
  .feature .feature-card {
    width: 263px;
  }
}
@media (max-width: 575.98px) {
  .feature {
    padding: 40px 0;
  }
  .feature .feature-container {
    max-width: 320px;
    padding-left: 0;
  }
  .feature .feature-title {
    font-size: 24px;
    letter-spacing: 0.4px;
    margin-right: 0;
  }
  .feature .feature-desc {
    padding: 0 20px;
    margin-bottom: 16px;
    margin-right: 0;
  }
  .feature .feature-desc br {
    display: none;
  }
  .feature .feature-cards {
    margin-right: 0;
  }
  .feature .feature-card {
    width: 217px;
  }
  .feature .feature-image {
    width: 320px;
    height: 224px;
    object-fit: cover;
    object-position: center;
  }
}
.testi {
  padding: 100px 0;
  font-family: aileron, sans-serif;
}
.testi .testi-wrapper {
  position: relative;
}
.testi .testi-title {
  width: 557px;
  font-size: 36px;
  line-height: 1.28;
  letter-spacing: 0.6px;
  color: #000;
}
.testi .testi-cards {
  margin-top: 48px;
  margin-bottom: 72px;
}
.testi .testi-card {
  width: 555px;
  padding: 48px;
  border-radius: 12px;
  border: solid 1px #e8e7e8;
  background-color: #f8f8f8;
}
.testi .testi-blockquote {
  width: auto !important;
}
.testi .testi-desc {
  height: 136px;
  font-size: 24px;
  line-height: 1.42;
  letter-spacing: 0.4px;
  color: #000;
  margin-top: 16px;
  margin-bottom: 24px;
}
.testi .testi-avatar {
  width: auto !important;
  margin-right: 12px;
}
.testi .testi-b {
  font-size: 18px;
  font-weight: 600;
  color: #3b3a40;
  margin-bottom: 1px;
}
.testi .testi-p {
  font-size: 14px;
  letter-spacing: 0.1px;
  color: #8e8c95;
}
.testi .testi-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: absolute;
  top: 396px;
  right: -24px;
  left: -24px;
  z-index: 1;
}
.testi .testi-button {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 8px;
  box-shadow: 0 10px 30px 0 rgba(0, 0, 0, 0.08);
  background-color: #fff;
}
.testi .testi-dots {
  display: flex;
  column-gap: 8px;
  position: absolute;
  top: 84px;
  right: 12px;
}
.testi .owl-dot {
  width: 8px;
  height: 8px;
  border: solid 1px #d1d0d6;
  border-radius: 50%;
  margin: 0;
}
.testi .owl-dot.active {
  background-color: #000;
  border: solid 1px #000;
}
.testi .partner-brands {
  display: flex;
  align-items: center;
  justify-content: center;
  column-gap: 63px;
  margin-top: 72px;
  margin-bottom: 32px;
}
.testi .partner-wrapper {
  display: none;
}
.testi .partner-desc {
  font-size: 14px;
  text-align: center;
  color: #3b3a40;
}

@media (max-width: 1199.98px) {
  .testi {
    padding-top: 56px;
    padding-bottom: 60px;
  }
  .testi .testi-title {
    width: 389px;
    font-size: 28px;
    line-height: 1.36;
    letter-spacing: 0.47px;
  }
  .testi .testi-cards {
    margin: 40px 0;
  }
  .testi .testi-card {
    width: 334px;
    padding: 24px;
  }
  .testi .testi-blockquote {
    width: 36px !important;
  }
  .testi .testi-desc {
    height: 104px;
    margin: 14px 0 32px;
    font-size: 16px;
    line-height: 1.63;
    letter-spacing: 0.27px;
  }
  .testi .testi-avatar {
    width: 40px !important;
    margin-right: 14px;
  }
  .testi .testi-b {
    font-size: 14px;
    margin-bottom: 2px;
  }
  .testi .testi-p {
    font-size: 12px;
    letter-spacing: 0.09px;
  }
  .testi .testi-dots {
    top: 68px;
    right: 0;
  }
  .testi .testi-nav {
    top: 318px;
    right: -16px;
    left: -16px;
  }
  .testi .testi-button {
    width: 32px;
    height: 32px;
  }
  .testi .testi-button img {
    width: 15px;
  }
  .testi .partner-brands {
    column-gap: 32px;
    margin-top: 40px;
    margin-bottom: 16px;
  }
  .testi .partner-brands img {
    height: 34px;
  }
}
@media (max-width: 767.98px) {
  .home .hero-container {
    max-width: 576px;
  }
  .home .hero-wrapper {
    flex-direction: column;
    align-items: center;
    row-gap: 40px;
    text-align: center;
  }
  .home .hero-wrapper > div:first-child {
    padding-right: 40px;
  }
  .home .step {
    background-color: #f8f8f8;
  }
  .home .step-container {
    max-width: 516px;
  }
  .home .step-wrapper {
    border-radius: 0;
    border: none;
    background-color: transparent;
    padding: 0;
  }
  .home .step-cards {
    flex-direction: column;
    row-gap: 40px;
  }
  .home .step-arrow {
    display: none;
  }
  .home .feature-container {
    max-width: 576px;
  }
  .home .feature-title {
    text-align: center;
    margin-right: 40px;
  }
  .home .feature-desc {
    text-align: center;
    margin-right: 40px;
  }
  .home .feature-tab {
    flex-direction: column;
    align-items: center;
    row-gap: 28px;
  }
  .home .feature-cards {
    margin-right: 40px;
  }
  .home .feature-card {
    width: 263px;
  }
  .home .testi-container {
    max-width: 576px;
    padding-left: 30px;
  }
  .home .testi-dots {
    right: 30px;
  }
  .home .partner {
    padding-right: 30px;
  }
  .home .partner-brands {
    flex-wrap: wrap;
    padding: 0 100px;
    row-gap: 24px;
  }
}
@media (max-width: 575.98px) {
  .home .hero-container {
    max-width: 320px;
    padding-left: 20px;
  }
  .home .hero-wrapper > div:first-child {
    padding-right: 20px;
  }
  .home .hero-title {
    font-size: 32px;
    letter-spacing: 0.53px;
  }
  .home .hero-desc {
    width: 280px;
    margin: auto;
    margin-top: 16px;
    margin-bottom: 24px;
  }
  .home .hero-desc br {
    display: none;
  }
  .home .hero-form {
    height: 44px;
    justify-content: center;
  }
  .home .hero-form input {
    display: none;
  }
  .home .hero-image {
    width: 300px;
  }
  .home .step {
    padding: 40px 0;
  }
  .home .step-container {
    max-width: 286px;
  }
  .home .step-title {
    width: 206px;
    font-size: 24px;
    letter-spacing: 0.4px;
    margin: auto;
  }
  .home .step-desc br {
    display: none;
  }
  .home .step-p {
    margin-bottom: 16px;
  }
  .home .feature {
    padding: 40px 0;
  }
  .home .feature-container {
    max-width: 320px;
    padding-left: 0;
  }
  .home .feature-title {
    font-size: 24px;
    letter-spacing: 0.4px;
    margin-right: 0;
  }
  .home .feature-desc {
    padding: 0 20px;
    margin-bottom: 16px;
    margin-right: 0;
  }
  .home .feature-desc br {
    display: none;
  }
  .home .feature-cards {
    margin-right: 0;
  }
  .home .feature-card {
    width: 217px;
  }
  .home .feature-image {
    width: 320px;
    height: 224px;
    object-fit: cover;
    object-position: center;
  }
  .home .testi {
    padding: 40px 0;
  }
  .home .testi-container {
    max-width: 320px;
    padding-left: 20px;
  }
  .home .testi-title {
    width: 280px;
    font-size: 24px;
    text-align: center;
    letter-spacing: 0.4px;
    margin-right: 20px;
  }
  .home .testi-card {
    width: 236px;
    padding: 16px;
  }
  .home .testi-blockquote {
    width: 30px !important;
  }
  .home .testi-desc {
    height: 130px;
    font-size: 14px;
    line-height: 1.86;
    letter-spacing: 0.23px;
    margin-top: 16px;
    margin-bottom: 36px;
  }
  .home .testi-avatar {
    width: 36px !important;
    margin-right: 12px;
  }
  .home .testi-b {
    margin-top: -4px;
  }
  .home .testi-nav {
    display: none;
  }
  .home .testi-dots {
    top: 400px;
    left: 50%;
    right: 0;
    transform: translateX(-50%);
    justify-content: center;
  }
  .home .partner {
    padding-right: 20px;
  }
  .home .partner-brands {
    flex-direction: column;
    column-gap: 0;
    padding: 0;
    margin: 24px 0;
  }
  .home .partner-brands--desktop {
    display: none;
  }
  .home .partner-wrapper {
    display: flex;
    justify-content: center;
    column-gap: 18px;
  }
}
.diff .diff-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 100px 0;
  font-family: aileron, sans-serif;
  border-top: dashed 1px #d1d0d6;
}
.diff .diff-title {
  font-size: 32px;
  font-weight: bold;
  line-height: 1.31;
  letter-spacing: 0.53px;
  color: #000;
}
.diff .diff-video {
  display: flex;
  align-items: center;
  justify-content: center;
  background-image: url(../images/diff-video.svg);
  width: 360px;
  height: 230px;
  border-radius: 12px;
}
.diff .diff-play {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 53px;
  height: 53px;
  background-color: #fff;
  border-radius: 50%;
  cursor: pointer;
}
.diff .diff-play:hover {
  opacity: 0.8;
}

@media (max-width: 1199.98px) {
  .diff .diff-wrapper {
    padding: 56px 0;
    border-top: none;
  }
  .diff .diff-title {
    font-size: 18px;
    line-height: 1.89;
    letter-spacing: 0.3px;
  }
  .diff .diff-video {
    width: 286px;
    height: 183px;
  }
  .diff .diff-play {
    width: 43px;
    height: 43px;
  }
  .diff .diff-play img {
    width: 13px;
  }
}
@media (max-width: 767.98px) {
  .diff .diff-wrapper {
    flex-direction: column-reverse;
    row-gap: 18px;
    text-align: center;
  }
}
@media (max-width: 575.98px) {
  .diff .diff-wrapper {
    padding-top: 40px;
    text-align: left;
  }
  .diff .diff-video {
    width: 280px;
    height: 179px;
  }
  .diff .diff-play {
    width: 41px;
    height: 41px;
  }
  .diff .diff-play img {
    width: 12px;
  }
  .diff .diff-title {
    font-size: 16px;
    line-height: 1.63;
    letter-spacing: 0.27px;
  }
  .diff .diff-title br {
    display: none;
  }
}
.users {
  padding: 100px 0;
  font-family: aileron, sans-serif;
  text-align: center;
}
.users .users-wrapper {
  padding: 72px 0;
  border-radius: 12px;
  border: solid 1px #e8e7e8;
  background-color: #f8f8f8;
}
.users .users-title {
  font-size: 36px;
  font-weight: bold;
  letter-spacing: 0.6px;
  color: #000;
}
.users .users-brands {
  display: flex;
  align-items: center;
  justify-content: center;
  column-gap: 63px;
  margin-top: 48px;
  margin-bottom: 64px;
}
.users .users-brands div {
  display: flex;
  align-items: center;
  column-gap: 63px;
}
.users .users-brands img {
  height: 43px;
}
.users .users-brands--mobile {
  display: none;
}
.users .users-desc {
  font-size: 24px;
  font-weight: bold;
  line-height: 1.42;
  letter-spacing: 0.4px;
  color: #000;
}

@media (max-width: 1199.98px) {
  .users {
    padding: 56px 0;
  }
  .users .users-wrapper {
    padding-top: 50px;
    padding-bottom: 56px;
  }
  .users .users-title {
    font-size: 24px;
    letter-spacing: 0.4px;
  }
  .users .users-brands {
    column-gap: 28px;
    margin-top: 30px;
    margin-bottom: 32px;
  }
  .users .users-brands img {
    height: 34px;
  }
  .users .users-desc {
    font-size: 16px;
    letter-spacing: 0.27px;
  }
}
@media (max-width: 767.98px) {
  .users .users-brands {
    flex-wrap: wrap;
    row-gap: 24px;
    padding: 0 52px;
  }
}
@media (max-width: 575.98px) {
  .users {
    padding-top: 0;
    padding-bottom: 40px;
  }
  .users .users-wrapper {
    padding-top: 56px;
  }
  .users .users-title {
    font-size: 20px;
    letter-spacing: 0.33px;
  }
  .users .users-brands {
    padding: 0;
    margin: 24px 0;
  }
  .users .users-brands--desktop {
    display: none;
  }
  .users .users-brands--mobile {
    display: flex;
    column-gap: 18px;
  }
  .users .users-brands--mobile div {
    display: flex;
    flex-direction: column;
    row-gap: 25px;
  }
  .users .users-desc {
    font-size: 14px;
    letter-spacing: 0.23px;
  }
}
.team {
  padding: 100px 0;
  font-family: aileron, sans-serif;
}
.team .team-title {
  font-size: 36px;
  letter-spacing: 0.6px;
  text-align: center;
  color: #000;
}
.team .team-desc {
  font-size: 20px;
  line-height: 1.5;
  letter-spacing: 0.3px;
  text-align: center;
  color: #64626a;
  margin-top: 24px;
  margin-bottom: 64px;
}
.team .team-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
}
.team .team-card {
  width: 360px;
  border-radius: 12px;
  border: solid 1px #d1d0d6;
  background-color: #fff;
  padding-bottom: 24px;
}
.team .team-avatar {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 360px;
  background-color: #f8f8f8;
}
.team .team-b {
  font-size: 18px;
  font-weight: bold;
  color: #3b3a40;
  margin-top: 24px;
  margin-bottom: 8px;
  margin-left: 32px;
}
.team .team-p {
  font-size: 14px;
  letter-spacing: 0.12px;
  color: #64626a;
  margin-left: 32px;
}

@media (max-width: 1199.98px) {
  .team {
    padding: 56px 0;
  }
  .team .team-title {
    font-size: 28px;
    letter-spacing: 0.47px;
  }
  .team .team-desc {
    font-size: 14px;
    line-height: 1.71;
    letter-spacing: 0.21px;
    margin-top: 16px;
    margin-bottom: 40px;
  }
  .team .team-cards {
    gap: 17px;
  }
  .team .team-card {
    width: 218px;
    height: 274px;
    padding-bottom: 16px;
  }
  .team .team-avatar {
    height: 180px;
  }
  .team .team-avatar img {
    width: 104px;
  }
  .team .team-b {
    font-size: 16px;
    margin-top: 16px;
    margin-left: 16px;
  }
  .team .team-p {
    margin: 0 16px;
  }
}
@media (max-width: 767.98px) {
  .team .team-cards {
    justify-content: center;
  }
}
@media (max-width: 575.98px) {
  .team {
    padding: 40px 0;
  }
  .team .team-container {
    max-width: 292px;
  }
  .team .team-title {
    font-size: 24px;
    letter-spacing: 0.4px;
    padding: 0 24px;
  }
  .team .team-desc {
    margin-bottom: 25px;
  }
  .team .team-desc br {
    display: none;
  }
  .team .team-cards {
    gap: 12px;
  }
  .team .team-card {
    width: 140px;
    height: 194px;
    padding-bottom: 13px;
  }
  .team .team-avatar {
    height: 112px;
  }
  .team .team-avatar img {
    width: 64px;
  }
  .team .team-b {
    font-size: 14px;
    margin-top: 12px;
    margin-left: 12px;
  }
  .team .team-p {
    font-size: 12px;
    letter-spacing: 0.1px;
    margin: 0 12px;
  }
}
.pos {
  padding: 100px 0;
  font-family: aileron, sans-serif;
}
.pos .pos-title {
  font-size: 36px;
  line-height: 1.28;
  letter-spacing: 0.6px;
  text-align: center;
  color: #000;
  margin-bottom: 64px;
}
.pos .pos-cards {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
}
.pos .pos-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 555px;
  height: 72px;
  padding: 0 24px;
  border-radius: 12px;
  border: solid 1px #d1d0d6;
  background-color: #fff;
  font-size: 20px;
  font-weight: bold;
  letter-spacing: 0.33px;
  color: #000;
}
.pos .pos-quota {
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 0.2px;
  color: #8e8c95;
}
.pos .pos-quota--green {
  font-weight: bold;
  color: #26875c;
}

@media (max-width: 1199.98px) {
  .pos {
    padding-top: 80px;
    padding-bottom: 56px;
  }
  .pos .pos-title {
    font-size: 24px;
    line-height: 1.42;
    letter-spacing: 0.4px;
    margin-bottom: 40px;
  }
  .pos .pos-cards {
    gap: 20px;
  }
  .pos .pos-card {
    width: 334px;
    height: 52px;
    padding: 0 16px;
    font-size: 14px;
    letter-spacing: 0.23px;
  }
  .pos .pos-quota {
    font-size: 14px;
    letter-spacing: 0.18px;
  }
}
@media (max-width: 575.98px) {
  .pos {
    padding-top: 56px;
    padding-bottom: 30px;
  }
  .pos .pos-title {
    padding: 0 40px;
  }
  .pos .pos-card {
    width: 280px;
    padding: 0 14px;
  }
}
.philosophy {
  padding: 100px 0;
  font-family: aileron, sans-serif;
}
.philosophy .philosophy-texts {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 64px;
}
.philosophy .philosophy-title {
  font-size: 36px;
  line-height: 1.28;
  letter-spacing: 0.6px;
  color: #000;
}
.philosophy .philosophy-desc {
  width: 458px;
  font-size: 20px;
  line-height: 1.5;
  letter-spacing: 0.3px;
  color: #64626a;
}
.philosophy .philosophy-image {
  border-radius: 12px;
}

@media (max-width: 1199.98px) {
  .philosophy {
    padding: 56px 0;
  }
  .philosophy .philosophy-texts {
    align-items: flex-start;
    margin-bottom: 40px;
  }
  .philosophy .philosophy-title {
    font-size: 20px;
    line-height: 1.7;
    letter-spacing: 0.33px;
  }
  .philosophy .philosophy-desc {
    width: 334px;
    font-size: 14px;
    line-height: 1.71;
    letter-spacing: 0.21px;
    margin-top: 6px;
  }
  .philosophy .philosophy-image {
    width: 688px;
  }
}
@media (max-width: 767.98px) {
  .philosophy .philosophy-texts {
    flex-direction: column;
    align-items: center;
    row-gap: 12px;
    text-align: center;
  }
  .philosophy .philosophy-desc {
    margin-top: 0;
  }
  .philosophy .philosophy-image {
    width: 516px;
  }
}
@media (max-width: 575.98px) {
  .philosophy {
    padding-top: 30px;
  }
  .philosophy .philosophy-texts {
    margin-bottom: 24px;
  }
  .philosophy .philosophy-title {
    font-size: 18px;
    line-height: 1.56;
    letter-spacing: 0.3px;
  }
  .philosophy .philosophy-desc {
    width: 280px;
  }
  .philosophy .philosophy-image {
    width: 280px;
    height: 170px;
    object-fit: cover;
    object-position: center;
  }
}
.benefits .benefits-wrapper {
  border-radius: 12px;
  border: solid 1px #e8e7e8;
  background-color: #f8f8f8;
  padding: 100px 0;
  font-family: aileron, sans-serif;
}
.benefits .benefits-title {
  font-size: 36px;
  line-height: 1.28;
  letter-spacing: 0.6px;
  text-align: center;
  color: #000;
  margin-bottom: 64px;
}
.benefits .benefits-cards {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
}
.benefits .benefits-card {
  display: flex;
  align-items: flex-start;
}
.benefits .benefits-icon {
  margin-right: 16px;
}
.benefits .benefits-b {
  font-size: 20px;
  font-weight: bold;
  letter-spacing: 0.33px;
  color: #000;
  margin: 8px 0;
}
.benefits .benefits-p {
  width: 360px;
  font-size: 16px;
  line-height: 1.63;
  letter-spacing: 0.2px;
  color: #8e8c95;
}

@media (max-width: 1199.98px) {
  .benefits {
    padding: 56px 0;
  }
  .benefits .benefits-container {
    max-width: 728px;
  }
  .benefits .benefits-wrapper {
    padding: 56px 0;
  }
  .benefits .benefits-title {
    font-size: 24px;
    line-height: 1.42;
    letter-spacing: 0.4px;
    margin-bottom: 40px;
  }
  .benefits .benefits-cards {
    gap: 20px;
  }
  .benefits .benefits-card {
    padding-bottom: 4px;
  }
  .benefits .benefits-icon {
    width: 28px;
    margin-right: 12px;
  }
  .benefits .benefits-b {
    font-size: 16px;
    letter-spacing: 0.27px;
    margin-top: 4px;
  }
  .benefits .benefits-p {
    width: 294px;
    font-size: 14px;
    line-height: 1.71;
    letter-spacing: 0.18px;
  }
}
@media (max-width: 767.98px) {
  .benefits .benefits-container {
    max-width: 516px;
  }
}
@media (max-width: 575.98px) {
  .benefits {
    padding-top: 0;
    padding-bottom: 30px;
  }
  .benefits .benefits-container {
    max-width: 300px;
  }
  .benefits .benefits-wrapper {
    padding-top: 32px;
    padding-bottom: 36px;
  }
  .benefits .benefits-title {
    margin-bottom: 36px;
  }
  .benefits .benefits-p {
    width: 240px;
  }
}
.office .office-wrapper {
  font-family: aileron, sans-serif;
  border-bottom: 1px solid #d1d0d6;
  padding-top: 100px;
  padding-bottom: 35px;
}
.office .office-title {
  font-size: 24px;
  font-weight: bold;
  line-height: 1.42;
  letter-spacing: 0.4px;
  text-align: center;
  color: #000;
}
.office .office-labels {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
  padding: 0 64px;
  margin-top: 48px;
  margin-bottom: 68px;
}
.office .office-label {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 72px;
  padding: 0 24px;
  border-radius: 4px;
  background-color: #f8f8f8;
  font-size: 32px;
  font-weight: bold;
  letter-spacing: 0.4px;
  color: #3b3a40;
}
.office .office-image {
  width: 1136px;
  height: 505px;
  background-image: url(../images/office.svg);
  margin: 0 auto;
}

@media (max-width: 1199.98px) {
  .office .office-container {
    max-width: 768px;
  }
  .office .office-wrapper {
    border-bottom: none;
    padding-top: 80px;
    padding-bottom: 12px;
  }
  .office .office-labels {
    gap: 24px;
    padding: 0 24px;
    margin: 40px 0;
  }
  .office .office-label {
    height: 58px;
    font-size: 20px;
    letter-spacing: 0.25px;
  }
  .office .office-image {
    background-image: url(../images/office-tablet.svg);
    width: 768px;
    height: 342px;
  }
}
@media (max-width: 767.98px) {
  .office .office-container {
    max-width: 576px;
  }
  .office .office-image {
    background-size: contain;
    width: 576px;
    height: 256px;
  }
}
@media (max-width: 575.98px) {
  .office .office-container {
    max-width: 320px;
  }
  .office .office-wrapper {
    padding-top: 56px;
    padding-bottom: 24px;
  }
  .office .office-title {
    width: 257px;
    margin: 0 auto;
  }
  .office .office-labels {
    gap: 16px;
    padding: 0;
    margin-top: 13px;
    margin-bottom: 24px;
  }
  .office .office-label {
    width: 130px;
    height: 49px;
    padding: 0;
    font-size: 14px;
    letter-spacing: 0.18px;
  }
  .office .office-image {
    background-image: url(../images/office-mobile.svg);
    width: 320px;
    height: 205px;
  }
}
.list {
  padding: 100px 0;
  font-family: aileron, sans-serif;
}
.list .list-cards {
  display: flex;
  flex-direction: column;
  align-items: center;
  row-gap: 30px;
}
.list .list-card {
  display: flex;
  align-items: center;
  column-gap: 32px;
  width: 750px;
  height: 128px;
  padding: 0 32px;
  border-radius: 12px;
  border: solid 1px #d1d0d6;
}
.list .list-b {
  font-size: 20px;
  font-weight: bold;
  letter-spacing: 0.33px;
  margin-bottom: 8px;
}
.list .list-p {
  font-size: 16px;
  line-height: 1.63;
  letter-spacing: 0.2px;
  color: #8e8c95;
}

@media (max-width: 1199.98px) {
  .list {
    padding: 56px 0;
  }
  .list .list-cards {
    row-gap: 24px;
  }
  .list .list-card {
    width: 688px;
    height: 96px;
    padding: 0 24px;
    column-gap: 16px;
  }
  .list .list-card img {
    width: 48px;
  }
  .list .list-b {
    font-size: 16px;
    letter-spacing: 0.27px;
    margin-bottom: 4px;
  }
  .list .list-p {
    font-size: 14px;
    line-height: 1.71;
    letter-spacing: 0.18px;
  }
}
@media (max-width: 767.98px) {
  .list .list-card {
    width: 516px;
  }
}
@media (max-width: 575.98px) {
  .list .list-cards {
    row-gap: 20px;
  }
  .list .list-card {
    align-items: flex-start;
    column-gap: 12px;
    width: 280px;
    height: auto;
    padding: 12px;
  }
  .list .list-card img {
    width: 24px;
  }
  .list .list-b {
    font-size: 14px;
    letter-spacing: 0.23px;
    margin-bottom: 8px;
  }
  .list .list-p {
    font-size: 12px;
    line-height: 1.83;
    letter-spacing: 0.15px;
  }
}
.custom {
  padding: 100px 0;
  font-family: aileron, sans-serif;
  text-align: center;
}
.custom .custom-title {
  font-size: 36px;
  line-height: 1.28;
  letter-spacing: 0.6px;
  color: #000;
  margin-bottom: 110px;
}
.custom .custom-cards {
  display: flex;
  justify-content: center;
  column-gap: 30px;
}
.custom .custom-card {
  width: 360px;
  border-radius: 12px;
  border: solid 1px #e8e7e8;
  background-color: #f8f8f8;
  padding: 39px;
  padding-top: 0;
  padding-bottom: 36px;
}
.custom .custom-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 92px;
  height: 92px;
  box-shadow: 0 10px 30px 0 rgba(0, 0, 0, 0.08);
  background-color: #fff;
  border-radius: 50%;
  margin: auto;
  margin-top: -46px;
}
.custom .custom-b {
  font-size: 24px;
  font-weight: bold;
  letter-spacing: 0.4px;
  color: #000;
  margin-top: 32px;
  margin-bottom: 16px;
}
.custom .custom-p {
  font-size: 16px;
  line-height: 1.63;
  letter-spacing: 0.2px;
  color: #64626a;
}

@media (max-width: 1199.98px) {
  .custom {
    padding: 56px 0;
  }
  .custom .custom-title {
    font-size: 28px;
    letter-spacing: 0.47px;
    margin-bottom: 68px;
  }
  .custom .custom-cards {
    column-gap: 17px;
  }
  .custom .custom-card {
    width: 218px;
    padding: 14px;
    padding-top: 0;
    padding-bottom: 40px;
  }
  .custom .custom-icon {
    width: 60px;
    height: 60px;
    margin-top: -28px;
  }
  .custom .custom-icon img {
    width: 28px;
  }
  .custom .custom-b {
    font-size: 16px;
    letter-spacing: 0.27px;
    margin-top: 24px;
    margin-bottom: 8px;
  }
  .custom .custom-p {
    font-size: 14px;
    line-height: 1.71;
    letter-spacing: 0.18px;
  }
}
@media (max-width: 767.98px) {
  .custom .custom-title br {
    display: none;
  }
  .custom .custom-card {
    width: 160px;
  }
}
@media (max-width: 575.98px) {
  .custom .custom-title {
    font-size: 24px;
    letter-spacing: 0.4px;
    margin-bottom: 52px;
  }
  .custom .custom-cards {
    flex-direction: column;
    align-items: center;
    row-gap: 52px;
  }
  .custom .custom-card {
    width: 280px;
    height: 209px;
    padding-bottom: 0;
  }
}
.content1 {
  font-family: aileron, sans-serif;
  padding-top: 16px;
  padding-bottom: 100px;
}
.content1 .content1-wrapper {
  display: flex;
  justify-content: space-between;
  padding-right: 43px;
}
.content1 .content1-title {
  font-size: 36px;
  letter-spacing: 0.6px;
  color: #000;
  margin-top: 171px;
  margin-bottom: 24px;
}
.content1 .content1-desc {
  width: 429px;
  font-size: 20px;
  line-height: 1.5;
  letter-spacing: 0.3px;
  color: #64626a;
}

.content2 {
  font-family: aileron, sans-serif;
  padding-top: 100px;
  padding-bottom: 46px;
}
.content2 .content2-wrapper {
  display: flex;
  justify-content: space-between;
}
.content2 .content2-title {
  font-size: 36px;
  letter-spacing: 0.6px;
  color: #000;
  margin-top: 91px;
  margin-bottom: 24px;
}
.content2 .content2-desc {
  width: 429px;
  font-size: 20px;
  line-height: 1.5;
  letter-spacing: 0.3px;
  color: #64626a;
}

.content3 {
  font-family: aileron, sans-serif;
  padding-top: 31px;
  padding-bottom: 100px;
}
.content3 .content3-wrapper {
  display: flex;
  justify-content: space-between;
}
.content3 .content3-title {
  font-size: 36px;
  letter-spacing: 0.6px;
  color: #000;
  margin-top: 175px;
  margin-bottom: 24px;
}
.content3 .content3-desc {
  width: 429px;
  font-size: 20px;
  line-height: 1.5;
  letter-spacing: 0.3px;
  color: #64626a;
}

@media (max-width: 1199.98px) {
  .content1 {
    padding: 56px 0;
  }
  .content1 .content1-wrapper {
    align-items: center;
    padding-right: 0;
  }
  .content1 .content1-title {
    font-size: 28px;
    letter-spacing: 0.47px;
    margin-top: 0;
    margin-bottom: 16px;
  }
  .content1 .content1-desc {
    width: 315px;
    font-size: 14px;
    line-height: 1.71;
    letter-spacing: 0.21px;
  }
  .content1 .content1-image {
    width: 333px;
  }

  .content2 {
    padding: 56px 0;
  }
  .content2 .content2-wrapper {
    align-items: center;
  }
  .content2 .content2-title {
    font-size: 28px;
    letter-spacing: 0.47px;
    margin-top: 0;
    margin-bottom: 16px;
  }
  .content2 .content2-desc {
    width: 315px;
    font-size: 14px;
    line-height: 1.71;
    letter-spacing: 0.21px;
  }
  .content2 .content2-image {
    width: 339px;
  }

  .content3 {
    padding: 56px 0;
  }
  .content3 .content3-wrapper {
    align-items: center;
  }
  .content3 .content3-title {
    font-size: 28px;
    letter-spacing: 0.47px;
    margin-top: 0;
    margin-bottom: 16px;
  }
  .content3 .content3-desc {
    width: 315px;
    font-size: 14px;
    line-height: 1.71;
    letter-spacing: 0.21px;
  }
  .content3 .content3-image {
    width: 335px;
  }
}
@media (max-width: 767.98px) {
  .content1 .content1-wrapper {
    flex-direction: column;
    row-gap: 40px;
  }

  .content2 .content2-wrapper {
    flex-direction: column-reverse;
    row-gap: 40px;
  }

  .content3 .content3-wrapper {
    flex-direction: column;
    row-gap: 40px;
  }
}
@media (max-width: 575.98px) {
  .content1 {
    padding-bottom: 20px;
  }
  .content1 .content1-wrapper {
    row-gap: 9px;
  }
  .content1 .content1-title {
    font-size: 24px;
    letter-spacing: 0.4px;
    margin-bottom: 8px;
  }
  .content1 .content1-desc {
    width: 280px;
  }
  .content1 .content1-image {
    width: 280px;
  }

  .content2 {
    padding: 20px 0;
  }
  .content2 .content2-container {
    max-width: 320px;
  }
  .content2 .content2-wrapper {
    row-gap: 24px;
  }
  .content2 .content2-title {
    font-size: 24px;
    letter-spacing: 0.4px;
    margin-bottom: 8px;
  }
  .content2 .content2-desc {
    width: 280px;
  }
  .content2 .content2-image {
    width: 300px;
    margin-left: auto;
  }

  .content3 {
    padding-top: 20px;
    padding-bottom: 56px;
  }
  .content3 .content3-container {
    max-width: 320px;
  }
  .content3 .content3-wrapper {
    row-gap: 4px;
  }
  .content3 .content3-title {
    font-size: 24px;
    letter-spacing: 0.4px;
    margin-bottom: 8px;
  }
  .content3 .content3-desc {
    width: 280px;
  }
  .content3 .content3-image {
    width: 300px;
    margin-left: auto;
  }
}
.template {
  padding: 100px 0;
  font-family: aileron, sans-serif;
}
.template .template-wrapper {
  position: relative;
}
.template .template-title {
  font-size: 36px;
  letter-spacing: 0.6px;
  color: #000;
  margin-bottom: 64px;
}
.template .template-card {
  display: flex;
  align-items: center;
  width: 360px;
  height: 166px;
  padding: 0 32px;
  border-radius: 12px;
  border: solid 1px #e8e7e8;
  background-color: #f8f8f8;
  font-size: 24px;
  font-weight: bold;
  line-height: 1.42;
  letter-spacing: 0.4px;
  color: #000;
}
.template .template-nav {
  display: flex;
  align-items: center;
  column-gap: 30px;
  position: absolute;
  top: 0;
  right: 0;
}
.template .template-button {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
}
.template .template-button:hover {
  border-radius: 8px;
  box-shadow: 0 10px 30px 0 rgba(0, 0, 0, 0.08);
  background-color: #fff;
}

@media (max-width: 1199.98px) {
  .template {
    padding: 56px 0;
  }
  .template .template-title {
    font-size: 28px;
    letter-spacing: 0.47px;
    margin-bottom: 40px;
  }
  .template .template-card {
    width: 218px;
    height: 104px;
    padding: 0 16px;
    font-size: 16px;
    letter-spacing: 0.27px;
  }
  .template .template-nav {
    column-gap: 14px;
  }
  .template .template-button {
    width: 32px;
    height: 32px;
  }
  .template .template-button img {
    width: 15px;
  }
}
@media (max-width: 767.98px) {
  .template .template-container {
    max-width: 576px;
    padding-left: 30px;
  }
  .template .template-nav {
    column-gap: 0;
  }
}
@media (max-width: 575.98px) {
  .template .template-title {
    font-size: 24px;
    letter-spacing: 0.4px;
    text-align: center;
    margin-right: 20px;
    margin-bottom: 24px;
  }
  .template .template-nav {
    position: static;
    justify-content: center;
    column-gap: 14px;
    margin-top: 24px;
    margin-right: 20px;
  }
  .template .template-card {
    height: 88px;
  }
}
/*!
 * animate.css -http://daneden.me/animate
 * Version - 3.6.0
 * Licensed under the MIT license - http://opensource.org/licenses/MIT
 *
 * Copyright (c) 2018 Daniel Eden
 */
.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;
}

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

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

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

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

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

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

/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */
@-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;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

@-webkit-keyframes flip {
  from {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -360deg);
    transform: perspective(400px) rotate3d(0, 1, 0, -360deg);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
  }
  40% {
    -webkit-transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -190deg);
    transform: perspective(400px) 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) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -170deg);
    transform: perspective(400px) 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);
    transform: perspective(400px) scale3d(0.95, 0.95, 0.95);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
  to {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
}
@keyframes flip {
  from {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -360deg);
    transform: perspective(400px) rotate3d(0, 1, 0, -360deg);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
  }
  40% {
    -webkit-transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -190deg);
    transform: perspective(400px) 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) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -170deg);
    transform: perspective(400px) 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);
    transform: perspective(400px) scale3d(0.95, 0.95, 0.95);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
  to {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
    -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;
}

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

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

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

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

@-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);
    opacity: 1;
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}
@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);
    opacity: 1;
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}
.lightSpeedIn {
  -webkit-animation-name: lightSpeedIn;
  animation-name: lightSpeedIn;
  -webkit-animation-timing-function: ease-out;
  animation-timing-function: ease-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;
}

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

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

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

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

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

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

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

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

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

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

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

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

/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */
@-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;
}

/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */
@-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;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

/*# sourceMappingURL=main.css.map */
