/*
sLess v 2.00

normalize.less
 - normalize css

reference.less
 - position
 - display
 - margin
 - shadow
 - animation
 - transform
 - responsive

style.less
 - main style

fonts.less
 - fonts style

popup.less
 - popup style

grid.less
 - grid size and configuration

animate.less
 - animation using keyframe style
*/
html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
font,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
textarea,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
input,
header,
figure,
footer,
main,
figcaption,
nav,
section {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
  text-decoration: none;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  -moz-box-sizing: border-box;
}
figure {
  -webkit-margin-before: 0;
  -webkit-margin-after: 0;
  -webkit-margin-start: 0;
  -webkit-margin-end: 0;
}
body {
  line-height: 100%;
  height: 100%;
}
body u {
  text-decoration: underline;
}
ol,
ul {
  list-style: none;
}
blockquote,
q {
  quotes: none;
}
:focus {
  outline: 0;
}
ins {
  text-decoration: none;
}
del {
  text-decoration: line-through;
}
table {
  border-collapse: collapse;
  border-spacing: 0;
}
.clear {
  clear: both;
}
/* FILE NAVIGATION */
#file-nav {
  position: fixed;
  bottom: 30px;
  left: 30px;
  z-index: 1000000;
  color: white;
  -webkit-transition: all 100ms;
  transition: all 100ms;
  -webkit-transition-timing-function: ease-out;
  transition-timing-function: ease-out;
}
#file-nav .page-list {
  padding: 20px 10px 0;
  position: absolute;
  left: 0;
  bottom: 0;
  display: none;
  background: #323A47;
  width: 250px;
  height: 400px;
}
#file-nav .page-list #scroll-nav {
  height: 280px;
  overflow: hidden;
}
#file-nav .page-list h3 {
  text-transform: uppercase;
  font-size: 16px;
  font-weight: 300;
  letter-spacing: 3px;
  margin-bottom: 10px;
  text-align: center;
}
#file-nav .page-list a {
  display: block;
  line-height: 140%;
  padding: 0 10px;
  letter-spacing: 2px;
  font-size: 10px;
  text-transform: capitalize;
  color: white;
  opacity: 0.4;
  margin-bottom: 20px;
}
#file-nav .page-list a:hover {
  opacity: 1;
}
#file-nav .page-list .mCSB_scrollTools .mCSB_draggerRail {
  background: white;
  opacity: 0.1;
  width: 4px;
}
#file-nav .page-list .mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar {
  background: #8593A9;
  width: 6px;
}
#file-nav #file-nav-toggle {
  width: 60px;
  height: 60px;
  display: block;
  text-transform: uppercase;
  font-weight: 800;
  line-height: 100%;
  border-radius: 50%;
  background: #2A313D;
  font-size: 12px;
  letter-spacing: 3px;
  padding: 10px 0 0 4px;
  text-align: center;
  position: relative;
  overflow: hidden;
  z-index: 1;
  -webkit-transition: all 200ms;
  transition: all 200ms;
  -webkit-transition-timing-function: ease-out;
  transition-timing-function: ease-out;
  color: white;
}
#file-nav #file-nav-toggle span {
  font-size: 7px;
  letter-spacing: 1px;
  display: block;
  position: relative;
  left: -2px;
  font-weight: 400;
}
#file-nav #file-nav-toggle small {
  display: block;
  width: 17px;
  margin: 0 auto 7px auto;
  -webkit-transition: all 200ms;
  transition: all 200ms;
  -webkit-transition-timing-function: ease-out;
  transition-timing-function: ease-out;
}
#file-nav #file-nav-toggle small span {
  display: block;
  height: 2px;
  background: white;
  margin-bottom: 2px;
}
#file-nav #file-nav-toggle:hover {
  opacity: 1;
}
#file-nav #file-nav-toggle.active {
  border-radius: 0;
}
#file-nav #file-nav-toggle.active small {
  width: 3px;
}
#file-nav .status {
  color: white;
  font-size: 12px;
  position: absolute;
  right: 10px;
  bottom: 7px;
  width: 170px;
  text-align: center;
  text-transform: uppercase;
}
#file-nav .status .single {
  width: 50%;
  float: left;
  font-size: 32px;
  line-height: 100%;
  font-weight: 800;
  letter-spacing: 3px;
}
#file-nav .status .single span {
  display: block;
  font-size: 10px;
  letter-spacing: 2px;
  font-weight: 300;
  line-height: 18px;
}
/* MARGIN */
/*LINE CLAMP*/
/* DISPLAY*/
.block {
  display: block;
}
.flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.inline {
  display: inline !lteIE7;
  display: inline-block;
}
.none {
  display: none;
}
.flex-center {
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  -ms-flex-align: center;
  -webkit-box-align: center;
  align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
/* POSITION */
.absolute {
  position: absolute;
}
.relative {
  position: relative;
}
.fixed {
  position: fixed;
}
/* SHADOW */
.shadow {
  -webkit-box-shadow: 0px 1px 10px 1px rgba(0, 0, 0, 0.35);
  box-shadow: 0px 1px 10px 1px rgba(0, 0, 0, 0.35);
}
.shadow-none {
  -webkit-box-shadow: 0px 1px 10px 1px rgba(0, 0, 0, 0);
  box-shadow: 0px 1px 10px 1px rgba(0, 0, 0, 0);
}
.shadow-white {
  -webkit-box-shadow: 1px 1px 1px 1px #ffffff;
  box-shadow: 1px 1px 1px 1px #ffffff;
}
.shadow-inset {
  -webkit-box-shadow: inset 1px 1px 1px 1px rgba(0, 0, 0, 0.5);
  box-shadow: inset 1px 1px 1px 1px rgba(0, 0, 0, 0.5);
}
.text-shadow {
  text-shadow: 0px 1px 3px rgba(0, 0, 0, 0.5);
  -webkit-filter: dropshadow(color=#000000, offx=1, offy=1);
          filter: dropshadow(color=#000000, offx=1, offy=1);
}
.text-shadow-none {
  text-shadow: 0px 0px 0px rgba(0, 0, 0, 0);
  -webkit-filter: dropshadow(color=#000000, offx=0, offy=0);
          filter: dropshadow(color=#000000, offx=0, offy=0);
}
.text-shadow-inset {
  text-shadow: 1px 1px 0px rgba(255, 255, 255, 0.1), 0px -1px 0px rgba(0, 0, 0, 0.5);
  -webkit-filter: dropshadow(color=#ffffff, offx=1, offy=0);
          filter: dropshadow(color=#ffffff, offx=1, offy=0);
}
.text-shadow-white {
  text-shadow: 1.5px 1.5px 1px #ffffff;
  -webkit-filter: dropshadow(color=#ffffff, offx=1, offy=0);
          filter: dropshadow(color=#ffffff, offx=1, offy=0);
}
.text-shadow-white-2 {
  text-shadow: 0px 1px 1px rgba(255, 255, 255, 0.2);
  -webkit-filter: dropshadow(color=#ffffff, offx=1, offy=0);
          filter: dropshadow(color=#ffffff, offx=1, offy=0);
}
/* ANIMATION */
/* BORDER RADIUS */
.cover-it {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  overflow: hidden;
}
.br {
  border: solid 1px red;
}
/* FLOAT */
.left-side {
  float: left;
}
.right-side {
  float: right;
}
/* RESPONSIVE */
.block-mobile {
  display: none;
}
@media screen and (max-width: 1024px) {
  .block-mobile {
    display: block !important;
  }
}
.inline-mobile {
  display: none;
}
@media screen and (max-width: 1024px) {
  .inline-mobile {
    display: inline-block !important;
  }
}
@media screen and (max-width: 1024px) {
  .desktop-only {
    display: none;
  }
}
/* COLOR */
/* INVTE */
.by {
  font-size: 12px;
  font-size: 14px;
  margin: 32px 0;
}
.by span {
  color: #FF3E9E;
  font-weight: 700;
}
.by img {
  width: 100%;
}
.by a {
  display: block;
  width: 80px;
  margin: 10px auto 0;
  color: black;
}
.by small {
  font-size: 12px;
}
/* CONTAINER */
.container {
  width: 1170px;
  padding: 0 16px;
  margin: 0 auto 0 auto;
  position: relative;
}
@media screen and (max-width: 1170px) {
  .container {
    width: 992px;
  }
}
@media screen and (max-width: 1024px) {
  .container {
    width: 100%;
  }
}
@media screen and (max-width: 768px) {
  .container {
    width: 100%;
  }
}
.row {
  margin: 0 -16px;
}
.row::after,
.row::before {
  display: table;
  content: ' ';
  clear: both;
}
.dc1,
.dc2,
.dc3,
.dc4,
.dc5,
.dc6,
.dc7,
.dc8,
.dc9,
.dc10,
.dc11,
.dc12,
.tc1,
.tc2,
.tc3,
.tc4,
.tc5,
.tc6,
.tc7,
.tc8,
.tc9,
.tc10,
.tc11,
.tc12,
.mc1,
.mc2,
.mc3,
.mc4,
.mc5,
.mc6,
.mc7,
.mc8,
.mc9,
.mc10,
.mc11,
.mc12 {
  padding: 0 16px;
  float: left;
}
.dc1.auto,
.dc2.auto,
.dc3.auto,
.dc4.auto,
.dc5.auto,
.dc6.auto,
.dc7.auto,
.dc8.auto,
.dc9.auto,
.dc10.auto,
.dc11.auto,
.dc12.auto,
.tc1.auto,
.tc2.auto,
.tc3.auto,
.tc4.auto,
.tc5.auto,
.tc6.auto,
.tc7.auto,
.tc8.auto,
.tc9.auto,
.tc10.auto,
.tc11.auto,
.tc12.auto,
.mc1.auto,
.mc2.auto,
.mc3.auto,
.mc4.auto,
.mc5.auto,
.mc6.auto,
.mc7.auto,
.mc8.auto,
.mc9.auto,
.mc10.auto,
.mc11.auto,
.mc12.auto {
  float: none;
  margin: 0 auto 0 auto;
}
.dc1.inline,
.dc2.inline,
.dc3.inline,
.dc4.inline,
.dc5.inline,
.dc6.inline,
.dc7.inline,
.dc8.inline,
.dc9.inline,
.dc10.inline,
.dc11.inline,
.dc12.inline,
.tc1.inline,
.tc2.inline,
.tc3.inline,
.tc4.inline,
.tc5.inline,
.tc6.inline,
.tc7.inline,
.tc8.inline,
.tc9.inline,
.tc10.inline,
.tc11.inline,
.tc12.inline,
.mc1.inline,
.mc2.inline,
.mc3.inline,
.mc4.inline,
.mc5.inline,
.mc6.inline,
.mc7.inline,
.mc8.inline,
.mc9.inline,
.mc10.inline,
.mc11.inline,
.mc12.inline {
  display: inline-block;
  margin: 0 -2px;
  float: none;
}
.dc1 {
  width: 8.3%;
}
.dc2 {
  width: 16.6%;
}
.dc3 {
  width: 25%;
}
.dc4 {
  width: 33.3%;
}
.dc5 {
  width: 41.6%;
}
.dc6 {
  width: 50%;
}
.dc7 {
  width: 58.3%;
}
.dc8 {
  width: 66.6%;
}
.dc9 {
  width: 75%;
}
.dc10 {
  width: 83.3%;
}
.dc11 {
  width: 91.6%;
}
.dc12 {
  width: 100%;
}
@media screen and (max-width: 768px) {
  .tc1 {
    width: 8.3%;
  }
  .tc2 {
    width: 16.6%;
  }
  .tc3 {
    width: 25%;
  }
  .tc4 {
    width: 33.3%;
  }
  .tc5 {
    width: 41.6%;
  }
  .tc6 {
    width: 50%;
  }
  .tc7 {
    width: 58.3%;
  }
  .tc8 {
    width: 66.6%;
  }
  .tc9 {
    width: 75%;
  }
  .tc10 {
    width: 83.3%;
  }
  .tc11 {
    width: 91.6%;
  }
  .tc12 {
    width: 100%;
  }
}
@media screen and (max-width: 480px) {
  .mc1 {
    width: 8.3%;
  }
  .mc2 {
    width: 16.6%;
  }
  .mc3 {
    width: 25%;
  }
  .mdc4 {
    width: 33.3%;
  }
  .mc5 {
    width: 41.6%;
  }
  .mc6 {
    width: 50%;
  }
  .mc7 {
    width: 58.3%;
  }
  .mc8 {
    width: 66.6%;
  }
  .mc9 {
    width: 75%;
  }
  .mc10 {
    width: 83.3%;
  }
  .mc11 {
    width: 91.6%;
  }
  .mc12 {
    width: 100%;
  }
}
/* FONTS */
@font-face {
  font-family: 'eastlibertysignature';
  src: url('eastlibertysignature.eot');
  src: url('eastlibertysignature.eot') format('embedded-opentype'), url('eastlibertysignature.woff2') format('woff2'), url('eastlibertysignature.woff') format('woff'), url('eastlibertysignature.ttf') format('truetype'), url('eastlibertysignature.svg#eastlibertysignature') format('svg');
}
@font-face {
  font-family: 'foglihtenno07regular';
  src: url('foglihtenno07-webfont.eot');
  src: url('foglihtenno07-webfont.eot?#iefix') format('embedded-opentype'), url('foglihtenno07-webfont.woff2') format('woff2'), url('foglihtenno07-webfont.woff') format('woff'), url('foglihtenno07-webfont.ttf') format('truetype'), url('foglihtenno07-webfont.svg#foglihtenno07regular') format('svg');
}
/* TYPOGRAPHY */
body,
html {
  font-size: 20px;
}
@media screen and (max-width: 1440px) {
  body,
  html {
    font-size: 16px;
  }
}
@media screen and (max-width: 1024px) {
  body,
  html {
    font-size: 14px;
  }
}
h1,
h2,
h3,
h4,
h5,
h6,
.h1,
.h2,
.h3,
.h4,
.h5,
.h6,
li,
span {
  line-height: 1.65;
}
@media screen and (max-width: 768px) {
  h1,
  h2,
  h3,
  h4,
  h5,
  h6,
  .h1,
  .h2,
  .h3,
  .h4,
  .h5,
  .h6,
  li,
  span {
    line-height: 1.4;
  }
}
p {
  line-height: 1.65;
}
h1,
.h1 {
  font-size: 3.052rem;
  margin-bottom: 32px;
}
h1.banner,
.h1.banner {
  font-size: 96px;
}
h1.title,
.h1.title {
  font-family: 'eastlibertysignature', cursive;
  font-size: 96px;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
h1 small,
.h1 small {
  font-size: 24px;
}
h1 .right-side,
.h1 .right-side {
  margin-top: 16px;
}
@media screen and (max-width: 1024px) {
  h1.banner,
  .h1.banner {
    font-size: 48px;
  }
}
@media screen and (max-width: 480px) {
  h1,
  .h1 {
    margin-bottom: 16px;
    font-size: 37px;
  }
  h1.banner,
  .h1.banner {
    font-size: 32px;
  }
}
@media screen and (max-width: 768px) {
  h1,
  .h1 {
    font-size: 1.802rem;
    margin-bottom: 16px;
  }
}
h2,
.h2 {
  font-size: 2.441rem;
  margin-bottom: 32px;
}
@media screen and (max-width: 768px) {
  h2,
  .h2 {
    font-size: 1.602rem;
    margin-bottom: 16px;
  }
}
h3,
.h3 {
  font-size: 1.953rem;
  margin-bottom: 16px;
}
@media screen and (max-width: 768px) {
  h3,
  .h3 {
    font-size: 1.424rem;
  }
}
h4,
.h4 {
  font-size: 1.563rem;
  margin-bottom: 16px;
}
@media screen and (max-width: 768px) {
  h4,
  .h4 {
    font-size: 1.266rem;
    margin-bottom: 8px;
  }
}
h5,
.h5 {
  font-size: 1.25rem;
  margin-bottom: 8px;
}
@media screen and (max-width: 768px) {
  h5,
  .h5 {
    font-size: 1.125rem;
  }
}
h6,
.h6 {
  font-size: 1rem;
  margin-bottom: 8px;
}
li,
p {
  font-size: 1rem;
  margin-bottom: 16px;
}
li.large,
p.large {
  font-size: 1.25rem;
}
li small,
p small,
li.small,
p.small {
  font-size: 0.8em;
  line-height: 1.2 !important;
  display: inline !lteIE7;
  display: inline-block;
}
li.error,
p.error {
  color: red;
}
ul,
ol {
  margin: 0 0 15px;
}
ul {
  padding-left: 16px;
}
ul.disc > li {
  position: relative;
  list-style: disc;
  padding-left: 8px;
  margin-left: 8px;
}
ol {
  padding-left: 16px;
}
ol.decimal > li {
  list-style: decimal;
  padding-left: 8px;
  margin-left: 8px;
}
.brush {
  position: relative;
  text-align: center;
  margin-bottom: 40px;
}
.brush span {
  font-size: inherit;
  position: relative;
  z-index: 1;
}
.brush:before {
  content: '';
  position: absolute;
  width: 281px;
  height: 86px;
  background: url("../img/brush.png") left top no-repeat transparent;
  z-index: 0;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
@media screen and (max-width: 480px) {
  .brush:before {
    width: 140px;
    height: 43px;
    background-size: 100%;
  }
}
a {
  color: black;
  text-decoration: none;
}
.lt {
  text-align: left;
}
.rt {
  text-align: right;
}
.ct {
  text-align: center;
}
input.radio,
input.check {
  float: left;
  opacity: 0;
  height: 16px;
  width: 16px;
  display: inline-block;
  position: absolute;
  left: 0;
  top: 50%;
  margin-top: -8px;
  z-index: 100;
}
input.radio:hover,
input.check:hover {
  cursor: pointer;
}
input.radio + label {
  background: url("../img/icon-radio.png") no-repeat scroll 0 0;
  clear: none;
  display: block;
  height: 16px;
  position: absolute;
  left: 0;
  top: 50%;
  margin-top: -8px;
  width: 16px;
}
input.check + label {
  background: url("../img/icon-check.png") no-repeat scroll 0 0;
  clear: none;
  display: block;
  height: 16px;
  position: absolute;
  width: 16px;
  left: 0;
  top: 0;
}
input.radio:hover + label,
input.check:hover + label {
  background-position: -16px 0;
}
input.radio:checked + label,
input.check:checked + label {
  background-position: -32px 0;
}
input.radio:disabled + label,
input.check:disabled + label {
  background-position: -48px 0;
}
.pink {
  color: #FF3E9E;
}
body,
html {
  font-family: 'Roboto', sans-serif;
  font-size: 16px;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
.wa-btn {
  position: fixed;
  bottom: 32px;
  right: 32px;
  z-index: 1000;
  height: 48px;
  line-height: 48px;
  padding: 0 24px;
  border: solid 3px #4CAF50;
  border-radius: 24px;
  text-transform: uppercase;
  font-size: 12px;
  font-weight: 700;
  background: white;
  -webkit-box-shadow: 0 3px 16px rgba(0, 0, 0, 0.09);
          box-shadow: 0 3px 16px rgba(0, 0, 0, 0.09);
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  -ms-flex-align: center;
  -webkit-box-align: center;
  align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.wa-btn svg {
  margin-right: 8px;
}
.wa-btn label {
  -webkit-transition: all 200ms;
  transition: all 200ms;
  -webkit-transition-timing-function: ease-out;
  transition-timing-function: ease-out;
  overflow: hidden;
}
.wa-btn label:hover {
  cursor: pointer;
}
.wa-btn .l2 {
  width: 0;
}
.wa-btn:hover {
  cursor: pointer;
}
.wa-btn:hover .l1 {
  width: 0;
}
.wa-btn:hover .l2 {
  width: auto;
}
@media screen and (max-width: 768px) {
  .wa-btn {
    right: 50%;
    -webkit-transform: translateX(50%);
        -ms-transform: translateX(50%);
            transform: translateX(50%);
  }
}
header {
  background: white;
  -webkit-box-shadow: 0px 1px 10px 1px rgba(0, 0, 0, 0.35);
  box-shadow: 0px 1px 10px 1px rgba(0, 0, 0, 0.35);
  left: 0;
  top: 0;
  position: fixed;
  z-index: 5;
  width: 100%;
  height: 80px;
}
header .container {
  height: 100%;
}
header .logo {
  height: 40px;
  float: left;
  margin: 20px 64px 0 0;
}
header .logo img {
  height: 100%;
}
header #toggle {
  display: none;
  float: left;
  width: 24px;
  height: 20px;
  border: none;
  background: none;
  position: relative;
  margin-top: 30px;
}
header #toggle span {
  display: block;
  height: 4px;
  position: absolute;
  width: 100%;
  left: 0;
  top: 50%;
  margin-top: -2px;
  background: black;
}
header #toggle span:after,
header #toggle span:before {
  display: block;
  content: '';
  height: 4px;
  position: absolute;
  left: 0;
  width: 100%;
  background: black;
}
header #toggle span:after {
  top: -8px;
}
header #toggle span:before {
  bottom: -8px;
}
header nav {
  float: left;
  margin-top: 28px;
}
header nav ul {
  margin-bottom: 0;
}
header nav li {
  display: inline !lteIE7;
  display: inline-block;
  margin: 0 32px 0 0 ;
}
header nav a {
  font-weight: 700;
  text-transform: uppercase;
  -webkit-transition: all 200ms;
  transition: all 200ms;
  -webkit-transition-timing-function: ease-out;
  transition-timing-function: ease-out;
}
header nav a:hover {
  color: #FF3E9E;
}
header a.promo {
  float: right;
  font-size: 16px;
  font-weight: 700;
  text-transform: uppercase;
  position: relative;
  margin-top: 33px;
}
header a.promo img {
  position: absolute;
  right: -8px;
  top: -8px;
}
@media screen and (max-width: 1024px) {
  header #toggle {
    display: block;
  }
  header .logo {
    position: absolute;
    left: 50%;
    top: 50%;
    margin: -20px 0 0 -50px;
  }
  header nav {
    position: absolute;
    left: 0;
    width: 100%;
    top: 80px;
    background: #fafafa;
    padding: 16px;
    margin-top: 0;
    z-index: -1;
    display: none;
  }
  header nav.active {
    display: block;
  }
  header nav li {
    display: block;
    margin-right: 0;
  }
  header nav li a {
    line-height: 64px;
    display: block;
  }
}
@media screen and (max-width: 480px) {
  header {
    height: 56px;
  }
  header #toggle {
    margin-top: 18px;
  }
  header a.promo {
    margin-top: 22px;
  }
  header .logo {
    margin: -13px 0 0 -40px;
    height: 22px;
  }
  header .logo img {
    width: 80px;
    height: auto;
  }
  header nav {
    top: 56px;
  }
}
#top-wrapper {
  margin-bottom: 0px;
  overflow: hidden;
  position: relative;
  min-height: 100%;
}
.dataTables_scrollHeadInner,
.dataTables_scrollHeadInner table,
.dataTables_scrollBody table {
  width: 100% !important;
}
.push {
  height: 0px;
}
.banner {
  padding: 0 0 32px;
  overflow: hidden;
  background: url(../img/bg-top.png) left top no-repeat;
  background-size: 100% auto;
  margin-bottom: 160px;
}
.banner .top {
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  -ms-flex-align: center;
  -webkit-box-align: center;
  align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  margin-bottom: 32px;
}
.banner .top h5 {
  margin-bottom: 0;
}
.banner .top-text {
  padding-left: 32px;
}
.banner .swiper-container {
  height: 360px;
  width: 2598px;
  margin-left: -874px;
  border-radius: 16px;
}
.banner .swiper-container .swiper-slide {
  overflow: hidden;
  border-radius: 16px;
  -webkit-transform: rotate(0) scale(0.95, 0.95) translate(0, 0);
  -ms-transform: rotate(0) scale(0.95, 0.95) translate(0, 0);
  transform: rotate(0) scale(0.95, 0.95) translate(0, 0);
  -webkit-transition: all 200ms;
  transition: all 200ms;
  -webkit-transition-timing-function: ease-out;
  transition-timing-function: ease-out;
  background: white;
}
.banner .swiper-container .swiper-slide.swiper-slide-active {
  -webkit-transform: rotate(0) scale(1, 1) translate(0, 0);
  -ms-transform: rotate(0) scale(1, 1) translate(0, 0);
  transform: rotate(0) scale(1, 1) translate(0, 0);
}
.banner .swiper-container .bg {
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: rotate(0) scale(1, 1) translate(-50%, -50%);
  -ms-transform: rotate(0) scale(1, 1) translate(-50%, -50%);
  transform: rotate(0) scale(1, 1) translate(-50%, -50%);
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  overflow: hidden;
}
.banner .swiper-container .text {
  position: relative;
  z-index: 1;
  background: url(../img/bg-text.png) left top repeat-y;
  background-size: 70% auto;
  height: 100%;
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  -ms-flex-align: center;
  -webkit-box-align: center;
  align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding-left: 32px;
}
.banner .swiper-container .text .inner {
  width: 75%;
}
.banner .swiper-container .text h1 {
  margin-bottom: 0;
  line-height: 1;
}
.banner .swiper-container .text h1.title {
  color: #FF3E9E;
}
.banner .swiper-container .text p {
  width: 70%;
  margin-bottom: 32px;
}
.banner .swiper-container .text .btn {
  margin-right: 16px;
}
.banner .swiper-container .promo-btn {
  position: absolute;
  left: 50%;
  margin-left: -80px;
  bottom: 32px;
}
@media screen and (max-width: 1024px) {
  .banner {
    background-size: auto 100%;
    background-position: left bottom;
  }
  .banner .swiper-container {
    width: 240%;
    height: 240px;
    height: 40vw;
    margin-left: -70%;
  }
  .banner .swiper-container .swiper-slide {
    -webkit-transform: scale(0.9, 0.9);
        -ms-transform: scale(0.9, 0.9);
            transform: scale(0.9, 0.9);
  }
  .banner .swiper-container .text {
    padding: 0 0 16px 16px;
  }
  .banner .swiper-container .text .inner {
    width: 100%;
  }
  .banner .swiper-container .text p {
    margin-bottom: 0;
    width: 100%;
  }
  .banner .swiper-container .promo-btn {
    bottom: 4px;
    height: 32px;
    line-height: 30px;
  }
  .banner .swiper-container h2 {
    color: #FF3E9E;
  }
  .banner .swiper-container .btn-wrapper {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    padding: 0 8px 16px;
  }
  .banner .swiper-container .btn-wrapper .btn {
    width: 44%;
    margin: 0 8px;
    float: left;
    font-size: 10px;
    height: 32px;
    line-height: 30px;
  }
}
@media screen and (max-width: 768px) {
  .banner {
    background-position: 50% bottom;
    background-size: auto 80%;
  }
  .banner .top {
    display: block;
    text-align: center;
  }
  .banner .top img {
    display: block;
    width: 61%;
    margin: 0 auto 16px auto;
  }
  .banner .top .logo {
    margin-bottom: 16px;
  }
  .banner .top .top-text {
    padding-left: 0;
  }
  .banner .swiper-container {
    width: 180%;
    margin-left: -40%;
  }
}
@media screen and (max-width: 480px) {
  .banner {
    margin-bottom: 80px;
  }
}
@media screen and (max-width: 320px) {
  .banner .swiper-container h2 {
    line-height: 1;
  }
  .banner .swiper-container .text {
    padding-bottom: 24px;
  }
  .banner .swiper-container .btn-wrapper {
    padding-bottom: 8px;
  }
  .banner .swiper-container .btn-wrapper .btn {
    width: 46%;
    margin: 0 4px;
  }
}
.btn {
  display: inline !lteIE7;
  display: inline-block;
  width: 160px;
  line-height: 38px;
  background: white;
  background: url(../img/btn.png);
  background-size: cover;
  color: rgba(255, 62, 158, 0.8);
  border: solid 2px white;
  -webkit-transition: all 200ms;
  transition: all 200ms;
  -webkit-transition-timing-function: ease-out;
  transition-timing-function: ease-out;
  line-height: 40px;
  border-radius: 8px;
  font-size: 12px;
  font-weight: 700;
  text-align: center;
  text-transform: uppercase;
  -webkit-box-shadow: 3px 3px 3px rgba(0, 0, 0, 0.1), -3px -3px 3px rgba(255, 255, 255, 0.4);
          box-shadow: 3px 3px 3px rgba(0, 0, 0, 0.1), -3px -3px 3px rgba(255, 255, 255, 0.4);
  position: relative;
  overflow: hidden;
}
.btn img {
  position: absolute;
  left: 0px;
  top: 0px;
}
.btn:hover {
  -webkit-box-shadow: 3px 3px 7px rgba(0, 0, 0, 0.1), -3px -3px 3px rgba(255, 255, 255, 0.1);
          box-shadow: 3px 3px 7px rgba(0, 0, 0, 0.1), -3px -3px 3px rgba(255, 255, 255, 0.1);
}
.btn:active,
.btn:focus {
  -webkit-box-shadow: 3px 3px 7px rgba(190, 190, 190, 0), -3px -3px 3px rgba(255, 255, 255, 0.4);
          box-shadow: 3px 3px 7px rgba(190, 190, 190, 0), -3px -3px 3px rgba(255, 255, 255, 0.4);
}
.btn--secondary {
  background: url(../img/btn-2.png);
  background-size: cover;
  color: rgba(66, 125, 227, 0.8);
}
.ftr {
  position: relative;
  margin-bottom: 160px;
}
.ftr:before {
  background: url(../img/ftr.png) no-repeat;
  background-size: 100% auto;
  content: '';
  width: 100%;
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  height: 100vw;
}
.ftr .row {
  text-align: center;
}
.ftr--single {
  margin-bottom: 32px;
}
.ftr--single h5 {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  max-height: 42px;
  line-height: 21px;
}
@media screen and (max-width: 768px) {
  .ftr:before {
    height: 100%;
    background-position: 30% top;
    background-size: auto 100%;
  }
}
.bg-bottom {
  position: absolute;
  z-index: -1;
  left: 0;
  bottom: 0;
  width: 100%;
}
.tmp {
  margin-bottom: 160px;
}
.tmp--list {
  margin: 32px 0;
}
.tmp--single {
  position: relative;
  padding-top: 177%;
  text-align: center;
  border-radius: 16px;
  border: solid 1px #eee;
  margin-bottom: 32px;
  -webkit-transition: all 200ms;
  transition: all 200ms;
  -webkit-transition-timing-function: ease-out;
  transition-timing-function: ease-out;
  top: 0;
}
.tmp--single:before {
  position: absolute;
  left: 15%;
  bottom: 0;
  width: 70%;
  height: 40px;
  background: black;
  opacity: 0;
  filter: blur(48px);
  -webkit-filter: blur(26px);
  display: block;
  -webkit-box-shadow: 0px 1px 10px 1px rgba(0, 0, 0, 0.35);
  box-shadow: 0px 1px 10px 1px rgba(0, 0, 0, 0.35);
  content: '';
  border-radius: 50%;
  -webkit-transition: all 200ms;
  transition: all 200ms;
  -webkit-transition-timing-function: ease-out;
  transition-timing-function: ease-out;
}
.tmp--single:hover {
  top: -3px;
}
.tmp--single:hover:before {
  opacity: 0.2;
}
.tmp--single img {
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center top;
     object-position: center top;
  width: 100%;
  -webkit-transition: all 200ms;
  transition: all 200ms;
  -webkit-transition-timing-function: ease-out;
  transition-timing-function: ease-out;
  border-radius: 16px;
}
.tmp--single .text {
  position: absolute;
  left: 0;
  bottom: 0;
  height: 210px;
  width: 100%;
  padding: 0 16px;
  background: url(../img/bg-tmp.png) left bottom repeat-x;
  border-radius: 0 0 16px 16px;
}
.tmp--single .text .inner {
  position: absolute;
  left: 0;
  bottom: 32px;
  width: 100%;
}
.tmp--single .text a {
  color: #FF3E9E;
  border-bottom: dotted 1px #FF3E9E;
  font-weight: 700;
  font-size: 12px;
}
.tmp--single .text a:hover {
  color: #ff0b84;
}
.tmp__category {
  position: absolute;
  right: -4px;
  top: 16px;
  padding: 8px 16px;
  z-index: 1;
  background: url(../img/btn.png);
  background-size: cover;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  border-radius: 8px 0 0 8px;
  -webkit-box-shadow: -4px 4px 2px 0 rgba(0, 0, 0, 0.05);
          box-shadow: -4px 4px 2px 0 rgba(0, 0, 0, 0.05);
}
.tmp__category.c2 {
  background: url(../img/btn-2.png);
  background-size: cover;
}
@media screen and (max-width: 480px) {
  .tmp--list {
    margin: 32px -16px;
  }
  .tmp--single {
    border-radius: 8px;
  }
  .tmp--single .text {
    background-size: auto 80%;
    border-radius: 0 0 8px 8px;
  }
  .tmp--single img {
    border-radius: 8px;
  }
  .tmp__category {
    padding: 4px 8px;
    font-size: 10px;
  }
}
.templates .tmp {
  margin-bottom: 0;
}
@media screen and (max-width: 480px) {
  .templates .tmp--list {
    margin: 32px 0;
  }
}
.exclusive {
  padding-bottom: 64px;
}
.exclusive .container {
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  -ms-flex-align: center;
  -webkit-box-align: center;
  align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.exclusive .left-side {
  width: 39%;
}
.exclusive .right-side {
  width: 61%;
  padding-left: 32px;
}
.exclusive .right-side img {
  max-width: 100%;
}
@media screen and (max-width: 768px) {
  .exclusive .container {
    display: block;
    text-align: center;
  }
  .exclusive .left-side,
  .exclusive .right-side {
    width: 100%;
    padding: 0;
  }
}
main {
  padding-top: 144px;
}
@media screen and (max-width: 768px) {
  main {
    padding-top: 96px;
  }
}
/*MIDDLE*/
.cnfm {
  padding-top: 0;
}
.cnfm .orange {
  color: orange;
}
.cnfm .red {
  color: red;
}
.cnfm .green {
  color: green;
}
.cnfm__list .dataTables_filter {
  margin-bottom: 24px;
}
.cnfm__list .dataTables_wrapper {
  text-align: center;
  padding: 40px;
  background: white;
  margin-bottom: 40px;
}
.cnfm__list .dataTables_wrapper table {
  margin: 24px 0;
  border-top: solid 1px #FF3E9E;
  border-bottom: solid 1px #FF3E9E;
}
.cnfm__list .dataTables_wrapper td,
.cnfm__list .dataTables_wrapper th {
  padding: 16px;
  font-size: 1rem;
  line-height: 1.4;
  vertical-align: middle;
}
.cnfm__list .dataTables_wrapper td span,
.cnfm__list .dataTables_wrapper th span {
  display: none;
  opacity: 0.5;
  color: black;
}
.cnfm__list .dataTables_wrapper th {
  border-color: #FF3E9E;
}
.cnfm__list .dataTables_wrapper td {
  border-bottom: solid 1px #f0f0f0;
}
.cnfm__list .dataTables_wrapper td:last-child {
  margin-bottom: 0;
}
.cnfm__list .dataTables_wrapper .paginate_button {
  height: 32px;
  padding: 0 12px;
  line-height: 32px;
  background: #f0f0f0;
  margin: 0 4px;
}
.cnfm__list .dataTables_wrapper .paginate_button.current {
  background: #FF3E9E;
  color: white !important;
  border: none;
}
@media screen and (max-width: 768px) {
  .cnfm__list .dataTables_wrapper {
    text-align: left;
    padding: 40px 0;
    margin: 40px -16px;
  }
  .cnfm__list .dataTables_wrapper thead {
    display: none;
  }
  .cnfm__list .dataTables_wrapper tr {
    display: block;
    padding: 16px;
    border-bottom: solid 1px #f0f0f0;
    margin: 0 0 32px;
  }
  .cnfm__list .dataTables_wrapper tr:after {
    display: block;
    content: '';
    clear: both;
  }
  .cnfm__list .dataTables_wrapper tr:nth-child(2n+1) {
    background: #f9f9f9;
  }
  .cnfm__list .dataTables_wrapper td {
    display: block;
    padding: 4px 0;
    border: none;
    margin-bottom: 8px;
  }
  .cnfm__list .dataTables_wrapper td span {
    display: block;
    font-size: 0.8em;
  }
  .cnfm__list .dataTables_wrapper td.small {
    text-align: center;
    width: 25%;
    float: left;
    padding-top: 16px;
    border-top: solid 1px #f0f0f0;
  }
  .cnfm__list .dataTables_wrapper td.small span {
    height: 40px;
  }
}
.cnfm .title {
  text-align: center;
  margin: 40px 0;
}
.cnfm .title h1 {
  margin-bottom: 8px;
}
.cnfm .form {
  padding: 32px;
  background: rgba(255, 62, 158, 0.1);
  max-width: 768px;
  margin: 0 auto 32px auto;
  border-radius: 16px;
}
.cnfm .validation {
  text-align: center;
  margin: 40px auto;
  width: 480px;
  padding-bottom: 16px;
  position: relative;
  max-width: 90%;
  background: url(../img/bg-bottom.png) left bottom no-repeat;
  background-size: auto 120%;
  -webkit-box-shadow: 0 10px 20px rgba(0, 0, 0, 0.08);
          box-shadow: 0 10px 20px rgba(0, 0, 0, 0.08);
  border-radius: 16px;
  border: solid 4px white;
}
.cnfm .validation .event-banner img {
  border-radius: 16px 16px 0 0;
}
.cnfm .validation div {
  width: 100%;
}
.cnfm .validation .name {
  margin-bottom: 64px;
}
.cnfm .validation h1 {
  line-height: 1;
}
.cnfm .validation hr {
  margin: 24px 0;
  border: none;
  border-bottom: solid 1px #f0f0f0;
}
.cnfm .validation h6 {
  color: #FF3E9E;
  margin-bottom: 0;
}
.cnfm .validation .form {
  background: none;
  padding: 0 16px;
  margin-top: 24px;
}
.cnfm .validation .form textarea {
  text-align: center;
}
.cnfm .validation .code {
  width: 50%;
  text-align: left;
  float: left;
  padding-left: 16px;
}
.cnfm .validation .quota {
  width: 50%;
  float: right;
  text-align: right;
  padding-right: 16px;
}
.cnfm .validation .seat-number {
  background: url(../img/btn.png);
  background-size: cover;
  border-radius: 16px;
  padding: 16px 0;
  margin: 0 16px;
  width: auto;
}
.cnfm .validation .seat-number h6,
.cnfm .validation .seat-number h2 {
  margin-bottom: 0;
}
@media screen and (max-width: 480px) {
  .cnfm .form {
    padding: 16px;
  }
  .cnfm .validation {
    padding-bottom: 0;
  }
  .cnfm .validation .code,
  .cnfm .validation .quota {
    bottom: 120px;
  }
}
.input {
  margin-bottom: 32px;
}
.input label {
  display: block;
  margin-bottom: 8px;
}
.input .btn {
  width: 100%;
}
.input__text {
  width: 100%;
  height: 46px;
  background: #f9f9f9;
  border: solid 2px white;
  padding: 0 16px;
  font-family: 'Roboto', sans-serif;
  font-size: 1rem;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  border-radius: 8px;
}
.input select {
  height: 46px;
  width: 100%;
  border: solid 2px white;
  background: #f9f9f9;
  border-radius: 8px;
}
.input textarea {
  min-width: 100%;
  max-width: 100%;
  max-height: 200px;
  background: #f9f9f9;
  border: solid 2px white;
  padding: 16px;
  font-family: 'Roboto', sans-serif;
  font-size: 1rem;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  border-radius: 8px;
}
.event-banner {
  margin-bottom: 64px;
}
.event-banner .container {
  height: 100%;
  padding-top: 61%;
}
.event-banner img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  overflow: hidden;
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: rotate(0) scale(1, 1) translate(-50%, -50%);
  -ms-transform: rotate(0) scale(1, 1) translate(-50%, -50%);
  transform: rotate(0) scale(1, 1) translate(-50%, -50%);
}
@media screen and (max-width: 768px) {
  .event-banner {
    margin-bottom: 32px;
  }
}
.mid-logo {
  text-align: center;
  margin: 24px 0;
}
.mid-logo img {
  width: 120px;
}
footer {
  z-index: 1;
  background: white;
  height: 80px;
}
footer .container {
  line-height: 80px;
}
footer span {
  float: left;
  margin-top: 27px;
  margin-right: 16px;
}
footer a {
  margin: 28px 16px 0 0;
  float: left;
}
footer a img {
  float: left;
}
@media screen and (max-width: 768px) {
  footer {
    padding: 32px 0;
    height: auto;
  }
  footer span {
    float: none;
    display: block;
  }
  footer .container {
    line-height: 1;
  }
  footer a {
    display: inline !lteIE7;
    display: inline-block;
    float: none;
    margin-top: 16px;
  }
  footer .left-side,
  footer .right-side {
    float: none;
    text-align: center;
  }
  footer .right-side {
    margin-bottom: 32px;
  }
  footer .left-side {
    font-size: 12px;
  }
}
/*FOOTER*/
.popup {
  width: 100%;
  height: 100%;
  position: fixed;
  left: 0;
  top: 0;
  display: none;
  z-index: 1000;
  background: rgba(0, 0, 0, 0.7);
}
.popup .popup-wrapper {
  position: relative;
  min-height: 100%;
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  -ms-flex-align: center;
  -webkit-box-align: center;
  align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.popup .popup-full {
  height: 100vh;
  width: 100%;
  padding: 40px 0;
  overflow-y: scroll;
}
.popup .inner {
  margin: 0 auto 0 auto;
  position: relative;
  width: 1000px;
  background: white;
  padding: 0 20px;
  max-width: 90%;
}
/*POPUP*/
@-webkit-keyframes c-i1 {
0% {
  -webkit-transform: rotate(0) scale(1, 1) translate(0, 0);
  -ms-transform: rotate(0) scale(1, 1) translate(0, 0);
  transform: rotate(0) scale(1, 1) translate(0, 0);
}
50% {
  -webkit-transform: rotate(0) scale(1, 1) translate(0, -800px);
  -ms-transform: rotate(0) scale(1, 1) translate(0, -800px);
  transform: rotate(0) scale(1, 1) translate(0, -800px);
  opacity: 1;
}
100% {
  -webkit-transform: rotate(0) scale(1, 1) translate(0, -800px);
  -ms-transform: rotate(0) scale(1, 1) translate(0, -800px);
  transform: rotate(0) scale(1, 1) translate(0, -800px);
}
}
@keyframes c-i1 {
0% {
  -webkit-transform: rotate(0) scale(1, 1) translate(0, 0);
  -ms-transform: rotate(0) scale(1, 1) translate(0, 0);
  transform: rotate(0) scale(1, 1) translate(0, 0);
}
50% {
  -webkit-transform: rotate(0) scale(1, 1) translate(0, -800px);
  -ms-transform: rotate(0) scale(1, 1) translate(0, -800px);
  transform: rotate(0) scale(1, 1) translate(0, -800px);
  opacity: 1;
}
100% {
  -webkit-transform: rotate(0) scale(1, 1) translate(0, -800px);
  -ms-transform: rotate(0) scale(1, 1) translate(0, -800px);
  transform: rotate(0) scale(1, 1) translate(0, -800px);
}
}
.images-frame .i1 {
  -webkit-animation: c-i1 60s infinite linear;
  animation: c-i1 60s infinite linear;
}
@-webkit-keyframes c-i2 {
0% {
  -webkit-transform: rotate(0) scale(1, 1) translate(0, 0);
  -ms-transform: rotate(0) scale(1, 1) translate(0, 0);
  transform: rotate(0) scale(1, 1) translate(0, 0);
}
30% {
  -webkit-transform: rotate(0) scale(1, 1) translate(0, 0);
  -ms-transform: rotate(0) scale(1, 1) translate(0, 0);
  transform: rotate(0) scale(1, 1) translate(0, 0);
}
100% {
  -webkit-transform: rotate(0) scale(1, 1) translate(0, -1120px);
  -ms-transform: rotate(0) scale(1, 1) translate(0, -1120px);
  transform: rotate(0) scale(1, 1) translate(0, -1120px);
}
}
@keyframes c-i2 {
0% {
  -webkit-transform: rotate(0) scale(1, 1) translate(0, 0);
  -ms-transform: rotate(0) scale(1, 1) translate(0, 0);
  transform: rotate(0) scale(1, 1) translate(0, 0);
}
30% {
  -webkit-transform: rotate(0) scale(1, 1) translate(0, 0);
  -ms-transform: rotate(0) scale(1, 1) translate(0, 0);
  transform: rotate(0) scale(1, 1) translate(0, 0);
}
100% {
  -webkit-transform: rotate(0) scale(1, 1) translate(0, -1120px);
  -ms-transform: rotate(0) scale(1, 1) translate(0, -1120px);
  transform: rotate(0) scale(1, 1) translate(0, -1120px);
}
}
.images-frame .i2 {
  -webkit-animation: c-i2 60s infinite linear;
  animation: c-i2 60s infinite linear;
}
@-webkit-keyframes trst-1 {
0% {
  -webkit-transform: skew(-0.06turn, 18deg);
          transform: skew(-0.06turn, 18deg);
}
30% {
  -webkit-transform: skew(-0.07turn, 14deg);
          transform: skew(-0.07turn, 14deg);
}
60% {
  -webkit-transform: skew(-0.05turn, 16deg);
          transform: skew(-0.05turn, 16deg);
}
100% {
  -webkit-transform: skew(-0.06turn, 18deg);
          transform: skew(-0.06turn, 18deg);
}
}
@keyframes trst-1 {
0% {
  -webkit-transform: skew(-0.06turn, 18deg);
          transform: skew(-0.06turn, 18deg);
}
30% {
  -webkit-transform: skew(-0.07turn, 14deg);
          transform: skew(-0.07turn, 14deg);
}
60% {
  -webkit-transform: skew(-0.05turn, 16deg);
          transform: skew(-0.05turn, 16deg);
}
100% {
  -webkit-transform: skew(-0.06turn, 18deg);
          transform: skew(-0.06turn, 18deg);
}
}
.rst-top {
  -webkit-animation: trst-1 8s infinite linear;
  animation: trst-1 8s infinite linear;
}
@-webkit-keyframes trst-2 {
0% {
  -webkit-transform: skew(-0.06turn, 18deg);
          transform: skew(-0.06turn, 18deg);
}
30% {
  -webkit-transform: skew(-0.07turn, 14deg);
          transform: skew(-0.07turn, 14deg);
}
60% {
  -webkit-transform: skew(-0.05turn, 18deg);
          transform: skew(-0.05turn, 18deg);
}
100% {
  -webkit-transform: skew(-0.06turn, 18deg);
          transform: skew(-0.06turn, 18deg);
}
}
@keyframes trst-2 {
0% {
  -webkit-transform: skew(-0.06turn, 18deg);
          transform: skew(-0.06turn, 18deg);
}
30% {
  -webkit-transform: skew(-0.07turn, 14deg);
          transform: skew(-0.07turn, 14deg);
}
60% {
  -webkit-transform: skew(-0.05turn, 18deg);
          transform: skew(-0.05turn, 18deg);
}
100% {
  -webkit-transform: skew(-0.06turn, 18deg);
          transform: skew(-0.06turn, 18deg);
}
}
.rst-left-bot {
  -webkit-animation: trst-2 6s infinite linear;
  animation: trst-2 6s infinite linear;
}
@-webkit-keyframes trst-3 {
0% {
  -webkit-transform: skew(-0.06turn, 18deg);
          transform: skew(-0.06turn, 18deg);
}
30% {
  -webkit-transform: skew(-0.07turn, 14deg);
          transform: skew(-0.07turn, 14deg);
}
60% {
  -webkit-transform: skew(-0.05turn, 18deg);
          transform: skew(-0.05turn, 18deg);
}
100% {
  -webkit-transform: skew(-0.06turn, 18deg);
          transform: skew(-0.06turn, 18deg);
}
}
@keyframes trst-3 {
0% {
  -webkit-transform: skew(-0.06turn, 18deg);
          transform: skew(-0.06turn, 18deg);
}
30% {
  -webkit-transform: skew(-0.07turn, 14deg);
          transform: skew(-0.07turn, 14deg);
}
60% {
  -webkit-transform: skew(-0.05turn, 18deg);
          transform: skew(-0.05turn, 18deg);
}
100% {
  -webkit-transform: skew(-0.06turn, 18deg);
          transform: skew(-0.06turn, 18deg);
}
}
.rst-right-bot {
  -webkit-animation: trst-3 6s infinite linear;
  animation: trst-3 6s infinite linear;
}
