/* barlow-regular - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: "Barlow";
  font-style: normal;
  font-weight: 400;
  src: url("../Fonts/barlow-v12-latin-regular.woff2") format("woff2"); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* barlow-500 - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: "Barlow";
  font-style: normal;
  font-weight: 500;
  src: url("../Fonts/barlow-v12-latin-500.woff2") format("woff2"); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* barlow-700 - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: "Barlow";
  font-style: normal;
  font-weight: 700;
  src: url("../Fonts/barlow-v12-latin-700.woff2") format("woff2"); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
:root {
  --fallback: Verdana, Arial, sans-serif;
  --mainFont: "Barlow", var(--fallback);
  --mainColor: #048998;
  --mainColorLight: #4aa8b6;
  --secondColor: #222;
  --backgroundColor: #f2f2f2;
  --fontColor: #333;
  --baseFontSize: 17px;
  --baseLineheight: 170%;
  --maxWidth: 1200px;
  --maxWidthBig: 1500px;
  --baseWidth: 92%;
  --pageLimit: 1920px;
  --reduceWidth: 960px;
  --stickyHeaderHeight: 100px;
  --stickyHeaderHeightMobile: 65px;
  --spaceBetweenDefault: 40px;
  --spaceBetweenSlim: 20px;
  --spaceBetweenWide: 80px;
  --baseTransition: all .3s ease-in-out;
}

.head > .inner,
.foot-top > .inner,
.foot-bottom > .inner {
  max-width: var(--maxWidthBig);
  width: var(--baseWidth);
  margin-left: auto;
  margin-right: auto;
}

.foot-top > .inner,
.foot-bottom > .inner {
  max-width: var(--maxWidth);
}

.cont > .frame {
  max-width: var(--maxWidth);
  width: var(--baseWidth);
  margin-left: auto;
  margin-right: auto;
}
.cont > .frame-layout-30 {
  max-width: var(--reduceWidth);
}

input, select, textarea {
  width: 100%;
  border: 1px solid #ccc;
  padding: 10px 15px;
  font-family: var(--mainFont);
}
input:focus, select:focus, textarea:focus {
  border: 1px solid var(--mainColor);
  outline: none;
}

input[type=radio],
input[type=checkbox] {
  width: auto;
  margin-right: 5px;
}

fieldset {
  border: 0;
  margin: 0;
  padding: 0;
}

select {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  cursor: pointer;
  color: var(--fontColor);
  padding-right: 45px;
  border-radius: 5px;
  background: white url("../Images/arrow-down.svg") no-repeat center right 15px/14px auto;
}

body {
  font-family: var(--mainFont);
  color: var(--fontColor);
  font-size: var(--baseFontSize);
  line-height: var(--baseLineheight);
  background: white;
  margin: 0;
}

::-moz-selection {
  background: var(--mainColor);
  color: white;
}

::selection {
  background: var(--mainColor);
  color: white;
}

img {
  max-width: 100%;
  width: auto;
  height: auto;
}

a {
  color: var(--mainColor);
  text-decoration: none;
  -webkit-transition: color 0.3s ease-in-out;
  transition: color 0.3s ease-in-out;
}
a:hover {
  color: var(--secondColor);
}
a[href*="//"]:not(.main-button) {
  color: var(--fontColor);
}
a[href*="//"]:not(.main-button)::after {
  background: var(--fontColor);
}
a[href*="//"]::after {
  content: "";
  display: inline-block;
  position: relative;
  top: 2px;
  width: 15px;
  height: 15px;
  min-width: 15px;
  background: #fff;
  -webkit-mask: url(../Images/external-link.svg) no-repeat center left;
          mask: url(../Images/external-link.svg) no-repeat center left;
  -webkit-mask-size: 100% auto;
          mask-size: 100% auto;
  margin-left: 10px;
}

p {
  margin: 0;
}

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

hr {
  display: block;
  border: 0;
  height: 2px;
  margin: 1rem 0;
  background: var(--backgroundColor);
}

.allcont ul li {
  padding: 5px 10px 5px 20px;
  position: relative;
}
.allcont ul li::before {
  content: "";
  width: 7px;
  height: 7px;
  background: var(--mainColor);
  border-radius: 50%;
  margin-right: 10px;
  position: absolute;
  left: 0;
  top: 15px;
}
.allcont ul li ul li {
  padding: 5px 10px 5px 20px;
}

html[lang=ar] .allcont ul li {
  padding: 5px 25px 5px 10px;
  position: relative;
}
html[lang=ar] .allcont ul li::before {
  left: inherit;
  right: 0;
}
html[lang=ar] .allcont ul li ul li {
  padding: 5px 10px 5px 20px;
}
html[lang=ar] a[href*="//"]::after {
  margin-left: 0;
  margin-right: 10px;
}

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

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

.anchor {
  display: block;
  height: 0;
  position: relative;
  top: calc((var(--stickyHeaderHeight) + 20px) * -1);
}
@media (max-width: 1200px) {
  .anchor {
    top: calc((var(--stickyHeaderHeight) + 20px) * -1);
  }
}

.frame-space-before-extra-small {
  margin-top: 30px;
}
@media all and (max-width: 760px) {
  .frame-space-before-extra-small {
    margin-top: 20px;
  }
}
.frame-space-before-small {
  margin-top: 40px;
}
@media all and (max-width: 760px) {
  .frame-space-before-small {
    margin-top: 20px;
  }
}
.frame-space-before-medium {
  margin-top: 60px;
}
@media all and (max-width: 760px) {
  .frame-space-before-medium {
    margin-top: 40px;
  }
}
.frame-space-before-large {
  margin-top: 100px;
}
@media all and (max-width: 760px) {
  .frame-space-before-large {
    margin-top: 60px;
  }
}
.frame-space-before-extra-large {
  margin-top: 150px;
}
@media all and (max-width: 760px) {
  .frame-space-before-extra-large {
    margin-top: 70px;
  }
}
.frame-space-after-extra-small {
  margin-bottom: 30px;
}
@media all and (max-width: 760px) {
  .frame-space-after-extra-small {
    margin-bottom: 20px;
  }
}
.frame-space-after-small {
  margin-bottom: 40px;
}
@media all and (max-width: 760px) {
  .frame-space-after-small {
    margin-bottom: 20px;
  }
}
.frame-space-after-medium {
  margin-bottom: 60px;
}
@media all and (max-width: 760px) {
  .frame-space-after-medium {
    margin-bottom: 40px;
  }
}
.frame-space-after-large {
  margin-bottom: 100px;
}
@media all and (max-width: 760px) {
  .frame-space-after-large {
    margin-bottom: 60px;
  }
}
.frame-space-after-extra-large {
  margin-bottom: 150px;
}
@media all and (max-width: 760px) {
  .frame-space-after-extra-large {
    margin-bottom: 70px;
  }
}

.site {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  min-height: 100vh;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  max-width: var(--pageLimit);
  margin: 0 auto;
  -webkit-box-shadow: 0px 0 22px 0 rgba(0, 0, 0, 0.15);
          box-shadow: 0px 0 22px 0 rgba(0, 0, 0, 0.15);
}
.site .allcont {
  overflow: hidden;
  -webkit-box-flex: 1;
      -ms-flex: 1 0 auto;
          flex: 1 0 auto;
}
.site .cont > div:first-child:not(:where(.frame-lightbgbox)) {
  margin-top: 80px;
}
.site .cont > div:last-child:not(:where(.frame-lightbgbox)) {
  margin-bottom: 80px;
}

.gridrow {
  display: -ms-grid;
  display: grid;
  gap: 20px;
  -ms-grid-columns: ;
  grid-template-columns: repeat(0, 1fr);
}

@media all and (min-width: 1200px) {
  .px-grid2cols {
    -ms-grid-columns: (1fr)[2];
    grid-template-columns: repeat(2, 1fr);
  }
}

@media all and (min-width: 1200px) {
  .px-grid3cols {
    -ms-grid-columns: (1fr)[3];
    grid-template-columns: repeat(3, 1fr);
  }
}

@media all and (min-width: 1200px) {
  .px-grid4cols {
    -ms-grid-columns: (1fr)[4];
    grid-template-columns: repeat(4, 1fr);
  }
}

@media all and (min-width: 1200px) {
  .px-grid3366 {
    -ms-grid-columns: calc(33.333% - 1 * var(--spaceBetweenSlim) / 2) calc(66.666% - 1 * var(--spaceBetweenSlim) / 2);
    grid-template-columns: calc(33.333% - 1 * var(--spaceBetweenSlim) / 2) calc(66.666% - 1 * var(--spaceBetweenSlim) / 2);
  }
}

.table {
  margin: 10px 0 0;
}

table tr td {
  padding: 5px 10px;
}
table tr td:first-child {
  padding-left: 0;
}

h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  margin: 0;
  line-height: 130%;
  color: var(--fontColor);
}
h1 + p,
h1 + h1, h1 + h2, h1 + h3, h1 + h4, h1 + h5, h1 + h6, h2 + p,
h2 + h1, h2 + h2, h2 + h3, h2 + h4, h2 + h5, h2 + h6, h3 + p,
h3 + h1, h3 + h2, h3 + h3, h3 + h4, h3 + h5, h3 + h6, h4 + p,
h4 + h1, h4 + h2, h4 + h3, h4 + h4, h4 + h5, h4 + h6, h5 + p,
h5 + h1, h5 + h2, h5 + h3, h5 + h4, h5 + h5, h5 + h6, h6 + p,
h6 + h1, h6 + h2, h6 + h3, h6 + h4, h6 + h5, h6 + h6 {
  padding-top: 1em;
}

p + p, p + ul, p + h1, p + h2, p + h3, p + h4, p + h5, p + h6 {
  padding-top: 1em;
}

h1 {
  font-size: 45px;
}
@media all and (max-width: 760px) {
  h1 {
    font-size: 30px;
  }
}

h2 {
  font-size: 40px;
}
@media all and (max-width: 760px) {
  h2 {
    font-size: 26px;
  }
}

h3 {
  font-size: 35px;
}
@media all and (max-width: 760px) {
  h3 {
    font-size: 24px;
  }
}

h4 {
  font-size: 30px;
}
@media all and (max-width: 760px) {
  h4 {
    font-size: 22px;
  }
}

h5 {
  font-size: 25px;
}
@media all and (max-width: 760px) {
  h5 {
    font-size: 20px;
  }
}

h6 {
  font-size: 20px;
}
@media all and (max-width: 760px) {
  h6 {
    font-size: 18px;
  }
}

.main-button,
.arrow-button,
.powermail_submit {
  display: inline-block;
  padding: 15px 25px;
  color: white;
  font-weight: 500;
  border-radius: 50px;
  margin-top: 20px;
  background: var(--mainColor);
  -webkit-transition: background-color 0.3s ease-in-out, color 0.3s ease-in-out;
  transition: background-color 0.3s ease-in-out, color 0.3s ease-in-out;
}
.main-button:hover,
.arrow-button:hover,
.powermail_submit:hover {
  color: white;
  background-color: var(--mainColorLight);
}

.arrow-button {
  position: relative;
  background: transparent;
  padding: 0 25px 0 0;
  color: var(--fontColor);
}
.arrow-button:hover {
  color: var(--mainColor);
}
.arrow-button::after {
  content: "";
  width: 13px;
  height: 13px;
  position: absolute;
  right: 0;
  top: 10px;
  -webkit-transform: rotate(-90deg);
          transform: rotate(-90deg);
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  background: var(--fontColor);
  -webkit-mask: url("../Images/arrow-down.svg") no-repeat center/100% auto;
          mask: url("../Images/arrow-down.svg") no-repeat center/100% auto;
}
.arrow-button::after:hover {
  right: -3px;
}

.phone,
.mail,
.fax {
  position: relative;
  display: inline-block;
  padding-left: 35px;
  font-weight: 500;
}
.phone::before,
.mail::before,
.fax::before {
  content: "";
  display: block;
  position: absolute;
  top: 3px;
  left: 0;
  width: 22px;
  height: 22px;
  background-color: var(--fontColor);
  -webkit-transition: background-color 0.3s ease-in-out;
  transition: background-color 0.3s ease-in-out;
  -webkit-mask: url("../Images/phone.svg") no-repeat center/100% auto;
          mask: url("../Images/phone.svg") no-repeat center/100% auto;
}

html[lang=ar] .phone,
html[lang=ar] .mail,
html[lang=ar] .fax {
  direction: ltr;
}

.mail:hover::before,
.phone:hover::before {
  background-color: var(--mainColor);
}

.mail::before {
  top: 5px;
  width: 20px;
  height: 20px;
  -webkit-mask: url("../Images/mail.svg") no-repeat center/100% auto;
          mask: url("../Images/mail.svg") no-repeat center/100% auto;
}

.fax::before {
  -webkit-mask: url("../Images/fax.svg") no-repeat center/100% auto;
          mask: url("../Images/fax.svg") no-repeat center/100% auto;
}

.foot .phone::before,
.foot .mail::before,
.foot .fax::before {
  background: white;
}
.foot .phone:hover::before,
.foot .mail:hover::before {
  background-color: var(--mainColorLight);
}

.sticky-buttons {
  position: fixed;
  right: max(0px, (100% - var(--pageLimit)) / 2);
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  overflow: hidden;
  pointer-events: none;
  z-index: 100;
  padding: 20px 0 20px 20px;
}
.sticky-buttons li {
  -webkit-transform: translateX(calc(100% - 50px));
          transform: translateX(calc(100% - 50px));
  -webkit-transition: -webkit-transform 0.3s ease-in-out;
  transition: -webkit-transform 0.3s ease-in-out;
  transition: transform 0.3s ease-in-out;
  transition: transform 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out;
  margin: 5px 0;
  pointer-events: auto;
}
.sticky-buttons li:hover {
  -webkit-transform: none;
          transform: none;
}
.sticky-buttons li a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 14px;
  background-color: white;
  -webkit-box-shadow: 0px 0 22px 0 rgba(0, 0, 0, 0.15);
          box-shadow: 0px 0 22px 0 rgba(0, 0, 0, 0.15);
  color: var(--fontColor);
  padding: 12px 20px 12px 12px;
  border-radius: 5px 0 0 5px;
}
.sticky-buttons li .image {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.sticky-buttons li .image img {
  width: 24px;
  height: auto;
}

html[dir=rtl] .sticky-buttons li a {
  direction: ltr;
}

/* header style */
.head {
  position: fixed;
  top: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  z-index: 99;
  max-width: var(--pageLimit);
  width: 100%;
  z-index: 101;
}
@media all and (max-width: 1200px) {
  .head {
    position: sticky;
    padding-top: 0;
    left: inherit;
    -webkit-transform: none;
            transform: none;
    -webkit-box-shadow: 0px 0 22px 0 rgba(0, 0, 0, 0.15);
            box-shadow: 0px 0 22px 0 rgba(0, 0, 0, 0.15);
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    background-color: rgba(255, 255, 255, 0.95);
  }
}
.head > .inner {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 20px;
}
.head-menu {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin: 20px 0;
  gap: 0 var(--spaceBetweenSlim);
}
@media all and (min-width: 1201px) {
  .head-menu {
    border-radius: 50px;
    padding: 0 30px;
    -webkit-box-shadow: 0px 0 22px 0 rgba(0, 0, 0, 0.15);
            box-shadow: 0px 0 22px 0 rgba(0, 0, 0, 0.15);
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    background-color: rgba(255, 255, 255, 0.95);
  }
}
@media all and (max-width: 1200px) {
  .head-menu {
    margin-block: 10px;
  }
}
.head .logo {
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  background: var(--mainColor) url(../Images/logo.svg) no-repeat center;
  background-size: 214px 60px;
  width: 234px;
  height: 70px;
  border-radius: 5px;
  margin: 20px 0;
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
}
@media all and (max-width: 1200px) {
  .head .logo {
    margin-block: 10px;
  }
}
@media all and (max-width: 760px) {
  .head .logo {
    width: 186px;
    height: 60px;
    margin-block: 10px;
    background-size: 170px 150px;
  }
}
.head .logo span {
  display: none;
}
.head .logo a {
  display: block;
  width: 100%;
  height: 100%;
}
@media all and (min-width: 1201px) {
  .head.sticky-header .logo {
    margin-top: 0;
    padding-top: 20px;
    border-radius: 0 0 5px 5px;
    background-color: var(--mainColor);
  }
}

.head .nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.head .nav__trigger {
  display: none;
}
.head .nav > li > a {
  position: relative;
}
.head .nav > li > a::before {
  content: "";
  width: 0;
  height: 2px;
  background: var(--fontColor);
  position: absolute;
  bottom: 10px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  -webkit-transition: width 0.4s ease-in-out;
  transition: width 0.4s ease-in-out;
}
.head .nav > li > a::after {
  content: none;
}
.head .nav li {
  position: relative;
}
.head .nav li + li {
  margin-left: 20px;
}
.head .nav li a {
  padding: 20px;
  display: block;
  font-weight: 700;
  color: var(--fontColor);
  text-decoration: none;
  font-size: var(--baseFontSize);
}
.head .nav li:hover .subnav, .head .nav li.over .subnav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.head .nav li:hover > a::before, .head .nav li.over > a::before, .head .nav li.active > a::before {
  width: calc(100% - 40px);
}
.head .nav li .subnav {
  display: none;
  position: absolute;
  left: 50%;
  top: 100%;
  border-radius: 10px;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  background-color: white;
  -webkit-box-shadow: 0px 0 22px 0 rgba(0, 0, 0, 0.15);
          box-shadow: 0px 0 22px 0 rgba(0, 0, 0, 0.15);
}
.head .nav li .subnav li a {
  white-space: nowrap;
  font-size: calc(var(--baseFontSize) - 2px);
}
.head .nav li .subnav li:hover a, .head .nav li .subnav li.over a, .head .nav li .subnav li.active a {
  color: var(--mainColor);
}

@media all and (max-width: 1200px) {
  .head .nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    padding: 5vw;
    background: #fff;
    -webkit-transition: all 0.6s ease;
    transition: all 0.6s ease;
    -webkit-transform: translateY(100%);
            transform: translateY(100%);
    opacity: 0;
    z-index: 99;
    margin-top: 0;
    display: block;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
  }
  .head .nav.is-open {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  .head .nav li + li {
    margin-left: 0;
  }
  .head .nav li > a::before {
    content: none;
  }
  .head .nav li:hover a, .head .nav li.over a, .head .nav li.active a {
    color: var(--mainColor);
  }
  .head .nav li:hover .subnav, .head .nav li.over .subnav, .head .nav li.active .subnav {
    display: none;
  }
  .head .nav li .subnav {
    position: relative;
    -webkit-box-shadow: none;
            box-shadow: none;
    left: inherit;
    top: inherit;
    -webkit-transform: none;
            transform: none;
    border-radius: 0;
  }
  .head .nav .showsub {
    display: block;
    position: absolute;
    right: 0;
    top: 10px;
    z-index: 10;
    cursor: pointer;
    width: 50px;
    height: 50px;
    line-height: 50px;
    background: rgba(0, 0, 0, 0);
    text-align: center;
    -webkit-transition: var(--baseTransition);
    transition: var(--baseTransition);
  }
  .head .nav .showsub::before {
    content: "";
    display: inline-block;
    width: 0;
    height: 0;
    vertical-align: middle;
    border-top: 5px dashed var(--mainColor);
    border-right: 5px solid rgba(0, 0, 0, 0);
    border-left: 5px solid rgba(0, 0, 0, 0);
    -webkit-transition: var(--baseTransition);
    transition: var(--baseTransition);
  }
  .head .nav .showsub.open {
    -webkit-transform: rotate(180deg);
            transform: rotate(180deg);
  }
  .head .nav .showsub.open + .subnav {
    display: block;
  }
  .head .nav-trigger {
    position: relative;
    cursor: pointer;
    display: block;
    height: 30px;
    width: 40px;
    z-index: 99;
    -webkit-user-select: none;
       -moz-user-select: none;
        -ms-user-select: none;
            user-select: none;
  }
  .head .nav-trigger-line {
    position: absolute;
    left: 0;
    top: 50%;
    height: 3px;
    width: 100%;
    background: var(--mainColor);
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
    -webkit-transition: var(--baseTransition);
    transition: var(--baseTransition);
  }
  .head .nav-trigger-line:first-child {
    -webkit-transform: translateY(-9px);
            transform: translateY(-9px);
  }
  .head .nav-trigger-line:last-child {
    -webkit-transform: translateY(7px);
            transform: translateY(7px);
  }
  .head .nav-trigger.is-active .nav-trigger-line {
    opacity: 1;
    -webkit-transform: rotate(-45deg);
            transform: rotate(-45deg);
  }
  .head .nav-trigger.is-active .nav-trigger-line:last-child {
    opacity: 1;
    -webkit-transform: rotate(45deg);
            transform: rotate(45deg);
  }
  .head .nav-trigger.is-active .nav-trigger-line:first-child {
    opacity: 0;
  }
}
#hero {
  min-height: var(--stickyHeaderHeight);
}
@media all and (max-width: 760px) {
  #hero {
    min-height: var(--stickyHeaderHeightMobile);
  }
}

.langswitchwrap {
  position: relative;
  display: inline-block;
  margin-left: auto;
  font-weight: 600;
  text-transform: uppercase;
}
@media all and (max-width: 1200px) {
  .langswitchwrap {
    margin-left: 0;
  }
}
@media all and (max-width: 760px) {
  .langswitchwrap {
    font-size: 15px;
  }
}
.langswitchwrap .langswitch {
  display: none;
  position: absolute;
  left: 50%;
  top: 100%;
  z-index: 1;
  padding-top: 5px;
  padding-bottom: 5px;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  background-color: white;
  -webkit-box-shadow: 0px 0 22px 0 rgba(0, 0, 0, 0.15);
          box-shadow: 0px 0 22px 0 rgba(0, 0, 0, 0.15);
}
.langswitchwrap .current-lang {
  cursor: pointer;
  padding-right: 20px;
  position: relative;
}
.langswitchwrap .current-lang::after {
  content: "";
  width: 13px;
  height: 13px;
  position: absolute;
  right: 0;
  top: 5px;
  -webkit-transition: -webkit-transform 0.3s ease-in-out;
  transition: -webkit-transform 0.3s ease-in-out;
  transition: transform 0.3s ease-in-out;
  transition: transform 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out;
  background: url("../Images/arrow-down.svg") no-repeat center/100% auto;
}
@media all and (max-width: 760px) {
  .langswitchwrap .current-lang::after {
    width: 12px;
    height: 12px;
  }
}
@media all and (max-width: 350px) {
  .langswitchwrap .current-lang {
    padding-right: 0;
  }
  .langswitchwrap .current-lang::after {
    content: none;
  }
}
.langswitchwrap .current-lang.act::after, .langswitchwrap .current-lang:hover::after {
  -webkit-transform: rotate(-180deg);
          transform: rotate(-180deg);
}
.langswitchwrap li.en {
  display: none;
}
.langswitchwrap li a {
  padding: 10px 20px;
  color: var(--fontColor);
}
.langswitchwrap li + li {
  margin-top: 5px;
}
.langswitchwrap li:hover a, .langswitchwrap li.active a {
  color: var(--mainColor);
}

.px-banner {
  position: relative;
  min-height: 550px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 70px;
}
@media all and (max-width: 1200px) {
  .px-banner {
    min-height: 400px;
  }
}
@media all and (max-width: 760px) {
  .px-banner {
    min-height: 300px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    margin-bottom: 0;
  }
}
.px-banner.largeHeight {
  min-height: 650px;
}
@media all and (max-width: 1200px) {
  .px-banner.largeHeight {
    min-height: 500px;
  }
}
@media all and (max-width: 760px) {
  .px-banner.largeHeight {
    min-height: 300px;
  }
}
.px-banner .image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.px-banner .image::before {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  background-color: #000;
  z-index: 1;
  opacity: 0.2;
}
.px-banner .image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.px-banner .text {
  position: relative;
  z-index: 2;
  color: white;
  max-width: var(--maxWidthBig);
  width: var(--baseWidth);
  margin-left: auto;
  margin-right: auto;
  padding: var(--stickyHeaderHeight) 0 40px;
}
.px-banner .text h1, .px-banner .text h2, .px-banner .text h3, .px-banner .text h4, .px-banner .text h5, .px-banner .text h6 {
  color: white;
}
.px-banner .text-inner {
  max-width: 700px;
  width: 100%;
}
.px-banner .contactdata {
  position: absolute;
  right: max(4%, (100% - var(--maxWidthBig)) / 2);
  bottom: -70px;
  z-index: 1;
}
@media all and (max-width: 760px) {
  .px-banner .contactdata {
    position: relative;
    right: inherit;
    bottom: inherit;
    max-width: var(--maxWidthBig);
    width: var(--baseWidth);
    margin: 0 auto 30px;
  }
}
.px-banner .contactdata-inner {
  background: white;
  border-radius: 10px;
  -webkit-box-shadow: 0px 0 22px 0 rgba(0, 0, 0, 0.15);
          box-shadow: 0px 0 22px 0 rgba(0, 0, 0, 0.15);
  border-bottom: 4px solid var(--mainColor);
  padding: clamp(20px, 2.5vw, 40px);
}
.px-banner .contactdata h5 {
  padding-bottom: 20px;
  border-bottom: 2px solid var(--backgroundColor);
}
.px-banner .contactdata .mail,
.px-banner .contactdata .phone {
  color: var(--fontColor);
  margin-top: 20px;
}
.px-banner .contactdata .mail:hover,
.px-banner .contactdata .phone:hover {
  color: var(--mainColor);
}
.px-banner .contactdata .mail:hover::before,
.px-banner .contactdata .phone:hover::before {
  background: var(--mainColor);
}
.px-banner .contactdata .phone {
  margin-right: 20px;
}

html[lang=ar] .px-banner .contactdata .phone {
  margin-right: 0;
  margin-left: 20px;
}

.px-team-inner {
  display: -ms-grid;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 20px;
}

.px-teaser-inner {
  display: -ms-grid;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 20px;
}
.px-teaser .item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  border-radius: 10px;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.px-teaser .item-link {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}
.px-teaser .item-link span {
  display: none;
}
.px-teaser .item h6 {
  -webkit-transition: color 0.3s ease-in-out;
  transition: color 0.3s ease-in-out;
}
.px-teaser .item:hover {
  color: white;
  background-color: var(--mainColor);
}
.px-teaser .item:hover h6 {
  color: white;
}
.px-teaser .item:hover img {
  -webkit-filter: invert(100%) brightness(200%);
          filter: invert(100%) brightness(200%);
}
.px-teaser .item:hover .arrow-button {
  color: white;
}
.px-teaser .item:hover .arrow-button::after {
  background: white;
  right: -3px;
}
.px-teaser .item-inner {
  width: 100%;
  padding: clamp(20px, 2.5vw, 30px);
  -webkit-box-shadow: 0px 0 22px 0 rgba(0, 0, 0, 0.15);
          box-shadow: 0px 0 22px 0 rgba(0, 0, 0, 0.15);
  border-radius: 10px;
}
.px-teaser .item-inner .headline {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 20px;
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 2px solid var(--backgroundColor);
}
.px-teaser .item-inner .headline img {
  width: 35px;
  -webkit-transition: -webkit-filter 0.3s ease-in-out;
  transition: -webkit-filter 0.3s ease-in-out;
  transition: filter 0.3s ease-in-out;
  transition: filter 0.3s ease-in-out, -webkit-filter 0.3s ease-in-out;
}
.px-teaser .item-inner .text {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  height: 100%;
}

.px-textimage-inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: var(--spaceBetweenWide);
}
@media all and (max-width: 768px) {
  .px-textimage-inner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: var(--spaceBetweenDefault);
  }
}
.px-textimage .col {
  width: 50%;
}
@media all and (max-width: 768px) {
  .px-textimage .col {
    width: 100%;
  }
}
.px-textimage .image {
  overflow: hidden;
}
.px-textimage .image img {
  border-radius: 10px;
  min-height: 450px;
  -o-object-fit: cover;
     object-fit: cover;
}
@media all and (max-width: 768px) {
  .px-textimage .image img {
    min-height: inherit;
  }
}
.px-textimage .shadowbox {
  position: relative;
  max-width: 250px;
  width: 70%;
  background: white;
  border-radius: 10px;
  margin-left: 20px;
  margin-top: -100px;
  z-index: 1;
  -webkit-box-shadow: 0px 0 22px 0 rgba(0, 0, 0, 0.15);
          box-shadow: 0px 0 22px 0 rgba(0, 0, 0, 0.15);
  border-bottom: 4px solid var(--mainColor);
  padding: clamp(20px, 2.5vw, 40px);
}
@media all and (max-width: 768px) {
  .px-textimage .shadowbox {
    margin-top: -50px;
  }
}

.foot {
  color: white;
  font-size: 15px;
  background-color: #404040;
  padding: 60px 0 20px;
  border-top: 4px solid var(--mainColor);
}
.foot-top > .inner, .foot-bottom > .inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: var(--spaceBetweenDefault);
}
.foot-bottom {
  margin-top: 30px;
}
.foot a {
  text-decoration: unset;
  color: white;
}
.foot a:hover {
  color: var(--mainColorLight);
}
.foot ul li + li {
  margin-top: 5px;
}

@media all and (max-width: 760px) {
  .foot-top > .inner, .foot-bottom > .inner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.tx-powermail .powermail_form h3,
.tx-powermail .powermail_form > div,
.tx-powermail .powermail_form .powermail_legend {
  display: none;
}
.tx-powermail .powermail_fieldset,
.tx-powermail .powermail_fieldwrap {
  width: 100%;
}
.tx-powermail .powermail_fieldset {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: var(--spaceBetweenSlim);
}
.tx-powermail .powermail_fieldwrap {
  width: 100%;
}
.tx-powermail .powermail_fieldwrap.powermail_fieldwrap_type_input, .tx-powermail .powermail_fieldwrap.powermail_fieldwrap_type_select {
  width: calc(50% - var(--spaceBetweenSlim) / 2);
}
@media all and (max-width: 450px) {
  .tx-powermail .powermail_fieldwrap.powermail_fieldwrap_type_input, .tx-powermail .powermail_fieldwrap.powermail_fieldwrap_type_select {
    width: 100%;
  }
}
.tx-powermail .powermail_field {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.tx-powermail .powermail_submit {
  width: auto;
  font-size: var(--baseFontSize);
}
.tx-powermail .powermail_field_error {
  border-color: red;
}
.tx-powermail .powermail-errors-list {
  display: none;
}

/* Arrows */
.slick-arrow {
  position: absolute;
  display: block;
  height: 20px;
  width: 20px;
  line-height: 0px;
  font-size: 0px;
  z-index: 10;
  cursor: pointer;
  background: url("../Images/arrow.svg") no-repeat center center/20px 20px;
  color: transparent;
  top: 50%;
  -webkit-transform: translate(0, -50%);
          transform: translate(0, -50%);
  padding: 0;
  border: none;
  outline: none;
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}
.slick-arrow::before {
  content: none;
}
.slick-arrow:hover, .slick-arrow:focus {
  outline: none;
  background-color: transparent;
  color: transparent;
}
.slick-arrow:hover {
  opacity: 0.7;
}
.slick-arrow.slick-prev {
  left: 20px;
  -webkit-transform: translate(0, -50%) rotate(180deg);
          transform: translate(0, -50%) rotate(180deg);
}
.slick-arrow.slick-next {
  right: 20px;
}

/* Dots */
.slick-dots {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  list-style: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  justify-content: center;
  gap: 10px;
  margin-top: var(--spaceBetweenDefault);
}
.slick-dots li {
  padding: 0 !important;
  cursor: pointer;
}
.slick-dots li::before {
  content: none;
}
.slick-dots li button {
  border-radius: 50%;
  border: 0;
  background: red;
  display: block;
  height: 10px;
  width: 10px;
  outline: none;
  line-height: 0px;
  font-size: 0px;
  color: transparent;
  cursor: pointer;
  padding: 0;
}
.slick-dots li button:hover, .slick-dots li button:focus {
  outline: none;
}
.slick-dots li button:hover {
  background: var(--mainColor);
}
.slick-dots li.slick-active button {
  background: var(--mainColor);
}

.slick-slider .slick-slide {
  display: none;
}
.slick-slider .slick-slide:first-child {
  display: block;
}
.slick-slider.slick-initialized .slick-slide {
  display: block;
}

/* Slider */
.slick-slider {
  position: relative;
  display: block;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -ms-touch-action: pan-y;
  touch-action: pan-y;
  -webkit-tap-highlight-color: transparent;
}

.slick-list {
  position: relative;
  overflow: hidden;
  display: block;
  margin: 0;
  padding: 0;
}
.slick-list:focus {
  outline: none;
}
.slick-list.dragging {
  cursor: pointer;
  cursor: hand;
}

.slick-slider .slick-track,
.slick-slider .slick-list {
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}

.slick-track {
  position: relative;
  left: 0;
  top: 0;
  display: block;
  margin-left: auto;
  margin-right: auto;
}
.slick-track:before, .slick-track:after {
  content: "";
  display: table;
}
.slick-track:after {
  clear: both;
}
.slick-loading .slick-track {
  visibility: hidden;
}

.slick-slide {
  float: left;
  height: 100%;
  min-height: 1px;
  display: none;
}
[dir=rtl] .slick-slide {
  float: right;
}
.slick-slide img {
  display: block;
}
.slick-slide.slick-loading img {
  display: none;
}
.slick-slide.dragging img {
  pointer-events: none;
}
.slick-initialized .slick-slide {
  display: block;
}
.slick-loading .slick-slide {
  visibility: hidden;
}
.slick-vertical .slick-slide {
  display: block;
  height: auto;
  border: 1px solid transparent;
}

.slick-arrow.slick-hidden {
  display: none;
}

/*animations*/
/******************
* Bounce in right *
*******************/
.animated {
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}

.slow {
  -webkit-animation-duration: 1.5s;
  animation-duration: 1.5s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}

.slower {
  -webkit-animation-duration: 2s;
  animation-duration: 2s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}

.slowest {
  -webkit-animation-duration: 3s;
  animation-duration: 3s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}

.bounceInRight, .bounceInLeft, .bounceInUp, .bounceInDown {
  opacity: 0;
  -webkit-transform: translateX(400px);
  transform: translateX(400px);
}

.fadeInRight, .fadeInLeft, .fadeInUp, .fadeInDown {
  opacity: 0;
  -webkit-transform: translateX(400px);
  transform: translateX(400px);
}

.flipInX, .flipInY, .rotateIn, .rotateInUpLeft, .rotateInUpRight, .rotateInDownLeft, .rotateDownUpRight, .rollIn {
  opacity: 0;
}

.lightSpeedInRight, .lightSpeedInLeft {
  opacity: 0;
  -webkit-transform: translateX(400px);
  transform: translateX(400px);
}

/***********
* bounceIn *
************/
@-webkit-keyframes bounceIn {
  0% {
    opacity: 0;
    -webkit-transform: scale(0.3);
  }
  50% {
    opacity: 1;
    -webkit-transform: scale(1.05);
  }
  70% {
    -webkit-transform: scale(0.9);
  }
  100% {
    -webkit-transform: scale(1);
  }
}
@keyframes bounceIn {
  0% {
    opacity: 0;
    -webkit-transform: scale(0.3);
            transform: scale(0.3);
  }
  50% {
    opacity: 1;
    -webkit-transform: scale(1.05);
            transform: scale(1.05);
  }
  70% {
    -webkit-transform: scale(0.9);
            transform: scale(0.9);
  }
  100% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}
.bounceIn.go {
  -webkit-animation-name: bounceIn;
  animation-name: bounceIn;
}

/****************
* bounceInRight *
****************/
@-webkit-keyframes bounceInRight {
  0% {
    opacity: 0;
    -webkit-transform: translateX(400px);
  }
  60% {
    -webkit-transform: translateX(-30px);
  }
  80% {
    -webkit-transform: translateX(10px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
  }
}
@keyframes bounceInRight {
  0% {
    opacity: 0;
    -webkit-transform: translateX(400px);
            transform: translateX(400px);
  }
  60% {
    -webkit-transform: translateX(-30px);
            transform: translateX(-30px);
  }
  80% {
    -webkit-transform: translateX(10px);
            transform: translateX(10px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
}
.bounceInRight.go {
  -webkit-animation-name: bounceInRight;
  animation-name: bounceInRight;
}

/******************
* Bounce in left *
*******************/
@-webkit-keyframes bounceInLeft {
  0% {
    opacity: 0;
    -webkit-transform: translateX(-400px);
  }
  60% {
    -webkit-transform: translateX(30px);
  }
  80% {
    -webkit-transform: translateX(-10px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
  }
}
@keyframes bounceInLeft {
  0% {
    opacity: 0;
    -webkit-transform: translateX(-400px);
            transform: translateX(-400px);
  }
  60% {
    -webkit-transform: translateX(30px);
            transform: translateX(30px);
  }
  80% {
    -webkit-transform: translateX(-10px);
            transform: translateX(-10px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
}
.bounceInLeft.go {
  -webkit-animation-name: bounceInLeft;
  animation-name: bounceInLeft;
}

/******************
* Bounce in up *
*******************/
@-webkit-keyframes bounceInUp {
  0% {
    opacity: 0;
    -webkit-transform: translateY(400px);
  }
  60% {
    -webkit-transform: translateY(-30px);
  }
  80% {
    -webkit-transform: translateY(10px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
  }
}
@keyframes bounceInUp {
  0% {
    opacity: 0;
    -webkit-transform: translateY(400px);
            transform: translateY(400px);
  }
  60% {
    -webkit-transform: translateY(-30px);
            transform: translateY(-30px);
  }
  80% {
    -webkit-transform: translateY(10px);
            transform: translateY(10px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
.bounceInUp.go {
  -webkit-animation-name: bounceInUp;
  animation-name: bounceInUp;
}

/******************
* Bounce in down *
*******************/
@-webkit-keyframes bounceInDown {
  0% {
    opacity: 0;
    -webkit-transform: translateY(-400px);
  }
  60% {
    -webkit-transform: translateY(30px);
  }
  80% {
    -webkit-transform: translateY(-10px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
  }
}
@keyframes bounceInDown {
  0% {
    opacity: 0;
    -webkit-transform: translateY(-400px);
            transform: translateY(-400px);
  }
  60% {
    -webkit-transform: translateY(30px);
            transform: translateY(30px);
  }
  80% {
    -webkit-transform: translateY(-10px);
            transform: translateY(-10px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
.bounceInDown.go {
  -webkit-animation-name: bounceInDown;
  animation-name: bounceInDown;
}

/**********
* Fade In *
**********/
@-webkit-keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
    display: block;
  }
}
@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
    display: block;
  }
}
.fadeIn {
  opacity: 0;
}

.fadeIn.go {
  -webkit-animation-name: fadeIn;
  animation-name: fadeIn;
}

/**********
* Grow in *
***********/
@-webkit-keyframes growIn {
  0% {
    -webkit-transform: scale(0.2);
    opacity: 0;
  }
  50% {
    -webkit-transform: scale(1.2);
  }
  100% {
    -webkit-transform: scale(1);
    opacity: 1;
  }
}
@keyframes growIn {
  0% {
    -webkit-transform: scale(0.2);
            transform: scale(0.2);
    opacity: 0;
  }
  50% {
    -webkit-transform: scale(1.2);
            transform: scale(1.2);
  }
  100% {
    -webkit-transform: scale(1);
            transform: scale(1);
    opacity: 1;
  }
}
.growIn {
  -webkit-transform: scale(0.2);
  transform: scale(0.2);
  opacity: 0;
}

.growIn.go {
  -webkit-animation-name: growIn;
  animation-name: growIn;
}

/********
* Shake *
********/
@-webkit-keyframes shake {
  0%, 100% {
    -webkit-transform: translateX(0);
  }
  10%, 30%, 50%, 70%, 90% {
    -webkit-transform: translateX(-10px);
  }
  20%, 40%, 60%, 80% {
    -webkit-transform: translateX(10px);
  }
}
@keyframes shake {
  0%, 100% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  10%, 30%, 50%, 70%, 90% {
    -webkit-transform: translateX(-10px);
            transform: translateX(-10px);
  }
  20%, 40%, 60%, 80% {
    -webkit-transform: translateX(10px);
            transform: translateX(10px);
  }
}
.shake.go {
  -webkit-animation-name: shake;
  animation-name: shake;
}

/********
* ShakeUp *
********/
@-webkit-keyframes shakeUp {
  0%, 100% {
    -webkit-transform: translateX(0);
  }
  10%, 30%, 50%, 70%, 90% {
    -webkit-transform: translateY(-10px);
  }
  20%, 40%, 60%, 80% {
    -webkit-transform: translateY(10px);
  }
}
@keyframes shakeUp {
  0%, 100% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  10%, 30%, 50%, 70%, 90% {
    -webkit-transform: translateY(-10px);
            transform: translateY(-10px);
  }
  20%, 40%, 60%, 80% {
    -webkit-transform: translateY(10px);
            transform: translateY(10px);
  }
}
.shakeUp.go {
  -webkit-animation-name: shakeUp;
  animation-name: shakeUp;
}

/*************
* FadeInLeft *
*************/
@-webkit-keyframes fadeInLeft {
  0% {
    opacity: 0;
    -webkit-transform: translateX(-400px);
  }
  50% {
    opacity: 0.3;
  }
  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
  }
}
@keyframes fadeInLeft {
  0% {
    opacity: 0;
    -webkit-transform: translateX(-400px);
            transform: translateX(-400px);
  }
  50% {
    opacity: 0.3;
  }
  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
}
.fadeInLeft {
  opacity: 0;
  -webkit-transform: translateX(-400px);
  transform: translateX(-400px);
}

.fadeInLeft.go {
  -webkit-animation-name: fadeInLeft;
  animation-name: fadeInLeft;
}

/*************
* FadeInRight *
*************/
@-webkit-keyframes fadeInRight {
  0% {
    opacity: 0;
    -webkit-transform: translateX(400px);
  }
  50% {
    opacity: 0.3;
  }
  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
  }
}
@keyframes fadeInRight {
  0% {
    opacity: 0;
    -webkit-transform: translateX(400px);
            transform: translateX(400px);
  }
  50% {
    opacity: 0.3;
  }
  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
}
.fadeInRight {
  opacity: 0;
  -webkit-transform: translateX(400px);
  transform: translateX(400px);
}

.fadeInRight.go {
  -webkit-animation-name: fadeInRight;
  animation-name: fadeInRight;
}

/*************
* FadeInUp *
*************/
@-webkit-keyframes fadeInUp {
  0% {
    opacity: 0;
    -webkit-transform: translateY(400px);
  }
  50% {
    opacity: 0.3;
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
  }
}
@keyframes fadeInUp {
  0% {
    opacity: 0;
    -webkit-transform: translateY(400px);
            transform: translateY(400px);
  }
  50% {
    opacity: 0.3;
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
.fadeInUp {
  opacity: 0;
  -webkit-transform: translateY(400px);
  transform: translateY(400px);
}

.fadeInUp.go {
  -webkit-animation-name: fadeInUp;
  animation-name: fadeInUp;
}

/*************
* FadeInDown *
*************/
@-webkit-keyframes fadeInDown {
  0% {
    opacity: 0;
    -webkit-transform: translateY(-400px);
  }
  50% {
    opacity: 0.3;
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
  }
}
@keyframes fadeInDown {
  0% {
    opacity: 0;
    -webkit-transform: translateY(-400px);
            transform: translateY(-400px);
  }
  50% {
    opacity: 0.3;
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
.fadeInDown {
  opacity: 0;
  -webkit-transform: translateY(-400px);
  transform: translateY(-400px);
}

.fadeInDown.go {
  -webkit-animation-name: fadeInDown;
  animation-name: fadeInDown;
}

/*****************
* rotateIn *
*****************/
@-webkit-keyframes rotateIn {
  0% {
    -webkit-transform-origin: center center;
    -webkit-transform: rotate(-200deg);
    opacity: 0;
  }
  100% {
    -webkit-transform-origin: center center;
    -webkit-transform: rotate(0);
    opacity: 1;
  }
}
@keyframes rotateIn {
  0% {
    -webkit-transform-origin: center center;
            transform-origin: center center;
    -webkit-transform: rotate(-200deg);
            transform: rotate(-200deg);
    opacity: 0;
  }
  100% {
    -webkit-transform-origin: center center;
            transform-origin: center center;
    -webkit-transform: rotate(0);
            transform: rotate(0);
    opacity: 1;
  }
}
.rotateIn.go {
  -webkit-animation-name: rotateIn;
  animation-name: rotateIn;
}

/*****************
* rotateInUpLeft *
*****************/
@-webkit-keyframes rotateInUpLeft {
  0% {
    -webkit-transform-origin: left bottom;
    -webkit-transform: rotate(90deg);
    opacity: 0;
  }
  100% {
    -webkit-transform-origin: left bottom;
    -webkit-transform: rotate(0);
    opacity: 1;
  }
}
@keyframes rotateInUpLeft {
  0% {
    -webkit-transform-origin: left bottom;
            transform-origin: left bottom;
    -webkit-transform: rotate(90deg);
            transform: rotate(90deg);
    opacity: 0;
  }
  100% {
    -webkit-transform-origin: left bottom;
            transform-origin: left bottom;
    -webkit-transform: rotate(0);
            transform: rotate(0);
    opacity: 1;
  }
}
.rotateInUpLeft.go {
  -webkit-animation-name: rotateInUpLeft;
  animation-name: rotateInUpLeft;
}

/*******************
* rotateInDownLeft *
*******************/
@-webkit-keyframes rotateInDownLeft {
  0% {
    -webkit-transform-origin: left bottom;
    -webkit-transform: rotate(-90deg);
    opacity: 0;
  }
  100% {
    -webkit-transform-origin: left bottom;
    -webkit-transform: rotate(0);
    opacity: 1;
  }
}
@keyframes rotateInDownLeft {
  0% {
    -webkit-transform-origin: left bottom;
            transform-origin: left bottom;
    -webkit-transform: rotate(-90deg);
            transform: rotate(-90deg);
    opacity: 0;
  }
  100% {
    -webkit-transform-origin: left bottom;
            transform-origin: left bottom;
    -webkit-transform: rotate(0);
            transform: rotate(0);
    opacity: 1;
  }
}
.rotateInDownLeft.go {
  -webkit-animation-name: rotateInDownLeft;
  animation-name: rotateInDownLeft;
}

/******************
* rotateInUpRight *
*******************/
@-webkit-keyframes rotateInUpRight {
  0% {
    -webkit-transform-origin: right bottom;
    -webkit-transform: rotate(-90deg);
    opacity: 0;
  }
  100% {
    -webkit-transform-origin: right bottom;
    -webkit-transform: rotate(0);
    opacity: 1;
  }
}
@keyframes rotateInUpRight {
  0% {
    -webkit-transform-origin: right bottom;
            transform-origin: right bottom;
    -webkit-transform: rotate(-90deg);
            transform: rotate(-90deg);
    opacity: 0;
  }
  100% {
    -webkit-transform-origin: right bottom;
            transform-origin: right bottom;
    -webkit-transform: rotate(0);
            transform: rotate(0);
    opacity: 1;
  }
}
.rotateInUpRight.go {
  -webkit-animation-name: rotateInUpRight;
  animation-name: rotateInUpRight;
}

/********************
* rotateInDownRight *
********************/
@-webkit-keyframes rotateInDownRight {
  0% {
    -webkit-transform-origin: right bottom;
    -webkit-transform: rotate(90deg);
    opacity: 0;
  }
  100% {
    -webkit-transform-origin: right bottom;
    -webkit-transform: rotate(0);
    opacity: 1;
  }
}
@keyframes rotateInDownRight {
  0% {
    -webkit-transform-origin: right bottom;
            transform-origin: right bottom;
    -webkit-transform: rotate(90deg);
            transform: rotate(90deg);
    opacity: 0;
  }
  100% {
    -webkit-transform-origin: right bottom;
            transform-origin: right bottom;
    -webkit-transform: rotate(0);
            transform: rotate(0);
    opacity: 1;
  }
}
.rotateInDownRight.go {
  -webkit-animation-name: rotateInDownRight;
  animation-name: rotateInDownRight;
}

/*********
* rollIn *
**********/
@-webkit-keyframes rollIn {
  0% {
    opacity: 0;
    -webkit-transform: translateX(-100%) rotate(-120deg);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateX(0px) rotate(0deg);
  }
}
@keyframes rollIn {
  0% {
    opacity: 0;
    -webkit-transform: translateX(-100%) rotate(-120deg);
            transform: translateX(-100%) rotate(-120deg);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateX(0px) rotate(0deg);
            transform: translateX(0px) rotate(0deg);
  }
}
.rollIn.go {
  -webkit-animation-name: rollIn;
  animation-name: rollIn;
}

/*********
* wiggle *
**********/
@-webkit-keyframes wiggle {
  0% {
    -webkit-transform: skewX(9deg);
  }
  10% {
    -webkit-transform: skewX(-8deg);
  }
  20% {
    -webkit-transform: skewX(7deg);
  }
  30% {
    -webkit-transform: skewX(-6deg);
  }
  40% {
    -webkit-transform: skewX(5deg);
  }
  50% {
    -webkit-transform: skewX(-4deg);
  }
  60% {
    -webkit-transform: skewX(3deg);
  }
  70% {
    -webkit-transform: skewX(-2deg);
  }
  80% {
    -webkit-transform: skewX(1deg);
  }
  90% {
    -webkit-transform: skewX(0deg);
  }
  100% {
    -webkit-transform: skewX(0deg);
  }
}
@keyframes wiggle {
  0% {
    -webkit-transform: skewX(9deg);
            transform: skewX(9deg);
  }
  10% {
    -webkit-transform: skewX(-8deg);
            transform: skewX(-8deg);
  }
  20% {
    -webkit-transform: skewX(7deg);
            transform: skewX(7deg);
  }
  30% {
    -webkit-transform: skewX(-6deg);
            transform: skewX(-6deg);
  }
  40% {
    -webkit-transform: skewX(5deg);
            transform: skewX(5deg);
  }
  50% {
    -webkit-transform: skewX(-4deg);
            transform: skewX(-4deg);
  }
  60% {
    -webkit-transform: skewX(3deg);
            transform: skewX(3deg);
  }
  70% {
    -webkit-transform: skewX(-2deg);
            transform: skewX(-2deg);
  }
  80% {
    -webkit-transform: skewX(1deg);
            transform: skewX(1deg);
  }
  90% {
    -webkit-transform: skewX(0deg);
            transform: skewX(0deg);
  }
  100% {
    -webkit-transform: skewX(0deg);
            transform: skewX(0deg);
  }
}
.wiggle.go {
  -webkit-animation-name: wiggle;
  animation-name: wiggle;
  -webkit-animation-timing-function: ease-in;
  animation-timing-function: ease-in;
}

/********
* swing *
*********/
@-webkit-keyframes swing {
  20%, 40%, 60%, 80%, 100% {
    -webkit-transform-origin: top center;
  }
  20% {
    -webkit-transform: rotate(15deg);
  }
  40% {
    -webkit-transform: rotate(-10deg);
  }
  60% {
    -webkit-transform: rotate(5deg);
  }
  80% {
    -webkit-transform: rotate(-5deg);
  }
  100% {
    -webkit-transform: rotate(0deg);
  }
}
@keyframes swing {
  20% {
    -webkit-transform: rotate(15deg);
            transform: rotate(15deg);
  }
  40% {
    -webkit-transform: rotate(-10deg);
            transform: rotate(-10deg);
  }
  60% {
    -webkit-transform: rotate(5deg);
            transform: rotate(5deg);
  }
  80% {
    -webkit-transform: rotate(-5deg);
            transform: rotate(-5deg);
  }
  100% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
}
.swing.go {
  -webkit-transform-origin: top center;
  transform-origin: top center;
  -webkit-animation-name: swing;
  animation-name: swing;
}

/*******
* tada *
********/
@-webkit-keyframes tada {
  0% {
    -webkit-transform: scale(1);
  }
  10%, 20% {
    -webkit-transform: scale(0.9) rotate(-3deg);
  }
  30%, 50%, 70%, 90% {
    -webkit-transform: scale(1.1) rotate(3deg);
  }
  40%, 60%, 80% {
    -webkit-transform: scale(1.1) rotate(-3deg);
  }
  100% {
    -webkit-transform: scale(1) rotate(0);
  }
}
@keyframes tada {
  0% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  10%, 20% {
    -webkit-transform: scale(0.9) rotate(-3deg);
            transform: scale(0.9) rotate(-3deg);
  }
  30%, 50%, 70%, 90% {
    -webkit-transform: scale(1.1) rotate(3deg);
            transform: scale(1.1) rotate(3deg);
  }
  40%, 60%, 80% {
    -webkit-transform: scale(1.1) rotate(-3deg);
            transform: scale(1.1) rotate(-3deg);
  }
  100% {
    -webkit-transform: scale(1) rotate(0);
            transform: scale(1) rotate(0);
  }
}
.tada.go {
  -webkit-animation-name: tada;
  animation-name: tada;
}

/*********
* wobble *
**********/
@-webkit-keyframes wobble {
  0% {
    -webkit-transform: translateX(0%);
  }
  15% {
    -webkit-transform: translateX(-25%) rotate(-5deg);
  }
  30% {
    -webkit-transform: translateX(20%) rotate(3deg);
  }
  45% {
    -webkit-transform: translateX(-15%) rotate(-3deg);
  }
  60% {
    -webkit-transform: translateX(10%) rotate(2deg);
  }
  75% {
    -webkit-transform: translateX(-5%) rotate(-1deg);
  }
  100% {
    -webkit-transform: translateX(0%);
  }
}
@keyframes wobble {
  0% {
    -webkit-transform: translateX(0%);
            transform: translateX(0%);
  }
  15% {
    -webkit-transform: translateX(-25%) rotate(-5deg);
            transform: translateX(-25%) rotate(-5deg);
  }
  30% {
    -webkit-transform: translateX(20%) rotate(3deg);
            transform: translateX(20%) rotate(3deg);
  }
  45% {
    -webkit-transform: translateX(-15%) rotate(-3deg);
            transform: translateX(-15%) rotate(-3deg);
  }
  60% {
    -webkit-transform: translateX(10%) rotate(2deg);
            transform: translateX(10%) rotate(2deg);
  }
  75% {
    -webkit-transform: translateX(-5%) rotate(-1deg);
            transform: translateX(-5%) rotate(-1deg);
  }
  100% {
    -webkit-transform: translateX(0%);
            transform: translateX(0%);
  }
}
.wobble.go {
  -webkit-animation-name: wobble;
  animation-name: wobble;
}

/********
* pulse *
*********/
@-webkit-keyframes pulse {
  0% {
    -webkit-transform: scale(1);
  }
  50% {
    -webkit-transform: scale(1.1);
  }
  100% {
    -webkit-transform: scale(1);
  }
}
@keyframes pulse {
  0% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  50% {
    -webkit-transform: scale(1.1);
            transform: scale(1.1);
  }
  100% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}
.pulse.go {
  -webkit-animation-name: pulse;
  animation-name: pulse;
}

/***************
* lightSpeedInRight *
****************/
@-webkit-keyframes lightSpeedInRight {
  0% {
    -webkit-transform: translateX(100%) skewX(-30deg);
    opacity: 0;
  }
  60% {
    -webkit-transform: translateX(-20%) skewX(30deg);
    opacity: 1;
  }
  80% {
    -webkit-transform: translateX(0%) skewX(-15deg);
    opacity: 1;
  }
  100% {
    -webkit-transform: translateX(0%) skewX(0deg);
    opacity: 1;
  }
}
@keyframes lightSpeedInRight {
  0% {
    -webkit-transform: translateX(100%) skewX(-30deg);
            transform: translateX(100%) skewX(-30deg);
    opacity: 0;
  }
  60% {
    -webkit-transform: translateX(-20%) skewX(30deg);
            transform: translateX(-20%) skewX(30deg);
    opacity: 1;
  }
  80% {
    -webkit-transform: translateX(0%) skewX(-15deg);
            transform: translateX(0%) skewX(-15deg);
    opacity: 1;
  }
  100% {
    -webkit-transform: translateX(0%) skewX(0deg);
            transform: translateX(0%) skewX(0deg);
    opacity: 1;
  }
}
.lightSpeedInRight.go {
  -webkit-animation-name: lightSpeedInRight;
  animation-name: lightSpeedInRight;
  -webkit-animation-timing-function: ease-out;
  animation-timing-function: ease-out;
}

/***************
* lightSpeedInLeft *
****************/
@-webkit-keyframes lightSpeedInLeft {
  0% {
    -webkit-transform: translateX(-100%) skewX(30deg);
    opacity: 0;
  }
  60% {
    -webkit-transform: translateX(20%) skewX(-30deg);
    opacity: 1;
  }
  80% {
    -webkit-transform: translateX(0%) skewX(15deg);
    opacity: 1;
  }
  100% {
    -webkit-transform: translateX(0%) skewX(0deg);
    opacity: 1;
  }
}
@keyframes lightSpeedInLeft {
  0% {
    -webkit-transform: translateX(-100%) skewX(30deg);
            transform: translateX(-100%) skewX(30deg);
    opacity: 0;
  }
  60% {
    -webkit-transform: translateX(20%) skewX(-30deg);
            transform: translateX(20%) skewX(-30deg);
    opacity: 1;
  }
  80% {
    -webkit-transform: translateX(0%) skewX(15deg);
            transform: translateX(0%) skewX(15deg);
    opacity: 1;
  }
  100% {
    -webkit-transform: translateX(0%) skewX(0deg);
            transform: translateX(0%) skewX(0deg);
    opacity: 1;
  }
}
.lightSpeedInLeft.go {
  -webkit-animation-name: lightSpeedInLeft;
  animation-name: lightSpeedInLeft;
  -webkit-animation-timing-function: ease-out;
  animation-timing-function: ease-out;
}

/*******
* Flip *
*******/
@-webkit-keyframes flip {
  0% {
    -webkit-transform: perspective(400px) rotateY(0);
    -webkit-animation-timing-function: ease-out;
  }
  40% {
    -webkit-transform: perspective(400px) translateZ(150px) rotateY(170deg);
    -webkit-animation-timing-function: ease-out;
  }
  50% {
    -webkit-transform: perspective(400px) translateZ(150px) rotateY(190deg) scale(1);
    -webkit-animation-timing-function: ease-in;
  }
  80% {
    -webkit-transform: perspective(400px) rotateY(360deg) scale(0.95);
    -webkit-animation-timing-function: ease-in;
  }
  100% {
    -webkit-transform: perspective(400px) scale(1);
    -webkit-animation-timing-function: ease-in;
  }
}
@keyframes flip {
  0% {
    -webkit-transform: perspective(400px) rotateY(0);
            transform: perspective(400px) rotateY(0);
    -webkit-animation-timing-function: ease-out;
            animation-timing-function: ease-out;
  }
  40% {
    -webkit-transform: perspective(400px) translateZ(150px) rotateY(170deg);
            transform: perspective(400px) translateZ(150px) rotateY(170deg);
    -webkit-animation-timing-function: ease-out;
            animation-timing-function: ease-out;
  }
  50% {
    -webkit-transform: perspective(400px) translateZ(150px) rotateY(190deg) scale(1);
            transform: perspective(400px) translateZ(150px) rotateY(190deg) scale(1);
    -webkit-animation-timing-function: ease-in;
            animation-timing-function: ease-in;
  }
  80% {
    -webkit-transform: perspective(400px) rotateY(360deg) scale(0.95);
            transform: perspective(400px) rotateY(360deg) scale(0.95);
    -webkit-animation-timing-function: ease-in;
            animation-timing-function: ease-in;
  }
  100% {
    -webkit-transform: perspective(400px) scale(1);
            transform: perspective(400px) scale(1);
    -webkit-animation-timing-function: ease-in;
            animation-timing-function: ease-in;
  }
}
.flip.go {
  -webkit-backface-visibility: visible !important;
  -webkit-animation-name: flip;
  backface-visibility: visible !important;
  animation-name: flip;
}

/**********
* flipInX *
**********/
@-webkit-keyframes flipInX {
  0% {
    -webkit-transform: perspective(400px) rotateX(90deg);
    opacity: 0;
  }
  40% {
    -webkit-transform: perspective(400px) rotateX(-10deg);
  }
  70% {
    -webkit-transform: perspective(400px) rotateX(10deg);
  }
  100% {
    -webkit-transform: perspective(400px) rotateX(0deg);
    opacity: 1;
  }
}
@keyframes flipInX {
  0% {
    -webkit-transform: perspective(400px) rotateX(90deg);
            transform: perspective(400px) rotateX(90deg);
    opacity: 0;
  }
  40% {
    -webkit-transform: perspective(400px) rotateX(-10deg);
            transform: perspective(400px) rotateX(-10deg);
  }
  70% {
    -webkit-transform: perspective(400px) rotateX(10deg);
            transform: perspective(400px) rotateX(10deg);
  }
  100% {
    -webkit-transform: perspective(400px) rotateX(0deg);
            transform: perspective(400px) rotateX(0deg);
    opacity: 1;
  }
}
.flipInX.go {
  -webkit-backface-visibility: visible !important;
  -webkit-animation-name: flipInX;
  backface-visibility: visible !important;
  animation-name: flipInX;
}

/**********
* flipInY *
**********/
@-webkit-keyframes flipInY {
  0% {
    -webkit-transform: perspective(400px) rotateY(90deg);
    opacity: 0;
  }
  40% {
    -webkit-transform: perspective(400px) rotateY(-10deg);
  }
  70% {
    -webkit-transform: perspective(400px) rotateY(10deg);
  }
  100% {
    -webkit-transform: perspective(400px) rotateY(0deg);
    opacity: 1;
  }
}
@keyframes flipInY {
  0% {
    -webkit-transform: perspective(400px) rotateY(90deg);
            transform: perspective(400px) rotateY(90deg);
    opacity: 0;
  }
  40% {
    -webkit-transform: perspective(400px) rotateY(-10deg);
            transform: perspective(400px) rotateY(-10deg);
  }
  70% {
    -webkit-transform: perspective(400px) rotateY(10deg);
            transform: perspective(400px) rotateY(10deg);
  }
  100% {
    -webkit-transform: perspective(400px) rotateY(0deg);
            transform: perspective(400px) rotateY(0deg);
    opacity: 1;
  }
}
.flipInY.go {
  -webkit-backface-visibility: visible !important;
  -webkit-animation-name: flipInY;
  backface-visibility: visible !important;
  animation-name: flipInY;
}

/*****************
* Out animations *
*****************/
/************
* bounceOut *
*************/
@-webkit-keyframes bounceOut {
  0% {
    -webkit-transform: scale(1);
  }
  25% {
    -webkit-transform: scale(0.95);
  }
  50% {
    opacity: 1;
    -webkit-transform: scale(1.1);
  }
  100% {
    opacity: 0;
    -webkit-transform: scale(0.3);
  }
}
@keyframes bounceOut {
  0% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  25% {
    -webkit-transform: scale(0.95);
            transform: scale(0.95);
  }
  50% {
    opacity: 1;
    -webkit-transform: scale(1.1);
            transform: scale(1.1);
  }
  100% {
    opacity: 0;
    -webkit-transform: scale(0.3);
            transform: scale(0.3);
  }
}
.bounceOut.goAway {
  -webkit-animation-name: bounceOut;
  animation-name: bounceOut;
}

/************
* bounceOutUp *
*************/
@-webkit-keyframes bounceOutUp {
  0% {
    -webkit-transform: translateY(0);
  }
  20% {
    opacity: 1;
    -webkit-transform: translateY(20px);
  }
  100% {
    opacity: 0;
    -webkit-transform: translateY(-2000px);
  }
}
@keyframes bounceOutUp {
  0% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  20% {
    opacity: 1;
    -webkit-transform: translateY(20px);
            transform: translateY(20px);
  }
  100% {
    opacity: 0;
    -webkit-transform: translateY(-2000px);
            transform: translateY(-2000px);
  }
}
.bounceOutUp.goAway {
  -webkit-animation-name: bounceOutUp;
  animation-name: bounceOutUp;
}

/************
* bounceOutDown *
*************/
@-webkit-keyframes bounceOutDown {
  0% {
    -webkit-transform: translateY(0);
  }
  20% {
    opacity: 1;
    -webkit-transform: translateY(-20px);
  }
  100% {
    opacity: 0;
    -webkit-transform: translateY(2000px);
  }
}
@keyframes bounceOutDown {
  0% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  20% {
    opacity: 1;
    -webkit-transform: translateY(-20px);
            transform: translateY(-20px);
  }
  100% {
    opacity: 0;
    -webkit-transform: translateY(2000px);
            transform: translateY(2000px);
  }
}
.bounceOutDown.goAway {
  -webkit-animation-name: bounceOutDown;
  animation-name: bounceOutDown;
}

/************
* bounceOutLeft *
*************/
@-webkit-keyframes bounceOutLeft {
  0% {
    -webkit-transform: translateX(0);
  }
  20% {
    opacity: 1;
    -webkit-transform: translateX(20px);
  }
  100% {
    opacity: 0;
    -webkit-transform: translateX(-2000px);
  }
}
@keyframes bounceOutLeft {
  0% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  20% {
    opacity: 1;
    -webkit-transform: translateX(20px);
            transform: translateX(20px);
  }
  100% {
    opacity: 0;
    -webkit-transform: translateX(-2000px);
            transform: translateX(-2000px);
  }
}
.bounceOutLeft.goAway {
  -webkit-animation-name: bounceOutLeft;
  animation-name: bounceOutLeft;
}

/************
* bounceOutRight *
*************/
@-webkit-keyframes bounceOutRight {
  0% {
    -webkit-transform: translateX(0);
  }
  20% {
    opacity: 1;
    -webkit-transform: translateX(-20px);
  }
  100% {
    opacity: 0;
    -webkit-transform: translateX(2000px);
  }
}
@keyframes bounceOutRight {
  0% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  20% {
    opacity: 1;
    -webkit-transform: translateX(-20px);
            transform: translateX(-20px);
  }
  100% {
    opacity: 0;
    -webkit-transform: translateX(2000px);
            transform: translateX(2000px);
  }
}
.bounceOutRight.goAway {
  -webkit-animation-name: bounceOutRight;
  animation-name: bounceOutRight;
}

/************
* fadeOut *
*************/
@-webkit-keyframes fadeOut {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
@keyframes fadeOut {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
.fadeOut.goAway {
  -webkit-animation-name: fadeOut;
  animation-name: fadeOut;
}

/************
* fadeOutUp *
*************/
@-webkit-keyframes fadeOutUp {
  0% {
    opacity: 1;
    -webkit-transform: translateY(0);
  }
  100% {
    opacity: 0;
    -webkit-transform: translateY(-2000px);
  }
}
@keyframes fadeOutUp {
  0% {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  100% {
    opacity: 0;
    -webkit-transform: translateY(-2000px);
            transform: translateY(-2000px);
  }
}
.fadeOutUp.goAway {
  -webkit-animation-name: fadeOutUp;
  animation-name: fadeOutUp;
}

/************
* fadeOutDown *
*************/
@-webkit-keyframes fadeOutDown {
  0% {
    opacity: 1;
    -webkit-transform: translateY(0);
  }
  100% {
    opacity: 0;
    -webkit-transform: translateY(2000px);
  }
}
@keyframes fadeOutDown {
  0% {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  100% {
    opacity: 0;
    -webkit-transform: translateY(2000px);
            transform: translateY(2000px);
  }
}
.fadeOutDown.goAway {
  -webkit-animation-name: fadeOutDown;
  animation-name: fadeOutDown;
}

/************
* fadeOutLeft *
*************/
@-webkit-keyframes fadeOutLeft {
  0% {
    opacity: 1;
    -webkit-transform: translateX(0);
  }
  100% {
    opacity: 0;
    -webkit-transform: translateX(-2000px);
  }
}
@keyframes fadeOutLeft {
  0% {
    opacity: 1;
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  100% {
    opacity: 0;
    -webkit-transform: translateX(-2000px);
            transform: translateX(-2000px);
  }
}
.fadeOutLeft.goAway {
  -webkit-animation-name: fadeOutLeft;
  animation-name: fadeOutLeft;
}

/************
* fadeOutRight *
*************/
@-webkit-keyframes fadeOutRight {
  0% {
    opacity: 1;
    -webkit-transform: translateX(0);
  }
  100% {
    opacity: 0;
    -webkit-transform: translateX(2000px);
  }
}
@keyframes fadeOutRight {
  0% {
    opacity: 1;
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  100% {
    opacity: 0;
    -webkit-transform: translateX(2000px);
            transform: translateX(2000px);
  }
}
.fadeOutRight.goAway {
  -webkit-animation-name: fadeOutRight;
  animation-name: fadeOutRight;
}

/************
* flipOutX *
*************/
@-webkit-keyframes flipOutX {
  0% {
    -webkit-transform: perspective(400px) rotateX(0deg);
    opacity: 1;
  }
  100% {
    -webkit-transform: perspective(400px) rotateX(90deg);
    opacity: 0;
  }
}
@keyframes flipOutX {
  0% {
    -webkit-transform: perspective(400px) rotateX(0deg);
            transform: perspective(400px) rotateX(0deg);
    opacity: 1;
  }
  100% {
    -webkit-transform: perspective(400px) rotateX(90deg);
            transform: perspective(400px) rotateX(90deg);
    opacity: 0;
  }
}
.flipOutX.goAway {
  -webkit-animation-name: flipOutX;
  -webkit-backface-visibility: visible !important;
  animation-name: flipOutX;
  backface-visibility: visible !important;
}

/************
* flipOutY *
*************/
@-webkit-keyframes flipOutY {
  0% {
    -webkit-transform: perspective(400px) rotateY(0deg);
    opacity: 1;
  }
  100% {
    -webkit-transform: perspective(400px) rotateY(90deg);
    opacity: 0;
  }
}
@keyframes flipOutY {
  0% {
    -webkit-transform: perspective(400px) rotateY(0deg);
            transform: perspective(400px) rotateY(0deg);
    opacity: 1;
  }
  100% {
    -webkit-transform: perspective(400px) rotateY(90deg);
            transform: perspective(400px) rotateY(90deg);
    opacity: 0;
  }
}
.flipOutY {
  -webkit-backface-visibility: visible !important;
  -webkit-animation-name: flipOutY;
  backface-visibility: visible !important;
  animation-name: flipOutY;
}

/************
* lightSpeedOutRight *
*************/
@-webkit-keyframes lightSpeedOutRight {
  0% {
    -webkit-transform: translateX(0%) skewX(0deg);
    opacity: 1;
  }
  100% {
    -webkit-transform: translateX(100%) skewX(-30deg);
    opacity: 0;
  }
}
@keyframes lightSpeedOutRight {
  0% {
    -webkit-transform: translateX(0%) skewX(0deg);
            transform: translateX(0%) skewX(0deg);
    opacity: 1;
  }
  100% {
    -webkit-transform: translateX(100%) skewX(-30deg);
            transform: translateX(100%) skewX(-30deg);
    opacity: 0;
  }
}
.lightSpeedOutRight.goAway {
  -webkit-animation-name: lightSpeedOutRight;
  animation-name: lightSpeedOutRight;
  -webkit-animation-timing-function: ease-in;
  animation-timing-function: ease-in;
}

/************
* lightSpeedOutLeft *
*************/
@-webkit-keyframes lightSpeedOutLeft {
  0% {
    -webkit-transform: translateX(0%) skewX(0deg);
    opacity: 1;
  }
  100% {
    -webkit-transform: translateX(-100%) skewX(30deg);
    opacity: 0;
  }
}
@keyframes lightSpeedOutLeft {
  0% {
    -webkit-transform: translateX(0%) skewX(0deg);
            transform: translateX(0%) skewX(0deg);
    opacity: 1;
  }
  100% {
    -webkit-transform: translateX(-100%) skewX(30deg);
            transform: translateX(-100%) skewX(30deg);
    opacity: 0;
  }
}
.lightSpeedOutLeft.goAway {
  -webkit-animation-name: lightSpeedOutLeft;
  animation-name: lightSpeedOutLeft;
  -webkit-animation-timing-function: ease-in;
  animation-timing-function: ease-in;
}

/************
* rotateOut *
*************/
@-webkit-keyframes rotateOut {
  0% {
    -webkit-transform-origin: center center;
    -webkit-transform: rotate(0);
    opacity: 1;
  }
  100% {
    -webkit-transform-origin: center center;
    -webkit-transform: rotate(200deg);
    opacity: 0;
  }
}
@keyframes rotateOut {
  0% {
    -webkit-transform-origin: center center;
            transform-origin: center center;
    -webkit-transform: rotate(0);
            transform: rotate(0);
    opacity: 1;
  }
  100% {
    -webkit-transform-origin: center center;
            transform-origin: center center;
    -webkit-transform: rotate(200deg);
            transform: rotate(200deg);
    opacity: 0;
  }
}
.rotateOut.goAway {
  -webkit-animation-name: rotateOut;
  animation-name: rotateOut;
}

/************
* rotateOutUpLeft *
*************/
@-webkit-keyframes rotateOutUpLeft {
  0% {
    -webkit-transform-origin: left bottom;
    -webkit-transform: rotate(0);
    opacity: 1;
  }
  100% {
    -webkit-transform-origin: left bottom;
    -webkit-transform: rotate(-90deg);
    opacity: 0;
  }
}
@keyframes rotateOutUpLeft {
  0% {
    -webkit-transform-origin: left bottom;
            transform-origin: left bottom;
    -webkit-transform: rotate(0);
            transform: rotate(0);
    opacity: 1;
  }
  100% {
    -transform-origin: left bottom;
    -transform: rotate(-90deg);
    opacity: 0;
  }
}
.rotateOutUpLeft.goAway {
  -webkit-animation-name: rotateOutUpLeft;
  animation-name: rotateOutUpLeft;
}

/************
* rotateOutDownLeft *
*************/
@-webkit-keyframes rotateOutDownLeft {
  0% {
    -webkit-transform-origin: left bottom;
    -webkit-transform: rotate(0);
    opacity: 1;
  }
  100% {
    -webkit-transform-origin: left bottom;
    -webkit-transform: rotate(90deg);
    opacity: 0;
  }
}
@keyframes rotateOutDownLeft {
  0% {
    -webkit-transform-origin: left bottom;
            transform-origin: left bottom;
    -webkit-transform: rotate(0);
            transform: rotate(0);
    opacity: 1;
  }
  100% {
    -webkit-transform-origin: left bottom;
            transform-origin: left bottom;
    -webkit-transform: rotate(90deg);
            transform: rotate(90deg);
    opacity: 0;
  }
}
.rotateOutDownLeft.goAway {
  -webkit-animation-name: rotateOutDownLeft;
  animation-name: rotateOutDownLeft;
}

/************
* rotateOutUpRight *
*************/
@-webkit-keyframes rotateOutUpRight {
  0% {
    -webkit-transform-origin: right bottom;
    -webkit-transform: rotate(0);
    opacity: 1;
  }
  100% {
    -webkit-transform-origin: right bottom;
    -webkit-transform: rotate(90deg);
    opacity: 0;
  }
}
@keyframes rotateOutUpRight {
  0% {
    -webkit-transform-origin: right bottom;
            transform-origin: right bottom;
    -webkit-transform: rotate(0);
            transform: rotate(0);
    opacity: 1;
  }
  100% {
    -webkit-transform-origin: right bottom;
            transform-origin: right bottom;
    -webkit-transform: rotate(90deg);
            transform: rotate(90deg);
    opacity: 0;
  }
}
.rotateOutUpRight.goAway {
  -webkit-animation-name: rotateOutUpRight;
  animation-name: rotateOutUpRight;
}

/************
* rollOut *
*************/
@-webkit-keyframes rollOut {
  0% {
    opacity: 1;
    -webkit-transform: translateX(0px) rotate(0deg);
  }
  100% {
    opacity: 0;
    -webkit-transform: translateX(100%) rotate(120deg);
  }
}
@keyframes rollOut {
  0% {
    opacity: 1;
    -webkit-transform: translateX(0px) rotate(0deg);
            transform: translateX(0px) rotate(0deg);
  }
  100% {
    opacity: 0;
    -webkit-transform: translateX(100%) rotate(120deg);
            transform: translateX(100%) rotate(120deg);
  }
}
.rollOut.goAway {
  -webkit-animation-name: rollOut;
  animation-name: rollOut;
}