@charset "UTF-8";
/*
Theme Name:  jarmarka.de
Description: Markup by <a href="http://www.andrewkirshe.com/">Andrew Kirshe</a>
Author: Andrew Kirshe
Text Domain: jarmarka
*/
/* Vars */
/* 
 *  Owl Carousel - Animate Plugin
 */
.owl-carousel .animated {
  -webkit-animation-duration: 1000ms;
  animation-duration: 1000ms;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}

.owl-carousel .owl-animated-in {
  z-index: 0;
}

.owl-carousel .owl-animated-out {
  z-index: 1;
}

.owl-carousel .fadeOut {
  -webkit-animation-name: fadeOut;
  animation-name: fadeOut;
}

@-webkit-keyframes fadeOut {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
@keyframes fadeOut {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
/* 
 * 	Owl Carousel - Auto Height Plugin
 */
.owl-height {
  -webkit-transition: height 500ms ease-in-out;
  transition: height 500ms ease-in-out;
}

/* 
 *  Core Owl Carousel CSS File
 */
.owl-carousel {
  display: none;
  width: 100%;
  -webkit-tap-highlight-color: transparent;
  /* position relative and z-index fix webkit rendering fonts issue */
  position: relative;
  z-index: 1;
}

.owl-carousel .owl-stage {
  position: relative;
  -ms-touch-action: pan-Y;
}

.owl-carousel .owl-stage:after {
  content: ".";
  display: block;
  clear: both;
  visibility: hidden;
  line-height: 0;
  height: 0;
}

.owl-carousel .owl-stage-outer {
  position: relative;
  overflow: hidden;
  /* fix for flashing background */
  -webkit-transform: translate3d(0px, 0px, 0px);
}

.owl-carousel .owl-controls .owl-nav .owl-prev,
.owl-carousel .owl-controls .owl-nav .owl-next,
.owl-carousel .owl-controls .owl-dot {
  cursor: pointer;
  cursor: hand;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.owl-carousel.owl-loaded {
  display: block;
}

.owl-carousel.owl-loading {
  opacity: 0;
  display: block;
}

.owl-carousel.owl-hidden {
  opacity: 0;
}

.owl-carousel .owl-refresh .owl-item {
  display: none;
}

.owl-carousel .owl-item {
  position: relative;
  min-height: 1px;
  float: left;
  -webkit-backface-visibility: hidden;
  -webkit-tap-highlight-color: transparent;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.owl-carousel .owl-item img {
  display: block;
  width: 100%;
  -webkit-transform-style: preserve-3d;
}

.owl-carousel.owl-text-select-on .owl-item {
  -webkit-user-select: auto;
  -moz-user-select: auto;
  -ms-user-select: auto;
  user-select: auto;
}

.owl-carousel .owl-grab {
  cursor: move;
  cursor: -webkit-grab;
  cursor: -o-grab;
  cursor: -ms-grab;
  cursor: grab;
}

.owl-carousel.owl-rtl {
  direction: rtl;
}

.owl-carousel.owl-rtl .owl-item {
  float: right;
}

/* No Js */
.no-js .owl-carousel {
  display: block;
}

/* 
 * 	Owl Carousel - Lazy Load Plugin
 */
.owl-carousel .owl-item .owl-lazy {
  opacity: 0;
  -webkit-transition: opacity 400ms ease;
  transition: opacity 400ms ease;
}

.owl-carousel .owl-item img {
  -webkit-transform-style: preserve-3d;
          transform-style: preserve-3d;
}

/* 
 * 	Owl Carousel - Video Plugin
 */
.owl-carousel .owl-video-wrapper {
  position: relative;
  height: 100%;
  background: #000;
}

.owl-carousel .owl-video-play-icon {
  position: absolute;
  height: 80px;
  width: 80px;
  left: 50%;
  top: 50%;
  margin-left: -40px;
  margin-top: -40px;
  background: url("owl.video.play.png") no-repeat;
  cursor: pointer;
  z-index: 1;
  -webkit-backface-visibility: hidden;
  -webkit-transition: scale 100ms ease;
  transition: scale 100ms ease;
}

.owl-carousel .owl-video-play-icon:hover {
  -webkit-transition: scale(1.3, 1.3);
  transition: scale(1.3, 1.3);
}

.owl-carousel .owl-video-playing .owl-video-tn,
.owl-carousel .owl-video-playing .owl-video-play-icon {
  display: none;
}

.owl-carousel .owl-video-tn {
  opacity: 0;
  height: 100%;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
  -webkit-transition: opacity 400ms ease;
  transition: opacity 400ms ease;
}

.owl-carousel .owl-video-frame {
  position: relative;
  z-index: 1;
}

.counter-group {
  margin: 30px auto;
  display: inline-block;
}

.counter-group:before,
.counter-group:after {
  content: " ";
  display: table;
}

.counter-group:after {
  clear: both;
}

.counter-block {
  float: left;
  margin-right: 20px;
}

.counter-block .counter {
  position: relative;
  width: 200px;
  height: 166px;
  overflow: hidden;
  font-weight: 700;
  font-family: "Proxima Nova T";
}

.counter-block .counter .number {
  /*padding: 1%;*/
  width: 46%;
  height: 98%;
  color: #fff;
  position: absolute;
  font-size: 180px;
  line-height: 150px;
  top: -10000px;
  border-radius: 10px;
}
@media (max-width: 600px) {
  .counter-block .counter .number {
    border-radius: 5px;
  }
}

.counter-block .counter .number.tens {
  left: 0;
}

.counter-block .counter .number.units {
  left: 50%;
}

.counter-block .counter .number.hundreds {
  display: none;
}

.counter-block .counter .number.show {
  top: 0;
  z-index: 2;
}

.counter-block .counter .number.hidden-down {
  top: 100%;
}

.counter-block .counter .number.hidden-up {
  top: -100%;
  z-index: 100;
}

.counter-block .counter.with-hundreds {
  width: 300px;
}

.counter-block .counter.with-hundreds .number {
  width: 30.66%;
}

.counter-block .counter.with-hundreds .number.tens {
  left: 33.33%;
}

.counter-block .counter.with-hundreds .number.units {
  left: 66.66%;
}

.counter-block .counter.with-hundreds .number.hundreds {
  display: block;
  left: 0;
}

.counter-block .counter-caption {
  font-size: 150%;
  text-align: center;
}

.counter-group {
  margin: 0 auto;
}

.counter-block {
  margin-right: 0;
  position: relative;
}

.counter-block + .counter-block {
  margin-left: 30px;
}

.counter-block + .counter-block:before {
  content: ":";
  display: block;
  position: absolute;
  font-size: 40px;
  top: 50%;
  margin-top: -35px;
  left: -20px;
}
@media (max-width: 400px) {
  .counter-block + .counter-block:before {
    font-size: 30px;
    margin-top: -25px;
  }
}

.counter-block .counter {
  width: 70px;
  height: 70px;
}

.counter-block .counter .number {
  font-size: 55px;
  line-height: 70px;
  text-align: center;
}

.counter-block .counter.with-hundreds {
  width: 100px;
}

.counter-block .counter-caption {
  font-size: 85%;
}

@media (max-width: 1320px) {
  .counter-block .counter {
    width: 70px;
    height: 70px;
  }
  .counter-block .counter .number {
    font-size: 55px;
    line-height: 70px;
  }
  .counter-block .counter.with-hundreds {
    width: 100px;
  }
  .counter-block .counter-caption {
    font-size: 70%;
  }
}
@media (max-width: 600px) {
  .counter-block .counter {
    width: 50px;
    height: 40px;
  }
  .counter-block .counter .number {
    font-size: 30px;
    line-height: 40px;
  }
  .counter-block .counter.with-hundreds {
    width: 75px;
  }
  .counter-block .counter-caption {
    font-size: 70%;
  }
}
@media (max-width: 400px) {
  .counter-block .counter {
    width: 40px;
    height: 25px;
  }
  .counter-block .counter .number {
    font-size: 20px;
    line-height: 25px;
  }
  .counter-block .counter.with-hundreds {
    width: 60px;
  }
  .counter-block .counter-caption {
    font-size: 50%;
  }
}
.container {
  margin-right: auto;
  margin-left: auto;
  padding-left: 15px;
  padding-right: 15px;
}
.container:before, .container:after {
  content: " ";
  display: table;
}
.container:after {
  clear: both;
}
@media (min-width: 768px) {
  .container {
    width: 750px;
  }
}
@media (min-width: 992px) {
  .container {
    width: 970px;
  }
}
@media (min-width: 1200px) {
  .container {
    width: 1200px;
  }
}

.container-fluid {
  margin-right: auto;
  margin-left: auto;
  padding-left: 15px;
  padding-right: 15px;
}
.container-fluid:before, .container-fluid:after {
  content: " ";
  display: table;
}
.container-fluid:after {
  clear: both;
}

.row {
  margin-left: -15px;
  margin-right: -15px;
}
.row:before, .row:after {
  content: " ";
  display: table;
}
.row:after {
  clear: both;
}

.col-xs-1, .col-sm-1, .col-md-1, .col-lg-1, .col-xs-2, .col-sm-2, .col-md-2, .col-lg-2, .col-xs-3, .col-sm-3, .col-md-3, .col-lg-3, .col-xs-4, .col-sm-4, .col-md-4, .col-lg-4, .col-xs-5, .col-sm-5, .col-md-5, .col-lg-5, .col-xs-6, .col-sm-6, .col-md-6, .col-lg-6, .col-xs-7, .col-sm-7, .col-md-7, .col-lg-7, .col-xs-8, .col-sm-8, .col-md-8, .col-lg-8, .col-xs-9, .col-sm-9, .col-md-9, .col-lg-9, .col-xs-10, .col-sm-10, .col-md-10, .col-lg-10, .col-xs-11, .col-sm-11, .col-md-11, .col-lg-11, .col-xs-12, .col-sm-12, .col-md-12, .col-lg-12 {
  position: relative;
  min-height: 1px;
  padding-left: 15px;
  padding-right: 15px;
}

.col-xs-1, .col-xs-2, .col-xs-3, .col-xs-4, .col-xs-5, .col-xs-6, .col-xs-7, .col-xs-8, .col-xs-9, .col-xs-10, .col-xs-11, .col-xs-12 {
  float: left;
}

.col-xs-1 {
  width: 8.3333333333%;
}

.col-xs-2 {
  width: 16.6666666667%;
}

.col-xs-3 {
  width: 25%;
}

.col-xs-4 {
  width: 33.3333333333%;
}

.col-xs-5 {
  width: 41.6666666667%;
}

.col-xs-6 {
  width: 50%;
}

.col-xs-7 {
  width: 58.3333333333%;
}

.col-xs-8 {
  width: 66.6666666667%;
}

.col-xs-9 {
  width: 75%;
}

.col-xs-10 {
  width: 83.3333333333%;
}

.col-xs-11 {
  width: 91.6666666667%;
}

.col-xs-12 {
  width: 100%;
}

.col-xs-pull-0 {
  right: auto;
}

.col-xs-pull-1 {
  right: 8.3333333333%;
}

.col-xs-pull-2 {
  right: 16.6666666667%;
}

.col-xs-pull-3 {
  right: 25%;
}

.col-xs-pull-4 {
  right: 33.3333333333%;
}

.col-xs-pull-5 {
  right: 41.6666666667%;
}

.col-xs-pull-6 {
  right: 50%;
}

.col-xs-pull-7 {
  right: 58.3333333333%;
}

.col-xs-pull-8 {
  right: 66.6666666667%;
}

.col-xs-pull-9 {
  right: 75%;
}

.col-xs-pull-10 {
  right: 83.3333333333%;
}

.col-xs-pull-11 {
  right: 91.6666666667%;
}

.col-xs-pull-12 {
  right: 100%;
}

.col-xs-push-0 {
  left: auto;
}

.col-xs-push-1 {
  left: 8.3333333333%;
}

.col-xs-push-2 {
  left: 16.6666666667%;
}

.col-xs-push-3 {
  left: 25%;
}

.col-xs-push-4 {
  left: 33.3333333333%;
}

.col-xs-push-5 {
  left: 41.6666666667%;
}

.col-xs-push-6 {
  left: 50%;
}

.col-xs-push-7 {
  left: 58.3333333333%;
}

.col-xs-push-8 {
  left: 66.6666666667%;
}

.col-xs-push-9 {
  left: 75%;
}

.col-xs-push-10 {
  left: 83.3333333333%;
}

.col-xs-push-11 {
  left: 91.6666666667%;
}

.col-xs-push-12 {
  left: 100%;
}

.col-xs-offset-0 {
  margin-left: 0%;
}

.col-xs-offset-1 {
  margin-left: 8.3333333333%;
}

.col-xs-offset-2 {
  margin-left: 16.6666666667%;
}

.col-xs-offset-3 {
  margin-left: 25%;
}

.col-xs-offset-4 {
  margin-left: 33.3333333333%;
}

.col-xs-offset-5 {
  margin-left: 41.6666666667%;
}

.col-xs-offset-6 {
  margin-left: 50%;
}

.col-xs-offset-7 {
  margin-left: 58.3333333333%;
}

.col-xs-offset-8 {
  margin-left: 66.6666666667%;
}

.col-xs-offset-9 {
  margin-left: 75%;
}

.col-xs-offset-10 {
  margin-left: 83.3333333333%;
}

.col-xs-offset-11 {
  margin-left: 91.6666666667%;
}

.col-xs-offset-12 {
  margin-left: 100%;
}

@media (min-width: 768px) {
  .col-sm-1, .col-sm-2, .col-sm-3, .col-sm-4, .col-sm-5, .col-sm-6, .col-sm-7, .col-sm-8, .col-sm-9, .col-sm-10, .col-sm-11, .col-sm-12 {
    float: left;
  }
  .col-sm-1 {
    width: 8.3333333333%;
  }
  .col-sm-2 {
    width: 16.6666666667%;
  }
  .col-sm-3 {
    width: 25%;
  }
  .col-sm-4 {
    width: 33.3333333333%;
  }
  .col-sm-5 {
    width: 41.6666666667%;
  }
  .col-sm-6 {
    width: 50%;
  }
  .col-sm-7 {
    width: 58.3333333333%;
  }
  .col-sm-8 {
    width: 66.6666666667%;
  }
  .col-sm-9 {
    width: 75%;
  }
  .col-sm-10 {
    width: 83.3333333333%;
  }
  .col-sm-11 {
    width: 91.6666666667%;
  }
  .col-sm-12 {
    width: 100%;
  }
  .col-sm-pull-0 {
    right: auto;
  }
  .col-sm-pull-1 {
    right: 8.3333333333%;
  }
  .col-sm-pull-2 {
    right: 16.6666666667%;
  }
  .col-sm-pull-3 {
    right: 25%;
  }
  .col-sm-pull-4 {
    right: 33.3333333333%;
  }
  .col-sm-pull-5 {
    right: 41.6666666667%;
  }
  .col-sm-pull-6 {
    right: 50%;
  }
  .col-sm-pull-7 {
    right: 58.3333333333%;
  }
  .col-sm-pull-8 {
    right: 66.6666666667%;
  }
  .col-sm-pull-9 {
    right: 75%;
  }
  .col-sm-pull-10 {
    right: 83.3333333333%;
  }
  .col-sm-pull-11 {
    right: 91.6666666667%;
  }
  .col-sm-pull-12 {
    right: 100%;
  }
  .col-sm-push-0 {
    left: auto;
  }
  .col-sm-push-1 {
    left: 8.3333333333%;
  }
  .col-sm-push-2 {
    left: 16.6666666667%;
  }
  .col-sm-push-3 {
    left: 25%;
  }
  .col-sm-push-4 {
    left: 33.3333333333%;
  }
  .col-sm-push-5 {
    left: 41.6666666667%;
  }
  .col-sm-push-6 {
    left: 50%;
  }
  .col-sm-push-7 {
    left: 58.3333333333%;
  }
  .col-sm-push-8 {
    left: 66.6666666667%;
  }
  .col-sm-push-9 {
    left: 75%;
  }
  .col-sm-push-10 {
    left: 83.3333333333%;
  }
  .col-sm-push-11 {
    left: 91.6666666667%;
  }
  .col-sm-push-12 {
    left: 100%;
  }
  .col-sm-offset-0 {
    margin-left: 0%;
  }
  .col-sm-offset-1 {
    margin-left: 8.3333333333%;
  }
  .col-sm-offset-2 {
    margin-left: 16.6666666667%;
  }
  .col-sm-offset-3 {
    margin-left: 25%;
  }
  .col-sm-offset-4 {
    margin-left: 33.3333333333%;
  }
  .col-sm-offset-5 {
    margin-left: 41.6666666667%;
  }
  .col-sm-offset-6 {
    margin-left: 50%;
  }
  .col-sm-offset-7 {
    margin-left: 58.3333333333%;
  }
  .col-sm-offset-8 {
    margin-left: 66.6666666667%;
  }
  .col-sm-offset-9 {
    margin-left: 75%;
  }
  .col-sm-offset-10 {
    margin-left: 83.3333333333%;
  }
  .col-sm-offset-11 {
    margin-left: 91.6666666667%;
  }
  .col-sm-offset-12 {
    margin-left: 100%;
  }
}
@media (min-width: 992px) {
  .col-md-1, .col-md-2, .col-md-3, .col-md-4, .col-md-5, .col-md-6, .col-md-7, .col-md-8, .col-md-9, .col-md-10, .col-md-11, .col-md-12 {
    float: left;
  }
  .col-md-1 {
    width: 8.3333333333%;
  }
  .col-md-2 {
    width: 16.6666666667%;
  }
  .col-md-3 {
    width: 25%;
  }
  .col-md-4 {
    width: 33.3333333333%;
  }
  .col-md-5 {
    width: 41.6666666667%;
  }
  .col-md-6 {
    width: 50%;
  }
  .col-md-7 {
    width: 58.3333333333%;
  }
  .col-md-8 {
    width: 66.6666666667%;
  }
  .col-md-9 {
    width: 75%;
  }
  .col-md-10 {
    width: 83.3333333333%;
  }
  .col-md-11 {
    width: 91.6666666667%;
  }
  .col-md-12 {
    width: 100%;
  }
  .col-md-pull-0 {
    right: auto;
  }
  .col-md-pull-1 {
    right: 8.3333333333%;
  }
  .col-md-pull-2 {
    right: 16.6666666667%;
  }
  .col-md-pull-3 {
    right: 25%;
  }
  .col-md-pull-4 {
    right: 33.3333333333%;
  }
  .col-md-pull-5 {
    right: 41.6666666667%;
  }
  .col-md-pull-6 {
    right: 50%;
  }
  .col-md-pull-7 {
    right: 58.3333333333%;
  }
  .col-md-pull-8 {
    right: 66.6666666667%;
  }
  .col-md-pull-9 {
    right: 75%;
  }
  .col-md-pull-10 {
    right: 83.3333333333%;
  }
  .col-md-pull-11 {
    right: 91.6666666667%;
  }
  .col-md-pull-12 {
    right: 100%;
  }
  .col-md-push-0 {
    left: auto;
  }
  .col-md-push-1 {
    left: 8.3333333333%;
  }
  .col-md-push-2 {
    left: 16.6666666667%;
  }
  .col-md-push-3 {
    left: 25%;
  }
  .col-md-push-4 {
    left: 33.3333333333%;
  }
  .col-md-push-5 {
    left: 41.6666666667%;
  }
  .col-md-push-6 {
    left: 50%;
  }
  .col-md-push-7 {
    left: 58.3333333333%;
  }
  .col-md-push-8 {
    left: 66.6666666667%;
  }
  .col-md-push-9 {
    left: 75%;
  }
  .col-md-push-10 {
    left: 83.3333333333%;
  }
  .col-md-push-11 {
    left: 91.6666666667%;
  }
  .col-md-push-12 {
    left: 100%;
  }
  .col-md-offset-0 {
    margin-left: 0%;
  }
  .col-md-offset-1 {
    margin-left: 8.3333333333%;
  }
  .col-md-offset-2 {
    margin-left: 16.6666666667%;
  }
  .col-md-offset-3 {
    margin-left: 25%;
  }
  .col-md-offset-4 {
    margin-left: 33.3333333333%;
  }
  .col-md-offset-5 {
    margin-left: 41.6666666667%;
  }
  .col-md-offset-6 {
    margin-left: 50%;
  }
  .col-md-offset-7 {
    margin-left: 58.3333333333%;
  }
  .col-md-offset-8 {
    margin-left: 66.6666666667%;
  }
  .col-md-offset-9 {
    margin-left: 75%;
  }
  .col-md-offset-10 {
    margin-left: 83.3333333333%;
  }
  .col-md-offset-11 {
    margin-left: 91.6666666667%;
  }
  .col-md-offset-12 {
    margin-left: 100%;
  }
}
@media (min-width: 1200px) {
  .col-lg-1, .col-lg-2, .col-lg-3, .col-lg-4, .col-lg-5, .col-lg-6, .col-lg-7, .col-lg-8, .col-lg-9, .col-lg-10, .col-lg-11, .col-lg-12 {
    float: left;
  }
  .col-lg-1 {
    width: 8.3333333333%;
  }
  .col-lg-2 {
    width: 16.6666666667%;
  }
  .col-lg-3 {
    width: 25%;
  }
  .col-lg-4 {
    width: 33.3333333333%;
  }
  .col-lg-5 {
    width: 41.6666666667%;
  }
  .col-lg-6 {
    width: 50%;
  }
  .col-lg-7 {
    width: 58.3333333333%;
  }
  .col-lg-8 {
    width: 66.6666666667%;
  }
  .col-lg-9 {
    width: 75%;
  }
  .col-lg-10 {
    width: 83.3333333333%;
  }
  .col-lg-11 {
    width: 91.6666666667%;
  }
  .col-lg-12 {
    width: 100%;
  }
  .col-lg-pull-0 {
    right: auto;
  }
  .col-lg-pull-1 {
    right: 8.3333333333%;
  }
  .col-lg-pull-2 {
    right: 16.6666666667%;
  }
  .col-lg-pull-3 {
    right: 25%;
  }
  .col-lg-pull-4 {
    right: 33.3333333333%;
  }
  .col-lg-pull-5 {
    right: 41.6666666667%;
  }
  .col-lg-pull-6 {
    right: 50%;
  }
  .col-lg-pull-7 {
    right: 58.3333333333%;
  }
  .col-lg-pull-8 {
    right: 66.6666666667%;
  }
  .col-lg-pull-9 {
    right: 75%;
  }
  .col-lg-pull-10 {
    right: 83.3333333333%;
  }
  .col-lg-pull-11 {
    right: 91.6666666667%;
  }
  .col-lg-pull-12 {
    right: 100%;
  }
  .col-lg-push-0 {
    left: auto;
  }
  .col-lg-push-1 {
    left: 8.3333333333%;
  }
  .col-lg-push-2 {
    left: 16.6666666667%;
  }
  .col-lg-push-3 {
    left: 25%;
  }
  .col-lg-push-4 {
    left: 33.3333333333%;
  }
  .col-lg-push-5 {
    left: 41.6666666667%;
  }
  .col-lg-push-6 {
    left: 50%;
  }
  .col-lg-push-7 {
    left: 58.3333333333%;
  }
  .col-lg-push-8 {
    left: 66.6666666667%;
  }
  .col-lg-push-9 {
    left: 75%;
  }
  .col-lg-push-10 {
    left: 83.3333333333%;
  }
  .col-lg-push-11 {
    left: 91.6666666667%;
  }
  .col-lg-push-12 {
    left: 100%;
  }
  .col-lg-offset-0 {
    margin-left: 0%;
  }
  .col-lg-offset-1 {
    margin-left: 8.3333333333%;
  }
  .col-lg-offset-2 {
    margin-left: 16.6666666667%;
  }
  .col-lg-offset-3 {
    margin-left: 25%;
  }
  .col-lg-offset-4 {
    margin-left: 33.3333333333%;
  }
  .col-lg-offset-5 {
    margin-left: 41.6666666667%;
  }
  .col-lg-offset-6 {
    margin-left: 50%;
  }
  .col-lg-offset-7 {
    margin-left: 58.3333333333%;
  }
  .col-lg-offset-8 {
    margin-left: 66.6666666667%;
  }
  .col-lg-offset-9 {
    margin-left: 75%;
  }
  .col-lg-offset-10 {
    margin-left: 83.3333333333%;
  }
  .col-lg-offset-11 {
    margin-left: 91.6666666667%;
  }
  .col-lg-offset-12 {
    margin-left: 100%;
  }
}
* {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

/* Normalize & reset  
===================================================================================================*/
html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  vertical-align: baseline;
  font-weight: normal;
}

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

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

audio,
canvas,
progress,
video {
  display: inline-block;
  vertical-align: baseline;
}

audio:not([controls]) {
  display: none;
  height: 0;
}

[hidden],
template {
  display: none;
}

a {
  background: transparent;
}

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

abbr[title] {
  border-bottom: 1px dotted;
}

b,
strong {
  font-weight: bold;
}

dfn {
  font-style: italic;
}

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

small {
  font-size: 80%;
}

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

sup {
  top: -0.5em;
}

sub {
  bottom: -0.25em;
}

img {
  border: 0;
}

svg:not(:root) {
  overflow: hidden;
}

figure {
  margin: 1em 40px;
}

hr {
  -webkit-box-sizing: content-box;
          box-sizing: content-box;
  height: 0;
}

pre {
  overflow: auto;
}

code,
kbd,
pre,
samp {
  font-family: monospace, monospace;
  font-size: 1em;
}

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

button {
  overflow: visible;
}

button,
select {
  text-transform: none;
}

button,
html input[type=button],
input[type=reset],
input[type=submit] {
  -webkit-appearance: button;
  cursor: pointer;
}

button[disabled],
html input[disabled] {
  cursor: default;
}

button::-moz-focus-inner,
input::-moz-focus-inner {
  border: 0;
  padding: 0;
}

input {
  line-height: normal;
}

input[type=checkbox],
input[type=radio] {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding: 0;
}

input[type=number]::-webkit-inner-spin-button,
input[type=number]::-webkit-outer-spin-button {
  height: auto;
}

[type=search] {
  -webkit-appearance: textfield;
  -webkit-box-sizing: content-box;
          box-sizing: content-box;
}

input[type=search]::-webkit-search-cancel-button,
input[type=search]::-webkit-search-decoration {
  -webkit-appearance: none;
}

fieldset {
  border: 1px solid silver;
  margin: 0 2px;
  padding: 0.35em 0.625em 0.75em;
}

textarea {
  overflow: auto;
  vertical-align: top;
}

optgroup {
  font-weight: bold;
}

input:focus,
button:focus,
select:focus,
textarea:focus {
  outline: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

/* end normalize & reset */
html,
body {
  position: relative;
  min-height: 100%;
  scroll-behavior: smooth;
}

body {
  font: 16px/24px;
  font-family: "Proxima Nova R", Arial, sans-serif;
  background: #fff;
  color: #45484f;
}
body.site-home .main-wrapper {
  padding: 160px 0 0 0;
}

header.header {
  margin-top: 50px;
  margin-bottom: 45px;
  background: #fff;
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 119;
  -webkit-box-shadow: 0px 1px 2px 0px rgba(0, 0, 0, 0.2);
          box-shadow: 0px 1px 2px 0px rgba(0, 0, 0, 0.2);
  -webkit-transition: all ease-in-out 0.3s;
  transition: all ease-in-out 0.3s;
}
@media (max-width: 1200px) {
  header.header {
    margin-top: 0;
    -webkit-box-shadow: 0px 1px 2px 0px rgba(0, 0, 0, 0.2) !important;
            box-shadow: 0px 1px 2px 0px rgba(0, 0, 0, 0.2) !important;
  }
}
header.header .col-sm-12 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
header.header .topline-lang {
  margin-right: 15px;
  margin-bottom: 3px;
}
@media (max-width: 992px) {
  header.header .topline-lang {
    width: 36px;
  }
}
@media (max-width: 540px) {
  header.header .topline-lang {
    margin-right: 0;
  }
}
header.header .topline-contacts {
  margin-bottom: 3px;
}
header.header .logo {
  width: 100%;
  max-width: 348px;
  margin-left: -40px;
  margin-right: 50px;
  margin-top: -35px;
  margin-bottom: -45px;
  -webkit-transition: all ease-in-out 0.3s;
  transition: all ease-in-out 0.3s;
}
@media (max-width: 1200px) {
  header.header .logo {
    width: 100%;
    max-width: 148px;
    margin-left: 0;
    margin-right: 50px;
    margin-top: 10px;
    margin-bottom: -15px;
  }
}
header.header .m-toggle-container {
  display: none;
  -webkit-box-flex: 1;
      -ms-flex: 1 1;
          flex: 1 1;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media (max-width: 1200px) {
  header.header .m-toggle-container {
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
  }
}
header.header .m-toggle-container .m-toggle {
  width: 38px;
  height: 30px;
  cursor: pointer;
  position: relative;
  -webkit-transition: all ease-in-out 0.3s;
  transition: all ease-in-out 0.3s;
}
header.header .m-toggle-container .m-toggle span {
  background: #45484f;
  display: block;
  width: 38px;
  height: 4px;
  position: absolute;
}
header.header .m-toggle-container .m-toggle span:first-child {
  top: 0;
  margin-top: 0;
  left: 0;
  -webkit-transform: rotate(0);
      -ms-transform: rotate(0);
          transform: rotate(0);
  -webkit-transition: all ease-in-out 0.3s;
  transition: all ease-in-out 0.3s;
}
header.header .m-toggle-container .m-toggle span:nth-child(2) {
  left: 0;
  top: 50%;
  margin-top: -2px;
  opacity: 1;
  -webkit-transition: all ease-in-out 0.3s;
  transition: all ease-in-out 0.3s;
}
header.header .m-toggle-container .m-toggle span:last-child {
  bottom: 0;
  margin-bottom: 0;
  left: 0;
  -webkit-transform: rotate(0deg);
      -ms-transform: rotate(0deg);
          transform: rotate(0deg);
  -webkit-transition: all ease-in-out 0.3s;
  transition: all ease-in-out 0.3s;
}
header.header .m-toggle-container .m-toggle.show-mobile-menu {
  width: 38px;
  height: 30px;
  cursor: pointer;
  position: relative;
}
header.header .m-toggle-container .m-toggle.show-mobile-menu span {
  display: block;
  width: 38px;
  height: 4px;
  position: absolute;
}
header.header .m-toggle-container .m-toggle.show-mobile-menu span:first-child {
  top: 50%;
  margin-top: -2px;
  left: 0;
  -webkit-transform: rotate(225deg);
      -ms-transform: rotate(225deg);
          transform: rotate(225deg);
}
header.header .m-toggle-container .m-toggle.show-mobile-menu span:nth-child(2) {
  left: 0;
  top: 50%;
  margin-top: -2px;
  opacity: 0;
}
header.header .m-toggle-container .m-toggle.show-mobile-menu span:last-child {
  bottom: 50%;
  margin-bottom: -2px;
  left: 0;
  -webkit-transform: rotate(-225deg);
      -ms-transform: rotate(-225deg);
          transform: rotate(-225deg);
}
header.header .m-nav {
  -webkit-box-flex: 1;
      -ms-flex: 1 1;
          flex: 1 1;
  -webkit-transition: all ease-in-out 0.3s;
  transition: all ease-in-out 0.3s;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
}
@media (max-width: 1200px) {
  header.header .m-nav {
    display: none !important;
  }
}
header.header .m-nav .main-menu {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
}
header.header .m-nav .main-menu .main-menu__inner {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
}
header.header .m-nav .main-menu .main-menu__inner .main-menu__list {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}
header.header .m-nav .main-menu .main-menu__inner .main-menu__list > li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: 100%;
  font-size: 13px;
}
header.header .m-nav .main-menu .main-menu__inner .main-menu__list > li > a {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  min-width: 0;
  height: 100%;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  position: relative;
  padding: 10px 7px;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  max-width: 100%;
}
header.header .m-nav .main-menu .main-menu__inner .main-menu__list > li > a span {
  min-width: 0;
  display: block;
  white-space: nowrap;
  max-width: 100%;
}
header.header .m-nav .main-menu .main-menu__inner .main-menu__list > li > a:after {
  content: "";
  position: absolute;
  width: 100%;
  top: 100%;
  bottom: 0;
  left: 0;
  background: #f5ee37;
  z-index: -1;
  -webkit-transition: all ease-in-out 0.3s;
  transition: all ease-in-out 0.3s;
}
header.header .m-nav .main-menu .main-menu__inner .main-menu__list > li > a:hover:after {
  top: 90%;
}
header.header .m-nav .main-menu .main-menu__inner .main-menu__list > li > a:hover {
  border: none;
}
header.header .m-nav .main-menu .main-menu__inner .main-menu__list > li > span {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: 100%;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  position: relative;
  padding: 0 10px;
  color: #45484f;
  cursor: pointer;
  -webkit-transition: color ease-out 0.8s;
  transition: color ease-out 0.8s;
}
header.header.fix-menu {
  margin-top: 0;
  -webkit-box-shadow: 0px 1px 2px 0px rgba(0, 0, 0, 0.2) !important;
          box-shadow: 0px 1px 2px 0px rgba(0, 0, 0, 0.2) !important;
}
header.header.fix-menu .logo {
  width: 100%;
  max-width: 114px;
  margin-left: 0;
  margin-right: 32px;
  margin-top: 10px;
  margin-bottom: -15px;
}
header.header.fix-menu .m-nav {
  -webkit-box-flex: 1;
      -ms-flex: 1 1;
          flex: 1 1;
  margin-right: 160px;
}
header.header.fix-menu .m-nav .main-menu .main-menu__inner .main-menu__list > li {
  font-size: 11px;
}
header.header.fix-menu .m-nav .main-menu .main-menu__inner .main-menu__list > li > * {
  padding: 10px 5px;
}
header.header.fix-menu .topline-contacts {
  max-width: 0;
  max-height: 0;
}
header.header.fix-menu .topline {
  right: 15px;
  top: 13px;
}
@media screen and (max-width: 1200px) {
  header.header.fix-menu .topline {
    top: 6px;
    right: 90px;
  }
}
header.header.fix-menu #lang_sel {
  max-width: 22px !important;
  -webkit-transition: max-width ease-in-out 0.3s;
  transition: max-width ease-in-out 0.3s;
  background-color: transparent;
  width: 100%;
}
@media screen and (max-width: 992px) {
  header.header.fix-menu #lang_sel {
    max-width: 36px !important;
  }
}
@media screen and (max-width: 992px) {
  header.header.fix-menu #lang_sel {
    max-width: 36px !important;
  }
}
header.header.fix-menu #lang_sel a {
  max-width: 22px !important;
  overflow: hidden;
  -webkit-transition: max-width ease-in-out 0.3s;
  transition: max-width ease-in-out 0.3s;
}
@media screen and (max-width: 992px) {
  header.header.fix-menu #lang_sel a {
    max-width: 36px !important;
  }
}
header.header.fix-menu #lang_sel img.iclflag {
  width: 18px !important;
  height: 18px !important;
  min-width: 18px !important;
  min-height: 18px !important;
  display: inline-block;
  border-radius: 9px;
  top: auto !important;
  margin-right: 5px;
}
@media (max-width: 992px) {
  header.header.fix-menu #lang_sel img.iclflag {
    width: 30px !important;
    height: 30px !important;
    min-width: 30px !important;
    min-height: 30px !important;
    border-radius: 15px;
  }
}
header.header.other-pages.fix-menu {
  background: url(img/bg-main.jpg);
  top: 0;
  padding-top: 0;
}
@media (max-width: 1200px) {
  header.header.other-pages.fix-menu {
    margin-top: 0;
    -webkit-box-shadow: 0px 1px 2px 0px rgba(0, 0, 0, 0.2) !important;
            box-shadow: 0px 1px 2px 0px rgba(0, 0, 0, 0.2) !important;
  }
}
header.header.other-pages.fix-menu .m-nav {
  -webkit-box-flex: 1;
      -ms-flex: 1 1;
          flex: 1 1;
  margin-right: 160px;
  margin-top: 0;
}
header.header.other-pages.fix-menu .topline-contacts {
  max-width: 0;
  max-height: 0;
}
header.header.other-pages.fix-menu .topline {
  right: 15px;
  top: 13px;
  background: none;
  padding: 0;
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 0;
}
@media screen and (max-width: 1200px) {
  header.header.other-pages.fix-menu .topline {
    top: 7px;
    right: 90px;
  }
}
@media screen and (max-width: 1200px) {
  header.header.other-pages.fix-menu .m-toggle {
    top: 0;
  }
}
header.header.other-pages.fix-menu #lang_sel {
  max-width: 22px !important;
  -webkit-transition: max-width ease-in-out 0.3s;
  transition: max-width ease-in-out 0.3s;
}
@media screen and (max-width: 992px) {
  header.header.other-pages.fix-menu #lang_sel {
    max-width: 36px !important;
  }
}
header.header.other-pages.fix-menu #lang_sel a {
  max-width: 22px !important;
  overflow: hidden;
  -webkit-transition: max-width ease-in-out 0.3s;
  transition: max-width ease-in-out 0.3s;
}
@media screen and (max-width: 992px) {
  header.header.other-pages.fix-menu #lang_sel a {
    max-width: 36px !important;
  }
}
header.header.other-pages.fix-menu #lang_sel img.iclflag {
  width: 18px !important;
  height: 18px !important;
  min-width: 18px !important;
  min-height: 18px !important;
  display: inline-block;
  border-radius: 9px;
  top: auto !important;
  margin-right: 5px;
}
@media (max-width: 992px) {
  header.header.other-pages.fix-menu #lang_sel img.iclflag {
    width: 30px !important;
    height: 30px !important;
    min-width: 30px !important;
    min-height: 30px !important;
    border-radius: 15px;
  }
}
header.header.other-pages {
  background: none;
  color: #fff;
  margin-top: 0;
  -webkit-box-shadow: none;
          box-shadow: none;
  top: 0;
  padding-top: 15px;
  /*.topline-contacts {
    max-width: 0;
    max-height: 0;
  }*/
}
@media (max-width: 1200px) {
  header.header.other-pages {
    -webkit-box-shadow: none !important;
            box-shadow: none !important;
  }
}
@media (max-width: 770px) {
  header.header.other-pages {
    padding-top: 0;
    -webkit-box-shadow: 0px 1px 2px 0px rgba(0, 0, 0, 0.2) !important;
            box-shadow: 0px 1px 2px 0px rgba(0, 0, 0, 0.2) !important;
    background: url(img/bg-main.jpg);
  }
}
header.header.other-pages .logo {
  width: 100%;
  max-width: 114px;
  margin-left: 0;
  margin-right: 25px;
  margin-top: 10px;
  margin-bottom: -15px;
}
header.header.other-pages .m-toggle span {
  background: #fff;
}
header.header.other-pages .m-nav {
  -webkit-box-flex: 1;
      -ms-flex: 1 1;
          flex: 1 1;
  margin-right: 0px;
  margin-top: 42px;
}
header.header.other-pages .m-nav a {
  color: #fff;
}
header.header.other-pages .topline {
  right: 15px;
  top: -15px;
  background: rgba(0, 0, 0, 0.15);
  padding: 5px 10px 0 10px;
  border-bottom-right-radius: 10px;
  border-bottom-left-radius: 10px;
}
@media screen and (max-width: 1200px) {
  header.header.other-pages .topline {
    top: 19px;
    right: 90px;
    background: none;
  }
}
@media screen and (max-width: 770px) {
  header.header.other-pages .topline {
    top: 2px;
    padding: 5px 0 0 10px;
  }
}
@media screen and (max-width: 1200px) {
  header.header.other-pages .m-toggle {
    top: 10px;
  }
}
@media screen and (max-width: 770px) {
  header.header.other-pages .m-toggle {
    top: 0;
  }
}
header.header.other-pages #lang_sel img.iclflag {
  width: 18px !important;
  height: 18px !important;
  display: inline-block;
  border-radius: 9px;
  top: auto !important;
  margin-right: 5px;
}
@media (max-width: 992px) {
  header.header.other-pages #lang_sel img.iclflag {
    width: 30px !important;
    height: 30px !important;
    min-width: 30px !important;
    min-height: 30px !important;
    border-radius: 15px;
  }
}

.side-menu {
  position: fixed;
  left: -400px;
  top: 0;
  bottom: 0;
  z-index: 120;
  width: 240px;
  background: #fff;
  -webkit-box-shadow: 20px 0 100px 0px rgba(0, 0, 0, 0.5);
          box-shadow: 20px 0 100px 0px rgba(0, 0, 0, 0.5);
  overflow: auto;
  -webkit-transition: all ease-in-out 0.3s;
  transition: all ease-in-out 0.3s;
}
.side-menu #social {
  padding: 10px 20px 20px 20px;
}
.side-menu #social ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.side-menu #social ul li {
  margin: 0;
}
.side-menu #social img {
  display: block;
}
.side-menu.side-menu-visible {
  left: 0;
}
.side-menu > img {
  margin: 10px 10px 10px 10px;
}
.side-menu > ul {
  display: block;
  border-top: solid 1px #dddddd;
}
.side-menu > ul > li {
  display: block;
  border-bottom: solid 1px #dddddd;
}
.side-menu > ul > li > ul a, .side-menu > ul > li span {
  display: block;
  padding: 12px 20px 10px 20px;
  text-transform: uppercase;
  color: #45484f;
  font-family: "Proxima Nova B";
  cursor: pointer;
}
.side-menu > ul > li > ul a:hover, .side-menu > ul > li span:hover {
  text-decoration: none;
}
.side-menu > ul > li > ul a:active, .side-menu > ul > li span:active {
  text-decoration: none;
  background: #e9f6ff;
}
.side-menu > ul > li > a,
.side-menu > ul > li > span {
  display: block;
  padding: 12px 20px 10px 20px;
  text-transform: uppercase;
  color: #45484f;
  font-family: "Proxima Nova B";
  cursor: pointer;
}
.side-menu > ul > li > a:hover,
.side-menu > ul > li > span:hover {
  text-decoration: none;
}
.side-menu > ul > li > a:active,
.side-menu > ul > li > span:active {
  text-decoration: none;
  background: #e9f6ff;
}
.side-menu > ul > li > ul {
  display: none;
  background: #f1f1f1;
}
.side-menu > ul > li > ul li {
  border-top: solid 1px #dddddd;
}
.side-menu > ul > li > ul li a, .side-menu > ul > li > ul li span {
  text-transform: none;
  font-family: "Proxima Nova R";
}
.side-menu > ul > li > ul li > ul {
  display: none;
  background: #f1f1f1;
}
.side-menu > ul > li > ul > .menu-item-has-children {
  position: relative;
}
.side-menu > ul > li > ul > .menu-item-has-children span {
  position: relative;
  z-index: 1;
}
.side-menu > ul > li > ul > .menu-item-has-children span:active {
  background: none;
}
.side-menu > ul > li > ul > .menu-item-has-children:before {
  position: absolute;
  content: "\f107";
  color: #45484f;
  font: normal normal normal 14px/1 FontAwesome;
  right: 10px;
  font-weight: 600;
  font-size: 16px;
  top: 14px;
}
.side-menu > ul .competition-menu > a:active {
  background: #ff443d;
}

.add-icon-down {
  position: relative;
}
.add-icon-down .fa-angle-down {
  position: absolute;
  color: #45484f;
  right: 0px;
  font-weight: 600;
  font-size: 16px;
  top: 0px;
  padding: 13px 20px;
  cursor: pointer;
}

.topline {
  position: absolute;
  right: 15px;
  top: -35px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-transition: all ease-in-out 0.3s;
  transition: all ease-in-out 0.3s;
}
@media screen and (max-width: 540px) {
  .topline #social {
    display: none;
  }
}
@media screen and (max-width: 1200px) {
  .topline {
    top: 15px;
    right: 90px;
  }
}
.topline .topline-contacts {
  margin-right: 15px;
  color: #fff;
  overflow: hidden;
  max-width: 500px;
  max-height: 50px;
  -webkit-transition: all ease-in-out 0.3s;
  transition: all ease-in-out 0.3s;
}
.topline .topline-contacts span {
  color: #f5ee37;
}
@media screen and (max-width: 1200px) {
  .topline .topline-contacts {
    display: none;
  }
}

#social {
  z-index: 999;
}

#social .module {
  margin: 0;
  float: none;
}

#social ul {
  display: block;
  list-style: none;
}

#social ul li {
  display: inline-block;
}

#social ul li + li {
  margin-left: 2px;
}

#social ul li a {
  display: block;
  width: 22px;
  height: 22px;
}
@media (max-width: 1200px) {
  #social ul li a {
    width: 25px;
    height: 25px;
  }
}

#lang_sel {
  height: 22px !important;
  background-color: transparent;
  max-width: 90px;
  -webkit-transition: max-width ease-in-out 0.3s;
  transition: max-width ease-in-out 0.3s;
}
@media (max-width: 992px) {
  #lang_sel {
    height: 36px !important;
  }
}

.wpml-ls-legacy-dropdown .wpml-ls-flag + span {
  margin-left: 0.3em !important;
  font-size: 13px;
  line-height: 14px;
}

#lang_sel li,
#lang_sel ul ul {
  width: 100% !important;
}

#lang_sel ul ul {
  top: 22px !important;
  border-top: solid 1px #083e61 !important;
}
@media (max-width: 992px) {
  #lang_sel ul ul {
    top: 36px !important;
  }
}

#lang_sel li:hover a.lang_sel_sel {
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
}

#lang_sel a {
  height: 22px !important;
  padding: 0 15px 0 2px !important;
  -webkit-transition: max-width ease-in-out 0.3s;
  transition: max-width ease-in-out 0.3s;
  overflow: hidden;
}
@media (max-width: 992px) {
  #lang_sel a {
    height: 36px !important;
    max-width: 36px !important;
    padding: 3px !important;
  }
}

#lang_sel li ul a {
  background: #09476e !important;
  border: none;
  color: #fff !important;
  border-bottom-left-radius: 11px;
  border-bottom-right-radius: 11px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media (max-width: 992px) {
  #lang_sel li ul a {
    border-bottom-left-radius: 15px;
    border-bottom-right-radius: 15px;
  }
}
#lang_sel li ul a:hover {
  background: #06304a !important;
}

#lang_sel a.lang_sel_sel {
  background: #09476e !important;
  border: none;
  color: #fff !important;
  border-radius: 11px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
#lang_sel a.lang_sel_sel:after {
  display: none;
}
@media (max-width: 992px) {
  #lang_sel a.lang_sel_sel {
    line-height: 36px;
    border-radius: 18px;
  }
}

#lang_sel img.iclflag {
  width: 18px !important;
  height: 18px !important;
  display: inline-block;
  border-radius: 9px;
  top: auto !important;
  margin-right: 5px;
}
@media (max-width: 992px) {
  #lang_sel img.iclflag {
    width: 30px !important;
    height: 30px !important;
    min-width: 30px !important;
    min-height: 30px !important;
    border-radius: 15px;
  }
}

section {
  padding: 62px 0;
}

.bg-blue-light {
  background: #e9f6ff;
}

.bg-blue-light-g-updown {
  background: #e9f6ff;
  background: -webkit-gradient(linear, left top, left bottom, from(#e9f6ff), to(#ffffff));
  background: linear-gradient(to bottom, #e9f6ff 0%, #ffffff 100%);
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr="#e9f6ff", endColorstr="#ffffff", GradientType=0);
}

.bg-blue-light-g-downup {
  background: #ffffff;
  background: -webkit-gradient(linear, left top, left bottom, from(#ffffff), to(#e9f6ff));
  background: linear-gradient(to bottom, #ffffff 0%, #e9f6ff 100%);
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr="#ffffff", endColorstr="#e9f6ff", GradientType=0);
}

.section-title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.section-title .section-title-sub {
  font-size: 20px;
  line-height: 20px;
  font-family: "Proxima Nova S";
  border-radius: 13px;
  padding: 4px 12px 2px 12px;
  color: #fff;
  background: #ff433c;
  text-transform: uppercase;
}
@media (max-width: 1200px) {
  .section-title .section-title-sub {
    font-size: 16px;
    line-height: 16px;
  }
}
.section-title .section-title-main {
  font-size: 79px;
  line-height: 1;
  margin-top: 13px;
  text-transform: uppercase;
  text-align: center;
}
@media (max-width: 1200px) {
  .section-title .section-title-main {
    font-size: 60px;
  }
}
@media (max-width: 600px) {
  .section-title .section-title-main {
    font-size: 40px;
  }
}
.section-title .section-title-main h1 {
  font-size: 79px;
  line-height: 1;
  margin-top: 13px;
  text-transform: uppercase;
  text-align: center;
}
@media (max-width: 1200px) {
  .section-title .section-title-main h1 {
    font-size: 40px;
  }
}
@media (max-width: 600px) {
  .section-title .section-title-main h1 {
    font-size: 30px;
  }
}
@media (max-width: 500px) {
  .section-title .section-title-main h1 {
    font-size: 24px;
  }
}
.section-title.section-title-left {
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}
@media (max-width: 1200px) {
  .section-title.section-title-left {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}
.section-title.section-title-left .section-title-main {
  margin-left: -4px;
}
@media (max-width: 1200px) {
  .section-title.section-title-left .section-title-main {
    margin-left: 0;
  }
}
.section-title + * {
  margin-top: 18px;
}

.other-page-content .section-title {
  margin-top: 30px;
}

section.home {
  overflow: hidden;
  position: relative;
  -webkit-box-flex: 1;
      -ms-flex: 1 1;
          flex: 1 1;
}

.top-offset {
  background: url(img/bg-main.jpg);
  padding: 62px 0 0 0;
  margin-top: -62px;
  height: 200px;
  z-index: 1;
  position: relative;
}
@media (max-width: 770px) {
  .top-offset {
    display: none;
  }
}

.other-page-content {
  margin-top: -88px;
  background: #fff;
  position: relative;
}
@media (max-width: 770px) {
  .other-page-content {
    margin-top: 0;
  }
}
.other-page-content:before {
  content: "";
  position: absolute;
  left: 5px;
  top: 0;
  background: #f00;
  width: 10px;
  height: 300px;
  display: block;
  -webkit-box-shadow: 0px 0px 18px 0px rgba(0, 0, 0, 0.46);
  box-shadow: 0px 0px 18px 0px rgba(0, 0, 0, 0.46);
  -webkit-transform: rotate(-2deg);
      -ms-transform: rotate(-2deg);
          transform: rotate(-2deg);
  z-index: 2;
}
@media (max-width: 770px) {
  .other-page-content:before {
    display: none;
  }
}
.other-page-content:after {
  content: "";
  position: absolute;
  right: 5px;
  top: 0;
  background: #f00;
  width: 10px;
  height: 300px;
  display: block;
  -webkit-box-shadow: 0px 0px 18px 0px rgba(0, 0, 0, 0.46);
  box-shadow: 0px 0px 18px 0px rgba(0, 0, 0, 0.46);
  -webkit-transform: rotate(2deg);
      -ms-transform: rotate(2deg);
          transform: rotate(2deg);
  z-index: 2;
}
@media (max-width: 770px) {
  .other-page-content:after {
    display: none;
  }
}
.other-page-content .container-wrap {
  padding: 20px 50px;
  margin-left: -15px;
  margin-right: -15px;
  background: #fff;
  position: relative;
  z-index: 4;
  min-height: 400px;
}
@media (max-width: 770px) {
  .other-page-content .container-wrap {
    padding: 20px;
  }
}

div.main {
  color: #fff;
  position: relative;
  background: url(img/bg-main.jpg);
  margin-top: -160px;
  padding: 0;
  overflow: hidden;
}
div.main .col-md-12 {
  min-height: 1000px;
  padding-top: 160px;
}
@media (max-width: 1200px) {
  div.main .col-md-12 {
    padding-top: 40px;
    min-height: 750px;
  }
}
@media (max-width: 767px) {
  div.main .col-md-12 {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  div.main .col-md-12 .main-date {
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
  }
  div.main .col-md-12 .main-date img {
    margin-right: -10%;
  }
  div.main .col-md-12 #main-timer {
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
  }
  div.main .col-md-12 .main-desc {
    -webkit-box-ordinal-group: 4;
        -ms-flex-order: 3;
            order: 3;
  }
  div.main .col-md-12 .main-ticket {
    -webkit-box-ordinal-group: 5;
        -ms-flex-order: 4;
            order: 4;
  }
  div.main .col-md-12 .video-broadcast--wrapp {
    -webkit-box-ordinal-group: 6;
        -ms-flex-order: 5;
            order: 5;
  }
  div.main .col-md-12 .download-app {
    -webkit-box-ordinal-group: 7;
        -ms-flex-order: 6;
            order: 6;
  }
  div.main .col-md-12 .main-girl {
    -webkit-box-ordinal-group: 8;
        -ms-flex-order: 7;
            order: 7;
  }
  div.main .col-md-12 .main-girl {
    -webkit-box-ordinal-group: 8;
        -ms-flex-order: 7;
            order: 7;
  }
  div.main .col-md-12 .home-poster {
    -webkit-box-ordinal-group: 9;
        -ms-flex-order: 8;
            order: 8;
  }
}
@media (max-width: 600px) {
  div.main .col-md-12 .main-date {
    width: 100%;
  }
  div.main .col-md-12 .main-desc {
    margin-top: 10px;
  }
  div.main .col-md-12 #main-timer {
    margin: 10px 0 0 0;
  }
}
div.main .main-date {
  margin-top: 82px;
  position: relative;
}
@media (max-width: 760px) {
  div.main .main-date {
    text-align: center;
    margin-top: 60px;
  }
}
div.main .main-date img {
  max-width: 460px;
  width: 100%;
}
div.main .main-desc {
  position: relative;
  z-index: 2;
  font-size: 18px;
  margin-top: 27px;
  font-family: "Proxima Nova R", Arial, sans-serif;
}
@media (max-width: 760px) {
  div.main .main-desc {
    text-align: center;
  }
}
div.main .main-desc span {
  display: block;
  color: #f5ee37;
  font-weight: 700;
  font-size: 20px;
}
div.main .main-ticket {
  margin-top: 68px;
  position: relative;
  z-index: 2;
}
@media (max-width: 760px) {
  div.main .main-ticket {
    text-align: center;
    margin-top: 30px !important;
  }
}
div.main .main-ticket .btn {
  padding-left: 50px;
  padding-right: 50px;
  margin-left: 5px;
  margin-right: 5px;
  margin-top: 5px;
}
div.main .main-timer {
  position: relative;
  z-index: 2;
  margin-top: 70px;
  width: 440px;
  height: 125px;
  padding: 17px 0 0 12px;
}
@media (max-width: 760px) {
  div.main .main-timer {
    margin: auto;
    margin-top: 30px;
    width: 435px;
  }
}
@media (max-width: 600px) {
  div.main .main-timer {
    margin: auto;
    margin-top: 30px;
    width: 340px;
    padding-top: 35px;
  }
}
@media (max-width: 400px) {
  div.main .main-timer {
    margin: auto;
    margin-top: 30px;
    width: 300px;
    padding-top: 45px;
  }
}
div.main .main-timer.timer-ru {
  background: url(img/timer.svg) center left no-repeat;
}
div.main .main-timer.timer-de {
  background: url(img/timer-de.svg) center left no-repeat;
}
div.main .main-girl {
  position: absolute;
  bottom: 0;
  right: 0;
}
@media (max-width: 1200px) {
  div.main .main-girl {
    right: -230px;
  }
}
@media (max-width: 992px) {
  div.main .main-girl {
    right: -330px;
    width: 700px;
  }
}
@media (max-width: 870px) {
  div.main .main-girl {
    right: -130px;
    width: 500px;
  }
}
@media (max-width: 767px) {
  div.main .main-girl {
    width: 100%;
    text-align: center;
    right: auto;
    left: auto;
    position: relative;
  }
}
div.main .main-girl img {
  display: block;
  width: 100%;
  max-width: 815px;
  z-index: 1;
  position: relative;
}
@media (max-width: 767px) {
  div.main .main-girl img {
    max-width: 400px;
    margin: auto;
  }
}
div.main .main-girl .additional-background {
  width: 100%;
  max-width: 210px;
  position: absolute;
  top: -35px;
  left: 70px;
}
@media (max-width: 1199px) {
  div.main .main-girl .additional-background {
    top: -282px;
    left: 210px;
  }
}
@media (max-width: 991px) {
  div.main .main-girl .additional-background {
    top: -130px;
    left: 35px;
  }
}
@media (max-width: 870px) {
  div.main .main-girl .additional-background {
    top: -350px;
    left: 55px;
  }
}
@media (max-width: 767px) {
  div.main .main-girl .additional-background {
    max-width: 170px;
    top: -115px;
    left: 10%;
  }
}
@media (max-width: 650px) {
  div.main .main-girl .additional-background {
    max-width: 170px;
    top: -90px;
    left: 5%;
  }
}
div.main .main-girl .additional-background img {
  width: 100%;
}

section.whatis {
  text-align: justify;
}
section.whatis .row > *:first-child {
  padding-right: 60px;
}
@media (max-width: 992px) {
  section.whatis .row > *:first-child {
    padding-right: 15px;
    margin-bottom: 60px;
  }
}
section.whatis .row > *:last-child {
  padding-left: 60px;
}
@media (max-width: 992px) {
  section.whatis .row > *:last-child {
    padding-left: 15px;
  }
}

section.whyis {
  background: #fff;
}
@media (max-width: 992px) {
  section.whyis > .container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
@media (max-width: 992px) {
  section.whyis > .container > .row:nth-child(1) {
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
  }
}
@media (max-width: 992px) {
  section.whyis > .container > .row:nth-child(2) {
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
  }
}
@media (max-width: 992px) {
  section.whyis > .container > .row:nth-child(3) {
    -webkit-box-ordinal-group: 4;
        -ms-flex-order: 3;
            order: 3;
  }
}
section.whyis .why-is-center {
  min-height: 380px;
  height: 380px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media (max-width: 1200px) {
  section.whyis .why-is-center {
    min-height: 290px;
    height: 290px;
  }
}
@media (max-width: 992px) {
  section.whyis .why-is-center {
    min-height: 0;
    height: auto;
  }
}
section.whyis .why-is-center img {
  position: absolute;
  top: 0;
  bottom: 0;
  height: 100%;
  left: 50%;
  -webkit-transform: translateX(-50%);
      -ms-transform: translateX(-50%);
          transform: translateX(-50%);
}
@media (max-width: 992px) {
  section.whyis .why-is-center img {
    display: none;
  }
}
section.whyis .why-is-center .section-title {
  padding-bottom: 20px;
}
section.whyis .whyis-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media (max-width: 768px) {
  section.whyis .whyis-item {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    margin-bottom: 40px;
  }
}
section.whyis .whyis-item .whyis-item-icon img {
  width: 150px;
  height: 150px;
}
@media (max-width: 1200px) {
  section.whyis .whyis-item .whyis-item-icon img {
    width: 100px;
    height: 100px;
  }
}
@media (max-width: 768px) {
  section.whyis .whyis-item .whyis-item-icon img {
    width: 150px;
    height: 150px;
  }
}
section.whyis .whyis-item .whyis-item-desc {
  font-size: 20px;
  font-family: "Proxima Nova S", Arial, sans-serif;
}
@media (max-width: 1200px) {
  section.whyis .whyis-item .whyis-item-desc {
    font-size: 16px;
  }
}
@media (max-width: 600px) {
  section.whyis .whyis-item .whyis-item-desc {
    text-align: center;
  }
}

@media (max-width: 992px) {
  section.foris .foris-item {
    margin-bottom: 40px;
  }
}
section.foris .foris-item .foris-img {
  text-align: center;
}
section.foris .foris-item .foris-img img {
  width: 100%;
  max-width: 249px;
}
section.foris .foris-item .foris-desc {
  text-align: center;
  font-size: 22px;
  font-family: "Proxima Nova S", Arial, sans-serif;
  margin-top: 24px;
  padding: 0 20px;
}
@media (max-width: 1200px) {
  section.foris .foris-item .foris-desc {
    font-size: 16px;
  }
}
section.foris .section-title + .row {
  margin-top: 63px;
}

section.artists {
  background: #fff;
  display: block;
  position: relative;
}
section.artists > div {
  overflow: hidden;
}
section.artists .owl-carusel-fullwidth {
  margin-top: 43px;
}

section.archive {
  display: block;
  position: relative;
}
section.archive > div {
  overflow: hidden;
}
section.archive .owl-carusel-fullwidth {
  margin-top: 43px;
}

section.programm {
  padding-bottom: 300px;
}
section.programm .tabs {
  margin-top: 30px;
}
section.programm .programm-data table {
  font-size: 22px;
  -webkit-box-shadow: 0px 1px 2px 0px rgba(0, 0, 0, 0.2);
          box-shadow: 0px 1px 2px 0px rgba(0, 0, 0, 0.2);
  background: #fff;
}
@media (max-width: 1200px) {
  section.programm .programm-data table {
    font-size: 16px;
  }
}
section.programm .programm-data table tr td {
  padding: 10px 10px;
}
section.programm .programm-data table tr td:first-child {
  white-space: nowrap;
  text-align: center;
  font-family: Roboto;
  background: #e9f6ff;
}

section.tickets .ticket-item {
  -webkit-box-shadow: 0px 1px 2px 0px rgba(0, 0, 0, 0.2);
          box-shadow: 0px 1px 2px 0px rgba(0, 0, 0, 0.2);
  background: #fff;
  text-align: center;
  margin-bottom: 40px;
  border-top: solid 1px #e5e5e5;
}
section.tickets .ticket-item > * + * {
  border-top: solid 1px #e5e5e5;
}
section.tickets .ticket-item .ticket-header {
  font-family: "Proxima Nova S";
  font-size: 30px;
  padding: 25px 20px;
}
@media (max-width: 1200px) {
  section.tickets .ticket-item .ticket-header {
    font-size: 22px;
    padding: 20px 10px;
  }
}
section.tickets .ticket-item .ticket-header div {
  font-family: "Proxima Nova R";
  font-size: 14px;
  color: #ff433c;
  display: block;
  text-align: center;
  margin-top: 10px;
  min-height: 18px;
}
section.tickets .ticket-item .ticket-desc {
  font-family: "Proxima Nova R";
  font-size: 20px;
  padding: 25px 20px;
}
@media (max-width: 1200px) {
  section.tickets .ticket-item .ticket-desc {
    font-size: 16px;
    padding: 20px;
  }
}
section.tickets .ticket-item .ticket-footer {
  border: none;
}
section.tickets .ticket-item .ticket-price {
  padding: 25px 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media (max-width: 1200px) {
  section.tickets .ticket-item .ticket-price {
    padding: 12px 10px 6px 10px;
  }
}
section.tickets .ticket-item .ticket-price > div {
  font-size: 60px;
  position: relative;
  font-family: "Proxima Nova B";
}
section.tickets .ticket-item .ticket-price > div p {
  display: none;
}
section.tickets .ticket-item .ticket-price > div div {
  font-family: "Proxima Nova L";
  position: absolute;
  font-size: 30px;
  right: -24px;
  top: 0;
}
section.tickets .ticket-item .ticket-price > div:nth-child(2) {
  font-size: 14px;
  text-transform: uppercase;
  color: #ff433c;
  min-height: 17px;
  width: 100%;
}
section.tickets .ticket-item .ticket-button {
  padding: 25px 20px;
  min-height: 109px;
}

section.map .map-info {
  text-align: center;
  font-size: 22px;
  margin-top: 40px;
}
section.map .map-container {
  width: 100%;
  margin-top: 40px;
  position: relative;
  text-align: center;
}
section.map .map-container img {
  width: 100%;
  max-width: 1500px;
}

section.contacts .contacts-info {
  text-align: center;
  font-size: 32px;
  margin-top: 40px;
  margin-bottom: 30px;
  color: #d4d5d6;
}
section.contacts .contacts-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media (max-width: 992px) {
  section.contacts .contacts-item {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
@media (max-width: 768px) {
  section.contacts .contacts-item {
    margin-bottom: 40px;
  }
}
section.contacts .contacts-item .contacts-item-icon img {
  width: 150px;
}
section.contacts .contacts-item .contacts-item-desc {
  font-size: 20px;
  font-family: "Proxima Nova R", Arial, sans-serif;
}
@media (max-width: 992px) {
  section.contacts .contacts-item .contacts-item-desc {
    text-align: center;
  }
}
section.contacts .contacts-item .contacts-item-desc > div {
  font-size: 16px;
  font-family: "Proxima Nova B", Arial, sans-serif;
  display: block;
  margin-bottom: 10px;
}

.buttons-container {
  margin-top: 50px;
  text-align: center;
}

.owl-carusel-item {
  display: inline-block;
  position: relative;
}
.owl-carusel-item:hover {
  z-index: 9;
}

.owl-carusel-fullwidth.owl-carousel .owl-stage-outer {
  overflow: visible;
}

.gallery-item {
  position: relative;
  margin-top: 0;
  margin-left: 0;
  margin-right: 0;
  margin-bottom: 0;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.gallery-item img {
  width: 100%;
  display: block;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.gallery-item:hover {
  margin-top: -15px;
  margin-left: -15px;
  margin-right: -15px;
  margin-bottom: -15px;
}
.gallery-item:hover .gallery-data .gallery-title {
  padding-left: 30px;
}
.gallery-item:hover .gallery-data .gallery-category {
  padding-left: 30px;
}
.gallery-item:hover .gallery-data .gallery-desc {
  max-height: 300px;
  padding: 15px 15px 0 30px;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  opacity: 1;
  margin-bottom: 60px;
}
.gallery-item:hover .gallery-data a {
  right: 0;
  opacity: 1;
}
.gallery-item .gallery-data {
  display: block;
  bottom: 20px;
  left: 0;
  right: 0;
  position: absolute;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  overflow: hidden;
}
.gallery-item .gallery-data .gallery-title {
  display: block;
  font-family: "Proxima Nova R";
  display: inline-block;
  padding: 10px 25px 8px 15px;
  background: none;
  text-align: center;
  color: #45484f;
  font-size: 36px;
  line-height: 36px;
  background-color: #f5ee37;
  border-top-right-radius: 30px;
  border-bottom-right-radius: 30px;
  text-transform: uppercase;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
@media (max-width: 1700px) {
  .gallery-item .gallery-data .gallery-title {
    font-size: 24px;
    line-height: 24px;
  }
}
.gallery-item .gallery-data a {
  display: block;
  font-family: "Proxima Nova S";
  display: inline-block;
  padding: 10px 30px 8px 20px;
  background: none;
  text-align: center;
  color: #fff;
  font-size: 16px;
  line-height: 16px;
  background-color: #1a9dd8;
  border-top-left-radius: 30px;
  border-bottom-left-radius: 30px;
  text-transform: uppercase;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  position: absolute;
  right: -100%;
  bottom: 0;
  opacity: 0;
  transition: all 0.3s;
}
.gallery-item .gallery-data a:hover {
  text-decoration: none;
  background: #157caa;
}
.gallery-item .gallery-data .gallery-category {
  display: block;
  padding: 10px 25px 8px 15px;
  font-family: "Proxima Nova S";
  font-size: 18px;
  text-transform: uppercase;
  color: #fff;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  display: none;
}
.gallery-item .gallery-data .gallery-desc {
  color: #fff;
  overflow: hidden;
  display: block;
  max-height: 0;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  padding: 0 0 0 15px;
  margin-bottom: 0;
  opacity: 0;
}
.gallery-item:after {
  content: "";
  width: 70%;
  height: 50%;
  bottom: 0;
  display: block;
  position: absolute;
  left: 50%;
  z-index: -1;
  -webkit-transform: translateX(-50%);
      -ms-transform: translateX(-50%);
          transform: translateX(-50%);
  -webkit-box-shadow: 0px 0px 0px 0px rgba(0, 0, 0, 0);
  box-shadow: 0px 0px 0px 0px rgba(0, 0, 0, 0);
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.gallery-item:hover:after {
  content: "";
  width: 70%;
  height: 50%;
  bottom: 0;
  display: block;
  position: absolute;
  left: 50%;
  z-index: -1;
  -webkit-transform: translateX(-50%);
      -ms-transform: translateX(-50%);
          transform: translateX(-50%);
  -webkit-box-shadow: 0px 10px 72px 0px rgba(0, 0, 0, 0.7);
  box-shadow: 0px 10px 72px 0px rgba(0, 0, 0, 0.7);
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.gallery-item:before {
  content: "";
  width: 100%;
  height: 100%;
  max-height: 50%;
  bottom: 0;
  display: block;
  position: absolute;
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0)), color-stop(76%, rgb(0, 0, 0)), to(rgb(0, 0, 0)));
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgb(0, 0, 0) 76%, rgb(0, 0, 0) 100%);
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr="#00000000", endColorstr="#000000", GradientType=0);
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  opacity: 0.5;
}
.gallery-item:hover:before {
  content: "";
  max-height: 100%;
  opacity: 0.8;
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0)), color-stop(76%, rgb(0, 0, 0)), to(rgb(0, 0, 0)));
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgb(0, 0, 0) 76%, rgb(0, 0, 0) 100%);
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr="#00000000", endColorstr="#000000", GradientType=0);
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

#gallery .gallery-item {
  overflow: hidden;
}
#gallery .gallery-item .gallery-data {
  overflow: visible;
}
#gallery .gallery-item .gallery-data .gallery-title {
  -webkit-transition: all ease-in-out 0.3s;
  transition: all ease-in-out 0.3s;
  top: 0;
}
#gallery .gallery-item:hover .gallery-data .gallery-title {
  top: -45px;
  position: relative;
}

.post-item {
  position: relative;
  margin-top: 0;
  margin-left: 0;
  margin-right: 0;
  margin-bottom: 0;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  margin: 10px;
}
.post-item img {
  width: 100%;
  display: block;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  max-width: 370px;
}
.post-item:hover .post-data .post-title {
  padding-left: 15px;
}
.post-item:hover .post-data .post-category {
  padding-left: 15px;
}
.post-item:hover .post-data .post-desc {
  max-height: 300px;
  padding: 0 15px 0 15px;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  opacity: 1;
  margin-bottom: 60px;
}
.post-item:hover .post-data a {
  right: 0;
  opacity: 1;
}
.post-item .post-data {
  display: block;
  bottom: 20px;
  left: 0;
  right: 0;
  position: absolute;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  overflow: hidden;
}
.post-item .post-data .post-title {
  display: block;
  font-family: "Proxima Nova R";
  display: inline-block;
  padding: 10px 25px 8px 15px;
  background: none;
  text-align: center;
  color: #45484f;
  font-size: 36px;
  line-height: 36px;
  background-color: #f5ee37;
  border-top-right-radius: 30px;
  border-bottom-right-radius: 30px;
  text-transform: uppercase;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.post-item .post-data a {
  display: block;
  font-family: "Proxima Nova S";
  display: inline-block;
  padding: 10px 30px 8px 20px;
  background: none;
  text-align: center;
  color: #fff;
  font-size: 16px;
  line-height: 16px;
  background-color: #1a9dd8;
  border-top-left-radius: 30px;
  border-bottom-left-radius: 30px;
  text-transform: uppercase;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  position: absolute;
  right: -100%;
  bottom: 0;
  opacity: 0;
  transition: all 0.3s;
}
.post-item .post-data a:hover {
  text-decoration: none;
  background: #157caa;
}
.post-item .post-data .post-category {
  display: block;
  padding: 10px 25px 8px 15px;
  font-family: "Proxima Nova S";
  font-size: 18px;
  text-transform: uppercase;
  color: #fff;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.post-item .post-data .post-desc {
  color: #fff;
  overflow: hidden;
  display: block;
  max-height: 0;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  padding: 0 0 0 15px;
  margin-bottom: 0;
  opacity: 0;
}
.post-item:after {
  content: "";
  width: 70%;
  height: 50%;
  bottom: 0;
  display: block;
  position: absolute;
  left: 50%;
  z-index: -1;
  -webkit-transform: translateX(-50%);
      -ms-transform: translateX(-50%);
          transform: translateX(-50%);
  -webkit-box-shadow: 0px 0px 0px 0px rgba(0, 0, 0, 0);
  box-shadow: 0px 0px 0px 0px rgba(0, 0, 0, 0);
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.post-item:hover:after {
  content: "";
  width: 70%;
  height: 50%;
  bottom: 0;
  display: block;
  position: absolute;
  left: 50%;
  z-index: -1;
  -webkit-transform: translateX(-50%);
      -ms-transform: translateX(-50%);
          transform: translateX(-50%);
  -webkit-box-shadow: 0px 10px 72px 0px rgba(0, 0, 0, 0.7);
  box-shadow: 0px 10px 72px 0px rgba(0, 0, 0, 0.7);
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.post-item:before {
  content: "";
  width: 100%;
  height: 100%;
  max-height: 50%;
  bottom: 0;
  display: block;
  position: absolute;
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0)), color-stop(76%, rgb(0, 0, 0)), to(rgb(0, 0, 0)));
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgb(0, 0, 0) 76%, rgb(0, 0, 0) 100%);
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr="#00000000", endColorstr="#000000", GradientType=0);
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  opacity: 0.5;
}
.post-item:hover:before {
  content: "";
  max-height: 100%;
  opacity: 0.8;
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0)), color-stop(76%, rgb(0, 0, 0)), to(rgb(0, 0, 0)));
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgb(0, 0, 0) 76%, rgb(0, 0, 0) 100%);
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr="#00000000", endColorstr="#000000", GradientType=0);
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

.ui-tabs {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.ui-tabs .ui-tabs-nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  border: solid 3px #1a9dd8;
  margin-bottom: 40px;
  color: #1a9dd8;
  font-size: 20px;
  line-height: 20px;
  border-radius: 30px;
  overflow: hidden;
}
@media (max-width: 1200px) {
  .ui-tabs .ui-tabs-nav {
    margin-bottom: 40px;
  }
}
.ui-tabs .ui-tabs-nav li a {
  display: block;
  font-size: 20px;
  line-height: 20px;
  padding: 14px 36px;
  font-family: "Proxima Nova B";
  text-transform: uppercase;
  text-align: center;
}
@media (max-width: 1200px) {
  .ui-tabs .ui-tabs-nav li a {
    font-size: 16px;
    line-height: 16px;
    padding: 10px 20px;
  }
}
.ui-tabs .ui-tabs-nav li a:hover {
  background: #e9f6ff;
  text-decoration: none;
  color: #1a9dd8;
}
.ui-tabs .ui-tabs-nav li.ui-state-active a {
  background: #1a9dd8;
  text-decoration: none;
  color: #fff;
}

#lang_sel {
  width: 100% !important;
}

#m-menu {
  display: none;
}
@media screen and (max-width: 992px) {
  #m-menu {
    display: block;
  }
}
#m-menu .sidebar-menu {
  display: none;
}
#m-menu .sidebar-menu.show {
  display: block;
}

p {
  line-height: 1.4;
}
p + p {
  margin-top: 25px;
}

a {
  text-decoration: none;
  color: #1a9dd8;
  -webkit-transition: color ease-out 0.8s;
  transition: color ease-out 0.8s;
}

a:hover {
  text-decoration: underline;
  color: #1a9dd8;
  -webkit-transition: color ease;
  transition: color ease;
}

ul li {
  list-style: none;
}

.aligncenter,
div.aligncenter {
  display: block;
  margin-left: auto !important;
  margin-right: auto !important;
  text-align: center;
}

.alignleft {
  float: left;
}

img.alignleft,
div.alignleft {
  margin: 5px 15px 5px 0 !important;
}

.alignright {
  float: right;
}

img.alignright,
div.alignright {
  margin: 5px 0 5px 15px !important;
}

.wrapper {
  clear: both;
  width: 1000px;
  margin: 0 auto;
}

.wrapper:after {
  content: "";
  display: block;
  clear: both;
  visibility: hidden;
}

.content-wrapper:after {
  content: "";
  display: block;
  clear: both;
  visibility: hidden;
}

.content {
  float: left;
  width: 660px;
  min-height: 700px;
}

.content:after {
  content: "";
  display: block;
  clear: both;
  visibility: hidden;
}

.tac {
  clear: both;
  text-align: center;
}

.btn {
  font-family: "Proxima Nova B";
  display: inline-block;
  padding: 19px 40px;
  background: none;
  text-align: center;
  color: #fff;
  font-size: 20px;
  line-height: 20px;
  -webkit-transition: easy;
  transition: easy;
  background-color: #45484f;
  border-radius: 30px;
  text-transform: uppercase;
}
.btn span {
  margin: auto;
}
.btn:hover {
  color: #fff;
  background: #393c41;
  text-decoration: none;
}
.btn.btn-frame {
  border: solid 3px #45484f;
  color: #45484f;
  background: none;
  padding: 14px 36px 12px 36px;
}
.btn:hover.btn-frame {
  border: solid 3px #45484f;
  color: #fff;
  background: #45484f;
}

.btn-yello {
  background: #f5ee37 !important;
  color: #45484f !important;
}
.btn-yello:hover {
  background: #f4ec1f !important;
}

.btn-default {
  background: #bdbdbd !important;
  color: #45484f !important;
}

.btn-blue {
  background: #1a9dd8 !important;
  color: #fff !important;
}
.btn-blue:hover {
  background: #178cc1 !important;
}
.btn-blue.btn-frame {
  border: solid 3px #1a9dd8 !important;
  color: #1a9dd8 !important;
  background: none !important;
  padding: 14px 36px 12px 36px;
}
.btn-blue.btn-frame.btn-diabled {
  border-color: #ccc !important;
  background: #ccc !important;
  color: #a2a2a2 !important;
}
.btn-blue.btn-frame.btn-diabled:hover {
  border-color: #ccc !important;
  background: #ccc !important;
  color: #a2a2a2 !important;
}
.btn-blue:hover.btn-frame {
  border: solid 3px #1a9dd8 !important;
  color: #fff !important;
  background: #1a9dd8 !important;
}

.btn-red {
  background: #ff433c !important;
  color: #fff !important;
}
.btn-red:hover {
  background: #ff2a23 !important;
}
.btn-red.btn-frame {
  border: solid 3px #ff433c !important;
  color: #ff433c !important;
  background: none !important;
  padding: 14px 36px 12px 36px;
}
.btn-red.btn-frame.btn-diabled {
  border-color: #ccc !important;
  background: #ccc !important;
  color: #a2a2a2 !important;
}
.btn-red.btn-frame.btn-diabled:hover {
  border-color: #ccc !important;
  background: #ccc !important;
  color: #a2a2a2 !important;
}
.btn-red:hover.btn-frame {
  border: solid 3px #ff433c !important;
  color: #fff !important;
  background: #ff433c !important;
}

.link {
  color: #010101;
}

.link:hover {
  color: #1a9dd8;
  text-decoration: none;
  border-bottom: 1px solid rgba(105, 105, 179, 0.2);
}

/* Header 
===================================================================================================*/
.main-menu:after {
  content: "";
  display: block;
  clear: both;
  visibility: hidden;
}

.main-menu__inner {
  position: relative;
}
@media screen and (max-width: 992px) {
  .main-menu__inner {
    display: none;
    margin-right: 50px;
    padding: 20px 0 5px 0;
  }
}

.main-menu__inner .menu-arrow {
  background: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAwAAAAGCAMAAADAMI+zAAAANlBMVEUAAAD////////////////////////////////////////////////////////////////////xY8b8AAAAEnRSTlMA++8rGcxB4uDYdwzHrq1dXD7uePybAAAAOElEQVQI1yXLSQ4AIQzEQDcJ+6z//ywRlOSj6c9km3dnKDvBswa8agbW9BFKSn9U2KxK1eDw63wLLb0A/Q58WxAAAAAASUVORK5CYII=) no-repeat;
  width: 12px;
  height: 6px;
  text-indent: -9999px;
  position: absolute;
  right: 29px;
  top: 8px;
  z-index: 1;
}

.main-menu__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (max-width: 992px) {
  .main-menu__list {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
  }
}
.main-menu__list > .current-post-parent > a {
  font-weight: bold;
}

.main-menu__list > li {
  font-size: 14px;
  position: relative;
  text-transform: uppercase;
}
@media screen and (max-width: 992px) {
  .main-menu__list > li {
    margin-bottom: 15px;
    margin-right: 15px;
  }
}

.main-menu__list > li > a,
.main-menu__list > li > span {
  position: relative;
  z-index: 9;
  color: #45484f;
  font-family: "Proxima Nova B";
}

.main-menu__list > li > span {
  color: #f5ee37;
}

header:not(.frontpage) .main-menu__list > .current-menu-item span {
  color: #f5ee37 !important;
}

.frontpage .main-menu__list > li > span {
  color: #1a9dd8;
}

.frontpage.other-pages .main-menu__list > li > span {
  color: #f5ee37;
}

.main-menu__list > li > a:hover,
.main-menu__list > li > span:hover {
  text-decoration: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.5);
}

.main-menu__list > li > span {
  font-weight: bold;
}

.main-menu__list > li > span:hover {
  border-bottom: 0;
}

.main-menu__list > li > ul {
  /*2*/
  display: none;
  position: absolute;
  left: 0;
  top: 100%;
  z-index: 100;
  z-index: 9999;
  background: #fff;
  -webkit-box-shadow: 0px 1px 2px 0px rgba(0, 0, 0, 0.2);
          box-shadow: 0px 1px 2px 0px rgba(0, 0, 0, 0.2);
}
.main-menu__list > li > ul .main-nav-scroll span {
  background: unset;
  color: #45484f !important;
  cursor: pointer;
}
.main-menu__list > li > ul > li {
  position: relative;
  min-width: 100px;
}
.main-menu__list > li > ul > li ul {
  /*3*/
  display: none;
  position: absolute;
  left: 0;
  z-index: 100;
  z-index: 9999;
  background: #fff;
  right: 100% !important;
  top: 0;
}
.main-menu__list > li > ul > li ul > li {
  font-size: 14px;
  line-height: 20px;
}
.main-menu__list > li > ul > li ul > li a, .main-menu__list > li > ul > li ul > li span {
  display: block;
  color: #45484f !important;
  padding: 11px 10px 9px 10px !important;
  border-top: 1px solid #ccc;
  white-space: nowrap;
  -webkit-box-pack: start !important;
      -ms-flex-pack: start !important;
          justify-content: flex-start !important;
  font-family: "Proxima Nova B";
}
.main-menu__list > li > ul > li ul > li a:hover, .main-menu__list > li > ul > li ul > li span:hover {
  text-decoration: none;
  background: #e9f6ff;
}
.main-menu__list > li > ul > .menu-item-has-children > a, .main-menu__list > li > ul > .menu-item-has-children span {
  padding-right: 25px !important;
  background-color: #fff;
}
.main-menu__list > li > ul > .menu-item-has-children .sub-menu {
  border-left: 1px solid #ccc;
  border-right: 1px solid #ccc;
}
@media screen and (max-width: 1200px) {
  .main-menu__list > li > ul > .menu-item-has-children .sub-menu {
    display: none;
  }
}
.main-menu__list > li > ul > .menu-item-has-children .sub-menu li:last-child a, .main-menu__list > li > ul > .menu-item-has-children .sub-menu li:last-child span {
  border-bottom: 1px solid #ccc;
}
.main-menu__list > li > ul > .menu-item-has-children:before {
  position: absolute;
  content: "\f105";
  color: #45484f;
  font: normal normal normal 14px/1 FontAwesome;
  right: 10px;
  font-weight: 600;
  font-size: 16px;
  top: 50%;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
}

.main-menu__list > li:hover > ul {
  display: block;
}

.main-menu__list > li > ul > li:hover > ul {
  display: block;
}

.main-menu__list > li > ul > .current-post-parent a {
  background: #e9f6ff;
}

.main-menu__list > li > ul > li {
  font-size: 14px;
  line-height: 20px;
}

.main-menu__list > li > ul > li > a,
.main-menu__list > li > ul > li > span {
  display: block;
  color: #45484f !important;
  padding: 11px 10px 9px 10px !important;
  border-top: 1px solid #ccc;
  white-space: nowrap;
  -webkit-box-pack: start !important;
      -ms-flex-pack: start !important;
          justify-content: flex-start !important;
  font-family: "Proxima Nova B";
}

.main-menu__list > li > ul > li > a:hover,
.main-menu__list > li > ul > li > span:hover {
  text-decoration: none;
  background: #e9f6ff;
}

.main-menu__list > li > ul > li > span {
  background: #e9f6ff;
}

.add-menu__toggle {
  background: #5a5aa1 url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABgAAAAYCAMAAADXqc3KAAAAmVBMVEUAAAD////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////VHQRUAAAAMnRSTlMAA/fJIgoW8uOYPzgkHtXEuLSeUDQuEOrm3tuwraKEWEZCMNC+uqiVh2pJKol+eks7E5boYJwAAAENSURBVCjPfZFJlsIwDETLkHmAQCaSEEigGRp61P0Ph2Q7i2yoTX1L78kqG/gM/GsF1lfth+Iq9OtvrhNrCeAg0DPsBQ4grQiegRKJ9oVtHO2ZBvzZxkZ7BSzFdy5UbYZXH3w8AkjPRO2JYWy5njBEuQutRw6jfMBbeYmF1LHgpJD9F3TRlS1RJ0M9DnJTuBMrUFJnrWHX622OX6QGYpSzgDmc6QkK2wjFfBcm6QrASmCjZ68kl3vhXJ7stCbayxblCKM4shAVeKsktlCeLBRPAOpKdB4A/ZpLRybyHZmH7XwrBdUIZNNHTTlGxLOAj+lrCzxt40esVUBoJgBrgRtwb3ZZClYfBJ34fxc0IV7rBzL4ggADWwAAAABJRU5ErkJggg==) center no-repeat;
  width: 60px;
  height: 60px;
  position: absolute;
  right: 0;
  top: -60px;
  text-indent: -9999px;
  cursor: pointer;
}

.add-menu {
  position: absolute;
  right: 0;
  top: 40px;
  z-index: 1000;
  width: 180px;
}

.add-menu > ul {
  display: none;
}

.add-menu > ul > .current-post-parent a {
  background: #e9f6ff;
}

.add-menu > ul > li {
  font-size: 16px;
  line-height: 20px;
}

.add-menu > ul > li > a,
.add-menu > ul > li > span {
  display: block;
  color: #fff;
  padding: 12px 10px;
  background: #5a5aa1;
  border-bottom: 1px solid #1a9dd8;
}

.add-menu > ul > li > a:hover,
.add-menu > ul > li > span:hover {
  text-decoration: none;
  background: #1a9dd8;
}

.add-menu > ul > li > span {
  background: #1a9dd8;
}

.slider li {
  display: none;
}

.slider li .slider__item:last-child .slider-text__title,
.slider li .slider__item:nth-child(3) .slider-text__title {
  font-size: 14px;
  line-height: 20px;
}

.slider .bx-wrapper li,
.slider li:first-child {
  display: block;
}

.slider {
  position: relative;
  margin-bottom: 20px;
}

.slider .bx-pager {
  text-align: center;
  margin-top: 20px;
}

.slider .bx-pager-item {
  display: inline-block;
}

.slider .bx-pager-item:last-child {
  margin-right: 0;
}

.slider .bx-pager-item a {
  width: 15px;
  height: 15px;
  display: block;
  text-indent: -9999px;
  background: #e5e5e5;
  border-radius: 50%;
  margin-right: 10px;
}

.slider .bx-pager-item a:hover {
  background: #1a9dd8;
}

.slider .bx-pager-item .active {
  background: #1a9dd8;
}

.slider__item {
  position: relative;
  overflow: hidden;
  float: left;
}

.slider__img {
  vertical-align: bottom;
}

.slider-text {
  position: absolute;
  left: 0;
  bottom: 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  width: 100%;
  padding: 0 15px 15px 15px;
  background: rgba(0, 0, 0, 0);
  background: -webkit-gradient(left top, left bottom, color-stop(0%, rgba(0, 0, 0, 0)), color-stop(100%, rgba(0, 0, 0, 0.5)));
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0)), to(rgba(0, 0, 0, 0.5)));
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.5) 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#000000", endColorstr="#000000", GradientType=0);
}

.post-info_slider {
  margin-bottom: 15px;
}

.post-info__cat {
  display: inline-block;
  margin-right: 15px;
  font-size: 12px;
  line-height: 15px;
  margin-bottom: 5px;
  position: relative;
  z-index: 101;
}

.post-info__cat a {
  display: block;
  background: #1a9dd8;
  padding: 5px 12px;
  color: #fff;
}

.post-info__cat a:hover {
  text-decoration: none;
  background: #1a9dd8;
  color: #fff;
}

.post-info__time {
  font-size: 12px;
  line-height: 15px;
  color: #fff;
  display: inline-block;
  padding-left: 25px;
  position: relative;
}

.post-info__time:after {
  position: absolute;
  content: "";
  left: 0;
  top: -2px;
  width: 17px;
  height: 17px;
  background: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABEAAAARCAMAAAAMs7fIAAAAVFBMVEUAAAD///////////////////////////////////////////////////////////////////////////////////////////////////////////8wXzyWAAAAG3RSTlMALYd4DzOB9HwJzG4C7WZMNR3dg+PEm3RXUiHVIiJOAAAAgklEQVQY03WMCQ7DIAwEl6MkHIEEcvv//ywgJFq1GVleaWQvCv6ucXs0FuI1OS0l9G6yEcYYkY3ZNTytertUjFFdm17JQxBDhxH/b5xi8wgxM+WakYMdJzmNdpDNQCKPLuv35rEHB2MWhf51qEFX05ud/Lw5X52TEgJ9E4CQeCcFvAFZowmmGm9D8gAAAABJRU5ErkJggg==) no-repeat;
}

.slider-text__title {
  font-size: 16px;
  line-height: 20px;
  position: relative;
}

.slider-text__title a {
  color: #fff;
  font-weight: 500;
}

.slider-text__title a:hover {
  text-decoration: none;
  color: #fff;
  border-bottom: 1px solid rgba(255, 255, 255, 0.5);
}

.slider-text__title a:after {
  position: absolute;
  content: "";
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
}

.m-nav .social-icon {
  display: none;
}

header.other-pages .m-nav .main-menu .main-menu__inner .main-menu__list > li > span {
  color: #fff;
}

header.header.other-pages .m-nav {
  margin-top: 30px;
}

header.other-pages .m-nav .main-menu .main-menu__inner .main-menu__list > li {
  min-height: 67px;
}

header.other-pages.fix-menu .m-nav .main-menu .main-menu__inner .main-menu__list > li {
  min-height: unset;
}

/* Home *
===================================================================================================*/
.title {
  border-top: solid 1px #cecece;
  border-bottom: solid 1px #cecece;
  padding: 10px 0 10px 0;
  text-transform: uppercase;
  font-size: 28px;
  line-height: 33px;
}

.title_recommended {
  background: none;
}

.posts {
  overflow: hidden;
}

.posts .posts__item {
  -webkit-box-flex: 265px;
      -ms-flex: 265px 1 1;
          flex: 265px 1 1;
  margin-left: 20px;
  margin-bottom: 30px;
  background: #ebebeb;
  border-bottom: solid 3px #707070;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.posts .posts__item .posts__item-info {
  -webkit-box-flex: 1;
      -ms-flex: 1 1;
          flex: 1 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.posts .posts__item .posts__item-info .posts__item-title {
  -webkit-box-flex: 1;
      -ms-flex: 1 1;
          flex: 1 1;
}

.posts_home .posts__item {
  float: left;
  width: 320px;
}

.posts_home .posts__item:nth-child(odd) {
  clear: both;
  margin-right: 20px;
}

.posts__item-img {
  position: relative;
  overflow: hidden;
  display: block;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.posts__item-img:hover {
  text-decoration: none;
}
.posts__item-img:hover img {
  -webkit-transform: scale(1.1);
  -ms-transform: scale(1.1);
      transform: scale(1.1);
}

.posts__item-img img {
  width: 100%;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  display: block;
}

.posts__item-img .post-cat {
  position: relative;
  z-index: 1;
}

.post-info.post-info_loop {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  margin-bottom: 0;
  padding: 20px;
  background: rgba(0, 0, 0, 0);
  background: -webkit-gradient(left top, left bottom, color-stop(0%, rgba(0, 0, 0, 0)), color-stop(100%, rgba(0, 0, 0, 0.5)));
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0)), to(rgba(0, 0, 0, 0.5)));
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.5) 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#000000", endColorstr="#000000", GradientType=0);
}

.posts__item-title {
  font-size: 16px;
  line-height: 21px;
  text-align: center;
  padding: 10px;
  margin-top: 10px;
  font-family: "Roboto", Arial, sans-serif;
  font-weight: bold;
}

.posts__item-title a {
  color: #010101;
}

.posts__item-title a:hover {
  color: #1a9dd8;
  text-decoration: none;
  border-bottom: 1px solid rgba(105, 105, 179, 0.2);
}

.posts__item-title a:after {
  position: absolute;
  content: "";
  left: 0;
  top: 0;
  width: 320px;
  height: 200px;
  z-index: 0;
}

.posts__item-content {
  font-size: 14px;
  line-height: 20px;
  color: #666666;
}

.posts__item-number {
  font-size: 16px;
  line-height: 21px;
  text-align: center;
  padding: 0 10px 20px 10px;
  font-family: "Roboto", Arial, sans-serif;
}

.posts__item-more {
  padding: 0 30px 20px 30px;
}
.posts__item-more .btn {
  width: 100%;
}
.posts__item-more .btn-green {
  position: relative;
  border-bottom: solid 0px #27ae60;
  margin-top: 0;
  -webkit-transition: none;
  transition: none;
}
.posts__item-more .btn-green:hover {
  margin-top: -3px;
  border-bottom: solid 3px #27ae60;
}

.more {
  overflow: hidden;
  padding-bottom: 30px;
  text-align: center;
  font-size: 16px;
  line-height: 21px;
  color: #1a9dd8;
}

.more span {
  border-bottom: 1px dashed #1a9dd8;
  cursor: pointer;
}

.more span:hover {
  border-bottom: 0;
}

.slider-posts-wrap li {
  display: none;
}

.slider-posts-wrap .bx-wrapper li,
.slider-posts-wrap li:first-child {
  display: block;
}

.slider-posts-wrap {
  background: #f0edfc;
  margin-bottom: 40px;
  overflow: hidden;
  padding: 9px;
  position: relative;
}

.slider-posts-wrap .bx-prev,
.slider-posts-wrap .bx-next {
  position: absolute;
  left: 0;
  top: 41px;
  display: block;
  width: 26px;
  height: 65px;
  text-indent: -9999px;
  background-color: #fff;
  border: 1px solid #e9e5ff;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAoAAAAWCAMAAADO+P1vAAAAVFBMVEUAAABpabNpabNpabNpabNpabNpabNpabNpabNpabNpabNpabNpabNpabNpabNpabNpabNpabNpabNpabNpabNpabNpabNpabNpabNpabNpabNpabOQwBRGAAAAG3RSTlMAB7guFxD29O3n39jOxK+snpyQgHViV0khPj1WoCOuAAAAWUlEQVQI113PNxLAIBADQIJxztnW///pQhjNQLUFp9OZ+OxY/Fzgog5gp3yJiQotukA6VJ7agJO6gJW6awyW2T2amD4Dj0l8KX3QWBamFVqc1VFJVddBOvMDqG4FoHcKrngAAAAASUVORK5CYII=);
  background-position: center;
  background-repeat: no-repeat;
}

.slider-posts-wrap .bx-prev:hover,
.slider-posts-wrap .bx-next:hover {
  background-color: #1a9dd8;
  background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAoAAAAWCAYAAAD5Jg1dAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAMRJREFUeNpi+P//PwMezA7E64FYlIUBP5gCxAFAzIXPtKT/CFCKS5EREH+DKloDxIzYFAkB8T2oohtAzA8SR1fEBMTboIq+ALE2TA5dYQOSuyKQ5ZAVeQLxX6iiCehOgjEUgfgtVNERIGbDppATiM9CFT0HYilsIQEi5kIV/QZiO1zhygQMdUakmPiPM46gVp8jxmp0zxzG5RlswdOPTyF6gIfjUwiKwu3ERCEsUdwnlChISmYkJVwYng1VuJOB2MwFEGAA5PyL04pG07UAAAAASUVORK5CYII=);
  border: 1px solid #1a9dd8;
}

.slider-posts-wrap .bx-next {
  left: auto;
  right: 0;
  background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAoAAAAWCAMAAADO+P1vAAAAUVBMVEUAAABpabNpabNpabNpabNpabNpabNpabNpabNpabNpabNpabNpabNpabNpabNpabNpabNpabNpabNpabNpabNpabNpabNpabNpabNpabNpabOAuiUKAAAAGnRSTlMAB/fcuK4T9O7nzsOenI+AdWJXST0yKiEZDiWpgnMAAABVSURBVAjXZc83DsAwDANA9/Te+f+HZhFBBPF0gyxSrmTv7CUM5AwsdEY4jE9ELOazQuLICkz0CGxG36G+zHeDlkl7QP+hBvRNyxShYNVRSVX/H6QzX4ozBVvArJlqAAAAAElFTkSuQmCC);
}

.slider-posts-wrap .bx-next:hover {
  background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAoAAAAWCAYAAAD5Jg1dAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAALdJREFUeNpi+P//vygQrwdidiBmwIVBxM7/EDCbkMLS/wiQhE8hIxCvgSr8DsRGuBSCMD8Q34Aqvg/EQrgUgrAWEH+BKt4OxEy4FIJwOJJ7G/ApBOF+qMK/QOyJTyEbEB+GKn4LxIq4FIKwFBA/hyo+C8ScDHgC2Q6If0MVz2NiwA3+o/KwmyaJZPU5XFazInnmHT7PwILnH77gISrAiYpCPmISBdHJjOiEC8sKcwhlBaIyF0CAAQBQMasVTOhzegAAAABJRU5ErkJggg==);
}

.slider-posts-wrap .bx-pager {
  text-align: center;
  margin-top: 20px;
}

.slider-posts-wrap .bx-pager-item {
  display: inline-block;
}

.slider-posts-wrap .bx-pager-item:last-child {
  margin-right: 0;
}

.slider-posts-wrap .bx-pager-item a {
  width: 15px;
  height: 15px;
  display: block;
  text-indent: -9999px;
  background: #e5e5e5;
  border-radius: 50%;
  margin-right: 10px;
}

.slider-posts-wrap .bx-pager-item a:hover {
  background: #1a9dd8;
}

.slider-posts-wrap .bx-pager-item .active {
  background: #1a9dd8;
}

.slider-posts li {
  position: relative;
  overflow: hidden;
}

.slider-posts__img {
  position: relative;
  margin-bottom: 8px;
}

.slider-posts__img img {
  vertical-align: bottom;
}

.post-info_slider-posts {
  position: absolute;
  left: 0;
  bottom: 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  width: 100%;
  padding: 0 15px 15px 18px;
  background: rgba(0, 0, 0, 0);
  background: -webkit-gradient(left top, left bottom, color-stop(0%, rgba(0, 0, 0, 0)), color-stop(100%, rgba(0, 0, 0, 0.5)));
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0)), to(rgba(0, 0, 0, 0.5)));
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.5) 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#000000", endColorstr="#000000", GradientType=0);
}

.slider-posts__title {
  font-size: 14px;
  line-height: 20px;
}

.slider-posts__title a {
  color: #010101;
}

.slider-posts__title a:hover {
  color: #1a9dd8;
  text-decoration: none;
  border-bottom: 1px solid rgba(105, 105, 179, 0.2);
}

.slider-posts__title a:after {
  position: absolute;
  content: "";
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
}

.description {
  font-size: 14px !important;
  line-height: 19px !important;
  background: #eaf4fb;
  padding: 20px 0;
}

.description__title {
  font-size: 20px !important;
  line-height: 25px !important;
  font-weight: bold !important;
}

/* Sidebar *
===================================================================================================*/
.sidebar .section {
  margin-bottom: 25px;
  overflow: hidden;
}

.sidebar-menu {
  margin-bottom: 30px;
  background: #1a9dd8;
}

.sidebar-menu .title {
  margin-bottom: 0;
}

.sidebar-menu > ul > .current-menu-item > .menu-arrow:before,
.sidebar-menu > ul > .current-menu-item > .menu-arrow:after {
  background: #fff;
}

.sidebar-menu > ul > .current-post-parent > a {
  background: #1a9dd8;
  color: #fff;
}

.sidebar-menu > ul > .current-post-parent > .menu-arrow:before,
.sidebar-menu > ul > .current-post-parent > .menu-arrow:after {
  background: #85ece7;
}

.sidebar-menu > ul li.active > a {
  background: #0f5b7d;
  color: #fff;
  border-bottom: none;
}

.sidebar-menu > ul li:hover.active > a {
  background: #0f5b7d;
}

.sidebar-menu > ul > li {
  font-size: 18px;
  line-height: 22px;
  position: relative;
}

.sidebar-menu > ul > li > a,
.sidebar-menu > ul > li > span {
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  background: #1a9dd8;
}

.sidebar-menu > ul > li:hover > a,
.sidebar-menu > ul > li:hover > span,
.sidebar-menu > ul > li.current-menu-item > a,
.sidebar-menu > ul > li.current-menu-item > .active-menu {
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  background: #157caa;
  color: #fff;
  text-decoration: none;
}

.sidebar-menu > ul > li .menu-arrow {
  position: absolute;
  width: 20px;
  height: 20px;
  cursor: pointer;
  right: 8px;
  top: 11px;
  text-indent: -9999px;
  z-index: 101;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

.sidebar-menu > ul > li .menu-arrow:hover {
  border: 1px solid #fff;
}

.sidebar-menu > ul > li .menu-arrow:before,
.sidebar-menu > ul > li .menu-arrow:after {
  position: absolute;
  content: "";
  left: 50%;
  top: 50%;
  margin-left: -1px;
  margin-top: -6px;
  width: 2px;
  height: 12px;
  background: #fff;
}

.sidebar-menu > ul > li .menu-arrow:after {
  margin-left: -6px;
  margin-top: -1px;
  width: 12px;
  height: 2px;
  background: #fff;
}

.sidebar-menu > ul > li .menu-arrow.active:before {
  display: none;
}

.sidebar-menu > ul > li .menu-arrow.active:after {
  background: #fff;
}

.sidebar-menu > ul > li > .active-menu,
.sidebar-menu > ul > li > a,
.sidebar-menu > ul > li > span {
  display: block;
  padding: 5px 10px;
  border-bottom: 1px solid #fff;
  color: #666666;
  position: relative;
  z-index: 1;
  -webkit-transition: easy;
  transition: easy;
}

.sidebar-menu > ul > li > .active-menu,
.sidebar-menu > ul > li > a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.sidebar-menu > ul > li > .active-menu img,
.sidebar-menu > ul > li > a img {
  margin-right: 10px;
}

.sidebar-menu > ul > li > a > span,
.sidebar-menu > ul > li > .active-menu > span {
  color: #fff;
  font-family: "Roboto", Arial, sans-serif;
  font-weight: normal;
  font-size: 14px;
}

.sidebar-menu > ul > li > span {
  background: #1a9dd8;
  color: #fff;
}

.sidebar-menu > ul > li > .ul_block {
  display: block;
}

.sidebar-menu > ul > li > ul {
  /*2*/
  display: none;
  background: #157caa;
  padding: 20px;
  border-bottom: solid 1px #fff;
}

.sidebar-menu > ul > li > ul > .current-post-parent a {
  text-decoration: underline;
}

.sidebar-menu > ul > li > ul > li {
  font-size: 14px;
  line-height: 19px;
  padding-bottom: 5px;
}

.sidebar-menu > ul > li > ul > li:last-child {
  padding-bottom: 0;
}

.sidebar-menu > ul > li > ul > li > .active-menu,
.sidebar-menu > ul > li > ul > li > a,
.sidebar-menu > ul > li > ul > li > span {
  color: #fff;
}

.sidebar-menu > ul > li > ul > li > .active-menu {
  text-decoration: underline;
}

.sidebar-menu > ul > li > ul > li > a:hover,
.sidebar-menu > ul > li > ul > li > span:hover {
  color: #fff;
}

.sidebar-menu > ul > li > ul > li > span {
  text-decoration: underline;
}

.sidebar-menu > ul > li > ul > li > span:hover {
  border-bottom: 0;
}

.section-posts {
  overflow: hidden;
}

.section-posts__item {
  position: relative;
  padding: 20px 0 20px 90px;
}

.section-posts__item img {
  position: absolute;
  display: block;
  padding: 3px;
  border: solid 1px #ececec;
  left: 0;
}

.section-posts__item + .section-posts__item {
  border-top: dashed 1px #d7d7d7;
}

.section-posts__item-title {
  font-size: 16px;
  line-height: 21px;
  margin-bottom: 10px;
}

.section-posts__item-title a {
  color: #010101;
  font-weight: 500;
}

.section-posts__item-title a:hover {
  color: #1a9dd8;
  text-decoration: none;
  border-bottom: 1px solid rgba(105, 105, 179, 0.2);
}

.section-posts__item-title a:after {
  position: absolute;
  content: "";
  left: 0;
  top: 0;
  width: 300px;
  height: 180px;
}

.section-posts__item-text {
  font-size: 14px;
  line-height: 20px;
  color: #666666;
  margin-bottom: 0;
}

.post-info__time_popular.post-info__time {
  color: #8a8a8a;
}

.post-info__time_popular.post-info__time:after {
  background: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABEAAAARCAMAAAAMs7fIAAAAS1BMVEUAAACKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKiopMWjrqAAAAGHRSTlMAhy14DzMCgsr0fB5uCe1mTDXd45t0V1KFHSciAAAAgUlEQVQY03WOiw7DIAhFURlQq9XaF///pbNmi222nhAgFy4BKpRGOBkT1dw6Na0abZO4SlWciLiqyBoh6RLl4FIKHxIXTeDUQseq+a8Q29mDmy3TR8Eh+AknHwb8uhBqtPS783iHNmsDnHTXxkO8/YNEeN3ZX51dGbLeyQDZXMnwBuRMCMdsolEgAAAAAElFTkSuQmCC) no-repeat;
}

/* Crumbs *
===================================================================================================*/
.breadcrumbs {
  overflow: hidden;
  padding: 0 0 8px 0;
  border-bottom: dotted 1px #c7c7c7;
}

.breadcrumbs li {
  display: inline-block;
  position: relative;
  margin-right: 14px;
  padding-bottom: 3px;
  font-size: 14px;
  line-height: 18px;
  color: #45484f;
}

.breadcrumbs li:after {
  position: absolute;
  content: "";
  background: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAQAAAAICAYAAADeM14FAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAFZJREFUeNpi7OrqusnAwBAHxCeBmIEJiDdDsQxMoBWIWYB4GxDzgwTeQwV1gXgVSIABqgIEGEECwkBcAcSXgTgUJFADxF+A2AuIP4IEXKGcJyA9AAEGAD0bDp/Kpr11AAAAAElFTkSuQmCC) no-repeat;
  width: 4px;
  height: 8px;
  top: 5px;
  right: -11px;
}

.breadcrumbs li:last-child:after {
  display: none;
}

.breadcrumbs li a {
  text-decoration: none;
  color: #1a9dd8;
}

.breadcrumbs li a:hover {
  text-decoration: underline;
}

/* Category *
===================================================================================================*/
.cat-children {
  overflow: hidden;
  margin-bottom: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  border-bottom: solid 1px #cecece;
}

.cat-children__item {
  display: block;
  font-size: 14px;
  line-height: 19px;
  font-family: "Roboto", Arial, sans-serif;
  font-weight: bold;
  margin: 0 10px 10px 0;
}

.cat-children__item a {
  display: block;
  padding: 5px 15px;
  border: 2px solid #1a9dd8;
  color: #d35400;
}

.cat-children__item a:hover {
  text-decoration: none;
  background: #1a9dd8;
  color: #fff;
}

.cat-posts {
  overflow: visible;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin: 0 -40px;
}

.cart-links .post-item .post-data .post-title {
  font-size: 22px;
}

.blog .cat-posts {
  overflow: hidden;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin-left: 0;
}
.blog .cat-posts .posts__item {
  -webkit-box-flex: 1;
      -ms-flex: auto 1 1;
          flex: auto 1 1;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-left: 0;
  background: none;
  border: none;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (max-width: 650px) {
  .blog .cat-posts .posts__item {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.blog .cat-posts .posts__item .posts__item-img {
  width: 300px;
  min-width: 300px;
  margin-right: 30px;
}
@media screen and (max-width: 650px) {
  .blog .cat-posts .posts__item .posts__item-img {
    margin-right: 0;
    width: 100%;
  }
}
.blog .cat-posts .posts__item .posts__item-img img {
  width: 300px;
  height: auto;
}
@media screen and (max-width: 650px) {
  .blog .cat-posts .posts__item .posts__item-img img {
    width: 100%;
  }
}
.blog .cat-posts .posts__item .posts__item-title {
  text-align: left;
  padding-left: 0;
  display: block;
}

.post-info__comment {
  font-size: 13px;
  line-height: 13px;
  color: #fff;
  display: inline-block;
  position: relative;
  margin-right: 15px;
  background: #1a9dd8;
  padding: 5px 8px;
  z-index: 101;
}

.post-info__comment:after {
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 0;
  content: "";
  z-index: 0;
  border-width: 8px 10px 0px 0;
  border-style: solid;
  border-color: rgba(0, 0, 0, 0) #1a9dd8 rgba(0, 0, 0, 0) rgba(0, 0, 0, 0);
  -ms-transform: rotate(180deg);
  -webkit-transform: rotate(180deg);
  transform: rotate(180deg);
}

/* Single * 
===================================================================================================*/
.single {
  overflow: hidden;
}
.single > .entry > .vc_row {
  margin-left: 0;
  margin-right: 0;
}

.single table {
  margin: 20px 0;
}

.single th,
.single td {
  padding: 6px 10px;
  border: 1px solid #d0d8db;
}

.single #ya-site-results td {
  border: none;
}

.single .title-img {
  position: relative;
  overflow: hidden;
  max-width: 660px;
  margin: 0 auto 20px auto;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

.single .title-img img {
  vertical-align: bottom;
}

.single .title-img .single__title {
  position: absolute;
  top: 50%;
  left: 50%;
  margin-left: -265px;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
  text-align: center;
  font-size: 40px;
  line-height: 45px;
  font-weight: 500;
  color: #fff;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  width: 100%;
  max-width: 530px;
  z-index: 3;
}

.single__title {
  font-size: 79px;
  line-height: 1;
  text-transform: uppercase;
  color: #fff;
  padding: 40px 0 36px 0;
  text-transform: uppercase;
  margin-top: 0 !important;
  margin-bottom: 0 !important;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 20px 0 10px;
  font-weight: 500;
}

.single .post-description h1,
.single .post-description h2,
.single .post-description h3,
.single .post-description h4,
.single .post-description h5,
.single .post-description h6 {
  color: #1a9dd8;
}

h1 span,
h2 span,
h3 span,
h4 span,
h5 span,
h6 span {
  font-weight: 500;
}

h1 {
  font-size: 28px;
  line-height: 33px;
  margin-top: 0 !important;
}

h2 {
  font-size: 24px;
  line-height: 29px;
}

h3 {
  font-size: 22px;
  line-height: 27px;
}

h4 {
  font-size: 20px;
  line-height: 25px;
}

h5 {
  font-size: 19px;
  line-height: 24px;
}

h6 {
  font-size: 18px;
  line-height: 23px;
}

.single h1,
.single h2,
.single h3,
.single h4,
.single h5,
.single h6 {
  margin: 20px 0 10px;
  font-weight: 500;
}

.single h1 span,
.single h2 span,
.single h3 span,
.single h4 span,
.single h5 span,
.single h6 span {
  font-weight: 500;
}

.single h1 {
  font-size: 28px;
  line-height: 33px;
  margin-top: 0 !important;
}

.single h2 {
  font-size: 24px;
  line-height: 29px;
}

.single h3 {
  font-size: 22px;
  line-height: 27px;
}

.single h4 {
  font-size: 20px;
  line-height: 25px;
}

.single h5 {
  font-size: 19px;
  line-height: 24px;
}

.single h6 {
  font-size: 18px;
  line-height: 23px;
}

.single blockquote {
  padding: 30px 30px 30px 78px;
  margin: 20px 0;
  background: #f8f8f8;
  min-height: 25px;
  font-size: 18px;
  line-height: 23px;
  color: #666666;
  font-weight: 500;
  position: relative;
}
.single blockquote:after {
  content: "”";
  position: absolute;
  left: 15px;
  top: 70px;
  font-size: 160px;
  color: #1a9dd8;
  display: block;
  font-family: Arial;
}

.single blockquote p:last-child {
  margin-bottom: 0;
}

.single ul {
  margin: 20px 0;
}

.single ul li {
  overflow: hidden;
  min-height: 22px;
  list-style: none;
  padding: 0 0 20px 30px;
  position: relative;
}

.single ul li:last-child {
  padding-bottom: 0;
}

.single ul li:before {
  position: absolute;
  content: "";
  left: 0;
  top: 6px;
  width: 8px;
  height: 8px;
  background: #1a9dd8;
}

.single ul li ol,
.single ul li ul {
  margin-bottom: 0;
}

.single ul li ol li:last-child,
.single ul li ul li:last-child {
  padding-bottom: 0;
}

.single ol {
  padding: 20px 0;
  counter-reset: li;
  list-style: none;
}

.single ol li {
  background: none;
  position: relative;
  padding: 0 0 20px 42px;
}

.single ol li:last-child {
  padding-bottom: 5px;
}

.single ol li:before {
  content: counters(li, ".");
  counter-increment: li;
  position: absolute;
  left: 0;
  top: -5px;
  width: 28px;
  height: 28px;
  border-radius: 14px;
  background: #f5ee37;
  font-size: 16px;
  line-height: 16px;
  color: #45484f;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  font-weight: bold;
}

.single ol li ol,
.single ol li ul {
  margin-bottom: 0;
}

.single ol li ol li:last-child,
.single ol li ul li:last-child {
  padding-bottom: 5px;
}

.single ol li ol li:before,
.single ol li ul li:before {
  font-size: 12px;
  line-height: 24px;
}

.single img {
  max-width: 100%;
  height: auto;
  vertical-align: bottom;
}

.single iframe {
  max-width: 100%;
}

.single .wp-caption {
  text-align: center;
  margin-bottom: 20px;
  max-width: 100%;
  overflow: hidden;
  position: relative;
}

.single .wp-caption-text {
  text-align: center;
  padding: 8px 20px;
  color: #1a9dd8;
  font-style: italic;
}

.breadcrumbs.breadcrumbs_single {
  padding: 8px 20px;
  background: #f8f8f8;
  width: 100%;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

.post-meta {
  margin: 15px 0;
  padding: 20px 0 25px 0;
  color: #666666;
  font-size: 14px;
  line-height: 16px;
}

.post-meta:after {
  content: "";
  display: table;
  clear: both;
}

.post-rating {
  float: left;
  margin-top: 5px;
}

.post-share__title {
  margin-right: 10px;
}

.post-ratings img {
  vertical-align: middle;
  padding: 0 5px 0 0 !important;
}

.post-ratings .post-ratings-text {
  position: relative;
  top: 5px;
}

.post-share {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border-top: solid 1px #cecece;
  border-bottom: solid 1px #cecece;
  padding: 10px;
}
@media screen and (max-width: 768px) {
  .post-share {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

.yarpp-related {
  overflow: hidden;
  margin-bottom: 30px;
}

.related li {
  overflow: hidden;
  float: left;
  width: 150px;
  position: relative;
  margin-right: 20px;
  font-size: 13px;
  line-height: 18px;
}

.related li:last-child {
  margin-right: 0;
}

.related li a {
  color: #010101;
}

.related li a:hover {
  color: #1a9dd8;
  text-decoration: none;
  border-bottom: 1px solid rgba(105, 105, 179, 0.2);
}

.related li a:after {
  position: absolute;
  content: "";
  left: 0;
  top: 0;
  z-index: 2;
  width: 100%;
  height: 100%;
}

.related__item-img {
  position: relative;
  margin-bottom: 7px;
}

.related__item-img img {
  width: 100%;
  height: auto;
}

.related__item-img .related__item-cat {
  position: absolute;
  left: 10px;
  bottom: 10px;
  font-size: 10px;
  line-height: 13px;
  z-index: 101;
  border-bottom: 0;
  max-width: 85%;
}

.related__item-img .related__item-cat > a {
  background: #1a9dd8;
  display: block;
  padding: 4px 10px;
  color: #fff;
}

.related__item-img .related__item-cat > a:hover {
  text-decoration: none;
  background: #1a9dd8;
  color: #fff;
  border-bottom: 0;
}

/* Comments *
===================================================================================================*/
.respond__title {
  font-size: 20px;
  line-height: 24px;
  color: #000;
  margin-bottom: 25px;
  position: relative;
}

.respond {
  clear: both;
  margin-bottom: 30px;
  overflow: hidden;
}

.respond input,
.respond textarea {
  color: #333;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  background-color: #f8f8f8;
  font-size: 14px;
  line-height: normal;
  border: none;
}

.respond input::-webkit-input-placeholder {
  color: #8a8a8a;
}

.respond input::-moz-placeholder {
  color: #8a8a8a;
}

.respond input:-moz-placeholder {
  color: #8a8a8a;
}

.respond input:-ms-input-placeholder {
  color: #8a8a8a;
}

.respond textarea::-webkit-input-placeholder {
  color: #8a8a8a;
}

.respond textarea::-moz-placeholder {
  color: #8a8a8a;
}

.respond textarea:-moz-placeholder {
  color: #8a8a8a;
}

.respond textarea:-ms-input-placeholder {
  color: #8a8a8a;
}

.respond-form .respond-form__site {
  margin-right: 0;
}

.respond-form__field {
  width: 31.3%;
  padding: 11px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  float: left;
  margin: 0 3% 15px 0;
}

.respond-form__textarea {
  width: 100%;
  padding: 11px;
  margin-bottom: 15px;
}

.respond-form .respond-form__button {
  display: inline-block;
  padding: 10px 40px;
  background: none;
  text-align: center;
  color: #fff;
  font-size: 16px;
  line-height: normal;
  -webkit-transition: easy;
  transition: easy;
  background-color: #1a9dd8;
}

.respond-form .respond-form__button:hover {
  text-decoration: none;
  background: #1a9dd8;
  color: #fff;
}

.comment-title {
  font-size: 20px;
  line-height: 24px;
  color: #000;
  margin-bottom: 25px;
  padding-left: 45px;
  position: relative;
}

.comment-title:after {
  position: absolute;
  content: "\f27a";
  font-size: 36px !important;
  left: 0;
  top: -6px;
  width: 36px;
  height: 32px;
  color: #1a9dd8;
  font-family: "FontAwesome";
  display: inline-block;
  font: normal normal normal 14px/1 FontAwesome;
  font-size: inherit;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.commentlist .comment {
  font-size: 14px;
  margin-bottom: 15px;
  color: #000;
  padding: 25px 21px;
  border-bottom: 1px solid #1a9dd8;
}

.commentlist .comment .gravatar {
  float: left;
  margin-right: 24px;
}

.commentlist .comment .gravatar img {
  border-radius: 50%;
}

.commentlist .comment p {
  margin-bottom: 15px;
}

.commentlist .comment .cauthor {
  margin-bottom: 10px;
}

.commentlist .comment .fn,
.commentlist .comment .fn a {
  font-size: 16px;
  line-height: 19px;
  color: #000;
  font-weight: bold;
}

.commentlist .comment .comment_date {
  font-size: 14px;
  line-height: 18px;
  color: #666666;
}

.commentlist .comment .reply a {
  text-decoration: none;
  color: #1a9dd8;
  border: 1px solid #1a9dd8;
  display: inline-block;
  padding: 3px 17px;
  border-radius: 3px;
}

.commentlist .comment .reply a:hover {
  text-decoration: none;
  background: #1a9dd8;
  color: #fff;
}

.commentlist .children {
  margin-left: 20px;
}

.commentlist .comment_content {
  padding-left: 75px;
}

/* Footer *     	
===================================================================================================*/
.footer-logo {
  float: left;
  margin-bottom: 20px;
}

.footer-nav ul {
  overflow: hidden;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
@media screen and (max-width: 550px) {
  .footer-nav ul {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    margin-bottom: 20px;
  }
}

.footer-nav ul li {
  margin-right: 5px;
  padding-bottom: 2px;
  margin-bottom: 5px;
  font-size: 12px;
  line-height: 18px;
}

.footer-nav-two ul li {
  margin-right: 20px;
  padding-bottom: 2px;
  margin-bottom: 10px;
  font-size: 16px;
  line-height: 18px;
}
@media screen and (max-width: 550px) {
  .footer-nav-two ul li {
    text-align: center;
    margin-right: 0;
  }
}

.footer-nav ul li:last-child {
  margin-right: 0;
}

.footer-nav ul li a {
  text-decoration: none;
  border: 1px solid #1a9dd8;
  display: block;
  padding: 3px 5px 3px 5px;
}

.footer-nav ul li span {
  text-decoration: none;
  border: 1px solid #1a9dd8;
  display: block;
  padding: 6px 5px 3px 5px;
  background: #1a9dd8;
  color: #fff;
}

.footer-nav-two ul li a {
  text-decoration: none;
  color: #000;
  border-bottom: 1px solid rgba(0, 0, 0, 0.5);
}

.footer-nav ul li a:hover {
  color: #fff;
  background: #1a9dd8;
}

.footer-nav-two {
  margin-left: 20px;
}
@media screen and (max-width: 550px) {
  .footer-nav-two {
    margin-left: 0;
    margin-bottom: 20px;
  }
}

.footer-nav-two ul li a:hover {
  color: #1a9dd8;
  border-bottom: 0;
}

.footer-menu-section {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media screen and (max-width: 550px) {
  .footer-menu-section {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

.footer_desc {
  margin-top: 15px;
  font-size: 14px;
}
.footer_desc span {
  font-size: 16px;
  display: block;
  margin-bottom: 10px;
}
@media screen and (max-width: 992px) {
  .footer_desc {
    margin-bottom: 20px;
  }
}
@media screen and (max-width: 550px) {
  .footer_desc {
    text-align: center;
  }
}

.footer-bottom {
  clear: both;
  background: #1a9dd8;
  margin: 0 -1000%;
  padding: 10px 1000%;
  overflow: hidden;
}

.contacts-social {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}
@media screen and (max-width: 1200px) {
  .contacts-social {
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
  }
}
@media screen and (max-width: 550px) {
  .contacts-social {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}
.contacts-social .contacts-social-inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (max-width: 1200px) {
  .contacts-social .contacts-social-inner {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    padding-top: 20px;
  }
}
@media screen and (max-width: 550px) {
  .contacts-social .contacts-social-inner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    padding-top: 0;
  }
}

.footer_phones img {
  margin-right: 10px;
}
.footer_phones ul {
  font-size: 24px;
  line-height: 26px;
  text-align: right;
}

.copy {
  font-size: 12px;
  line-height: 16px;
  color: #feffff;
  float: left;
  margin-top: 10px;
}

.social-icon {
  margin-top: 20px;
}
@media screen and (max-width: 1200px) {
  .social-icon {
    margin-top: 0;
    margin-left: 30px;
  }
}
@media screen and (max-width: 550px) {
  .social-icon {
    margin-top: 20px;
    margin-left: 0;
  }
}

.social-icon-title {
  text-align: center;
  margin-bottom: 10px;
}

.social-icon a {
  width: 32px;
  height: 32px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  float: left;
  margin-right: 12px;
  border-radius: 50%;
  color: #fff !important;
}
.social-icon a i {
  display: block;
  margin: auto;
}
.social-icon a:hover {
  text-decoration: none;
}

.social-icon a:last-child {
  margin-right: 0;
}

.social-icon .ok {
  background: #fe9c46;
}

.social-icon .ok:hover {
  background: #fe8113;
}

.social-icon .yt {
  background: #fc3643;
}

.social-icon .yt:hover {
  background: #fb0414;
}

.social-icon .fb {
  background: #4a5e94;
}

.social-icon .fb:hover {
  background: #394872;
}

.social-icon .gp {
  background: #fd694c;
}

.social-icon .gp:hover {
  background: #fc3f1a;
}

.social-icon .tw {
  background: #33c2ff;
}

.social-icon .tw:hover {
  background: #00b3ff;
}

.social-icon .in {
  background: #5d87b8;
}

.social-icon .in:hover {
  background: #456e9d;
}

.social-icon .vk {
  background: #6b94c7;
}

.social-icon .vk:hover {
  background: #4679b9;
}

#up {
  width: 0;
  height: 0;
  border: 10px solid transparent;
  border-bottom-color: #1a9dd8;
  border-top: 0;
  position: fixed;
  bottom: 10%;
  right: 2%;
  cursor: pointer;
  z-index: 100;
  text-indent: -9999px;
}

#up:hover {
  border-bottom-color: #1a9dd8;
}

#up:hover:before {
  border: 1px solid #1a9dd8;
}

#up:before {
  position: absolute;
  content: "";
  left: -21px;
  top: -16px;
  width: 40px;
  height: 40px;
  border: 1px solid #1a9dd8;
}

.menu-overlay {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  display: none;
  z-index: 99;
  text-indent: -9999px;
}

.js-nav .menu-overlay {
  display: block;
  background: rgba(255, 255, 255, 0.5);
}

/* Media queries  *     	
===================================================================================================*/
.menu-item ._svg {
  width: 30px !important;
}

.home-categories {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  background: #fff;
  margin-left: -30px;
}
.home-categories .cat {
  -webkit-box-flex: 260px;
      -ms-flex: 260px 1 1;
          flex: 260px 1 1;
  margin-bottom: 30px;
  margin-left: 30px;
}
.home-categories .cat a {
  display: block;
}
.home-categories .cat a img {
  width: 100%;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  display: block;
}
.home-categories .cat a .img {
  overflow: hidden;
  position: relative;
}
.home-categories .cat a .name {
  padding: 7px 10px 7px 10px;
  background: #ebebeb;
  text-align: center;
  font-size: 18px;
  font-family: "Roboto", Arial, sans-serif;
  font-weight: bold;
  color: #000;
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
  border-bottom: solid 3px #d2d2d2;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.home-categories .cat a:hover {
  text-decoration: none;
}
.home-categories .cat a:hover img {
  -webkit-transform: scale(1.1);
  -ms-transform: scale(1.1);
      transform: scale(1.1);
}
.home-categories .cat a:hover .name {
  background: #d9d9d9;
  border-bottom: solid 3px #c5c5c5;
}

.benefits-home {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-left: -30px !important;
}
.benefits-home li {
  -webkit-box-flex: 260px;
      -ms-flex: 260px 1 1;
          flex: 260px 1 1;
  margin-bottom: 30px;
  margin-left: 30px;
  margin-top: 55px;
  padding: 10px 20px !important;
  border: solid 1px #d7d7d7;
  border-bottom: solid 3px #d7d7d7;
  text-align: center;
  overflow: visible !important;
}
.benefits-home li img {
  position: relative;
  margin-top: -55px;
}
.benefits-home li .benefits-home-title {
  font-family: "Roboto", Arial, sans-serif;
  font-weight: bold;
  margin-top: 10px;
  margin-bottom: 10px;
  padding-bottom: 10px;
  border-bottom: dashed 1px #d7d7d7;
}
.benefits-home li .benefits-home-desc {
  font-size: 12px;
}
.benefits-home li:before {
  display: none;
}

.home-description-title {
  font-family: "Roboto", Arial, sans-serif;
  font-weight: bold;
  font-size: 22px;
}

.home-description-title + * {
  margin-top: 10px;
}

#fancybox-overlay {
  background: rgb(0, 0, 0) !important;
}

.single-top-part {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
}
@media screen and (max-width: 650px) {
  .single-top-part {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

.single-top-img {
  -webkit-box-flex: 50;
      -ms-flex: 50 1;
          flex: 50 1;
}
.single-top-img a {
  display: block;
  border-bottom: solid 3px #707070;
}
.single-top-img img {
  display: block;
}
@media screen and (max-width: 650px) {
  .single-top-img img {
    width: 100%;
  }
}

.single-top-img + .single-top-features {
  padding-left: 40px;
}
@media screen and (max-width: 650px) {
  .single-top-img + .single-top-features {
    padding-left: 0;
  }
}

.single-top-buttons {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.single-top-buttons a {
  text-align: center;
  display: block;
}
.single-top-buttons > * + * {
  margin-top: 10px;
}
.single-top-buttons .btn-green {
  border-bottom: solid 3px #1e8449;
  font-size: 20px;
  padding-top: 10px;
}
.single-top-buttons .btn-green:hover {
  border-bottom: solid 3px #145b32;
}
.single-top-buttons .btn-orange {
  padding: 7px 20px;
  border-bottom: solid 3px #157caa;
}
.single-top-buttons .btn-orange:hover {
  border-bottom: solid 3px #0f5b7d;
}

.single-top-features {
  -webkit-box-flex: 50;
      -ms-flex: 50 1;
          flex: 50 1;
}
.single-top-features ul li {
  padding-left: 0;
}
.single-top-features ul li span {
  font-family: "Roboto", Arial, sans-serif;
  font-weight: bold;
  padding-right: 5px;
}
.single-top-features ul li span.art-number {
  font-family: "Roboto", Arial, sans-serif;
}
.single-top-features ul li:before {
  display: none;
}

.how-buy .how-buy-main-title {
  text-align: center;
  font-family: "Roboto", Arial, sans-serif;
  font-weight: bold;
  font-size: 22px;
  margin-bottom: 40px;
}
.how-buy .how-buy-list ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.how-buy .how-buy-list ul li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  background: #1a9dd8;
  border-radius: 10px;
  width: 30%;
  min-width: 32%;
  margin-bottom: 40px;
  color: #fff;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
}
@media screen and (max-width: 1200px) {
  .how-buy .how-buy-list ul li {
    width: 45%;
  }
}
@media screen and (max-width: 550px) {
  .how-buy .how-buy-list ul li {
    width: 100%;
    margin-bottom: 10px;
  }
}
@media screen and (max-width: 550px) {
  .how-buy .how-buy-list ul li:nth-child(1):after, .how-buy .how-buy-list ul li:nth-child(2):after, .how-buy .how-buy-list ul li:nth-child(3):after, .how-buy .how-buy-list ul li:nth-child(4):after, .how-buy .how-buy-list ul li:nth-child(5):after, .how-buy .how-buy-list ul li:nth-child(6):after, .how-buy .how-buy-list ul li:nth-child(1):before, .how-buy .how-buy-list ul li:nth-child(2):before, .how-buy .how-buy-list ul li:nth-child(3):before, .how-buy .how-buy-list ul li:nth-child(4):before, .how-buy .how-buy-list ul li:nth-child(5):before, .how-buy .how-buy-list ul li:nth-child(6):before {
    display: none !important;
  }
}
.how-buy .how-buy-list ul li:nth-child(1):after {
  content: "";
  display: block;
  position: absolute;
  right: -27px;
  top: 50%;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 10px 0 10px 10px;
  border-color: transparent transparent transparent #1a9dd8;
  margin-top: -10px;
}
@media screen and (max-width: 1200px) {
  .how-buy .how-buy-list ul li:nth-child(1):after {
    right: -35px;
  }
}
.how-buy .how-buy-list ul li:nth-child(2):after {
  content: "";
  display: block;
  position: absolute;
  right: -27px;
  top: 50%;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 10px 0 10px 10px;
  border-color: transparent transparent transparent #1a9dd8;
  margin-top: -10px;
}
@media screen and (max-width: 1200px) {
  .how-buy .how-buy-list ul li:nth-child(2):after {
    content: "";
    display: block;
    position: absolute;
    bottom: -30px;
    left: 60%;
    top: auto;
    right: auto;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 10px 0 10px 10px;
    border-color: transparent transparent transparent #1a9dd8;
    margin-right: -10px;
    -webkit-transform: rotate(90deg);
        -ms-transform: rotate(90deg);
            transform: rotate(90deg);
  }
}
.how-buy .how-buy-list ul li:nth-child(1):before {
  content: "";
  display: block;
  position: absolute;
  right: -100px;
  top: 50%;
  width: 100px;
  height: 2px;
  background: #d7d7d7;
  margin-top: -1px;
}
.how-buy .how-buy-list ul li:nth-child(2):before {
  content: "";
  display: block;
  position: absolute;
  right: -100px;
  top: 50%;
  width: 100px;
  height: 2px;
  background: #d7d7d7;
  margin-top: -1px;
}
@media screen and (max-width: 1200px) {
  .how-buy .how-buy-list ul li:nth-child(2):before {
    content: "";
    display: block;
    position: absolute;
    bottom: -100px;
    left: 60%;
    top: auto;
    width: 2px;
    height: 100px;
    background: #d7d7d7;
    margin-left: 4px;
    z-index: -1;
  }
}
.how-buy .how-buy-list ul li:nth-child(5):after {
  content: "";
  display: block;
  position: absolute;
  left: -27px;
  top: 50%;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 10px 0 10px 10px;
  border-color: transparent transparent transparent #1a9dd8;
  margin-top: -10px;
  -webkit-transform: rotate(180deg);
      -ms-transform: rotate(180deg);
          transform: rotate(180deg);
}
@media screen and (max-width: 1200px) {
  .how-buy .how-buy-list ul li:nth-child(5):after {
    right: -35px;
    -webkit-transform: rotate(0deg);
        -ms-transform: rotate(0deg);
            transform: rotate(0deg);
    content: "";
    display: block;
    position: absolute;
    top: 50%;
    left: auto;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 10px 0 10px 10px;
    border-color: transparent transparent transparent #1a9dd8;
    margin-top: -10px;
    margin-right: 0;
  }
}
.how-buy .how-buy-list ul li:nth-child(4):after {
  content: "";
  display: block;
  position: absolute;
  left: -27px;
  top: 50%;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 10px 0 10px 10px;
  border-color: transparent transparent transparent #1a9dd8;
  margin-top: -10px;
  -webkit-transform: rotate(180deg);
      -ms-transform: rotate(180deg);
          transform: rotate(180deg);
}
@media screen and (max-width: 1200px) {
  .how-buy .how-buy-list ul li:nth-child(4):after {
    content: "";
    display: block;
    position: absolute;
    bottom: -30px;
    left: 60%;
    top: auto;
    right: auto;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 10px 0 10px 10px;
    border-color: transparent transparent transparent #1a9dd8;
    margin-right: -10px;
    -webkit-transform: rotate(90deg);
        -ms-transform: rotate(90deg);
            transform: rotate(90deg);
  }
}
.how-buy .how-buy-list ul li:nth-child(5):before {
  content: "";
  display: block;
  position: absolute;
  left: -100px;
  top: 50%;
  width: 100px;
  height: 2px;
  background: #d7d7d7;
  margin-top: -1px;
  z-index: -1;
}
@media screen and (max-width: 1200px) {
  .how-buy .how-buy-list ul li:nth-child(5):before {
    content: "";
    display: block;
    position: absolute;
    right: -100px;
    top: 50%;
    left: auto;
    width: 100px;
    height: 2px;
    background: #d7d7d7;
    margin-top: -1px;
    margin-left: 0;
  }
}
.how-buy .how-buy-list ul li:nth-child(4):before {
  content: "";
  display: block;
  position: absolute;
  left: -100px;
  top: 50%;
  width: 100px;
  height: 2px;
  background: #d7d7d7;
  margin-top: -1px;
  z-index: -1;
}
@media screen and (max-width: 1200px) {
  .how-buy .how-buy-list ul li:nth-child(4):before {
    content: "";
    display: block;
    position: absolute;
    bottom: -100px;
    left: 60%;
    top: auto;
    width: 2px;
    height: 100px;
    background: #d7d7d7;
    margin-left: 4px;
    z-index: -1;
  }
}
.how-buy .how-buy-list ul li:nth-child(3):after {
  content: "";
  display: block;
  position: absolute;
  bottom: -30px;
  left: 60%;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 10px 0 10px 10px;
  border-color: transparent transparent transparent #1a9dd8;
  margin-right: -10px;
  -webkit-transform: rotate(90deg);
      -ms-transform: rotate(90deg);
          transform: rotate(90deg);
}
@media screen and (max-width: 1200px) {
  .how-buy .how-buy-list ul li:nth-child(3):after {
    content: "";
    display: block;
    position: absolute;
    left: -38px;
    top: 50%;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 10px 0 10px 10px;
    border-color: transparent transparent transparent #1a9dd8;
    margin-top: -10px;
    -webkit-transform: rotate(180deg);
        -ms-transform: rotate(180deg);
            transform: rotate(180deg);
  }
}
.how-buy .how-buy-list ul li:nth-child(3):before {
  content: "";
  display: block;
  position: absolute;
  bottom: -100px;
  left: 60%;
  width: 2px;
  height: 100px;
  background: #d7d7d7;
  margin-left: 4px;
  z-index: -1;
}
@media screen and (max-width: 1200px) {
  .how-buy .how-buy-list ul li:nth-child(3):before {
    content: "";
    display: block;
    position: absolute;
    left: -100px;
    top: 50%;
    width: 100px;
    height: 2px;
    background: #d7d7d7;
    margin-top: -1px;
    margin-left: 0;
    z-index: -1;
  }
}
.how-buy .how-buy-list ul li:nth-child(1) {
  -webkit-box-ordinal-group: 2;
      -ms-flex-order: 1;
          order: 1;
}
@media screen and (max-width: 1200px) {
  .how-buy .how-buy-list ul li:nth-child(1) {
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
  }
}
@media screen and (max-width: 550px) {
  .how-buy .how-buy-list ul li:nth-child(1) {
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
  }
}
.how-buy .how-buy-list ul li:nth-child(2) {
  -webkit-box-ordinal-group: 3;
      -ms-flex-order: 2;
          order: 2;
}
@media screen and (max-width: 1200px) {
  .how-buy .how-buy-list ul li:nth-child(2) {
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
  }
}
@media screen and (max-width: 550px) {
  .how-buy .how-buy-list ul li:nth-child(2) {
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
  }
}
.how-buy .how-buy-list ul li:nth-child(3) {
  -webkit-box-ordinal-group: 4;
      -ms-flex-order: 3;
          order: 3;
}
@media screen and (max-width: 1200px) {
  .how-buy .how-buy-list ul li:nth-child(3) {
    -webkit-box-ordinal-group: 5;
        -ms-flex-order: 4;
            order: 4;
  }
}
@media screen and (max-width: 550px) {
  .how-buy .how-buy-list ul li:nth-child(3) {
    -webkit-box-ordinal-group: 4;
        -ms-flex-order: 3;
            order: 3;
  }
}
.how-buy .how-buy-list ul li:nth-child(4) {
  -webkit-box-ordinal-group: 7;
      -ms-flex-order: 6;
          order: 6;
}
@media screen and (max-width: 1200px) {
  .how-buy .how-buy-list ul li:nth-child(4) {
    -webkit-box-ordinal-group: 4;
        -ms-flex-order: 3;
            order: 3;
  }
}
@media screen and (max-width: 550px) {
  .how-buy .how-buy-list ul li:nth-child(4) {
    -webkit-box-ordinal-group: 5;
        -ms-flex-order: 4;
            order: 4;
  }
}
.how-buy .how-buy-list ul li:nth-child(5) {
  -webkit-box-ordinal-group: 6;
      -ms-flex-order: 5;
          order: 5;
}
@media screen and (max-width: 1200px) {
  .how-buy .how-buy-list ul li:nth-child(5) {
    -webkit-box-ordinal-group: 6;
        -ms-flex-order: 5;
            order: 5;
  }
}
@media screen and (max-width: 550px) {
  .how-buy .how-buy-list ul li:nth-child(5) {
    -webkit-box-ordinal-group: 6;
        -ms-flex-order: 5;
            order: 5;
  }
}
.how-buy .how-buy-list ul li:nth-child(6) {
  -webkit-box-ordinal-group: 4;
      -ms-flex-order: 3;
          order: 3;
}
@media screen and (max-width: 1200px) {
  .how-buy .how-buy-list ul li:nth-child(6) {
    -webkit-box-ordinal-group: 7;
        -ms-flex-order: 6;
            order: 6;
  }
}
@media screen and (max-width: 550px) {
  .how-buy .how-buy-list ul li:nth-child(6) {
    -webkit-box-ordinal-group: 7;
        -ms-flex-order: 6;
            order: 6;
  }
}
.how-buy .how-buy-list ul li .how-buy-img {
  background: #34495e;
  border-top-left-radius: 10px;
  border-bottom-left-radius: 10px;
  overflow: hidden;
}
.how-buy .how-buy-list ul li .how-buy-img img {
  display: block;
}
.how-buy .how-buy-list ul li .how-buy-text {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-flex: 1;
      -ms-flex: 1 1;
          flex: 1 1;
  border-top-right-radius: 10px;
  border-bottom-right-radius: 10px;
  overflow: hidden;
}
.how-buy .how-buy-list ul li .how-buy-text .how-buy-title {
  width: 100%;
  text-align: center;
  font-family: "Roboto", Arial, sans-serif;
  font-weight: bold;
  font-size: 16px;
  text-transform: uppercase;
  margin-bottom: 5px;
}
.how-buy .how-buy-list ul li .how-buy-text .how-buy-desc {
  white-space: nowrap;
  text-align: center;
  font-size: 12px;
}

.sidebar-category-bottom {
  padding: 30px 0 20px 0;
}

.our-benefit {
  background: #d35400;
  padding: 30px 0 20px 0;
  color: #fff;
}
.our-benefit .our-benefit-main-title {
  text-align: center;
  font-family: "Roboto", Arial, sans-serif;
  font-weight: bold;
  font-size: 22px;
  margin-bottom: 40px;
}
.our-benefit .our-benefit-list ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.our-benefit .our-benefit-list ul li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 30%;
  max-width: 32%;
  margin-bottom: 30px;
  color: #fff;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
}
@media screen and (max-width: 992px) {
  .our-benefit .our-benefit-list ul li {
    width: 46%;
    max-width: 46%;
  }
}
@media screen and (max-width: 550px) {
  .our-benefit .our-benefit-list ul li {
    width: 100%;
    max-width: 100%;
    margin-bottom: 10px;
  }
}
.our-benefit .our-benefit-list ul li .our-benefit-img {
  background: #fff;
  border-radius: 50%;
  margin-right: 25px;
  border: solid 1px #f39c12;
  -webkit-box-shadow: 0px 3px 0px 0px #f39c12;
          box-shadow: 0px 3px 0px 0px #f39c12;
  overflow: hidden;
}
.our-benefit .our-benefit-list ul li .our-benefit-img img {
  display: block;
}
.our-benefit .our-benefit-list ul li .our-benefit-text {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-flex: 1;
      -ms-flex: 1 1;
          flex: 1 1;
  border-radius: 10px;
  padding: 15px 5px;
  position: relative;
  background: #f39c12;
  -webkit-box-shadow: 0px 3px 0px 0px #841500;
          box-shadow: 0px 3px 0px 0px #841500;
}
.our-benefit .our-benefit-list ul li .our-benefit-text:after {
  content: "";
  display: block;
  position: absolute;
  left: -10px;
  top: 50%;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 10px 10px 10px 0;
  border-color: transparent #f39c12 transparent transparent;
  margin-top: -10px;
}
.our-benefit .our-benefit-list ul li .our-benefit-text:before {
  content: "";
  display: block;
  position: absolute;
  left: -10px;
  top: 50%;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 10px 10px 10px 0;
  border-color: transparent #841500 transparent transparent;
  margin-top: -7px;
}
.our-benefit .our-benefit-list ul li .our-benefit-text .our-benefit-title {
  width: 100%;
  text-align: center;
  font-family: "Roboto", Arial, sans-serif;
  font-weight: bold;
  font-size: 16px;
  text-transform: uppercase;
  padding-top: 5px;
}
.our-benefit .our-benefit-list ul li .our-benefit-text .our-benefit-desc {
  white-space: nowrap;
  text-align: center;
  font-size: 12px;
}

.yarpp-thumbnails-horizontal .yarpp-thumbnail,
.yarpp-thumbnail-default,
.yarpp-thumbnail-title {
  display: inline-block;
  *display: inline;
}

.yarpp-thumbnails-horizontal .yarpp-thumbnail {
  margin-left: 0px;
  vertical-align: top;
}

.yarpp-thumbnails-horizontal .yarpp-thumbnail > img,
.yarpp-thumbnails-horizontal .yarpp-thumbnail-default {
  display: block;
}

.yarpp-thumbnails-horizontal .yarpp-thumbnail-title {
  font-size: 1em;
  max-height: 2.8em;
  line-height: 1.4em;
  margin: 7px;
  margin-top: 0px;
  width: 120px;
  text-decoration: inherit;
  overflow: hidden;
}

.yarpp-thumbnail-default {
  overflow: hidden;
}

.yarpp-thumbnail-default > img {
  min-height: 120px;
  min-width: 120px;
}

.yarpp-thumbnail {
  background: #ebebeb;
  border-bottom: solid 2px #707070;
}
@media screen and (max-width: 440px) {
  .yarpp-thumbnail {
    width: 100%;
  }
}

.yarpp-related {
  padding: 40px 0 20px 0;
  margin: 20px 0 20px 0;
  border-top: solid 1px #cecece;
}

.related-top {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 20px;
}
.related-top .related-title {
  -webkit-box-flex: 1;
      -ms-flex: 1 1;
          flex: 1 1;
  padding: 0 10px;
  text-align: center;
  font-family: "Roboto", Arial, sans-serif;
  font-weight: bold;
  font-size: 22px;
}
.related-top .related-prev,
.related-top .related-next {
  font-size: 30px;
  color: #ccc;
  cursor: pointer;
}
.related-top .related-prev:hover,
.related-top .related-next:hover {
  color: #1a9dd8;
}

.title-blog {
  background: #1a9dd8;
  color: #fff;
  padding: 10px 15px;
  text-align: center;
  display: block;
}
.title-blog:hover {
  color: #fff;
}

#fancybox-close {
  background: #b6b6b6 !important;
  width: 27px !important;
  height: 27px !important;
  border-radius: 14px;
  padding: 6px 0 0 7px;
  top: -13px !important;
  right: -13px !important;
  text-decoration: none;
  position: relative;
}
#fancybox-close:hover {
  background: #1a9dd8 !important;
}
#fancybox-close:before {
  font-family: "FontAwesome";
  content: "\f00d";
  color: #fff;
  display: block;
  position: absolute;
  left: 7px;
  top: 5px;
}

.call-manager {
  text-align: center;
  margin-top: 55px;
  padding: 15px !important;
  border: solid 1px #d7d7d7;
  border-bottom: solid 3px #d7d7d7;
  background: #f9f9f9;
  margin-bottom: 20px;
}
.call-manager img {
  margin-top: -55px;
  width: 50%;
  max-width: 200px;
  margin-bottom: 20px;
}
.call-manager .call-manager-title {
  margin-bottom: 10px;
  padding-bottom: 10px;
  border-bottom: dashed 1px #d7d7d7;
  font-family: "Roboto", Arial, sans-serif;
  font-weight: bold;
}
.call-manager .call-manager-desc {
  font-size: 12px;
  margin-bottom: 10px;
}
.call-manager .call-manager-button a {
  padding-bottom: 10px;
  font-size: 14px;
}

html {
  margin-top: 0 !important;
}

#float-menu {
  display: block;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  top: -200px;
  position: fixed;
  left: 0;
  right: 0;
  opacity: 0;
  background: #fff;
  z-index: 999;
  -webkit-box-shadow: 0px 0px 15px 0px rgba(0, 0, 0, 0.5);
          box-shadow: 0px 0px 15px 0px rgba(0, 0, 0, 0.5);
}
@media screen and (max-width: 992px) {
  #float-menu {
    display: none;
  }
}

#float-menu.fix-menu {
  opacity: 1;
  display: block;
  position: fixed;
  top: 0;
  background: #fff;
  z-index: 999;
  left: 0;
  right: 0;
  -webkit-box-shadow: 0px 0px 15px 0px rgba(0, 0, 0, 0.5);
          box-shadow: 0px 0px 15px 0px rgba(0, 0, 0, 0.5);
}
@media screen and (max-width: 992px) {
  #float-menu.fix-menu {
    display: none;
  }
}

.popUpForm {
  max-width: 400px;
  width: 100%;
}
.popUpForm * {
  -webkit-box-sizing: border-box !important;
          box-sizing: border-box !important;
}
.popUpForm p {
  margin-bottom: 0;
}
.popUpForm span {
  display: block;
}
.popUpForm .popUpForm-title {
  padding: 20px 20px 0 20px;
  font-size: 30px;
  color: #1a9dd8;
}
.popUpForm .popUpForm-description {
  padding: 20px 20px 0 20px;
  font-size: 14px;
}
.popUpForm .popUpForm-fields {
  padding: 20px;
}

.j-form-fileld {
  position: relative;
  margin-bottom: 40px;
}
@media screen and (max-width: 510px) {
  .j-form-fileld {
    margin-bottom: 25px;
  }
}
.j-form-fileld .formDescription {
  margin-top: 10px;
  font-style: normal !important;
  font-size: 16px;
}

.j-form-field-desc {
  padding-left: 23px;
  padding-top: 5px;
  color: #ff443d;
  display: block;
}
@media screen and (max-width: 510px) {
  .j-form-field-desc {
    font-size: 13px;
    padding-left: 10px;
  }
}

.j-form-fileld label {
  background: rgba(255, 255, 255, 0);
  color: #ccc;
  font-size: 18px;
  font-weight: 600;
  left: 21px;
  opacity: 0;
  padding: 0 10px;
  position: absolute;
  top: 10px;
  -webkit-transition: all 0.3s linear;
  transition: all 0.3s linear;
  z-index: -1;
  background: #fff;
  white-space: nowrap;
  display: block;
  min-height: 0;
  line-height: 20px;
  border-radius: 20px;
}

.j-form-fileld label.show {
  color: #45484f;
  opacity: 1;
  top: -9px;
  z-index: 9;
  min-height: 20px;
  font-size: 14px;
  background: #f5ee37;
  -webkit-transition: all 0.3s linear;
  transition: all 0.3s linear;
}

.j-form-fileld input,
.j-form-fileld textarea,
.j-form-fileld select {
  border: 1px solid #ddd;
  font-size: 20px;
  line-height: 20px;
  border-radius: 30px;
  padding: 19px 30px;
  z-index: 1;
  position: relative;
  width: 100%;
}
@media screen and (max-width: 510px) {
  .j-form-fileld input,
  .j-form-fileld textarea,
  .j-form-fileld select {
    padding: 13px 15px;
    font-size: 16px;
  }
}

.j-form-fileld textarea {
  height: 150px;
  resize: none;
}

.j-form-fileld-buttons {
  text-align: center;
}
.j-form-fileld-buttons .btn {
  min-width: 300px;
}
@media (max-width: 600px) {
  .j-form-fileld-buttons .btn {
    min-width: 0;
  }
}

#popUpForms {
  display: none;
}

.field-desc {
  font-size: 14px;
  padding: 5px 0;
}

.wpcf7-submit {
  border: none;
}

#m-menu {
  margin: 10px 0 20px 0;
}

.m-menu-button {
  cursor: pointer;
  color: #fff;
  background: #1a9dd8;
  padding: 10px;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  text-align: center;
}
.m-menu-button i {
  margin-right: 10px;
}
.m-menu-button.expanded {
  background: #1a9dd8;
}

.screen-reader-text {
  clip: rect(1px, 1px, 1px, 1px);
  position: absolute !important;
  height: 1px;
  width: 1px;
  overflow: hidden;
}

.pagination-container {
  padding: 30px 0 15px 0;
}

.nav-links {
  text-align: center;
  font-size: 0;
}
.nav-links > * {
  display: inline-block;
  font-size: 20px;
  padding: 5px 10px;
  margin-bottom: 15px;
}
.nav-links > a {
  color: #7f8c8d;
}
.nav-links > a:hover {
  color: #1a9dd8;
  text-decoration: none;
}
.nav-links > .dots {
  color: #7f8c8d;
}
.nav-links > .current {
  color: #fff;
  background: #1a9dd8;
  margin: 0 5px;
}
.nav-links > .current + .current {
  margin-left: 7px;
}

.m-menu-button-header {
  color: #fff;
  text-align: right;
  position: relative;
  display: none;
}
@media screen and (max-width: 992px) {
  .m-menu-button-header {
    display: block;
  }
}
.m-menu-button-header i {
  padding: 10px;
  font-size: 30px;
  position: absolute;
  right: -10px;
}

.MacOS #fancybox-close {
  padding: 2px 0 0 7px;
}

#toc_container {
  float: right;
  background: #f5f7f8;
  padding: 20px;
  border: solid 1px #e5e5e5;
  width: 30%;
  min-width: 400px;
  margin: 0 0 10px 20px;
}
@media screen and (max-width: 1200px) {
  #toc_container {
    width: 100%;
    min-width: 400px;
  }
}
@media screen and (max-width: 992px) {
  #toc_container {
    width: 30%;
    min-width: 400px;
  }
}
@media screen and (max-width: 650px) {
  #toc_container {
    width: 100%;
    float: none;
    margin: 0;
    min-width: 0;
    -webkit-box-sizing: bodrder-box;
            box-sizing: bodrder-box;
  }
}
#toc_container .toc_title {
  font-size: 16px;
  text-transform: uppercase;
  border-bottom: solid 2px #e67e22;
  padding-bottom: 10px;
  font-family: "Roboto", Arial, sans-serif;
  font-weight: bold;
  margin-bottom: 5px;
}
#toc_container .toc_list {
  margin: 10px 0;
}
#toc_container ul li {
  padding-left: 0;
  padding-bottom: 15px;
}
#toc_container ul li a {
  color: #000;
  text-decoration: underline;
}
#toc_container ul li:before {
  display: none;
}
#toc_container ul li:last-child {
  padding-bottom: 0;
}

.single #toc_container > ul > li > ul {
  margin: 8px 0 0 30px;
}

.toc_list > li {
  position: relative;
}
.toc_list > li > a + ul {
  position: relative;
}
.toc_list > li > a + ul > li {
  position: relative;
  overflow: visible;
}
.toc_list > li > a + ul > li:before {
  content: "";
  display: block !important;
  border-top: solid 1px #c4c4c4 !important;
  position: absolute !important;
  left: -20px !important;
  top: 11px !important;
  width: 10px !important;
  height: 0;
}
.toc_list > li > a + ul > li:after {
  content: "";
  display: block !important;
  position: absolute !important;
  left: -22px !important;
  top: 9px !important;
  height: 5px;
  width: 5px;
  border-radius: 5px;
  background: #c4c4c4;
}
.toc_list > li > a + ul > li > a + ul {
  margin: 8px 0 0 30px;
  position: relative;
}
.toc_list > li > a + ul > li > a + ul > li {
  position: relative;
  overflow: visible;
}
.toc_list > li > a + ul > li > a + ul > li:before {
  content: "";
  display: block !important;
  border-top: solid 1px #c4c4c4 !important;
  position: absolute !important;
  left: -20px !important;
  top: 11px !important;
  width: 10px !important;
  height: 0;
}
.toc_list > li > a + ul > li > a + ul > li:after {
  content: "";
  display: block !important;
  position: absolute !important;
  left: -22px !important;
  top: 9px !important;
  height: 5px;
  width: 5px;
  border-radius: 5px;
  background: #c4c4c4;
}
.toc_list > li > a + ul > li > a + ul > li > a + ul {
  margin: 8px 0 0 30px;
  position: relative;
}
.toc_list > li > a + ul > li > a + ul > li > a + ul > li {
  position: relative;
  overflow: visible;
}
.toc_list > li > a + ul > li > a + ul > li > a + ul > li:before {
  content: "";
  display: block !important;
  border-top: solid 1px #c4c4c4 !important;
  position: absolute !important;
  left: -20px !important;
  top: 11px !important;
  width: 10px !important;
  height: 0;
}
.toc_list > li > a + ul > li > a + ul > li > a + ul > li:after {
  content: "";
  display: block !important;
  position: absolute !important;
  left: -22px !important;
  top: 9px !important;
  height: 5px;
  width: 5px;
  border-radius: 5px;
  background: #c4c4c4;
}
.toc_list > li > a + ul > li > a + ul > li > a + ul > li > a + ul {
  margin: 8px 0 0 30px;
  position: relative;
}
.toc_list > li > a + ul > li > a + ul > li > a + ul > li > a + ul > li {
  position: relative;
  overflow: visible;
}
.toc_list > li > a + ul > li > a + ul > li > a + ul > li > a + ul > li:before {
  content: "";
  display: block !important;
  border-top: solid 1px #c4c4c4 !important;
  position: absolute !important;
  left: -20px !important;
  top: 11px !important;
  width: 10px !important;
  height: 0;
}
.toc_list > li > a + ul > li > a + ul > li > a + ul > li > a + ul > li:after {
  content: "";
  display: block !important;
  position: absolute !important;
  left: -22px !important;
  top: 9px !important;
  height: 5px;
  width: 5px;
  border-radius: 5px;
  background: #c4c4c4;
}
.toc_list > li > a + ul > li > a + ul > li > a + ul > li > a + ul:before {
  content: "";
  display: block;
  border-left: solid 1px #c4c4c4;
  position: absolute;
  left: -20px;
  top: 0;
  bottom: 0;
}
.toc_list > li > a + ul > li > a + ul > li > a + ul:before {
  content: "";
  display: block;
  border-left: solid 1px #c4c4c4;
  position: absolute;
  left: -20px;
  top: 0;
  bottom: 0;
}
.toc_list > li > a + ul > li > a + ul:before {
  content: "";
  display: block;
  border-left: solid 1px #c4c4c4;
  position: absolute;
  left: -20px;
  top: 0;
  bottom: 0;
}
.toc_list > li > a + ul:before {
  content: "";
  display: block;
  border-left: solid 1px #c4c4c4;
  position: absolute;
  left: -20px;
  top: 0;
  bottom: 0;
}

#wpadminbar {
  display: block;
}

article.single {
  -webkit-box-flex: 1;
      -ms-flex: 1 1;
          flex: 1 1;
}

.darken-line {
  background: rgba(0, 0, 0, 0.15);
}

.vc_section.container {
  margin: auto !important;
}

.wpb_image_grid .wpb_image_grid_ul .isotope-item {
  margin: 0 !important;
}

.wpb_image_grid_ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin: 0 !important;
  list-style: none;
  padding: 5px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.wpb_image_grid_ul .isotope-item {
  padding: 5px;
  width: 150px;
  height: 150px;
}
.wpb_image_grid_ul .isotope-item img {
  width: 100%;
  max-width: 150px;
}
.wpb_image_grid_ul .isotope-item:before {
  display: none;
}

.splithalf {
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
}
@media (max-width: 992px) {
  .splithalf {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
}
.splithalf .j-form-fileld:last-child {
  margin-bottom: 40px;
}

.splithalf > div {
  width: 48% !important;
}
@media (max-width: 992px) {
  .splithalf > div {
    width: 100% !important;
  }
}

.splithalf > div + div {
  margin-left: 4%;
}
@media (max-width: 992px) {
  .splithalf > div + div {
    margin-left: 0;
  }
}

.splithalf.greylinebg > div:first-child {
  width: 73% !important;
}
@media (max-width: 992px) {
  .splithalf.greylinebg > div:first-child {
    width: 100% !important;
  }
}
.splithalf.greylinebg > div:first-child > div:first-child {
  margin-bottom: 20px;
}
.splithalf.greylinebg > div:first-child > div:last-child {
  margin-bottom: 0;
}
@media (max-width: 992px) {
  .splithalf.greylinebg > div:first-child > div:last-child {
    margin-bottom: 30px;
  }
}
.splithalf.greylinebg > div:last-child {
  width: 27% !important;
}
@media (max-width: 992px) {
  .splithalf.greylinebg > div:last-child {
    width: 100% !important;
  }
}

.greylinebg {
  border-radius: 3px;
  margin-top: 10px;
  margin-bottom: 40px;
  border-radius: 50px;
}

.wpcf7-not-valid-tip {
  position: absolute;
  white-space: nowrap;
  color: #fff !important;
  display: block;
  background: #ff433c;
  min-height: 20px !important;
  font-size: 14px !important;
  line-height: 20px !important;
  padding: 0 10px !important;
  left: 21px;
  top: -9px;
  z-index: 10;
  border-radius: 20px;
}

.wpcf7-form-control-wrap {
  display: block;
}

div.wpcf7-validation-errors {
  border: none !important;
  text-align: center;
}

footer {
  background: #e9f6ff;
  padding: 10px;
}

.footer-nav ul li {
  margin: 0;
  padding: 0 10px;
}

.footer-nav ul {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.footer-nav ul li a {
  padding: 0;
  border: none;
  font-size: 12px !important;
}

.footer-nav ul li a:hover {
  background: none;
  color: #1a9dd8;
  text-decoration: underline;
}

.single h2 {
  font-size: 34px;
  line-height: 36px;
  margin-bottom: 20px;
}
@media (max-height: 600px) {
  .single h2 {
    font-size: 22px;
    line-height: 28px;
  }
}

.de-DE .whyis .section-title-main {
  font-size: 63px;
}
@media (max-width: 1200px) {
  .de-DE .whyis .section-title-main {
    font-size: 45px;
  }
}
@media (max-width: 992px) {
  .de-DE .whyis .section-title-main {
    font-size: 60px;
  }
}
@media (max-width: 600px) {
  .de-DE .whyis .section-title-main {
    font-size: 40px;
  }
}

.sm2-playlist-bd li:before {
  display: none;
}

.sm2-bar-ui {
  border-radius: 30px !important;
}

.sm2-bar-ui .sm2-main-controls,
.sm2-bar-ui .sm2-playlist-drawer {
  background-color: #1a9dd8;
}

.vc-dash {
  background: #1a9dd8;
  color: #fff;
  border-radius: 16px;
  padding: 8px 3px 0 0;
  font-size: 16px;
}

.ui-tabs-panel {
  position: relative;
  width: 100%;
}

.postcarusel .ui-tabs .ui-tabs-nav {
  margin-bottom: 20px;
}

/****** leo.suhomud Styles **************************************/
.whyis {
  overflow: hidden;
}

/**** Tickets ****/
section.tickets .ticket-item .ticket-header div {
  height: 21px;
  font-size: 17px;
  text-transform: uppercase;
}

section.tickets .ticket-item .ticket-price-desc {
  min-height: 20px;
  font-size: 20px !important;
  text-transform: uppercase;
  color: #ff433c;
  margin-top: 20px;
}

section.tickets .ticket-item .ticket-price {
  min-height: 175px;
}

section.tickets .ticket-item .ticket-price .subtext {
  color: #45484f !important;
}

section.tickets .ticket-item .ticket-price > div p {
  display: block;
}

section.tickets .ticket-item.ticket-disabled {
  background: #f9f9f9;
}

/**** Articles ****/
.articles-wrap {
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  -ms-flex-pack: start;
  -webkit-box-pack: start;
          justify-content: flex-start;
}

.articles-wrap article {
  display: block;
  width: 100%;
  padding: 25px 0 15px;
  margin: 0 50px;
  border-bottom: 2px dashed #E5E5E5;
}

.articles-wrap > article:last-child {
  border: none;
}

.articles-wrap .article-title {
  font-family: "Proxima Nova S";
  font-size: 35px;
  margin: 10px 0 20px;
}

.articles-wrap .article-desc {
  font-family: "Proxima Nova R";
  font-size: 20px;
  margin-top: 15px;
}

.articles-wrap a {
  margin: 20px 0;
}

@media (max-width: 1200px) {
  section.tickets .ticket-item .ticket-price > div p {
    display: block !important;
  }
}
@media (max-width: 992px) {
  .articles-wrap .article-title {
    font-size: 24px;
  }
  .articles-wrap .article-desc {
    font-size: 16px;
  }
}
/*** Counter ***/
div.main .main-timer {
  width: 435px;
  padding: 17px 0 0 0;
}

@media (max-width: 600px) {
  div.main .main-timer {
    width: 340px;
    padding-top: 35px;
  }
}
@media (max-width: 400px) {
  div.main .main-timer {
    width: 300px;
    padding-top: 45px;
  }
  div.main .main-timer {
    padding-top: 47px;
  }
  .counter-block .counter .number {
    font-size: 30px;
  }
  .counter-block .counter-caption {
    font-size: 70%;
  }
}
.counter-group {
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  -ms-flex-pack: center;
  -webkit-box-pack: center;
          justify-content: center;
}

/*** Social Modal ***/
.social-content {
  text-align: center;
  background: #fff;
}

@media (max-width: 480px) {
  .social-content {
    padding: 0;
  }
}
.social-content p {
  margin-bottom: 10px;
}

.social-content .social-btn {
  margin: 20px 0 0;
  width: 100%;
  display: inline-block;
}

.social-content .social-btn:hover {
  text-decoration: none;
}

.social-content .social-btn span {
  cursor: pointer;
  color: #1a9dd8;
  border-bottom: 1px dotted #54D5FF;
}

.social-content .social-btn span:hover {
  border-bottom: 1px solid #54D5FF;
}

.row-center {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.social-title {
  margin-bottom: 20px;
  font-size: 22px;
  text-align: center;
  margin: 20px 0 35px;
  width: 100%;
}

.social-title p {
  font-size: 18px;
  color: #777;
  margin-top: 5px;
}

@media (max-width: 767px) {
  .social-title {
    font-size: 18px;
  }
  .social-title p {
    font-size: 14px;
  }
  .widget-popup {
    width: 100%;
  }
  .fb_iframe_widget,
  .fb_iframe_widget span,
  .fb_iframe_widget span iframe[style] {
    width: 100% !important;
  }
}
.widget-social {
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  -ms-flex-pack: distribute;
  justify-content: space-around;
  -ms-flex-flow: row wrap;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
          flex-flow: row wrap;
}

.widget-popup {
  margin-bottom: 15px;
}
.widget-popup > p {
  text-align: center;
  margin-bottom: 15px;
}

.container-social {
  margin-bottom: 30px;
}

/*
#vk_subscribe {
  max-width: 310px;
}
*/
.widget-vk {
  display: table;
  margin: 0 auto;
  text-align: center;
}

iframe #page_wrap {
  text-align: center !important;
}

#ok_group_widget,
#__okGroup0 {
  width: 100% !important;
  max-width: 270px !important;
}

/*
@media (max-width: 480px) {
  .fb_iframe_widget, .fb_iframe_widget span{
	max-width: 100% !important;
  }
  .fb_iframe_widget span iframe[style] {
	max-width: 270px !important;
	width: 100% !important;
  }
}
*/
#vk_subscribe {
  margin: 0 auto;
}

#__okGroup1,
#vkwidget2 {
  display: none;
}

/*
*::--webkit-media-controls-play-button {
  display: none!important;
  -webkit-appearance: none;
}
*/
/*

video::-webkit-media-controls-start-playback-button {
  display: none!important;
  -webkit-appearance: none;
}
*/
#fancybox-close:before {
  content: "";
  margin: auto;
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  background: url(images/fancybox-close.png) no-repeat center !important;
  height: 12px;
  width: 12px;
}

.post-item .post-data .post-title {
  font-size: 32px;
  margin-right: 30px;
  text-align: left;
}

.gallery-item .gallery-data .gallery-title {
  text-align: left;
}

@media (max-width: 1700px) {
  .gallery-item .gallery-data .gallery-title {
    font-size: 23px;
    line-height: 24px;
  }
}
section h2 {
  margin: 13px 0 0 !important;
}

.section-title.section-title-left .section-title-main {
  margin-left: -4px !important;
}

.vc_btn3.vc_btn3-color-grey.vc_btn3-style-modern {
  background-color: #fff !important;
  background-image: none !important;
  border: solid 3px #1a9dd8 !important;
  color: #1a9dd8 !important;
  background: none !important;
  font-size: 20px;
  padding: 14px 36px 12px 36px !important;
  line-height: 20px;
  text-transform: uppercase;
  border-radius: 30px;
  font-family: "Proxima Nova B";
  -webkit-transition: easy;
  transition: easy;
}

.vc_btn3.vc_btn3-color-grey.vc_btn3-style-modern:hover {
  color: #fff !important;
  background: #1a9dd8 !important;
}

@media (max-width: 480px) {
  .vc_btn3-container.vc_btn3-inline {
    width: 100%;
  }
  .vc_btn3.vc_btn3-color-grey.vc_btn3-style-modern {
    width: 100%;
    padding: 12px 36px 12px 36px !important;
    font-size: 18px;
    line-height: 18px;
  }
}
section.programm {
  padding-bottom: 210px !important;
}

section.programm .ui-tabs .ui-tabs-nav {
  margin-bottom: 60px;
}

.programm-title {
  font: 50px/56px "Proxima Nova B";
  text-transform: uppercase;
  color: #1c9dd7;
  text-align: center;
}

@media (max-width: 1200px) {
  .programm-title {
    font: 42px/46px "Proxima Nova B";
  }
}
@media (max-width: 600px) {
  .programm-title {
    font: 28px/34px "Proxima Nova B";
  }
}
.programm-artists {
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  -ms-flex-flow: column wrap;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
          flex-flow: column wrap;
  -ms-flex-pack: space-around;
  justify-content: space-around;
  margin-top: 20px;
  margin-bottom: 30px;
  margin-left: 0;
  margin-right: 0;
}

.programm-artists > div {
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  -ms-flex-flow: row wrap !important;
  -webkit-box-orient: horizontal !important;
  -webkit-box-direction: normal !important;
          flex-flow: row wrap !important;
  -ms-flex-pack: start;
  -webkit-box-pack: start;
          justify-content: flex-start;
  position: relative !important;
  padding: 20px 8px 15px !important;
  margin: 30px 0;
}

.programm-artists .programm-times {
  border: 2px solid #E0F2FF !important;
  border-radius: 2px;
  padding: 10px 10px 0;
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
          flex-direction: column;
  -ms-flex-direction: column;
  -ms-flex-pack: center;
  -webkit-box-pack: center;
          justify-content: center;
  -ms-flex-align: center;
  -webkit-box-align: center;
          align-items: center;
}

.programm-artists .section-title {
  position: absolute;
  top: -14px;
  left: 0;
  right: 0;
  margin-left: auto;
  margin-right: auto;
}

.programm-artists .section-title + * {
  margin-top: 0 !important;
}

@media (max-width: 1199px) {
  .programm-artists .section-title {
    top: -12px;
  }
}
.programm-artists .section-title .section-title-sub {
  text-transform: lowercase;
  font-size: 19px;
}

@media (max-width: 576px) {
  .programm-artists [class*=col-] {
    width: 100% !important;
  }
  .programm-artists .programm-item {
    margin-left: auto;
    margin-right: auto;
  }
  .programm-artists {
    margin-top: 25px;
    margin-bottom: 20px;
  }
}
.ui-tabs .ui-tabs-nav {
  overflow: visible;
}

.ui-tabs .ui-tabs-nav li.ui-state-active a {
  position: relative;
}

.ui-tabs .ui-tabs-nav li:first-child.ui-state-active a,
.ui-tabs .ui-tabs-nav li:first-child a:hover {
  border-top-left-radius: 30px;
  border-bottom-left-radius: 30px;
}

.ui-tabs .ui-tabs-nav li:last-child.ui-state-active a,
.ui-tabs .ui-tabs-nav li:last-child a:hover {
  border-top-right-radius: 30px;
  border-bottom-right-radius: 30px;
}

.ui-tabs .ui-tabs-nav li.ui-state-active a:focus {
  outline: none;
}

.ui-tabs .ui-tabs-nav li.ui-state-active a:after {
  content: "";
  position: absolute;
  bottom: -20px;
  left: 0;
  right: 0;
  margin-left: auto;
  margin-right: auto;
  width: 0;
  height: 0;
  border-left: 18px solid transparent;
  border-right: 18px solid transparent;
  border-top: 17px solid #1c9dd7;
}

@media (max-width: 1200px) {
  .ui-tabs .ui-tabs-nav li.ui-state-active a:after {
    bottom: -12px;
    border-left: 13px solid transparent;
    border-right: 13px solid transparent;
    border-top: 12px solid #1c9dd7;
  }
}
.programm-artists .programm-item {
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  -ms-flex-direction: row;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
          flex-direction: row;
  -ms-flex-align: center;
  -webkit-box-align: center;
          align-items: center;
  background: #fff;
  height: 70px;
  max-width: 269px;
  width: 100%;
  padding: 5px;
  border-radius: 35px;
  background-color: #fff;
  -webkit-box-shadow: 0px 1px 2px 0px rgba(0, 0, 0, 0.2);
          box-shadow: 0px 1px 2px 0px rgba(0, 0, 0, 0.2);
  color: #45484f;
  font-size: 18px;
  line-height: 22px;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
  margin-bottom: 15px;
  margin-top: 15px;
}

.programm-artists .programm-item:hover {
  text-decoration: none;
  color: #1a9dd8;
  -webkit-box-shadow: 0px 4px 7px 0px rgba(0, 0, 0, 0.2);
          box-shadow: 0px 4px 7px 0px rgba(0, 0, 0, 0.2);
}

@media (max-width: 768px) {
  .programm-artists .programm-item:hover {
    -webkit-box-shadow: 0px 1px 2px 0px rgba(0, 0, 0, 0.2);
            box-shadow: 0px 1px 2px 0px rgba(0, 0, 0, 0.2);
  }
}
@media (max-width: 480px) {
  .programm-artists .programm-item {
    margin-bottom: 15px;
  }
}
.programm-artists .programm-item img {
  border-radius: 50%;
}

.programm-artists .programm-item span {
  margin-left: 15px;
}

@media (max-width: 400px) {
  section.archive .buttons-container {
    margin-left: 15px;
    margin-right: 15px;
  }
  section.archive .buttons-container .btn {
    font-size: 16px;
  }
}
.lang-popup {
  width: 240px;
  padding: 0;
}

/*
  @media (max-width: 400px) {
	.lang-popup{
	  width: 200px;
	}
  }
*/
.lang-popup [class*=lang_] {
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  -ms-flex-pack: center;
  -webkit-box-pack: center;
          justify-content: center;
  -ms-flex-align: center;
  -webkit-box-align: center;
          align-items: center;
  margin-top: 20px;
  margin-bottom: 20px;
  cursor: pointer;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
}

.lang-popup a:hover {
  opacity: 0.7;
  text-decoration: none;
}

.lang-popup span {
  font-family: "Proxima Nova S";
  font-size: 30px;
  padding-left: 15px;
  color: #000;
  display: block;
}

@media (min-width: 1200px) {
  div.main .main-date {
    margin-top: 35px;
  }
}
@media (max-width: 991px) {
  div.main .main-date {
    margin-top: 60px;
  }
}
div.main .main-ticket {
  margin-top: 0px;
}

video {
  width: 100%;
  height: 100%;
  -o-object-fit: fill;
     object-fit: fill;
}

.video-broadcast--wrapp {
  width: 395px;
  max-width: 395px;
  height: 298px;
  margin: 30px 0;
  border-radius: 5px;
  background-size: cover !important;
  cursor: pointer;
  position: relative;
  z-index: 2;
}

@media (max-width: 1200px) {
  .video-broadcast--wrapp {
    margin: 30px 0 0;
  }
  div.main .main-timer {
    margin: 30px 0;
  }
}
@media (max-width: 768px) {
  .video-broadcast--wrapp {
    width: 100%;
    height: auto;
    margin-left: auto;
    margin-right: auto;
  }
  div.main .main-timer {
    margin: 30px auto;
  }
}
.video-broadcast--wrapp .custom {
  border: 4px solid #fff;
  border-radius: 5px;
}

.video-broadcast--wrapp #videoContainer {
  width: 100%;
  height: 100%;
}

.video-broadcast--wrapp .overlay {
  position: absolute;
}

.video-broadcast--wrapp .overlay-parent {
  position: relative;
}

.video-broadcast--wrapp #giantPlayButton {
  background: #FF433C;
}

div.main .col-md-12 {
  position: relative;
}

@media (min-width: 1200px) {
  div.main .main-timer {
    background: none !important;
    width: 100px;
    position: absolute;
    top: 105px;
    right: 15px;
    z-index: 1;
  }
  div.main .main-timer.timer-de {
    top: 125px;
  }
  div.main .main-timer.timer-ru:before {
    content: "До ярмарки осталось";
  }
  div.main .main-timer.timer-de:before {
    content: "Bis zum Jahrmarkt bleiben";
    top: -55px !important;
  }
  div.main .main-timer.timer-ru:before,
  div.main .main-timer.timer-de:before {
    position: absolute;
    top: -30px;
    left: 0;
    right: 0;
    display: block;
    text-align: center;
    color: #fff;
  }
  .counter-group {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    border: 3px solid #fff;
    border-radius: 30px;
    padding: 10px 0 15px;
  }
  .counter-block + .counter-block {
    margin-left: 0;
  }
  .counter-block + .counter-block:before {
    content: none;
  }
}
@media (max-width: 767px) {
  section.foris {
    padding-bottom: 0;
  }
  section.foris .section-title + .row {
    margin-top: 15px;
  }
  /*
    .foris-img img{
  	display: none;
    }
    .foris-img{
  	position: relative;
    }
    .foris-img:before{
  	content: '';
  	position: absolute;
  	display: block;
  	width: 1px;
  	height: 30px;
  	background: #ddd;
  	top: -33px;
  	border-radius: 10px;
  	left: 0;
  	right: 0;
  	margin-left: auto;
  	margin-right: auto;
  	font-family: 'FontAwesome';
    }

    .foris .col-md-3:first-child .foris-img:before{
  	content: none;
    }
  */
  section.whyis .whyis-item {
    margin-bottom: 0;
  }
  section.whyis .whyis-item .whyis-item-desc {
    padding: 0 20px;
  }
  .owl-default {
    -webkit-box-ordinal-group: 5;
        -ms-flex-order: 4;
            order: 4;
    position: relative;
  }
  .owl-nav {
    position: absolute;
    top: 30%;
    color: #1A9DD8;
    font-size: 25px;
    width: 100%;
  }
  .owl-nav .owl-prev {
    position: absolute;
    left: 0;
  }
  .owl-nav .owl-next {
    position: absolute;
    right: 0;
  }
  section.foris .foris-item .foris-img img {
    margin: 0 auto;
    max-width: 150px;
  }
  section.foris .owl-default {
    margin-left: 0;
    margin-top: 30px;
  }
}
.m-open-modal {
  overflow: hidden;
}

.modal-backdrop {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1040;
  background-color: #000;
  filter: alpha(opacity=50);
  opacity: 0.5;
  cursor: pointer;
}

.overlay-popup {
  overflow-x: hidden;
  overflow-y: auto;
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1050;
  -webkit-overflow-scrolling: touch;
  outline: 0;
}

.m-social-modal {
  position: relative;
  z-index: 999999;
  margin: 40px;
}

.m-social-modal .social-content {
  background: #fff;
  padding: 20px 10px;
  overflow: hidden;
}

.m-social-modal .modal-close {
  position: absolute;
  background: #b6b6b6;
  width: 27px;
  height: 27px;
  border-radius: 14px;
  padding: 6px 0 0 7px;
  top: -13px;
  right: -13px;
  text-decoration: none;
  cursor: pointer;
}

.m-social-modal .modal-close:hover {
  background: #1A9DD8;
}

.m-social-modal .modal-close:before {
  content: "";
  margin: auto;
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  background: url(/wp-content/themes/jarmarka/images/fancybox-close.png) no-repeat center;
  height: 12px;
  width: 12px;
}

.btn.btn-ends {
  background: #ddd !important;
  color: #aaa;
  cursor: default;
}

.btn-ends:hover {
  background: #ddd !important;
}

.ticket-end-buy {
  display: block;
  font-size: 16px;
  line-height: 22px;
  margin-top: 20px;
  color: #ff433c;
}

section.tickets .ticket-item .ticket-price > div:nth-child(2) {
  color: #45484f;
}

section.tickets .ticket-item .ticket-button {
  padding: 25px 20px;
}

.ticket-price-end {
  padding: 10px 20px 25px;
}

.ticket-price-end span {
  color: #FF433C;
  font-size: 18px;
  font-family: "Proxima Nova S";
}

/********* add to SCSS ************/
a.gallery-item {
  display: block;
}

.nobuttons *::-webkit-media-controls-panel {
  display: none !important;
  -webkit-appearance: none;
}

/* Old shadow dom for play button */
.nobuttons *::--webkit-media-controls-play-button {
  display: none !important;
  -webkit-appearance: none;
}

/* New shadow dom for play button */
/* This one works */
.nobuttons *::-webkit-media-controls-start-playback-button {
  display: none !important;
  -webkit-appearance: none;
}

#jarmarkaStart {
  background: none;
  max-width: 600px;
  width: 100%;
}

#jarmarkaStart .jarmarkaStart--content {
  max-width: 600px;
  width: 100%;
  text-align: center;
}

#jarmarkaStart .fancybox-close-small {
  right: 30px;
}

#jarmarkaStart .jarmarkaStart--content h2 {
  font-size: 26px;
  line-height: 36px;
}

#jarmarkaStart .jarmarkaStart--content h2 span {
  display: block;
  font-size: 20px;
  color: #777;
}

#jarmarkaStart .jarmarkaStart--content img {
  width: 100%;
  margin: 20px 0;
}

#social ul li a img {
  width: 100%;
}

header.header.fix-menu .m-nav,
header.header.other-pages.fix-menu .m-nav {
  margin-right: 355px;
}

.competition-container {
  margin-top: 50px;
}
@media screen and (max-width: 992px) {
  .competition-container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    position: relative;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
}
@media screen and (max-width: 772px) {
  .competition-container {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}
.competition-container .competition-member {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 20px 0;
  border-top: dotted 1px #c7c7c7;
}
@media screen and (max-width: 992px) {
  .competition-container .competition-member {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    position: relative;
    padding: 20px;
    border: dotted 1px #c7c7c7;
    margin-bottom: 35px;
    border-radius: 35px;
  }
}
.competition-container .competition-member .competition-member-info {
  -webkit-box-flex: 1;
      -ms-flex: 1 1;
          flex: 1 1;
  margin-right: 20px;
}
@media screen and (max-width: 992px) {
  .competition-container .competition-member .competition-member-info {
    margin-right: 0;
    margin-bottom: 15px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}
.competition-container .competition-member .competition-member-position {
  background: #e9f6ff;
  min-width: 40px;
  width: 40px;
  height: 40px;
  border-radius: 20px;
  color: #97d3ef;
  font-size: 26px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-right: 20px;
}
@media screen and (max-width: 992px) {
  .competition-container .competition-member .competition-member-position {
    margin-right: 0;
    position: absolute;
    left: 12px;
    top: 12px;
  }
}
.competition-container .competition-member .competition-member-foto {
  min-width: 100px;
  overflow: hidden;
  margin-right: 20px;
  border-radius: 10px;
}
@media screen and (max-width: 992px) {
  .competition-container .competition-member .competition-member-foto {
    width: 260px;
    margin-bottom: 15px;
    border-radius: 20px;
    background: #e9f6ff;
    margin-right: 0;
  }
}
@media screen and (max-width: 1200px) {
  .competition-container .competition-member .competition-member-foto img {
    width: 100px;
  }
}
.competition-container .competition-member .competition-member-name {
  white-space: nowrap;
  -webkit-box-flex: 1;
      -ms-flex: 1 1;
          flex: 1 1;
  font-size: 26px;
  font-weight: bold;
  margin-bottom: 5px;
}
@media screen and (max-width: 1200px) {
  .competition-container .competition-member .competition-member-name {
    font-size: 20px;
  }
}
@media screen and (max-width: 992px) {
  .competition-container .competition-member .competition-member-name {
    text-align: center;
    white-space: unset;
  }
}
.competition-container .competition-member .competition-member-country {
  white-space: nowrap;
  -webkit-box-flex: 1;
      -ms-flex: 1 1;
          flex: 1 1;
  font-size: 14px;
  font-weight: bold;
  margin-bottom: 15px;
  color: #b3b3b3;
}
@media screen and (max-width: 992px) {
  .competition-container .competition-member .competition-member-country {
    text-align: center;
  }
}
.competition-container .competition-member .competition-member-song {
  max-width: 400px;
  min-width: 300px;
}
@media screen and (max-width: 992px) {
  .competition-container .competition-member .competition-member-song {
    max-width: 260px;
    min-width: 260px;
    text-align: center;
  }
}
.competition-container .competition-member .competition-member-vote {
  font-size: 14px;
  color: #45484f;
  min-width: 100px;
  margin-right: 20px;
  -webkit-box-flex: 1;
      -ms-flex: 1 1;
          flex: 1 1;
  text-align: center;
}
.competition-container .competition-member .competition-member-vote span {
  font-size: 46px;
  font-weight: bold;
  color: #1a9dd8;
  display: block;
  text-align: center;
}
@media screen and (max-width: 992px) {
  .competition-container .competition-member .competition-member-vote {
    margin-right: 0;
    position: absolute;
    text-align: center;
    top: 38px;
    left: 124px;
    min-width: 150px;
  }
}
.competition-container .competition-member .competition-member-button {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.competition-container .competition-member .competition-member-button a.btn-blue.btn-frame {
  background: #fff !important;
}
.competition-container .competition-member .competition-member-button a.btn-blue.btn-frame:hover {
  background: #1a9dd8 !important;
}
.competition-container .competition-member .competition-member-button .competition-already-voted {
  display: block;
  font-size: 12px;
  text-align: center;
  margin-top: 10px;
}
.competition-container .competition-member .competition-member-button i {
  opacity: 0;
  position: absolute;
}
.competition-container .competition-member .competition-member-button .competition-loading span {
  display: none;
}
.competition-container .competition-member .competition-member-button .competition-loading i {
  opacity: 1;
  position: relative;
  -webkit-animation: rotatefull 1s infinite;
          animation: rotatefull 1s infinite;
}

.g-recaptcha-form-container {
  display: none;
}

.competition-form-button {
  margin: 30px 0;
}

.competition-rules-button {
  margin: 30px 0 0 0;
}

.competition-form {
  padding-top: 30px;
}

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

.competition-menu > a {
  -ms-flex-item-align: center !important;
      -ms-grid-row-align: center !important;
      align-self: center !important;
  height: auto !important;
  background: #ff443d;
  color: #fff !important;
  border-radius: 40px !important;
  padding: 10px 10px !important;
}
@media screen and (max-width: 1200px) {
  .competition-menu > a {
    margin-right: 0 !important;
    margin-left: 0 !important;
    border-radius: 0px !important;
    margin-bottom: 0 !important;
    margin-top: 0 !important;
    padding: 12px 20px 10px 20px !important;
  }
}
.competition-menu > a:after {
  display: none !important;
}

.competition-menu--yellow > a {
  -ms-flex-item-align: center !important;
      -ms-grid-row-align: center !important;
      align-self: center !important;
  height: auto !important;
  background: #f4ec1f;
  color: #45484f !important;
  border-radius: 40px !important;
  padding: 10px 10px !important;
}
@media screen and (max-width: 1200px) {
  .competition-menu--yellow > a {
    margin-right: 0 !important;
    margin-left: 0 !important;
    border-radius: 0px !important;
    margin-bottom: 0 !important;
    margin-top: 0 !important;
    padding: 12px 20px 10px 20px !important;
  }
}
.competition-menu--yellow > a:after {
  display: none !important;
}

.competition-menu .sub-menu {
  left: auto;
  right: 0;
}

.side-menu .competition-menu > a {
  margin: 10px 20px;
}

.side-menu #social ul {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.side-menu #social ul li {
  padding: 3px;
}

.competition-form-desc {
  padding-top: 30px;
}

#competition-modal,
#competition-dj-modal,
#ticket-modal {
  padding: 0 !important;
  background: #2d1b2b !important;
}

#competition-modal #competition-modal-content {
  background: url(img/miss-800x500-bg.jpg) center;
  background-size: cover;
}
@media screen and (max-width: 850px) {
  #competition-modal #competition-modal-content {
    background: url(img/miss-320x640-bg.jpg) center;
  }
}

#competition-dj-modal #competition-modal-content {
  background: url(img/contest-dj-800x500-bgdj.jpg) center;
  background-size: cover;
}
@media screen and (max-width: 850px) {
  #competition-dj-modal #competition-modal-content {
    background: url(img/contest-dj-320x640-bgdj.jpg) center;
  }
}

.competition-modal-banner {
  min-width: 800px;
}
@media screen and (max-width: 850px) {
  .competition-modal-banner {
    display: none;
  }
}

.competition-modal-banner-mobile {
  min-width: 320px;
  display: none;
}
@media screen and (max-width: 850px) {
  .competition-modal-banner-mobile {
    display: block;
  }
}

#ticket-modal .ticket-modal-ru {
  background: url(img/tickets-banner-800x500-ru-bg.jpg) center;
  background-size: cover;
}
@media screen and (max-width: 850px) {
  #ticket-modal .ticket-modal-ru {
    background: url(img/tickets-banner-320x640-ru-bg.jpg) center;
  }
}
#ticket-modal .ticket-modal-de {
  background: url(img/tickets-banner-800x500-de-bg.jpg) center;
  background-size: cover;
}
@media screen and (max-width: 850px) {
  #ticket-modal .ticket-modal-de {
    background: url(img/tickets-banner-320x640-de-bg.jpg) center;
  }
}

.ticket-modal-banner {
  min-width: 800px;
}
@media screen and (max-width: 850px) {
  .ticket-modal-banner {
    display: none;
  }
}

.ticket-modal-banner-mobile {
  min-width: 320px;
  display: none;
}
@media screen and (max-width: 850px) {
  .ticket-modal-banner-mobile {
    display: block;
  }
}

.competition-rules-container {
  display: none;
}

.competition-rules {
  max-width: 600px;
}
.competition-rules ol {
  padding: 20px 0 20px 25px;
}

@-webkit-keyframes rotatefull {
  0% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
    -webkit-transform-origin: center;
            transform-origin: center;
  }
  100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
    -webkit-transform-origin: center;
            transform-origin: center;
  }
}

@keyframes rotatefull {
  0% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
    -webkit-transform-origin: center;
            transform-origin: center;
  }
  100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
    -webkit-transform-origin: center;
            transform-origin: center;
  }
}
.competition-auth-button {
  margin-top: 10px;
}

.oa_social-container {
  text-align: center;
}
.oa_social-container .oneall_social_login_wrapper {
  margin: auto;
  margin-top: 10px;
}

.oa_social-container-wrapper {
  display: none;
}

.oneall_social_login {
  position: relative;
}
.oneall_social_login:after {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  z-index: 999;
  background: #fff;
}

.oneall_social_login_wrapper .oneall_social_login:after {
  display: none;
}

.test3 {
  font-size: 30px;
}

.konkurs-row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media (max-width: 900px) {
  .konkurs-row {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.konkurs-row .konkurs-content {
  -webkit-box-flex: 1;
      -ms-flex: 1 1;
          flex: 1 1;
}
.konkurs-row .konkurs-banner {
  border-radius: 10px;
  overflow: hidden;
}
@media (max-width: 900px) {
  .konkurs-row .konkurs-banner {
    max-width: 1000px;
    margin-left: 0;
    margin-top: 20px;
  }
}
.konkurs-row .konkurs-banner img {
  display: block;
  margin: 0 !important;
}
@media (max-width: 900px) {
  .konkurs-row .konkurs-banner img {
    width: 100%;
  }
}

@media (min-width: 991px) {
  .post.single {
    overflow: visible;
  }
}

.competition-member-youtube {
  border-radius: 100px;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 5px 20px;
  background: #fff;
  -webkit-transition: all ease-in-out 0.3s;
  transition: all ease-in-out 0.3s;
  border: solid 2px #e9f6ff;
}
.competition-member-youtube:hover {
  text-decoration: none;
  background: #e9f6ff;
}
.competition-member-youtube span {
  font-size: 20px;
  margin-right: 10px;
}
.competition-member-youtube i {
  color: #ff443d;
  font-size: 26px;
}

.competition-dj-vote-button span {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.competition-dj-vote-button svg {
  width: 36px !important;
  height: 36px !important;
  margin-right: 10px;
  margin-top: -5px;
  margin-bottom: -2px;
  margin-left: -6px;
}
.competition-dj-vote-button svg path {
  fill: #1a9dd8 !important;
}
.competition-dj-vote-button:hover path {
  fill: #fff !important;
}

.already-vote-button {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.already-vote-button svg {
  width: 36px !important;
  height: 36px !important;
  margin-right: 10px;
  margin-top: -5px;
  margin-bottom: -2px;
  margin-left: -6px;
}
.already-vote-button svg path {
  fill: #a2a2a2 !important;
}

article {
  width: 100%;
}

.custom-upload-file {
  position: relative;
  border: 1px solid #ddd;
  font-size: 20px;
  line-height: 20px;
  border-radius: 30px;
  padding: 5px;
  width: 100%;
}
@media screen and (max-width: 510px) {
  .custom-upload-file {
    font-size: 16px;
    line-height: 20px;
  }
}

.custom-upload-file .j-form-fileld {
  margin-bottom: 0;
  position: unset;
}

.custom-upload-button {
  font-family: "Proxima Nova B";
  background: none;
  text-align: center;
  color: #45484f;
  font-size: 20px;
  -webkit-transition: all ease-in-out 0.3s;
  transition: all ease-in-out 0.3s;
  text-transform: uppercase;
  background: #f5ee37;
  padding: 15px;
  border-radius: 30px;
  cursor: pointer;
}
@media screen and (max-width: 510px) {
  .custom-upload-button {
    padding: 8px;
    font-size: 14px;
  }
}

.custom-upload-placeholder {
  padding-left: 25px;
  white-space: initial;
}
@media screen and (max-width: 510px) {
  .custom-upload-placeholder {
    font-size: 16px;
    padding-left: 10px;
  }
}
@media screen and (max-width: 400px) {
  .custom-upload-placeholder {
    font-size: 13px;
    line-height: normal;
    padding-left: 10px;
  }
}

.custom-upload-file .wpcf7-form-control-wrap input[type=file] {
  display: none;
}

.custom-upload-file {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media screen and (max-width: 400px) {
  .custom-upload-file {
    padding: 10px 5px;
  }
}
.custom-upload-file .j-label-custom-upload {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
  left: auto;
  top: auto;
  padding: 0;
  opacity: 1;
  color: #45484f;
  z-index: 1;
  background: transparent;
}
.custom-upload-file .j-label-custom-upload .wpcf7-form-control-wrap {
  position: absolute;
  left: 0;
}
.custom-upload-file .j-label-custom-upload .wpcf7-not-valid-tip {
  top: -40px;
  left: 15px;
}

.wpcf7-form .wrapp-input {
  margin-bottom: 15px;
}

.custom-upload-file .custom-upload-label {
  position: absolute;
  font-size: 14px;
  background: #f5ee37;
  color: #45484f;
  font-weight: 600;
  top: -10px;
  border-radius: 30px;
  left: 20px;
  font-size: 14px;
  padding: 0 8px;
}

.main-slogan {
  position: absolute;
  left: 50%;
  top: -98px;
  -webkit-transform: translateX(-50%);
      -ms-transform: translateX(-50%);
          transform: translateX(-50%);
  /* text-align: center; */
  text-align: left;
  font-size: 39px;
  line-height: 1;
  color: #f5ee37;
}
.main-slogan .wrapp-text {
  font-weight: 600;
}
.main-slogan span {
  padding-left: 30px;
  display: block;
  font-weight: 600;
}
@media screen and (max-width: 991px) {
  .main-slogan {
    -webkit-transform: translateX(-80%);
        -ms-transform: translateX(-80%);
            transform: translateX(-80%);
    top: -85px;
    font-size: 32px;
  }
}
@media screen and (max-width: 870px) {
  .main-slogan {
    -webkit-transform: translateX(-60%);
        -ms-transform: translateX(-60%);
            transform: translateX(-60%);
    font-size: 24px;
    top: -65px;
  }
}
@media screen and (max-width: 767px) {
  .main-slogan {
    position: relative;
    -webkit-transform: none;
        -ms-transform: none;
            transform: none;
    left: 0;
    top: 0;
    text-align: center;
    top: -5px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  .main-slogan .wrapp-text {
    margin: 0 auto;
    text-align: left;
    display: block;
  }
}

.banner_konkurs_miss {
  border: 1px solid rgba(243, 243, 243, 0.9529411765);
  border-radius: 10px;
}

.competition-miss {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-top: 0;
}
.competition-miss .competition-member {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
  border-top: none;
  margin-right: 10px;
  margin-left: 10px;
  max-width: 250px;
}
@media screen and (max-width: 992px) {
  .competition-miss .competition-member {
    border: none;
    border-radius: 0px;
  }
}
.competition-miss .competition-member .competition-member-position {
  position: absolute;
  z-index: 1;
  margin: 10px 0 0 12px;
  top: 20px;
  left: 0px;
}
.competition-miss .competition-member .competition-member-foto {
  margin-right: 0;
  overflow: visible;
  position: relative;
}
.competition-miss .competition-member .competition-member-foto a img {
  border-radius: 10px;
}
@media screen and (max-width: 1200px) {
  .competition-miss .competition-member .competition-member-foto img {
    width: auto;
  }
}
@media screen and (max-width: 992px) {
  .competition-miss .competition-member .competition-member-foto {
    width: -webkit-max-content;
    width: -moz-max-content;
    width: max-content;
    margin-bottom: 0;
    border-radius: 20px;
    background: transparent;
    margin-right: 0;
  }
}
.competition-miss .competition-member .competition-member-info {
  margin-right: 0;
  margin-top: 15px;
}
.competition-miss .competition-member .competition-member-info .competition-member-name {
  text-align: center;
  white-space: normal;
}
.competition-miss .competition-member .competition-member-info .competition-member-country {
  text-align: center;
}
.competition-miss .competition-member .competition-member-vote {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  border-radius: 10px;
  background-color: #ffffff;
  -webkit-box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.15);
          box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.15);
  font-size: 14px;
  color: #45484f;
  margin-right: 0;
  -webkit-box-flex: 1;
      -ms-flex: 1 1;
          flex: 1 1;
  text-align: center;
  position: absolute;
  bottom: -15px;
  left: 50%;
  -webkit-transform: translate(-50%, 0%);
      -ms-transform: translate(-50%, 0%);
          transform: translate(-50%, 0%);
  padding-top: 5px;
}
.competition-miss .competition-member .competition-member-vote span {
  font-size: 46px;
  font-weight: bold;
  color: #1a9dd8;
  display: block;
  text-align: center;
}
@media screen and (max-width: 992px) {
  .competition-miss .competition-member .competition-member-vote {
    margin-right: 0;
    position: absolute;
    text-align: center;
    top: 38px;
    left: 124px;
    padding: 8px 10px;
    top: 83%;
    min-width: auto;
  }
}
.competition-miss .competition-member:first-child .competition-member-position {
  background-color: #ffffba;
  color: #dec453;
}
.competition-miss .competition-member:first-child .competition-member-position:after {
  content: "";
  background-image: url("https://jarmarka.de/wp-content/uploads/crown.svg");
  position: absolute;
  width: 35px;
  height: 35px;
  top: -22px;
  left: -9px;
  -webkit-transform: rotate(-25deg);
      -ms-transform: rotate(-25deg);
          transform: rotate(-25deg);
}

.wrapp-text-sponsor {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: distribute;
      justify-content: space-around;
  padding: 40px 0 30px 0;
}
@media screen and (max-width: 992px) {
  .wrapp-text-sponsor {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
  }
}
.wrapp-text-sponsor .wrapp-text {
  margin: auto 0;
}
.wrapp-text-sponsor .wrapp-text .text-center {
  text-align: left;
}
@media screen and (max-width: 992px) {
  .wrapp-text-sponsor .wrapp-text .text-center {
    text-align: center;
  }
}
@media screen and (max-width: 380px) {
  .wrapp-text-sponsor .wrapp-text .text-center .competition-rules-button span {
    font-size: 15px;
  }
}
@media screen and (max-width: 1199px) {
  .wrapp-text-sponsor .wrapp-text {
    padding-right: 30px;
  }
}
.wrapp-text-sponsor .wrapp-sponsor .text-center .name-sponsor {
  font-family: "Proxima Nova B";
  background: none;
  text-align: left;
  font-size: 20px;
  text-transform: uppercase;
  margin-bottom: -40px;
}
.wrapp-text-sponsor .wrapp-sponsor .text-center .sponsor-logo {
  max-width: 400px;
}
@media screen and (max-width: 470px) {
  .wrapp-text-sponsor .wrapp-sponsor .text-center .sponsor-logo {
    width: 100%;
  }
}
@media screen and (max-width: 992px) {
  .wrapp-text-sponsor .wrapp-sponsor {
    margin: 0 auto;
    margin-bottom: 30px;
  }
}

#taste-nostalgia p {
  text-align: center;
  font-size: 18px;
}
@media screen and (max-width: 768px) {
  #taste-nostalgia p {
    padding-left: 15px;
    padding-right: 15px;
  }
}
#taste-nostalgia .owl-gallery {
  margin-top: 35px;
  max-width: 100%;
  overflow: hidden;
}
#taste-nostalgia .owl-gallery .owl-carusel-item {
  position: relative;
}
#taste-nostalgia .owl-gallery .owl-carusel-item .item-gallery {
  display: inline-block;
  position: relative;
  padding-top: 15px;
  padding-bottom: 15px;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
#taste-nostalgia .owl-gallery .owl-carusel-item .item-gallery:hover {
  -webkit-transform: scale(1.1, 1.1);
      -ms-transform: scale(1.1, 1.1);
          transform: scale(1.1, 1.1);
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
#taste-nostalgia .owl-gallery .owl-carusel-item .item-gallery img {
  max-width: 100%;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
#taste-nostalgia .owl-stage-outer {
  overflow: visible;
}

.owl-partners-carousel {
  margin-bottom: 100px;
}
.owl-partners-carousel .gallery-item:before, .owl-partners-carousel .gallery-item:after {
  display: none;
}

.ticket-window {
  position: relative;
  background: #e9f6ff;
  -webkit-box-shadow: 0px 1px 5px 0px rgba(169, 199, 220, 0.97);
          box-shadow: 0px 1px 5px 0px rgba(169, 199, 220, 0.97);
  padding: 35px 252px 35px 45px;
  color: #1d9dd8;
  font-size: 29px;
  font-family: "Proxima Nova S";
}
@media (max-width: 992px) {
  .ticket-window {
    padding: 25px 25px 10px 25px;
    text-align: center;
    font-size: 20px;
  }
}
.ticket-window:after {
  content: "";
  display: block;
  width: 250px;
  height: 250px;
  background: url(img/icons_icon-tickets.svg);
  background-position: center 56px;
  background-repeat: no-repeat;
  position: absolute;
  right: 20px;
  bottom: 0px;
}
@media (max-width: 992px) {
  .ticket-window:after {
    width: 100%;
    height: 150px;
    position: relative;
    display: block;
    right: auto;
    bottom: auto;
    margin-top: 10px;
    background-position: center top;
  }
}

.tabs-html {
  padding: 40px;
  text-align: center;
}
.tabs-html p {
  text-align: center;
  margin-bottom: 30px;
  font-size: 22px;
  font-family: "Proxima Nova S", Arial, sans-serif;
}

@media screen and (max-width: 500px) {
  .posts-gallery {
    margin: 0 -20px;
  }
}

.wrapp-content-tabs {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.vkontakte-share__button--vk {
  background: #4d76a1;
}

.odnoklassniki-share__button--od {
  background: #eb722e;
}

.fancybox-share__button {
  min-width: 147px !important;
}

@media screen and (max-width: 765px) {
  .fancybox-container {
    z-index: 999999;
  }
}

.show-social-fancy {
  position: absolute;
  bottom: 20px;
  left: 20px;
  background: #fff;
  color: #000;
  border-radius: 40px;
  padding: 10px 15px;
  border: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (max-width: 765px) {
  .show-social-fancy {
    bottom: auto;
    top: calc(100% - 30px);
    left: 50%;
    -webkit-transform: translateX(-50%);
        -ms-transform: translateX(-50%);
            transform: translateX(-50%);
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    border-radius: 10px;
    font-size: 12px;
  }
}
.show-social-fancy .share-btn {
  margin-left: 10px;
}
@media screen and (max-width: 765px) {
  .show-social-fancy .share-btn {
    margin-left: 0;
    margin-top: 5px;
    -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
  }
}
@media screen and (max-width: 765px) {
  .show-social-fancy {
    padding: 5px 15px 10px 15px;
  }
}

.download-app {
  max-width: 395px;
  text-align: center;
  margin-top: 20px;
}
@media screen and (max-width: 768px) {
  .download-app {
    margin: 0 auto;
    margin-top: 20px;
  }
}
.download-app span {
  font-size: 14px;
  color: #fff;
  display: block;
  text-align: center;
  margin-bottom: 20px;
}
.download-app a {
  display: inline-block;
}
.download-app a img {
  max-width: 130px;
  width: 130px;
}

.voice-record-wrapp {
  border: 1px solid #E5E5E5;
  -webkit-box-shadow: 0px 1px 2px 0px rgba(0, 0, 0, 0.2);
          box-shadow: 0px 1px 2px 0px rgba(0, 0, 0, 0.2);
  margin-top: 20px;
}
.voice-record-wrapp h3 {
  text-align: center;
  font-family: "Proxima Nova S";
  margin: 0;
  padding: 20px 20px;
}

.voice-record {
  font-family: "Proxima Nova R", Arial, sans-serif;
  color: #45484f;
}
.voice-record .item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
  border-top: 1px solid #E5E5E5;
  padding: 20px 19px;
}
.voice-record .item img {
  max-width: 120px;
  max-height: 168px;
  display: block;
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
}
.voice-record .item .detail {
  margin-right: 10px;
}
.voice-record .item .detail a {
  color: #45484f;
  display: block;
  margin-bottom: 10px;
  font-size: 20px;
  font-family: "Proxima Nova S";
}
@media screen and (max-width: 600px) {
  .voice-record .item .detail a {
    font-size: 18px;
  }
}
.voice-record .item .detail a:hover {
  text-decoration: none;
}
.voice-record .item .detail a:before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  display: block;
  z-index: 10;
}
.voice-record .item .detail p {
  font-size: 14px;
  margin-bottom: 0;
}

@media screen and (max-width: 1200px) {
  .custom-artists .vc_row.wpb_row.vc_row-fluid {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .custom-artists .vc_row.wpb_row.vc_row-fluid .vc_column_container {
    width: 100% !important;
  }
}

.wrapp-asside {
  margin-left: 30px;
  max-width: 340px;
}
@media screen and (max-width: 900px) {
  .wrapp-asside {
    max-width: 100%;
    margin-left: 0;
  }
}

.single-item-gallery {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-top: 20px;
}
.single-item-gallery .gallery-item {
  max-width: 300px;
  width: 100%;
}
@media screen and (max-width: 800px) {
  .single-item-gallery .gallery-item {
    max-width: 250px;
  }
}
@media screen and (max-width: 500px) {
  .single-item-gallery .gallery-item {
    max-width: 100%;
  }
}
.single-item-gallery .gallery-item:hover {
  margin-top: 0;
  margin-bottom: 0;
}

.line-btn-contest-rules {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-bottom: 25px;
}
@media screen and (max-width: 767px) {
  .line-btn-contest-rules {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}
.line-btn-contest-rules button {
  padding: 15px;
  cursor: pointer;
  border: none;
  font-weight: bold;
  margin-right: 15px;
}
@media screen and (max-width: 767px) {
  .line-btn-contest-rules button {
    margin-right: 0;
    margin-bottom: 15px;
  }
}
.line-btn-contest-rules button:last-child {
  margin-right: 0;
}
@media screen and (max-width: 767px) {
  .line-btn-contest-rules button:last-child {
    margin-bottom: 0;
  }
}
.line-btn-contest-rules .show-contest-rules {
  border: 2px solid #201f1f;
}

.fv-contest-photos-container-inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
@media (max-width: 991px) {
  .fv-contest-photos-container-inner {
    -ms-flex-pack: distribute;
        justify-content: space-around;
  }
}

.vc_row.wpb_row {
  word-break: break-word;
}

.fv_contest_container .contest-block {
  max-width: 277px;
  padding: 0 0.5rem;
}
.fv_contest_container .contest-block > a {
  position: relative;
  margin-bottom: 50px;
  display: block;
}
.fv_contest_container .contest-block .clg-item-info .clg-info-social .clg-info-row--text {
  display: inline;
}
.fv_contest_container .contest-block__meta {
  position: relative;
  bottom: unset;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.fv_contest_container .contest-block__meta .contest-block__title {
  font-size: 20px;
  font-weight: bold;
  margin-bottom: 5px;
  padding: 0;
  background: none;
  opacity: 1;
  letter-spacing: normal;
  line-height: normal;
}
.fv_contest_container .contest-block__meta .contest-block__description {
  visibility: visible;
  font-size: 14px;
  margin-bottom: 15px;
  color: #b3b3b3;
  background: none;
  padding: 0;
  line-height: normal;
  letter-spacing: normal;
}
.fv_contest_container .contest-block__actions {
  border-bottom: 0;
  padding: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.fv_contest_container .contest-block__actions .contest-block__action_vote {
  display: block;
  margin: 0 auto;
}
.fv_contest_container .contest-block__actions .btn-add-vote {
  font-family: "Proxima Nova B";
  display: inline-block;
  font-size: 18px;
  line-height: 20px;
  border-radius: 30px;
  text-transform: uppercase;
  font-weight: 500;
  font-style: normal;
}
.fv_contest_container .contest-block__actions #country-not-vote {
  background: #bdbdbd !important;
  border-color: #bdbdbd !important;
  color: #45484f !important;
}
.fv_contest_container .contest-block__actions #country-not-vote:hover {
  background: #bdbdbd !important;
  color: #45484f !important;
  border-color: #bdbdbd !important;
}
.fv_contest_container .contest-block__actions .share-contest {
  font-size: 14px;
  margin-bottom: 15px;
  color: #b3b3b3;
  background: none;
  padding: 0;
  line-height: normal;
  letter-spacing: normal;
  cursor: pointer;
}
.fv_contest_container .contest-block_img {
  max-width: 250px;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
  border-radius: 10px;
}
.fv_contest_container .size-votes {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  border-radius: 10px;
  background-color: #ffffff;
  -webkit-box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.15);
          box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.15);
  font-size: 14px;
  color: #45484f;
  margin-right: 0;
  -webkit-box-flex: 1;
      -ms-flex: 1 1;
          flex: 1 1;
  text-align: center;
  position: absolute;
  bottom: -40px;
  left: 50%;
  -webkit-transform: translate(-50%, 0%);
      -ms-transform: translate(-50%, 0%);
          transform: translate(-50%, 0%);
  padding: 5px;
  min-width: 100px;
}
.fv_contest_container .size-votes .contest-block__votes-count {
  font-size: 46px;
  font-weight: bold;
  color: #1a9dd8;
  display: block;
  text-align: center;
}
.fv_contest_container .contest-block-dj {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  max-width: 100%;
  width: 100%;
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 2px solid #f9f9f9;
  border-bottom: dotted 1px #c7c7c7;
  padding-left: 0;
  padding-right: 0;
}
.fv_contest_container .contest-block-dj:first-child {
  padding-top: 20px;
  margin-top: 20px;
  border-top: 1px solid #f9f9f9;
  border-top: dotted 1px #c7c7c7;
}
@media screen and (max-width: 991px) {
  .fv_contest_container .contest-block-dj:first-child {
    margin-top: 0;
  }
}
@media screen and (max-width: 991px) {
  .fv_contest_container .contest-block-dj {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    padding: 20px;
    max-width: 48%;
    border: dotted 1px #c7c7c7;
    margin-bottom: 35px;
    border-radius: 35px;
  }
}
@media screen and (max-width: 767px) {
  .fv_contest_container .contest-block-dj {
    max-width: 100%;
  }
}
.fv_contest_container .contest-block-dj > .wrapp-img-contestant {
  min-width: 150px;
  margin-right: 20px;
}
@media screen and (max-width: 991px) {
  .fv_contest_container .contest-block-dj > .wrapp-img-contestant {
    background: #e9f6ff;
    border-radius: 20px;
    margin-right: 0;
    margin-bottom: 10px;
  }
}
.fv_contest_container .contest-block-dj > .wrapp-img-contestant img {
  border-radius: 6px;
  max-width: 150px;
}
@media screen and (max-width: 991px) {
  .fv_contest_container .contest-block-dj > .wrapp-img-contestant img {
    border-radius: 20px;
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
    max-width: 110px;
  }
}
.fv_contest_container .contest-block-dj .contest-block__meta {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  margin-right: 20px;
}
@media screen and (max-width: 991px) {
  .fv_contest_container .contest-block-dj .contest-block__meta {
    margin-right: 0;
    margin-bottom: 10px;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}
.fv_contest_container .contest-block-dj .competition-member-vote {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (max-width: 991px) {
  .fv_contest_container .contest-block-dj .competition-member-vote {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}
.fv_contest_container .contest-block-dj .competition-member-vote .size-votes {
  position: relative;
  bottom: unset;
  left: unset;
  -webkit-transform: unset;
      -ms-transform: unset;
          transform: unset;
  margin-right: 15px;
}
@media screen and (max-width: 991px) {
  .fv_contest_container .contest-block-dj .competition-member-vote .size-votes {
    position: absolute;
    margin-right: 0;
    top: 30px;
    right: 40px;
    background: unset;
    border: none;
    -webkit-box-shadow: none;
            box-shadow: none;
  }
}

.logged .btn-add-vote {
  color: #69b978 !important;
  border-color: #69b978 !important;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.logged .btn-add-vote:hover {
  background: #69b978 !important;
  color: #fff !important;
  border-color: #69b978 !important;
}

.contest-block .competition-member-position {
  background: #e9f6ff;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  color: #97d3ef;
  font-size: 26px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  position: absolute;
  z-index: 1;
  top: 15px;
  left: 15px;
}
.contest-block.first .competition-member-position {
  background-color: #ffffba;
  color: #dec453;
}
.contest-block.first .competition-member-position:after {
  content: "";
  background-image: url("images/crown.svg");
  position: absolute;
  width: 35px;
  height: 35px;
  top: -22px;
  left: -9px;
  -webkit-transform: rotate(-25deg);
      -ms-transform: rotate(-25deg);
          transform: rotate(-25deg);
}
.contest-block .contest-block-dj.first .competition-member-position:after {
  display: none;
}

.contest-block-dj {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media (max-width: 991px) {
  .contest-block-dj {
    -webkit-box-align: unset;
        -ms-flex-align: unset;
            align-items: unset;
  }
}
.contest-block-dj .competition-member-position {
  position: relative;
  min-width: 40px;
  margin-right: 20px;
  left: 0;
  top: 0;
}
@media (max-width: 991px) {
  .contest-block-dj .competition-member-position {
    position: absolute;
    margin-right: 0;
    left: 10px;
    top: 10px;
  }
}
.contest-block-dj .size-votes {
  -webkit-box-shadow: none;
          box-shadow: none;
}

@media (max-width: 991px) {
  .sm2-bar-ui {
    margin-bottom: 15px;
  }
}

.description-after-form, .description-before-form {
  margin-bottom: 15px;
}

.description-after-form {
  margin-bottom: 30px;
}

.popap-login {
  padding: 30px !important;
}

.title-poppap {
  color: #ff433c;
  width: 100%;
  text-align: center;
  font-weight: 600;
  margin-bottom: 0 !important;
  font-size: 16px;
  margin-top: 10px;
}

.pre-title-poppap {
  color: #000;
  width: 100%;
  text-align: center;
  font-weight: 500;
  margin-bottom: 15px !important;
}

.popap-login, .popap-login-new {
  max-width: 445px;
}

.oneall_social_login_wrapper {
  width: 165px !important;
  margin: 0 auto;
  margin-top: 10px;
}

.oneall_social_login_providers iframe {
  width: 165px !important;
}

#modal-widget:before {
  display: none !important;
}

#login-site {
  cursor: pointer;
}

.mo_image_id {
  display: none !important;
}

.fancybox-slide br {
  display: none;
}
.fancybox-slide .mo-openid-app-icons {
  display: -webkit-box !important;
  display: -ms-flexbox !important;
  display: flex !important;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  max-width: 340px;
}
.fancybox-slide .mo-openid-app-icons > p {
  width: 100%;
  text-align: center;
  font-weight: 500;
  margin-bottom: 15px !important;
}
.fancybox-slide .mo-openid-app-icons > a {
  margin-right: 10px;
}
.fancybox-slide .mo-openid-app-icons > a:last-child {
  margin-right: 0;
}

.fv-contest-photos-container-inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
@media (max-width: 991px) {
  .fv-contest-photos-container-inner {
    -ms-flex-pack: distribute;
        justify-content: space-around;
  }
}

.contest-form {
  display: none;
  padding-top: 30px;
}
.contest-form .wpcf7 {
  margin-bottom: 20px;
}

.contest-rules {
  display: none;
}
.contest-rules ul, .contest-rules ol {
  padding: 20px 0 20px 40px;
}
.contest-rules ul li, .contest-rules ol li {
  list-style: unset;
}

.control-buttons-row .wpb_wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.contest-rules.fancybox-content {
  max-width: 800px;
}

.logout {
  display: block;
  background-color: rgba(0, 0, 0, 0.7);
  color: #fff;
  margin-bottom: 0;
  padding: 10px;
}
.logout a {
  display: inline-block;
  color: #fff;
  font-weight: 500;
}
.logout a:hover {
  text-decoration: underline;
  color: #fff;
}

@media (max-width: 991px) {
  .j-form-entrepreneur .splithalf.greylinebg {
    padding-top: 50px;
    gap: 30px;
    margin-bottom: 0;
  }
}
@media (max-width: 600px) {
  .j-form-entrepreneur .splithalf.greylinebg {
    padding-top: 70px;
  }
}
@media (max-width: 991px) {
  .j-form-entrepreneur .splithalf.greylinebg div:first-child {
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
  }
  .j-form-entrepreneur .splithalf.greylinebg div:first-child .j-form-fileld-lg-title {
    margin-bottom: 45px !important;
  }
}
@media (max-width: 600px) {
  .j-form-entrepreneur .splithalf.greylinebg div:first-child label {
    top: -45px;
  }
}
@media (max-width: 390px) {
  .j-form-entrepreneur .splithalf.greylinebg div:first-child .j-form-fileld-lg-title {
    margin-bottom: 55px !important;
  }
}
@media (max-width: 374px) {
  .j-form-entrepreneur .splithalf.greylinebg div:first-child label {
    top: -66px;
  }
}
@media (max-width: 991px) {
  .j-form-entrepreneur .splithalf.greylinebg div:last-child {
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
  }
}
@media (max-width: 600px) {
  .j-form-entrepreneur .splithalf.greylinebg div:last-child label {
    top: -32px;
  }
}
@media (max-width: 390px) {
  .j-form-entrepreneur .splithalf.greylinebg div:last-child label {
    top: -45px;
  }
}
@media (max-width: 991px) {
  .j-form-entrepreneur .j-form-fileld-lg-title label {
    color: #45484f;
    opacity: 1;
    top: -9px;
    z-index: 9;
    min-height: 20px;
    font-size: 14px;
    background: #f5ee37;
    -webkit-transition: all 0.3s linear;
    transition: all 0.3s linear;
    right: 0;
    white-space: normal;
    top: -32px;
    left: 0;
    padding: 5px 10px;
    background: transparent;
  }
}

.page-quick-access {
  padding: 0;
}

.quick-access {
  height: calc(100vh - 86px);
  position: relative;
  padding-top: 135px;
}
@media (max-width: 991px) {
  .quick-access {
    padding-top: 135px;
  }
}
.quick-access img {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 100%;
  width: 100%;
  display: block;
  margin: 0 auto;
  -o-object-fit: cover;
     object-fit: cover;
  background-position: center bottom;
}
.quick-access .wrapp-content-quick-access {
  position: relative;
  z-index: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 0 20px;
}
.quick-access .wrapp-content-quick-access a {
  margin-bottom: 20px;
  display: block;
  width: 100%;
  max-width: 500px;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  background: #1a9dd8 !important;
  color: #fff !important;
}
.quick-access .wrapp-content-quick-access a:hover {
  color: #1a9dd8 !important;
  background: #fff !important;
  border-color: #fff !important;
}
.quick-access .wrapp-content-quick-access a:last-child {
  margin-bottom: 0;
}

.description-program {
  text-align: center;
  font-size: 18px;
  line-height: 1.4;
}

.headliner-block {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media (max-width: 575px) {
  .headliner-block {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
  }
}
.headliner-block img {
  display: block;
  max-width: 200px;
  max-height: 200px;
  min-width: 200px;
  min-height: 200px;
  overflow: hidden;
  width: 100%;
  border-radius: 100px;
  margin: 20px;
}
@media (max-width: 575px) {
  .headliner-block img {
    margin: 10px;
  }
}
.headliner-block p {
  margin-bottom: 0;
  display: block;
  margin: 20px;
  max-width: 507px;
  text-align: left;
  font-size: 36px;
  font-family: "Proxima Nova B";
  color: #1a9dd8;
}
@media (max-width: 575px) {
  .headliner-block p {
    text-align: center;
    font-size: 20px;
    margin: 10px;
  }
}
.headliner-block br {
  display: none;
}

.FV_Winners .FV_Winners__heading {
  font-size: 32px;
  margin-top: 40px;
  margin-bottom: 20px;
}
.FV_Winners .FV_Winner {
  max-width: 250px;
  width: 100%;
  padding: 0;
  border: none;
  background: none;
  -webkit-box-shadow: none;
          box-shadow: none;
}
.FV_Winners .FV_Winner .FV_Winner__photo {
  margin-top: 10px;
}
.FV_Winners .FV_Winner .FV_Winner__photo img {
  max-width: 250px;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
  border-radius: 10px;
}
.FV_Winners .FV_Winner .FV_Winner__votes {
  border-radius: 10px;
  padding: 2px 5px;
  top: -28px;
}
.FV_Winners .FV_Winner .FV_Winner__votes span {
  font-size: 16px;
}
.FV_Winners .FV_Winner .FV_Winner__place_caption {
  font-size: 22px;
  margin-top: 11px;
  font-weight: bold;
  margin-bottom: 5px;
  padding: 0;
  background: none;
  opacity: 1;
  letter-spacing: normal;
  line-height: normal;
  color: black;
}
.FV_Winners .FV_Winner .FV_Winner__description {
  visibility: visible;
  font-size: 14px;
  margin-bottom: 15px;
  color: #b3b3b3;
  background: none;
  padding: 0;
  line-height: normal;
  letter-spacing: normal;
}

.line-jury-wrap {
  border: 1px solid #E5E5E5;
  -webkit-box-shadow: 0px 1px 2px 0px rgba(0, 0, 0, 0.2);
          box-shadow: 0px 1px 2px 0px rgba(0, 0, 0, 0.2);
  margin: 15px 0;
  padding: 10px;
}
.line-jury-wrap .line-title .title {
  border: none;
  text-align: center;
}
.line-jury-wrap .line-jury {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media (max-width: 1199px) {
  .line-jury-wrap .line-jury {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
}
.line-jury-wrap .line-jury .item-jury {
  width: 33.3%;
  padding: 10px;
  border-radius: 10px;
}
@media (max-width: 1199px) {
  .line-jury-wrap .line-jury .item-jury {
    width: 100%;
  }
}
.line-jury-wrap .line-jury .item-jury img {
  display: block;
  width: 100%;
  margin-bottom: 10px;
  border-radius: 10px;
}
@media (max-width: 1199px) {
  .line-jury-wrap .line-jury .item-jury img {
    max-width: 200px;
    margin: 0 auto 10px;
  }
}
@media (max-width: 760px) {
  .line-jury-wrap .line-jury .item-jury img {
    max-width: 100%;
  }
}
.line-jury-wrap .line-jury .item-jury .name-juri {
  font-size: 19px;
  font-weight: bold;
  margin-bottom: 5px;
  letter-spacing: normal;
  line-height: normal;
}
@media (max-width: 1199px) {
  .line-jury-wrap .line-jury .item-jury .name-juri {
    text-align: center;
  }
}
.line-jury-wrap .line-jury .item-jury .description-juri {
  font-size: 12px;
}

.tickets .attention-tickets {
  font-family: "Proxima Nova S";
  font-size: 24px;
  padding: 50px 0;
  color: #45484f;
  text-align: center;
}
.tickets .attention-tickets span {
  color: #ff433c;
}

/* 
// Features section
// ================ */
.features-wrap {
  margin-top: 0;
  position: relative;
  z-index: 1;
}
@media (min-width: 992px) {
  .features-wrap {
    margin-top: 50px;
    margin-bottom: 50px;
  }
}
.features-wrap .flex-justify {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media (max-width: 767px) {
  .features-wrap .flex-justify {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}
.features-wrap .flex-justify .col-sm-6.col-md-4:last-child {
  margin-left: auto;
}
@media (max-width: 767px) {
  .features-wrap .flex-justify .col-sm-6.col-md-4:last-child {
    margin-left: unset;
  }
}
.features-wrap .after-circle {
  display: none;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 150px;
  height: 150px;
  background: #fff;
  border-radius: 50%;
  z-index: 100;
}
@media (min-width: 992px) {
  .features-wrap .after-circle {
    display: block;
  }
}
.features-wrap .after-circle .logo-icon {
  width: 135px;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  z-index: 20;
}
.features-wrap .after-circle span {
  position: absolute;
  width: 50px;
  height: 1px;
  background: #ff443d;
}
@media (min-width: 1200px) {
  .features-wrap .after-circle span {
    display: none;
  }
}
.features-wrap .after-circle span:nth-child(1) {
  top: -45px;
  left: 0;
  -webkit-transform: rotate(60deg);
      -ms-transform: rotate(60deg);
          transform: rotate(60deg);
  -webkit-transform-origin: top left;
      -ms-transform-origin: top left;
          transform-origin: top left;
}
.features-wrap .after-circle span:nth-child(2) {
  top: -45px;
  right: 0;
  -webkit-transform: rotate(-60deg);
      -ms-transform: rotate(-60deg);
          transform: rotate(-60deg);
  -webkit-transform-origin: top right;
      -ms-transform-origin: top right;
          transform-origin: top right;
}
.features-wrap .after-circle span:nth-child(3) {
  top: 26%;
  right: -70px;
  -webkit-transform: rotate(-30deg);
      -ms-transform: rotate(-30deg);
          transform: rotate(-30deg);
}
.features-wrap .after-circle span:nth-child(4) {
  bottom: 23px;
  right: -65px;
  -webkit-transform: rotate(25deg);
      -ms-transform: rotate(25deg);
          transform: rotate(25deg);
  -webkit-transform-origin: bottom right;
      -ms-transform-origin: bottom right;
          transform-origin: bottom right;
}
.features-wrap .after-circle span:nth-child(5) {
  top: 21%;
  left: -70px;
  -webkit-transform: rotate(30deg);
      -ms-transform: rotate(30deg);
          transform: rotate(30deg);
}
.features-wrap .after-circle span:nth-child(6) {
  bottom: -45px;
  right: 0;
  -webkit-transform: rotate(60deg);
      -ms-transform: rotate(60deg);
          transform: rotate(60deg);
  -webkit-transform-origin: bottom right;
      -ms-transform-origin: bottom right;
          transform-origin: bottom right;
}
.features-wrap .after-circle span:nth-child(7) {
  bottom: -45px;
  left: 0;
  -webkit-transform: rotate(-60deg);
      -ms-transform: rotate(-60deg);
          transform: rotate(-60deg);
  -webkit-transform-origin: bottom left;
      -ms-transform-origin: bottom left;
          transform-origin: bottom left;
}
.features-wrap .after-circle span:nth-child(8) {
  bottom: 49px;
  left: -70px;
  -webkit-transform: rotate(-30deg);
      -ms-transform: rotate(-30deg);
          transform: rotate(-30deg);
  -webkit-transform-origin: bottom right;
      -ms-transform-origin: bottom right;
          transform-origin: bottom right;
}
.features-wrap .features-left-col, .features-wrap .features-right-col {
  position: relative;
}
.features-wrap .features-left-col .features-block, .features-wrap .features-right-col .features-block {
  color: #51535a;
  font-family: "Proxima Nova B";
}
.features-wrap .features-left-col .features-block:hover, .features-wrap .features-right-col .features-block:hover {
  text-decoration: none;
}
@media (min-width: 992px) {
  .features-wrap .features-left-col, .features-wrap .features-right-col {
    height: 500px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}
.features-wrap .features-block {
  position: relative;
  text-align: center;
  display: block;
  -webkit-transition: all 0.6s ease-in-out;
  transition: all 0.6s ease-in-out;
  margin-top: 50px;
}
@media (min-width: 992px) {
  .features-wrap .features-left-col {
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
  }
}
.features-wrap .features-left-col .features-block {
  position: relative;
  text-align: center;
  display: block;
  -webkit-transition: all 0.6s ease-in-out;
  transition: all 0.6s ease-in-out;
  margin-top: 50px;
}
@media (min-width: 992px) {
  .features-wrap .features-left-col .features-block {
    display: inline-block;
    margin-top: 0;
    max-width: 350px;
  }
}
.features-wrap .features-left-col .features-block .icon {
  max-height: 30px;
  min-height: 30px;
}
.features-wrap .features-left-col .features-block .icon + * {
  margin-top: 10px;
}
.features-wrap .features-left-col .features-block:after {
  content: none;
  position: absolute;
  background-image: url("images/petal.svg");
  pointer-events: none;
  width: 135px;
  height: 200px;
  background-size: contain;
  background-repeat: no-repeat;
}
@media (min-width: 1200px) {
  .features-wrap .features-left-col .features-block:after {
    content: "";
  }
}
@media (min-width: 991px) {
  .features-wrap .features-left-col .features-block:first-child {
    position: absolute;
    top: 0;
  }
}
@media (min-width: 991px) {
  .features-wrap .features-left-col .features-block:last-child {
    position: absolute;
  }
}
@media (min-width: 992px) {
  .features-wrap .features-left-col .features-block:first-child {
    position: absolute;
    top: 0;
    right: -130px;
  }
}
@media (min-width: 992px) {
  .features-wrap .features-left-col .features-block:last-child {
    position: absolute;
    bottom: 0;
    right: -130px;
  }
}
@media (min-width: 992px) {
  .features-wrap .features-left-col .features-block:nth-child(1) {
    height: 60px;
  }
}
.features-wrap .features-left-col .features-block:nth-child(1):after {
  bottom: -231px;
  right: -131px;
  -webkit-transform: rotate(-22deg);
      -ms-transform: rotate(-22deg);
          transform: rotate(-22deg);
}
@media (min-width: 1200px) {
  .features-wrap .features-left-col .features-block:nth-child(1):hover {
    -webkit-transform: translate(-10px, -20px);
        -ms-transform: translate(-10px, -20px);
            transform: translate(-10px, -20px);
  }
}
@media (min-width: 991px) {
  .features-wrap .features-left-col .features-block:nth-child(2) {
    position: absolute;
    right: 20px;
    top: 22%;
  }
}
@media (min-width: 1200px) {
  .features-wrap .features-left-col .features-block:nth-child(2):hover {
    -webkit-transform: translate(-20px, -8px);
        -ms-transform: translate(-20px, -8px);
            transform: translate(-20px, -8px);
  }
}
.features-wrap .features-left-col .features-block:nth-child(2):after {
  top: 18%;
  right: -247px;
  -webkit-transform: rotate(-67deg);
      -ms-transform: rotate(-67deg);
          transform: rotate(-67deg);
  opacity: 0.4;
}
@media (min-width: 991px) {
  .features-wrap .features-left-col .features-block:nth-child(3) {
    position: absolute;
    right: 0px;
    bottom: 23%;
  }
}
@media (min-width: 1200px) {
  .features-wrap .features-left-col .features-block:nth-child(3):hover {
    -webkit-transform: translate(-20px, 8px);
        -ms-transform: translate(-20px, 8px);
            transform: translate(-20px, 8px);
  }
}
.features-wrap .features-left-col .features-block:nth-child(3):after {
  top: -43%;
  right: -226px;
  -webkit-transform: translateY(-50%) rotate(-112.5deg);
      -ms-transform: translateY(-50%) rotate(-112.5deg);
          transform: translateY(-50%) rotate(-112.5deg);
  opacity: 0.6;
}
@media (min-width: 992px) {
  .features-wrap .features-left-col .features-block:nth-child(4) {
    height: 60px;
  }
}
@media (min-width: 1200px) {
  .features-wrap .features-left-col .features-block:nth-child(4):hover {
    -webkit-transform: translate(-10px, 20px);
        -ms-transform: translate(-10px, 20px);
            transform: translate(-10px, 20px);
  }
}
.features-wrap .features-left-col .features-block:nth-child(4):after {
  top: -235px;
  right: -130px;
  opacity: 0.8;
  -webkit-transform: rotate(-157deg);
      -ms-transform: rotate(-157deg);
          transform: rotate(-157deg);
}
@media (min-width: 992px) {
  .features-wrap .features-right-col {
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
  }
}
.features-wrap .features-right-col .features-block {
  position: relative;
  text-align: center;
  display: block;
  -webkit-transition: all 0.6s ease-in-out;
  transition: all 0.6s ease-in-out;
  margin-top: 50px;
}
@media (min-width: 992px) {
  .features-wrap .features-right-col .features-block {
    display: inline-block;
    margin-top: 0;
    max-width: 350px;
  }
}
.features-wrap .features-right-col .features-block .icon {
  max-height: 30px;
  min-height: 30px;
}
.features-wrap .features-right-col .features-block .icon + * {
  margin-top: 10px;
}
.features-wrap .features-right-col .features-block:after {
  content: none;
  position: absolute;
  background-image: url("images/petal.svg");
  pointer-events: none;
  width: 135px;
  height: 200px;
  background-size: contain;
  background-repeat: no-repeat;
}
@media (min-width: 1200px) {
  .features-wrap .features-right-col .features-block:after {
    content: "";
  }
}
@media (min-width: 991px) {
  .features-wrap .features-right-col .features-block:first-child {
    position: absolute;
    top: 0;
  }
}
@media (min-width: 991px) {
  .features-wrap .features-right-col .features-block:last-child {
    position: absolute;
    bottom: 0;
  }
}
@media (min-width: 992px) {
  .features-wrap .features-right-col .features-block:first-child {
    left: -130px;
  }
}
@media (min-width: 992px) {
  .features-wrap .features-right-col .features-block:last-child {
    left: -130px;
  }
}
@media (min-width: 992px) {
  .features-wrap .features-right-col .features-block:nth-child(1) {
    height: 60px;
  }
}
.features-wrap .features-right-col .features-block:nth-child(1):after {
  bottom: -231px;
  left: -128px;
  -webkit-transform: rotate(23deg);
      -ms-transform: rotate(23deg);
          transform: rotate(23deg);
  opacity: 0.8;
}
@media (min-width: 1200px) {
  .features-wrap .features-right-col .features-block:nth-child(1):hover {
    -webkit-transform: translate(10px, -20px);
        -ms-transform: translate(10px, -20px);
            transform: translate(10px, -20px);
  }
}
@media (min-width: 991px) {
  .features-wrap .features-right-col .features-block:nth-child(2) {
    position: absolute;
    left: 35px;
    top: 22%;
  }
}
@media (min-width: 1200px) {
  .features-wrap .features-right-col .features-block:nth-child(2):hover {
    -webkit-transform: translate(20px, -8px);
        -ms-transform: translate(20px, -8px);
            transform: translate(20px, -8px);
  }
}
.features-wrap .features-right-col .features-block:nth-child(2):after {
  top: 19%;
  left: -260px;
  -webkit-transform: rotate(68deg);
      -ms-transform: rotate(68deg);
          transform: rotate(68deg);
  opacity: 0.6;
}
@media (min-width: 991px) {
  .features-wrap .features-right-col .features-block:nth-child(3) {
    position: absolute;
    left: 0;
    bottom: 25%;
  }
}
@media (min-width: 1200px) {
  .features-wrap .features-right-col .features-block:nth-child(3):hover {
    -webkit-transform: translate(20px, 8px);
        -ms-transform: translate(20px, 8px);
            transform: translate(20px, 8px);
  }
}
.features-wrap .features-right-col .features-block:nth-child(3):after {
  top: -29%;
  left: -225px;
  -webkit-transform: translateY(-50%) rotate(113.5deg);
      -ms-transform: translateY(-50%) rotate(113.5deg);
          transform: translateY(-50%) rotate(113.5deg);
  opacity: 0.4;
}
@media (min-width: 992px) {
  .features-wrap .features-right-col .features-block:nth-child(4) {
    height: 60px;
  }
}
@media (min-width: 1200px) {
  .features-wrap .features-right-col .features-block:nth-child(4):hover {
    -webkit-transform: translate(10px, 20px);
        -ms-transform: translate(10px, 20px);
            transform: translate(10px, 20px);
  }
}
.features-wrap .features-right-col .features-block:nth-child(4):after {
  top: -235px;
  left: -130px;
  -webkit-transform: rotate(-202deg);
      -ms-transform: rotate(-202deg);
          transform: rotate(-202deg);
}

#sb_instagram {
  max-width: 270px;
}

.container-artists:before {
  height: 180px;
}
.container-artists:after {
  height: 180px;
}
.container-artists .container-wrap {
  min-height: unset;
}

.artists-tabs-arhive {
  margin-bottom: 40px;
  overflow: hidden;
}
.artists-tabs-arhive .single-item-gallery {
  margin-bottom: 30px;
}

@media (max-width: 768px) {
  .artists-tabs.ui-tabs #tabs-1 {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .artists-tabs.ui-tabs #tabs-1 .owl-carousel {
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
  }
  .artists-tabs.ui-tabs #tabs-1 .single-item-gallery {
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
  }
  .artists-tabs.ui-tabs #tabs-1 .buttons-container {
    -webkit-box-ordinal-group: 4;
        -ms-flex-order: 3;
            order: 3;
  }
}
@media (max-width: 767px) {
  .artists-tabs.ui-tabs .ui-tabs-nav {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    overflow: hidden;
  }
}
.artists-tabs.ui-tabs .ui-tabs-nav li.ui-state-active a:after {
  display: none;
}
.artists-tabs.ui-tabs .ui-tabs-nav li a {
  padding: 20px 40px;
  display: block;
  border-radius: 0 !important;
}

.custom-player .video-broadcast--wrapp {
  width: 100%;
  max-width: unset;
  height: unset;
  background-size: contain !important;
  background-repeat: no-repeat !important;
  background-position: center !important;
}
.custom-player .video-broadcast--wrapp .custom > div #videoContainer p {
  height: 100%;
}
.custom-player .video-broadcast--wrapp .custom #controls p:last-child {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.entry .jatmarka-plan {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 10px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media (max-width: 767px) {
  .entry .jatmarka-plan {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}
.entry .jatmarka-plan .jatmarka-plan--part {
  width: 100%;
  max-width: 400px;
  border: 1px solid #c7c7c7;
  margin: 15px;
  padding: 10px;
}
.entry .jatmarka-plan .jatmarka-plan--part img {
  margin: 0 !important;
  width: 100%;
  height: auto;
}

.fb-page.fb_iframe_widget {
  width: 100%;
}
.fb-page.fb_iframe_widget span {
  text-align: center;
}

.fb_iframe_widget iframe {
  position: unset !important;
}

@media (max-width: 1198px) {
  .fb-page.fb_iframe_widget span {
    width: 100% !important;
  }
}

@media (max-width: 767px) {
  .fb-page.fb_iframe_widget span iframe {
    width: 270px !important;
  }
}

.post-item-article {
  max-width: 370px;
  min-height: 370px;
}
.post-item-article:after {
  display: none !important;
}
.post-item-article:before {
  max-height: 100%;
  opacity: 0.8;
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0)), color-stop(76%, black), to(black)) !important;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, black 76%, black 100%) !important;
}
.post-item-article .post-data {
  bottom: unset;
  left: unset;
  right: unset;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  height: 100%;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.post-item-article .post-data .post-title {
  padding-left: 15px;
}
.post-item-article .post-data .post-desc {
  max-height: 300px;
  padding: 0 15px 0 15px;
  opacity: 1;
  margin-bottom: 80px !important;
}
.post-item-article .post-data a {
  right: 0;
  opacity: 1;
  bottom: 10px;
}

.post-item-news {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  max-width: 2000px;
  width: 100%;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  padding-bottom: 20px;
  border-bottom: solid 1px #ccc;
}
@media (max-width: 1200px) {
  .post-item-news {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    margin-left: 40px;
    margin-right: 40px;
  }
}
.post-item-news img {
  max-width: 240px;
}
@media (max-width: 1200px) {
  .post-item-news img {
    max-width: 100%;
  }
}
.post-item-news .post-data {
  position: relative;
  bottom: auto;
}
@media (max-width: 1200px) {
  .post-item-news .post-data {
    overflow: visible;
  }
}
.post-item-news .post-data .post-title {
  text-transform: none;
  padding-left: 30px !important;
  margin-bottom: 20px;
}
@media (max-width: 1200px) {
  .post-item-news .post-data .post-title {
    margin-left: -200px;
    padding-left: 200px !important;
    margin-top: 20px;
  }
}
.post-item-news .post-data .post-date {
  display: block;
  padding-left: 30px !important;
  margin-bottom: 20px !important;
  font-weight: bold;
  color: #ccc;
}
.post-item-news .post-data .post-desc {
  padding-left: 30px !important;
  color: #45484f;
  max-height: 1000px;
  opacity: 1;
  margin-bottom: 20px !important;
  padding-right: 0 !important;
}
@media (max-width: 1200px) {
  .post-item-news .post-data .post-desc {
    padding-left: 0 !important;
  }
}
.post-item-news .post-data a {
  right: auto !important;
  position: relative;
  top: auto;
  bottom: auto;
  opacity: 1 !important;
  border-radius: 100px !important;
  margin: 0 !important;
  margin-left: 30px !important;
  padding-left: 20px !important;
  padding-right: 20px !important;
}
@media (max-width: 1200px) {
  .post-item-news .post-data a {
    margin-left: 0 !important;
    margin-bottom: 20px !important;
  }
}
.post-item-news:after, .post-item-news:before {
  display: none;
}
.post-item-news:hover:after {
  display: none;
}

#player {
  padding-bottom: 65%;
  position: relative;
  margin-bottom: 60px;
}
#player > div {
  width: 100%;
  height: 100%;
  margin-bottom: 40px;
  position: absolute;
}
#player > div video {
  width: 100%;
  height: 100%;
  -o-object-fit: fill;
  object-fit: fill;
}

.site-home .video-broadcast--wrapp #player {
  padding-bottom: 75%;
  position: relative;
  margin-bottom: 0;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.site-home .video-broadcast--wrapp #player > div {
  width: 100%;
  height: 100%;
  margin-bottom: 0;
  position: absolute;
}
.site-home .video-broadcast--wrapp #player > div video {
  width: 100%;
  height: 100%;
  -o-object-fit: fill;
  object-fit: fill;
}
.site-home .video-broadcast--wrapp #player .player-poster {
  background-size: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  background-position: center;
}
.site-home .video-broadcast--wrapp #player .player-poster .play-wrapper {
  opacity: 0;
}

body.ru-RU #player .player-poster {
  background: #fff url(img/video_ru.png);
  background-size: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  background-position: center;
}

body.de-DE #player .player-poster {
  background: #fff url(img/video_de.png);
  background-size: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  background-position: center;
}

#player .player-poster .play-wrapper {
  opacity: 0;
}

.level_selector ul li {
  padding: 0;
}
.level_selector ul li:before {
  display: none;
}

.owl-nav.disabled {
  display: none;
}

.owl-dots {
  display: none;
}

.main-date {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media (max-width: 767px) {
  .main-date {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}

.box-warning {
  border: 3px solid #fff;
  border-radius: 30px;
  padding: 15px;
  margin-left: 40px;
  max-width: 480px;
}
@media (max-width: 767px) {
  .box-warning {
    margin-left: 0;
    margin: 20px 0;
  }
}
.box-warning .title-box {
  text-transform: uppercase;
  font-size: 28px;
  border-bottom: 1px solid #fff;
  padding: 0px 0px 10px;
  margin-bottom: 20px;
}
@media (max-width: 767px) {
  .box-warning .title-box {
    font-size: 22px;
  }
}
.box-warning .content-box {
  font-size: 20px;
  font-family: "Proxima Nova R", Arial, sans-serif;
}
.box-warning .content-box .btn-toggle-news {
  outline: none;
  border: none;
  margin: 15px auto 0;
  display: block;
}

#content-news {
  max-width: 800px;
  padding: 30px;
}
#content-news p + p {
  margin-top: 15px;
}

.owl-slider {
  max-width: 1000px;
  margin: 0 auto;
}

.rent-contacts {
  padding-top: 0;
}

.rent-slider {
  padding: 40px 0;
}
@media (max-width: 1199px) {
  .rent-slider {
    padding: 10px 0 20px 0;
  }
}
.rent-slider .owl-dots {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-top: 10px;
}
.rent-slider .owl-dots .owl-dot {
  margin: 10px;
  width: 15px;
  height: 15px;
  background: #1a9dd8;
  border-radius: 15px;
  display: block;
  border: none;
  opacity: 0.4;
}
.rent-slider .owl-dots .owl-dot.active {
  opacity: 1;
}

.rent-stands {
  background: #e9f6ff;
  position: relative;
  padding: 62px 0 22px 0;
}
.rent-stands:before {
  content: "";
  display: block;
  top: 0;
  bottom: 0;
  right: 99%;
  width: 3000px;
  background: #e9f6ff;
  position: absolute;
  z-index: 1;
}
.rent-stands:after {
  content: "";
  display: block;
  top: 0;
  bottom: 0;
  left: 99%;
  width: 3000px;
  background: #e9f6ff;
  position: absolute;
  z-index: 2;
}
.rent-stands > .row {
  position: relative;
  z-index: 3;
}
.rent-stands .rent-stands--item {
  -webkit-box-shadow: 0px 1px 2px 0px rgba(0, 0, 0, 0.2);
          box-shadow: 0px 1px 2px 0px rgba(0, 0, 0, 0.2);
  border: solid 1px #e5e5e5;
  background: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  text-align: center;
  margin-bottom: 40px;
}
.rent-stands .rent-stands--item .rent-stands--preview img {
  width: 100%;
}
.rent-stands .rent-stands--item .rent-stands--name {
  color: #1a9dd8;
  font-size: 34px;
  font-family: "Proxima Nova B", Arial, sans-serif;
  padding: 20px 15px 10px 15px;
}
.rent-stands .rent-stands--item .rent-stands--desc {
  padding: 0 15px 20px 15px;
}
.rent-stands .rent-stands--item .rent-stands--button {
  padding: 0 15px 30px 15px;
}

.rent-banners {
  padding: 50px 0;
}

.rent-text-1 {
  padding: 0 0 60px 0;
  text-align: center;
  max-width: 800px;
  margin: auto;
}
.rent-text-1 h2 {
  color: #1a9dd8;
  font-size: 34px;
  line-height: 40px;
  font-family: "Proxima Nova B", Arial, sans-serif;
  margin-bottom: 20px !important;
  display: inline-block;
}
@media (max-width: 1199px) {
  .rent-text-1 h2 {
    font-size: 24px;
    line-height: 30px;
  }
}
@media (max-width: 1199px) {
  .rent-text-1 h2 br {
    display: none;
  }
}
.rent-text-1 p {
  font-size: 18px;
}

.rent-text-2 {
  padding: 0 0 30px 0;
  text-align: justify;
  max-width: 800px;
  margin: auto;
  text-align: justify;
}
.rent-text-2 h2 {
  color: #1a9dd8;
  font-size: 44px;
  line-height: 48px;
  font-family: "Proxima Nova B", Arial, sans-serif;
  margin-bottom: 20px !important;
  display: block;
  text-align: center;
}
@media (max-width: 1199px) {
  .rent-text-2 h2 br {
    display: none;
  }
}
@media (max-width: 1199px) {
  .rent-text-2 h2 {
    font-size: 24px;
    line-height: 30px;
  }
}
.rent-text-2 p {
  font-size: 18px;
}
.rent-text-2 p b,
.rent-text-2 p strong {
  font-family: "Proxima Nova B", Arial, sans-serif;
}
.rent-text-2 ul {
  margin-bottom: 25px;
  padding-left: 50px;
}
.rent-text-2 ul li {
  font-size: 18px;
  position: relative;
}
.rent-text-2 ul li:before {
  content: "\f00c";
  display: inline-block;
  font: normal normal normal 14px/1 FontAwesome;
  font-size: inherit;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  position: absolute;
  left: -50px;
  color: #1a9dd8;
  font-size: 37px;
  top: -9px;
}
.rent-text-2 ul li + li {
  margin-top: 25px;
}

.rent-jarmarka-plan .section-title-main {
  font-size: 79px;
  line-height: 1;
  margin-top: 13px;
  text-transform: uppercase;
  text-align: center;
}
@media (max-width: 1200px) {
  .rent-jarmarka-plan .section-title-main {
    font-size: 40px;
  }
}
@media (max-width: 600px) {
  .rent-jarmarka-plan .section-title-main {
    font-size: 30px;
  }
}
@media (max-width: 500px) {
  .rent-jarmarka-plan .section-title-main {
    font-size: 24px;
  }
}

.rent-form {
  padding-top: 0;
}
.rent-form img {
  max-width: 100%;
  height: auto;
  vertical-align: bottom;
}
.rent-form .rent-form--action-button {
  text-align: center;
}
.rent-form .rent-form--action-button button {
  border: none;
}
.rent-form .rent-form--form {
  scroll-margin-top: 100px;
}
@media screen and (max-width: 768px) {
  .rent-form .j-form-entrepreneur .splithalf.greylinebg div:first-child label {
    top: auto !important;
    position: relative !important;
  }
}
@media screen and (max-width: 768px) {
  .rent-form .j-form-entrepreneur .splithalf.greylinebg div:first-child .j-form-fileld-lg-title {
    margin-bottom: 20px !important;
  }
}
@media screen and (max-width: 768px) {
  .rent-form .j-form-entrepreneur .splithalf.greylinebg {
    padding-top: 30px !important;
  }
}

.main-wrapper {
  overflow-x: hidden;
  padding: 62px 0 0 0;
}

.share-btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 5px;
}
@media screen and (max-width: 768px) {
  .share-btn {
    margin-top: 10px;
  }
}
.share-btn a {
  width: 24px;
  height: 24px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  border-radius: 4px;
  color: #fff;
  text-decoration: none;
  cursor: pointer;
}
@media screen and (max-width: 768px) {
  .share-btn a {
    width: 34px;
    height: 34px;
    font-size: 20px;
  }
}
.share-btn a:hover {
  opacity: 0.8;
}
.share-btn a.btn-vk {
  background: #45668e;
}
.share-btn a.btn-facebook {
  background: #1877f2;
}
.share-btn a.btn-twitter {
  background: #1da1f2;
}
.share-btn a.btn-telegram {
  background: #0088cc;
}
.share-btn a.btn-skype {
  background: #00aff0;
}
.share-btn a.btn-whatsapp {
  background: #25d366;
}
.share-btn a.btn-ok {
  background: #ed812b;
}
.share-btn a.btn-mail {
  background: #b7b7b7;
}

.winners-table tr td {
  vertical-align: middle;
}
@media screen and (max-width: 768px) {
  .winners-table tr td {
    width: 100%;
    text-align: center;
    border: none;
  }
}
.winners-table tr td h1, .winners-table tr td h2, .winners-table tr td h3, .winners-table tr td h4, .winners-table tr td h5, .winners-table tr td h6 {
  margin: 0;
}
.winners-table tr td:nth-child(3) h3 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 10px;
}
.winners-table tr td:nth-child(3) h3 img {
  margin-left: 10px;
}
@media screen and (max-width: 768px) {
  .winners-table tr td:nth-child(1) {
    background: #ffaf88;
  }
}
@media screen and (max-width: 768px) {
  .winners-table tr {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    border: 1px solid #d0d8db;
    margin-bottom: 10px;
  }
}
@media screen and (max-width: 768px) {
  .winners-table tr:first-child {
    display: none;
  }
}