﻿
/*
  Table of Contents
==================================================
  1. Normalize
  2. Common
  3. Wrapper
  4. Header
  5. Footer
  6. Animation
  7. Carousel
  8. Brand
  9. Toolbar
  10. Dialog
  11. Artist
  12. Palette
  13. Author
*/

/**
--------------------------------------------------
  Normalize
--------------------------------------------------
**/
html {
  font-family: sans-serif;
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
  text-size-adjust: 100%;
}

body {
  margin: 0;
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
main,
menu,
nav,
section,
summary {
  display: block;
}

a {
  background-color: transparent;
  text-decoration-skip: objects;
}

a:active,
a:hover {
  outline-width: 0;
}

abbr[title] {
  border-bottom: none;
  text-decoration: underline;
  text-decoration: underline dotted;
}

b,
strong {
  font-weight: bolder;
}

mark {
  background-color: #ff0;
  color: #000;
}

small {
  font-size: 80%;
}

sub,
sup {
  position: relative;
  font-size: 75%;
  line-height: 0;
  vertical-align: baseline;
}

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

img {
  border-style: none;
}

button,
input,
textarea
select,
optgroup {
  margin: 0;
  font: inherit;
}

optgroup {
  font-weight: bold;
}

button,
input {
  overflow: visible;
}

button,
select {
  text-transform: none;
}

button,
[type="button"],
[type="reset"],
[type="submit"] {
  -webkit-appearance: button;
  -moz-appearance: button;
  appearance: button;
}

button::-moz-focus-inner,
[type="button"]::-moz-focus-inner,
[type="reset"]::-moz-focus-inner,
[type="submit"]::-moz-focus-inner {
  padding: 0;
  border-style: none;
}

button:-moz-focusring,
[type="button"]:-moz-focusring,
[type="reset"]:-moz-focusring,
[type="submit"]:-moz-focusring {
  outline: 1px dotted ButtonText;
}

textarea {
  overflow: hidden;
}


/**
--------------------------------------------------
  Common
--------------------------------------------------
**/
html {
  font-family: "Raleway", sans-serif;
  font-size: 16px;
  font-weight: 300;
  line-height: 1.5;
  background-color: #fff;
  box-sizing: border-box;
  color: #000;
}

*,
*:after,
*:before {
  box-sizing: inherit;
}

img {
  vertical-align: top;
}

a {
  color: #7680ec;
  text-decoration: none;
}
a:hover {
  color: #3181ee;
}

a,
button {
  transition-property: color, background-color;
  transition-duration: 0.25s;
  transition-timing-function: ease-out;
}


/**
--------------------------------------------------
  Wrapper
--------------------------------------------------
**/
.wrapper {
  max-width: 1600px;
  min-width: 320px;
  margin-right: auto;
  margin-left: auto;
}


/**
--------------------------------------------------
  Header
--------------------------------------------------
**/
.header {
  border-bottom: #e1e1e1 solid 1px;
}
.header__title {
  margin: 0;
  padding: 0;
  font-weight: 100;
  line-height: 1;
}
.header__title a {
  color: #000;
}
.header__title a:hover {
  color: #3181ee;
}
.header__title strong {
  font-weight: 700;
}
.header__info p {
  margin: 0;
  padding: 0;
}
.header__info strong {
  font-weight: 700;
}
.header__button {
  position: absolute;
}
.header__button button {
  display: block;
  overflow: hidden;
  margin: 0;
  padding: 0;
  text-indent: -9999px;
  background-color: #fff;
  background-image: url(../image/bg-sprites.png);
  background-position: center top;
  background-repeat: no-repeat;
  border-color: #000;
  border-style: solid;
  border-radius: 50%;
  outline: none;
  transition-property: background-position, border-color;
}
.header__button button:hover {
  border-color: #3181ee;
}
.header__search {
  overflow: hidden;
}
.header__search ul,
.header__search li {
  margin: 0;
  padding: 0;
}
.header__search ul {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  list-style: none;
}
.header__search a {
  display: block;
  font-weight: 700;
  line-height: 1;
  color: #d4d4d4;
}
.header__search a:hover {
  color: #000;
}


/* xs */
@media (max-width: 767px) {
  .header {
    padding: 15px;
  }
  .header__holder {
    display: none;
  }
  .header__title {
    font-size: 1.875rem;
  }
  .header__info {
    margin-top: 5px;
    font-size: 0.875rem;
    line-height: 1.25;
  }
  .header__button {
    top: 18px;
    right: 15px;
  }
  .header__button button {
    width: 24px;
    height: 24px;
    background-size: 20px auto;
    border-width: 2px;
  }
  .header__button button:hover {
    background-position: center -20px;
  }
  .header__search {
    margin-top: 10px;
    font-size: 1.25rem;
  }
}

/* xs - sm - md */
@media (max-width: 1279px) {
  .header {
    position: relative;
  }
  .header__search ul {
    margin-left: -5px;
  }
  .header__search a {
    padding: 5px;
  }
}

/* sm - md - lg */
@media (min-width: 768px) {
  .header {
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    z-index: 15;
    background-color: #fff;
    transition-property: padding;
    transition-duration: 0.25s;
    transition-timing-function: ease-out;
  }
  .header__title, .header__button, .header__search {
    transition-duration: 0.25s;
    transition-timing-function: ease-out;
  }
  .header__holder {
    overflow: hidden;
  }
  .header__title {
    transition-property: font-size;
  }
  .header__info {
    line-height: 1;
  }
  .header__button {
    transition-property: top;
  }
  .header__button button {
    width: 36px;
    height: 36px;
    background-size: 30px auto;
    border-width: 3px;
  }
  .header__button button:hover {
    background-position: center -30px;
  }
  .header__search {
    transition-property: top, right, margin-top;
  }
  .header--minimal {
    position: fixed;
    border-bottom: #b6b6b6 solid 1px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.25);
  }
  .header--minimal .header__info {
    display: none;
  }
}

/* sm - md */
@media (min-width: 768px) and (max-width: 1279px) {
  .header {
    padding: 30px;
  }
  .header__holder {
    height: 185px;
  }
  .header__title {
    font-size: 2.5rem;
  }
  .header__info {
    margin-top: 10px;
    font-size: 1.125rem;
  }
  .header__button {
    top: 32px;
    right: 30px;
  }
  .header__search {
    margin-top: 20px;
    font-size: 1.5625rem;
  }
  .header--minimal {
    padding: 25px 30px;
  }
  .header--minimal .header__title {
    font-size: 1.875rem;
  }
  .header--minimal .header__button {
    top: 22px;
  }
  .header--minimal .header__search {
    margin-top: 10px;
  }
}

/* lg */
@media (min-width: 1280px) {
  .header {
    padding: 75px 100px;
  }
  .header__holder {
    height: 280px;
  }
  .header__title {
    font-size: 3.125rem;
  }
  .header__info {
    position: absolute;
    top: 90px;
    right: 166px;
    font-size: 1.25rem;
  }
  .header__button {
    top: 82px;
    right: 100px;
  }
  .header__search {
    margin-top: 30px;
    font-size: 1.875rem;
  }
  .header__search ul {
    margin-left: -10px;
  }
  .header__search a {
    padding: 10px;
  }
  .header--minimal {
    padding: 40px 100px;
  }
  .header--minimal .header__title {
    font-size: 2.5rem;
  }
  .header--minimal .header__button {
    top: 42px;
  }
  .header--minimal .header__search {
    position: absolute;
    top: 35px;
    right: 156px;
    margin-top: 0;
  }
}
@media (min-width: 1280px) and (max-width: 1599px) {
  .header--minimal .header__search ul {
    margin-left: -5px;
  }
  .header--minimal .header__search a {
    padding: 10px 5px;
  }
}

/**
--------------------------------------------------
  Footer
--------------------------------------------------
**/
.footer {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  font-weight: 700;
  letter-spacing: 0.15em;
  line-height: 1;
  text-transform: uppercase;
  background-color: rgba(225, 225, 225, 0.75);
}
.footer a {
  color: #000;
}
.footer a:hover {
  color: #3181ee;
}
.footer__toolbar ul,
.footer__toolbar li {
  margin: 0;
  padding: 0;
}
.footer__toolbar ul {
  list-style: none;
}


/* xs - sm - md */
@media (max-width: 1279px) {
  .footer {
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    text-align: center;
  }
  .footer__toolbar {
    display: none;
  }
}

/* xs */
@media (max-width: 767px) {
  .footer {
    padding: 25px 15px;
    font-size: 0.75rem;
  }
  .footer__toolbar li {
    margin-top: 10px;
  }
}

/* sm - md */
@media (min-width: 768px) and (max-width: 1279px) {
  .footer {
    padding: 35px 30px;
    font-size: 0.875rem;
  }
  .footer__toolbar li {
    margin-top: 15px;
  }
}

/* lg */
@media (min-width: 1280px) {
  .footer {
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    margin: 50px;
    padding: 40px;
    font-size: 0.875rem;
  }
  .footer__info {
    margin-right: auto;
  }
  .footer__toolbar ul {
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
  }
  .footer__toolbar li {
    margin-left: 40px;
  }
}

/**
--------------------------------------------------
  Animation
--------------------------------------------------
**/
/*@-webkit-keyframes shake {
  from, to {
    -webkit-transform: translate3d(0, 0, 0) translateY(-50%) rotate(45deg);
    transform: translate3d(0, 0, 0) translateY(-50%) rotate(45deg);
  }
  10%, 30%, 50%, 70%, 90% {
    -webkit-transform: translate3d(-10px, 0, 0) translateY(-50%) rotate(45deg);
    transform: translate3d(-10px, 0, 0) translateY(-50%) rotate(45deg);
  }
  20%, 40%, 60%, 80% {
    -webkit-transform: translate3d(0, 0, 0) translateY(-50%) rotate(45deg);
    transform: translate3d(0, 0, 0) translateY(-50%) rotate(45deg);
  }
}
@keyframes shake {
  from, to {
    -webkit-transform: translate3d(0, 0, 0) translateY(-50%) rotate(45deg);
    transform: translate3d(0, 0, 0) translateY(-50%) rotate(45deg);
  }
  10%, 30%, 50%, 70%, 90% {
    -webkit-transform: translate3d(-10px, 0, 0) translateY(-50%) rotate(45deg);
    transform: translate3d(-10px, 0, 0) translateY(-50%) rotate(45deg);
  }
  20%, 40%, 60%, 80% {
    -webkit-transform: translate3d(0, 0, 0) translateY(-50%) rotate(45deg);
    transform: translate3d(0, 0, 0) translateY(-50%) rotate(45deg);
  }
}
@-webkit-keyframes dialog-open {
  0% {
    opacity: 0;
    -webkit-transform: matrix3d(0.7, 0, 0, 0, 0, 0.7, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
    transform: matrix3d(0.7, 0, 0, 0, 0, 0.7, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
  }
  2.083333% {
    -webkit-transform: matrix3d(0.75266, 0, 0, 0, 0, 0.76342, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
    transform: matrix3d(0.75266, 0, 0, 0, 0, 0.76342, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
  }
  4.166667% {
    -webkit-transform: matrix3d(0.81071, 0, 0, 0, 0, 0.84545, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
    transform: matrix3d(0.81071, 0, 0, 0, 0, 0.84545, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
  }
  6.25% {
    -webkit-transform: matrix3d(0.86808, 0, 0, 0, 0, 0.9286, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
    transform: matrix3d(0.86808, 0, 0, 0, 0, 0.9286, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
  }
  8.333333% {
    -webkit-transform: matrix3d(0.92038, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
    transform: matrix3d(0.92038, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
  }
  10.416667% {
    -webkit-transform: matrix3d(0.96482, 0, 0, 0, 0, 1.05202, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
    transform: matrix3d(0.96482, 0, 0, 0, 0, 1.05202, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
  }
  12.5% {
    -webkit-transform: matrix3d(1, 0, 0, 0, 0, 1.08204, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
    transform: matrix3d(1, 0, 0, 0, 0, 1.08204, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
  }
  14.583333% {
    -webkit-transform: matrix3d(1.02563, 0, 0, 0, 0, 1.09149, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
    transform: matrix3d(1.02563, 0, 0, 0, 0, 1.09149, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
  }
  16.666667% {
    -webkit-transform: matrix3d(1.04227, 0, 0, 0, 0, 1.08453, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
    transform: matrix3d(1.04227, 0, 0, 0, 0, 1.08453, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
  }
  18.75% {
    -webkit-transform: matrix3d(1.05102, 0, 0, 0, 0, 1.06666, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
    transform: matrix3d(1.05102, 0, 0, 0, 0, 1.06666, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
  }
  20.833333% {
    -webkit-transform: matrix3d(1.05334, 0, 0, 0, 0, 1.04355, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
    transform: matrix3d(1.05334, 0, 0, 0, 0, 1.04355, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
  }
  22.916667% {
    -webkit-transform: matrix3d(1.05078, 0, 0, 0, 0, 1.02012, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
    transform: matrix3d(1.05078, 0, 0, 0, 0, 1.02012, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
  }
  25% {
    -webkit-transform: matrix3d(1.04487, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
    transform: matrix3d(1.04487, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
  }
  27.083333% {
    -webkit-transform: matrix3d(1.03699, 0, 0, 0, 0, 0.98534, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
    transform: matrix3d(1.03699, 0, 0, 0, 0, 0.98534, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
  }
  29.166667% {
    -webkit-transform: matrix3d(1.02831, 0, 0, 0, 0, 0.97688, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
    transform: matrix3d(1.02831, 0, 0, 0, 0, 0.97688, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
  }
  31.25% {
    -webkit-transform: matrix3d(1.01973, 0, 0, 0, 0, 0.97422, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
    transform: matrix3d(1.01973, 0, 0, 0, 0, 0.97422, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
  }
  33.333333% {
    -webkit-transform: matrix3d(1.01191, 0, 0, 0, 0, 0.97618, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
    transform: matrix3d(1.01191, 0, 0, 0, 0, 0.97618, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
  }
  35.416667% {
    -webkit-transform: matrix3d(1.00526, 0, 0, 0, 0, 0.98122, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
    transform: matrix3d(1.00526, 0, 0, 0, 0, 0.98122, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
  }
  37.5% {
    -webkit-transform: matrix3d(1, 0, 0, 0, 0, 0.98773, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
    transform: matrix3d(1, 0, 0, 0, 0, 0.98773, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
  }
  39.583333% {
    -webkit-transform: matrix3d(0.99617, 0, 0, 0, 0, 0.99433, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
    transform: matrix3d(0.99617, 0, 0, 0, 0, 0.99433, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
  }
  41.666667% {
    -webkit-transform: matrix3d(0.99368, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
    transform: matrix3d(0.99368, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
  }
  43.75% {
    -webkit-transform: matrix3d(0.99237, 0, 0, 0, 0, 1.00413, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
    transform: matrix3d(0.99237, 0, 0, 0, 0, 1.00413, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
  }
  45.833333% {
    -webkit-transform: matrix3d(0.99202, 0, 0, 0, 0, 1.00651, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
    transform: matrix3d(0.99202, 0, 0, 0, 0, 1.00651, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
  }
  47.916667% {
    -webkit-transform: matrix3d(0.99241, 0, 0, 0, 0, 1.00726, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
    transform: matrix3d(0.99241, 0, 0, 0, 0, 1.00726, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
  }
  50% {
    opacity: 1;
    -webkit-transform: matrix3d(0.99329, 0, 0, 0, 0, 1.00671, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
    transform: matrix3d(0.99329, 0, 0, 0, 0, 1.00671, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
  }
  52.083333% {
    -webkit-transform: matrix3d(0.99447, 0, 0, 0, 0, 1.00529, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
    transform: matrix3d(0.99447, 0, 0, 0, 0, 1.00529, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
  }
  54.166667% {
    -webkit-transform: matrix3d(0.99577, 0, 0, 0, 0, 1.00346, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
    transform: matrix3d(0.99577, 0, 0, 0, 0, 1.00346, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
  }
  56.25% {
    -webkit-transform: matrix3d(0.99705, 0, 0, 0, 0, 1.0016, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
    transform: matrix3d(0.99705, 0, 0, 0, 0, 1.0016, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
  }
  58.333333% {
    -webkit-transform: matrix3d(0.99822, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
    transform: matrix3d(0.99822, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
  }
  60.416667% {
    -webkit-transform: matrix3d(0.99921, 0, 0, 0, 0, 0.99884, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
    transform: matrix3d(0.99921, 0, 0, 0, 0, 0.99884, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
  }
  62.5% {
    -webkit-transform: matrix3d(1, 0, 0, 0, 0, 0.99816, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
    transform: matrix3d(1, 0, 0, 0, 0, 0.99816, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
  }
  64.583333% {
    -webkit-transform: matrix3d(1.00057, 0, 0, 0, 0, 0.99795, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
    transform: matrix3d(1.00057, 0, 0, 0, 0, 0.99795, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
  }
  66.666667% {
    -webkit-transform: matrix3d(1.00095, 0, 0, 0, 0, 0.99811, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
    transform: matrix3d(1.00095, 0, 0, 0, 0, 0.99811, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
  }
  68.75% {
    -webkit-transform: matrix3d(1.00114, 0, 0, 0, 0, 0.99851, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
    transform: matrix3d(1.00114, 0, 0, 0, 0, 0.99851, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
  }
  70.833333% {
    -webkit-transform: matrix3d(1.00119, 0, 0, 0, 0, 0.99903, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
    transform: matrix3d(1.00119, 0, 0, 0, 0, 0.99903, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
  }
  72.916667% {
    -webkit-transform: matrix3d(1.00114, 0, 0, 0, 0, 0.99955, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
    transform: matrix3d(1.00114, 0, 0, 0, 0, 0.99955, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
  }
  75% {
    -webkit-transform: matrix3d(1.001, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
    transform: matrix3d(1.001, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
  }
  77.083333% {
    -webkit-transform: matrix3d(1.00083, 0, 0, 0, 0, 1.00033, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
    transform: matrix3d(1.00083, 0, 0, 0, 0, 1.00033, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
  }
  79.166667% {
    -webkit-transform: matrix3d(1.00063, 0, 0, 0, 0, 1.00052, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
    transform: matrix3d(1.00063, 0, 0, 0, 0, 1.00052, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
  }
  81.25% {
    -webkit-transform: matrix3d(1.00044, 0, 0, 0, 0, 1.00058, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
    transform: matrix3d(1.00044, 0, 0, 0, 0, 1.00058, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
  }
  83.333333% {
    -webkit-transform: matrix3d(1.00027, 0, 0, 0, 0, 1.00053, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
    transform: matrix3d(1.00027, 0, 0, 0, 0, 1.00053, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
  }
  85.416667% {
    -webkit-transform: matrix3d(1.00012, 0, 0, 0, 0, 1.00042, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
    transform: matrix3d(1.00012, 0, 0, 0, 0, 1.00042, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
  }
  87.5% {
    -webkit-transform: matrix3d(1, 0, 0, 0, 0, 1.00027, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
    transform: matrix3d(1, 0, 0, 0, 0, 1.00027, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
  }
  89.583333% {
    -webkit-transform: matrix3d(0.99991, 0, 0, 0, 0, 1.00013, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
    transform: matrix3d(0.99991, 0, 0, 0, 0, 1.00013, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
  }
  91.666667% {
    -webkit-transform: matrix3d(0.99986, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
    transform: matrix3d(0.99986, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
  }
  93.75% {
    -webkit-transform: matrix3d(0.99983, 0, 0, 0, 0, 0.99991, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
    transform: matrix3d(0.99983, 0, 0, 0, 0, 0.99991, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
  }
  95.833333% {
    -webkit-transform: matrix3d(0.99982, 0, 0, 0, 0, 0.99985, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
    transform: matrix3d(0.99982, 0, 0, 0, 0, 0.99985, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
  }
  97.916667% {
    -webkit-transform: matrix3d(0.99983, 0, 0, 0, 0, 0.99984, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
    transform: matrix3d(0.99983, 0, 0, 0, 0, 0.99984, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
  }
  100% {
    opacity: 1;
    -webkit-transform: matrix3d(1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
    transform: matrix3d(1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
  }
}*/
@keyframes dialog-open {
  0% {
    opacity: 0;
    -webkit-transform: matrix3d(0.7, 0, 0, 0, 0, 0.7, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
    transform: matrix3d(0.7, 0, 0, 0, 0, 0.7, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
  }
  2.083333% {
    -webkit-transform: matrix3d(0.75266, 0, 0, 0, 0, 0.76342, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
    transform: matrix3d(0.75266, 0, 0, 0, 0, 0.76342, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
  }
  4.166667% {
    -webkit-transform: matrix3d(0.81071, 0, 0, 0, 0, 0.84545, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
    transform: matrix3d(0.81071, 0, 0, 0, 0, 0.84545, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
  }
  6.25% {
    -webkit-transform: matrix3d(0.86808, 0, 0, 0, 0, 0.9286, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
    transform: matrix3d(0.86808, 0, 0, 0, 0, 0.9286, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
  }
  8.333333% {
    -webkit-transform: matrix3d(0.92038, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
    transform: matrix3d(0.92038, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
  }
  10.416667% {
    -webkit-transform: matrix3d(0.96482, 0, 0, 0, 0, 1.05202, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
    transform: matrix3d(0.96482, 0, 0, 0, 0, 1.05202, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
  }
  12.5% {
    -webkit-transform: matrix3d(1, 0, 0, 0, 0, 1.08204, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
    transform: matrix3d(1, 0, 0, 0, 0, 1.08204, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
  }
  14.583333% {
    -webkit-transform: matrix3d(1.02563, 0, 0, 0, 0, 1.09149, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
    transform: matrix3d(1.02563, 0, 0, 0, 0, 1.09149, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
  }
  16.666667% {
    -webkit-transform: matrix3d(1.04227, 0, 0, 0, 0, 1.08453, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
    transform: matrix3d(1.04227, 0, 0, 0, 0, 1.08453, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
  }
  18.75% {
    -webkit-transform: matrix3d(1.05102, 0, 0, 0, 0, 1.06666, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
    transform: matrix3d(1.05102, 0, 0, 0, 0, 1.06666, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
  }
  20.833333% {
    -webkit-transform: matrix3d(1.05334, 0, 0, 0, 0, 1.04355, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
    transform: matrix3d(1.05334, 0, 0, 0, 0, 1.04355, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
  }
  22.916667% {
    -webkit-transform: matrix3d(1.05078, 0, 0, 0, 0, 1.02012, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
    transform: matrix3d(1.05078, 0, 0, 0, 0, 1.02012, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
  }
  25% {
    -webkit-transform: matrix3d(1.04487, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
    transform: matrix3d(1.04487, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
  }
  27.083333% {
    -webkit-transform: matrix3d(1.03699, 0, 0, 0, 0, 0.98534, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
    transform: matrix3d(1.03699, 0, 0, 0, 0, 0.98534, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
  }
  29.166667% {
    -webkit-transform: matrix3d(1.02831, 0, 0, 0, 0, 0.97688, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
    transform: matrix3d(1.02831, 0, 0, 0, 0, 0.97688, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
  }
  31.25% {
    -webkit-transform: matrix3d(1.01973, 0, 0, 0, 0, 0.97422, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
    transform: matrix3d(1.01973, 0, 0, 0, 0, 0.97422, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
  }
  33.333333% {
    -webkit-transform: matrix3d(1.01191, 0, 0, 0, 0, 0.97618, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
    transform: matrix3d(1.01191, 0, 0, 0, 0, 0.97618, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
  }
  35.416667% {
    -webkit-transform: matrix3d(1.00526, 0, 0, 0, 0, 0.98122, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
    transform: matrix3d(1.00526, 0, 0, 0, 0, 0.98122, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
  }
  37.5% {
    -webkit-transform: matrix3d(1, 0, 0, 0, 0, 0.98773, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
    transform: matrix3d(1, 0, 0, 0, 0, 0.98773, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
  }
  39.583333% {
    -webkit-transform: matrix3d(0.99617, 0, 0, 0, 0, 0.99433, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
    transform: matrix3d(0.99617, 0, 0, 0, 0, 0.99433, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
  }
  41.666667% {
    -webkit-transform: matrix3d(0.99368, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
    transform: matrix3d(0.99368, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
  }
  43.75% {
    -webkit-transform: matrix3d(0.99237, 0, 0, 0, 0, 1.00413, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
    transform: matrix3d(0.99237, 0, 0, 0, 0, 1.00413, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
  }
  45.833333% {
    -webkit-transform: matrix3d(0.99202, 0, 0, 0, 0, 1.00651, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
    transform: matrix3d(0.99202, 0, 0, 0, 0, 1.00651, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
  }
  47.916667% {
    -webkit-transform: matrix3d(0.99241, 0, 0, 0, 0, 1.00726, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
    transform: matrix3d(0.99241, 0, 0, 0, 0, 1.00726, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
  }
  50% {
    opacity: 1;
    -webkit-transform: matrix3d(0.99329, 0, 0, 0, 0, 1.00671, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
    transform: matrix3d(0.99329, 0, 0, 0, 0, 1.00671, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
  }
  52.083333% {
    -webkit-transform: matrix3d(0.99447, 0, 0, 0, 0, 1.00529, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
    transform: matrix3d(0.99447, 0, 0, 0, 0, 1.00529, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
  }
  54.166667% {
    -webkit-transform: matrix3d(0.99577, 0, 0, 0, 0, 1.00346, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
    transform: matrix3d(0.99577, 0, 0, 0, 0, 1.00346, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
  }
  56.25% {
    -webkit-transform: matrix3d(0.99705, 0, 0, 0, 0, 1.0016, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
    transform: matrix3d(0.99705, 0, 0, 0, 0, 1.0016, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
  }
  58.333333% {
    -webkit-transform: matrix3d(0.99822, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
    transform: matrix3d(0.99822, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
  }
  60.416667% {
    -webkit-transform: matrix3d(0.99921, 0, 0, 0, 0, 0.99884, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
    transform: matrix3d(0.99921, 0, 0, 0, 0, 0.99884, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
  }
  62.5% {
    -webkit-transform: matrix3d(1, 0, 0, 0, 0, 0.99816, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
    transform: matrix3d(1, 0, 0, 0, 0, 0.99816, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
  }
  64.583333% {
    -webkit-transform: matrix3d(1.00057, 0, 0, 0, 0, 0.99795, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
    transform: matrix3d(1.00057, 0, 0, 0, 0, 0.99795, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
  }
  66.666667% {
    -webkit-transform: matrix3d(1.00095, 0, 0, 0, 0, 0.99811, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
    transform: matrix3d(1.00095, 0, 0, 0, 0, 0.99811, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
  }
  68.75% {
    -webkit-transform: matrix3d(1.00114, 0, 0, 0, 0, 0.99851, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
    transform: matrix3d(1.00114, 0, 0, 0, 0, 0.99851, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
  }
  70.833333% {
    -webkit-transform: matrix3d(1.00119, 0, 0, 0, 0, 0.99903, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
    transform: matrix3d(1.00119, 0, 0, 0, 0, 0.99903, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
  }
  72.916667% {
    -webkit-transform: matrix3d(1.00114, 0, 0, 0, 0, 0.99955, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
    transform: matrix3d(1.00114, 0, 0, 0, 0, 0.99955, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
  }
  75% {
    -webkit-transform: matrix3d(1.001, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
    transform: matrix3d(1.001, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
  }
  77.083333% {
    -webkit-transform: matrix3d(1.00083, 0, 0, 0, 0, 1.00033, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
    transform: matrix3d(1.00083, 0, 0, 0, 0, 1.00033, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
  }
  79.166667% {
    -webkit-transform: matrix3d(1.00063, 0, 0, 0, 0, 1.00052, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
    transform: matrix3d(1.00063, 0, 0, 0, 0, 1.00052, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
  }
  81.25% {
    -webkit-transform: matrix3d(1.00044, 0, 0, 0, 0, 1.00058, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
    transform: matrix3d(1.00044, 0, 0, 0, 0, 1.00058, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
  }
  83.333333% {
    -webkit-transform: matrix3d(1.00027, 0, 0, 0, 0, 1.00053, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
    transform: matrix3d(1.00027, 0, 0, 0, 0, 1.00053, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
  }
  85.416667% {
    -webkit-transform: matrix3d(1.00012, 0, 0, 0, 0, 1.00042, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
    transform: matrix3d(1.00012, 0, 0, 0, 0, 1.00042, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
  }
  87.5% {
    -webkit-transform: matrix3d(1, 0, 0, 0, 0, 1.00027, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
    transform: matrix3d(1, 0, 0, 0, 0, 1.00027, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
  }
  89.583333% {
    -webkit-transform: matrix3d(0.99991, 0, 0, 0, 0, 1.00013, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
    transform: matrix3d(0.99991, 0, 0, 0, 0, 1.00013, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
  }
  91.666667% {
    -webkit-transform: matrix3d(0.99986, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
    transform: matrix3d(0.99986, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
  }
  93.75% {
    -webkit-transform: matrix3d(0.99983, 0, 0, 0, 0, 0.99991, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
    transform: matrix3d(0.99983, 0, 0, 0, 0, 0.99991, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
  }
  95.833333% {
    -webkit-transform: matrix3d(0.99982, 0, 0, 0, 0, 0.99985, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
    transform: matrix3d(0.99982, 0, 0, 0, 0, 0.99985, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
  }
  97.916667% {
    -webkit-transform: matrix3d(0.99983, 0, 0, 0, 0, 0.99984, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
    transform: matrix3d(0.99983, 0, 0, 0, 0, 0.99984, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
  }
  100% {
    opacity: 1;
    -webkit-transform: matrix3d(1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
    transform: matrix3d(1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
  }
}
@-webkit-keyframes dialog-close {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    -webkit-transform: scale3d(0.8, 0.8, 1);
    transform: scale3d(0.8, 0.8, 1);
  }
}
@keyframes dialog-close {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    -webkit-transform: scale3d(0.8, 0.8, 1);
    transform: scale3d(0.8, 0.8, 1);
  }
}

/**
--------------------------------------------------
  Carousel
--------------------------------------------------
**/
.owl-carousel, .owl-stage, .owl-stage-outer, .owl-item {
  position: relative;
}
.owl-carousel {
  display: none;
  width: 100%;
  tap-highlight-color: transparent;
}
.owl-loaded, .owl-loading {
  display: block;
}
.owl-loading, .owl-hidden {
  opacity: 0;
}
.owl-refresh .owl-item {
  display: none;
}
.owl-drag .owl-item {
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
.owl-stage:after, .owl-stage:before {
  display: table;
  content: "";
}
.owl-stage:after {
  clear: both;
}
.owl-stage-outer {
  z-index: 1;
  overflow: hidden;
  -webkit-transform: translate3d(0px, 0px, 0px);
  transform: translate3d(0px, 0px, 0px);
}
.owl-item {
  float: left;
  min-height: 1px;
  tap-highlight-color: transparent;
  touch-callout: none;
  background-color: #fff;
}
.owl-height, .owl-prev, .owl-next {
  transition-duration: 0.25s;
  transition-timing-function: ease-out;
}
.owl-height {
  transition-property: height;
}
.owl-nav.disabled, .owl-dots.disabled {
  display: none;
}
.owl-prev, .owl-next, .owl-dot {
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
.owl-prev, .owl-next {
  position: absolute;
  top: 50%;
  z-index: 2;
  overflow: hidden;
  text-indent: -9999px;
  opacity: 0;
  visibility: hidden;
  transition-property: opacity, visibility;
}
.owl-prev:hover, .owl-next:hover {
  opacity: 0.5;
}
.owl-prev:after, .owl-prev:before, .owl-next:after, .owl-next:before {
  position: absolute;
  top: 0;
  left: 0;
  background-color: #000;
  content: "";
}
.owl-prev.active, .owl-next.active {
  opacity: 1;
  visibility: visible;
}
.owl-prev.disabled, .owl-next.disabled {
  opacity: 0;
}
.owl-prev {
  -webkit-transform: translateY(-50%) rotate(-45deg);
  -ms-transform: translateY(-50%) rotate(-45deg);
  transform: translateY(-50%) rotate(-45deg);
}
.owl-next {
  -webkit-transform: translateY(-50%) rotate(135deg);
  -ms-transform: translateY(-50%) rotate(135deg);
  transform: translateY(-50%) rotate(135deg);
}


/* xs */
@media (max-width: 767px) {
  .owl-prev, .owl-next {
    width: 14px;
    height: 14px;
  }
  .owl-prev:after, .owl-next:after {
    width: 14px;
    height: 4px;
  }
  .owl-prev:before, .owl-next:before {
    width: 4px;
    height: 14px;
  }
  .owl-prev {
    left: 10px;
  }
  .owl-next {
    right: 10px;
  }
}

/* sm - md */
@media (min-width: 768px) and (max-width: 1279px) {
  .owl-prev, .owl-next {
    width: 20px;
    height: 20px;
  }
  .owl-prev:after, .owl-next:after {
    width: 20px;
    height: 6px;
  }
  .owl-prev:before, .owl-next:before {
    width: 6px;
    height: 20px;
  }
  .owl-prev {
    left: 34px;
  }
  .owl-next {
    right: 34px;
  }
}

/* lg */
@media (min-width: 1280px) {
  .owl-prev, .owl-next {
    width: 36px;
    height: 36px;
  }
  .owl-prev:after, .owl-next:after {
    width: 36px;
    height: 8px;
  }
  .owl-prev:before, .owl-next:before {
    width: 8px;
    height: 36px;
  }
  .owl-prev {
    left: 107px;
  }
  .owl-next {
    right: 107px;
  }
}

/**
--------------------------------------------------
  Brand
--------------------------------------------------
**/
.brand__char, .brand__word {
  display: inline;
}
.brand__char--1 {
  color: #e24949;
}
.brand__char--2 {
  color: #37b627;
}
.brand__char--3 {
  color: #e534b5;
}
.brand__char--4 {
  color: #20b5fb;
}
.brand__char--5 {
  color: #dbe222;
}


/**
--------------------------------------------------
  Toolbar
--------------------------------------------------
**/
.toolbar {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}
.toolbar ul,
.toolbar li {
  margin: 0;
  padding: 0;
}
.toolbar ul {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  list-style: none;
}
.toolbar a {
  display: block;
  background-color: #000;
  color: #fff;
}
.toolbar a:hover {
  background-color: #3181ee;
}
.toolbar__text a {
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}
.toolbar__icon a {
  overflow: hidden;
  line-height: 1;
  text-indent: -9999px;
  background-image: url(../image/bg-sprites.png);
  background-repeat: no-repeat;
}
.toolbar__icon img {
  height: auto;
}


/* xs */
@media (max-width: 767px) {
  .toolbar {
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
  }
  .toolbar__text ul {
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
  }
  .toolbar__text li {
    margin-bottom: 10px;
  }
  .toolbar__text a {
    max-width: 320px;
    margin-right: auto;
    margin-left: auto;
    padding: 0 15px;
    font-size: 0.75rem;
    line-height: 2.5;
    text-align: center;
  }
  .toolbar__icon ul {
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
  }
  .toolbar__icon li {
    margin: 0 5px;
  }
  .toolbar__icon a {
    width: 30px;
    height: 30px;
    background-size: 30px auto;
  }
  .toolbar__icon a.twitter {
    background-position: center -60px;
  }
  .toolbar__icon a.facebook {
    background-position: center -90px;
  }
  .toolbar__icon a.bellsdesign {
    background-position: center -120px;
  }
}

/* sm - md - lg */
@media (min-width: 768px) {
  .toolbar__text li:first-child {
    margin-left: 0;
  }
  .toolbar__icon li {
    margin-left: 10px;
  }
  .toolbar__icon li:first-child {
    margin-left: 0;
  }
  .toolbar--order .toolbar__text {
    margin-right: auto;
  }
  .toolbar--reorder .toolbar__text {
    -webkit-order: 1;
    -ms-flex-order: 1;
    order: 1;
  }
  .toolbar--reorder .toolbar__icon {
    -webkit-order: 0;
    -ms-flex-order: 0;
    order: 0;
    margin-right: 20px;
  }
  .toolbar--center {
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
  }
}

/* sm - md */
@media (min-width: 768px) and (max-width: 1279px) {
  .toolbar__text li {
    margin-left: 15px;
  }
  .toolbar__text a {
    padding: 0 20px;
    font-size: 0.875rem;
    line-height: 3;
  }
  .toolbar__icon a {
    width: 40px;
    height: 40px;
    background-size: 40px auto;
  }
  .toolbar__icon a.twitter {
    background-position: center -80px;
  }
  .toolbar__icon a.facebook {
    background-position: center -120px;
  }
  .toolbar__icon a.bellsdesign {
    background-position: center -160px;
  }
}

/* lg */
@media (min-width: 1280px) {
  .toolbar__text li {
    margin-left: 20px;
  }
  .toolbar__text a {
    padding: 0 30px;
    line-height: 3.125;
  }
  .toolbar__icon a {
    width: 50px;
    height: 50px;
    background-size: 50px auto;
  }
  .toolbar__icon a.twitter {
    background-position: center -100px;
  }
  .toolbar__icon a.facebook {
    background-position: center -150px;
  }
  .toolbar__icon a.bellsdesign {
    background-position: center -200px;
  }
}

/**
--------------------------------------------------
  Dialog
--------------------------------------------------
**/
.dialog {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 20;
  overflow-x: hidden;
  overflow-y: auto;
  visibility: hidden;
  pointer-events: none;
}
.dialog__overlay, .dialog__content {
  opacity: 0;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}
.dialog__overlay {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1;
  background-color: rgba(0, 0, 0, 0.75);
  transition: opacity 0.25s ease-out;
}
.dialog__content {
  position: relative;
  z-index: 2;
  max-width: 964px;
  min-width: 290px;
  margin-right: auto;
  margin-left: auto;
  background-color: #fff;
  border-color: #20b5fb #dbe222 #e24949 #e534b5;
  border-style: solid;
  box-shadow: 0 0 30px rgba(0, 0, 0, 0.25);
}
.dialog--open, .dialog--close {
  visibility: visible;
  pointer-events: auto;
}
.dialog--open .dialog__overlay, .dialog--open .dialog__content {
  opacity: 1;
}
.dialog--open .dialog__content, .dialog--close .dialog__content {
  -webkit-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
}
.dialog--open .dialog__content {
  -webkit-animation-name: dialog-open;
  animation-name: dialog-open;
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-timing-function: linear;
  animation-timing-function: linear;
}
.dialog--close .dialog__content {
  -webkit-animation-name: dialog-close;
  animation-name: dialog-close;
  -webkit-animation-duration: 0.15s;
  animation-duration: 0.15s;
  -webkit-animation-timing-function: ease-out;
  animation-timing-function: ease-out;
}
.dialog__button {
  position: absolute;
  display: block;
  overflow: hidden;
  margin: 0;
  padding: 0;
  text-indent: -9999px;
  background-color: #fff;
  border: 0;
  outline: none;
  opacity: 1;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
  transition-property: opacity, -webkit-transform;
  transition-property: opacity, transform;
  transition-property: opacity, transform, -webkit-transform;
}
.dialog__button:hover {
  opacity: 0.5;
  -webkit-transform: rotate(135deg);
  -ms-transform: rotate(135deg);
  transform: rotate(135deg);
}
.dialog__button:after, .dialog__button:before {
  position: absolute;
  background-color: #000;
  content: "";
}
.dialog__button:after {
  top: 0;
  left: 50%;
  bottom: 0;
  width: 2px;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
}
.dialog__button:before {
  top: 50%;
  right: 0;
  left: 0;
  height: 2px;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
}
.dialog__title {
  margin: 0;
  padding: 0;
  font-weight: 700;
  line-height: 1;
}
.dialog__title strong {
  font-weight: 700;
}
.dialog__description p {
  margin: 0;
  padding: 0;
}
.dialog__description strong {
  font-weight: 700;
}
.dialog__description em {
  font-style: normal;
  color: #7680ec;
}


/* xs */
@media (max-width: 767px) {
  .dialog {
    padding: 0 15px;
  }
  .dialog__content {
    margin-top: 15px;
    margin-bottom: 15px;
    padding: 50px 15px 20px;
    border-width: 5px;
  }
  .dialog__button {
    top: 15px;
    right: 15px;
    width: 20px;
    height: 20px;
  }
  .dialog__title {
    font-size: 1.25rem;
  }
  .dialog__description {
    margin-top: 15px;
    font-size: 0.875rem;
  }
  .dialog__toolbar {
    margin-top: 25px;
  }
}

/* sm - md - lg */
@media (min-width: 768px) {
  .dialog {
    padding: 0 30px;
  }
  .dialog__content {
    margin-top: 30px;
    margin-bottom: 30px;
  }
  .dialog__button {
    top: 30px;
    right: 30px;
    width: 40px;
    height: 40px;
  }
  .dialog__title {
    font-size: 2rem;
  }
  .dialog__description {
    margin-top: 30px;
    font-size: 1.25rem;
  }
  .dialog__toolbar {
    margin-top: 40px;
    margin-bottom: 40px;
  }
}

/* sm - md */
@media (min-width: 768px) and (max-width: 1279px) {
  .dialog__content {
    padding: 90px 40px 40px;
    border-width: 10px;
  }
}

/* lg */
@media (min-width: 1280px) {
  .dialog__content {
    padding: 90px;
    border-width: 15px;
  }
}

/**
--------------------------------------------------
  Artist
--------------------------------------------------
**/
.artist {
  position: relative;
  border-bottom: #e1e1e1 solid 1px;
}
.artist__item {
  position: relative;
}
.artist__name, .artist__icon {
  cursor: pointer;
}
.artist__name {
  position: relative;
  z-index: 2;
  margin: 0;
  padding: 0.25em 0;
  font-size: 12vw;
  font-weight: 100;
  line-height: 1;
}
.artist__name strong {
  position: absolute;
  bottom: 0.3em;
  left: 0;
  font-size: 0.85em;
  font-weight: 700;
}
.artist__name em {
  display: inline-block;
  font-style: normal;
  opacity: 0.75;
}
.artist__icon {
  position: absolute;
  top: 50%;
  z-index: 1;
  -webkit-transform: translateY(-50%) rotate(45deg);
  -ms-transform: translateY(-50%) rotate(45deg);
  transform: translateY(-50%) rotate(45deg);
  opacity: 0.75;
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}
.artist__icon:after, .artist__icon:before {
  position: absolute;
  top: 0;
  right: 0;
  background-color: inherit;
  content: "";
}
.artist__name:hover + .artist__icon {
  -webkit-animation-name: shake;
  animation-name: shake;
}
.artist__content {
  margin-right: auto;
  margin-left: auto;
}
.artist__message {
  text-align: center;
}
.artist__message h3,
.artist__message p {
  margin: 0;
  padding: 0;
}
.artist__message h3 {
  line-height: 1;
}
.artist__message p {
  line-height: 1.25;
}


/* xs */
@media (max-width: 767px) {
  .artist__item {
    padding: 30px 15px;
  }
  .artist__icon {
    right: 15px;
  }
  .artist__icon:after {
    width: 14px;
    height: 4px;
  }
  .artist__icon:before {
    width: 4px;
    height: 14px;
  }
  .artist__content {
    max-width: 480px;
    padding: 0 15px;
  }
  .artist__message h3 {
    font-size: 1.25rem;
  }
  .artist__message p {
    margin-top: 10px;
    font-size: 0.875rem;
  }
  .artist__toolbar {
    margin-top: 20px;
  }
}

/* sm - md - lg */
@media (min-width: 768px) {
  .artist__content {
    max-width: 960px;
  }
  .artist__message p {
    margin-top: 15px;
  }
  .artist__toolbar {
    margin-top: 40px;
  }
}

/* sm - md */
@media (min-width: 768px) and (max-width: 1279px) {
  .artist__item {
    padding: 70px 30px;
  }
  .artist__icon {
    right: 30px;
  }
  .artist__icon:after {
    width: 30px;
    height: 8px;
  }
  .artist__icon:before {
    width: 8px;
    height: 30px;
  }
  .artist__content {
    padding: 0 40px;
  }
  .artist__message h3 {
    font-size: 1.875rem;
  }
  .artist__message p {
    font-size: 1.25rem;
  }
}

/* lg */
@media (min-width: 1280px) {
  .artist__item {
    padding: 100px;
  }
  .artist__icon {
    right: 100px;
  }
  .artist__icon:after {
    width: 40px;
    height: 10px;
  }
  .artist__icon:before {
    width: 10px;
    height: 40px;
  }
  .artist__content {
    padding: 50px 30px;
  }
  .artist__message h3 {
    font-size: 2rem;
  }
  .artist__message p {
    font-size: 1.5rem;
  }
}

/* xlg */
@media (min-width: 1600px) {
  .artist__name {
    font-size: 10vw;
  }
}

/**
--------------------------------------------------
  Palette
--------------------------------------------------
**/
.palette__author {
  margin: 0;
  padding: 0;
  font-weight: 300;
  text-transform: uppercase;
}
.palette__author a {
  color: #000;
}
.palette__author a:hover {
  color: #3181ee;
}
.palette__author strong {
  position: relative;
  display: inline-block;
  font-weight: 700;
}
@media (min-width: 768px) {
.palette__author strong:after {
  position: absolute;
  top: 50%;
  left: 0;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  background-image: url(../image/bg-sprites.png);
  background-position: center bottom;
  background-repeat: no-repeat;
  content: "";
  background-size: 24px auto;
}
}
.palette__content ul,
.palette__content li {
  margin: 0;
  padding: 0;
}
.palette__content ul {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  list-style: none;
}
.palette__content li {
  position: relative;
  width: 20%;
}
.palette__pane {
  overflow: hidden;
}
.palette__color {
  position: absolute;
  bottom: 0;
  font-weight: 700;
  text-align: center;
  text-transform: uppercase;
  background-color: #fff;
}


/* xs */
@media (max-width: 767px) {
  .palette {
    padding: 0 15px;
  }
  .palette__author {
    font-size: 1rem;
    line-height: 1.25;
  }
 /* .palette__author strong {
    padding-left: 30px;
  }*/
  .palette__author strong:after {
    width: 20px;
    height: 20px;
    background-size: 20px auto;
  }
  .palette__content {
    margin-top: 10px;
  }
  .palette__content ul {
    margin: 0 -1px;
  }
  .palette__content li {
    padding: 0 1px;
  }
  .palette__pane {
    height: 80px;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
  }
  .palette__color {
    right: 1px;
    left: 1px;
    padding: 5px 0;
    font-size: 0.625rem;
  }
}

/* sm - md - lg */
@media (min-width: 768px) {
  .palette__author {
    line-height: 1;
  }
  .palette__content ul {
    margin: 0 -5px;
  }
  .palette__content li {
    padding: 0 5px;
  }
  .palette__pane {
    box-shadow: 0 0 30px rgba(0, 0, 0, 0.1);
  }
  .palette__color {
    right: 5px;
    left: 5px;
  }
  .palette__color:before {
    content: "HEX ";
  }
}

/* sm - md */
@media (min-width: 768px) and (max-width: 1279px) {
  .palette {
    padding: 0 40px;
  }
  .palette__author {
    font-size: 1.25rem;
  }
  .palette__author strong {
    padding-left: 30px;
  }
  .palette__author strong:after {
    width: 20px;
    height: 20px;
    background-size: 20px auto;
  }
  .palette__content {
    margin-top: 20px;
  }
  .palette__pane {
    height: 180px;
  }
  .palette__color {
    padding: 10px 0;
    font-size: 0.875rem;
  }
}

/* lg */
@media (min-width: 1280px) {
  .palette {
    padding: 0 70px;
  }
  .palette__author {
    font-size: 1.5rem;
  }
  .palette__author strong {
    padding-left: 35px;
  }
  .palette__author strong:after {
    width: 24px;
    height: 24px;
    background-size: 24px auto;
  }
  .palette__content {
    margin-top: 30px;
  }
  .palette__pane {
    height: 250px;
  }
  .palette__color {
    padding: 15px 0;
    font-size: 1.125rem;
  }
}

/**
--------------------------------------------------
  Author
--------------------------------------------------
**/
.author__info {
  line-height: 1.25;
}
.author__info p {
  margin: 0;
  padding: 0;
}
.author__info p > span {
  display: block;
}
.author__info strong {
  font-weight: 700;
}
.author__info em {
  font-style: normal;
  color: #7680ec;
}


/* xs */
@media (max-width: 767px) {
  .author {
    padding: 25px 15px;
  }
  .author__info {
    font-size: 0.875rem;
  }
  .author__info p > span {
    display: inline;
  }
  .author__toolbar {
    margin-top: 20px;
  }
}

/* sm - md */
@media (min-width: 768px) and (max-width: 1279px) {
  .author {
    padding: 50px 30px;
  }
  .author__info {
    font-size: 1.25rem;
  }
  .author__toolbar {
    margin-top: 40px;
  }
}

/* lg */
@media (min-width: 1280px) {
  .author {
    padding: 0 100px;
  }
  .author__info {
    padding: 80px 0;
    font-size: 2rem;
  }
}

/* mobile optimization */

@media (max-width: 1024px) {
    .hidesm {
      display: none;
    }
  }
  @media (min-width: 1025px) {
    .hidexl {
      display: none;
    }
 
  }

  .mobilebtn a {
    max-width: 320px;
    margin-right: auto;
    margin-left: auto;
    padding: 0 15px;
    font-size: 0.75rem;
    line-height: 2.5;
    text-align: center;
    display: block;
    background-color: #7680ec;
    color: #fff;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
  }
.mobilebtn a:hover {
    background-color: #8991ec;
 
  }

  @media (max-width: 767px) {
.palette__color {
    background-color: #f4f4f4;
}
.palette__pane {
    box-shadow: none; 
}
.palette__author {
    font-size: .65rem;
}
}