@import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@100;400;500;600;700&display=swap");
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --yellow: #FFD014;
  --sunflower: #EDAB01;
  --darkyellow: #261b00;
  --white: #fff;
  --black: #150c00;
  --blue-gradiant: linear-gradient( 90deg, rgb(116,82,231) 0%, rgb(183,64,211) 100%);
  --purple-gradiant: linear-gradient( 90deg, rgb(183,64,211) 0%, rgb(116,82,231) 100%);
  --yellow-gradiant: linear-gradient( 90deg, rgb(211, 169, 64) 0%, rgb(226, 231, 82) 100%);
  --gray-gradiant: linear-gradient( 90deg, rgb(220, 220, 220) 0%, rgb(242, 242, 242) 100%);
  --purple: #b042d6;
  --darkBlue-opacity-10: rgba(6, 12, 68, 0.47);
  --darkBlue-opacity-60: rgba(9, 5, 53, 0.62);
  --darkblue: #170047;
  --ghost: rgba(217, 217, 217, 0.1);
  --blue-sky: #0085FF;
  --blue: #0a59c0a9;
}

body {
  background-image: url(../img/background-img.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: top center;
  background-attachment: fixed;
}

.container {
  max-width: 1600px;
  width: 90%;
  margin: 0 auto;
  display: block;
}

.product-offer {
  padding: 40px 0;
}
.product-offer .products {
  display: flex;
  align-items: center;
  justify-content: space-evenly;
}
.product-offer .products .lg-icon {
  color: var(--white);
  opacity: 0.6;
  transition: all 200ms linear;
}
.product-offer .products .lg-icon:hover {
  opacity: 1;
  cursor: pointer;
}
.product-offer .products .lg-icon.red:hover {
  animation: glowTextRed 1s linear infinite;
}
.product-offer .products .lg-icon.purple:hover {
  animation: glowTextPurple 1s linear infinite;
}
.product-offer .products .lg-icon.yellow:hover {
  animation: glowTextYellow 1s linear infinite;
}
@media screen and (max-width: 980px) {
  .product-offer .products {
    flex-wrap: wrap;
  }
  .product-offer .products .lg-icon {
    font-size: 20vw;
  }
}

@keyframes glowTextRed {
  0% {
    text-shadow: 0px 0px 5px #ff0000, 0px 0px 5px #614ad3;
  }
  100% {
    text-shadow: 0px 0px 20px #ff0000, 0px 0px 20px #614ad3;
  }
}
@keyframes glowTextPurple {
  0% {
    text-shadow: 0px 0px 5px #b042d6, 0px 0px 5px #614ad3;
  }
  100% {
    text-shadow: 0px 0px 20px #b042d6, 0px 0px 20px #614ad3;
  }
}
@keyframes glowTextYellow {
  0% {
    text-shadow: 0px 0px 5px #FFD014, 0px 0px 5px #614ad3;
  }
  100% {
    text-shadow: 0px 0px 20px #FFD014, 0px 0px 20px #614ad3;
  }
}
.service-wrapper {
  margin: 50px auto;
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
}
@media screen and (min-width: 980px) {
  .service-wrapper {
    gap: 3%;
  }
}

.blurb-box {
  flex: 0 100%;
  border: 1px solid #987d10;
  padding: 30px;
  border-radius: 20px;
  background-color: rgba(68, 63, 6, 0.47);
}
.blurb-box .blurb-img {
  margin-bottom: 30px;
}
.blurb-box .blurb-img img {
  max-width: 60px;
  display: block;
  margin: 0 auto;
}
.blurb-box .blurb-copy {
  color: var(--white);
  text-align: center;
}
.blurb-box .blurb-copy h3 {
  font-size: 22px !important;
  margin-bottom: 30px;
}
@media screen and (min-width: 980px) {
  .blurb-box {
    flex: 0 30%;
  }
}

.promotion-sec {
  padding: 60px 0;
  background-color: rgba(255, 246, 148, 0.8);
}
.promotion-sec .promo-slider {
  margin-top: 30px;
}
.promotion-sec .promo-slider .slick-slide {
  padding: 0 20px;
}
.promotion-sec .promo-slider .slick-slide img {
  border-radius: 15px;
  max-width: 100%;
  height: auto;
}
.promotion-sec .promo-slider .slick-dots {
  bottom: -40px;
}
.promotion-sec .promo-slider .slick-dots li button:before {
  opacity: 1;
  color: #fff;
  font-size: 10px;
}
.promotion-sec .promo-slider .slick-active button:before {
  color: var(--sunflower) !important;
}
.promotion-sec .promo-slider .slick-prev {
  left: 0;
}
.promotion-sec .promo-slider .slick-next {
  right: 0;
}

.provider-sec {
  padding: 60px 0;
  background-color: rgba(53, 37, 5, 0.5);
}

.game-providers {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  padding: 40px 0 0;
}
.game-providers > img {
  max-width: 40px;
  filter: grayscale(1);
  mix-blend-mode: luminosity;
  transition: all 300ms linear;
}
.game-providers > img:hover {
  filter: grayscale(0);
  mix-blend-mode: normal;
  cursor: pointer;
}
@media screen and (max-width: 768px) {
  .game-providers > img {
    max-width: 30px;
  }
}

.intro-section {
  padding: 60px 0;
}

.section-content {
  padding: 0px 0 60px;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0 30px;
  justify-content: center;
}
.section-content.reversed {
  flex-direction: row-reverse;
}
.section-content > div {
  flex: 0 calc(50% - 30px);
}
.section-content > div.section-copy {
  color: var(--white);
}
.section-content > div.section-copy h2 {
  padding-bottom: 20px;
}
.section-content > div.section-copy p:not(:last-of-type) {
  padding-bottom: 20px;
}
.section-content > div.section-copy p a {
  color: var(--white);
  font-weight: 600;
  text-decoration: underline;
}
.section-content > div.section-img img {
  max-width: 100%;
  height: auto;
  display: block;
  margin: 0 auto;
}
@media only screen and (max-width: 980px) {
  .section-content {
    gap: 30px 0;
  }
  .section-content > div {
    flex: 0 100%;
  }
}

.promotion-gallery {
  padding: 80px 0 30px;
}
@media screen and (max-width: 767px) {
  .promotion-gallery {
    padding: 40px 0 30px;
  }
}

.faq-cont {
  margin-bottom: 60px;
}

.accordion {
  background-color: #fff098;
  color: #444;
  cursor: pointer;
  padding: 18px;
  width: 100%;
  border: none;
  text-align: left;
  outline: none;
  font-size: 15px;
  transition: 0.4s;
}

.active, .accordion:hover {
  background-color: #ccc;
}

.panel {
  padding: 0 18px;
  display: none;
  background-color: white;
  overflow: hidden;
}

.accordion-container {
  margin-bottom: 10px;
}

.accordion {
  background-color: #fff098;
  color: #444;
  cursor: pointer;
  padding: 18px;
  width: 100%;
  border: none;
  text-align: left;
  outline: none;
  font-size: 15px;
  transition: 0.4s;
  position: relative;
}

.accordion::after {
  content: "";
  position: absolute;
  right: 20px;
  border: solid #3b3301;
  border-width: 0 2px 2px 0;
  padding: 5px;
  transform: rotate(45deg);
  transition: transform 0.3s;
}

.active, .accordion:hover {
  background-color: #ccc;
}

.accordion.active::after {
  transform: rotate(-135deg);
}

.panel {
  padding: 8px 18px;
  display: none;
  background-color: white;
  overflow: hidden;
}

body {
  font-family: "Montserrat", sans-serif;
}

h1 {
  font-size: clamp(2rem, 0.8333rem + 2.4306vw, 3.75rem);
}

h2 {
  font-size: clamp(2rem, 1.5833rem + 0.8681vw, 2.325rem);
}

h3 {
  font-size: clamp(1.875rem, 1.625rem + 0.5208vw, 2.25rem);
}

h4 {
  font-size: clamp(1.4rem, 1.2rem + 0.5208vw, 2rem);
  margin-bottom: 30px;
}

p {
  line-height: 1.7em;
}

@font-face {
  font-family: "icomoon";
  src: url("../css/fonts/icomoon.eot?27n2ch");
  src: url("../css/fonts/icomoon.eot?27n2ch#iefix") format("embedded-opentype"), url("../css/fonts/icomoon.ttf?27n2ch") format("truetype"), url("../css/fonts/icomoon.woff?27n2ch") format("woff"), url("../css/fonts/icomoon.svg") format("svg");
  font-weight: normal;
  font-style: normal;
  font-display: block;
}
[class^=icon-], [class*=" icon-"] {
  /* use !important to prevent issues with browser extensions that change fonts */
  font-family: "icomoon" !important;
  speak: never;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  /* Better Font Rendering =========== */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.icon-sports-betting-icon:before {
  content: "\e900";
}

.icon-live-casio-icon:before {
  content: "\e901";
}

.icon-slot-games-icon:before {
  content: "\e902";
}

.text-center p > a {
  text-decoration: underline;
  color: #fff;
  font-weight: 600;
}

.lg-icon {
  font-size: 120px;
}

.text-white {
  color: var(--white);
}

.text-dark {
  color: var(--darkyellow);
}

.text-yellow {
  color: var(--sunflower);
}

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

header {
  padding: 10px 0;
}
header .wrapper {
  max-width: 1600px;
  width: 90%;
  display: block;
  margin: 0 auto;
}
@media screen and (max-width: 1180px) {
  header .wrapper {
    width: 90%;
  }
}
@media screen and (max-width: 980px) {
  header .wrapper {
    width: 100%;
  }
}
header .wrapper nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
header .wrapper nav .nav-main {
  display: flex;
  align-items: center;
  gap: 0 50px;
}
header .wrapper nav .nav-main .nav-menu ul {
  display: flex;
  flex-wrap: wrap;
  gap: 0px;
}
header .wrapper nav .nav-main .nav-menu ul li {
  list-style: none;
}
header .wrapper nav .nav-main .nav-menu ul li > a {
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  padding: 10px;
  display: block;
}
header .wrapper nav .nav-main .nav-menu ul li > a:hover, header .wrapper nav .nav-main .nav-menu ul li > a.active {
  color: yellow;
}
header .wrapper nav .nav-main .nav-menu ul li.active a {
  color: yellow;
}
header .wrapper nav .nav-btn {
  display: flex;
  gap: 10px;
}
header .wrapper nav .burger-btn {
  display: none;
}
@media screen and (max-width: 1180px) and (min-width: 981px) {
  header .wrapper nav {
    flex-wrap: wrap;
  }
  header .wrapper nav .nav-main {
    flex: 0 100%;
    order: 2;
  }
  header .wrapper nav .nav-btn {
    flex: 0 100%;
    order: 1;
    justify-content: flex-end;
  }
}
@media screen and (max-width: 980px) {
  header .wrapper nav {
    flex-wrap: wrap;
  }
  header .wrapper nav .nav-main {
    flex-wrap: wrap;
    flex: 0 100%;
    height: 62px;
  }
  header .wrapper nav .nav-logo {
    flex: 0 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 10px;
  }
  header .wrapper nav .nav-logo a img {
    max-width: 180px;
  }
  header .wrapper nav .nav-btn {
    gap: 0;
    flex: 0 100%;
  }
  header .wrapper nav .nav-btn .btn {
    flex: 0 50%;
  }
  header .wrapper nav .nav-menu {
    display: block;
    position: absolute;
    background: var(--darkblue);
    width: 0;
    height: auto;
    z-index: 999;
    top: 65px;
    right: 0;
    height: 0;
    overflow: hidden;
    padding: 0;
    transition: all 200ms linear;
  }
  header .wrapper nav .nav-menu .main-menu {
    flex-direction: column;
    padding: 20px;
  }
  header .wrapper nav .nav-menu .main-menu li {
    text-align: center;
  }
  header .wrapper nav .burger-btn {
    background-color: transparent;
    border: none;
    display: block;
  }
  header .wrapper nav .burger-btn span {
    display: block;
    width: 33px;
    height: 4px;
    margin-bottom: 5px;
    position: relative;
    background: #cdcdcd;
    border-radius: 3px;
    z-index: 1;
    transform-origin: 4px 0px;
    transition: transform 0.5s cubic-bezier(0.77, 0.2, 0.05, 1), background 0.5s cubic-bezier(0.77, 0.2, 0.05, 1), opacity 0.55s ease;
  }
  header .wrapper nav .burger-btn.active span {
    opacity: 1;
    transform: rotate(45deg) translate(-7px, -15px);
    background: #fff;
  }
  header .wrapper nav .burger-btn.active span:nth-last-child(3) {
    opacity: 0;
    transform: rotate(0deg) scale(0.2, 0.2);
  }
  header .wrapper nav .burger-btn.active span:nth-last-child(2) {
    transform: rotate(-45deg) translate(-5px, 10px);
  }
}

.btn {
  display: inline-block;
  padding: 10px 20px;
  border-radius: 8px;
  font-family: inherit;
  font-size: 18px;
  color: #fff;
  font-weight: 600;
  text-decoration: none;
  transition: all 300ms linear;
  min-width: 130px;
  text-align: center;
}
.btn.primary {
  background-image: var(--yellow-gradiant);
  border: 2px solid #5e4608;
}
.btn.primary:hover {
  border: 2px solid #fcca00;
  background-image: var(--yellow-gradiant);
  color: #5e4608;
}
.btn.ghost {
  background-color: var(--ghost);
  border: 2px solid var(--white);
}
.btn.ghost:hover {
  background-color: var(--white);
  color: var(--darkblue);
}

:root {
  --topPostion: 0px;
}

.hero-sec {
  padding: 50px 0;
  position: relative;
}
@media screen and (max-width: 980px) {
  .hero-sec {
    padding: 50px 0 20px;
  }
  .hero-sec .container {
    width: 100%;
  }
}
.hero-sec .hero-banner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}
.hero-sec .hero-banner > div {
  flex: 0 50%;
  position: relative;
}
@media screen and (max-width: 980px) {
  .hero-sec .hero-banner > div {
    flex: 0 100%;
  }
  .hero-sec .hero-banner .hero-copy {
    order: 2;
    position: relative;
    z-index: 99;
    background-image: linear-gradient(0deg, rgba(0, 0, 0, 0.7) 50%, rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0) 100%);
    padding: 70px 20px 30px;
  }
  .hero-sec .hero-banner .hero-image {
    order: 1;
  }
}
@media screen and (max-width: 680px) {
  .hero-sec .hero-banner > div {
    flex: 0 100%;
  }
  .hero-sec .hero-banner .hero-copy {
    order: 2;
    position: relative;
    z-index: 99;
    background-image: linear-gradient(0deg, rgba(0, 0, 0, 0.7) 50%, rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0) 100%);
    padding: 20px 20px 30px;
  }
  .hero-sec .hero-banner .hero-image {
    order: 1;
  }
}
.hero-sec .hero-banner .hero-copy {
  color: #fff;
}
.hero-sec .hero-banner .hero-copy h1 {
  color: var(--yellow);
  margin-bottom: 30px;
}
.hero-sec .hero-banner .hero-copy h1 span {
  font-size: 2.3vw;
  display: block;
  color: var(--white);
}
.hero-sec .hero-banner .hero-copy p {
  margin-bottom: 30px;
}
@media screen and (max-width: 680px) {
  .hero-sec .hero-banner .hero-copy h1 span {
    font-size: 4vw;
    display: block;
    color: var(--white);
  }
}
.hero-sec .hero-banner .hero-image {
  min-height: 580px;
  height: inherit;
  animation-delay: 3s;
}
.hero-sec .hero-banner .hero-image img {
  max-width: 100%;
  height: auto;
  display: block;
  animation-fill-mode: forwards;
}
.hero-sec .hero-banner .hero-image .main-image {
  position: absolute;
  z-index: 1;
  margin-top: translateY(var(--topPostion));
}
.hero-sec .hero-banner .hero-image .ball-floating {
  position: absolute;
  top: 48%;
  margin-top: translateY(var(--topPostion));
  z-index: 4;
}
.hero-sec .hero-banner .hero-image .clover-floating {
  position: absolute;
  right: 20%;
  top: 8%;
  z-index: -1;
  margin-top: translateY(var(--topPostion));
}
.hero-sec .hero-banner .hero-image .gold-floating {
  position: absolute;
  right: 18%;
  top: 20%;
  transform: translateY(var(--topPostion));
}
.hero-sec .hero-banner .hero-image .heart-floating {
  position: absolute;
  left: 28%;
  top: 10%;
  margin-top: translateY(var(--topPostion));
}
.hero-sec .hero-banner .hero-image .scatter-floating {
  position: absolute;
  margin-top: translateY(var(--topPostion));
}
.hero-sec .hero-banner .hero-image .wild-floating {
  position: absolute;
  margin-top: translateY(var(--topPostion));
}
@media screen and (max-width: 1280px) {
  .hero-sec .hero-banner .hero-image {
    min-height: 480px;
  }
}
@media screen and (max-width: 1024px) {
  .hero-sec .hero-banner .hero-image {
    min-height: 380px;
  }
}
@media screen and (max-width: 980px) {
  .hero-sec .hero-banner .hero-image {
    min-height: 420px;
  }
  .hero-sec .hero-banner .hero-image .scatter-floating {
    position: absolute;
    max-width: 170px;
    margin-top: translateY(var(--topPostion));
  }
  .hero-sec .hero-banner .hero-image .wild-floating {
    position: absolute;
    max-width: 150px;
    bottom: -6% !important;
    margin-top: translateY(var(--topPostion));
  }
  .hero-sec .hero-banner .hero-image .main-image {
    max-width: 90%;
    left: 8%;
  }
}
@media screen and (max-width: 580px) {
  .hero-sec .hero-banner .hero-image {
    min-height: 380px;
  }
  .hero-sec .hero-banner .hero-image .scatter-floating {
    position: absolute;
    max-width: 120px;
    margin-top: translateY(var(--topPostion));
  }
  .hero-sec .hero-banner .hero-image .wild-floating {
    position: absolute;
    max-width: 100px;
    bottom: 10% !important;
    margin-top: translateY(var(--topPostion));
  }
  .hero-sec .hero-banner .hero-image .main-image {
    max-width: 100%;
    left: unset;
  }
}

@keyframes levitate {
  0% {
    transform: translateY(calc(var(--topPostion)));
  }
  50% {
    transform: translateY(calc(var(--topPostion) + 15px));
  }
  100% {
    transform: translateY(calc(var(--topPostion)));
  }
}
@keyframes surprise {
  0% {
    transform: translateY(calc(var(--topPostion)));
  }
  50% {
    transform: translateY(calc(var(--topPostion) + 15px));
  }
  100% {
    transform: translateY(calc(var(--topPostion)));
  }
}
.popular-games-gallery {
  margin-top: 60px;
  display: block;
  margin-bottom: 60px;
}
.popular-games-gallery .popular-game-title {
  position: absolute;
  z-index: 99;
  width: 100%;
  padding: 20px 0;
  font-weight: 600;
}
.popular-games-gallery .popular-game-slider {
  padding: 0;
  height: 100%;
}
.popular-games-gallery .popular-game-slider .slick-list {
  height: 100%;
}
.popular-games-gallery .popular-game-slider .slick-list .slick-track {
  height: 100%;
  display: flex;
}
.popular-games-gallery .popular-game-slider .slick-list .slick-track .game-box-slide {
  background-size: cover;
  background-repeat: no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  position: relative;
}
.popular-games-gallery .popular-game-slider .slick-list .slick-track .game-box-slide > img {
  max-width: 300px;
  height: auto;
  position: relative;
  z-index: 2;
}
.popular-games-gallery .popular-game-slider .slick-list .slick-track .game-box-slide .bg-img {
  max-width: unset;
  height: 120%;
  width: auto;
  -o-object-fit: cover;
     object-fit: cover;
  position: absolute;
  z-index: 1;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  filter: blur(12px);
  opacity: 0.8;
}
@media screen and (min-width: 981px) {
  .popular-games-gallery .popular-game-slider .slick-list .slick-track .game-box-slide .bg-img {
    max-width: 100%;
    height: 110%;
    width: auto;
    -o-object-fit: cover;
       object-fit: cover;
    filter: blur(10px);
  }
}
.popular-games-gallery .popular-game-slider .slick-next {
  right: 40px;
}
.popular-games-gallery .popular-game-slider .slick-prev {
  left: 40px;
}
.popular-games-gallery .popular-game-slider .slick-next, .popular-games-gallery .popular-game-slider .slick-prev {
  z-index: 99;
}
@media only screen and (max-width: 600px) {
  .popular-games-gallery .popular-game-slider .slick-next {
    right: 10px;
  }
  .popular-games-gallery .popular-game-slider .slick-prev {
    left: 10px;
  }
}

.popular-games {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}
.popular-games > div {
  position: relative;
  border-radius: 10px;
  overflow: hidden;
  border: 2px solid transparent;
  transition: all 200ms linear;
  height: unset;
  flex: 0 calc(50% - 10px);
  height: 180px;
}
.popular-games > div > img {
  max-width: 100%;
  height: 105%;
  width: auto;
  -o-object-fit: cover;
     object-fit: cover;
  transition: all 200ms linear;
}
.popular-games > div:first-child {
  flex: 0 100% !important;
  height: 360px;
}
@media screen and (max-width: 480px) {
  .popular-games > div {
    height: 130px;
  }
}
@media screen and (min-width: 981px) {
  .popular-games {
    margin: 40px auto;
    display: grid;
    grid-template-rows: 1fr 1fr 1fr 1fr;
    grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
    gap: 10px;
  }
  .popular-games > div {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    border: 2px solid transparent;
    transition: all 200ms linear;
    height: unset;
  }
  .popular-games > div:not(:first-child):hover {
    cursor: pointer;
    border: 2px solid var(--sunflower);
  }
  .popular-games > div:not(:first-child):hover img {
    height: 105%;
    opacity: 0.8;
  }
  .popular-games > div > img {
    max-width: 100%;
    height: 100%;
    width: auto;
    -o-object-fit: cover;
       object-fit: cover;
    transition: all 200ms linear;
  }
  .popular-games .games-box:first-child {
    grid-row-start: 1;
    grid-column-start: 1;
    grid-row-end: 3;
    grid-column-end: 3;
    position: relative;
    overflow: hidden;
    display: inline;
  }
  .popular-games .games-box:first-child > div {
    width: 100%;
    height: 100%;
  }
}

.promo-gallery {
  display: flex;
  flex-wrap: wrap;
  flex-direction: row;
  gap: 30px;
  justify-content: center;
}
.promo-gallery .promo-box {
  padding: 20px;
  border-radius: 20px;
  border: 1px solid var(--blue-sky);
  background-color: var(--darkBlue-opacity-10);
  flex: 0 calc(50% - 40px);
  transition: all 200ms linear;
}
.promo-gallery .promo-box:hover {
  background-color: var(--sunflower);
  transform: translateY(-10px);
  cursor: pointer;
}
@media screen and (max-width: 980px) {
  .promo-gallery .promo-box {
    flex: 0 100%;
  }
}
.promo-gallery .promo-img {
  height: 300px;
  width: 100%;
  display: block;
}
.promo-gallery .promo-img img {
  max-width: 100%;
  height: 100%;
  width: auto !important;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}
@media screen and (max-width: 1440px) {
  .promo-gallery .promo-img {
    height: 170px;
  }
  .promo-gallery .promo-img img {
    max-width: 100%;
    height: 100%;
    width: auto !important;
    -o-object-fit: cover;
       object-fit: cover;
    -o-object-position: center;
       object-position: center;
  }
}
@media screen and (max-width: 1023px) {
  .promo-gallery .promo-img {
    height: 150px;
  }
  .promo-gallery .promo-img img {
    max-width: 100%;
    height: 100%;
    width: auto !important;
    -o-object-fit: cover;
       object-fit: cover;
    -o-object-position: center;
       object-position: center;
  }
}
@media screen and (max-width: 980px) {
  .promo-gallery .promo-img {
    height: auto;
  }
  .promo-gallery .promo-img img {
    max-width: 100%;
    height: auto;
    width: auto !important;
    -o-object-fit: cover;
       object-fit: cover;
    -o-object-position: center;
       object-position: center;
  }
}
.promo-gallery .promo-copy {
  color: #fff;
}
.promo-gallery .promo-copy h3 {
  margin-top: 20px;
  font-size: 28px;
}
@media screen and (max-width: 1023px) {
  .promo-gallery .promo-copy h3 {
    margin-top: 20px;
    font-size: 24px;
  }
}

footer .cta-sec {
  padding: 60px 0;
}

.join-social {
  background-color: #e3d991;
  padding: 60px 0;
  color: var(--darkyellow);
}
.join-social h4, .join-social h2 {
  color: inherit;
}

.cta-footer {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 20px;
  justify-content: space-between;
}
.cta-footer > div {
  flex: 0 calc(50% - 20px);
}
@media screen and (max-width: 980px) {
  .cta-footer > div {
    flex: 0 100%;
  }
}
.cta-footer .cta-image {
  text-align: center;
}
.cta-footer .cta-image img {
  border-radius: 15px;
  max-width: 100%;
  width: 100%;
  height: auto;
  margin: 0 auto;
}
.cta-footer .cta-copy {
  text-align: left;
  color: var(--white);
}
.cta-footer .cta-copy p, .cta-footer .cta-copy h2 {
  margin-bottom: 30px;
}

.social-media {
  padding: 40px 0 0;
  display: flex;
  justify-content: center;
  gap: 0 30px;
}

.copyright-sec {
  background-color: var(--black);
  padding: 15px 0;
}

/*!
 * animate.css -http://daneden.me/animate
 * Version - 3.5.1
 * Licensed under the MIT license - http://opensource.org/licenses/MIT
 *
 * Copyright (c) 2016 Daniel Eden
 */
.animated {
  animation-duration: 1s;
  animation-fill-mode: both;
}

.animated.infinite {
  animation-iteration-count: infinite;
}

.animated.hinge {
  animation-duration: 2s;
}

.animated.bounceIn, .animated.bounceOut, .animated.flipOutX, .animated.flipOutY {
  animation-duration: 0.75s;
}
@keyframes bounce {
  0%, 20%, 53%, 80%, to {
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    transform: translateZ(0);
  }
  40%, 43% {
    transform: translate3d(0, -30px, 0);
  }
  40%, 43%, 70% {
    animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
  }
  70% {
    transform: translate3d(0, -15px, 0);
  }
  90% {
    transform: translate3d(0, -4px, 0);
  }
}
.bounce {
  animation-name: bounce;
  transform-origin: center bottom;
}
@keyframes flash {
  0%, 50%, to {
    opacity: 1;
  }
  25%, 75% {
    opacity: 0;
  }
}
.flash {
  animation-name: flash;
}
@keyframes pulse {
  0% {
    transform: scaleX(1);
  }
  50% {
    transform: scale3d(1.05, 1.05, 1.05);
  }
  to {
    transform: scaleX(1);
  }
}
.pulse {
  animation-name: pulse;
}
@keyframes rubberBand {
  0% {
    transform: scaleX(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);
  }
  to {
    transform: scaleX(1);
  }
}
.rubberBand {
  animation-name: rubberBand;
}
@keyframes shake {
  0%, to {
    transform: translateZ(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: rotate(15deg);
  }
  40% {
    transform: rotate(-10deg);
  }
  60% {
    transform: rotate(5deg);
  }
  80% {
    transform: rotate(-5deg);
  }
  to {
    transform: rotate(0deg);
  }
}
.swing {
  transform-origin: top center;
  animation-name: swing;
}
@keyframes tada {
  0% {
    transform: scaleX(1);
  }
  10%, 20% {
    transform: scale3d(0.9, 0.9, 0.9) rotate(-3deg);
  }
  30%, 50%, 70%, 90% {
    transform: scale3d(1.1, 1.1, 1.1) rotate(3deg);
  }
  40%, 60%, 80% {
    transform: scale3d(1.1, 1.1, 1.1) rotate(-3deg);
  }
  to {
    transform: scaleX(1);
  }
}
.tada {
  animation-name: tada;
}
@keyframes wobble {
  0% {
    transform: none;
  }
  15% {
    transform: translate3d(-25%, 0, 0) rotate(-5deg);
  }
  30% {
    transform: translate3d(20%, 0, 0) rotate(3deg);
  }
  45% {
    transform: translate3d(-15%, 0, 0) rotate(-3deg);
  }
  60% {
    transform: translate3d(10%, 0, 0) rotate(2deg);
  }
  75% {
    transform: translate3d(-5%, 0, 0) rotate(-1deg);
  }
  to {
    transform: none;
  }
}
.wobble {
  animation-name: wobble;
}
@keyframes jello {
  0%, 11.1%, 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 {
  0%, 20%, 40%, 60%, 80%, 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: scaleX(1);
  }
}
.bounceIn {
  animation-name: bounceIn;
}
@keyframes bounceInDown {
  0%, 60%, 75%, 90%, 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 {
  0%, 60%, 75%, 90%, 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 {
  0%, 60%, 75%, 90%, 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;
  }
}
.bounceInRight {
  animation-name: bounceInRight;
}
@keyframes bounceInUp {
  0%, 60%, 75%, 90%, 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, -20px, 0);
  }
  75% {
    transform: translate3d(0, 10px, 0);
  }
  90% {
    transform: translate3d(0, -5px, 0);
  }
  to {
    transform: translateZ(0);
  }
}
.bounceInUp {
  animation-name: bounceInUp;
}
@keyframes bounceOut {
  20% {
    transform: scale3d(0.9, 0.9, 0.9);
  }
  50%, 55% {
    opacity: 1;
    transform: scale3d(1.1, 1.1, 1.1);
  }
  to {
    opacity: 0;
    transform: scale3d(0.3, 0.3, 0.3);
  }
}
.bounceOut {
  animation-name: bounceOut;
}
@keyframes bounceOutDown {
  20% {
    transform: translate3d(0, 10px, 0);
  }
  40%, 45% {
    opacity: 1;
    transform: translate3d(0, -20px, 0);
  }
  to {
    opacity: 0;
    transform: translate3d(0, 2000px, 0);
  }
}
.bounceOutDown {
  animation-name: bounceOutDown;
}
@keyframes bounceOutLeft {
  20% {
    opacity: 1;
    transform: translate3d(20px, 0, 0);
  }
  to {
    opacity: 0;
    transform: translate3d(-2000px, 0, 0);
  }
}
.bounceOutLeft {
  animation-name: bounceOutLeft;
}
@keyframes bounceOutRight {
  20% {
    opacity: 1;
    transform: translate3d(-20px, 0, 0);
  }
  to {
    opacity: 0;
    transform: translate3d(2000px, 0, 0);
  }
}
.bounceOutRight {
  animation-name: bounceOutRight;
}
@keyframes bounceOutUp {
  20% {
    transform: translate3d(0, -10px, 0);
  }
  40%, 45% {
    opacity: 1;
    transform: translate3d(0, 20px, 0);
  }
  to {
    opacity: 0;
    transform: translate3d(0, -2000px, 0);
  }
}
.bounceOutUp {
  animation-name: bounceOutUp;
}
@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.fadeIn {
  animation-name: fadeIn;
}
@keyframes fadeInDown {
  0% {
    opacity: 0;
    transform: translate3d(0, -100%, 0);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
.fadeInDown {
  animation-name: fadeInDown;
}
@keyframes fadeInDownBig {
  0% {
    opacity: 0;
    transform: translate3d(0, -2000px, 0);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
.fadeInDownBig {
  animation-name: fadeInDownBig;
}
@keyframes fadeInLeft {
  0% {
    opacity: 0;
    transform: translate3d(-100%, 0, 0);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
.fadeInLeft {
  animation-name: fadeInLeft;
}
@keyframes fadeInLeftBig {
  0% {
    opacity: 0;
    transform: translate3d(-2000px, 0, 0);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
.fadeInLeftBig {
  animation-name: fadeInLeftBig;
}
@keyframes fadeInRight {
  0% {
    opacity: 0;
    transform: translate3d(100%, 0, 0);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
.fadeInRight {
  animation-name: fadeInRight;
}
@keyframes fadeInRightBig {
  0% {
    opacity: 0;
    transform: translate3d(2000px, 0, 0);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
.fadeInRightBig {
  animation-name: fadeInRightBig;
}
@keyframes fadeInUp {
  0% {
    opacity: 0;
    transform: translate3d(0, 100%, 0);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
.fadeInUp {
  animation-name: fadeInUp;
}
@keyframes fadeInUpBig {
  0% {
    opacity: 0;
    transform: translate3d(0, 2000px, 0);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
.fadeInUpBig {
  animation-name: fadeInUpBig;
}
@keyframes fadeOut {
  0% {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}
.fadeOut {
  animation-name: fadeOut;
}
@keyframes fadeOutDown {
  0% {
    opacity: 1;
  }
  to {
    opacity: 0;
    transform: translate3d(0, 100%, 0);
  }
}
.fadeOutDown {
  animation-name: fadeOutDown;
}
@keyframes fadeOutDownBig {
  0% {
    opacity: 1;
  }
  to {
    opacity: 0;
    transform: translate3d(0, 2000px, 0);
  }
}
.fadeOutDownBig {
  animation-name: fadeOutDownBig;
}
@keyframes fadeOutLeft {
  0% {
    opacity: 1;
  }
  to {
    opacity: 0;
    transform: translate3d(-100%, 0, 0);
  }
}
.fadeOutLeft {
  animation-name: fadeOutLeft;
}
@keyframes fadeOutLeftBig {
  0% {
    opacity: 1;
  }
  to {
    opacity: 0;
    transform: translate3d(-2000px, 0, 0);
  }
}
.fadeOutLeftBig {
  animation-name: fadeOutLeftBig;
}
@keyframes fadeOutRight {
  0% {
    opacity: 1;
  }
  to {
    opacity: 0;
    transform: translate3d(100%, 0, 0);
  }
}
.fadeOutRight {
  animation-name: fadeOutRight;
}
@keyframes fadeOutRightBig {
  0% {
    opacity: 1;
  }
  to {
    opacity: 0;
    transform: translate3d(2000px, 0, 0);
  }
}
.fadeOutRightBig {
  animation-name: fadeOutRightBig;
}
@keyframes fadeOutUp {
  0% {
    opacity: 1;
  }
  to {
    opacity: 0;
    transform: translate3d(0, -100%, 0);
  }
}
.fadeOutUp {
  animation-name: fadeOutUp;
}
@keyframes fadeOutUpBig {
  0% {
    opacity: 1;
  }
  to {
    opacity: 0;
    transform: translate3d(0, -2000px, 0);
  }
}
.fadeOutUpBig {
  animation-name: fadeOutUpBig;
}
@keyframes flip {
  0% {
    transform: perspective(400px) rotateY(-1turn);
  }
  0%, 40% {
    animation-timing-function: ease-out;
  }
  40% {
    transform: perspective(400px) translateZ(150px) rotateY(-190deg);
  }
  50% {
    transform: perspective(400px) translateZ(150px) rotateY(-170deg);
  }
  50%, 80% {
    animation-timing-function: ease-in;
  }
  80% {
    transform: perspective(400px) scale3d(0.95, 0.95, 0.95);
  }
  to {
    transform: perspective(400px);
    animation-timing-function: ease-in;
  }
}
.animated.flip {
  backface-visibility: visible;
  animation-name: flip;
}
@keyframes flipInX {
  0% {
    transform: perspective(400px) rotateX(90deg);
    opacity: 0;
  }
  0%, 40% {
    animation-timing-function: ease-in;
  }
  40% {
    transform: perspective(400px) rotateX(-20deg);
  }
  60% {
    transform: perspective(400px) rotateX(10deg);
    opacity: 1;
  }
  80% {
    transform: perspective(400px) rotateX(-5deg);
  }
  to {
    transform: perspective(400px);
  }
}
.flipInX {
  backface-visibility: visible !important;
  animation-name: flipInX;
}
@keyframes flipInY {
  0% {
    transform: perspective(400px) rotateY(90deg);
    opacity: 0;
  }
  0%, 40% {
    animation-timing-function: ease-in;
  }
  40% {
    transform: perspective(400px) rotateY(-20deg);
  }
  60% {
    transform: perspective(400px) rotateY(10deg);
    opacity: 1;
  }
  80% {
    transform: perspective(400px) rotateY(-5deg);
  }
  to {
    transform: perspective(400px);
  }
}
.flipInY {
  backface-visibility: visible !important;
  animation-name: flipInY;
}
@keyframes flipOutX {
  0% {
    transform: perspective(400px);
  }
  30% {
    transform: perspective(400px) rotateX(-20deg);
    opacity: 1;
  }
  to {
    transform: perspective(400px) rotateX(90deg);
    opacity: 0;
  }
}
.flipOutX {
  animation-name: flipOutX;
  backface-visibility: visible !important;
}
@keyframes flipOutY {
  0% {
    transform: perspective(400px);
  }
  30% {
    transform: perspective(400px) rotateY(-15deg);
    opacity: 1;
  }
  to {
    transform: perspective(400px) rotateY(90deg);
    opacity: 0;
  }
}
.flipOutY {
  backface-visibility: visible !important;
  animation-name: flipOutY;
}
@keyframes lightSpeedIn {
  0% {
    transform: translate3d(100%, 0, 0) skewX(-30deg);
    opacity: 0;
  }
  60% {
    transform: skewX(20deg);
  }
  60%, 80% {
    opacity: 1;
  }
  80% {
    transform: skewX(-5deg);
  }
  to {
    transform: none;
    opacity: 1;
  }
}
.lightSpeedIn {
  animation-name: lightSpeedIn;
  animation-timing-function: ease-out;
}
@keyframes lightSpeedOut {
  0% {
    opacity: 1;
  }
  to {
    transform: translate3d(100%, 0, 0) skewX(30deg);
    opacity: 0;
  }
}
.lightSpeedOut {
  animation-name: lightSpeedOut;
  animation-timing-function: ease-in;
}
@keyframes rotateIn {
  0% {
    transform-origin: center;
    transform: rotate(-200deg);
    opacity: 0;
  }
  0%, to {
    -webkit-transform-origin: center;
  }
  to {
    transform-origin: center;
    transform: none;
    opacity: 1;
  }
}
.rotateIn {
  animation-name: rotateIn;
}
@keyframes rotateInDownLeft {
  0% {
    transform-origin: left bottom;
    transform: rotate(-45deg);
    opacity: 0;
  }
  0%, to {
    -webkit-transform-origin: left bottom;
  }
  to {
    transform-origin: left bottom;
    transform: none;
    opacity: 1;
  }
}
.rotateInDownLeft {
  animation-name: rotateInDownLeft;
}
@keyframes rotateInDownRight {
  0% {
    transform-origin: right bottom;
    transform: rotate(45deg);
    opacity: 0;
  }
  0%, to {
    -webkit-transform-origin: right bottom;
  }
  to {
    transform-origin: right bottom;
    transform: none;
    opacity: 1;
  }
}
.rotateInDownRight {
  animation-name: rotateInDownRight;
}
@keyframes rotateInUpLeft {
  0% {
    transform-origin: left bottom;
    transform: rotate(45deg);
    opacity: 0;
  }
  0%, to {
    -webkit-transform-origin: left bottom;
  }
  to {
    transform-origin: left bottom;
    transform: none;
    opacity: 1;
  }
}
.rotateInUpLeft {
  animation-name: rotateInUpLeft;
}
@keyframes rotateInUpRight {
  0% {
    transform-origin: right bottom;
    transform: rotate(-90deg);
    opacity: 0;
  }
  0%, to {
    -webkit-transform-origin: right bottom;
  }
  to {
    transform-origin: right bottom;
    transform: none;
    opacity: 1;
  }
}
.rotateInUpRight {
  animation-name: rotateInUpRight;
}
@keyframes rotateOut {
  0% {
    transform-origin: center;
    opacity: 1;
  }
  0%, to {
    -webkit-transform-origin: center;
  }
  to {
    transform-origin: center;
    transform: rotate(200deg);
    opacity: 0;
  }
}
.rotateOut {
  animation-name: rotateOut;
}
@keyframes rotateOutDownLeft {
  0% {
    transform-origin: left bottom;
    opacity: 1;
  }
  0%, to {
    -webkit-transform-origin: left bottom;
  }
  to {
    transform-origin: left bottom;
    transform: rotate(45deg);
    opacity: 0;
  }
}
.rotateOutDownLeft {
  animation-name: rotateOutDownLeft;
}
@keyframes rotateOutDownRight {
  0% {
    transform-origin: right bottom;
    opacity: 1;
  }
  0%, to {
    -webkit-transform-origin: right bottom;
  }
  to {
    transform-origin: right bottom;
    transform: rotate(-45deg);
    opacity: 0;
  }
}
.rotateOutDownRight {
  animation-name: rotateOutDownRight;
}
@keyframes rotateOutUpLeft {
  0% {
    transform-origin: left bottom;
    opacity: 1;
  }
  0%, to {
    -webkit-transform-origin: left bottom;
  }
  to {
    transform-origin: left bottom;
    transform: rotate(-45deg);
    opacity: 0;
  }
}
.rotateOutUpLeft {
  animation-name: rotateOutUpLeft;
}
@keyframes rotateOutUpRight {
  0% {
    transform-origin: right bottom;
    opacity: 1;
  }
  0%, to {
    -webkit-transform-origin: right bottom;
  }
  to {
    transform-origin: right bottom;
    transform: rotate(90deg);
    opacity: 0;
  }
}
.rotateOutUpRight {
  animation-name: rotateOutUpRight;
}
@keyframes hinge {
  0% {
    transform-origin: top left;
  }
  0%, 20%, 60% {
    -webkit-transform-origin: top left;
    animation-timing-function: ease-in-out;
  }
  20%, 60% {
    transform: rotate(80deg);
    transform-origin: top left;
  }
  40%, 80% {
    transform: rotate(60deg);
    transform-origin: top left;
    animation-timing-function: ease-in-out;
    opacity: 1;
  }
  to {
    transform: translate3d(0, 700px, 0);
    opacity: 0;
  }
}
.hinge {
  animation-name: hinge;
}
@keyframes rollIn {
  0% {
    opacity: 0;
    transform: translate3d(-100%, 0, 0) rotate(-120deg);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
.rollIn {
  animation-name: rollIn;
}
@keyframes rollOut {
  0% {
    opacity: 1;
  }
  to {
    opacity: 0;
    transform: translate3d(100%, 0, 0) rotate(120deg);
  }
}
.rollOut {
  animation-name: rollOut;
}
@keyframes zoomIn {
  0% {
    opacity: 0;
    transform: scale3d(0.3, 0.3, 0.3);
  }
  50% {
    opacity: 1;
  }
}
.zoomIn {
  animation-name: zoomIn;
}
@keyframes zoomInDown {
  0% {
    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 {
  0% {
    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 {
  0% {
    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 {
  0% {
    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 zoomOut {
  0% {
    opacity: 1;
  }
  50% {
    transform: scale3d(0.3, 0.3, 0.3);
  }
  50%, to {
    opacity: 0;
  }
}
.zoomOut {
  animation-name: zoomOut;
}
@keyframes zoomOutDown {
  40% {
    opacity: 1;
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  to {
    opacity: 0;
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 2000px, 0);
    transform-origin: center bottom;
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
.zoomOutDown {
  animation-name: zoomOutDown;
}
@keyframes zoomOutLeft {
  40% {
    opacity: 1;
    transform: scale3d(0.475, 0.475, 0.475) translate3d(42px, 0, 0);
  }
  to {
    opacity: 0;
    transform: scale(0.1) translate3d(-2000px, 0, 0);
    transform-origin: left center;
  }
}
.zoomOutLeft {
  animation-name: zoomOutLeft;
}
@keyframes zoomOutRight {
  40% {
    opacity: 1;
    transform: scale3d(0.475, 0.475, 0.475) translate3d(-42px, 0, 0);
  }
  to {
    opacity: 0;
    transform: scale(0.1) translate3d(2000px, 0, 0);
    transform-origin: right center;
  }
}
.zoomOutRight {
  animation-name: zoomOutRight;
}
@keyframes zoomOutUp {
  40% {
    opacity: 1;
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  to {
    opacity: 0;
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -2000px, 0);
    transform-origin: center bottom;
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
.zoomOutUp {
  animation-name: zoomOutUp;
}
@keyframes slideInDown {
  0% {
    transform: translate3d(0, -100%, 0);
    visibility: visible;
  }
  to {
    transform: translateZ(0);
  }
}
.slideInDown {
  animation-name: slideInDown;
}
@keyframes slideInLeft {
  0% {
    transform: translate3d(-100%, 0, 0);
    visibility: visible;
  }
  to {
    transform: translateZ(0);
  }
}
.slideInLeft {
  animation-name: slideInLeft;
}
@keyframes slideInRight {
  0% {
    transform: translate3d(100%, 0, 0);
    visibility: visible;
  }
  to {
    transform: translateZ(0);
  }
}
.slideInRight {
  animation-name: slideInRight;
}
@keyframes slideInUp {
  0% {
    transform: translate3d(0, 100%, 0);
    visibility: visible;
  }
  to {
    transform: translateZ(0);
  }
}
.slideInUp {
  animation-name: slideInUp;
}
@keyframes slideOutDown {
  0% {
    transform: translateZ(0);
  }
  to {
    visibility: hidden;
    transform: translate3d(0, 100%, 0);
  }
}
.slideOutDown {
  animation-name: slideOutDown;
}
@keyframes slideOutLeft {
  0% {
    transform: translateZ(0);
  }
  to {
    visibility: hidden;
    transform: translate3d(-100%, 0, 0);
  }
}
.slideOutLeft {
  animation-name: slideOutLeft;
}
@keyframes slideOutRight {
  0% {
    transform: translateZ(0);
  }
  to {
    visibility: hidden;
    transform: translate3d(100%, 0, 0);
  }
}
.slideOutRight {
  animation-name: slideOutRight;
}
@keyframes slideOutUp {
  0% {
    transform: translateZ(0);
  }
  to {
    visibility: hidden;
    transform: translate3d(0, -100%, 0);
  }
}
.slideOutUp {
  animation-name: slideOutUp;
}/*# sourceMappingURL=style.css.map */