@charset "UTF-8";
@import url(https://fonts.googleapis.com/css2?family=Jost:wght@300;400;500;600;700;800&family=Noto+Kufi+Arabic:wght@300;400;500;600;700&family=Sail&display=swap);
@import url("https://fonts.googleapis.com/css2?family=MonteCarlo&display=swap");

ul.smothscroll {
  bottom: 15px;
  list-style: none;
  position: fixed;
  right: 30px;
  z-index: 999;
}

ul.smothscroll a {
  background-color: rgba(101, 113, 80, 0.7);
  border: 2px solid #657150;
  border-radius: 50%;
  color: #fff;
  display: block;
  height: 50px;
  line-height: 47px;
  text-align: center;
  transition: all 0.3s;
  width: 50px;
}

ul.smothscroll a:hover {
  background: #657150;
}

html {
  font-size: 15px;
}

:root {
  scroll-behavior: unset;
}

body {
  background-color: #fff;
  color: #5c5c5c;
  font-family: "Roboto", sans-serif;
  font-size: 18px;
  overflow-x: hidden;
}

@media (max-width: 767px) {
  body {
    font-size: 14px;
  }
}

p {
  color: #5c5c5c;
  font-size: 18px;
  line-height: 1.8em;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  color: #101010;
  font-family: "MonteCarlo", cursive;
  font-weight: 400;
}

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

a {
  transition: all 0.2s;
}

a,
a:hover {
  text-decoration: none;
}

img {
  max-width: 100%;
}

.wpo-box-style {
  padding: 0 100px;
}

@media (max-width: 1700px) {
  .wpo-box-style {
    padding: 0 30px;
  }
}

@media (max-width: 991px) {
  .wpo-box-style {
    padding: 0 30px;
  }
}

@media (max-width: 575px) {
  .wpo-box-style {
    padding: 0;
  }
}

@media (min-width: 1400px) {
  .container {
    max-width: 1326px;
  }
}

.hidden {
  display: none;
}

.sr-only {
  display: none !important;
  opacity: 0;
  visibility: hidden;
}

.App,
.page-wrapper {
  overflow: hidden;
  position: relative;
}

.wow {
  visibility: hidden;
}

.fi:before {
  margin: 0;
}

.section-bg {
  background: #f5f5f5 !important;
}

.section-padding {
  padding: 120px 0;
}

@media (max-width: 991px) {
  .section-padding {
    padding: 90px 0;
  }
}

@media (max-width: 767px) {
  .section-padding {
    padding: 80px 0;
  }
}

@media (max-width: 575px) {
  .section-padding {
    padding: 60px 0;
  }
}

.pt-120 {
  padding-top: 120px;
}

@media (max-width: 991px) {
  .pt-120 {
    padding-top: 90px;
  }
}

@media (max-width: 767px) {
  .pt-120 {
    padding-top: 80px;
  }
}

@media (max-width: 575px) {
  .pt-120 {
    padding-top: 60px;
  }
}

.pb-120 {
  padding-bottom: 120px;
}

@media (max-width: 991px) {
  .pb-120 {
    padding-bottom: 90px;
  }
}

@media (max-width: 767px) {
  .pb-120 {
    padding-bottom: 80px;
  }
}

@media (max-width: 575px) {
  .pb-120 {
    padding-bottom: 60px;
  }
}

.contact-validation-active .error-handling-messages {
  margin-top: 15px !important;
  width: 100% !important;
}

.contact-validation-active .errorMessage {
  color: red;
  display: block;
  font-weight: 400;
  margin: 5px 0 0;
  text-align: left;
}

.contact-validation-active #c-loader,
.contact-validation-active #loader {
  display: none;
  margin-top: 10px;
}

.contact-validation-active #c-loader i,
.contact-validation-active #loader i {
  -webkit-animation: rotating 2s linear infinite;
  animation: rotating 2s linear infinite;
  color: #657150;
  display: inline-block;
  font-size: 30px;
}

.contact-validation-active #c-error,
.contact-validation-active #c-success,
.contact-validation-active #error,
.contact-validation-active #success {
  color: #fff;
  display: none;
  font-size: 16px;
  padding: 5px 10px;
  text-align: center;
  width: 100%;
}

@media (max-width: 767px) {

  .contact-validation-active #c-error,
  .contact-validation-active #c-success,
  .contact-validation-active #error,
  .contact-validation-active #success {
    font-size: 15px;
  }
}

.contact-validation-active #c-success,
.contact-validation-active #success {
  background-color: #009a00;
  border-left: 5px solid green;
  margin-bottom: 5px;
}

.contact-validation-active #c-error,
.contact-validation-active #error {
  background-color: #ff1a1a;
  border-left: 5px solid red;
}

@-webkit-keyframes rotating {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }

  to {
    -webkit-transform: rotate(1turn);
    transform: rotate(1turn);
  }
}

@keyframes rotating {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }

  to {
    -webkit-transform: rotate(1turn);
    transform: rotate(1turn);
  }
}

.rotating {
  -webkit-animation: rotating 5s infinite alternate;
  animation: rotating 5s infinite alternate;
}

.back-to-top {
  background-color: rgba(101, 113, 80, 0.7);
  border: 2px solid #657150;
  border-radius: 45px;
  bottom: 15px;
  display: none;
  height: 45px;
  line-height: 45px;
  position: fixed;
  right: 15px;
  text-align: center;
  transition: all 0.2s;
  width: 45px;
  z-index: 999;
}

@media (max-width: 991px) {
  .back-to-top {
    height: 35px;
    line-height: 35px;
    width: 35px;
  }
}

.back-to-top:hover {
  background-color: #657150;
}

.back-to-top i {
  color: #fff;
  font-size: 18px;
  left: 50%;
  position: absolute;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}

.mfp-wrap {
  background-color: rgba(0, 0, 0, 0.9);
  z-index: 99999;
}

.mfp-with-zoom .mfp-container,
.mfp-with-zoom.mfp-bg {
  -webkit-backface-visibility: hidden;
  opacity: 0;
  transition: all 0.3s ease-out;
}

.mfp-with-zoom.mfp-ready .mfp-container {
  opacity: 1;
}

.mfp-with-zoom.mfp-ready.mfp-bg {
  opacity: 0.8;
}

.mfp-with-zoom.mfp-removing .mfp-container,
.mfp-with-zoom.mfp-removing.mfp-bg {
  opacity: 0;
}

.fancybox-overlay {
  background: rgba(0, 0, 0, 0.9);
  z-index: 9999 !important;
}

.fancybox-wrap {
  z-index: 99999 !important;
}

.ui-widget.ui-widget-content {
  border: none;
  box-shadow: 0 1px 13.5px 1.5px rgba(46, 49, 108, 0.08);
  padding: 10px;
}

.ui-button,
.ui-state-default,
.ui-widget-content .ui-state-default,
.ui-widget-header .ui-state-default,
html .ui-button.ui-state-disabled:active,
html .ui-button.ui-state-disabled:hover {
  background: #f9f9f9;
  border: 1px solid #e3e3e3;
  color: #454545;
  font-weight: 400;
  text-align: center;
}

.ui-state-highlight,
.ui-widget-content .ui-state-highlight,
.ui-widget-header .ui-state-highlight {
  background: #7f91a6;
  border: 1px solid #e3d9d9;
  color: #fff;
}

.ui-button.ui-state-active:hover,
.ui-button:active,
.ui-state-active,
.ui-widget-content .ui-state-active,
.ui-widget-header .ui-state-active,
a.ui-button:active {
  background: #657150;
  border: 1px solid #657150;
  color: #fff;
  font-weight: 400;
}

.react-datepicker__header {
  background-color: #101010;
  border-bottom: 1px solid #101010;
  padding: 15px 0;
}

.react-datepicker__tab-loop {
  position: relative;
  z-index: 999;
}

.react-datepicker-time__header,
.react-datepicker-year-header,
.react-datepicker__current-month,
.react-datepicker__day-name {
  color: #fff;
}

.react-datepicker-popper[data-placement^="bottom"] .react-datepicker__triangle,
.react-datepicker-popper[data-placement^="top"] .react-datepicker__triangle {
  left: 50% !important;
  -webkit-transform: translateX(-50%) !important;
  transform: translateX(-50%) !important;
}

.react-datepicker-popper[data-placement^="bottom"] .react-datepicker__triangle:after,
.react-datepicker-popper[data-placement^="bottom"] .react-datepicker__triangle:before {
  border-bottom-color: #101010;
}

.react-datepicker__day,
.react-datepicker__day-name,
.react-datepicker__time-name {
  line-height: 1.8rem;
  width: 1.8rem;
}

.react-datepicker__day--in-range,
.react-datepicker__day--in-selecting-range,
.react-datepicker__day--selected,
.react-datepicker__month-text--in-range,
.react-datepicker__month-text--in-selecting-range,
.react-datepicker__month-text--selected,
.react-datepicker__quarter-text--in-range,
.react-datepicker__quarter-text--in-selecting-range,
.react-datepicker__quarter-text--selected,
.react-datepicker__year-text--in-range,
.react-datepicker__year-text--in-selecting-range,
.react-datepicker__year-text--selected {
  background-color: #101010;
}

.wpo-section-title,
.wpo-section-title-s2 {
  margin-bottom: 60px;
  text-align: center;
}

@media (max-width: 767px) {

  .wpo-section-title,
  .wpo-section-title-s2 {
    margin-bottom: 40px;
  }
}

.wpo-section-title span,
.wpo-section-title-s2 span {
  color: #c8a898;
  display: block;
  font-size: 25px;
  font-style: normal;
  font-weight: 400;
  text-align: center;
}

@media (max-width: 767px) {

  .wpo-section-title span,
  .wpo-section-title-s2 span {
    font-size: 25px;
    line-height: 35px;
    margin-bottom: 0;
  }
}

@media (max-width: 575px) {

  .wpo-section-title span,
  .wpo-section-title-s2 span {
    font-size: 18px;
  }
}

.wpo-section-title h2,
.wpo-section-title-s2 h2 {
  color: #101010;
  display: inline-block;
  font-family: "MonteCarlo", cursive;
  font-size: 50px;
  font-weight: 400;
  margin: 10px 0 0;
  position: relative;
}

@media (max-width: 767px) {

  .wpo-section-title h2,
  .wpo-section-title-s2 h2 {
    font-size: 32px;
    line-height: 40px;
  }
}

@media (max-width: 575px) {

  .wpo-section-title h2,
  .wpo-section-title-s2 h2 {
    font-size: 25px;
    margin-top: 0;
  }
}

.wpo-section-title p,
.wpo-section-title-s2 p {
  font-size: 18px;
}

.wpo-section-title-s2 {
  text-align: left;
}

@media (max-width: 991px) {
  .wpo-section-title-s2 {
    text-align: center;
  }
}

.wpo-section-title-s2 span {
  text-align: left;
}

@media (max-width: 991px) {
  .wpo-section-title-s2 span {
    text-align: center;
  }
}

.theme-btn,
.theme-btn-s3,
.theme-btn-s4,
.view-cart-btn {
  -webkit-backface-visibility: hidden;
  background: #657150;
  border: 0;
  color: #fff;
  display: inline-block;
  font-size: 18px;
  font-weight: 500;
  padding: 15px 45px;
  position: relative;
  text-transform: uppercase;
  transition: all 0.3s;
  z-index: 1;
}

.theme-btn-s3.theme-btn-s3,
.theme-btn-s4.theme-btn-s3,
.theme-btn.theme-btn-s3 {
  background: #fff;
  color: #657150;
}

.theme-btn-s3.theme-btn-s3:after,
.theme-btn-s4.theme-btn-s3:after,
.theme-btn.theme-btn-s3:after {
  border: 1px solid #fff;
}

.theme-btn-s3.theme-btn-s4,
.theme-btn-s4.theme-btn-s4,
.theme-btn.theme-btn-s4 {
  background: #657150;
  color: #fff;
}

.theme-btn-s3.theme-btn-s4:after,
.theme-btn-s4.theme-btn-s4:after,
.theme-btn.theme-btn-s4:after {
  border: 1px solid #657150;
}

.theme-btn-s3:active,
.theme-btn-s3:focus,
.theme-btn-s3:hover,
.theme-btn-s4:active,
.theme-btn-s4:focus,
.theme-btn-s4:hover,
.theme-btn:active,
.theme-btn:focus,
.theme-btn:hover,
.view-cart-btn:active,
.view-cart-btn:focus,
.view-cart-btn:hover {
  background: #50593f;
  color: #fff;
}

.theme-btn-s3:hover:after,
.theme-btn-s4:hover:after,
.theme-btn:hover:after,
.view-cart-btn:hover:after {
  opacity: 1;
}

@media (max-width: 991px) {

  .theme-btn,
  .theme-btn-s3,
  .theme-btn-s4,
  .view-cart-btn {
    font-size: 18px;
  }
}

@media (max-width: 767px) {

  .theme-btn,
  .theme-btn-s3,
  .theme-btn-s4,
  .view-cart-btn {
    font-size: 14px;
    padding: 12px 18px;
  }
}

.theme-btn-s2 {
  -webkit-backface-visibility: hidden;
  background: #e5d1c7;
  border: 0;
  color: #101010;
  display: inline-block;
  font-size: 18px;
  font-weight: 500;
  padding: 15px 45px;
  position: relative;
  text-transform: capitalize;
  transition: all 0.3s;
  z-index: 1;
}

@media (max-width: 991px) {
  .theme-btn-s2 {
    font-size: 14px;
  }
}

.theme-btn-s2:active,
.theme-btn-s2:focus,
.theme-btn-s2:hover {
  background: #c8a898;
  color: #101010;
}

@media (max-width: 767px) {
  .theme-btn-s2 {
    font-size: 13px;
    padding: 12px 18px;
  }
}

.theme-btn-s4:hover {
  background: #555f43;
}

.theme-btn-s4:hover:after {
  border: 1px solid #555f43;
}

.view-cart-btn {
  background: #657150;
  border-radius: 5px;
  color: #fff;
  display: block;
  margin-top: 15px;
  padding: 10px 45px;
  text-transform: capitalize;
}

.view-cart-btn:after {
  display: none;
}

.view-cart-btn:hover {
  background-color: #50593f;
}

.view-cart-btn.s1 {
  background: rgba(101, 113, 80, 0.2);
  color: #101010;
}

.view-cart-btn.s1:hover {
  background-color: #c9c9c9;
}

.social-links {
  overflow: hidden;
}

.social-links li {
  float: left;
  height: 35px;
  margin-right: 1px;
  width: 35px;
}

.social-links li a {
  background-color: #808f65;
  color: #fff;
  display: block;
  height: 35px;
  line-height: 35px;
  text-align: center;
  width: 35px;
}

.social-links li a:hover {
  background-color: #657150;
}

.preloader {
  background-color: #657150;
  height: 100%;
  overflow: hidden;
  position: fixed;
  width: 100%;
  z-index: 999999;
}

.preloader .vertical-centered-box {
  height: 100%;
  position: absolute;
  text-align: center;
  width: 100%;
}

.preloader .vertical-centered-box:after {
  content: "";
  display: inline-block;
  height: 100%;
  margin-right: -0.25em;
  vertical-align: middle;
}

.preloader .vertical-centered-box .content {
  box-sizing: border-box;
  display: inline-block;
  font-size: 0;
  text-align: left;
  vertical-align: middle;
}

.preloader * {
  transition: all 0.3s;
}

.preloader img {
  max-width: 130px;
}

.preloader .loader-circle {
  border-radius: 50%;
  box-shadow: inset 0 0 0 1px hsla(0, 0%, 100%, 0.1);
  width: 150px;
}

.preloader .loader-circle,
.preloader .loader-line-mask {
  height: 150px;
  left: 50%;
  margin-left: -80px;
  margin-top: -80px;
  position: absolute;
  top: 50%;
}

.preloader .loader-line-mask {
  -webkit-animation: rotate 1.2s linear infinite;
  animation: rotate 1.2s linear infinite;
  -webkit-mask-image: -webkit-linear-gradient(top, #000, transparent);
  overflow: hidden;
  -webkit-transform-origin: 75px 75px;
  transform-origin: 75px 75px;
  width: 60px;
}

.preloader .loader-line-mask .loader-line {
  border-radius: 50%;
  box-shadow: inset 0 0 0 1px hsla(0, 0%, 100%, 0.5);
  height: 150px;
  width: 150px;
}

.preloader #particles-background,
.preloader #particles-foreground {
  height: 202%;
  left: -51%;
  top: -51%;
  -webkit-transform: scale3d(0.5, 0.5, 1);
  transform: scale3d(0.5, 0.5, 1);
  width: 202%;
}

.preloader #particles-background {
  background: #2c2d44;
  background-image: linear-gradient(45deg, #3f3251 2%, #002025);
}

@keyframes rotate {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }

  to {
    -webkit-transform: rotate(1turn);
    transform: rotate(1turn);
  }
}

@-webkit-keyframes fade {
  0% {
    opacity: 1;
  }

  50% {
    opacity: 0.25;
  }
}

@keyframes fade {
  0% {
    opacity: 1;
  }

  50% {
    opacity: 0.25;
  }
}

.preloader lesshat-selector {
  -lh-property: 0;
}

@-webkit-keyframes fade-in {
  0% {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@keyframes fade-in {
  0% {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

.preloader [not-existing] {
  zoom: 1;
}

@media screen and (min-width: 992px) {
  .blog-sidebar {
    padding-left: 45px;
  }
}

@media (max-width: 991px) {
  .blog-sidebar {
    margin-top: 80px;
    max-width: 400px;
  }
}

@media (max-width: 767px) {
  .blog-sidebar {
    margin-top: 60px;
    max-width: 400px;
  }
}

.blog-sidebar .widget h3 {
  color: #101010;
  font-family: "Roboto", sans-serif;
  font-size: 23px;
  font-weight: 600;
  margin: 0 0 1.3em;
  padding-bottom: 20px;
  position: relative;
  text-transform: capitalize;
}

.blog-sidebar .widget h3:before {
  background-color: #657150;
  left: 0;
  width: 55px;
}

.blog-sidebar .widget h3:after,
.blog-sidebar .widget h3:before {
  border-radius: 10px;
  bottom: 0;
  content: "";
  height: 4px;
  position: absolute;
}

.blog-sidebar .widget h3:after {
  background-color: #f2f2f2;
  left: 65px;
  width: 80%;
}

.blog-sidebar>.widget+.widget {
  margin-top: 65px;
}

.blog-sidebar .search-widget form div {
  position: relative;
}

.blog-sidebar .search-widget input {
  background-color: #f9f7f6;
  border: 0;
  border-radius: 5px;
  box-shadow: none;
  font-size: 16px;
  height: 70px;
  padding: 6px 50px 6px 20px;
  transition: all 0.3s;
}

.blog-sidebar .search-widget input:focus {
  background-color: rgba(101, 113, 80, 0.1);
}

.blog-sidebar .search-widget form button {
  background: transparent;
  background-color: #657150;
  border: 0;
  border-radius: 6px;
  color: #fff;
  font-size: 20px;
  height: 50px;
  line-height: 50px;
  outline: 0;
  position: absolute;
  right: 10px;
  top: 52%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  width: 50px;
}

.blog-sidebar .about-widget {
  background-color: #f9f7f6;
  padding: 45px;
  position: relative;
  text-align: center;
  z-index: 1;
}

@media (max-width: 1200px) {
  .blog-sidebar .about-widget {
    padding: 35px;
  }
}

.blog-sidebar .about-widget .aw-shape {
  position: absolute;
  right: 0;
  top: 0;
  z-index: -1;
}

.blog-sidebar .about-widget .img-holder {
  margin-bottom: 25px;
}

.blog-sidebar .about-widget .img-holder img {
  border-radius: 50%;
  max-width: 200px;
  width: 100%;
}

.blog-sidebar .about-widget ul {
  display: flex;
  justify-content: center;
  list-style: none;
}

.blog-sidebar .about-widget ul li {
  margin-right: 10px;
}

.blog-sidebar .about-widget ul li:last-child {
  margin-right: 0;
}

.blog-sidebar .about-widget ul li a {
  background-color: #fff;
  border-radius: 50%;
  display: block;
  height: 40px;
  line-height: 40px;
  text-decoration: none;
  width: 40px;
}

.blog-sidebar .about-widget h4 {
  font-family: "Roboto", sans-serif;
  font-size: 25px;
  font-weight: 500;
  margin-bottom: 15px;
}

.blog-sidebar .about-widget p {
  font-size: 16px;
  margin-bottom: 1.2em;
}

.blog-sidebar .about-widget a {
  color: #101010;
  font-family: "MonteCarlo", cursive;
  font-size: 14px;
  text-decoration: underline;
}

.blog-sidebar .about-widget a:hover {
  color: #657150;
}

.blog-sidebar .category-widget ul {
  list-style: none;
}

.blog-sidebar .category-widget ul li {
  font-size: 19px;
  position: relative;
}

@media (max-width: 767px) {
  .blog-sidebar .category-widget ul li {
    font-size: 16px;
  }
}

.blog-sidebar .category-widget ul li span {
  position: absolute;
  right: 0;
}

.blog-sidebar .category-widget ul>li+li {
  margin-top: 12px;
  padding-top: 12px;
}

.blog-sidebar .category-widget ul a {
  color: #474f62;
  display: block;
  font-size: 16px;
}

.blog-sidebar .category-widget ul a span {
  background-color: #f9f7f6;
  border-radius: 50%;
  display: inline-block;
  font-size: 18px;
  height: 30px;
  line-height: 30px;
  text-align: center;
  width: 30px;
}

@media (max-width: 767px) {
  .blog-sidebar .category-widget ul a span {
    font-size: 14px;
  }
}

.blog-sidebar .category-widget ul a:hover,
.blog-sidebar .category-widget ul li:hover:before {
  color: #657150;
}

.blog-sidebar .recent-post-widget .post {
  overflow: hidden;
}

.blog-sidebar .recent-post-widget .posts>.post+.post {
  margin-top: 15px;
  padding-top: 15px;
}

.blog-sidebar .recent-post-widget .post .img-holder {
  float: left;
  width: 90px;
}

.blog-sidebar .recent-post-widget .post .img-holder img {
  border-radius: 6px;
}

.blog-sidebar .recent-post-widget .post .details {
  float: left;
  padding-left: 20px;
  width: calc(100% - 90px);
}

.blog-sidebar .recent-post-widget .post h4 {
  font-family: "Roboto", sans-serif;
  font-size: 18px;
  font-weight: 500;
  line-height: 1.3em;
  margin: 0 0 0.3em;
}

@media (max-width: 1199px) {
  .blog-sidebar .recent-post-widget .post h4 {
    margin: 0;
  }
}

@media (max-width: 767px) {
  .blog-sidebar .recent-post-widget .post h4 {
    font-size: 16px;
  }
}

.blog-sidebar .recent-post-widget .post h4 a {
  color: #101010;
  display: inline-block;
}

.blog-sidebar .recent-post-widget .post h4 a:hover {
  color: #657150;
}

.blog-sidebar .recent-post-widget .post .details .date {
  color: #5c5c5c;
  font-size: 16px;
}

.blog-sidebar .recent-post-widget .post .details .date i {
  display: inline-block;
  padding-right: 7px;
}

.blog-sidebar .wpo-instagram-widget ul {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
}

.blog-sidebar .wpo-instagram-widget ul li {
  flex: 0 0 33.33%;
  margin-bottom: 5px;
  max-width: 33.33%;
  padding: 0 3px;
}

.blog-sidebar .wpo-instagram-widget ul li img {
  border-radius: 6px;
  max-height: 90px;
  object-fit: cover;
  width: 100%;
}

.blog-sidebar .tag-widget ul {
  list-style: none;
  overflow: hidden;
}

.blog-sidebar .tag-widget ul li {
  float: left;
  margin: 0 8px 8px 0;
}

.blog-sidebar .tag-widget ul li a {
  background: #f9f7f6;
  border-radius: 5px;
  color: #101010;
  display: inline-block;
  font-size: 16px;
  padding: 5px 18px;
  text-transform: capitalize;
}

.blog-sidebar .tag-widget ul li a:hover {
  background: #657150;
  color: #fff;
}

.blog-sidebar .wpo-contact-widget {
  background-size: cover;
  border: 0;
  padding: 30px 40px;
  position: relative;
  z-index: 1;
}

.blog-sidebar .wpo-contact-widget:before {
  background: rgba(22, 57, 103, 0.9);
  content: "";
  height: 100%;
  left: 0;
  position: absolute;
  top: 0;
  width: 100%;
  z-index: -1;
}

@media (max-width: 1200px) {
  .blog-sidebar .wpo-contact-widget {
    padding: 20px;
  }
}

.blog-sidebar .wpo-contact-widget h2 {
  color: #fff;
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 20px;
  text-align: left;
}

.blog-sidebar .wpo-contact-widget p {
  color: #fff;
  font-size: 18px;
}

.blog-sidebar .wpo-contact-widget a {
  border: 1px solid #fff;
  color: #fff;
  display: inline-block;
  font-size: 18px;
  margin-top: 10px;
  padding: 10px 90px 10px 20px;
  position: relative;
}

.blog-sidebar .wpo-contact-widget a:before {
  content: "";
  font-family: themify;
  font-size: 18px;
  position: absolute;
  right: 15px;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}

@media screen and (min-width: 992px) {

  .wpo-blog-pg-section.blog-pg-left-sidebar .blog-sidebar,
  .wpo-blog-single-section.wpo-blog-single-left-sidebar-section .blog-sidebar {
    padding-left: 0;
    padding-right: 45px;
  }
}

@media (max-width: 991px) {
  .wpo-shop-sidebar {
    margin-top: 50px;
  }
}

.wpo-shop-sidebar .widget h3 {
  font-family: "Roboto", sans-serif;
  font-size: 18px;
  font-weight: 700;
  margin: 0 0 1.5em;
  position: relative;
  text-transform: none;
  text-transform: uppercase;
}

.wpo-shop-sidebar>.widget+.widget {
  margin-top: 65px;
}

.wpo-shop-sidebar .search-widget form div {
  position: relative;
}

.wpo-shop-sidebar .search-widget input {
  border: 1px solid #e4ebf2;
  font-size: 14px;
  height: 60px;
  padding: 10px;
  width: 100%;
}

.wpo-shop-sidebar .search-widget input:focus {
  border-color: #657150;
  outline: none;
}

.wpo-shop-sidebar .search-widget form button {
  background-color: #657150;
  border: 0;
  border-radius: 0;
  color: #fff;
  height: 60px;
  outline: 0;
  padding: 0;
  position: absolute;
  right: 0;
  top: 0;
  width: 60px;
}

.wpo-shop-sidebar .search-widget form button i {
  font-size: 18px;
}

.wpo-shop-sidebar .widget_price_filter .ui-corner-all,
.wpo-shop-sidebar .widget_price_filter .ui-corner-bottom,
.wpo-shop-sidebar .widget_price_filter .ui-corner-br,
.wpo-shop-sidebar .widget_price_filter .ui-corner-right {
  border-radius: 30px;
}

.wpo-shop-sidebar .widget_price_filter .filter-price {
  font-size: 14px;
  position: relative;
}

.wpo-shop-sidebar .widget_price_filter .filter-price input {
  border: 0;
  display: inline-block;
  padding: 0;
  position: absolute;
  width: auto;
}

.wpo-shop-sidebar .widget_price_filter .filter-price input:focus {
  border: 0;
  outline: none;
}

.wpo-shop-sidebar .widget_price_filter .filter-price button {
  background: transparent;
  border: 0;
  color: #657150;
  display: inline-block;
  font-size: 18px;
  font-weight: 500;
  letter-spacing: 0;
  outline: none;
  position: absolute;
  right: 0;
  text-decoration: underline;
  text-transform: uppercase;
  z-index: 9;
}

.wpo-shop-sidebar .widget_price_filter .filter-price button:active,
.wpo-shop-sidebar .widget_price_filter .filter-price button:focus,
.wpo-shop-sidebar .widget_price_filter .filter-price button:hover {
  text-decoration: underline;
}

.wpo-shop-sidebar .widget_price_filter .filter-price #amount {
  color: #000;
}

.wpo-shop-sidebar .widget_price_filter #slider-range {
  background: #e9e9e9;
  border: 0;
  border-radius: 50px;
  height: 3px;
  margin-bottom: 25px;
  margin-left: 8px;
  padding: 0;
}

.wpo-shop-sidebar .widget_price_filter .ui-state-default,
.wpo-shop-sidebar .widget_price_filter .ui-widget-content .ui-state-default,
.wpo-shop-sidebar .widget_price_filter .ui-widget-header .ui-state-default {
  background: #c8a898;
  border: none;
  height: 10px;
  top: -4px;
  width: 10px;
}

.wpo-shop-sidebar .widget_price_filter .ui-state-default:focus,
.wpo-shop-sidebar .widget_price_filter .ui-widget-content .ui-state-default:focus,
.wpo-shop-sidebar .widget_price_filter .ui-widget-header .ui-state-default:focus {
  outline: none;
}

.wpo-shop-sidebar .widget_price_filter .ui-widget-header {
  background: #c8a898;
}

.wpo-shop-sidebar .widget_product_categories,
.wpo-shop-sidebar .woocommerce-widget-layered-nav {
  font-family: "Roboto", sans-serif;
}

.wpo-shop-sidebar .widget_product_categories .product-categories a,
.wpo-shop-sidebar .widget_product_categories .woocommerce-widget-layered-nav-list a,
.wpo-shop-sidebar .woocommerce-widget-layered-nav .product-categories a,
.wpo-shop-sidebar .woocommerce-widget-layered-nav .woocommerce-widget-layered-nav-list a {
  color: #5c5c5c;
}

.wpo-shop-sidebar .widget_product_categories .product-categories,
.wpo-shop-sidebar .woocommerce-widget-layered-nav .product-categories {
  list-style: none;
}

.wpo-shop-sidebar .widget_product_categories .product-categories li,
.wpo-shop-sidebar .widget_product_categories .woocommerce-widget-layered-nav-list li,
.wpo-shop-sidebar .woocommerce-widget-layered-nav .product-categories li,
.wpo-shop-sidebar .woocommerce-widget-layered-nav .woocommerce-widget-layered-nav-list li {
  border-bottom: 1px solid #ebebeb;
  margin-top: 10px;
  padding-bottom: 10px;
  position: relative;
}

.wpo-shop-sidebar .widget_product_categories .product-categories li:first-child,
.wpo-shop-sidebar .widget_product_categories .woocommerce-widget-layered-nav-list li:first-child,
.wpo-shop-sidebar .woocommerce-widget-layered-nav .product-categories li:first-child,
.wpo-shop-sidebar .woocommerce-widget-layered-nav .woocommerce-widget-layered-nav-list li:first-child {
  margin-top: 0;
}

.wpo-shop-sidebar .widget_product_categories .product-categories li:last-child,
.wpo-shop-sidebar .widget_product_categories .woocommerce-widget-layered-nav-list li:last-child,
.wpo-shop-sidebar .woocommerce-widget-layered-nav .product-categories li:last-child,
.wpo-shop-sidebar .woocommerce-widget-layered-nav .woocommerce-widget-layered-nav-list li:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}

.wpo-shop-sidebar .widget_product_categories .product-categories li a,
.wpo-shop-sidebar .widget_product_categories .woocommerce-widget-layered-nav-list li a,
.wpo-shop-sidebar .woocommerce-widget-layered-nav .product-categories li a,
.wpo-shop-sidebar .woocommerce-widget-layered-nav .woocommerce-widget-layered-nav-list li a {
  font-size: 16px;
  font-weight: 500;
  position: relative;
}

.wpo-shop-sidebar .widget_product_categories .product-categories li a:hover,
.wpo-shop-sidebar .widget_product_categories .woocommerce-widget-layered-nav-list li a:hover,
.wpo-shop-sidebar .woocommerce-widget-layered-nav .product-categories li a:hover,
.wpo-shop-sidebar .woocommerce-widget-layered-nav .woocommerce-widget-layered-nav-list li a:hover {
  color: #000;
  text-decoration: underline;
}

.wpo-shop-sidebar .widget_product_categories .product-categories li a:hover:before,
.wpo-shop-sidebar .widget_product_categories .woocommerce-widget-layered-nav-list li a:hover:before,
.wpo-shop-sidebar .woocommerce-widget-layered-nav .product-categories li a:hover:before,
.wpo-shop-sidebar .woocommerce-widget-layered-nav .woocommerce-widget-layered-nav-list li a:hover:before {
  border-color: #000;
}

.widget_best-seller .wpo-best-seller-item {
  align-items: center;
  display: flex;
  margin-bottom: 20px;
}

.widget_best-seller .wpo-best-seller-item:last-child {
  margin-bottom: 0;
}

.widget_best-seller .wpo-best-seller-item .wpo-best-seller-text {
  margin-left: 20px;
}

.widget_best-seller .wpo-best-seller-item .wpo-best-seller-text h4 {
  color: #5c5c5c;
  font-family: "Roboto", sans-serif;
  font-size: 18px;
  font-weight: 600;
}

.widget_best-seller .wpo-best-seller-item .wpo-best-seller-text span {
  color: #8d8d8d;
  font-size: 16px;
}

.wpo-instagram-widget ul {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
}

.wpo-instagram-widget ul li {
  flex: 0 0 50%;
  margin-bottom: 5px;
  max-width: 50%;
  padding: 0 3px;
}

.wpo-instagram-widget ul li img {
  width: 100%;
}

.pagination-wrapper {
  margin-top: 60px;
  text-align: center;
}

@media (max-width: 991px) {
  .pagination-wrapper {
    margin-top: 40px;
    text-align: left;
  }
}

.pagination-wrapper .pg-pagination {
  display: inline-block;
  list-style-type: none;
  overflow: hidden;
  text-align: center;
}

.pagination-wrapper .pg-pagination li {
  float: left;
  margin-right: 10px;
}

@media (max-width: 767px) {
  .pagination-wrapper .pg-pagination li {
    margin-right: 5px;
  }
}

.pagination-wrapper .pg-pagination li:last-child {
  margin-right: 0;
}

.pagination-wrapper .pg-pagination li a {
  background-color: transparent;
  background: #f9f7f6;
  color: #101010;
  display: block;
  font-size: 16px;
  font-weight: 600;
  height: 50px;
  line-height: 50px;
  width: 50px;
}

@media (max-width: 991px) {
  .pagination-wrapper .pg-pagination li a {
    font-size: 15px;
    height: 40px;
    line-height: 40px;
    width: 40px;
  }
}

.pagination-wrapper .pg-pagination .active a,
.pagination-wrapper .pg-pagination li a:hover {
  background: #657150;
  border-color: #657150;
  color: #fff;
}

.pagination-wrapper .pg-pagination .fi:before {
  font-size: 15px;
}

.pagination-wrapper-left {
  text-align: left;
}

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

@media screen and (min-width: 1200px) {
  .pagination-wrapper-right {
    padding-right: 50px;
  }
}

@media (max-width: 991px) {
  .pagination-wrapper-right {
    margin-top: 45px;
    text-align: left;
  }
}

.wpo-site-footer,
.wpo-site-footer-s2 {
  background: #a5aa9c;
  font-size: 15px;
  overflow: hidden;
  position: relative;
  z-index: 1;
}

@media (min-width: 1400px) {

  .wpo-site-footer .container,
  .wpo-site-footer-s2 .container {
    max-width: 1220px;
  }
}

.wpo-site-footer ul,
.wpo-site-footer-s2 ul {
  list-style: none;
}

.wpo-site-footer li,
.wpo-site-footer p,
.wpo-site-footer-s2 li,
.wpo-site-footer-s2 p {
  color: #fff;
}

.wpo-site-footer .container,
.wpo-site-footer-s2 .container {
  position: relative;
}

.wpo-site-footer .wpo-upper-footer,
.wpo-site-footer-s2 .wpo-upper-footer {
  padding: 120px 0;
  position: relative;
  z-index: 1;
}

@media (max-width: 991px) {

  .wpo-site-footer .wpo-upper-footer,
  .wpo-site-footer-s2 .wpo-upper-footer {
    padding: 80px 0 0;
  }
}

@media (max-width: 767px) {

  .wpo-site-footer .wpo-upper-footer,
  .wpo-site-footer-s2 .wpo-upper-footer {
    padding: 40px 0 0;
  }
}

@media (max-width: 991px) {

  .wpo-site-footer .wpo-upper-footer .col,
  .wpo-site-footer-s2 .wpo-upper-footer .col {
    margin-bottom: 70px;
    min-height: 235px;
  }
}

@media (max-width: 767px) {

  .wpo-site-footer .wpo-upper-footer .col,
  .wpo-site-footer-s2 .wpo-upper-footer .col {
    margin-bottom: 60px;
    min-height: auto;
  }

  .wpo-site-footer .wpo-upper-footer .col:last-child,
  .wpo-site-footer-s2 .wpo-upper-footer .col:last-child {
    margin-bottom: 30px;
  }
}

.wpo-site-footer .widget-title,
.wpo-site-footer-s2 .widget-title {
  margin-bottom: 30px;
}

@media (max-width: 767px) {

  .wpo-site-footer .widget-title,
  .wpo-site-footer-s2 .widget-title {
    margin-bottom: 20px;
  }
}

.wpo-site-footer .widget-title h3,
.wpo-site-footer-s2 .widget-title h3 {
  color: #fff;
  font-family: "MonteCarlo", cursive;
  font-size: 30px;
  font-weight: 400;
  line-height: 37px;
  margin: 0;
  position: relative;
}

@media (max-width: 991px) {

  .wpo-site-footer .widget-title h3,
  .wpo-site-footer-s2 .widget-title h3 {
    font-size: 30px;
  }
}

.wpo-site-footer .about-widget,
.wpo-site-footer-s2 .about-widget {
  text-align: center;
}

.wpo-site-footer .about-widget .logo,
.wpo-site-footer-s2 .about-widget .logo {
  color: #fff;
  font-family: "MonteCarlo", cursive;
  font-size: 35px;
  line-height: 40px;
}

@media (max-width: 991px) {

  .wpo-site-footer .about-widget .logo,
  .wpo-site-footer-s2 .about-widget .logo {
    font-size: 40px;
  }
}

.wpo-site-footer .about-widget .logo img,
.wpo-site-footer-s2 .about-widget .logo img {
  max-width: 170px;
}

.wpo-site-footer .about-widget .logo span,
.wpo-site-footer-s2 .about-widget .logo span {
  position: relative;
}

.wpo-site-footer .about-widget .logo span i,
.wpo-site-footer-s2 .about-widget .logo span i {
  font-size: 13px;
  left: 1px;
  position: absolute;
  top: 3px;
}

.wpo-site-footer .about-widget,
.wpo-site-footer-s2 .about-widget {
  margin: 0 auto;
  max-width: 400px;
}

.wpo-site-footer .about-widget p,
.wpo-site-footer-s2 .about-widget p {
  line-height: 1.9em;
  margin-bottom: 0.8em;
}

.wpo-site-footer .about-widget p:last-child,
.wpo-site-footer-s2 .about-widget p:last-child {
  margin-bottom: 0;
}

.wpo-site-footer .about-widget ul,
.wpo-site-footer-s2 .about-widget ul {
  display: flex;
  justify-content: center;
  overflow: hidden;
  padding-top: 10px;
}

.wpo-site-footer .about-widget ul li,
.wpo-site-footer-s2 .about-widget ul li {
  float: left;
  font-size: 22px;
}

.wpo-site-footer .about-widget ul li a,
.wpo-site-footer-s2 .about-widget ul li a {
  background: #fff;
  border-radius: 50%;
  color: #c8a898;
  display: block;
  font-size: 18px;
  height: 45px;
  line-height: 49px;
  text-align: center;
  transition: all 0.3s;
  width: 45px;
}

.wpo-site-footer .about-widget ul li a:hover,
.wpo-site-footer-s2 .about-widget ul li a:hover {
  background: #657150;
  color: #fff;
}

.wpo-site-footer .about-widget ul li+li,
.wpo-site-footer-s2 .about-widget ul li+li {
  margin-left: 25px;
}

@media screen and (max-width: 1600px) {

  .wpo-site-footer .about-widget ul li+li,
  .wpo-site-footer-s2 .about-widget ul li+li {
    margin-left: 10px;
  }
}

.wpo-site-footer .link-widget,
.wpo-site-footer-s2 .link-widget {
  overflow: hidden;
}

@media (max-width: 767px) {

  .wpo-site-footer .link-widget,
  .wpo-site-footer-s2 .link-widget {
    text-align: center;
  }
}

.wpo-site-footer .link-widget .link-wrap,
.wpo-site-footer-s2 .link-widget .link-wrap {
  display: flex;
}

@media (max-width: 767px) {

  .wpo-site-footer .link-widget .link-wrap,
  .wpo-site-footer-s2 .link-widget .link-wrap {
    justify-content: center;
  }
}

.wpo-site-footer .link-widget .link-wrap ul+ul,
.wpo-site-footer-s2 .link-widget .link-wrap ul+ul {
  margin-left: 50px;
}

.wpo-site-footer .link-widget ul li,
.wpo-site-footer-s2 .link-widget ul li {
  position: relative;
}

.wpo-site-footer .link-widget ul li a,
.wpo-site-footer-s2 .link-widget ul li a {
  color: #fff;
  font-size: 18px;
}

.wpo-site-footer .link-widget ul li a:hover,
.wpo-site-footer-s2 .link-widget ul li a:hover {
  text-decoration: underline;
}

.wpo-site-footer .link-widget ul li+li,
.wpo-site-footer-s2 .link-widget ul li+li {
  padding-top: 15px;
}

.wpo-site-footer .wpo-service-link-widget,
.wpo-site-footer-s2 .wpo-service-link-widget {
  text-align: center;
}

@media (max-width: 991px) {

  .wpo-site-footer .wpo-service-link-widget,
  .wpo-site-footer-s2 .wpo-service-link-widget {
    text-align: left;
  }
}

@media (max-width: 767px) {

  .wpo-site-footer .wpo-service-link-widget,
  .wpo-site-footer-s2 .wpo-service-link-widget {
    text-align: center;
  }
}

.wpo-site-footer .contact-ft,
.wpo-site-footer-s2 .contact-ft {
  margin-top: 20px;
}

@media (max-width: 1500px) {

  .wpo-site-footer .contact-ft,
  .wpo-site-footer-s2 .contact-ft {
    padding-right: 0;
  }
}

.wpo-site-footer .contact-ft ul li,
.wpo-site-footer-s2 .contact-ft ul li {
  color: #657150;
  font-size: 16px;
  padding-bottom: 15px;
  padding-left: 35px;
  position: relative;
}

.wpo-site-footer .contact-ft ul li i,
.wpo-site-footer-s2 .contact-ft ul li i {
  left: 0;
  position: absolute;
  top: 0;
}

.wpo-site-footer .contact-ft ul li .fi:before,
.wpo-site-footer-s2 .contact-ft ul li .fi:before {
  font-size: 20px;
  margin-right: 15px;
}

.wpo-site-footer .wpo-lower-footer,
.wpo-site-footer-s2 .wpo-lower-footer {
  background: #a5aa9c;
  position: relative;
  text-align: center;
  z-index: -1;
}

.wpo-site-footer .wpo-lower-footer .row,
.wpo-site-footer-s2 .wpo-lower-footer .row {
  padding: 0 0 20px;
  position: relative;
}

.wpo-site-footer .wpo-lower-footer .copyright,
.wpo-site-footer-s2 .wpo-lower-footer .copyright {
  color: #fff;
  display: inline-block;
  font-size: 18px;
  margin: 0;
}

.wpo-site-footer .wpo-lower-footer .copyright a,
.wpo-site-footer-s2 .wpo-lower-footer .copyright a {
  color: #fff;
  text-decoration: none;
}

@media (max-width: 991px) {

  .wpo-site-footer .wpo-lower-footer .copyright,
  .wpo-site-footer-s2 .wpo-lower-footer .copyright {
    display: block;
    float: none;
  }
}

.wpo-site-footer .ft-shape-1,
.wpo-site-footer-s2 .ft-shape-1 {
  bottom: 0;
  left: 0;
  position: absolute;
  z-index: -1;
}

@media (max-width: 1600px) {

  .wpo-site-footer .ft-shape-1 img,
  .wpo-site-footer-s2 .ft-shape-1 img {
    max-width: 130px;
  }
}

@media (max-width: 991px) {

  .wpo-site-footer .ft-shape-1,
  .wpo-site-footer-s2 .ft-shape-1 {
    display: none;
  }
}

.wpo-site-footer .ft-shape-2,
.wpo-site-footer-s2 .ft-shape-2 {
  position: absolute;
  right: 0;
  top: 0;
  z-index: -1;
}

@media (max-width: 1600px) {

  .wpo-site-footer .ft-shape-2 img,
  .wpo-site-footer-s2 .ft-shape-2 img {
    max-width: 130px;
  }
}

@media (max-width: 991px) {

  .wpo-site-footer .ft-shape-2,
  .wpo-site-footer-s2 .ft-shape-2 {
    display: none;
  }
}

.wpo-site-footer-s2,
.wpo-site-footer-s2 .wpo-lower-footer {
  background: #2d2420;
}

.sticky-header {
  left: 0;
  opacity: 0;
  position: fixed;
  top: -200px;
  transition: all 0.7s;
  width: 100%;
  z-index: 9999;
}

.sticky-on {
  opacity: 1;
  top: 0;
}

.preview-hero {
  background-size: cover !important;
  height: 100vh;
  margin-bottom: 100px;
  min-height: 1020px;
  padding-top: 35px;
}

@media (max-width: 1440px) {
  .preview-hero {
    margin-bottom: 60px;
    min-height: 800px;
  }
}

@media (max-width: 991px) {
  .preview-hero {
    height: 100%;
    margin-bottom: 0;
    min-height: 100%;
  }
}

@media (max-width: 575px) {
  .preview-hero {
    padding: 50px 0;
  }
}

@media (max-width: 991px) {
  .preview-hero .preview-hero-items {
    display: none;
  }

  .preview-hero .preview-hero-items .preview-hero-item {
    text-align: center;
  }
}

.preview-hero .preview-hero-items .preview-hero-item img {
  border-radius: 10px;
  box-shadow: 0 2px 8px 0 rgba(0, 0, 0, 0.1);
}

.preview-hero .preview-hero-items.s1 .preview-hero-item:nth-child(2) {
  position: relative;
  right: -160px;
}

@media (max-width: 1440px) {
  .preview-hero .preview-hero-items.s1 .preview-hero-item:nth-child(2) {
    right: -120px;
  }
}

@media (max-width: 1199px) {
  .preview-hero .preview-hero-items.s1 .preview-hero-item:nth-child(2) {
    right: -60px;
  }
}

.preview-hero .preview-hero-items.s1 .preview-hero-item:nth-child(3) {
  position: relative;
  right: -30px;
}

@media (max-width: 1199px) {
  .preview-hero .preview-hero-items.s1 .preview-hero-item:nth-child(3) {
    right: -10px;
  }
}

.preview-hero .preview-hero-items.s2 {
  text-align: right;
}

.preview-hero .preview-hero-items.s2 .preview-hero-item:nth-child(2) {
  left: -160px;
  position: relative;
}

@media (max-width: 1440px) {
  .preview-hero .preview-hero-items.s2 .preview-hero-item:nth-child(2) {
    left: -120px;
  }
}

@media (max-width: 1199px) {
  .preview-hero .preview-hero-items.s2 .preview-hero-item:nth-child(2) {
    left: -60px;
  }
}

.preview-hero .preview-hero-items.s2 .preview-hero-item:nth-child(3) {
  left: -30px;
  position: relative;
}

@media (max-width: 1199px) {
  .preview-hero .preview-hero-items.s2 .preview-hero-item:nth-child(3) {
    left: -10px;
  }
}

.preview-hero .preview-middle-items .preview-middle-text {
  margin: 0 auto;
  max-width: 780px;
  padding: 0 50px;
  position: relative;
  text-align: center;
  z-index: 1;
}

@media (max-width: 991px) {
  .preview-hero .preview-middle-items .preview-middle-text {
    max-width: 600px;
  }
}

@media (max-width: 575px) {
  .preview-hero .preview-middle-items .preview-middle-text {
    padding: 0;
  }
}

.preview-hero .preview-middle-items .preview-middle-text .scrool {
  display: block;
  margin: 20px auto 0;
  max-width: 40px;
}

.preview-hero .preview-middle-items .preview-middle-text:before {
  background: #fff;
  border-radius: 50%;
  content: "";
  height: 780px;
  left: 0;
  position: absolute;
  top: -165%;
  width: 100%;
  z-index: -1;
}

@media (max-width: 1440px) {
  .preview-hero .preview-middle-items .preview-middle-text:before {
    display: none;
  }
}

.preview-hero .preview-middle-items .preview-middle-text .flower-1 {
  -webkit-animation: zoom-in-zoom-out 2s ease infinite;
  animation: zoom-in-zoom-out 2s ease infinite;
  left: 25px;
  position: absolute;
  top: 20%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}

@media (max-width: 1440px) {
  .preview-hero .preview-middle-items .preview-middle-text .flower-1 {
    left: 0;
  }
}

@media (max-width: 575px) {
  .preview-hero .preview-middle-items .preview-middle-text .flower-1 {
    display: none;
  }
}

.preview-hero .preview-middle-items .preview-middle-text .flower-2 {
  -webkit-animation: zoom-in-zoom-out 2s ease infinite;
  animation: zoom-in-zoom-out 2s ease infinite;
  position: absolute;
  right: 20px;
  top: 22%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}

@media (max-width: 1440px) {
  .preview-hero .preview-middle-items .preview-middle-text .flower-2 {
    right: 0;
  }
}

@media (max-width: 575px) {
  .preview-hero .preview-middle-items .preview-middle-text .flower-2 {
    display: none;
  }
}

.preview-hero .preview-middle-items .preview-middle-text span {
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  letter-spacing: 5.4px;
  line-height: normal;
  text-transform: uppercase;
}

@media (max-width: 1199px) {
  .preview-hero .preview-middle-items .preview-middle-text span {
    font-size: 14px;
  }
}

.preview-hero .preview-middle-items .preview-middle-text h2 {
  font-size: 65px;
  font-style: normal;
  font-weight: 400;
  line-height: 50px;
  margin-top: 20px;
}

@media (max-width: 1440px) {
  .preview-hero .preview-middle-items .preview-middle-text h2 {
    font-size: 55px;
  }
}

@media (max-width: 1199px) {
  .preview-hero .preview-middle-items .preview-middle-text h2 {
    font-size: 45px;
    margin-top: 10px;
  }
}

@media (max-width: 575px) {
  .preview-hero .preview-middle-items .preview-middle-text h2 {
    font-size: 35px;
  }
}

.preview-hero .preview-middle-items .preview-middle-text h4 {
  font-size: 35px;
  font-style: normal;
  font-weight: 400;
  line-height: 50px;
  margin-bottom: 35px;
}

@media (max-width: 1440px) {
  .preview-hero .preview-middle-items .preview-middle-text h4 {
    font-size: 25px;
    line-height: 30px;
    margin-bottom: 20px;
  }
}

@media (max-width: 575px) {
  .preview-hero .preview-middle-items .preview-middle-text h4 {
    font-size: 20px;
  }
}

.preview-hero .preview-middle-items .preview-middle-img-wrap {
  margin: 160px auto 0;
  max-width: 570px;
  position: relative;
  z-index: 11;
}

@media (max-width: 1440px) {
  .preview-hero .preview-middle-items .preview-middle-img-wrap {
    margin-top: 100px;
  }
}

@media (max-width: 1199px) {
  .preview-hero .preview-middle-items .preview-middle-img-wrap {
    font-size: 45px;
    margin-top: 70px;
    max-width: 450px;
  }
}

@media (max-width: 575px) {
  .preview-hero .preview-middle-items .preview-middle-img-wrap {
    margin-top: 50px;
    max-width: 290px;
  }
}

.preview-hero .preview-middle-items .preview-middle-img-wrap .preview-middle-img {
  position: relative;
  text-align: center;
  z-index: 1;
}

.preview-hero .preview-middle-items .preview-middle-img-wrap .preview-middle-img:before {
  background: #eef4f6;
  border-radius: 50%;
  content: "";
  height: 330px;
  left: 50%;
  position: absolute;
  top: 0;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  width: 330px;
  z-index: -1;
}

@media (max-width: 1199px) {
  .preview-hero .preview-middle-items .preview-middle-img-wrap .preview-middle-img:before {
    height: 300px;
    width: 300px;
  }
}

.preview-hero .preview-middle-items .preview-middle-img-wrap .preview-middle-img .f-shape {
  -webkit-animation: circle2 60s linear infinite;
  animation: circle2 60s linear infinite;
  left: 0;
  position: absolute;
  top: -120px;
  z-index: -1;
}

@media (max-width: 1199px) {
  .preview-hero .preview-middle-items .preview-middle-img-wrap .preview-middle-img .f-shape {
    top: -80px;
  }
}

@media (max-width: 575px) {
  .preview-hero .preview-middle-items .preview-middle-img-wrap .preview-middle-img .f-shape {
    left: -50px;
    min-width: 400px;
    top: -54px;
  }
}

.preview-section-title {
  margin: 0 auto 60px;
  max-width: 707px;
  text-align: center;
}

.preview-section-title h2 {
  color: #101010;
  display: inline-block;
  font-family: "MonteCarlo", cursive;
  font-size: 50px;
  font-weight: 400;
  margin: 10px 0 20px;
  position: relative;
}

@media (max-width: 767px) {
  .preview-section-title h2 {
    font-size: 32px;
    line-height: 40px;
  }
}

@media (max-width: 575px) {
  .preview-section-title h2 {
    font-size: 25px;
    margin-top: 0;
  }
}

.preview-section-title p {
  font-size: 18px;
}

.preview-section-title i {
  display: block;
}

.wpo-demo-section {
  padding: 100px 0 10px;
}

#demo {
  padding-top: 0;
}

@media (max-width: 767px) {
  #demo .wpo-demo-section {
    padding-top: 50px;
  }
}

@media (max-width: 991px) {
  .wpo-demo-section {
    padding: 0 0 20px;
  }

  .preview-upper-footer h2 {
    width: 90%;
  }
}

@media (max-width: 767px) {
  .wpo-demo-section {
    padding: 20px 0 0;
  }
}

@media screen and (min-width: 992px) {

  .wpo-demo-section .container-fluid,
  .wpo-inner-demo-section .container-fluid {
    padding: 0 100px;
  }
}

.wpo-demo-section .wpo-demo-grids {
  margin: 0 -15px;
  text-align: center;
  font-family: "MonteCarlo", cursive;
  font-size: 25px;
}

.grid a {
  color: rgb(255, 255, 255) !important;
}

@media (max-width: 991px) {
  .wpo-demo-section .wpo-demo-grids {
    margin: 0 -15px;
  }
}

.wpo-demo-section .wpo-demo-grids .grid {
  float: left;
  margin: 0 30px 100px;
  width: calc(100% / 4 - 60px);
}

@media (max-width: 1399px) {
  .wpo-demo-section .wpo-demo-grids .grid {
    width: calc(100% / 4 - 60px);
  }
}

@media (max-width: 1199px) {
  .wpo-demo-section .wpo-demo-grids .grid {
    margin: 0 15px 80px;
    width: calc(100% / 3 - 30px);
  }
}

@media (max-width: 767px) {
  .wpo-demo-section .wpo-demo-grids .grid {
    margin: 0 15px 60px;
    width: calc(100% / 2 - 30px);
  }
}

@media (max-width: 600px) {
  .wpo-demo-section .wpo-demo-grids .grid {
    float: none;
    margin: 0 15px 60px;
    width: calc(100% - 30px);
  }
}

.wpo-demo-section .wpo-demo-grids .inner {
  max-height: 530px;
  overflow: hidden;
}

.wpo-demo-section .wpo-demo-grids .inner,
.wpo-demo-section .wpo-demo-grids .inner-s2 {
  margin-bottom: 35px;
  border-radius: 5px;
  box-shadow: 1px 2px 5px #ccc;
}

.wpo-demo-section .wpo-demo-grids .inner-s img {
  width: 100%;
}

.wpo-demo-section .wpo-demo-grids .coming-inner img {
  max-height: 560px;
}

.wpo-demo-section .wpo-demo-grids .inner img {
  width: 100%;
}

.wpo-demo-section .wpo-demo-grids .grid:hover .inner img {
  transition: all 20s;
  -webkit-transform: translateY(calc(-100% + 560px));
}

.wpo-demo-section .wpo-demo-grids h3 {
  color: #101010;
  font-family: "MonteCarlo", cursive;
  font-size: 26px;
  margin: 0;
}

@media (max-width: 991px) {
  .wpo-demo-section .wpo-demo-grids h3 {
    font-size: 16px;
  }
}

.wpo-inner-demo-section .owl-stage-outer {
  padding: 20px;
}

.wpo-inner-demo-section .wpo-inner-demo-grids {
  text-align: center;
}

.wpo-inner-demo-section .wpo-inner-demo-grids .inner {
  box-shadow: 0 1px 31.92px 6.08px hsla(214, 9%, 56%, 0.09);
  box-shadow: 0 1px 7.5px 2.5px rgba(5, 2, 52, 0.05);
  margin-bottom: 35px;
  max-height: 655px;
  overflow: hidden;
}

@media (max-width: 1700px) {
  .wpo-inner-demo-section .wpo-inner-demo-grids .inner {
    max-height: 555px;
  }
}

.wpo-inner-demo-section .wpo-inner-demo-grids .owl-item.center .grid .wpo-service-item .wpo-service-text .service-icon {
  background: #657150;
  color: #fff;
}

.wpo-inner-demo-section .wpo-inner-demo-grids .owl-controls {
  left: 0;
  margin: 0;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  width: 100%;
}

.wpo-inner-demo-section .wpo-inner-demo-grids .owl-nav [class*="owl-"] {
  background: none;
  border: 0;
  color: #657150;
  margin: 0;
  padding: 0;
  transition: all 0.3s;
}

.wpo-inner-demo-section .wpo-inner-demo-grids .owl-nav [class*="owl-"] .fi:before {
  color: #657150;
  font-size: 12px;
}

.wpo-inner-demo-section .wpo-inner-demo-grids .owl-nav .owl-next,
.wpo-inner-demo-section .wpo-inner-demo-grids .owl-nav .owl-prev {
  background: #fff;
  border: 1px solid #657150;
  border-radius: 50%;
  height: 50px;
  opacity: 0;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  transition: all 0.3s;
  width: 50px;
}

.wpo-inner-demo-section .wpo-inner-demo-grids .owl-nav .owl-next:hover,
.wpo-inner-demo-section .wpo-inner-demo-grids .owl-nav .owl-prev:hover {
  background: #657150;
  border-color: #657150;
}

.wpo-inner-demo-section .wpo-inner-demo-grids .owl-nav .owl-next:hover .fi:before,
.wpo-inner-demo-section .wpo-inner-demo-grids .owl-nav .owl-prev:hover .fi:before {
  color: #fff;
}

@media (max-width: 575px) {

  .wpo-inner-demo-section .wpo-inner-demo-grids .owl-nav .owl-next,
  .wpo-inner-demo-section .wpo-inner-demo-grids .owl-nav .owl-prev {
    display: none;
  }
}

.wpo-inner-demo-section .wpo-inner-demo-grids .owl-nav .owl-prev {
  left: -10px;
}

.wpo-inner-demo-section .wpo-inner-demo-grids .owl-nav .owl-next {
  right: -10px;
}

.wpo-inner-demo-section .wpo-inner-demo-grids .owl-dots {
  bottom: -20px;
  position: relative;
  text-align: center;
}

.wpo-inner-demo-section .wpo-inner-demo-grids .owl-dots button {
  background: #d4e6f5;
  border: 0;
  border-radius: 50%;
  height: 12px;
  margin-right: 10px;
  width: 10px;
}

.wpo-inner-demo-section .wpo-inner-demo-grids .owl-dots .owl-dot.active {
  background-color: #657150;
}

.wpo-inner-demo-section .wpo-inner-demo-grids:hover .owl-nav .owl-next,
.wpo-inner-demo-section .wpo-inner-demo-grids:hover .owl-nav .owl-prev {
  opacity: 1;
}

.wpo-inner-demo-section .wpo-inner-demo-grids .inner img {
  transition: all 3s;
}

.wpo-inner-demo-section .wpo-inner-demo-grids .grid:hover .inner img {
  -webkit-transform: translateY(calc(-100% + 685px));
}

@media (max-width: 1700px) {
  .wpo-inner-demo-section .wpo-inner-demo-grids .grid:hover .inner img {
    -webkit-transform: translateY(calc(-100% + 585px));
  }
}

.wpo-inner-demo-section .wpo-inner-demo-grids h3 {
  font-size: 20px;
  font-weight: 700 !important;
  margin: 0;
}

@media (max-width: 991px) {
  .wpo-inner-demo-section .wpo-inner-demo-grids h3 {
    font-size: 16px;
  }
}

.wpo-inner-demo-section .wpo-demo-active .slick-slide {
  padding: 0 10px;
}

.wpo-demo-section .wpo-demo-grids .coming-soon .inner {
  position: relative;
}

.wpo-demo-section .wpo-demo-grids .coming-soon .inner .coming {
  align-items: center;
  -webkit-backdrop-filter: blur(3px);
  backdrop-filter: blur(3px);
  background: hsla(0, 0%, 100%, 0.5);
  display: flex;
  flex-direction: column;
  height: 100%;
  justify-content: center;
  left: 0;
  position: absolute;
  top: 0;
  width: 100%;
}

.wpo-demo-section .wpo-demo-grids .coming-soon .inner .coming h5 {
  background: rgba(0, 0, 0, 0.8);
  border: 10px solid #747272;
  border-radius: 120px;
  color: #fff;
  display: inline-block;
  font-family: "MonteCarlo", cursive;
  font-size: 50px;
  font-weight: 400;
  padding: 10px 30px;
  position: relative;
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
}

@media (max-width: 1600px) {
  .wpo-demo-section .wpo-demo-grids .coming-soon .inner .coming h5 {
    font-size: 38px;
  }
}

@media (max-width: 1200px) {
  .wpo-demo-section .wpo-demo-grids .coming-soon .inner .coming h5 {
    font-size: 35px;
  }
}

#demo2 {
  background: #fcfcfa;
}

.preview-banner {
  padding-left: 50px;
  padding-right: 50px;
}

@media (max-width: 1399px) {
  .preview-banner {
    padding-left: 30px;
    padding-right: 30px;
  }
}

@media (max-width: 991px) {
  .preview-banner {
    padding-left: 0;
    padding-right: 0;
  }
}

.preview-banner .wpo-offer-wrap {
  padding: 160px 0 160px 120px;
  position: relative;
  z-index: 1;
}

@media (max-width: 1199px) {
  .preview-banner .wpo-offer-wrap {
    padding: 100px 0;
  }
}

@media (max-width: 991px) {
  .preview-banner .wpo-offer-wrap {
    padding: 80px 15px;
  }
}

@media (max-width: 575px) {
  .preview-banner .wpo-offer-wrap {
    padding: 30px 10px;
  }
}

.preview-banner .wpo-offer-wrap .left-img {
  height: 100%;
  left: 0;
  position: absolute;
  top: 0;
  width: 80%;
  z-index: -1;
}

@media (max-width: 991px) {
  .preview-banner .wpo-offer-wrap .left-img {
    width: 100%;
  }
}

.preview-banner .wpo-offer-item {
  background: #fff;
  box-shadow: 0 2px 8px 0 rgba(0, 0, 0, 0.1);
  margin-left: auto;
  max-width: 800px;
  padding: 30px;
  text-align: center;
}

@media (max-width: 991px) {
  .preview-banner .wpo-offer-item {
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    background: linear-gradient(140deg,
        hsla(0, 0%, 100%, 0.36),
        hsla(0, 0%, 100%, 0.18));
    margin: auto;
  }
}

@media (max-width: 767px) {
  .preview-banner .wpo-offer-item {
    padding: 15px;
  }
}

.preview-banner .wpo-offer-item .wpo-offer-inner {
  border: 1px solid #a5aa9c;
  padding: 80px 75px;
}

@media (max-width: 767px) {
  .preview-banner .wpo-offer-item .wpo-offer-inner {
    padding: 40px 35px;
  }
}

@media (max-width: 575px) {
  .preview-banner .wpo-offer-item .wpo-offer-inner {
    padding: 20px 15px;
  }
}

.preview-banner .wpo-offer-item .wpo-offer-inner h2 {
  font-size: 40px;
  font-style: normal;
  font-weight: 400;
  margin-bottom: 30px;
}

@media (max-width: 575px) {
  .preview-banner .wpo-offer-item .wpo-offer-inner h2 {
    font-size: 25px;
    margin-bottom: 20px;
  }

  .preview-banner .wpo-offer-item .wpo-offer-inner p {
    font-size: 16px;
  }
}

.preview-banner .wpo-offer-item .wpo-offer-inner ul {
  display: flex;
  justify-content: center;
  list-style: none;
  margin-top: 40px;
}

@media (max-width: 575px) {
  .preview-banner .wpo-offer-item .wpo-offer-inner ul {
    margin-top: 20px;
  }
}

.preview-banner .wpo-offer-item .wpo-offer-inner ul li {
  color: #a9a9a9;
  font-size: 25px;
  font-style: normal;
  font-weight: 400;
  padding: 12px 38px;
}

@media (max-width: 575px) {
  .preview-banner .wpo-offer-item .wpo-offer-inner ul li {
    font-size: 16px;
    padding: 8px 25px;
  }
}

.preview-banner .wpo-offer-item .wpo-offer-inner ul li:last-child {
  border: 1px solid #a5aa9c;
  color: #657150;
}

.preview-banner .wpo-offer-wrap .left-img {
  width: 100%;
}

.preview-banner .wpo-offer-wrap .wpo-offer-items {
  background: linear-gradient(140deg,
      hsla(0, 0%, 100%, 0.6),
      hsla(0, 0%, 100%, 0.3));
  border: 1px solid #fff;
  margin: 0;
  max-width: 1100px;
  padding: 30px;
}

@media (max-width: 1300px) {
  .preview-banner .wpo-offer-wrap .wpo-offer-items {
    max-width: 1000px;
  }
}

@media (max-width: 1199px) {
  .preview-banner .wpo-offer-wrap .wpo-offer-items {
    max-width: 900px;
  }
}

@media (max-width: 575px) {
  .preview-banner .wpo-offer-wrap .wpo-offer-items {
    padding: 10px;
  }
}

@media (max-width: 450px) {
  .preview-banner .wpo-offer-wrap .wpo-offer-items {
    padding: 10px;
  }
}

.preview-banner .wpo-offer-wrap .wpo-offer-items .frame-shape-1 {
  left: 50%;
  min-width: 558px;
  position: absolute;
  top: -75px;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
}

@media (max-width: 991px) {
  .preview-banner .wpo-offer-wrap .wpo-offer-items .frame-shape-1 {
    min-width: 300px;
    top: -36px;
  }
}

@media (max-width: 350px) {
  .preview-banner .wpo-offer-wrap .wpo-offer-items .frame-shape-1 {
    min-width: 240px;
    top: -36px;
  }
}

.preview-banner .wpo-offer-wrap .wpo-offer-item {
  -webkit-backdrop-filter: unset;
  backdrop-filter: unset;
  background-size: contain;
  background: none;
  border: 1px solid #fff;
  display: flex;
  flex-direction: column;
  justify-content: center;
  margin: 0 auto;
  max-width: 100%;
  padding: 80px 70px;
  position: relative;
  text-align: left;
}

@media (max-width: 1199px) {
  .preview-banner .wpo-offer-wrap .wpo-offer-item {
    padding: 80px 40px;
  }
}

@media (max-width: 991px) {
  .preview-banner .wpo-offer-wrap .wpo-offer-item {
    padding: 40px;
  }
}

@media (max-width: 575px) {
  .preview-banner .wpo-offer-wrap .wpo-offer-item {
    padding: 50px 10px;
  }
}

@media (max-width: 450px) {
  .preview-banner .wpo-offer-wrap .wpo-offer-item {
    padding: 50px 10px;
  }
}

@media (max-width: 500px) {
  .preview-banner .wpo-offer-wrap .wpo-offer-item {
    background: none;
    width: 100%;
  }
}

.preview-banner .wpo-offer-wrap .wpo-offer-item .wpo-offer-left {
  border-bottom: 2px solid #d9d9d9;
  max-width: 392px;
  padding-bottom: 30px;
  position: relative;
}

@media (max-width: 991px) {
  .preview-banner .wpo-offer-wrap .wpo-offer-item .wpo-offer-left {
    margin: 0 auto 30px;
    text-align: center;
  }
}

.preview-banner .wpo-offer-wrap .wpo-offer-item .wpo-offer-left h2 {
  font-size: 50px;
  font-style: normal;
  font-weight: 400;
  margin-bottom: 20px;
}

@media (max-width: 1199px) {
  .preview-banner .wpo-offer-wrap .wpo-offer-item .wpo-offer-left h2 {
    font-size: 45px;
    margin-bottom: 15px;
  }
}

@media (max-width: 575px) {
  .preview-banner .wpo-offer-wrap .wpo-offer-item .wpo-offer-left h2 {
    font-size: 30px;
  }
}

.preview-banner .wpo-offer-wrap .wpo-offer-item .wpo-offer-left p {
  margin-bottom: 0;
}

.preview-banner .wpo-offer-wrap .wpo-offer-item .wpo-offer-right {
  position: relative;
  text-align: center;
}

.preview-banner .wpo-offer-wrap .wpo-offer-item .wpo-offer-right p {
  color: #3f3f3f;
  font-size: 25px;
  font-style: normal;
  font-weight: 400;
}

@media (max-width: 575px) {
  .preview-banner .wpo-offer-wrap .wpo-offer-item .wpo-offer-right p {
    font-size: 18px;
  }
}

.preview-banner .wpo-offer-wrap .wpo-offer-item .wpo-offer-right h2 {
  color: #3f3f3f;
  font-size: 100px;
  font-style: normal;
  font-weight: 400;
  line-height: 60px;
  margin-bottom: 30px;
}

@media (max-width: 575px) {
  .preview-banner .wpo-offer-wrap .wpo-offer-item .wpo-offer-right h2 {
    font-size: 50px;
    line-height: 40px;
  }
}

.preview-banner .wpo-offer-wrap .wpo-offer-item .wpo-offer-right h2 span {
  font-family: "Roboto", sans-serif;
  font-size: 25px;
  font-style: normal;
  font-weight: 400;
}

@media (max-width: 575px) {
  .preview-banner .wpo-offer-wrap .wpo-offer-item .wpo-offer-right h2 span {
    font-size: 18px;
  }
}

.preview-banner .wpo-offer-wrap .wpo-offer-item .wpo-offer-right .middle-shape {
  left: 0;
  position: absolute;
  top: -25px;
}

@media (max-width: 991px) {
  .preview-banner .wpo-offer-wrap .wpo-offer-item .wpo-offer-right .middle-shape {
    display: none;
  }
}

.preview-banner .wpo-offer-wrap .wpo-offer-item .shape-1 {
  left: 0;
  position: absolute;
  top: 0;
}

.preview-banner .wpo-offer-wrap .wpo-offer-item .shape-2 {
  position: absolute;
  right: 0;
  top: 0;
}

.preview-banner .wpo-offer-wrap .wpo-offer-item .shape-3 {
  bottom: 0;
  left: 0;
  position: absolute;
}

.preview-banner .wpo-offer-wrap .wpo-offer-item .shape-4 {
  bottom: 0;
  position: absolute;
  right: 0;
}

.preview-banner .wpo-offer-wrap .offer-product {
  margin-top: -215px;
  position: relative;
  z-index: 11;
}

@media (max-width: 1199px) {
  .preview-banner .wpo-offer-wrap .offer-product {
    margin-top: -115px;
  }
}

.preview-banner .wpo-offer-wrap .offer-product .offer-product-img {
  background: #fff;
  border-radius: 50%;
  box-shadow: 0 2px 8px 0 rgba(0, 0, 0, 0.1);
  max-width: 432px;
  padding: 20px;
}

@media (max-width: 1199px) {
  .preview-banner .wpo-offer-wrap .offer-product .offer-product-img {
    padding: 10px;
  }
}

@media (max-width: 767px) {
  .preview-banner .wpo-offer-wrap .offer-product .offer-product-img {
    margin-bottom: 20px;
  }
}

.preview-banner .wpo-offer-wrap .offer-product .offer-product-img img {
  border-radius: 50%;
}

.preview-banner .wpo-offer-wrap .offer-product .col:nth-child(2n) .offer-product-img {
  margin-top: 120px;
}

@media (max-width: 1199px) {
  .preview-banner .wpo-offer-wrap .offer-product .col:nth-child(2n) .offer-product-img {
    margin-top: 60px;
  }
}

@media (max-width: 767px) {
  .preview-banner .wpo-offer-wrap .offer-product .col:nth-child(2n) .offer-product-img {
    margin-top: 0;
  }
}

.preview-banner .wpo-offer-wrap .wpo-offer-items {
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  background: hsla(0, 0%, 100%, 0.4);
  border: 0;
  box-shadow: 0 20px 20px 0 rgba(0, 0, 0, 0.05);
  max-width: 880px;
  padding: 0;
  position: relative;
}

.preview-banner .wpo-offer-wrap .wpo-offer-items .wpo-offer-item {
  background: none;
  border-color: #a5aa9c;
}

.preview-banner .wpo-offer-wrap .wpo-offer-items .wpo-offer-item .wpo-offer-right {
  text-align: left;
}

@media (max-width: 991px) {
  .preview-banner .wpo-offer-wrap .wpo-offer-items .wpo-offer-item .wpo-offer-right {
    text-align: center;
  }
}

.preview-banner .wpo-offer-wrap .wpo-offer-items .wpo-offer-item .wpo-offer-right span {
  color: #657150;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}

@media (max-width: 767px) {
  .preview-banner .wpo-offer-wrap .wpo-offer-items .wpo-offer-item .wpo-offer-right span {
    font-size: 20px;
  }
}

.preview-banner .wpo-offer-wrap .wpo-offer-items .wpo-offer-item .wpo-offer-right h2 {
  font-size: 30px;
  line-height: normal;
  margin-top: 10px;
}

@media (max-width: 767px) {
  .preview-banner .wpo-offer-wrap .wpo-offer-items .wpo-offer-item .wpo-offer-right h2 {
    font-size: 30px;
  }
}

.preview-banner .wpo-offer-wrap .wpo-offer-items .wpo-offer-item .wpo-offer-right p {
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  margin-bottom: 30px;
}

@media (max-width: 767px) {
  .preview-banner .wpo-offer-wrap .wpo-offer-items .wpo-offer-item .wpo-offer-right p {
    font-size: 14px;
  }
}

.preview-banner .wpo-offer-wrap .wpo-offer-items .wpo-offer-item .wpo-offer-right .theme-btn,
.preview-banner .wpo-offer-wrap .wpo-offer-items .wpo-offer-item .wpo-offer-right .view-cart-btn {
  background: #fff;
  color: #101010;
  text-transform: capitalize;
}

.wpo-features-section {
  background: #fff;
  border: 0;
  overflow: hidden;
  padding-bottom: 90px;
  position: relative;
  z-index: 11;
}

@media (max-width: 767px) {
  .wpo-features-section {
    padding-bottom: 60px;
  }
}

.wpo-features-section .wpo-features-wrapper {
  position: relative;
  z-index: 11;
}

.wpo-features-section .wpo-features-item {
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 2px 8px 0 rgba(0, 0, 0, 0.1);
  margin-bottom: 30px;
  overflow: hidden;
  padding: 70px;
  position: relative;
  text-align: center;
  z-index: 1;
}

@media (max-width: 1400px) {
  .wpo-features-section .wpo-features-item {
    padding: 30px 15px;
  }
}

@media (max-width: 1200px) {
  .wpo-features-section .wpo-features-item .wpo-features-text h2 {
    font-size: 25px;
  }
}

.wpo-features-section .wpo-features-item .wpo-features-icon .icon {
  background: #f6f4f4;
  border-radius: 50%;
  height: 100px;
  line-height: 100px;
  margin: 0 auto 30px;
  width: 100px;
}

.wpo-features-section .wpo-features-item .wpo-features-text h2 {
  color: #101010;
  font-family: "Roboto", sans-serif;
  font-size: 22px;
  font-style: normal;
  font-weight: 400;
  margin: 10px 0;
}

.wpo-features-section .wpo-features-item .wpo-features-text p {
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  margin-bottom: 0;
}

.preview-site-footer {
  background-size: cover !important;
}

.preview-upper-footer {
  height: 300px;
}

@media (max-width: 991px) {
  .preview-upper-footer {
    height: 200px;
  }
}

@media (max-width: 575px) {
  .preview-upper-footer {
    height: 200px;
  }
}

.preview-site-footer .preview-footer-text {
  border: 1px solid #a5aa9c;
  margin: 0 auto;
  max-width: 1025px;
  padding: 120px 70px;
  position: relative;
  text-align: center;
}

@media (max-width: 1399px) {
  .preview-site-footer .preview-footer-text {
    padding: 100px 40px;
  }
}

@media (max-width: 991px) {
  .preview-site-footer .preview-footer-text {
    padding: 70px 30px;
  }
}

@media (max-width: 575px) {
  .preview-site-footer .preview-footer-text {
    padding: 50px 20px;
  }
}

.preview-site-footer .preview-footer-text span {
  color: #fff;
  font-size: 20px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
}

@media (max-width: 575px) {
  .preview-site-footer .preview-footer-text span {
    font-size: 16px;
  }
}

.preview-site-footer .preview-footer-text h2 {
  color: #626e65;
  font-size: 60px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  margin-bottom: 40px;
  margin-top: 30px;
  margin-left: 250px;
}

@media (max-width: 1399px) {
  .preview-site-footer .preview-footer-text h2 {
    font-size: 50px;
  }
}

@media (max-width: 991px) {
  .preview-site-footer .preview-footer-text h2 {
    font-size: 40px;
    margin-bottom: 20px;
    margin-top: 20px;
    margin-left: 0;
  }
}

@media (max-width: 575px) {
  .preview-site-footer .preview-footer-text h2 {
    font-size: 30px;
    margin-top: 10px;
  }
}

.preview-site-footer .preview-footer-text .shape-1 {
  left: 0;
  position: absolute;
  top: 0;
}

.preview-site-footer .preview-footer-text .shape-2 {
  position: absolute;
  right: 0;
  top: 0;
}

.preview-site-footer .preview-footer-text .shape-3 {
  bottom: 0;
  left: 0;
  position: absolute;
}

.preview-site-footer .preview-footer-text .shape-4 {
  bottom: 0;
  position: absolute;
  right: 0;
}

.pthumb,
.pthumb2 {
  align-items: center;
  -webkit-animation: spineer 2s infinite;
  animation: spineer 2s infinite;
  background: #729c29;
  border-radius: 50%;
  display: flex;
  height: 120px;
  justify-content: center;
  position: fixed;
  right: 20px;
  text-align: center;
  top: 60%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  width: 120px;
  z-index: 99;
}

@media (max-width: 991px) {

  .pthumb,
  .pthumb2 {
    height: 80px;
    width: 80px;
  }
}

.pthumb .thumb-inner,
.pthumb2 .thumb-inner {
  position: relative;
  right: -5px;
}

.pthumb h2,
.pthumb2 h2 {
  color: #fff;
  font-size: 60px;
  line-height: 40px;
  margin-bottom: 0;
}

@media (max-width: 991px) {

  .pthumb h2,
  .pthumb2 h2 {
    font-size: 40px;
    line-height: 30px;
  }
}

.pthumb h2 small,
.pthumb2 h2 small {
  font-size: 40px;
  left: -10px;
  position: relative;
  top: 5px;
}

@media (max-width: 991px) {

  .pthumb h2 small,
  .pthumb2 h2 small {
    font-size: 30px;
  }
}

.pthumb h2 span,
.pthumb2 h2 span {
  display: block;
  font-family: "Roboto", sans-serif;
  font-size: 22px;
  left: -4px;
  position: relative;
}

@media (max-width: 991px) {

  .pthumb h2 span,
  .pthumb2 h2 span {
    font-size: 16px;
  }
}

.pthumb2 {
  -webkit-animation: unset;
  animation: unset;
  background: #667151;
  bottom: 15px;
  left: 20px;
  right: auto;
  top: auto;
}

@media (max-width: 575px) {
  .pthumb2 {
    display: none;
  }
}

.wpo-awesome-features-section .wpo-awesome-features-item .wpo-awesome-features-text h2,
.wpo-awesome-features-section-s2 .wpo-awesome-features-item .wpo-awesome-features-text h2 {
  font-family: "Roboto", sans-serif;
}

.wpo-awesome-features-section,
.wpo-awesome-features-section-s2 {
  background: #f4f8fc;
  padding-bottom: 70px;
}

@media (max-width: 767px) {

  .wpo-awesome-features-section,
  .wpo-awesome-features-section-s2 {
    padding-bottom: 50px;
  }
}

.wpo-awesome-features-section .wpo-awesome-features-item,
.wpo-awesome-features-section-s2 .wpo-awesome-features-item {
  background: #fff;
  margin-bottom: 30px;
  padding: 30px 25px;
  text-align: center;
}

@media (max-width: 1400px) {

  .wpo-awesome-features-section .wpo-awesome-features-item,
  .wpo-awesome-features-section-s2 .wpo-awesome-features-item {
    padding: 30px 10px;
  }
}

@media (max-width: 1200px) {

  .wpo-awesome-features-section .wpo-awesome-features-item,
  .wpo-awesome-features-section-s2 .wpo-awesome-features-item {
    padding: 30px 25px;
  }
}

.wpo-awesome-features-section .wpo-awesome-features-item .wpo-awesome-features-icon,
.wpo-awesome-features-section-s2 .wpo-awesome-features-item .wpo-awesome-features-icon {
  margin-bottom: 10px;
}

.wpo-awesome-features-section .wpo-awesome-features-item .wpo-awesome-features-icon .fi:before,
.wpo-awesome-features-section-s2 .wpo-awesome-features-item .wpo-awesome-features-icon .fi:before {
  color: #ff4a17;
  font-size: 40px;
}

.wpo-awesome-features-section .wpo-awesome-features-item .wpo-awesome-features-text h2,
.wpo-awesome-features-section-s2 .wpo-awesome-features-item .wpo-awesome-features-text h2 {
  color: #636363;
  font-size: 15px;
  font-weight: 700 !important;
  margin-bottom: 0;
}

.wpo-purchase-theme-btn {
  -webkit-animation: spineer 2s infinite;
  animation: spineer 2s infinite;
  background-color: #729c29;
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  bottom: 120px;
  display: inline-block;
  height: 80px;
  position: fixed;
  right: 30px;
  text-align: center;
  width: 80px;
  z-index: 99999;
}

.wpo-purchase-theme-btn h2 {
  color: #fff;
  font-size: 35px;
  margin-top: 20px;
}

.wpo-purchase-theme-btn h2 span {
  font-size: 20px;
  font-weight: 400;
  position: relative;
  top: -10px;
}

.wpo-purchase-theme-btn img.envato-logo {
  background: #668c25;
  border-radius: 50%;
  bottom: -3px;
  padding: 6px;
  position: absolute;
  right: -8px;
}

@-webkit-keyframes spineer {
  0% {
    box-shadow: 0 0 0 0 rgba(114, 156, 41, 0.99);
  }

  to {
    box-shadow: 0 0 0 45px rgba(114, 156, 41, 0.01);
  }
}

@keyframes spineer {
  0% {
    box-shadow: 0 0 0 0 rgba(114, 156, 41, 0.99);
  }

  to {
    box-shadow: 0 0 0 45px rgba(114, 156, 41, 0.01);
  }
}

@-webkit-keyframes spineer2 {
  0% {
    box-shadow: 0 0 0 0 rgba(32, 32, 38, 0.99);
  }

  to {
    box-shadow: 0 0 0 45px rgba(32, 32, 38, 0.01);
  }
}

@keyframes spineer2 {
  0% {
    box-shadow: 0 0 0 0 rgba(32, 32, 38, 0.99);
  }

  to {
    box-shadow: 0 0 0 45px rgba(32, 32, 38, 0.01);
  }
}

.wpo-awesome-features-section .wpo-awesome-features-item .wpo-awesome-features-icon img {
  height: 100px;
  max-width: 80px;
  object-fit: contain;
}

@-webkit-keyframes circle2 {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }

  to {
    -webkit-transform: rotate(1turn);
    transform: rotate(1turn);
  }
}

@keyframes circle2 {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }

  to {
    -webkit-transform: rotate(1turn);
    transform: rotate(1turn);
  }
}

.projectMenu {
  background: #fff;
  box-shadow: 0 10px 40px 0 rgba(50, 50, 50, 0.1);
  height: 100vh;
  position: fixed;
  right: -410px;
  top: 0;
  transition: all 0.5s ease 0s;
  width: 370px;
  z-index: 9999;
}

.project-content-outer {
  height: calc(100vh - 90px);
  overflow-x: hidden;
  overflow-y: scroll;
}

.project-content-outer::-webkit-scrollbar {
  width: 0;
}

.wpo-project-section {
  padding: 20px;
}

.project-thumbs {
  padding: 0 5px 15px;
}

.project-site-menu .card-body {
  background: #fff;
}

.projectMenu h2 {
  font-family: "Roboto", sans-serif;
  font-size: 16px;
  font-weight: 700 !important;
  margin: 10px 0 25px;
  padding-left: 0;
}

.projectMenu h2 a {
  color: #202020;
}

.projectMenu h2 a:hover {
  color: #657150;
}

.projectMenu.show {
  right: 0;
}

.projectshowmenu {
  cursor: pointer;
  position: relative;
  top: 0;
  z-index: 999;
}

.project-site-menu {
  list-style: none;
  padding-left: 0;
  padding-top: 30px;
}

.project-site-menu li a,
.project-site-menu li p {
  color: #fff;
  cursor: pointer;
  display: block;
  font-family: Roboto, sans-serif;
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0;
  padding: 13px 35px;
  text-transform: capitalize;
}

.project-site-menu li p {
  margin-bottom: 0;
  position: relative;
}

.project-site-menu .card {
  border: none;
}

.project-site-menu .card-body {
  padding-top: 0;
}

.project-site-menu .card-body li {
  background: #333;
}

.project-site-menu li a {
  position: relative;
}

.project-site-menu li i {
  position: absolute;
  right: 20px;
  top: 17px;
}

.projectshowmenu i {
  -webkit-animation-duration: 10s;
  animation-duration: 10s;
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
  -webkit-animation-name: rotate;
  animation-name: rotate;
  -webkit-animation-timing-function: linear;
  animation-timing-function: linear;
  color: #fff;
  font-size: 30px;
}

@-webkit-keyframes rotate {
  0% {
    transform: rotate(0);
  }

  to {
    transform: rotate(1turn);
  }

  0% {
    -webkit-transform: rotate(0);
  }

  to {
    -webkit-transform: rotate(1turn);
  }
}

.projectshowmenu {
  background: #729c29;
  border-bottom-left-radius: 5px;
  border-top-left-radius: 5px;
  display: block;
  height: 60px;
  line-height: 72px;
  position: fixed;
  right: 0;
  text-align: center;
  top: 20%;
  width: 60px;
}

.projectshowmenu button:focus {
  box-shadow: none;
  outline: none;
}

.projectshowmenu button span {
  background: #000;
  color: #fff;
  display: block;
  font-size: 12px;
  opacity: 0;
  padding: 10px;
  position: absolute;
  right: 20px;
  top: -55px;
  transition: all 0.3s;
  visibility: hidden;
  width: 190px;
}

.projectshowmenu button span:before {
  border-color: #000 transparent transparent;
  border-style: solid;
  border-width: 10px 10px 0;
  bottom: -10px;
  content: "";
  height: 0;
  position: absolute;
  right: 0;
  width: 0;
}

.projectshowmenu:hover button span {
  opacity: 1;
  top: -45px;
  visibility: visible;
}

.projectMenu {
  display: block;
}

@media (max-width: 450px) {
  .projectMenu {
    right: -280px;
    width: 240px;
  }

  .project-site-menu li a,
  .project-site-menu li p {
    font-size: 14px;
    padding: 13px 25px;
  }

  .wpo-project-section {
    padding: 7px;
  }
}

.projectMenu .menu-close {
  background: #253352;
  cursor: pointer;
  height: 40px;
  left: -40px;
  line-height: 40px;
  position: absolute;
  text-align: center;
  width: 40px;
}

.projectMenu.show .closer {
  background: rgba(0, 0, 0, 0.1);
  cursor: crosshair;
  height: 100%;
  left: -500%;
  position: absolute;
  top: 0;
  transition: all 0.2s;
  width: 500%;
  z-index: -1;
}

.projectMenu .menu-close i {
  color: #fff;
}

.nav-tabs .nav-link,
.projectMenu .nav-tabs .nav-item.show .nav-link {
  color: #333;
  padding: 10px;
}

/*!
 *  Font Awesome 4.7.0 by @davegandy - http://fontawesome.io - @fontawesome
 *  License - http://fontawesome.io/license (Font: SIL OFL 1.1, CSS: MIT License)
 */
@font-face {
  font-family: FontAwesome;
  font-style: normal;
  font-weight: 400;
  src: url(/static/media/fontawesome-webfont.09b9015b1ecaf95655b1.eot);
  src: url(/static/media/fontawesome-webfont.09b9015b1ecaf95655b1.eot?#iefix&v=4.7.0) format("embedded-opentype"),
    url(/static/media/fontawesome-webfont.0317d582b93c20f68e05.woff2) format("woff2"),
    url(/static/media/fontawesome-webfont.f7f1738ca345185e0185.woff) format("woff"),
    url(/static/media/fontawesome-webfont.f0af1680f082547a7aae.ttf) format("truetype"),
    url(/static/media/fontawesome-webfont.ed6298903ae1554c7f3e.svg#fontawesomeregular) format("svg");
}

.fa {
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  display: inline-block;
  font: normal normal normal 14px/1 FontAwesome;
  font-size: inherit;
}

.fa-lg {
  font-size: 1.33333333em;
  line-height: 0.75em;
  vertical-align: -15%;
}

.fa-2x {
  font-size: 2em;
}

.fa-3x {
  font-size: 3em;
}

.fa-4x {
  font-size: 4em;
}

.fa-5x {
  font-size: 5em;
}

.fa-fw {
  text-align: center;
  width: 1.28571429em;
}

.fa-ul {
  list-style-type: none;
  margin-left: 2.14285714em;
  padding-left: 0;
}

.fa-ul>li {
  position: relative;
}

.fa-li {
  left: -2.14285714em;
  position: absolute;
  text-align: center;
  top: 0.14285714em;
  width: 2.14285714em;
}

.fa-li.fa-lg {
  left: -1.85714286em;
}

.fa-border {
  border: 0.08em solid #eee;
  border-radius: 0.1em;
  padding: 0.2em 0.25em 0.15em;
}

.fa-pull-left {
  float: left;
}

.fa-pull-right {
  float: right;
}

.fa.fa-pull-left {
  margin-right: 0.3em;
}

.fa.fa-pull-right {
  margin-left: 0.3em;
}

.pull-right {
  float: right;
}

.pull-left {
  float: left;
}

.fa.pull-left {
  margin-right: 0.3em;
}

.fa.pull-right {
  margin-left: 0.3em;
}

.fa-spin {
  -webkit-animation: fa-spin 2s linear infinite;
  animation: fa-spin 2s linear infinite;
}

.fa-pulse {
  -webkit-animation: fa-spin 1s steps(8) infinite;
  animation: fa-spin 1s steps(8) infinite;
}

@-webkit-keyframes fa-spin {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }

  to {
    -webkit-transform: rotate(359deg);
    transform: rotate(359deg);
  }
}

@keyframes fa-spin {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }

  to {
    -webkit-transform: rotate(359deg);
    transform: rotate(359deg);
  }
}

.fa-rotate-90 {
  -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=1)";
  -webkit-transform: rotate(90deg);
  transform: rotate(90deg);
}

.fa-rotate-180 {
  -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=2)";
  -webkit-transform: rotate(180deg);
  transform: rotate(180deg);
}

.fa-rotate-270 {
  -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=3)";
  -webkit-transform: rotate(270deg);
  transform: rotate(270deg);
}

.fa-flip-horizontal {
  -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=0, mirror=1)";
  -webkit-transform: scaleX(-1);
  transform: scaleX(-1);
}

.fa-flip-vertical {
  -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=2, mirror=1)";
  -webkit-transform: scaleY(-1);
  transform: scaleY(-1);
}

:root .fa-flip-horizontal,
:root .fa-flip-vertical,
:root .fa-rotate-180,
:root .fa-rotate-270,
:root .fa-rotate-90 {
  -webkit-filter: none;
  filter: none;
}

.fa-stack {
  display: inline-block;
  height: 2em;
  line-height: 2em;
  position: relative;
  vertical-align: middle;
  width: 2em;
}

.fa-stack-1x,
.fa-stack-2x {
  left: 0;
  position: absolute;
  text-align: center;
  width: 100%;
}

.fa-stack-1x {
  line-height: inherit;
}

.fa-stack-2x {
  font-size: 2em;
}

.fa-inverse {
  color: #fff;
}

.fa-glass:before {
  content: "\f000";
}

.fa-music:before {
  content: "\f001";
}

.fa-search:before {
  content: "\f002";
}

.fa-envelope-o:before {
  content: "\f003";
}

.fa-heart:before {
  content: "\f004";
}

.fa-star:before {
  content: "\f005";
}

.fa-star-o:before {
  content: "\f006";
}

.fa-user:before {
  content: "\f007";
}

.fa-film:before {
  content: "\f008";
}

.fa-th-large:before {
  content: "\f009";
}

.fa-th:before {
  content: "\f00a";
}

.fa-th-list:before {
  content: "\f00b";
}

.fa-check:before {
  content: "\f00c";
}

.fa-close:before,
.fa-remove:before,
.fa-times:before {
  content: "\f00d";
}

.fa-search-plus:before {
  content: "\f00e";
}

.fa-search-minus:before {
  content: "\f010";
}

.fa-power-off:before {
  content: "\f011";
}

.fa-signal:before {
  content: "\f012";
}

.fa-cog:before,
.fa-gear:before {
  content: "\f013";
}

.fa-trash-o:before {
  content: "\f014";
}

.fa-home:before {
  content: "\f015";
}

.fa-file-o:before {
  content: "\f016";
}

.fa-clock-o:before {
  content: "\f017";
}

.fa-road:before {
  content: "\f018";
}

.fa-download:before {
  content: "\f019";
}

.fa-arrow-circle-o-down:before {
  content: "\f01a";
}

.fa-arrow-circle-o-up:before {
  content: "\f01b";
}

.fa-inbox:before {
  content: "\f01c";
}

.fa-play-circle-o:before {
  content: "\f01d";
}

.fa-repeat:before,
.fa-rotate-right:before {
  content: "\f01e";
}

.fa-refresh:before {
  content: "\f021";
}

.fa-list-alt:before {
  content: "\f022";
}

.fa-lock:before {
  content: "\f023";
}

.fa-flag:before {
  content: "\f024";
}

.fa-headphones:before {
  content: "\f025";
}

.fa-volume-off:before {
  content: "\f026";
}

.fa-volume-down:before {
  content: "\f027";
}

.fa-volume-up:before {
  content: "\f028";
}

.fa-qrcode:before {
  content: "\f029";
}

.fa-barcode:before {
  content: "\f02a";
}

.fa-tag:before {
  content: "\f02b";
}

.fa-tags:before {
  content: "\f02c";
}

.fa-book:before {
  content: "\f02d";
}

.fa-bookmark:before {
  content: "\f02e";
}

.fa-print:before {
  content: "\f02f";
}

.fa-camera:before {
  content: "\f030";
}

.fa-font:before {
  content: "\f031";
}

.fa-bold:before {
  content: "\f032";
}

.fa-italic:before {
  content: "\f033";
}

.fa-text-height:before {
  content: "\f034";
}

.fa-text-width:before {
  content: "\f035";
}

.fa-align-left:before {
  content: "\f036";
}

.fa-align-center:before {
  content: "\f037";
}

.fa-align-right:before {
  content: "\f038";
}

.fa-align-justify:before {
  content: "\f039";
}

.fa-list:before {
  content: "\f03a";
}

.fa-dedent:before,
.fa-outdent:before {
  content: "\f03b";
}

.fa-indent:before {
  content: "\f03c";
}

.fa-video-camera:before {
  content: "\f03d";
}

.fa-image:before,
.fa-photo:before,
.fa-picture-o:before {
  content: "\f03e";
}

.fa-pencil:before {
  content: "\f040";
}

.fa-map-marker:before {
  content: "\f041";
}

.fa-adjust:before {
  content: "\f042";
}

.fa-tint:before {
  content: "\f043";
}

.fa-edit:before,
.fa-pencil-square-o:before {
  content: "\f044";
}

.fa-share-square-o:before {
  content: "\f045";
}

.fa-check-square-o:before {
  content: "\f046";
}

.fa-arrows:before {
  content: "\f047";
}

.fa-step-backward:before {
  content: "\f048";
}

.fa-fast-backward:before {
  content: "\f049";
}

.fa-backward:before {
  content: "\f04a";
}

.fa-play:before {
  content: "\f04b";
}

.fa-pause:before {
  content: "\f04c";
}

.fa-stop:before {
  content: "\f04d";
}

.fa-forward:before {
  content: "\f04e";
}

.fa-fast-forward:before {
  content: "\f050";
}

.fa-step-forward:before {
  content: "\f051";
}

.fa-eject:before {
  content: "\f052";
}

.fa-chevron-left:before {
  content: "\f053";
}

.fa-chevron-right:before {
  content: "\f054";
}

.fa-plus-circle:before {
  content: "\f055";
}

.fa-minus-circle:before {
  content: "\f056";
}

.fa-times-circle:before {
  content: "\f057";
}

.fa-check-circle:before {
  content: "\f058";
}

.fa-question-circle:before {
  content: "\f059";
}

.fa-info-circle:before {
  content: "\f05a";
}

.fa-crosshairs:before {
  content: "\f05b";
}

.fa-times-circle-o:before {
  content: "\f05c";
}

.fa-check-circle-o:before {
  content: "\f05d";
}

.fa-ban:before {
  content: "\f05e";
}

.fa-arrow-left:before {
  content: "\f060";
}

.fa-arrow-right:before {
  content: "\f061";
}

.fa-arrow-up:before {
  content: "\f062";
}

.fa-arrow-down:before {
  content: "\f063";
}

.fa-mail-forward:before,
.fa-share:before {
  content: "\f064";
}

.fa-expand:before {
  content: "\f065";
}

.fa-compress:before {
  content: "\f066";
}

.fa-plus:before {
  content: "\f067";
}

.fa-minus:before {
  content: "\f068";
}

.fa-asterisk:before {
  content: "\f069";
}

.fa-exclamation-circle:before {
  content: "\f06a";
}

.fa-gift:before {
  content: "\f06b";
}

.fa-leaf:before {
  content: "\f06c";
}

.fa-fire:before {
  content: "\f06d";
}

.fa-eye:before {
  content: "\f06e";
}

.fa-eye-slash:before {
  content: "\f070";
}

.fa-exclamation-triangle:before,
.fa-warning:before {
  content: "\f071";
}

.fa-plane:before {
  content: "\f072";
}

.fa-calendar:before {
  content: "\f073";
}

.fa-random:before {
  content: "\f074";
}

.fa-comment:before {
  content: "\f075";
}

.fa-magnet:before {
  content: "\f076";
}

.fa-chevron-up:before {
  content: "\f077";
}

.fa-chevron-down:before {
  content: "\f078";
}

.fa-retweet:before {
  content: "\f079";
}

.fa-shopping-cart:before {
  content: "\f07a";
}

.fa-folder:before {
  content: "\f07b";
}

.fa-folder-open:before {
  content: "\f07c";
}

.fa-arrows-v:before {
  content: "\f07d";
}

.fa-arrows-h:before {
  content: "\f07e";
}

.fa-bar-chart-o:before,
.fa-bar-chart:before {
  content: "\f080";
}

.fa-twitter-square:before {
  content: "\f081";
}

.fa-facebook-square:before {
  content: "\f082";
}

.fa-camera-retro:before {
  content: "\f083";
}

.fa-key:before {
  content: "\f084";
}

.fa-cogs:before,
.fa-gears:before {
  content: "\f085";
}

.fa-comments:before {
  content: "\f086";
}

.fa-thumbs-o-up:before {
  content: "\f087";
}

.fa-thumbs-o-down:before {
  content: "\f088";
}

.fa-star-half:before {
  content: "\f089";
}

.fa-heart-o:before {
  content: "\f08a";
}

.fa-sign-out:before {
  content: "\f08b";
}

.fa-linkedin-square:before {
  content: "\f08c";
}

.fa-thumb-tack:before {
  content: "\f08d";
}

.fa-external-link:before {
  content: "\f08e";
}

.fa-sign-in:before {
  content: "\f090";
}

.fa-trophy:before {
  content: "\f091";
}

.fa-github-square:before {
  content: "\f092";
}

.fa-upload:before {
  content: "\f093";
}

.fa-lemon-o:before {
  content: "\f094";
}

.fa-phone:before {
  content: "\f095";
}

.fa-square-o:before {
  content: "\f096";
}

.fa-bookmark-o:before {
  content: "\f097";
}

.fa-phone-square:before {
  content: "\f098";
}

.fa-twitter:before {
  content: "\f099";
}

.fa-facebook-f:before,
.fa-facebook:before {
  content: "\f09a";
}

.fa-github:before {
  content: "\f09b";
}

.fa-unlock:before {
  content: "\f09c";
}

.fa-credit-card:before {
  content: "\f09d";
}

.fa-feed:before,
.fa-rss:before {
  content: "\f09e";
}

.fa-hdd-o:before {
  content: "\f0a0";
}

.fa-bullhorn:before {
  content: "\f0a1";
}

.fa-bell:before {
  content: "\f0f3";
}

.fa-certificate:before {
  content: "\f0a3";
}

.fa-hand-o-right:before {
  content: "\f0a4";
}

.fa-hand-o-left:before {
  content: "\f0a5";
}

.fa-hand-o-up:before {
  content: "\f0a6";
}

.fa-hand-o-down:before {
  content: "\f0a7";
}

.fa-arrow-circle-left:before {
  content: "\f0a8";
}

.fa-arrow-circle-right:before {
  content: "\f0a9";
}

.fa-arrow-circle-up:before {
  content: "\f0aa";
}

.fa-arrow-circle-down:before {
  content: "\f0ab";
}

.fa-globe:before {
  content: "\f0ac";
}

.fa-wrench:before {
  content: "\f0ad";
}

.fa-tasks:before {
  content: "\f0ae";
}

.fa-filter:before {
  content: "\f0b0";
}

.fa-briefcase:before {
  content: "\f0b1";
}

.fa-arrows-alt:before {
  content: "\f0b2";
}

.fa-group:before,
.fa-users:before {
  content: "\f0c0";
}

.fa-chain:before,
.fa-link:before {
  content: "\f0c1";
}

.fa-cloud:before {
  content: "\f0c2";
}

.fa-flask:before {
  content: "\f0c3";
}

.fa-cut:before,
.fa-scissors:before {
  content: "\f0c4";
}

.fa-copy:before,
.fa-files-o:before {
  content: "\f0c5";
}

.fa-paperclip:before {
  content: "\f0c6";
}

.fa-floppy-o:before,
.fa-save:before {
  content: "\f0c7";
}

.fa-square:before {
  content: "\f0c8";
}

.fa-bars:before,
.fa-navicon:before,
.fa-reorder:before {
  content: "\f0c9";
}

.fa-list-ul:before {
  content: "\f0ca";
}

.fa-list-ol:before {
  content: "\f0cb";
}

.fa-strikethrough:before {
  content: "\f0cc";
}

.fa-underline:before {
  content: "\f0cd";
}

.fa-table:before {
  content: "\f0ce";
}

.fa-magic:before {
  content: "\f0d0";
}

.fa-truck:before {
  content: "\f0d1";
}

.fa-pinterest:before {
  content: "\f0d2";
}

.fa-pinterest-square:before {
  content: "\f0d3";
}

.fa-google-plus-square:before {
  content: "\f0d4";
}

.fa-google-plus:before {
  content: "\f0d5";
}

.fa-money:before {
  content: "\f0d6";
}

.fa-caret-down:before {
  content: "\f0d7";
}

.fa-caret-up:before {
  content: "\f0d8";
}

.fa-caret-left:before {
  content: "\f0d9";
}

.fa-caret-right:before {
  content: "\f0da";
}

.fa-columns:before {
  content: "\f0db";
}

.fa-sort:before,
.fa-unsorted:before {
  content: "\f0dc";
}

.fa-sort-desc:before,
.fa-sort-down:before {
  content: "\f0dd";
}

.fa-sort-asc:before,
.fa-sort-up:before {
  content: "\f0de";
}

.fa-envelope:before {
  content: "\f0e0";
}

.fa-linkedin:before {
  content: "\f0e1";
}

.fa-rotate-left:before,
.fa-undo:before {
  content: "\f0e2";
}

.fa-gavel:before,
.fa-legal:before {
  content: "\f0e3";
}

.fa-dashboard:before,
.fa-tachometer:before {
  content: "\f0e4";
}

.fa-comment-o:before {
  content: "\f0e5";
}

.fa-comments-o:before {
  content: "\f0e6";
}

.fa-bolt:before,
.fa-flash:before {
  content: "\f0e7";
}

.fa-sitemap:before {
  content: "\f0e8";
}

.fa-umbrella:before {
  content: "\f0e9";
}

.fa-clipboard:before,
.fa-paste:before {
  content: "\f0ea";
}

.fa-lightbulb-o:before {
  content: "\f0eb";
}

.fa-exchange:before {
  content: "\f0ec";
}

.fa-cloud-download:before {
  content: "\f0ed";
}

.fa-cloud-upload:before {
  content: "\f0ee";
}

.fa-user-md:before {
  content: "\f0f0";
}

.fa-stethoscope:before {
  content: "\f0f1";
}

.fa-suitcase:before {
  content: "\f0f2";
}

.fa-bell-o:before {
  content: "\f0a2";
}

.fa-coffee:before {
  content: "\f0f4";
}

.fa-cutlery:before {
  content: "\f0f5";
}

.fa-file-text-o:before {
  content: "\f0f6";
}

.fa-building-o:before {
  content: "\f0f7";
}

.fa-hospital-o:before {
  content: "\f0f8";
}

.fa-ambulance:before {
  content: "\f0f9";
}

.fa-medkit:before {
  content: "\f0fa";
}

.fa-fighter-jet:before {
  content: "\f0fb";
}

.fa-beer:before {
  content: "\f0fc";
}

.fa-h-square:before {
  content: "\f0fd";
}

.fa-plus-square:before {
  content: "\f0fe";
}

.fa-angle-double-left:before {
  content: "\f100";
}

.fa-angle-double-right:before {
  content: "\f101";
}

.fa-angle-double-up:before {
  content: "\f102";
}

.fa-angle-double-down:before {
  content: "\f103";
}

.fa-angle-left:before {
  content: "\f104";
}

.fa-angle-right:before {
  content: "\f105";
}

.fa-angle-up:before {
  content: "\f106";
}

.fa-angle-down:before {
  content: "\f107";
}

.fa-desktop:before {
  content: "\f108";
}

.fa-laptop:before {
  content: "\f109";
}

.fa-tablet:before {
  content: "\f10a";
}

.fa-mobile-phone:before,
.fa-mobile:before {
  content: "\f10b";
}

.fa-circle-o:before {
  content: "\f10c";
}

.fa-quote-left:before {
  content: "\f10d";
}

.fa-quote-right:before {
  content: "\f10e";
}

.fa-spinner:before {
  content: "\f110";
}

.fa-circle:before {
  content: "\f111";
}

.fa-mail-reply:before,
.fa-reply:before {
  content: "\f112";
}

.fa-github-alt:before {
  content: "\f113";
}

.fa-folder-o:before {
  content: "\f114";
}

.fa-folder-open-o:before {
  content: "\f115";
}

.fa-smile-o:before {
  content: "\f118";
}

.fa-frown-o:before {
  content: "\f119";
}

.fa-meh-o:before {
  content: "\f11a";
}

.fa-gamepad:before {
  content: "\f11b";
}

.fa-keyboard-o:before {
  content: "\f11c";
}

.fa-flag-o:before {
  content: "\f11d";
}

.fa-flag-checkered:before {
  content: "\f11e";
}

.fa-terminal:before {
  content: "\f120";
}

.fa-code:before {
  content: "\f121";
}

.fa-mail-reply-all:before,
.fa-reply-all:before {
  content: "\f122";
}

.fa-star-half-empty:before,
.fa-star-half-full:before,
.fa-star-half-o:before {
  content: "\f123";
}

.fa-location-arrow:before {
  content: "\f124";
}

.fa-crop:before {
  content: "\f125";
}

.fa-code-fork:before {
  content: "\f126";
}

.fa-chain-broken:before,
.fa-unlink:before {
  content: "\f127";
}

.fa-question:before {
  content: "\f128";
}

.fa-info:before {
  content: "\f129";
}

.fa-exclamation:before {
  content: "\f12a";
}

.fa-superscript:before {
  content: "\f12b";
}

.fa-subscript:before {
  content: "\f12c";
}

.fa-eraser:before {
  content: "\f12d";
}

.fa-puzzle-piece:before {
  content: "\f12e";
}

.fa-microphone:before {
  content: "\f130";
}

.fa-microphone-slash:before {
  content: "\f131";
}

.fa-shield:before {
  content: "\f132";
}

.fa-calendar-o:before {
  content: "\f133";
}

.fa-fire-extinguisher:before {
  content: "\f134";
}

.fa-rocket:before {
  content: "\f135";
}

.fa-maxcdn:before {
  content: "\f136";
}

.fa-chevron-circle-left:before {
  content: "\f137";
}

.fa-chevron-circle-right:before {
  content: "\f138";
}

.fa-chevron-circle-up:before {
  content: "\f139";
}

.fa-chevron-circle-down:before {
  content: "\f13a";
}

.fa-html5:before {
  content: "\f13b";
}

.fa-css3:before {
  content: "\f13c";
}

.fa-anchor:before {
  content: "\f13d";
}

.fa-unlock-alt:before {
  content: "\f13e";
}

.fa-bullseye:before {
  content: "\f140";
}

.fa-ellipsis-h:before {
  content: "\f141";
}

.fa-ellipsis-v:before {
  content: "\f142";
}

.fa-rss-square:before {
  content: "\f143";
}

.fa-play-circle:before {
  content: "\f144";
}

.fa-ticket:before {
  content: "\f145";
}

.fa-minus-square:before {
  content: "\f146";
}

.fa-minus-square-o:before {
  content: "\f147";
}

.fa-level-up:before {
  content: "\f148";
}

.fa-level-down:before {
  content: "\f149";
}

.fa-check-square:before {
  content: "\f14a";
}

.fa-pencil-square:before {
  content: "\f14b";
}

.fa-external-link-square:before {
  content: "\f14c";
}

.fa-share-square:before {
  content: "\f14d";
}

.fa-compass:before {
  content: "\f14e";
}

.fa-caret-square-o-down:before,
.fa-toggle-down:before {
  content: "\f150";
}

.fa-caret-square-o-up:before,
.fa-toggle-up:before {
  content: "\f151";
}

.fa-caret-square-o-right:before,
.fa-toggle-right:before {
  content: "\f152";
}

.fa-eur:before,
.fa-euro:before {
  content: "\f153";
}

.fa-gbp:before {
  content: "\f154";
}

.fa-dollar:before,
.fa-usd:before {
  content: "\f155";
}

.fa-inr:before,
.fa-rupee:before {
  content: "\f156";
}

.fa-cny:before,
.fa-jpy:before,
.fa-rmb:before,
.fa-yen:before {
  content: "\f157";
}

.fa-rouble:before,
.fa-rub:before,
.fa-ruble:before {
  content: "\f158";
}

.fa-krw:before,
.fa-won:before {
  content: "\f159";
}

.fa-bitcoin:before,
.fa-btc:before {
  content: "\f15a";
}

.fa-file:before {
  content: "\f15b";
}

.fa-file-text:before {
  content: "\f15c";
}

.fa-sort-alpha-asc:before {
  content: "\f15d";
}

.fa-sort-alpha-desc:before {
  content: "\f15e";
}

.fa-sort-amount-asc:before {
  content: "\f160";
}

.fa-sort-amount-desc:before {
  content: "\f161";
}

.fa-sort-numeric-asc:before {
  content: "\f162";
}

.fa-sort-numeric-desc:before {
  content: "\f163";
}

.fa-thumbs-up:before {
  content: "\f164";
}

.fa-thumbs-down:before {
  content: "\f165";
}

.fa-youtube-square:before {
  content: "\f166";
}

.fa-youtube:before {
  content: "\f167";
}

.fa-xing:before {
  content: "\f168";
}

.fa-xing-square:before {
  content: "\f169";
}

.fa-youtube-play:before {
  content: "\f16a";
}

.fa-dropbox:before {
  content: "\f16b";
}

.fa-stack-overflow:before {
  content: "\f16c";
}

.fa-instagram:before {
  content: "\f16d";
}

.fa-flickr:before {
  content: "\f16e";
}

.fa-adn:before {
  content: "\f170";
}

.fa-bitbucket:before {
  content: "\f171";
}

.fa-bitbucket-square:before {
  content: "\f172";
}

.fa-tumblr:before {
  content: "\f173";
}

.fa-tumblr-square:before {
  content: "\f174";
}

.fa-long-arrow-down:before {
  content: "\f175";
}

.fa-long-arrow-up:before {
  content: "\f176";
}

.fa-long-arrow-left:before {
  content: "\f177";
}

.fa-long-arrow-right:before {
  content: "\f178";
}

.fa-apple:before {
  content: "\f179";
}

.fa-windows:before {
  content: "\f17a";
}

.fa-android:before {
  content: "\f17b";
}

.fa-linux:before {
  content: "\f17c";
}

.fa-dribbble:before {
  content: "\f17d";
}

.fa-skype:before {
  content: "\f17e";
}

.fa-foursquare:before {
  content: "\f180";
}

.fa-trello:before {
  content: "\f181";
}

.fa-female:before {
  content: "\f182";
}

.fa-male:before {
  content: "\f183";
}

.fa-gittip:before,
.fa-gratipay:before {
  content: "\f184";
}

.fa-sun-o:before {
  content: "\f185";
}

.fa-moon-o:before {
  content: "\f186";
}

.fa-archive:before {
  content: "\f187";
}

.fa-bug:before {
  content: "\f188";
}

.fa-vk:before {
  content: "\f189";
}

.fa-weibo:before {
  content: "\f18a";
}

.fa-renren:before {
  content: "\f18b";
}

.fa-pagelines:before {
  content: "\f18c";
}

.fa-stack-exchange:before {
  content: "\f18d";
}

.fa-arrow-circle-o-right:before {
  content: "\f18e";
}

.fa-arrow-circle-o-left:before {
  content: "\f190";
}

.fa-caret-square-o-left:before,
.fa-toggle-left:before {
  content: "\f191";
}

.fa-dot-circle-o:before {
  content: "\f192";
}

.fa-wheelchair:before {
  content: "\f193";
}

.fa-vimeo-square:before {
  content: "\f194";
}

.fa-try:before,
.fa-turkish-lira:before {
  content: "\f195";
}

.fa-plus-square-o:before {
  content: "\f196";
}

.fa-space-shuttle:before {
  content: "\f197";
}

.fa-slack:before {
  content: "\f198";
}

.fa-envelope-square:before {
  content: "\f199";
}

.fa-wordpress:before {
  content: "\f19a";
}

.fa-openid:before {
  content: "\f19b";
}

.fa-bank:before,
.fa-institution:before,
.fa-university:before {
  content: "\f19c";
}

.fa-graduation-cap:before,
.fa-mortar-board:before {
  content: "\f19d";
}

.fa-yahoo:before {
  content: "\f19e";
}

.fa-google:before {
  content: "\f1a0";
}

.fa-reddit:before {
  content: "\f1a1";
}

.fa-reddit-square:before {
  content: "\f1a2";
}

.fa-stumbleupon-circle:before {
  content: "\f1a3";
}

.fa-stumbleupon:before {
  content: "\f1a4";
}

.fa-delicious:before {
  content: "\f1a5";
}

.fa-digg:before {
  content: "\f1a6";
}

.fa-pied-piper-pp:before {
  content: "\f1a7";
}

.fa-pied-piper-alt:before {
  content: "\f1a8";
}

.fa-drupal:before {
  content: "\f1a9";
}

.fa-joomla:before {
  content: "\f1aa";
}

.fa-language:before {
  content: "\f1ab";
}

.fa-fax:before {
  content: "\f1ac";
}

.fa-building:before {
  content: "\f1ad";
}

.fa-child:before {
  content: "\f1ae";
}

.fa-paw:before {
  content: "\f1b0";
}

.fa-spoon:before {
  content: "\f1b1";
}

.fa-cube:before {
  content: "\f1b2";
}

.fa-cubes:before {
  content: "\f1b3";
}

.fa-behance:before {
  content: "\f1b4";
}

.fa-behance-square:before {
  content: "\f1b5";
}

.fa-steam:before {
  content: "\f1b6";
}

.fa-steam-square:before {
  content: "\f1b7";
}

.fa-recycle:before {
  content: "\f1b8";
}

.fa-automobile:before,
.fa-car:before {
  content: "\f1b9";
}

.fa-cab:before,
.fa-taxi:before {
  content: "\f1ba";
}

.fa-tree:before {
  content: "\f1bb";
}

.fa-spotify:before {
  content: "\f1bc";
}

.fa-deviantart:before {
  content: "\f1bd";
}

.fa-soundcloud:before {
  content: "\f1be";
}

.fa-database:before {
  content: "\f1c0";
}

.fa-file-pdf-o:before {
  content: "\f1c1";
}

.fa-file-word-o:before {
  content: "\f1c2";
}

.fa-file-excel-o:before {
  content: "\f1c3";
}

.fa-file-powerpoint-o:before {
  content: "\f1c4";
}

.fa-file-image-o:before,
.fa-file-photo-o:before,
.fa-file-picture-o:before {
  content: "\f1c5";
}

.fa-file-archive-o:before,
.fa-file-zip-o:before {
  content: "\f1c6";
}

.fa-file-audio-o:before,
.fa-file-sound-o:before {
  content: "\f1c7";
}

.fa-file-movie-o:before,
.fa-file-video-o:before {
  content: "\f1c8";
}

.fa-file-code-o:before {
  content: "\f1c9";
}

.fa-vine:before {
  content: "\f1ca";
}

.fa-codepen:before {
  content: "\f1cb";
}

.fa-jsfiddle:before {
  content: "\f1cc";
}

.fa-life-bouy:before,
.fa-life-buoy:before,
.fa-life-ring:before,
.fa-life-saver:before,
.fa-support:before {
  content: "\f1cd";
}

.fa-circle-o-notch:before {
  content: "\f1ce";
}

.fa-ra:before,
.fa-rebel:before,
.fa-resistance:before {
  content: "\f1d0";
}

.fa-empire:before,
.fa-ge:before {
  content: "\f1d1";
}

.fa-git-square:before {
  content: "\f1d2";
}

.fa-git:before {
  content: "\f1d3";
}

.fa-hacker-news:before,
.fa-y-combinator-square:before,
.fa-yc-square:before {
  content: "\f1d4";
}

.fa-tencent-weibo:before {
  content: "\f1d5";
}

.fa-qq:before {
  content: "\f1d6";
}

.fa-wechat:before,
.fa-weixin:before {
  content: "\f1d7";
}

.fa-paper-plane:before,
.fa-send:before {
  content: "\f1d8";
}

.fa-paper-plane-o:before,
.fa-send-o:before {
  content: "\f1d9";
}

.fa-history:before {
  content: "\f1da";
}

.fa-circle-thin:before {
  content: "\f1db";
}

.fa-header:before {
  content: "\f1dc";
}

.fa-paragraph:before {
  content: "\f1dd";
}

.fa-sliders:before {
  content: "\f1de";
}

.fa-share-alt:before {
  content: "\f1e0";
}

.fa-share-alt-square:before {
  content: "\f1e1";
}

.fa-bomb:before {
  content: "\f1e2";
}

.fa-futbol-o:before,
.fa-soccer-ball-o:before {
  content: "\f1e3";
}

.fa-tty:before {
  content: "\f1e4";
}

.fa-binoculars:before {
  content: "\f1e5";
}

.fa-plug:before {
  content: "\f1e6";
}

.fa-slideshare:before {
  content: "\f1e7";
}

.fa-twitch:before {
  content: "\f1e8";
}

.fa-yelp:before {
  content: "\f1e9";
}

.fa-newspaper-o:before {
  content: "\f1ea";
}

.fa-wifi:before {
  content: "\f1eb";
}

.fa-calculator:before {
  content: "\f1ec";
}

.fa-paypal:before {
  content: "\f1ed";
}

.fa-google-wallet:before {
  content: "\f1ee";
}

.fa-cc-visa:before {
  content: "\f1f0";
}

.fa-cc-mastercard:before {
  content: "\f1f1";
}

.fa-cc-discover:before {
  content: "\f1f2";
}

.fa-cc-amex:before {
  content: "\f1f3";
}

.fa-cc-paypal:before {
  content: "\f1f4";
}

.fa-cc-stripe:before {
  content: "\f1f5";
}

.fa-bell-slash:before {
  content: "\f1f6";
}

.fa-bell-slash-o:before {
  content: "\f1f7";
}

.fa-trash:before {
  content: "\f1f8";
}

.fa-copyright:before {
  content: "\f1f9";
}

.fa-at:before {
  content: "\f1fa";
}

.fa-eyedropper:before {
  content: "\f1fb";
}

.fa-paint-brush:before {
  content: "\f1fc";
}

.fa-birthday-cake:before {
  content: "\f1fd";
}

.fa-area-chart:before {
  content: "\f1fe";
}

.fa-pie-chart:before {
  content: "\f200";
}

.fa-line-chart:before {
  content: "\f201";
}

.fa-lastfm:before {
  content: "\f202";
}

.fa-lastfm-square:before {
  content: "\f203";
}

.fa-toggle-off:before {
  content: "\f204";
}

.fa-toggle-on:before {
  content: "\f205";
}

.fa-bicycle:before {
  content: "\f206";
}

.fa-bus:before {
  content: "\f207";
}

.fa-ioxhost:before {
  content: "\f208";
}

.fa-angellist:before {
  content: "\f209";
}

.fa-cc:before {
  content: "\f20a";
}

.fa-ils:before,
.fa-shekel:before,
.fa-sheqel:before {
  content: "\f20b";
}

.fa-meanpath:before {
  content: "\f20c";
}

.fa-buysellads:before {
  content: "\f20d";
}

.fa-connectdevelop:before {
  content: "\f20e";
}

.fa-dashcube:before {
  content: "\f210";
}

.fa-forumbee:before {
  content: "\f211";
}

.fa-leanpub:before {
  content: "\f212";
}

.fa-sellsy:before {
  content: "\f213";
}

.fa-shirtsinbulk:before {
  content: "\f214";
}

.fa-simplybuilt:before {
  content: "\f215";
}

.fa-skyatlas:before {
  content: "\f216";
}

.fa-cart-plus:before {
  content: "\f217";
}

.fa-cart-arrow-down:before {
  content: "\f218";
}

.fa-diamond:before {
  content: "\f219";
}

.fa-ship:before {
  content: "\f21a";
}

.fa-user-secret:before {
  content: "\f21b";
}

.fa-motorcycle:before {
  content: "\f21c";
}

.fa-street-view:before {
  content: "\f21d";
}

.fa-heartbeat:before {
  content: "\f21e";
}

.fa-venus:before {
  content: "\f221";
}

.fa-mars:before {
  content: "\f222";
}

.fa-mercury:before {
  content: "\f223";
}

.fa-intersex:before,
.fa-transgender:before {
  content: "\f224";
}

.fa-transgender-alt:before {
  content: "\f225";
}

.fa-venus-double:before {
  content: "\f226";
}

.fa-mars-double:before {
  content: "\f227";
}

.fa-venus-mars:before {
  content: "\f228";
}

.fa-mars-stroke:before {
  content: "\f229";
}

.fa-mars-stroke-v:before {
  content: "\f22a";
}

.fa-mars-stroke-h:before {
  content: "\f22b";
}

.fa-neuter:before {
  content: "\f22c";
}

.fa-genderless:before {
  content: "\f22d";
}

.fa-facebook-official:before {
  content: "\f230";
}

.fa-pinterest-p:before {
  content: "\f231";
}

.fa-whatsapp:before {
  content: "\f232";
}

.fa-server:before {
  content: "\f233";
}

.fa-user-plus:before {
  content: "\f234";
}

.fa-user-times:before {
  content: "\f235";
}

.fa-bed:before,
.fa-hotel:before {
  content: "\f236";
}

.fa-viacoin:before {
  content: "\f237";
}

.fa-train:before {
  content: "\f238";
}

.fa-subway:before {
  content: "\f239";
}

.fa-medium:before {
  content: "\f23a";
}

.fa-y-combinator:before,
.fa-yc:before {
  content: "\f23b";
}

.fa-optin-monster:before {
  content: "\f23c";
}

.fa-opencart:before {
  content: "\f23d";
}

.fa-expeditedssl:before {
  content: "\f23e";
}

.fa-battery-4:before,
.fa-battery-full:before,
.fa-battery:before {
  content: "\f240";
}

.fa-battery-3:before,
.fa-battery-three-quarters:before {
  content: "\f241";
}

.fa-battery-2:before,
.fa-battery-half:before {
  content: "\f242";
}

.fa-battery-1:before,
.fa-battery-quarter:before {
  content: "\f243";
}

.fa-battery-0:before,
.fa-battery-empty:before {
  content: "\f244";
}

.fa-mouse-pointer:before {
  content: "\f245";
}

.fa-i-cursor:before {
  content: "\f246";
}

.fa-object-group:before {
  content: "\f247";
}

.fa-object-ungroup:before {
  content: "\f248";
}

.fa-sticky-note:before {
  content: "\f249";
}

.fa-sticky-note-o:before {
  content: "\f24a";
}

.fa-cc-jcb:before {
  content: "\f24b";
}

.fa-cc-diners-club:before {
  content: "\f24c";
}

.fa-clone:before {
  content: "\f24d";
}

.fa-balance-scale:before {
  content: "\f24e";
}

.fa-hourglass-o:before {
  content: "\f250";
}

.fa-hourglass-1:before,
.fa-hourglass-start:before {
  content: "\f251";
}

.fa-hourglass-2:before,
.fa-hourglass-half:before {
  content: "\f252";
}

.fa-hourglass-3:before,
.fa-hourglass-end:before {
  content: "\f253";
}

.fa-hourglass:before {
  content: "\f254";
}

.fa-hand-grab-o:before,
.fa-hand-rock-o:before {
  content: "\f255";
}

.fa-hand-paper-o:before,
.fa-hand-stop-o:before {
  content: "\f256";
}

.fa-hand-scissors-o:before {
  content: "\f257";
}

.fa-hand-lizard-o:before {
  content: "\f258";
}

.fa-hand-spock-o:before {
  content: "\f259";
}

.fa-hand-pointer-o:before {
  content: "\f25a";
}

.fa-hand-peace-o:before {
  content: "\f25b";
}

.fa-trademark:before {
  content: "\f25c";
}

.fa-registered:before {
  content: "\f25d";
}

.fa-creative-commons:before {
  content: "\f25e";
}

.fa-gg:before {
  content: "\f260";
}

.fa-gg-circle:before {
  content: "\f261";
}

.fa-tripadvisor:before {
  content: "\f262";
}

.fa-odnoklassniki:before {
  content: "\f263";
}

.fa-odnoklassniki-square:before {
  content: "\f264";
}

.fa-get-pocket:before {
  content: "\f265";
}

.fa-wikipedia-w:before {
  content: "\f266";
}

.fa-safari:before {
  content: "\f267";
}

.fa-chrome:before {
  content: "\f268";
}

.fa-firefox:before {
  content: "\f269";
}

.fa-opera:before {
  content: "\f26a";
}

.fa-internet-explorer:before {
  content: "\f26b";
}

.fa-television:before,
.fa-tv:before {
  content: "\f26c";
}

.fa-contao:before {
  content: "\f26d";
}

.fa-500px:before {
  content: "\f26e";
}

.fa-amazon:before {
  content: "\f270";
}

.fa-calendar-plus-o:before {
  content: "\f271";
}

.fa-calendar-minus-o:before {
  content: "\f272";
}

.fa-calendar-times-o:before {
  content: "\f273";
}

.fa-calendar-check-o:before {
  content: "\f274";
}

.fa-industry:before {
  content: "\f275";
}

.fa-map-pin:before {
  content: "\f276";
}

.fa-map-signs:before {
  content: "\f277";
}

.fa-map-o:before {
  content: "\f278";
}

.fa-map:before {
  content: "\f279";
}

.fa-commenting:before {
  content: "\f27a";
}

.fa-commenting-o:before {
  content: "\f27b";
}

.fa-houzz:before {
  content: "\f27c";
}

.fa-vimeo:before {
  content: "\f27d";
}

.fa-black-tie:before {
  content: "\f27e";
}

.fa-fonticons:before {
  content: "\f280";
}

.fa-reddit-alien:before {
  content: "\f281";
}

.fa-edge:before {
  content: "\f282";
}

.fa-credit-card-alt:before {
  content: "\f283";
}

.fa-codiepie:before {
  content: "\f284";
}

.fa-modx:before {
  content: "\f285";
}

.fa-fort-awesome:before {
  content: "\f286";
}

.fa-usb:before {
  content: "\f287";
}

.fa-product-hunt:before {
  content: "\f288";
}

.fa-mixcloud:before {
  content: "\f289";
}

.fa-scribd:before {
  content: "\f28a";
}

.fa-pause-circle:before {
  content: "\f28b";
}

.fa-pause-circle-o:before {
  content: "\f28c";
}

.fa-stop-circle:before {
  content: "\f28d";
}

.fa-stop-circle-o:before {
  content: "\f28e";
}

.fa-shopping-bag:before {
  content: "\f290";
}

.fa-shopping-basket:before {
  content: "\f291";
}

.fa-hashtag:before {
  content: "\f292";
}

.fa-bluetooth:before {
  content: "\f293";
}

.fa-bluetooth-b:before {
  content: "\f294";
}

.fa-percent:before {
  content: "\f295";
}

.fa-gitlab:before {
  content: "\f296";
}

.fa-wpbeginner:before {
  content: "\f297";
}

.fa-wpforms:before {
  content: "\f298";
}

.fa-envira:before {
  content: "\f299";
}

.fa-universal-access:before {
  content: "\f29a";
}

.fa-wheelchair-alt:before {
  content: "\f29b";
}

.fa-question-circle-o:before {
  content: "\f29c";
}

.fa-blind:before {
  content: "\f29d";
}

.fa-audio-description:before {
  content: "\f29e";
}

.fa-volume-control-phone:before {
  content: "\f2a0";
}

.fa-braille:before {
  content: "\f2a1";
}

.fa-assistive-listening-systems:before {
  content: "\f2a2";
}

.fa-american-sign-language-interpreting:before,
.fa-asl-interpreting:before {
  content: "\f2a3";
}

.fa-deaf:before,
.fa-deafness:before,
.fa-hard-of-hearing:before {
  content: "\f2a4";
}

.fa-glide:before {
  content: "\f2a5";
}

.fa-glide-g:before {
  content: "\f2a6";
}

.fa-sign-language:before,
.fa-signing:before {
  content: "\f2a7";
}

.fa-low-vision:before {
  content: "\f2a8";
}

.fa-viadeo:before {
  content: "\f2a9";
}

.fa-viadeo-square:before {
  content: "\f2aa";
}

.fa-snapchat:before {
  content: "\f2ab";
}

.fa-snapchat-ghost:before {
  content: "\f2ac";
}

.fa-snapchat-square:before {
  content: "\f2ad";
}

.fa-pied-piper:before {
  content: "\f2ae";
}

.fa-first-order:before {
  content: "\f2b0";
}

.fa-yoast:before {
  content: "\f2b1";
}

.fa-themeisle:before {
  content: "\f2b2";
}

.fa-google-plus-circle:before,
.fa-google-plus-official:before {
  content: "\f2b3";
}

.fa-fa:before,
.fa-font-awesome:before {
  content: "\f2b4";
}

.fa-handshake-o:before {
  content: "\f2b5";
}

.fa-envelope-open:before {
  content: "\f2b6";
}

.fa-envelope-open-o:before {
  content: "\f2b7";
}

.fa-linode:before {
  content: "\f2b8";
}

.fa-address-book:before {
  content: "\f2b9";
}

.fa-address-book-o:before {
  content: "\f2ba";
}

.fa-address-card:before,
.fa-vcard:before {
  content: "\f2bb";
}

.fa-address-card-o:before,
.fa-vcard-o:before {
  content: "\f2bc";
}

.fa-user-circle:before {
  content: "\f2bd";
}

.fa-user-circle-o:before {
  content: "\f2be";
}

.fa-user-o:before {
  content: "\f2c0";
}

.fa-id-badge:before {
  content: "\f2c1";
}

.fa-drivers-license:before,
.fa-id-card:before {
  content: "\f2c2";
}

.fa-drivers-license-o:before,
.fa-id-card-o:before {
  content: "\f2c3";
}

.fa-quora:before {
  content: "\f2c4";
}

.fa-free-code-camp:before {
  content: "\f2c5";
}

.fa-telegram:before {
  content: "\f2c6";
}

.fa-thermometer-4:before,
.fa-thermometer-full:before,
.fa-thermometer:before {
  content: "\f2c7";
}

.fa-thermometer-3:before,
.fa-thermometer-three-quarters:before {
  content: "\f2c8";
}

.fa-thermometer-2:before,
.fa-thermometer-half:before {
  content: "\f2c9";
}

.fa-thermometer-1:before,
.fa-thermometer-quarter:before {
  content: "\f2ca";
}

.fa-thermometer-0:before,
.fa-thermometer-empty:before {
  content: "\f2cb";
}

.fa-shower:before {
  content: "\f2cc";
}

.fa-bath:before,
.fa-bathtub:before,
.fa-s15:before {
  content: "\f2cd";
}

.fa-podcast:before {
  content: "\f2ce";
}

.fa-window-maximize:before {
  content: "\f2d0";
}

.fa-window-minimize:before {
  content: "\f2d1";
}

.fa-window-restore:before {
  content: "\f2d2";
}

.fa-times-rectangle:before,
.fa-window-close:before {
  content: "\f2d3";
}

.fa-times-rectangle-o:before,
.fa-window-close-o:before {
  content: "\f2d4";
}

.fa-bandcamp:before {
  content: "\f2d5";
}

.fa-grav:before {
  content: "\f2d6";
}

.fa-etsy:before {
  content: "\f2d7";
}

.fa-imdb:before {
  content: "\f2d8";
}

.fa-ravelry:before {
  content: "\f2d9";
}

.fa-eercast:before {
  content: "\f2da";
}

.fa-microchip:before {
  content: "\f2db";
}

.fa-snowflake-o:before {
  content: "\f2dc";
}

.fa-superpowers:before {
  content: "\f2dd";
}

.fa-wpexplorer:before {
  content: "\f2de";
}

.fa-meetup:before {
  content: "\f2e0";
}

.sr-only {
  clip: rect(0, 0, 0, 0);
  border: 0;
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px;
}

.sr-only-focusable:active,
.sr-only-focusable:focus {
  clip: auto;
  height: auto;
  margin: 0;
  overflow: visible;
  position: static;
  width: auto;
}

@font-face {
  font-family: themify;
  font-style: normal;
  font-weight: 400;
  src: url(/static/media/themify.9bad94440d49256265a5.eot);
  src: url(/static/media/themify.9bad94440d49256265a5.eot?#iefix-fvbane) format("embedded-opentype"),
    url(/static/media/themify.29b39089170885ae2967.woff) format("woff"),
    url(/static/media/themify.eda8b94308c6f538f04a.ttf) format("truetype"),
    url(/static/media/themify.f0fc8c798eac5636249c.svg#themify) format("svg");
}

[class*=" ti-"],
[class^="ti-"] {
  speak: none;
  -webkit-font-feature-settings: normal;
  font-feature-settings: normal;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-family: themify;
  font-style: normal;
  font-variant: normal;
  font-weight: 400;
  line-height: 1;
  text-transform: none;
}

.ti-wand:before {
  content: "\e600";
}

.ti-volume:before {
  content: "\e601";
}

.ti-user:before {
  content: "\e602";
}

.ti-unlock:before {
  content: "\e603";
}

.ti-unlink:before {
  content: "\e604";
}

.ti-trash:before {
  content: "\e605";
}

.ti-thought:before {
  content: "\e606";
}

.ti-target:before {
  content: "\e607";
}

.ti-tag:before {
  content: "\e608";
}

.ti-tablet:before {
  content: "\e609";
}

.ti-star:before {
  content: "\e60a";
}

.ti-spray:before {
  content: "\e60b";
}

.ti-signal:before {
  content: "\e60c";
}

.ti-shopping-cart:before {
  content: "\e60d";
}

.ti-shopping-cart-full:before {
  content: "\e60e";
}

.ti-settings:before {
  content: "\e60f";
}

.ti-search:before {
  content: "\e610";
}

.ti-zoom-in:before {
  content: "\e611";
}

.ti-zoom-out:before {
  content: "\e612";
}

.ti-cut:before {
  content: "\e613";
}

.ti-ruler:before {
  content: "\e614";
}

.ti-ruler-pencil:before {
  content: "\e615";
}

.ti-ruler-alt:before {
  content: "\e616";
}

.ti-bookmark:before {
  content: "\e617";
}

.ti-bookmark-alt:before {
  content: "\e618";
}

.ti-reload:before {
  content: "\e619";
}

.ti-plus:before {
  content: "\e61a";
}

.ti-pin:before {
  content: "\e61b";
}

.ti-pencil:before {
  content: "\e61c";
}

.ti-pencil-alt:before {
  content: "\e61d";
}

.ti-paint-roller:before {
  content: "\e61e";
}

.ti-paint-bucket:before {
  content: "\e61f";
}

.ti-na:before {
  content: "\e620";
}

.ti-mobile:before {
  content: "\e621";
}

.ti-minus:before {
  content: "\e622";
}

.ti-medall:before {
  content: "\e623";
}

.ti-medall-alt:before {
  content: "\e624";
}

.ti-marker:before {
  content: "\e625";
}

.ti-marker-alt:before {
  content: "\e626";
}

.ti-arrow-up:before {
  content: "\e627";
}

.ti-arrow-right:before {
  content: "\e628";
}

.ti-arrow-left:before {
  content: "\e629";
}

.ti-arrow-down:before {
  content: "\e62a";
}

.ti-lock:before {
  content: "\e62b";
}

.ti-location-arrow:before {
  content: "\e62c";
}

.ti-link:before {
  content: "\e62d";
}

.ti-layout:before {
  content: "\e62e";
}

.ti-layers:before {
  content: "\e62f";
}

.ti-layers-alt:before {
  content: "\e630";
}

.ti-key:before {
  content: "\e631";
}

.ti-import:before {
  content: "\e632";
}

.ti-image:before {
  content: "\e633";
}

.ti-heart:before {
  content: "\e634";
}

.ti-heart-broken:before {
  content: "\e635";
}

.ti-hand-stop:before {
  content: "\e636";
}

.ti-hand-open:before {
  content: "\e637";
}

.ti-hand-drag:before {
  content: "\e638";
}

.ti-folder:before {
  content: "\e639";
}

.ti-flag:before {
  content: "\e63a";
}

.ti-flag-alt:before {
  content: "\e63b";
}

.ti-flag-alt-2:before {
  content: "\e63c";
}

.ti-eye:before {
  content: "\e63d";
}

.ti-export:before {
  content: "\e63e";
}

.ti-exchange-vertical:before {
  content: "\e63f";
}

.ti-desktop:before {
  content: "\e640";
}

.ti-cup:before {
  content: "\e641";
}

.ti-crown:before {
  content: "\e642";
}

.ti-comments:before {
  content: "\e643";
}

.ti-comment:before {
  content: "\e644";
}

.ti-comment-alt:before {
  content: "\e645";
}

.ti-close:before {
  content: "\e646";
}

.ti-clip:before {
  content: "\e647";
}

.ti-angle-up:before {
  content: "\e648";
}

.ti-angle-right:before {
  content: "\e649";
}

.ti-angle-left:before {
  content: "\e64a";
}

.ti-angle-down:before {
  content: "\e64b";
}

.ti-check:before {
  content: "\e64c";
}

.ti-check-box:before {
  content: "\e64d";
}

.ti-camera:before {
  content: "\e64e";
}

.ti-announcement:before {
  content: "\e64f";
}

.ti-brush:before {
  content: "\e650";
}

.ti-briefcase:before {
  content: "\e651";
}

.ti-bolt:before {
  content: "\e652";
}

.ti-bolt-alt:before {
  content: "\e653";
}

.ti-blackboard:before {
  content: "\e654";
}

.ti-bag:before {
  content: "\e655";
}

.ti-move:before {
  content: "\e656";
}

.ti-arrows-vertical:before {
  content: "\e657";
}

.ti-arrows-horizontal:before {
  content: "\e658";
}

.ti-fullscreen:before {
  content: "\e659";
}

.ti-arrow-top-right:before {
  content: "\e65a";
}

.ti-arrow-top-left:before {
  content: "\e65b";
}

.ti-arrow-circle-up:before {
  content: "\e65c";
}

.ti-arrow-circle-right:before {
  content: "\e65d";
}

.ti-arrow-circle-left:before {
  content: "\e65e";
}

.ti-arrow-circle-down:before {
  content: "\e65f";
}

.ti-angle-double-up:before {
  content: "\e660";
}

.ti-angle-double-right:before {
  content: "\e661";
}

.ti-angle-double-left:before {
  content: "\e662";
}

.ti-angle-double-down:before {
  content: "\e663";
}

.ti-zip:before {
  content: "\e664";
}

.ti-world:before {
  content: "\e665";
}

.ti-wheelchair:before {
  content: "\e666";
}

.ti-view-list:before {
  content: "\e667";
}

.ti-view-list-alt:before {
  content: "\e668";
}

.ti-view-grid:before {
  content: "\e669";
}

.ti-uppercase:before {
  content: "\e66a";
}

.ti-upload:before {
  content: "\e66b";
}

.ti-underline:before {
  content: "\e66c";
}

.ti-truck:before {
  content: "\e66d";
}

.ti-timer:before {
  content: "\e66e";
}

.ti-ticket:before {
  content: "\e66f";
}

.ti-thumb-up:before {
  content: "\e670";
}

.ti-thumb-down:before {
  content: "\e671";
}

.ti-text:before {
  content: "\e672";
}

.ti-stats-up:before {
  content: "\e673";
}

.ti-stats-down:before {
  content: "\e674";
}

.ti-split-v:before {
  content: "\e675";
}

.ti-split-h:before {
  content: "\e676";
}

.ti-smallcap:before {
  content: "\e677";
}

.ti-shine:before {
  content: "\e678";
}

.ti-shift-right:before {
  content: "\e679";
}

.ti-shift-left:before {
  content: "\e67a";
}

.ti-shield:before {
  content: "\e67b";
}

.ti-notepad:before {
  content: "\e67c";
}

.ti-server:before {
  content: "\e67d";
}

.ti-quote-right:before {
  content: "\e67e";
}

.ti-quote-left:before {
  content: "\e67f";
}

.ti-pulse:before {
  content: "\e680";
}

.ti-printer:before {
  content: "\e681";
}

.ti-power-off:before {
  content: "\e682";
}

.ti-plug:before {
  content: "\e683";
}

.ti-pie-chart:before {
  content: "\e684";
}

.ti-paragraph:before {
  content: "\e685";
}

.ti-panel:before {
  content: "\e686";
}

.ti-package:before {
  content: "\e687";
}

.ti-music:before {
  content: "\e688";
}

.ti-music-alt:before {
  content: "\e689";
}

.ti-mouse:before {
  content: "\e68a";
}

.ti-mouse-alt:before {
  content: "\e68b";
}

.ti-money:before {
  content: "\e68c";
}

.ti-microphone:before {
  content: "\e68d";
}

.ti-menu:before {
  content: "\e68e";
}

.ti-menu-alt:before {
  content: "\e68f";
}

.ti-map:before {
  content: "\e690";
}

.ti-map-alt:before {
  content: "\e691";
}

.ti-loop:before {
  content: "\e692";
}

.ti-location-pin:before {
  content: "\e693";
}

.ti-list:before {
  content: "\e694";
}

.ti-light-bulb:before {
  content: "\e695";
}

.ti-Italic:before {
  content: "\e696";
}

.ti-info:before {
  content: "\e697";
}

.ti-infinite:before {
  content: "\e698";
}

.ti-id-badge:before {
  content: "\e699";
}

.ti-hummer:before {
  content: "\e69a";
}

.ti-home:before {
  content: "\e69b";
}

.ti-help:before {
  content: "\e69c";
}

.ti-headphone:before {
  content: "\e69d";
}

.ti-harddrives:before {
  content: "\e69e";
}

.ti-harddrive:before {
  content: "\e69f";
}

.ti-gift:before {
  content: "\e6a0";
}

.ti-game:before {
  content: "\e6a1";
}

.ti-filter:before {
  content: "\e6a2";
}

.ti-files:before {
  content: "\e6a3";
}

.ti-file:before {
  content: "\e6a4";
}

.ti-eraser:before {
  content: "\e6a5";
}

.ti-envelope:before {
  content: "\e6a6";
}

.ti-download:before {
  content: "\e6a7";
}

.ti-direction:before {
  content: "\e6a8";
}

.ti-direction-alt:before {
  content: "\e6a9";
}

.ti-dashboard:before {
  content: "\e6aa";
}

.ti-control-stop:before {
  content: "\e6ab";
}

.ti-control-shuffle:before {
  content: "\e6ac";
}

.ti-control-play:before {
  content: "\e6ad";
}

.ti-control-pause:before {
  content: "\e6ae";
}

.ti-control-forward:before {
  content: "\e6af";
}

.ti-control-backward:before {
  content: "\e6b0";
}

.ti-cloud:before {
  content: "\e6b1";
}

.ti-cloud-up:before {
  content: "\e6b2";
}

.ti-cloud-down:before {
  content: "\e6b3";
}

.ti-clipboard:before {
  content: "\e6b4";
}

.ti-car:before {
  content: "\e6b5";
}

.ti-calendar:before {
  content: "\e6b6";
}

.ti-book:before {
  content: "\e6b7";
}

.ti-bell:before {
  content: "\e6b8";
}

.ti-basketball:before {
  content: "\e6b9";
}

.ti-bar-chart:before {
  content: "\e6ba";
}

.ti-bar-chart-alt:before {
  content: "\e6bb";
}

.ti-back-right:before {
  content: "\e6bc";
}

.ti-back-left:before {
  content: "\e6bd";
}

.ti-arrows-corner:before {
  content: "\e6be";
}

.ti-archive:before {
  content: "\e6bf";
}

.ti-anchor:before {
  content: "\e6c0";
}

.ti-align-right:before {
  content: "\e6c1";
}

.ti-align-left:before {
  content: "\e6c2";
}

.ti-align-justify:before {
  content: "\e6c3";
}

.ti-align-center:before {
  content: "\e6c4";
}

.ti-alert:before {
  content: "\e6c5";
}

.ti-alarm-clock:before {
  content: "\e6c6";
}

.ti-agenda:before {
  content: "\e6c7";
}

.ti-write:before {
  content: "\e6c8";
}

.ti-window:before {
  content: "\e6c9";
}

.ti-widgetized:before {
  content: "\e6ca";
}

.ti-widget:before {
  content: "\e6cb";
}

.ti-widget-alt:before {
  content: "\e6cc";
}

.ti-wallet:before {
  content: "\e6cd";
}

.ti-video-clapper:before {
  content: "\e6ce";
}

.ti-video-camera:before {
  content: "\e6cf";
}

.ti-vector:before {
  content: "\e6d0";
}

.ti-themify-logo:before {
  content: "\e6d1";
}

.ti-themify-favicon:before {
  content: "\e6d2";
}

.ti-themify-favicon-alt:before {
  content: "\e6d3";
}

.ti-support:before {
  content: "\e6d4";
}

.ti-stamp:before {
  content: "\e6d5";
}

.ti-split-v-alt:before {
  content: "\e6d6";
}

.ti-slice:before {
  content: "\e6d7";
}

.ti-shortcode:before {
  content: "\e6d8";
}

.ti-shift-right-alt:before {
  content: "\e6d9";
}

.ti-shift-left-alt:before {
  content: "\e6da";
}

.ti-ruler-alt-2:before {
  content: "\e6db";
}

.ti-receipt:before {
  content: "\e6dc";
}

.ti-pin2:before {
  content: "\e6dd";
}

.ti-pin-alt:before {
  content: "\e6de";
}

.ti-pencil-alt2:before {
  content: "\e6df";
}

.ti-palette:before {
  content: "\e6e0";
}

.ti-more:before {
  content: "\e6e1";
}

.ti-more-alt:before {
  content: "\e6e2";
}

.ti-microphone-alt:before {
  content: "\e6e3";
}

.ti-magnet:before {
  content: "\e6e4";
}

.ti-line-double:before {
  content: "\e6e5";
}

.ti-line-dotted:before {
  content: "\e6e6";
}

.ti-line-dashed:before {
  content: "\e6e7";
}

.ti-layout-width-full:before {
  content: "\e6e8";
}

.ti-layout-width-default:before {
  content: "\e6e9";
}

.ti-layout-width-default-alt:before {
  content: "\e6ea";
}

.ti-layout-tab:before {
  content: "\e6eb";
}

.ti-layout-tab-window:before {
  content: "\e6ec";
}

.ti-layout-tab-v:before {
  content: "\e6ed";
}

.ti-layout-tab-min:before {
  content: "\e6ee";
}

.ti-layout-slider:before {
  content: "\e6ef";
}

.ti-layout-slider-alt:before {
  content: "\e6f0";
}

.ti-layout-sidebar-right:before {
  content: "\e6f1";
}

.ti-layout-sidebar-none:before {
  content: "\e6f2";
}

.ti-layout-sidebar-left:before {
  content: "\e6f3";
}

.ti-layout-placeholder:before {
  content: "\e6f4";
}

.ti-layout-menu:before {
  content: "\e6f5";
}

.ti-layout-menu-v:before {
  content: "\e6f6";
}

.ti-layout-menu-separated:before {
  content: "\e6f7";
}

.ti-layout-menu-full:before {
  content: "\e6f8";
}

.ti-layout-media-right-alt:before {
  content: "\e6f9";
}

.ti-layout-media-right:before {
  content: "\e6fa";
}

.ti-layout-media-overlay:before {
  content: "\e6fb";
}

.ti-layout-media-overlay-alt:before {
  content: "\e6fc";
}

.ti-layout-media-overlay-alt-2:before {
  content: "\e6fd";
}

.ti-layout-media-left-alt:before {
  content: "\e6fe";
}

.ti-layout-media-left:before {
  content: "\e6ff";
}

.ti-layout-media-center-alt:before {
  content: "\e700";
}

.ti-layout-media-center:before {
  content: "\e701";
}

.ti-layout-list-thumb:before {
  content: "\e702";
}

.ti-layout-list-thumb-alt:before {
  content: "\e703";
}

.ti-layout-list-post:before {
  content: "\e704";
}

.ti-layout-list-large-image:before {
  content: "\e705";
}

.ti-layout-line-solid:before {
  content: "\e706";
}

.ti-layout-grid4:before {
  content: "\e707";
}

.ti-layout-grid3:before {
  content: "\e708";
}

.ti-layout-grid2:before {
  content: "\e709";
}

.ti-layout-grid2-thumb:before {
  content: "\e70a";
}

.ti-layout-cta-right:before {
  content: "\e70b";
}

.ti-layout-cta-left:before {
  content: "\e70c";
}

.ti-layout-cta-center:before {
  content: "\e70d";
}

.ti-layout-cta-btn-right:before {
  content: "\e70e";
}

.ti-layout-cta-btn-left:before {
  content: "\e70f";
}

.ti-layout-column4:before {
  content: "\e710";
}

.ti-layout-column3:before {
  content: "\e711";
}

.ti-layout-column2:before {
  content: "\e712";
}

.ti-layout-accordion-separated:before {
  content: "\e713";
}

.ti-layout-accordion-merged:before {
  content: "\e714";
}

.ti-layout-accordion-list:before {
  content: "\e715";
}

.ti-ink-pen:before {
  content: "\e716";
}

.ti-info-alt:before {
  content: "\e717";
}

.ti-help-alt:before {
  content: "\e718";
}

.ti-headphone-alt:before {
  content: "\e719";
}

.ti-hand-point-up:before {
  content: "\e71a";
}

.ti-hand-point-right:before {
  content: "\e71b";
}

.ti-hand-point-left:before {
  content: "\e71c";
}

.ti-hand-point-down:before {
  content: "\e71d";
}

.ti-gallery:before {
  content: "\e71e";
}

.ti-face-smile:before {
  content: "\e71f";
}

.ti-face-sad:before {
  content: "\e720";
}

.ti-credit-card:before {
  content: "\e721";
}

.ti-control-skip-forward:before {
  content: "\e722";
}

.ti-control-skip-backward:before {
  content: "\e723";
}

.ti-control-record:before {
  content: "\e724";
}

.ti-control-eject:before {
  content: "\e725";
}

.ti-comments-smiley:before {
  content: "\e726";
}

.ti-brush-alt:before {
  content: "\e727";
}

.ti-youtube:before {
  content: "\e728";
}

.ti-vimeo:before {
  content: "\e729";
}

.ti-twitter:before {
  content: "\e72a";
}

.ti-time:before {
  content: "\e72b";
}

.ti-tumblr:before {
  content: "\e72c";
}

.ti-skype:before {
  content: "\e72d";
}

.ti-share:before {
  content: "\e72e";
}

.ti-share-alt:before {
  content: "\e72f";
}

.ti-rocket:before {
  content: "\e730";
}

.ti-pinterest:before {
  content: "\e731";
}

.ti-new-window:before {
  content: "\e732";
}

.ti-microsoft:before {
  content: "\e733";
}

.ti-list-ol:before {
  content: "\e734";
}

.ti-linkedin:before {
  content: "\e735";
}

.ti-layout-sidebar-2:before {
  content: "\e736";
}

.ti-layout-grid4-alt:before {
  content: "\e737";
}

.ti-layout-grid3-alt:before {
  content: "\e738";
}

.ti-layout-grid2-alt:before {
  content: "\e739";
}

.ti-layout-column4-alt:before {
  content: "\e73a";
}

.ti-layout-column3-alt:before {
  content: "\e73b";
}

.ti-layout-column2-alt:before {
  content: "\e73c";
}

.ti-instagram:before {
  content: "\e73d";
}

.ti-google:before {
  content: "\e73e";
}

.ti-github:before {
  content: "\e73f";
}

.ti-flickr:before {
  content: "\e740";
}

.ti-facebook:before {
  content: "\e741";
}

.ti-dropbox:before {
  content: "\e742";
}

.ti-dribbble:before {
  content: "\e743";
}

.ti-apple:before {
  content: "\e744";
}

.ti-android:before {
  content: "\e745";
}

.ti-save:before {
  content: "\e746";
}

.ti-save-alt:before {
  content: "\e747";
}

.ti-yahoo:before {
  content: "\e748";
}

.ti-wordpress:before {
  content: "\e749";
}

.ti-vimeo-alt:before {
  content: "\e74a";
}

.ti-twitter-alt:before {
  content: "\e74b";
}

.ti-tumblr-alt:before {
  content: "\e74c";
}

.ti-trello:before {
  content: "\e74d";
}

.ti-stack-overflow:before {
  content: "\e74e";
}

.ti-soundcloud:before {
  content: "\e74f";
}

.ti-sharethis:before {
  content: "\e750";
}

.ti-sharethis-alt:before {
  content: "\e751";
}

.ti-reddit:before {
  content: "\e752";
}

.ti-pinterest-alt:before {
  content: "\e753";
}

.ti-microsoft-alt:before {
  content: "\e754";
}

.ti-linux:before {
  content: "\e755";
}

.ti-jsfiddle:before {
  content: "\e756";
}

.ti-joomla:before {
  content: "\e757";
}

.ti-html5:before {
  content: "\e758";
}

.ti-flickr-alt:before {
  content: "\e759";
}

.ti-email:before {
  content: "\e75a";
}

.ti-drupal:before {
  content: "\e75b";
}

.ti-dropbox-alt:before {
  content: "\e75c";
}

.ti-css3:before {
  content: "\e75d";
}

.ti-rss:before {
  content: "\e75e";
}

.ti-rss-alt:before {
  content: "\e75f";
}

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

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

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

.animated.bounceIn,
.animated.bounceOut,
.animated.flipOutX,
.animated.flipOutY {
  -webkit-animation-duration: 0.75s;
  animation-duration: 0.75s;
}

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

@-webkit-keyframes flash {

  0%,
  50%,
  to {
    opacity: 1;
  }

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

@keyframes flash {

  0%,
  50%,
  to {
    opacity: 1;
  }

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

.flash {
  -webkit-animation-name: flash;
  animation-name: flash;
}

@-webkit-keyframes rubberBand {
  0% {
    -webkit-transform: scaleX(1);
    transform: scaleX(1);
  }

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

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

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

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

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

  to {
    -webkit-transform: scaleX(1);
    transform: scaleX(1);
  }
}

@keyframes rubberBand {
  0% {
    -webkit-transform: scaleX(1);
    transform: scaleX(1);
  }

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

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

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

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

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

  to {
    -webkit-transform: scaleX(1);
    transform: scaleX(1);
  }
}

.rubberBand {
  -webkit-animation-name: rubberBand;
  animation-name: rubberBand;
}

@-webkit-keyframes shake {

  0%,
  to {
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }

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

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

@keyframes shake {

  0%,
  to {
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }

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

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

.shake {
  -webkit-animation-name: shake;
  animation-name: shake;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

@-webkit-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);
  }

  to {
    -webkit-transform: rotate(0deg);
    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);
  }

  to {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
}

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

@-webkit-keyframes tada {
  0% {
    -webkit-transform: scaleX(1);
    transform: scaleX(1);
  }

  10%,
  20% {
    -webkit-transform: scale3d(0.9, 0.9, 0.9) rotate(-3deg);
    transform: scale3d(0.9, 0.9, 0.9) rotate(-3deg);
  }

  30%,
  50%,
  70%,
  90% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1) rotate(3deg);
    transform: scale3d(1.1, 1.1, 1.1) rotate(3deg);
  }

  40%,
  60%,
  80% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1) rotate(-3deg);
    transform: scale3d(1.1, 1.1, 1.1) rotate(-3deg);
  }

  to {
    -webkit-transform: scaleX(1);
    transform: scaleX(1);
  }
}

@keyframes tada {
  0% {
    -webkit-transform: scaleX(1);
    transform: scaleX(1);
  }

  10%,
  20% {
    -webkit-transform: scale3d(0.9, 0.9, 0.9) rotate(-3deg);
    transform: scale3d(0.9, 0.9, 0.9) rotate(-3deg);
  }

  30%,
  50%,
  70%,
  90% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1) rotate(3deg);
    transform: scale3d(1.1, 1.1, 1.1) rotate(3deg);
  }

  40%,
  60%,
  80% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1) rotate(-3deg);
    transform: scale3d(1.1, 1.1, 1.1) rotate(-3deg);
  }

  to {
    -webkit-transform: scaleX(1);
    transform: scaleX(1);
  }
}

.tada {
  -webkit-animation-name: tada;
  animation-name: tada;
}

@-webkit-keyframes wobble {
  0% {
    -webkit-transform: none;
    transform: none;
  }

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

  30% {
    -webkit-transform: translate3d(20%, 0, 0) rotate(3deg);
    transform: translate3d(20%, 0, 0) rotate(3deg);
  }

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

  60% {
    -webkit-transform: translate3d(10%, 0, 0) rotate(2deg);
    transform: translate3d(10%, 0, 0) rotate(2deg);
  }

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

  to {
    -webkit-transform: none;
    transform: none;
  }
}

@keyframes wobble {
  0% {
    -webkit-transform: none;
    transform: none;
  }

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

  30% {
    -webkit-transform: translate3d(20%, 0, 0) rotate(3deg);
    transform: translate3d(20%, 0, 0) rotate(3deg);
  }

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

  60% {
    -webkit-transform: translate3d(10%, 0, 0) rotate(2deg);
    transform: translate3d(10%, 0, 0) rotate(2deg);
  }

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

  to {
    -webkit-transform: none;
    transform: none;
  }
}

.wobble {
  -webkit-animation-name: wobble;
  animation-name: wobble;
}

@-webkit-keyframes jello {

  0%,
  11.1%,
  to {
    -webkit-transform: none;
    transform: none;
  }

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

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

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

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

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

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

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

@keyframes jello {

  0%,
  11.1%,
  to {
    -webkit-transform: none;
    transform: none;
  }

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

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

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

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

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

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

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

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

@-webkit-keyframes bounceIn {

  0%,
  20%,
  40%,
  60%,
  80%,
  to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }

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

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

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

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

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

  to {
    opacity: 1;
    -webkit-transform: scaleX(1);
    transform: scaleX(1);
  }
}

@keyframes bounceIn {

  0%,
  20%,
  40%,
  60%,
  80%,
  to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }

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

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

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

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

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

  to {
    opacity: 1;
    -webkit-transform: scaleX(1);
    transform: scaleX(1);
  }
}

.bounceIn {
  -webkit-animation-name: bounceIn;
  animation-name: bounceIn;
}

@-webkit-keyframes bounceInDown {

  0%,
  60%,
  75%,
  90%,
  to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }

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

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

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

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

  to {
    -webkit-transform: none;
    transform: none;
  }
}

@keyframes bounceInDown {

  0%,
  60%,
  75%,
  90%,
  to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }

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

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

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

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

  to {
    -webkit-transform: none;
    transform: none;
  }
}

.bounceInDown {
  -webkit-animation-name: bounceInDown;
  animation-name: bounceInDown;
}

@-webkit-keyframes bounceInLeft {

  0%,
  60%,
  75%,
  90%,
  to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }

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

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

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

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

  to {
    -webkit-transform: none;
    transform: none;
  }
}

@keyframes bounceInLeft {

  0%,
  60%,
  75%,
  90%,
  to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }

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

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

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

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

  to {
    -webkit-transform: none;
    transform: none;
  }
}

.bounceInLeft {
  -webkit-animation-name: bounceInLeft;
  animation-name: bounceInLeft;
}

@-webkit-keyframes bounceInRight {

  0%,
  60%,
  75%,
  90%,
  to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }

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

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

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

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

  to {
    -webkit-transform: none;
    transform: none;
  }
}

@keyframes bounceInRight {

  0%,
  60%,
  75%,
  90%,
  to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }

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

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

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

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

  to {
    -webkit-transform: none;
    transform: none;
  }
}

.bounceInRight {
  -webkit-animation-name: bounceInRight;
  animation-name: bounceInRight;
}

@-webkit-keyframes bounceInUp {

  0%,
  60%,
  75%,
  90%,
  to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }

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

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

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

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

  to {
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
}

@keyframes bounceInUp {

  0%,
  60%,
  75%,
  90%,
  to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }

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

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

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

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

  to {
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
}

.bounceInUp {
  -webkit-animation-name: bounceInUp;
  animation-name: bounceInUp;
}

@-webkit-keyframes bounceOut {
  20% {
    -webkit-transform: scale3d(0.9, 0.9, 0.9);
    transform: scale3d(0.9, 0.9, 0.9);
  }

  50%,
  55% {
    opacity: 1;
    -webkit-transform: scale3d(1.1, 1.1, 1.1);
    transform: scale3d(1.1, 1.1, 1.1);
  }

  to {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }
}

@keyframes bounceOut {
  20% {
    -webkit-transform: scale3d(0.9, 0.9, 0.9);
    transform: scale3d(0.9, 0.9, 0.9);
  }

  50%,
  55% {
    opacity: 1;
    -webkit-transform: scale3d(1.1, 1.1, 1.1);
    transform: scale3d(1.1, 1.1, 1.1);
  }

  to {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }
}

.bounceOut {
  -webkit-animation-name: bounceOut;
  animation-name: bounceOut;
}

@-webkit-keyframes bounceOutDown {
  20% {
    -webkit-transform: translate3d(0, 10px, 0);
    transform: translate3d(0, 10px, 0);
  }

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

  to {
    opacity: 0;
    -webkit-transform: translate3d(0, 2000px, 0);
    transform: translate3d(0, 2000px, 0);
  }
}

@keyframes bounceOutDown {
  20% {
    -webkit-transform: translate3d(0, 10px, 0);
    transform: translate3d(0, 10px, 0);
  }

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

  to {
    opacity: 0;
    -webkit-transform: translate3d(0, 2000px, 0);
    transform: translate3d(0, 2000px, 0);
  }
}

.bounceOutDown {
  -webkit-animation-name: bounceOutDown;
  animation-name: bounceOutDown;
}

@-webkit-keyframes bounceOutLeft {
  20% {
    opacity: 1;
    -webkit-transform: translate3d(20px, 0, 0);
    transform: translate3d(20px, 0, 0);
  }

  to {
    opacity: 0;
    -webkit-transform: translate3d(-2000px, 0, 0);
    transform: translate3d(-2000px, 0, 0);
  }
}

@keyframes bounceOutLeft {
  20% {
    opacity: 1;
    -webkit-transform: translate3d(20px, 0, 0);
    transform: translate3d(20px, 0, 0);
  }

  to {
    opacity: 0;
    -webkit-transform: translate3d(-2000px, 0, 0);
    transform: translate3d(-2000px, 0, 0);
  }
}

.bounceOutLeft {
  -webkit-animation-name: bounceOutLeft;
  animation-name: bounceOutLeft;
}

@-webkit-keyframes bounceOutRight {
  20% {
    opacity: 1;
    -webkit-transform: translate3d(-20px, 0, 0);
    transform: translate3d(-20px, 0, 0);
  }

  to {
    opacity: 0;
    -webkit-transform: translate3d(2000px, 0, 0);
    transform: translate3d(2000px, 0, 0);
  }
}

@keyframes bounceOutRight {
  20% {
    opacity: 1;
    -webkit-transform: translate3d(-20px, 0, 0);
    transform: translate3d(-20px, 0, 0);
  }

  to {
    opacity: 0;
    -webkit-transform: translate3d(2000px, 0, 0);
    transform: translate3d(2000px, 0, 0);
  }
}

.bounceOutRight {
  -webkit-animation-name: bounceOutRight;
  animation-name: bounceOutRight;
}

@-webkit-keyframes bounceOutUp {
  20% {
    -webkit-transform: translate3d(0, -10px, 0);
    transform: translate3d(0, -10px, 0);
  }

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

  to {
    opacity: 0;
    -webkit-transform: translate3d(0, -2000px, 0);
    transform: translate3d(0, -2000px, 0);
  }
}

@keyframes bounceOutUp {
  20% {
    -webkit-transform: translate3d(0, -10px, 0);
    transform: translate3d(0, -10px, 0);
  }

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

  to {
    opacity: 0;
    -webkit-transform: translate3d(0, -2000px, 0);
    transform: translate3d(0, -2000px, 0);
  }
}

.bounceOutUp {
  -webkit-animation-name: bounceOutUp;
  animation-name: bounceOutUp;
}

@-webkit-keyframes fadeIn {
  0% {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@keyframes fadeIn {
  0% {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

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

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

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

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

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

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

@-webkit-keyframes fadeInDownBig {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, -2000px, 0);
    transform: translate3d(0, -2000px, 0);
  }

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

@keyframes fadeInDownBig {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, -2000px, 0);
    transform: translate3d(0, -2000px, 0);
  }

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

.fadeInDownBig {
  -webkit-animation-name: fadeInDownBig;
  animation-name: fadeInDownBig;
}

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

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

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

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

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

@-webkit-keyframes fadeInLeftBig {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(-2000px, 0, 0);
    transform: translate3d(-2000px, 0, 0);
  }

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

@keyframes fadeInLeftBig {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(-2000px, 0, 0);
    transform: translate3d(-2000px, 0, 0);
  }

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

.fadeInLeftBig {
  -webkit-animation-name: fadeInLeftBig;
  animation-name: fadeInLeftBig;
}

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

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

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

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

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

@-webkit-keyframes fadeInRightBig {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(2000px, 0, 0);
    transform: translate3d(2000px, 0, 0);
  }

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

@keyframes fadeInRightBig {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(2000px, 0, 0);
    transform: translate3d(2000px, 0, 0);
  }

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

.fadeInRightBig {
  -webkit-animation-name: fadeInRightBig;
  animation-name: fadeInRightBig;
}

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

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

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

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

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

@-webkit-keyframes fadeInUpBig {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, 2000px, 0);
    transform: translate3d(0, 2000px, 0);
  }

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

@keyframes fadeInUpBig {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, 2000px, 0);
    transform: translate3d(0, 2000px, 0);
  }

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

.fadeInUpBig {
  -webkit-animation-name: fadeInUpBig;
  animation-name: fadeInUpBig;
}

@-webkit-keyframes fadeOut {
  0% {
    opacity: 1;
  }

  to {
    opacity: 0;
  }
}

@keyframes fadeOut {
  0% {
    opacity: 1;
  }

  to {
    opacity: 0;
  }
}

.fadeOut {
  -webkit-animation-name: fadeOut;
  animation-name: fadeOut;
}

@-webkit-keyframes fadeOutDown {
  0% {
    opacity: 1;
  }

  to {
    opacity: 0;
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
  }
}

@keyframes fadeOutDown {
  0% {
    opacity: 1;
  }

  to {
    opacity: 0;
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
  }
}

.fadeOutDown {
  -webkit-animation-name: fadeOutDown;
  animation-name: fadeOutDown;
}

@-webkit-keyframes fadeOutDownBig {
  0% {
    opacity: 1;
  }

  to {
    opacity: 0;
    -webkit-transform: translate3d(0, 2000px, 0);
    transform: translate3d(0, 2000px, 0);
  }
}

@keyframes fadeOutDownBig {
  0% {
    opacity: 1;
  }

  to {
    opacity: 0;
    -webkit-transform: translate3d(0, 2000px, 0);
    transform: translate3d(0, 2000px, 0);
  }
}

.fadeOutDownBig {
  -webkit-animation-name: fadeOutDownBig;
  animation-name: fadeOutDownBig;
}

@-webkit-keyframes fadeOutLeft {
  0% {
    opacity: 1;
  }

  to {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
  }
}

@keyframes fadeOutLeft {
  0% {
    opacity: 1;
  }

  to {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
  }
}

.fadeOutLeft {
  -webkit-animation-name: fadeOutLeft;
  animation-name: fadeOutLeft;
}

@-webkit-keyframes fadeOutLeftBig {
  0% {
    opacity: 1;
  }

  to {
    opacity: 0;
    -webkit-transform: translate3d(-2000px, 0, 0);
    transform: translate3d(-2000px, 0, 0);
  }
}

@keyframes fadeOutLeftBig {
  0% {
    opacity: 1;
  }

  to {
    opacity: 0;
    -webkit-transform: translate3d(-2000px, 0, 0);
    transform: translate3d(-2000px, 0, 0);
  }
}

.fadeOutLeftBig {
  -webkit-animation-name: fadeOutLeftBig;
  animation-name: fadeOutLeftBig;
}

@-webkit-keyframes fadeOutRight {
  0% {
    opacity: 1;
  }

  to {
    opacity: 0;
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
  }
}

@keyframes fadeOutRight {
  0% {
    opacity: 1;
  }

  to {
    opacity: 0;
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
  }
}

.fadeOutRight {
  -webkit-animation-name: fadeOutRight;
  animation-name: fadeOutRight;
}

@-webkit-keyframes fadeOutRightBig {
  0% {
    opacity: 1;
  }

  to {
    opacity: 0;
    -webkit-transform: translate3d(2000px, 0, 0);
    transform: translate3d(2000px, 0, 0);
  }
}

@keyframes fadeOutRightBig {
  0% {
    opacity: 1;
  }

  to {
    opacity: 0;
    -webkit-transform: translate3d(2000px, 0, 0);
    transform: translate3d(2000px, 0, 0);
  }
}

.fadeOutRightBig {
  -webkit-animation-name: fadeOutRightBig;
  animation-name: fadeOutRightBig;
}

@-webkit-keyframes fadeOutUp {
  0% {
    opacity: 1;
  }

  to {
    opacity: 0;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
  }
}

@keyframes fadeOutUp {
  0% {
    opacity: 1;
  }

  to {
    opacity: 0;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
  }
}

.fadeOutUp {
  -webkit-animation-name: fadeOutUp;
  animation-name: fadeOutUp;
}

@-webkit-keyframes fadeOutUpBig {
  0% {
    opacity: 1;
  }

  to {
    opacity: 0;
    -webkit-transform: translate3d(0, -2000px, 0);
    transform: translate3d(0, -2000px, 0);
  }
}

@keyframes fadeOutUpBig {
  0% {
    opacity: 1;
  }

  to {
    opacity: 0;
    -webkit-transform: translate3d(0, -2000px, 0);
    transform: translate3d(0, -2000px, 0);
  }
}

.fadeOutUpBig {
  -webkit-animation-name: fadeOutUpBig;
  animation-name: fadeOutUpBig;
}

@-webkit-keyframes flip {
  0% {
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
    -webkit-transform: perspective(400px) rotateY(-1turn);
    transform: perspective(400px) rotateY(-1turn);
  }

  40% {
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
    -webkit-transform: perspective(400px) translateZ(150px) rotateY(-190deg);
    transform: perspective(400px) translateZ(150px) rotateY(-190deg);
  }

  50% {
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
    -webkit-transform: perspective(400px) translateZ(150px) rotateY(-170deg);
    transform: perspective(400px) translateZ(150px) rotateY(-170deg);
  }

  80% {
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
    -webkit-transform: perspective(400px) scale3d(0.95, 0.95, 0.95);
    transform: perspective(400px) scale3d(0.95, 0.95, 0.95);
  }

  to {
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
  }
}

@keyframes flip {
  0% {
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
    -webkit-transform: perspective(400px) rotateY(-1turn);
    transform: perspective(400px) rotateY(-1turn);
  }

  40% {
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
    -webkit-transform: perspective(400px) translateZ(150px) rotateY(-190deg);
    transform: perspective(400px) translateZ(150px) rotateY(-190deg);
  }

  50% {
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
    -webkit-transform: perspective(400px) translateZ(150px) rotateY(-170deg);
    transform: perspective(400px) translateZ(150px) rotateY(-170deg);
  }

  80% {
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
    -webkit-transform: perspective(400px) scale3d(0.95, 0.95, 0.95);
    transform: perspective(400px) scale3d(0.95, 0.95, 0.95);
  }

  to {
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
  }
}

.animated.flip {
  -webkit-animation-name: flip;
  animation-name: flip;
  -webkit-backface-visibility: visible;
  backface-visibility: visible;
}

@-webkit-keyframes flipInX {
  0% {
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
    opacity: 0;
    -webkit-transform: perspective(400px) rotateX(90deg);
    transform: perspective(400px) rotateX(90deg);
  }

  40% {
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
    -webkit-transform: perspective(400px) rotateX(-20deg);
    transform: perspective(400px) rotateX(-20deg);
  }

  60% {
    opacity: 1;
    -webkit-transform: perspective(400px) rotateX(10deg);
    transform: perspective(400px) rotateX(10deg);
  }

  80% {
    -webkit-transform: perspective(400px) rotateX(-5deg);
    transform: perspective(400px) rotateX(-5deg);
  }

  to {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
  }
}

@keyframes flipInX {
  0% {
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
    opacity: 0;
    -webkit-transform: perspective(400px) rotateX(90deg);
    transform: perspective(400px) rotateX(90deg);
  }

  40% {
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
    -webkit-transform: perspective(400px) rotateX(-20deg);
    transform: perspective(400px) rotateX(-20deg);
  }

  60% {
    opacity: 1;
    -webkit-transform: perspective(400px) rotateX(10deg);
    transform: perspective(400px) rotateX(10deg);
  }

  80% {
    -webkit-transform: perspective(400px) rotateX(-5deg);
    transform: perspective(400px) rotateX(-5deg);
  }

  to {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
  }
}

.flipInX {
  -webkit-animation-name: flipInX;
  animation-name: flipInX;
  -webkit-backface-visibility: visible !important;
  backface-visibility: visible !important;
}

@-webkit-keyframes flipInY {
  0% {
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
    opacity: 0;
    -webkit-transform: perspective(400px) rotateY(90deg);
    transform: perspective(400px) rotateY(90deg);
  }

  40% {
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
    -webkit-transform: perspective(400px) rotateY(-20deg);
    transform: perspective(400px) rotateY(-20deg);
  }

  60% {
    opacity: 1;
    -webkit-transform: perspective(400px) rotateY(10deg);
    transform: perspective(400px) rotateY(10deg);
  }

  80% {
    -webkit-transform: perspective(400px) rotateY(-5deg);
    transform: perspective(400px) rotateY(-5deg);
  }

  to {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
  }
}

@keyframes flipInY {
  0% {
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
    opacity: 0;
    -webkit-transform: perspective(400px) rotateY(90deg);
    transform: perspective(400px) rotateY(90deg);
  }

  40% {
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
    -webkit-transform: perspective(400px) rotateY(-20deg);
    transform: perspective(400px) rotateY(-20deg);
  }

  60% {
    opacity: 1;
    -webkit-transform: perspective(400px) rotateY(10deg);
    transform: perspective(400px) rotateY(10deg);
  }

  80% {
    -webkit-transform: perspective(400px) rotateY(-5deg);
    transform: perspective(400px) rotateY(-5deg);
  }

  to {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
  }
}

.flipInY {
  -webkit-animation-name: flipInY;
  animation-name: flipInY;
  -webkit-backface-visibility: visible !important;
  backface-visibility: visible !important;
}

@-webkit-keyframes flipOutX {
  0% {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
  }

  30% {
    opacity: 1;
    -webkit-transform: perspective(400px) rotateX(-20deg);
    transform: perspective(400px) rotateX(-20deg);
  }

  to {
    opacity: 0;
    -webkit-transform: perspective(400px) rotateX(90deg);
    transform: perspective(400px) rotateX(90deg);
  }
}

@keyframes flipOutX {
  0% {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
  }

  30% {
    opacity: 1;
    -webkit-transform: perspective(400px) rotateX(-20deg);
    transform: perspective(400px) rotateX(-20deg);
  }

  to {
    opacity: 0;
    -webkit-transform: perspective(400px) rotateX(90deg);
    transform: perspective(400px) rotateX(90deg);
  }
}

.flipOutX {
  -webkit-animation-name: flipOutX;
  animation-name: flipOutX;
  -webkit-backface-visibility: visible !important;
  backface-visibility: visible !important;
}

@-webkit-keyframes flipOutY {
  0% {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
  }

  30% {
    opacity: 1;
    -webkit-transform: perspective(400px) rotateY(-15deg);
    transform: perspective(400px) rotateY(-15deg);
  }

  to {
    opacity: 0;
    -webkit-transform: perspective(400px) rotateY(90deg);
    transform: perspective(400px) rotateY(90deg);
  }
}

@keyframes flipOutY {
  0% {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
  }

  30% {
    opacity: 1;
    -webkit-transform: perspective(400px) rotateY(-15deg);
    transform: perspective(400px) rotateY(-15deg);
  }

  to {
    opacity: 0;
    -webkit-transform: perspective(400px) rotateY(90deg);
    transform: perspective(400px) rotateY(90deg);
  }
}

.flipOutY {
  -webkit-animation-name: flipOutY;
  animation-name: flipOutY;
  -webkit-backface-visibility: visible !important;
  backface-visibility: visible !important;
}

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

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

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

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

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

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

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

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

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

@-webkit-keyframes lightSpeedOut {
  0% {
    opacity: 1;
  }

  to {
    opacity: 0;
    -webkit-transform: translate3d(100%, 0, 0) skewX(30deg);
    transform: translate3d(100%, 0, 0) skewX(30deg);
  }
}

@keyframes lightSpeedOut {
  0% {
    opacity: 1;
  }

  to {
    opacity: 0;
    -webkit-transform: translate3d(100%, 0, 0) skewX(30deg);
    transform: translate3d(100%, 0, 0) skewX(30deg);
  }
}

.lightSpeedOut {
  -webkit-animation-name: lightSpeedOut;
  animation-name: lightSpeedOut;
  -webkit-animation-timing-function: ease-in;
  animation-timing-function: ease-in;
}

@-webkit-keyframes rotateIn {
  0% {
    opacity: 0;
    -webkit-transform: rotate(-200deg);
    transform: rotate(-200deg);
    -webkit-transform-origin: center;
    transform-origin: center;
  }

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

@keyframes rotateIn {
  0% {
    opacity: 0;
    -webkit-transform: rotate(-200deg);
    transform: rotate(-200deg);
    -webkit-transform-origin: center;
    transform-origin: center;
  }

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

.rotateIn {
  -webkit-animation-name: rotateIn;
  animation-name: rotateIn;
}

@-webkit-keyframes rotateInDownLeft {
  0% {
    opacity: 0;
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
  }

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

@keyframes rotateInDownLeft {
  0% {
    opacity: 0;
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
  }

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

.rotateInDownLeft {
  -webkit-animation-name: rotateInDownLeft;
  animation-name: rotateInDownLeft;
}

@-webkit-keyframes rotateInDownRight {
  0% {
    opacity: 0;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
  }

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

@keyframes rotateInDownRight {
  0% {
    opacity: 0;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
  }

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

.rotateInDownRight {
  -webkit-animation-name: rotateInDownRight;
  animation-name: rotateInDownRight;
}

@-webkit-keyframes rotateInUpLeft {
  0% {
    opacity: 0;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
  }

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

@keyframes rotateInUpLeft {
  0% {
    opacity: 0;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
  }

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

.rotateInUpLeft {
  -webkit-animation-name: rotateInUpLeft;
  animation-name: rotateInUpLeft;
}

@-webkit-keyframes rotateInUpRight {
  0% {
    opacity: 0;
    -webkit-transform: rotate(-90deg);
    transform: rotate(-90deg);
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
  }

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

@keyframes rotateInUpRight {
  0% {
    opacity: 0;
    -webkit-transform: rotate(-90deg);
    transform: rotate(-90deg);
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
  }

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

.rotateInUpRight {
  -webkit-animation-name: rotateInUpRight;
  animation-name: rotateInUpRight;
}

@-webkit-keyframes rotateOut {
  0% {
    opacity: 1;
    -webkit-transform-origin: center;
    transform-origin: center;
  }

  to {
    opacity: 0;
    -webkit-transform: rotate(200deg);
    transform: rotate(200deg);
    -webkit-transform-origin: center;
    transform-origin: center;
  }
}

@keyframes rotateOut {
  0% {
    opacity: 1;
    -webkit-transform-origin: center;
    transform-origin: center;
  }

  to {
    opacity: 0;
    -webkit-transform: rotate(200deg);
    transform: rotate(200deg);
    -webkit-transform-origin: center;
    transform-origin: center;
  }
}

.rotateOut {
  -webkit-animation-name: rotateOut;
  animation-name: rotateOut;
}

@-webkit-keyframes rotateOutDownLeft {
  0% {
    opacity: 1;
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
  }

  to {
    opacity: 0;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
  }
}

@keyframes rotateOutDownLeft {
  0% {
    opacity: 1;
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
  }

  to {
    opacity: 0;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
  }
}

.rotateOutDownLeft {
  -webkit-animation-name: rotateOutDownLeft;
  animation-name: rotateOutDownLeft;
}

@-webkit-keyframes rotateOutDownRight {
  0% {
    opacity: 1;
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
  }

  to {
    opacity: 0;
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
  }
}

@keyframes rotateOutDownRight {
  0% {
    opacity: 1;
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
  }

  to {
    opacity: 0;
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
  }
}

.rotateOutDownRight {
  -webkit-animation-name: rotateOutDownRight;
  animation-name: rotateOutDownRight;
}

@-webkit-keyframes rotateOutUpLeft {
  0% {
    opacity: 1;
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
  }

  to {
    opacity: 0;
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
  }
}

@keyframes rotateOutUpLeft {
  0% {
    opacity: 1;
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
  }

  to {
    opacity: 0;
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
  }
}

.rotateOutUpLeft {
  -webkit-animation-name: rotateOutUpLeft;
  animation-name: rotateOutUpLeft;
}

@-webkit-keyframes rotateOutUpRight {
  0% {
    opacity: 1;
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
  }

  to {
    opacity: 0;
    -webkit-transform: rotate(90deg);
    transform: rotate(90deg);
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
  }
}

@keyframes rotateOutUpRight {
  0% {
    opacity: 1;
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
  }

  to {
    opacity: 0;
    -webkit-transform: rotate(90deg);
    transform: rotate(90deg);
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
  }
}

.rotateOutUpRight {
  -webkit-animation-name: rotateOutUpRight;
  animation-name: rotateOutUpRight;
}

@-webkit-keyframes hinge {
  0% {
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
    -webkit-transform-origin: top left;
    transform-origin: top left;
  }

  20%,
  60% {
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
    -webkit-transform: rotate(80deg);
    transform: rotate(80deg);
    -webkit-transform-origin: top left;
    transform-origin: top left;
  }

  40%,
  80% {
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
    opacity: 1;
    -webkit-transform: rotate(60deg);
    transform: rotate(60deg);
    -webkit-transform-origin: top left;
    transform-origin: top left;
  }

  to {
    opacity: 0;
    -webkit-transform: translate3d(0, 700px, 0);
    transform: translate3d(0, 700px, 0);
  }
}

@keyframes hinge {
  0% {
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
    -webkit-transform-origin: top left;
    transform-origin: top left;
  }

  20%,
  60% {
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
    -webkit-transform: rotate(80deg);
    transform: rotate(80deg);
    -webkit-transform-origin: top left;
    transform-origin: top left;
  }

  40%,
  80% {
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
    opacity: 1;
    -webkit-transform: rotate(60deg);
    transform: rotate(60deg);
    -webkit-transform-origin: top left;
    transform-origin: top left;
  }

  to {
    opacity: 0;
    -webkit-transform: translate3d(0, 700px, 0);
    transform: translate3d(0, 700px, 0);
  }
}

.hinge {
  -webkit-animation-name: hinge;
  animation-name: hinge;
}

@-webkit-keyframes rollIn {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 0, 0) rotate(-120deg);
    transform: translate3d(-100%, 0, 0) rotate(-120deg);
  }

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

@keyframes rollIn {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 0, 0) rotate(-120deg);
    transform: translate3d(-100%, 0, 0) rotate(-120deg);
  }

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

.rollIn {
  -webkit-animation-name: rollIn;
  animation-name: rollIn;
}

@-webkit-keyframes rollOut {
  0% {
    opacity: 1;
  }

  to {
    opacity: 0;
    -webkit-transform: translate3d(100%, 0, 0) rotate(120deg);
    transform: translate3d(100%, 0, 0) rotate(120deg);
  }
}

@keyframes rollOut {
  0% {
    opacity: 1;
  }

  to {
    opacity: 0;
    -webkit-transform: translate3d(100%, 0, 0) rotate(120deg);
    transform: translate3d(100%, 0, 0) rotate(120deg);
  }
}

.rollOut {
  -webkit-animation-name: rollOut;
  animation-name: rollOut;
}

@-webkit-keyframes zoomIn {
  0% {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }

  50% {
    opacity: 1;
  }
}

@keyframes zoomIn {
  0% {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }

  50% {
    opacity: 1;
  }
}

.zoomIn {
  -webkit-animation-name: zoomIn;
  animation-name: zoomIn;
}

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

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

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

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

.zoomInDown {
  -webkit-animation-name: zoomInDown;
  animation-name: zoomInDown;
}

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

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

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

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

.zoomInLeft {
  -webkit-animation-name: zoomInLeft;
  animation-name: zoomInLeft;
}

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

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

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

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

.zoomInRight {
  -webkit-animation-name: zoomInRight;
  animation-name: zoomInRight;
}

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

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

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

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

.zoomInUp {
  -webkit-animation-name: zoomInUp;
  animation-name: zoomInUp;
}

@-webkit-keyframes zoomOut {
  0% {
    opacity: 1;
  }

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

  to {
    opacity: 0;
  }
}

@keyframes zoomOut {
  0% {
    opacity: 1;
  }

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

  to {
    opacity: 0;
  }
}

.zoomOut {
  -webkit-animation-name: zoomOut;
  animation-name: zoomOut;
}

@-webkit-keyframes zoomOutDown {
  40% {
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
  }

  to {
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 2000px, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 2000px, 0);
    -webkit-transform-origin: center bottom;
    transform-origin: center bottom;
  }
}

@keyframes zoomOutDown {
  40% {
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
  }

  to {
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 2000px, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 2000px, 0);
    -webkit-transform-origin: center bottom;
    transform-origin: center bottom;
  }
}

.zoomOutDown {
  -webkit-animation-name: zoomOutDown;
  animation-name: zoomOutDown;
}

@-webkit-keyframes zoomOutLeft {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(42px, 0, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(42px, 0, 0);
  }

  to {
    opacity: 0;
    -webkit-transform: scale(0.1) translate3d(-2000px, 0, 0);
    transform: scale(0.1) translate3d(-2000px, 0, 0);
    -webkit-transform-origin: left center;
    transform-origin: left center;
  }
}

@keyframes zoomOutLeft {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(42px, 0, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(42px, 0, 0);
  }

  to {
    opacity: 0;
    -webkit-transform: scale(0.1) translate3d(-2000px, 0, 0);
    transform: scale(0.1) translate3d(-2000px, 0, 0);
    -webkit-transform-origin: left center;
    transform-origin: left center;
  }
}

.zoomOutLeft {
  -webkit-animation-name: zoomOutLeft;
  animation-name: zoomOutLeft;
}

@-webkit-keyframes zoomOutRight {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(-42px, 0, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(-42px, 0, 0);
  }

  to {
    opacity: 0;
    -webkit-transform: scale(0.1) translate3d(2000px, 0, 0);
    transform: scale(0.1) translate3d(2000px, 0, 0);
    -webkit-transform-origin: right center;
    transform-origin: right center;
  }
}

@keyframes zoomOutRight {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(-42px, 0, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(-42px, 0, 0);
  }

  to {
    opacity: 0;
    -webkit-transform: scale(0.1) translate3d(2000px, 0, 0);
    transform: scale(0.1) translate3d(2000px, 0, 0);
    -webkit-transform-origin: right center;
    transform-origin: right center;
  }
}

.zoomOutRight {
  -webkit-animation-name: zoomOutRight;
  animation-name: zoomOutRight;
}

@-webkit-keyframes zoomOutUp {
  40% {
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
  }

  to {
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -2000px, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -2000px, 0);
    -webkit-transform-origin: center bottom;
    transform-origin: center bottom;
  }
}

@keyframes zoomOutUp {
  40% {
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
  }

  to {
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -2000px, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -2000px, 0);
    -webkit-transform-origin: center bottom;
    transform-origin: center bottom;
  }
}

.zoomOutUp {
  -webkit-animation-name: zoomOutUp;
  animation-name: zoomOutUp;
}

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

  to {
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
}

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

  to {
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
}

.slideInDown {
  -webkit-animation-name: slideInDown;
  animation-name: slideInDown;
}

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

  to {
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
}

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

  to {
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
}

.slideInLeft {
  -webkit-animation-name: slideInLeft;
  animation-name: slideInLeft;
}

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

  to {
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
}

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

  to {
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
}

.slideInRight {
  -webkit-animation-name: slideInRight;
  animation-name: slideInRight;
}

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

  to {
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
}

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

  to {
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
}

.slideInUp {
  -webkit-animation-name: slideInUp;
  animation-name: slideInUp;
}

@-webkit-keyframes slideOutDown {
  0% {
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }

  to {
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
    visibility: hidden;
  }
}

@keyframes slideOutDown {
  0% {
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }

  to {
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
    visibility: hidden;
  }
}

.slideOutDown {
  -webkit-animation-name: slideOutDown;
  animation-name: slideOutDown;
}

.slideOutLeft {
  -webkit-animation-name: slideOutLeft;
  animation-name: slideOutLeft;
}

.slideOutRight {
  -webkit-animation-name: slideOutRight;
  animation-name: slideOutRight;
}

@-webkit-keyframes slideOutUp {
  0% {
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }

  to {
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
    visibility: hidden;
  }
}

@keyframes slideOutUp {
  0% {
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }

  to {
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
    visibility: hidden;
  }
}

.slideOutUp {
  -webkit-animation-name: slideOutUp;
  animation-name: slideOutUp;
}

@-webkit-keyframes pulse {
  0% {
    -webkit-transform: scaleX(1);
    transform: scaleX(1);
  }

  50% {
    -webkit-transform: scale3d(1.3, 1.3, 1.3);
    transform: scale3d(1.3, 1.3, 1.3);
  }

  to {
    -webkit-transform: scaleX(1);
    transform: scaleX(1);
  }
}

@keyframes pulse {
  0% {
    -webkit-transform: scaleX(1);
    transform: scaleX(1);
  }

  50% {
    -webkit-transform: scale3d(1.3, 1.3, 1.3);
    transform: scale3d(1.3, 1.3, 1.3);
  }

  to {
    -webkit-transform: scaleX(1);
    transform: scaleX(1);
  }
}

.pulse {
  -webkit-animation-name: pulse;
  animation-name: pulse;
}

@-webkit-keyframes fadeInLeftSlow {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(-5%, 0, 0);
    transform: translate3d(-5%, 0, 0);
  }

  to {
    opacity: 1;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
}

@keyframes fadeInLeftSlow {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(-5%, 0, 0);
    transform: translate3d(-5%, 0, 0);
  }

  to {
    opacity: 1;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
}

.fadeInLeftSlow {
  -webkit-animation-name: fadeInLeftSlow;
  animation-name: fadeInLeftSlow;
}

@-webkit-keyframes fadeInRightSlow {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(5%, 0, 0);
    transform: translate3d(5%, 0, 0);
  }

  to {
    opacity: 1;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
}

@keyframes fadeInRightSlow {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(5%, 0, 0);
    transform: translate3d(5%, 0, 0);
  }

  to {
    opacity: 1;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
}

.fadeInRightSlow {
  -webkit-animation-name: fadeInRightSlow;
  animation-name: fadeInRightSlow;
}

@-webkit-keyframes slideOutLeft {
  0% {
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }

  to {
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
    visibility: hidden;
  }
}

@keyframes slideOutLeft {
  0% {
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }

  to {
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
    visibility: hidden;
  }
}

.slideOutLeft {
  -webkit-animation: slideOutLeft 2s cubic-bezier(0.26, 0.92, 0.47, 1) 1.5s alternate forwards;
  animation: slideOutLeft 2s cubic-bezier(0.26, 0.92, 0.47, 1) 1.5s alternate forwards;
}

@-webkit-keyframes slideOutRight {
  0% {
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }

  to {
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
    visibility: hidden;
  }
}

@keyframes slideOutRight {
  0% {
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }

  to {
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
    visibility: hidden;
  }
}

.slideOutRight {
  -webkit-animation: slideOutRight 2s cubic-bezier(0.26, 0.92, 0.47, 1) 1.5s alternate forwards;
  animation: slideOutRight 2s cubic-bezier(0.26, 0.92, 0.47, 1) 1.5s alternate forwards;
}

@-webkit-keyframes fadeInSlow {
  0% {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@keyframes fadeInSlow {
  0% {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

.fadeInSlow {
  -webkit-animation: fadeInSlow 3s;
  animation: fadeInSlow 3s;
}

@-webkit-keyframes rotate3d {
  0% {
    -webkit-transform: rotateY(0);
    transform: rotateY(0);
  }

  to {
    -webkit-transform: rotateY(1turn);
    transform: rotateY(1turn);
  }
}

@-webkit-keyframes rotate3dd {
  0% {
    -webkit-transform: rotateY(0);
    transform: rotateY(0);
  }

  to {
    -webkit-transform: rotateY(-1turn);
    transform: rotateY(-1turn);
  }
}

@-webkit-keyframes bounce {
  0% {
    -webkit-transform: translateY(0) translateX(0);
    transform: translateY(0) translateX(0);
  }

  50% {
    -webkit-transform: translateY(15px) translateX(7);
    transform: translateY(15px) translateX(7);
  }

  to {
    -webkit-transform: translateY(0) translateX(0);
    transform: translateY(0) translateX(0);
  }
}

@keyframes bounce {
  0% {
    -webkit-transform: translateY(0) translateX(0);
    transform: translateY(0) translateX(0);
  }

  50% {
    -webkit-transform: translateY(15px) translateX(7px);
    transform: translateY(15px) translateX(7px);
  }

  to {
    -webkit-transform: translateY(0) translateX(0);
    transform: translateY(0) translateX(0);
  }
}

@-webkit-keyframes bounceTop {
  0% {
    -webkit-transform: translateY(0) translateX(0);
    transform: translateY(0) translateX(0);
  }

  50% {
    -webkit-transform: translateY(-15px) translateX(-7);
    transform: translateY(-15px) translateX(-7);
  }

  to {
    -webkit-transform: translateY(0) translateX(0);
    transform: translateY(0) translateX(0);
  }
}

@keyframes bounceTop {
  0% {
    -webkit-transform: translateY(0) translateX(0);
    transform: translateY(0) translateX(0);
  }

  50% {
    -webkit-transform: translateY(-15px) translateX(-7px);
    transform: translateY(-15px) translateX(-7px);
  }

  to {
    -webkit-transform: translateY(0) translateX(0);
    transform: translateY(0) translateX(0);
  }
}

@font-face {
  font-family: flaticon;
  src: url(/static/media/flaticon.2222b0aa80935e6027ce.ttf) format("truetype"),
    url(/static/media/flaticon.23d366becef3bf60be81.woff) format("woff"),
    url(/static/media/flaticon.018f1724bce17216f834.woff2) format("woff2"),
    url(/static/media/flaticon.db1770675f79a2851411.eot#iefix) format("embedded-opentype"),
    url(/static/media/flaticon.b05577199fe066376377.svg#flaticon) format("svg");
}

i[class*=" flaticon-"]:before,
i[class^="flaticon-"]:before {
  -webkit-font-feature-settings: normal;
  font-feature-settings: normal;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-family: flaticon !important;
  font-style: normal;
  font-variant: normal;
  font-weight: 400 !important;
  text-transform: none;
}

.flaticon-email:before {
  content: "\f101";
}

.flaticon-phone-call:before {
  content: "\f102";
}

.flaticon-maps-and-flags:before {
  content: "\f103";
}

.flaticon-instagram:before {
  content: "\f104";
}

.flaticon-gallery:before {
  content: "\f105";
}

.flaticon-serving-dish:before {
  content: "\f106";
}

.flaticon-edit:before {
  content: "\f107";
}

.flaticon-left-arrow:before {
  content: "\f108";
}

.flaticon-wedding:before {
  content: "\f109";
}

.flaticon-cake:before {
  content: "\f10a";
}

.flaticon-wedding-rings:before {
  content: "\f10b";
}

.flaticon-play:before {
  content: "\f10c";
}

.flaticon-quotation:before {
  content: "\f10d";
}

.flaticon-dove:before {
  content: "\f10e";
}

.flaticon-calendar:before {
  content: "\f10f";
}

.flaticon-heart:before {
  content: "\f110";
}

.flaticon-pinterest:before {
  content: "\f111";
}

.flaticon-facebook-app-symbol:before {
  content: "\f112";
}

.flaticon-twitter:before {
  content: "\f113";
}

.flaticon-instagram-1:before {
  content: "\f114";
}

.flaticon-linkedin:before {
  content: "\f115";
}

.flaticon-youtube:before {
  content: "\f116";
}

.flaticon-search:before {
  content: "\f117";
}

.flaticon-shopping-cart:before {
  content: "\f118";
}

.flaticon-left-arrow-1:before {
  content: "\f119";
}

.flaticon-user:before {
  content: "\f11a";
}

.flaticon-comment-white-oval-bubble:before {
  content: "\f11b";
}

.flaticon-calendar-1:before {
  content: "\f11c";
}

.flaticon-right-arrow:before {
  content: "\f11d";
}

.flaticon-play-1:before {
  content: "\f11e";
}

.flaticon-left-quote:before {
  content: "\f11f";
}

.flaticon-right-arrow-1:before {
  content: "\f120";
}

.flaticon-left-arrow-2:before {
  content: "\f121";
}

.flaticon-next:before {
  content: "\f122";
}

/*# sourceMappingURL=main.4c1a549c.css.map*/
.loader {
  width: 32px;
  height: 32px;
  position: relative;
  border-radius: 50%;
  color: #0b8a4ce6;
  animation: fill 1s ease-in infinite alternate;
}

.loader::before,
.loader::after {
  content: '';
  position: absolute;
  height: 100%;
  width: 100%;
  border-radius: 50%;
  left: 48px;
  top: 0;
  animation: fill 0.9s ease-in infinite alternate;
}

.loader::after {
  left: auto;
  right: 48px;
  animation-duration: 1.1s;
}

@keyframes fill {
  0% {
    box-shadow: 0 0 0 2px inset
  }

  100% {
    box-shadow: 0 0 0 10px inset
  }
}