* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

@import url("https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");

:root {
  --red: #ec2227;
  --primary-color: #00b6d2;
  --primary-color-2: #362410;
  --primary: #297084;
  --primary-rgb: 41, 112, 132;
  --secondary: #0a3441;
  --secondary-rgb: 10, 52, 65;
  --third: #674b31;
  --dark: #0a3441;
  --dark-rgb: 48, 41, 31;
  --light: #a8dadc;
  --light-rgb: 168, 218, 220;
  --gray: #f6f6f6;
  --gray-alt: #f9f7f2;
  --gray-dark: #222222;
  --gray-darker: #111111;
  --border-color: #c2c2c2;
  --muted: #c2c2c2;
  --body-text: #000000;
  --text-dark: #000000;
  --box-shadow: 0 2px 2px 0 rgb(0 0 0 / 14%), 0 3px 1px -2px rgb(0 0 0 / 12%),
    0 1px 5px 0 rgb(0 0 0 / 20%);
  --box-shadow-lg: 0 2px 12px 5px rgb(0 0 0 / 5%),
    0 3px 11px -2px rgb(0 0 0 / 3%), 0 1px 15px 8px rgb(0 0 0 / 5%);
  --box-shadow-xl: 0px 33px 79px 0px rgba(0, 0, 0, 0.08);
}

html {
  font-family: "Poppins", sans-serif;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Poppins", sans-serif;
}

/* Sections
	 ========================================================================== */

/**
 * Remove the margin in all browsers.
 */

/* Elements
--------------------------------------------- */
body {
  background: #fff;
}
.site {
  overflow: hidden;
  /* //padding: 0 30px; */
}
/* Links
--------------------------------------------- */

/* Navigation
--------------------------------------------- */
/* .site-main {
  padding-top: 70px;
} */

.page-site-main {
  padding-top: 100px;
}
.main-header {
  padding: 0px 35px;
  position: fixed;
  left: 0;
  right: 0;
  height: 80px;
  max-width: 100vw;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: 0.4s ease-in-out;
}
.sticky-top-nav a:hover {
  color: #cccccc;
}
.sticky-top-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background-color: #000;
  width: 100%;
  z-index: 1000;
  height: 40px;
  background: rgba(var(--primary-rgb), 0.9);
  color: var(--white);
  padding: 0px 100px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.container-fluid .logo {
  height: 50px;
}
.btn-top {
  font-family: "Poppins", sans-serif;
  position: relative;
  background-color: rgb(186, 17, 17);
  border: 1px solid rgb(186, 17, 17);
  border-radius: 50px;
  height: 30px;
  line-height: 30px;

  padding: 2px 10px;
  font-size: 20px;
  font-weight: 500;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 100px;
  overflow: hidden;
  z-index: 3;
  white-space: nowrap;
  color: #fff;
}

.btn-top::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: calc(200% + 1px);
  z-index: -1;
  transform: translateX(-100%);
  transition: transform 0.4s ease-out;
  transform-origin: left;
  background: rgb(49, 3, 3);
}

.sticky-top-nav-login-btn a {
  margin: 0 10px;
  font-size: 16px !important;
}

.btn-top:hover::before {
  transform: translateX(0);
  transform-origin: left;
  transition: transform 0.4s ease-out;
}

.btn-top:hover {
  color: var(--bs-btn-hover-color);
  background-color: var(--bs-btn-hover-bg);
  border-color: var(--bs-btn-hover-border-color);
}

.navbar-cart {
  position: relative;
  margin-right: 30px;
}
.navbar-cart a {
  text-decoration: none;
}
.navbar-cart i {
  font-size: 30px;
  color: #d10c0c;
}
.navbar-cart span {
  display: flex;
  position: absolute;
  top: 0;
  right: -20px;
  width: 25px;
  height: 25px;
  border-radius: 500px;
  background-color: #000;
  color: #fff;
  align-items: center;
  justify-content: center; /* Center the text horizontally */
  font-size: 14px;
}

@media only screen and (max-width: 1000px) {
  .navbar-cart {
    display: none;
  }
}

@media only screen and (max-width: 1120px) {
  .sticky-top-nav-login-btn {
    display: none;
  }
}
@media only screen and (max-width: 600px) {
  body {
    background-color: lightblue;
  }
}
.sticky-top-nav a {
  color: #fff;
  font-size: 18px;
}

header .container-fluid {
  display: flex;
  width: 100vw;
  justify-content: space-between;
  align-items: center;
}
header .container-fluid .logo .logo-img {
  height: 90%;
  transition: height 0.4s ease-in;
}
header .container-fluid .logo .logo-img-small {
  height: 80%;
  transition: height 0.4s ease-in;
}
header .container-fluid .logo a img {
  height: 50px;
}
.sticky {
  box-shadow: 0px 1px 10px rgb(0 0 0 / 10%);
}
.container {
  width: 100%;
  /* height: calc(100vh - 60px); */
  position: relative;
  overflow: hidden;
}

.sitenavbar {
  position: relative;
}
.main-header-logo {
  margin: 5px;
  padding: 0;
  height: 20px;
}
.main-container {
  min-height: 100vh;
}
.main-header-logo img {
  width: auto;
  height: 30px;
}
.sitenavbar {
  padding-top: 10px;
}
.main-navigation ul {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0;
  text-decoration: none !important;
  list-style-type: none;
  padding: 0;
}
.main-navigation ul li {
  list-style: none;
  display: inline-block;
  transition: all 0.3s ease-in-out;
  text-decoration: none !important;
  text-align: center;
  margin: 0px 4px;
  font-size: 16px;
  position: relative;
  height: 100%;
  padding: 5px 10px;
  border-radius: 10px;
  text-transform: uppercase;
}

.main-navigation ul li:hover {
  background-color: var(--primary-color);
  color: #ffffff;
}
.main-navigation ul li a:hover {
  color: #ffffff;
}

.main-navigation ul li a {
  text-decoration: none;
  display: inline-block;
  font-size: 18px;
  font-weight: 300;
  width: 100%;
  color: #000000;
  padding: 3px 3px;
}

.main-navigation ul li ul {
  width: max-content;
  position: absolute;
  display: list-item;
  top: 40px;
  left: 0px;
  background-color: rgb(255, 255, 255);
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
  list-style: none !important;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease-in;
  border-radius: 10px;
  border: none;
}
.drpdwn-menu {
  max-height: 1000px !important;
  transition: max-height 0.4s ease-in;
}

.menu-item-has-children:hover ul {
  max-height: 500px;
}

.main-navigation ul li ul li {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0;
  padding: 8px 10px;
  width: 100%;
}

.main-navigation ul li ul li:hover {
  background-color: var(--primary-color-2);
  border-radius: 0px;
}
.main-navigation ul li ul li a {
  text-decoration: none;
  color: #000000;
}
.contact-mobile {
  display: none;
}
.contact p {
  font-size: 20px;
}
/* Hamburger Menu */

.hamburger-div {
  justify-content: center;
  align-items: center;
  display: none;
}
.hamburger-btn {
  cursor: pointer;
  width: 24px;
  height: 24px;
  transition: all 0.5s;
  position: relative;
  background-color: transparent;
  border: none;
}
.hamburger-top,
.hamburger-middle,
.hamburger-bottom {
  position: absolute;
  top: 20%;
  left: 0%;
  width: 24px;
  height: 3px;
  transform: rotate(0);
  transition: all 0.5s;
  background-color: #151515;
}

.hamburger-middle {
  transform: translateY(7px);
}

.hamburger-bottom {
  transform: translateY(14px);
}

.open {
  transform: rotate(90deg);
  transform: translateY(0px);
}

.open .hamburger-top {
  transform: rotate(45deg) translateY(6px) translate(6px);
}

.open .hamburger-middle {
  display: none;
}

.open .hamburger-bottom {
  transform: rotate(-45deg) translateY(6px) translate(-6px);
}

.hamburger-middle {
  transform: translateY(7px);
}

.hamburger-bottom {
  transform: translateY(14px);
}
.links {
  display: none;
}
.links a {
  margin: 10px 10px;
}
@media only screen and (max-width: 1120px) {
  .main-header {
    position: fixed;
    width: 100%;
    max-width: 100vw;
    top: 40px;
    right: 0;
    z-index: 1000;
    display: flex;
    align-items: center;
    background-color: #ffffff;
    height: 55px;
  }
  header .container-fluid .logo .logo-img {
    height: 40px;
  }
  .contact {
    display: none;
  }

  .main-navigation {
    position: fixed;
    top: 55px;
    right: -100%;
    bottom: 0;
    width: 50%;
    max-width: 100vw;
    align-items: unset;
    background-color: #ffffff;
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    transition: right 0.4s;
    padding-top: 20px;
    overflow-y: scroll;
    min-height: 100vh;
    z-index: 10000;
    padding-bottom: 100px;
  }
  .contact-mobile {
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 20px;
  }
  .main-navigation .links {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding-top: 20px;
  }
  .contact-mobile .ri-phone-line {
    font-size: 25px;
  }
  .contact-mobile p {
    margin-bottom: 0;
    padding-left: 10px;
    font-size: 20px;
  }
  .main-navigation-open {
    right: 0%;
    top: 90px;
  }

  .main-navigation ul {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    color: #000000;
    width: 100%;
  }
  .main-navigation ul li {
    padding: 0px;
    color: #000000;
    width: 100%;
  }
  .main-navigation ul li a {
    color: #000000;
    padding: 15px 0px;
  }
  .main-navigation ul li ul {
    position: relative;
    top: 5px;
    background-color: var(--primary-color);
    margin: 0;
    padding: 0;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease-in;
    width: 100%;
  }

  .drpdwn-menu {
    max-height: 1000px !important;
    transition: max-height 0.4s ease-in;
  }

  .main-navigation ul li ul li:hover {
    background-color: var(--primary-color-2);
  }
  .main-navigation ul li ul li a {
    color: #fff;
  }

  .hamburger-div {
    display: flex;
  }
}
@media only screen and (max-width: 1205px) {
  .main-navigation ul li a i {
    display: none;
  }
}
@media only screen and (max-width: 455px) {
  .main-header {
    position: fixed;
    width: 100%;
    max-width: 100vw;
    top: 0px;
    right: 0;
    z-index: 1000;
    display: flex;
    align-items: center;
    background-color: #ffffff;
    height: 55px;
    padding: 0 10px;
  }
  .sticky-top-nav {
    height: 25px;
    padding: 0px 20px;
  }
  .sticky-top-nav a {
    font-size: 10px;
  }
  header .container-fluid .logo .logo-img {
    height: 30px;
  }
  .container-fluid .logo {
    height: 50px;
    display: flex;
    align-items: center;
  }
  .contact {
    display: none;
  }

  .main-navigation {
    position: absolute;
    top: 55px;
    right: -100%;
    width: 100%;
    max-width: 100vw;
    min-height: 100vh;
    align-items: unset;
    background-color: #ffffff;
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    transition: right 0.4s;
    overflow-y: scroll;
  }
  .contact-mobile {
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 20px;
  }
  .main-navigation .links {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
  .contact-mobile .ri-phone-line {
    font-size: 25px;
  }
  .main-navigation-open {
    right: 0%;
    top: 60px;
  }

  .main-navigation ul {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    color: #000000;
    width: 100%;
  }
  .main-navigation ul li {
    padding: 0px;
    color: #000000;
    width: 100%;
  }
  .main-navigation ul li a {
    color: #000000;
    padding: 15px 0px;
  }
  .main-navigation ul li ul {
    position: relative;
    top: 5px;
    background-color: var(--primary-color);
    margin: 0;
    padding: 0;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease-in;
  }

  .drpdwn-menu {
    max-height: 1000px !important;
    transition: max-height 0.4s ease-in;
  }

  .main-navigation ul li ul li:hover {
    background-color: var(--primary-color-2);
  }
  .main-navigation ul li ul li a {
    color: #fff;
  }

  .hamburger-div {
    display: flex;
  }
}

#template-mo-zay-hero-carousel {
  background: #efefef !important;
}
/*---------------------------------------
      ----------- carousel---------
----------------------------------------------*/

#secondary-banner {
  position: relative;
  margin-bottom: 80px;
  height: 350px;
  margin-top: 70px;
  overflow: hidden;
  background-size: contain;
  background-attachment: fixed;
  background-position: center center;
  display: flex;
  flex-direction: column;
  display: flex;
  align-items: center;
  justify-content: center;
}
#secondary-banner h1 {
  color: #fff;
  font-size: 50px;
  z-index: 3;
  position: relative;
  font-weight: 600;
}
#secondary-banner p {
  color: #fff;
  font-size: 30px;
  z-index: 3;
  position: relative;
}
.secondary-banner-background-overlay {
  background-color: transparent;
  background-image: linear-gradient(160deg, #2fa6e9 0%, #000000 100%);
  opacity: 0.8;
  transition: background 0.3s, border-radius 0.3s, opacity 0.3s;
  height: 100%;
  width: 100%;
  top: 0;
  left: 0;
  position: absolute;
}

/* Carousel Hero */
#template-mo-zay-hero-carousel .carousel-indicators button {
  margin-top: -20px;
  background-color: #59ab6e;
}

/* Carousel Brand */
.tempaltemo-carousel .h1 {
  font-size: 0.5em !important;
  color: #000 !important;
}
.h1-text-success {
  color: var(--primary-color);
}

.ri-arrow-right-s-line,
.ri-arrow-left-s-line {
  font-size: 60px;
  color: var(--primary-color) !important;
}
/*---------------------------------------
      -----------end carousel---------
----------------------------------------------*/

/*---------------------------------------
      -----------contact-us/---------
----------------------------------------------*/

.text-end {
  text-align: left !important;
}

/*---------------------------------------
      -----------end carousel---------
----------------------------------------------*/

/* .woocommerce ul.products li.product,
.woocommerce-page ul.products li.product {
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 0px 8px 0 rgba(0, 0, 0, 0.19);
} */

.woocommerce ul.products li.product .woocommerce-loop-category__title,
.woocommerce ul.products li.product .woocommerce-loop-product__title,
.woocommerce ul.products li.product h3 {
  text-align: center;
  font-size: 18px;
  font-weight: 600;
}

.woocommerce ul.products li.product .price {
  display: block;
  font-weight: 700;
  margin-bottom: 0.5em;
  font-size: 16px;
  text-align: center;
}

.woocommerce ul.products li.product .button {
  margin-bottom: 1em;
  display: flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
  color: #ffffff;
  background-color: #f3273e;
}

.woocommerce .products ul::after,
.woocommerce .products ul::before,
.woocommerce ul.products::after,
.woocommerce ul.products::before {
  content: " ";
  display: none !important;
}

.section-middle-about-us {
  padding: 50px 0px 50px 0px;
  --widgets-spacing: 20px 20px;
  background-color: #00b6d2;
  background-image: url("../assets/background_img_02.jpg");
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  background-attachment: fixed;
  position: relative;
  text-align: center;
}

.section-middle-about-us-background-overlay {
  background-color: #00b6d2;
  position: absolute;
  height: 100%;
  width: 100%;
  top: 0;
  left: 0;
  opacity: 0.82;
}

.section-middle-about-us-container {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  margin: auto;
  color: #fff;
  padding: 5px 20px 20px 5px;
}

.section-middle-about-us h1 {
  font-size: 45px;
  font-weight: 500;
}

.section-middle-about-us li {
  font-size: 22px;
  font-weight: 300;
  margin: 0 0 10px 0;
}

.section-middle-about-us-column {
  max-width: 1200px;
  display: flex;
  margin-right: auto;
  margin-left: auto;
  position: relative;
}

.section-middle-about-us-image-right {
  z-index: 1;
  text-align: right;
  margin-block-end: 20px;
  margin-bottom: 20px;
  width: 100%;
}

.section-middle-about-us-image-left {
  z-index: 1;
  text-align: left;
  margin-block-end: 20px;
  margin-bottom: 20px;
  width: 100%;
}

.section-middle-about-us-image-left .ection-middle-about-us-image-container {
  margin: -230px 0px -145px 0px;
}
.section-middle-about-us-image-container {
  margin: -145px 0px -271px 0px;
}
.section-middle-about-us-image-container img {
  width: 19%;

  vertical-align: middle;
  display: inline-block;
}

.section-middle-about-us-heading h2 {
  padding-top: 100px;
  color: #fff;
  font-size: 35px !important;
  margin: auto;
  text-align: center;
}

.section-middle-about-us-text {
  padding-bottom: 100px;
  color: #fff;
  font-size: 20px !important;
  margin: auto 200px;
  text-align: center;
  font-weight: 300;
}

.fadeInUp {
  animation-name: fadeInUp;
}

.bg-black {
  background-color: #1d242d !important;
  text-align: center;
  font-weight: 300;
}
.copyright-text {
  margin: 0;
}
.footer-list-ul {
  list-style: none;
  color: #fff;
  margin: 0;
  padding: 0 10px;
  display: flex;
}
.footer-list-ul li a {
  color: #fff;
  text-decoration: none;
  font-size: 18px;
  padding: 0 10px;
}
.footer-logo {
  height: 40px;
}

.footer-logo a img {
  height: 100%;
}

.footer-logo-container {
  display: flex;
  align-items: center;
  padding-right: 40px;
}

.footer-about-us p {
  font-size: 18px;
  font-weight: 300;
  color: #fff;
}

/*----------------------
single-product --------------------*/

.single-product-container {
  padding-top: 100px;
}

.wc-block-cart .wc-block-cart__submit-container {
  padding: 0;
  background: rgb(82, 24, 135);
}

.wc-block-cart .wc-block-cart__submit-container a {
  color: #fff;
  text-decoration: none;
}

.wc-block-components-totals-shipping .wc-block-components-totals-item {
  flex-direction: column;
}
body:not(.woocommerce-block-theme-has-button-styles)
  .wc-block-components-button:not(.is-link) {
  min-height: 3em;
  background-color: rgb(82, 24, 135);
  color: #fff;
}

/********--------------*/

/*----------------------
animation --------------------*/
.animated {
  animation-duration: 1.25s;
}
@keyframes bounce {
  20%,
  53%,
  80%,
  from,
  to {
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    transform: translate3d(0, 0, 0);
  }

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

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

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

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

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

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

.flash {
  animation-name: flash;
}

@keyframes pulse {
  from,
  to {
    transform: scale3d(1, 1, 1);
  }

  50% {
    transform: scale3d(1.05, 1.05, 1.05);
  }
}

.pulse {
  animation-name: pulse;
}

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

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

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

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

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

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

.rubberBand {
  animation-name: rubberBand;
}

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

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

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

.shake {
  animation-name: shake;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.tada {
  animation-name: tada;
}

@keyframes wobble {
  from,
  to {
    transform: none;
  }

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

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

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

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

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

.wobble {
  animation-name: wobble;
}

@keyframes jello {
  11.1%,
  from,
  to {
    transform: none;
  }

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

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

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

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

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

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

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

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

@keyframes bounceIn {
  20%,
  40%,
  60%,
  80%,
  from,
  to {
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }

  0% {
    opacity: 0;
    transform: scale3d(0.3, 0.3, 0.3);
  }

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

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

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

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

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

.bounceIn {
  animation-name: bounceIn;
}

@keyframes bounceInDown {
  60%,
  75%,
  90%,
  from,
  to {
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }

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

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

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

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

  to {
    transform: none;
  }
}

.bounceInDown {
  animation-name: bounceInDown;
}

@keyframes bounceInLeft {
  60%,
  75%,
  90%,
  from,
  to {
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }

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

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

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

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

  to {
    transform: none;
  }
}

.bounceInLeft {
  animation-name: bounceInLeft;
}

@keyframes bounceInRight {
  60%,
  75%,
  90%,
  from,
  to {
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }

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

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

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

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

  to {
    transform: none;
  }
}

.bounceInRight {
  animation-name: bounceInRight;
}

@keyframes bounceInUp {
  60%,
  75%,
  90%,
  from,
  to {
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }

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

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

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

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

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

.bounceInUp {
  animation-name: bounceInUp;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

.fadeIn {
  animation-name: fadeIn;
}

@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translate3d(0, -100%, 0);
  }

  to {
    opacity: 1;
    transform: none;
  }
}

.fadeInDown {
  animation-name: fadeInDown;
}

@keyframes fadeInLeft {
  from {
    opacity: 0;
    transform: translate3d(-100%, 0, 0);
  }

  to {
    opacity: 1;
    transform: none;
  }
}

.fadeInLeft {
  animation-name: fadeInLeft;
}

@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translate3d(100%, 0, 0);
  }

  to {
    opacity: 1;
    transform: none;
  }
}

.fadeInRight {
  animation-name: fadeInRight;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translate3d(0, 100%, 0);
  }

  to {
    opacity: 1;
    transform: none;
  }
}

.fadeInUp {
  animation-name: fadeInUp;
}

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

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

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

  to {
    transform: none;
    opacity: 1;
  }
}

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

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

  to {
    transform-origin: center;
    transform: none;
    opacity: 1;
  }
}

.rotateIn {
  animation-name: rotateIn;
}

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

  to {
    transform-origin: left bottom;
    transform: none;
    opacity: 1;
  }
}

.rotateInDownLeft {
  animation-name: rotateInDownLeft;
}

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

  to {
    transform-origin: right bottom;
    transform: none;
    opacity: 1;
  }
}

.rotateInDownRight {
  animation-name: rotateInDownRight;
}

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

  to {
    transform-origin: left bottom;
    transform: none;
    opacity: 1;
  }
}

.rotateInUpLeft {
  animation-name: rotateInUpLeft;
}

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

  to {
    transform-origin: right bottom;
    transform: none;
    opacity: 1;
  }
}

.rotateInUpRight {
  animation-name: rotateInUpRight;
}

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

  to {
    opacity: 1;
    transform: none;
  }
}

.rollIn {
  animation-name: rollIn;
}

@keyframes zoomIn {
  from {
    opacity: 0;
    transform: scale3d(0.3, 0.3, 0.3);
  }

  50% {
    opacity: 1;
  }
}

.zoomIn {
  animation-name: zoomIn;
}

@keyframes zoomInDown {
  from {
    opacity: 0;
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -1000px, 0);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }

  60% {
    opacity: 1;
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}

.zoomInDown {
  animation-name: zoomInDown;
}

@keyframes zoomInLeft {
  from {
    opacity: 0;
    transform: scale3d(0.1, 0.1, 0.1) translate3d(-1000px, 0, 0);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }

  60% {
    opacity: 1;
    transform: scale3d(0.475, 0.475, 0.475) translate3d(10px, 0, 0);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}

.zoomInLeft {
  animation-name: zoomInLeft;
}

@keyframes zoomInRight {
  from {
    opacity: 0;
    transform: scale3d(0.1, 0.1, 0.1) translate3d(1000px, 0, 0);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }

  60% {
    opacity: 1;
    transform: scale3d(0.475, 0.475, 0.475) translate3d(-10px, 0, 0);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}

.zoomInRight {
  animation-name: zoomInRight;
}

@keyframes zoomInUp {
  from {
    opacity: 0;
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 1000px, 0);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }

  60% {
    opacity: 1;
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}

.zoomInUp {
  animation-name: zoomInUp;
}

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

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

.slideInDown {
  animation-name: slideInDown;
}

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

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

.slideInLeft {
  animation-name: slideInLeft;
}

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

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

.slideInRight {
  animation-name: slideInRight;
}

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

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

.slideInUp {
  animation-name: slideInUp;
}
