/*-------------------------------------------------------------------------------------------------------------------------------*/
/*This is main CSS file that contains custom style rules used in this template*/
/*-------------------------------------------------------------------------------------------------------------------------------*/
/* Template Name: omni*/
/* Version: 1.0 Initial Release*/
/* Build Date: 25-02-2015*/
/* Author: Unbranded*/
/* Website:
/* Copyright: (C) 2015 */
/*-------------------------------------------------------------------------------------------------------------------------------*/
/*--------------------------------------------------------*/
/* TABLE OF CONTENTS: */
/*--------------------------------------------------------*/
/* 01 - FONTS */
/* 02 - LOADER */
/* 03 - RESET STYLES */
/* 04 - GLOBAL SETTINGS */
/* 05 - HEADER */
/* 06 - FOOTER */
/* 07 - SIMPLE BLOCK STRUCTURE */
/* 08 - BLOCK "TYPE 1" */
/* 09 - BLOCK "TYPE 2" */
/* 10 - BLOCK "TYPE 3" */
/* 11 - BLOCK "TYPE 4" */
/* 12 - BLOCK "TYPE 5" */
/* 13 - BLOCK "TYPE 6" */
/* 14 - BLOCK "TYPE 7" */
/* 15 - BLOCK "TYPE 8" (index style 2) */
/* 16 - BLOCK "TYPE 9" (index style 2) */
/* 17 - BLOCK "TYPE 10" (index style 2) */
/* 18 - BLOCK "TYPE 11" (index style 2) */
/* 19 - BLOCK "TYPE 12" (index style 2) */
/* 20 - BLOCK "TYPE 14" (index style 2) */
/* 21 - BLOCK "TYPE 15" (index style 2) */
/* 22 - BLOCK "TYPE 16" (index style 2) */
/* 23 - BLOCK "TYPE 17" (index style 2) */
/* 24 - BLOCK "TYPE 18" (index style 2) */
/* 25 - BLOCK "TYPE 19" (index style 2) */
/* 26 - BLOG */
/* 27 - POPUP "VIDEO" */
/* 28 - POPUP "GALLERY" */
/* 29 - TYPOGRAPHY */
/* 30 - THEME CONFIG */
/* 31 - WELCOME PAGE */
/* 32 - TEASER */
/* 33 - PAGE "404" */
/*-------------------------------------------------------------------------------------------------------------------------------*/
/*-------------------------------------------------------------------------------------------------------------------------------*/
/* 01 - FONTS */
/*-------------------------------------------------------------------------------------------------------------------------------*/
@font-face {
  font-family: 'black';
  src: url("../fonts/proximanova-black-webfont.eot");
  src: url("../fonts/proximanova-black-webfont.eot?#iefix") format("embedded-opentype"), url("../fonts/proximanova-black-webfont.woff2") format("woff2"), url("../fonts/proximanova-black-webfont.woff") format("woff"), url("../fonts/proximanova-black-webfont.ttf") format("truetype"), url("../fonts/proximanova-black-webfont.svg#proxima_novablack") format("svg");
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: 'bold';
  src: url("../fonts/proximanova-extrabold-webfont.eot");
  src: url("../fonts/proximanova-extrabold-webfont.eot?#iefix") format("embedded-opentype"), url("../fonts/proximanova-extrabold-webfont.woff2") format("woff2"), url("../fonts/proximanova-extrabold-webfont.woff") format("woff"), url("../fonts/proximanova-extrabold-webfont.ttf") format("truetype"), url("../fonts/proximanova-extrabold-webfont.svg#proxima_novaextrabold") format("svg");
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: 'regular';
  src: url("../fonts/proximanova-regular-webfont.eot");
  src: url("../fonts/proximanova-regular-webfont.eot?#iefix") format("embedded-opentype"), url("../fonts/proximanova-regular-webfont.woff2") format("woff2"), url("../fonts/proximanova-regular-webfont.woff") format("woff"), url("../fonts/proximanova-regular-webfont.ttf") format("truetype"), url("../fonts/proximanova-regular-webfont.svg#proxima_nova_rgregular") format("svg");
  font-weight: normal;
  font-style: normal;
}

/*-------------------------------------------------------------------------------------------------------------------------------*/
/* 02 - LOADER */
/*-------------------------------------------------------------------------------------------------------------------------------*/
/* line 91, ../sass/style.scss */
#loader-wrapper {
  position: fixed;
  left: 0px;
  top: 0px;
  width: 100%;
  height: 100%;
  z-index: 11;
  overflow: hidden;
  background: #7f7f7f;
}

/* line 92, ../sass/style.scss */
#loader-wrapper.act {
  background: none;
}

/* line 93, ../sass/style.scss */
#loader-wrapper img {
  position: absolute;
  left: 50%;
  top: 50%;
  margin-left: -35px;
  margin-top: -8px;
  z-index: 1;
}

/* line 94, ../sass/style.scss */
#loader-wrapper:after {
  position: absolute;
  left: 50%;
  top: 50%;
  margin-left: -90px;
  margin-top: -90px;
  content: "";
  width: 180px;
  height: 180px;
  border-radius: 40px;
  border: 3px solid #fff;
  -webkit-animation: magic-mouse 3s infinite ease;
  animation: magic-mouse 3s infinite ease;
}

/* line 95, ../sass/style.scss */
#loader-wrapper span {
  position: absolute;
  left: 50%;
  top: 50%;
  margin-left: -140px;
  margin-top: -140px;
  content: "";
  width: 280px;
  height: 280px;
  border-radius: 40px;
  border: 3px solid #fcc012;
  -webkit-animation: magic-mouse1 3s infinite ease;
  animation: magic-mouse1 3s infinite ease;
}

@keyframes magic-mouse {
  /* line 97, ../sass/style.scss */
  0% {
    transform: scale(1) rotate(0deg);
  }

  /* line 98, ../sass/style.scss */
  50% {
    transform: scale(0.5) rotate(90deg);
  }

  /* line 99, ../sass/style.scss */
  100% {
    transform: scale(1) rotate(0deg);
  }
}

@-webkit-keyframes magic-mouse {
  /* line 102, ../sass/style.scss */
  0% {
    -webkit-transform: scale(1) rotate(0deg);
  }

  /* line 103, ../sass/style.scss */
  50% {
    -webkit-transform: scale(0.5) rotate(90deg);
  }

  /* line 104, ../sass/style.scss */
  100% {
    -webkit-transform: scale(1) rotate(0deg);
  }
}

@keyframes magic-mouse1 {
  /* line 107, ../sass/style.scss */
  0% {
    transform: scale(1) rotate(0deg);
  }

  /* line 108, ../sass/style.scss */
  50% {
    transform: scale(0.5) rotate(-90deg);
  }

  /* line 109, ../sass/style.scss */
  100% {
    transform: scale(1) rotate(0deg);
  }
}

@-webkit-keyframes magic-mouse1 {
  /* line 112, ../sass/style.scss */
  0% {
    -webkit-transform: scale(1) rotate(0deg);
  }

  /* line 113, ../sass/style.scss */
  50% {
    -webkit-transform: scale(0.5) rotate(-90deg);
  }

  /* line 114, ../sass/style.scss */
  100% {
    -webkit-transform: scale(1) rotate(0deg);
  }
}

/*-------------------------------------------------------------------------------------------------------------------------------*/
/* 03 - RESET STYLES */
/*-------------------------------------------------------------------------------------------------------------------------------*/
/* line 121, ../sass/style.scss */
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%;
  font: inherit;
  vertical-align: baseline;
}

/* HTML5 display-role reset for older browsers */
/* line 123, ../sass/style.scss */
article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section {
  display: block;
}

/* line 124, ../sass/style.scss */
blockquote, q {
  quotes: none;
}

/* line 125, ../sass/style.scss */
blockquote:before, blockquote:after, q:before, q:after {
  content: '';
  content: none;
}

/* line 126, ../sass/style.scss */
body * {
  -webkit-text-size-adjust: none;
}

/* line 127, ../sass/style.scss */
.clear {
  clear: both;
  overflow: hidden;
  height: 0px;
  font-size: 0px;
  display: block;
}

/* line 128, ../sass/style.scss */
input:focus, select:focus, textarea:focus, button:focus {
  outline: none;
}

/* line 129, ../sass/style.scss */
input, textarea, select {
  font-family: 'regular', sans-serif;
  font-weight: 400;
  -webkit-appearance: none;
  border-radius: 0;
}

/* line 130, ../sass/style.scss */
a, a:link, a:visited, a:active, a:hover {
  cursor: pointer;
  text-decoration: none;
  outline: none;
}

/* line 131, ../sass/style.scss */
body {
  font-family: 'regular', sans-serif;
  font-weight: normal;
  font-size: 14px;
  line-height: 1.4;
  color: #777777;
}

/*-------------------------------------------------------------------------------------------------------------------------------*/
/* 04 - GLOBAL SETTINGS */
/*-------------------------------------------------------------------------------------------------------------------------------*/
/*table*/
/* line 137, ../sass/style.scss */
.table-view {
  height: 100%;
  width: 100%;
  display: table;
}

#cookies table{
  border:1px solid #ddd;
  margin-top: 20px;

}

#cookies table td{
  border:1px solid #ddd;
  padding:10px;
}

/* line 138, ../sass/style.scss */
.row-view {
  display: table-row;
}

.fancybox-wrap{
      max-width: 1200px;
      margin-left:auto;
       margin-left:auto;
}

.fancybox-inner{
      max-width: 1200px;
}

/* line 139, ../sass/style.scss */
.cell-view {
  display: table-cell;
  vertical-align: middle;
  height: inherit;
}

/*buttons*/
/* line 141, ../sass/style.scss */
.button {
  position: relative;
  font-size: 14px;
  font-family: 'bold', sans-serif;
  color: #fff;
  text-transform: uppercase;
  text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.1);
  background: #d13237;
  padding: 15px 25px;
  display: inline-block;
  box-shadow: 5px 5px 10px rgba(0, 0, 0, 0.1);
  line-height: 28px;
}

/* line 142, ../sass/style.scss */
.button.size-2 {
  line-height: 20px;
  padding-left: 20px;
  padding-right: 20px;
}

/* line 143, ../sass/style.scss */
.button.size-3 {
  line-height: 20px;
  padding: 10px 12px;
  font-size: 10px;
}

/* line 144, ../sass/style.scss */
.button.type-1 {
  background: #fff;
  color: #d13237;
  text-shadow: none;
  box-shadow: none;
}

/* line 145, ../sass/style.scss */
.button:after {
  position: absolute;
  left: 0px;
  top: 0px;
  width: 5px;
  height: 100%;
  background: rgba(0, 0, 0, 0.15);
  content: "";
}

/* line 146, ../sass/style.scss */
.button.type-1:after {
  border: 2px #d13237 solid;
  position: absolute;
  content: "";
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: none;
}

/* line 147, ../sass/style.scss */
.button span {
  position: relative;
  float: left;
  z-index: 1;
}

/* line 148, ../sass/style.scss */
.button:hover {
  color: #fff;
}

/* line 149, ../sass/style.scss */
.button.type-1:hover {
  background: #d13237;
}

/* line 150, ../sass/style.scss */
.button:hover:after {
  width: 100%;
  background: rgba(0, 0, 0, 0.02);
}

/* line 151, ../sass/style.scss */
.button.black {
  background: #222222!important;
  color: #d13237;
}

/* line 152, ../sass/style.scss */
.button.black:hover {
  color: #fff;
}

/* line 153, ../sass/style.scss */
.button.black:after {
  background: #000;
}

/* line 154, ../sass/style.scss */
.play-wrap {
  position: relative;
  float: left;
  width: 76px;
  height: 76px;
}

/* line 155, ../sass/style.scss */
.play {
  position: absolute;
  left: 50%;
  top: 50%;
  margin-left: -35px;
  margin-top: -35px;
  width: 70px;
  height: 70px;
  border: 3px solid #fff;
  border-radius: 100px;
  z-index: 1;
}

/* line 156, ../sass/style.scss */
.play:after {
  position: absolute;
  left: 50%;
  top: 50%;
  margin-left: -5px;
  margin-top: -10px;
  content: "";
  width: 0;
  height: 0;
  border-top: 10px solid transparent;
  border-left: 15px solid #d13237;
  border-bottom: 10px solid transparent;
}

/* line 157, ../sass/style.scss */
.play:hover {
  background: #d13237;
  border: 3px solid #d13237;
  transform: rotate(-90deg) scale(0.9);
  -o-transform: rotate(-90deg) scale(0.9);
  -moz-transform: rotate(-90deg) scale(0.9);
  -ms-transform: rotate(-90deg) scale(0.9);
  -webkit-transform: rotate(-90deg) scale(0.9);
}

/* line 158, ../sass/style.scss */
.play:hover:after {
  border-left: 15px solid #fff;
}

/*nopadding class*/
/* line 160, ../sass/style.scss */
.nopadding {
  padding-left: 0;
  padding-right: 0;
  margin-left: 0;
  margin-right: 0;
}

/*content wrapper*/
/* line 162, ../sass/style.scss */
#content-wrapper {
  padding-top: 0px;
  position: relative;
  overflow: hidden;
  width: 100%;
  margin-top: 7%;
}

/*typography*/
/* line 164, ../sass/style.scss */
h1, h2, h3, h4, h5, h6 {
  margin: 0px !important;
}

/* line 165, ../sass/style.scss */
.titel-left {
  position: relative;
}

/* line 166, ../sass/style.scss */
.titel-left span {
  color: #d13237;
}

/* line 167, ../sass/style.scss */
.titel-left:after {
  position: absolute;
  left: -25px;
  top: 0px;
  content: "";
  width: 5px;
  height: 100%;
  background: #d13237;
}

/* line 168, ../sass/style.scss */
.titel-top {
  position: relative;
}

/* line 169, ../sass/style.scss */
.titel-top:after {
  position: absolute;
  left: 50%;
  top: -25px;
  content: "";
  width: 30px;
  margin-left: -15px;
  height: 5px;
  background: #d13237;
}

/* line 170, ../sass/style.scss */
.h1, .h2, .h4 {
  font-family: 'black', sans-serif;
  text-transform: uppercase;
  color: #222222;
}

/* line 171, ../sass/style.scss */
.h1 {
  font-size: 56px;
  margin-bottom: 40px !important;
}

/* line 172, ../sass/style.scss */
.h2 {
  font-size: 46px;
  line-height: 46px;
  margin-bottom: 40px !important;
}

/* line 173, ../sass/style.scss */
.h3 {
  font-size: 30px;
  font-family: 'regular', sans-serif;
  font-weight: normal;
  text-transform: uppercase;
  color: #222222;
}

/* line 174, ../sass/style.scss */
.h4 {
  font-size: 20px;
  margin-bottom: 20px !important;
}

/* line 175, ../sass/style.scss */
.h5 {
  font-size: 16px;
  font-family: 'bold', sans-serif;
  text-transform: uppercase;
  color: #222222;
  margin-bottom: 20px !important;
}

/* line 176, ../sass/style.scss */
.small {
  font-size: 14px;
  line-height: 24px;
}

/* line 177, ../sass/style.scss */
.normall {
  font-size: 16px;
  line-height: 28px;
}

/* line 178, ../sass/style.scss */
.big {
  font-size: 18px;
  line-height: 30px;
}

/* line 179, ../sass/style.scss */
article {
  position: relative;
  float: left;
  width: 100%;
}

/* line 180, ../sass/style.scss */
article p {
  color: #777777;
  padding-bottom: 40px;
}

/* line 181, ../sass/style.scss */
ul li {
  color: #777777;
  position: relative;
  padding-left: 12px;
  padding-top: 3px;
  padding-bottom: 3px;
  list-style: none;
}

/* line 183, ../sass/style.scss */
.white {
  color: #fff;
}

/* line 184, ../sass/style.scss */
.black {
  color: #222222;
}

/*background*/
/* line 186, ../sass/style.scss */
.bg {
  position: fixed;
  left: 0px;
  top: 0px;
  width: 100%;
  height: 100%;
  overflow: hidden;
  background-position: 50% 50%;
  background-repeat: no-repeat;
  background-position: 50% 0px;
  -webkit-background-size: cover;
  -moz-background-size: cover;
  -o-background-size: cover;
  background-size: cover;
  position: fixed;
  background-attachment: scroll;
}

/* line 187, ../sass/style.scss */
.bg img {
  position: absolute;
}

/* line 188, ../sass/style.scss */
.bg video {
  position: absolute;
}

/* line 189, ../sass/style.scss */
.bg-span {
  position: absolute;
  left: 0px;
  top: 0px;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.55);
}

/* line 190, ../sass/style.scss */
.bg-span.light {
  background: rgba(0, 0, 0, 0.35);
}

/* line 191, ../sass/style.scss */
.clip {
  clip: rect(auto, auto, auto, auto);
  height: 100%;
  position: absolute;
  width: 100%;
  left: 0px;
  top: 0px;
}

/*slider*/
/* line 193, ../sass/style.scss */
.slider {
  position: relative;
  float: left;
  width: 100%;
}

/* line 194, ../sass/style.scss */
.swiper-pagination-switch {
  width: 9px;
  height: 9px;
  background: #ebebeb;
  cursor: pointer;
  margin-top: 5px;
  margin-bottom: 5px;
}

/* line 195, ../sass/style.scss */
.swiper-pagination-switch:before {
  display: none;
}

/* line 196, ../sass/style.scss */
.swiper-active-switch {
  background: #d13237;
  height: 23px;
}

/*form styles*/
/* line 198, ../sass/style.scss */
form {
  position: relative;
  float: left;
  width: 100%;
}

/* line 199, ../sass/style.scss */
input[type="text"], input[type="email"], select, textarea {
  background: #f8f8f8;
  border: 0px;
  height: 43px;
  line-height: 43px;
  padding: 0px 15px;
  color: #777777;
  font-size: 14px;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  width: 45%;
  margin: 14px 2%;
  border: 1px transparent solid;
}

/* line 200, ../sass/style.scss */
textarea {
  width: 94%;
  height: 125px;
}

/* line 201, ../sass/style.scss */
::-webkit-input-placeholder {
  color: #777777;
}

/* line 202, ../sass/style.scss */
:-moz-placeholder {
  color: #777777;
  opacity: 1;
}

/* line 203, ../sass/style.scss */
::-moz-placeholder {
  color: #777777;
  opacity: 1;
}

/* line 204, ../sass/style.scss */
:-ms-input-placeholder {
  color: #777777;
}

/* line 205, ../sass/style.scss */
.submit-wraper {
  position: relative;
  float: left;
  width: 100%;
  text-align: center;
  margin-top: 32px;
}

/* line 206, ../sass/style.scss */
form input[type="submit"] {
  position: absolute;
  left: 0px;
  top: 0px;
  opacity: 0;
  width: 100%;
  height: 100%;
  border: 0px;
  z-index: 2;
}

/* line 207, ../sass/style.scss */
.error-class {
  border-color: #ff0036!important;
}

/*form popup*/
/* line 209, ../sass/style.scss */
.form-popup {
  position: fixed;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  z-index: 12;
  display: none;
}

/* line 210, ../sass/style.scss */
.form-popup-close-layer {
  background: rgba(255, 255, 255, 0.5);
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
}

/* line 211, ../sass/style.scss */
.form-popup-content {
  max-width: 500px;
  width: 90%;
  position: absolute;
  transform: translateX(-50%) translateY(-50%);
  -moz-transform: translateX(-50%) translateY(-50%);
  -webkit-transform: translateX(-50%) translateY(-50%);
  -ms-transform: translateX(-50%) translateY(-50%);
  padding: 25px;
  left: 50%;
  top: 50%;
  background: rgba(255, 255, 255, 0.8);
  border: 10px #d13237 solid;
}

/* line 212, ../sass/style.scss */
.form-popup .text {
  color: #777;
  font-family: "regular";
  font-size: 16px;
  line-height: 28px;
  text-align: center;
}

/*default swiper arrows*/
/* line 215, ../sass/style.scss */
.default-arrow {
  width: 52px;
  height: 52px;
  position: absolute;
  top: 50%;
  margin-top: -26px;
  background: #d13237;
  cursor: pointer;
}

/* line 216, ../sass/style.scss */
.default-arrow:hover {
  background: #f2f2f2;
}

/* line 217, ../sass/style.scss */
.default-arrow span {
  text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.1);
  line-height: 52px;
  display: block;
  text-align: center;
  color: #fff;
  font-size: 14px;
}

/* line 218, ../sass/style.scss */
.default-arrow:hover span {
  color: #d13237;
}

/* line 219, ../sass/style.scss */
.default-arrow.left {
  -webkit-box-shadow: 3px 4px 10px rgba(0, 0, 0, 0.1), inset -3px 0 #daa508;
  box-shadow: 3px 4px 10px rgba(0, 0, 0, 0.1), inset -3px 0 #daa508;
  left: 60px;
}

/* line 220, ../sass/style.scss */
.default-arrow.right {
  -webkit-box-shadow: -4px 3px 10px rgba(0, 0, 0, 0.1), inset 3px 0 #daa508;
  box-shadow: -4px 3px 10px rgba(0, 0, 0, 0.1), inset 3px 0 #daa508;
  right: 60px;
}

/*map*/
/* line 222, ../sass/style.scss */
#map-canvas {
  height: 300px;
  background: #f2f2f2;
}

/* line 223, ../sass/style.scss */
.block #map-canvas {
  margin-bottom: 60px;
}

@media (max-width: 991px) {
  /* line 225, ../sass/style.scss */
  .mob-hide {
    display: none;
  }

  /* line 226, ../sass/style.scss */
  .bg {
    position: absolute;
  }

  /* line 227, ../sass/style.scss */
  .default-arrow {
    display: none;
  }
}
@media (max-width: 767px) {
  /* line 230, ../sass/style.scss */
  .h1, .h2 {
    font-size: 40px;
    margin-bottom: 20px !important;
  }

  /* line 231, ../sass/style.scss */
  .button {
    width: 100%;
    margin-left: 0px !important;
    margin-top: 0px !important;
  }

  /* line 232, ../sass/style.scss */
  .button span {
    width: 100%;
    text-align: center;
  }

  /* line 233, ../sass/style.scss */
  input[type="text"], input[type="email"], select {
    width: 94%;
  }
}
/*video*/
/* line 237, ../sass/style.scss */
.block.type-1 * {
  -webkit-bakface-visibility: hidden;
}

/* line 238, ../sass/style.scss */
video.bgvid {
  position: fixed;
  right: 0;
  bottom: 0;
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  background: url(../assets/intro_for_ipad.jpg) no-repeat;
  background-size: cover;
}

/*-------------------------------------------------------------------------------------------------------------------------------*/
/* 05 - HEADER */
/*-------------------------------------------------------------------------------------------------------------------------------*/
/* line 243, ../sass/style.scss */
header {
  position: fixed;
  left: 0px;
  top: 0px;
  width: 100%;
  z-index: 11;
  -webkit-backface-visibility: hidden;
  background: #FFF;
  height: 100px;
}

/* line 244, ../sass/style.scss */
#logo {
  position: relative;
  float: left;
  margin-left: 50px;
  margin-top: 22px;
}

/* line 245, ../sass/style.scss */
#logo img {
  position: relative;
  float: left;
}

/* line 246, ../sass/style.scss */
#logo img.act {
  position: absolute;
  left: 0px;
  top: 0px;
  opacity: 0;
}

/* line 247, ../sass/style.scss */
nav {
  position: relative;
  float: right;
  padding-right: 45px;
  height: 100%;
}

/* line 250, ../sass/style.scss */
nav a {
  position: relative;
  float: left;
  color: #717171;
  font-size: 18px;
  text-transform: none;
  line-height: 1.2;
  padding: 0px 10px;
  margin: 0px;
  height: 100%;
  text-align: center;
  padding-top: 35px;
}
/* line 256, ../sass/style.scss */
nav a.doble {
  padding-top: 25px;
}
@media (max-width: 1199px) {
  /* line 256, ../sass/style.scss */
  nav a.doble {
    padding-top: 0;
  }
}
/* line 263, ../sass/style.scss */
nav a.buscador {
  color: #fd6519;
  font-style: italic;
}
/* line 268, ../sass/style.scss */
nav a span {
  display: block;
}
@media (max-width: 1199px) {
  /* line 268, ../sass/style.scss */
  nav a span {
    display: inline;
  }
}
@media (max-width: 1199px) {
  /* line 250, ../sass/style.scss */
  nav a {
    text-transform: uppercase;
    height: 39px;
    line-height: 39px;
    text-align: left;
  }
}

/* line 284, ../sass/style.scss */
nav a:hover {
  background: #d13237;
  color: #fff;
}

/* line 285, ../sass/style.scss */
nav a.act {
  background: #d13237;
  color: #fff;
}

/* line 286, ../sass/style.scss */
nav ul {
  position: relative;
  float: left;
  height: 100%;
}

/* line 290, ../sass/style.scss */
nav ul li {
  background: none;
  position: relative;
  float: left;
  height: 100%;
  display: block;
  margin: 0;
  padding: 0;
}
@media (max-width: 1199px) {
  /* line 290, ../sass/style.scss */
  nav ul li {
    height: auto;
  }
}

/* line 302, ../sass/style.scss */
nav ul li:before, nav ul li:after {
  display: none;
}

/* line 303, ../sass/style.scss */
nav .submeny a:after {
  position: absolute;
  left: 50%;
  bottom: -2px;
  margin-left: -7px;
  width: 0px;
  height: 0px;
  border-left: 7px solid transparent;
  border-right: 7px solid transparent;
  border-top: 7px solid #d13237;
  content: "";
}

/* line 304, ../sass/style.scss */
nav .submeny .submeny-top:before {
  position: absolute;
  left: 0px;
  bottom: -11px;
  width: 100%;
  content: "";
  height: 11px;
}

/* line 305, ../sass/style.scss */
nav .submeny:hover a:after, nav .submeny a.act:after {
  bottom: -7px;
}

/* line 306, ../sass/style.scss */
nav ul ul {
  position: absolute;
  left: 0px;
  top: 84px;
  width: 100%;
  box-shadow: 0px 5px 5px rgba(0, 0, 0, 0.15);
}

/* line 307, ../sass/style.scss */
nav ul ul li {
  position: relative;
  float: left;
  margin-top: 0px;
  padding-top: 0px;
  padding-bottom: 0px;
  width: 100%;
}

/* line 309, ../sass/style.scss */
nav ul ul li a {
  height: 100px;
  font-size: 0px;
  line-height: 0px;
  padding: 0px;
  margin: 0px;
  color: #717171;
  background: #fff;
  text-align: center;
}

/* line 320, ../sass/style.scss */
nav ul ul li a:after {
  display: none;
}

/* line 321, ../sass/style.scss */
nav .submeny:hover ul li a {
  height: 39px;
  font-size: 13px;
  line-height: 39px;
}

/* line 322, ../sass/style.scss */
nav .submeny:hover .submeny-top {
  background: #d13237;
  color: #fff;
}

/* line 323, ../sass/style.scss */
header.act {
  background: #fff;
  box-shadow: 0px 1px 5px rgba(0, 0, 0, 0.15);
  height: 100px;
}

/* line 324, ../sass/style.scss */
header.act #logo {
  background: #fff;
  margin-top: 22px;
}

/* line 325, ../sass/style.scss */
header.act #logo img {
  opacity: 0;
}
@media (max-width: 1199px) {
  /* line 325, ../sass/style.scss */
  header.act #logo img {
    display: none;
  }
}

/* line 333, ../sass/style.scss */
header.act #logo img.act {
  opacity: 1;
  display: block;
}

/* line 337, ../sass/style.scss */
header.act nav a {
  color: #777777;
  margin-top: 0;
  margin-bottom: 0;
}
/* line 339, ../sass/style.scss */
header.act nav a.buscador {
  color: #fd6519;
  font-style: italic;
}

/* line 344, ../sass/style.scss */
header.act nav a:hover {
  background: #d13237;
  color: #fff;
}

/* line 345, ../sass/style.scss */
header.act nav a.act {
  background: #d13237;
  color: #fff;
}

/* line 346, ../sass/style.scss */
header.act nav ul ul {
  top: 69px;
}

/* line 347, ../sass/style.scss */
header.act nav ul ul li a {
  margin: 0px;
}

/* line 348, ../sass/style.scss */
.mob-icon {
  display: none;
}

@media (min-width: 1200px) {
  /* line 351, ../sass/style.scss */
  nav ul ul {
    width: auto;
    left: 50%;
    margin-left: 6px;
    transform: translateX(-50%);
    -moz-transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
  }

  /* line 352, ../sass/style.scss */
  nav ul li:last-child ul {
    margin-left: -25px;
  }

  /* line 353, ../sass/style.scss */
  nav ul ul li {
    padding: 0;
    width: auto;
    float: none;
  }

  /* line 354, ../sass/style.scss */
  nav ul ul li a {
    width: auto;
    float: none;
    display: block;
    left: 0;
    width: 185px;
    padding-left: 10px;
    padding-right: 10px;
  }
}
/*header type-2 (attached to bottom)*/
@media (min-width: 1200px) {
  /* line 359, ../sass/style.scss */
  body {
    overflow-x: hidden;
  }

  /* line 360, ../sass/style.scss */
  header.bottom-fixed {
    top: 100vh;
    position: absolute;
    margin-top: -75px;
  }

  /* line 361, ../sass/style.scss */
  header.bottom-fixed ul ul {
    top: auto!important;
    bottom: 69px;
  }

  /* line 362, ../sass/style.scss */
  header.bottom-fixed nav .submeny a:after {
    top: -7px;
    transform: rotate(-180deg);
    -moz-transform: rotate(-180deg);
    -webkit-transform: rotate(-180deg);
    -ms-transform: rotate(-180deg);
  }

  /* line 363, ../sass/style.scss */
  header.default-act {
    -moz-transition: none;
    -o-transition: none;
    -webkit-transition: none;
    transition: none;
    -ms-transition: none;
  }
}
@media (max-width: 1199px) {
  /* line 367, ../sass/style.scss */
  header #logo img {
    opacity: 0;
  }
}
@media (max-width: 1199px) {
  /* line 373, ../sass/style.scss */
  #logo {
    margin-left: 20px;
    margin-top: 15px;
  }

  /* line 374, ../sass/style.scss */
  .mob-icon {
    display: block;
    position: relative;
    float: right;
    margin-right: 20px;
    height: 40px;
    cursor: pointer;
  }

  /* line 375, ../sass/style.scss */
  .mob-icon span {
    position: relative;
    float: left;
    width: 40px;
    height: 4px;
    background: #d13237;
    margin-top: 34px;
  }

  /* line 376, ../sass/style.scss */
  .mob-icon span:before {
    position: absolute;
    left: 0px;
    top: -8px;
    content: "";
    width: 40px;
    height: 4px;
    background: #d13237;
  }

  /* line 377, ../sass/style.scss */
  .mob-icon span:after {
    position: absolute;
    left: 0px;
    top: 8px;
    content: "";
    width: 40px;
    height: 4px;
    background: #d13237;
  }

  /* line 378, ../sass/style.scss */
  .mob-icon.act span {
    width: 30px;
  }

  /* line 379, ../sass/style.scss */
  .mob-icon.act span:before {
    width: 30px;
    top: -2px;
  }

  /* line 380, ../sass/style.scss */
  .mob-icon.act span:after {
    width: 30px;
    top: 2px;
  }

  /* line 381, ../sass/style.scss */
  nav {
    padding-right: 0px;
    float: none;
    position: absolute;
    top: 65px;
    left: -100%;
    height: 100%;
    width: 100%;
    background: #000;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    -moz-overflow-scrolling: touch;
    -o-overflow-scrolling: touch;
    -ms-overflow-scrolling: touch;
  }

  /* line 382, ../sass/style.scss */
  nav a {
    width: 100%;
    padding: 0px;
    margin: 0px !important;
    text-indent: 20px;
    font-size: 18px;
    color: #fff !important;
  }

  /* line 383, ../sass/style.scss */
  nav ul li:last-child {
    margin-bottom: 65px !important;
  }

  /* line 384, ../sass/style.scss */
  nav ul li {
    width: 100%;
    padding: 0px;
  }

  /* line 385, ../sass/style.scss */
  nav ul ul {
    position: relative;
    float: left;
    top: 0px;
  }

  /* line 386, ../sass/style.scss */
  nav ul ul li a {
    text-align: left;
    width: 100%;
    left: 0px;
    text-indent: 30px;
    font-size: 16px !important;
    color: #777 !important;
    opacity: 0;
  }

  /* line 387, ../sass/style.scss */
  nav ul ul li a:hover {
    background: #fff;
  }

  /* line 388, ../sass/style.scss */
  nav ul ul li:last-child {
    margin-bottom: 0px !important;
  }

  /* line 389, ../sass/style.scss */
  nav .submeny a:after {
    bottom: 13px;
  }

  /* line 390, ../sass/style.scss */
  nav .submeny:hover ul li a {
    opacity: 1;
  }

  /* line 391, ../sass/style.scss */
  header.act nav ul ul {
    top: 0px;
  }

  /* line 392, ../sass/style.scss */
  header.act nav ul ul li {
    margin-bottom: 0px !important;
  }

  /* line 393, ../sass/style.scss */
  header {
    background: #fff;
    height: 65px;
    box-shadow: 0px 1px 5px rgba(0, 0, 0, 0.15);
  }

  /* line 397, ../sass/style.scss */
  header.act {
    background: #fff;
    height: 65px;
    box-shadow: 0px 1px 5px rgba(0, 0, 0, 0.15);
  }

  /* line 402, ../sass/style.scss */
  header #logo img {
    opacity: 0;
  }

  /* line 403, ../sass/style.scss */
  header #logo img.act {
    opacity: 1;
    height: 30px;
  }

  /* line 406, ../sass/style.scss */
  header.act-mob {
    height: 100%;
  }

  /* line 407, ../sass/style.scss */
  header.act-mob nav {
    left: 0px;
  }
}
@media (max-width: 480px) {
  /* line 419, ../sass/style.scss */
  #logo {
    /*margin-left: 10px;*/
    margin-top: 21px;
  }
}
@media (max-width: 480px) {
  /* line 430, ../sass/style.scss */
  header #logo {
    display: block;
    width: 160px;
  }
  /* line 435, ../sass/style.scss */
  header #logo img.act {
    height: 25px;
  }
}
/*-------------------------------------------------------------------------------------------------------------------------------*/
/* 06 - FOOTER */
/*-------------------------------------------------------------------------------------------------------------------------------*/
/* line 445, ../sass/style.scss */
footer {
  background: #1b1b1b;
  position: relative;
}

/* line 446, ../sass/style.scss */
.subscribe {
  position: relative;
  width: 100%;
  padding: 50px 0px;
  text-align: center;
  font-size: 0px;
  border-bottom: 1px solid #000;
}

/* line 447, ../sass/style.scss */
.subscribe-text {
  position: relative;
  display: inline-block;
  color: #b4b4b4;
  font-size: 16px;
  text-transform: uppercase;
  font-family: 'bold', sans-serif;
  padding-right: 30px;
  vertical-align: middle;
  height: 45px;
  line-height: 45px;
}

/* line 448, ../sass/style.scss */
.subscribe form {
  float: none;
  display: inline-block;
  width: auto;
  vertical-align: middle;
}

/* line 449, ../sass/style.scss */
.subscribe form input[type="email"] {
  width: 560px;
  background: #131313;
  height: 45px;
  line-height: 45px;
  padding: 0px 25px;
  margin: 0px;
  position: relative;
  float: left;
  color: #dddddd;
}

/* line 450, ../sass/style.scss */
.subscribe form ::-webkit-input-placeholder {
  color: #dddddd;
}

/* line 451, ../sass/style.scss */
.subscribe form :-moz-placeholder {
  color: #dddddd;
  opacity: 1;
}

/* line 452, ../sass/style.scss */
.subscribe form ::-moz-placeholder {
  color: #dddddd;
  opacity: 1;
}

/* line 453, ../sass/style.scss */
.subscribe form :-ms-input-placeholder {
  color: #dddddd;
}

/* line 454, ../sass/style.scss */
.subscribe form input[type="submit"] {
  position: relative;
  float: left;
  margin-left: -50px;
  top: 8px;
  background: url(../img/theme-1/icon9.png) no-repeat;
  width: 30px;
  height: 30px;
  z-index: 1;
  opacity: 1;
  cursor: pointer;
}

/* line 455, ../sass/style.scss */
.footer-bottom {
  position: relative;
  width: 100%;
  padding: 50px 0px;
  text-align: center;
  font-size: 0px;
}

/* line 456, ../sass/style.scss */
.footer-bottom .footer-linck {
  position: relative;
  display: inline-block;
  vertical-align: middle;
}

/* line 457, ../sass/style.scss */
.footer-bottom .footer-linck a {
  position: relative;
  float: left;
  margin: 0px 14px;
  color: #fff;
  font-size: 13px;
  text-transform: uppercase;
}

/* line 458, ../sass/style.scss */
.footer-bottom .footer-linck a:hover {
  color: #d13237;
}

/* line 459, ../sass/style.scss */
.footer-bottom .media-icon {
  position: relative;
  display: inline-block;
  padding-left: 20px;
  vertical-align: middle;
}

/* line 460, ../sass/style.scss */
.footer-bottom .media-icon a {
  margin: 0px 8px;
  width: 35px;
  height: 35px;
  position: relative;
  float: left;
}

/* line 461, ../sass/style.scss */
.footer-bottom .media-icon a img {
  position: relative;
  float: left;
  left: 50%;
  top: 50%;
  margin-top: -8px;
  margin-left: -8px;
}

/* line 462, ../sass/style.scss */
.footer-bottom .media-icon a:after {
  position: absolute;
  left: 0px;
  top: 0px;
  background: rgba(255, 255, 255, 0);
  content: "";
  width: 100%;
  height: 100%;
  transform: rotate(180deg);
  -moz-transform: rotate(180deg);
  -webkit-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
}

/* line 463, ../sass/style.scss */
.footer-bottom .media-icon a:hover:after {
  background: rgba(255, 255, 255, 0.1);
  transform: rotate(0deg);
  -moz-transform: rotate(0deg);
  -webkit-transform: rotate(0deg);
  -ms-transform: rotate(0deg);
}

/* line 464, ../sass/style.scss */
.copy {
  position: relative;
  width: 100%;
  text-align: center;
  padding-top: 40px;
}

/* line 465, ../sass/style.scss */
.copy span {
  color: #b4b4b4;
  font-size: 14px;
}

@media (max-width: 767px) {
  /* line 471, ../sass/style.scss */
  .subscribe form input[type="email"] {
    width: 320px;
  }

  /* line 472, ../sass/style.scss */
  .footer-bottom .footer-linck a {
    width: 50%;
    margin: 15px 0px;
  }

  /* line 473, ../sass/style.scss */
  .footer-bottom .media-icon {
    margin-top: 40px;
    padding-left: 0px;
  }
}
/*-------------------------------------------------------------------------------------------------------------------------------*/
/* 07 - SIMPLE BLOCK STRUCTURE */
/*-------------------------------------------------------------------------------------------------------------------------------*/
/* line 479, ../sass/style.scss */
.blocks-container {
  position: relative;
  width: 100%;
}

/* line 480, ../sass/style.scss */
.block {
  position: relative;
  width: 100%;
}

/*-------------------------------------------------------------------------------------------------------------------------------*/
/* 08 - BLOCK "TYPE 1" */
/*-------------------------------------------------------------------------------------------------------------------------------*/
/* line 486, ../sass/style.scss */
.block.type-1 {
  height: 100vh;
  min-height: 600px;
}

/* line 487, ../sass/style.scss */
.block.type-1.type-1-1 {
  height: auto;
  min-height: 0px;
}

/* line 488, ../sass/style.scss */
.block.type-1.type-1-1 .clip {
  height: 78%;
}

/* line 490, ../sass/style.scss */
.numbers {
  position: absolute;
  left: 0px;
  bottom: 0px;
  width: 100%;
  z-index: 10;
}
/* line 498, ../sass/style.scss */
.numbers .thumbs-icon {
  width: 76px;
  height: 86px;
  background-position: center bottom;
  background-repeat: no-repeat;
  margin: 0 auto 10px auto;
}
/* line 505, ../sass/style.scss */
.numbers .thumbs-image {
  position: absolute;
  left: 0px;
  bottom: 0px;
  width: 100%;
  height: 180px;
  padding-top: 30px;
}
/* line 515, ../sass/style.scss */
.numbers .num {
  display: block;
  width: 100%;
  color: #d13237;
  font-size: 20px;
  font-family: 'black', sans-serif;
  padding: 25px 0px;
  position: relative;
}
/* line 525, ../sass/style.scss */
.numbers .num-text {
  display: block;
  width: 100%;
  color: #FFF;
  font-size: 14px;
  text-transform: uppercase;
  padding-bottom: 40px;
  position: relative;
  margin-top: 10px;
}
/* line 538, ../sass/style.scss */
.numbers .col-md-3 {
  text-align: center;
  cursor: pointer;
  height: 180px;
  border-right: 1px solid #FFF;
}
@media (max-width: 990px) {
  /* line 538, ../sass/style.scss */
  .numbers .col-md-3 {
    border-bottom: 1px solid #FFF;
  }
}
/* line 551, ../sass/style.scss */
.numbers .col-md-3.mini_1 .thumbs-icon {
  background-image: url("../images/ico1.png");
}
/* line 557, ../sass/style.scss */
.numbers .col-md-3.mini_2 .thumbs-icon {
  background-image: url("../images/ico2.png");
}
/* line 562, ../sass/style.scss */
.numbers .col-md-3.mini_3 .thumbs-icon {
  background-image: url("../images/ico3.png");
}
/* line 567, ../sass/style.scss */
.numbers .col-md-3.mini_4 .thumbs-icon {
  background-image: url("../images/ico4.png");
}
/* line 575, ../sass/style.scss */
.numbers .col-md-3:hover .thumbs-icon {
  background-position: center top;
}
@media (min-width: 991px) {
  /* line 580, ../sass/style.scss */
  .numbers .col-md-3:hover.mini_1 {
    background: url("../images/mini1.jpg") no-repeat center center;
    background-size: cover;
  }
  /* line 584, ../sass/style.scss */
  .numbers .col-md-3:hover.mini_2 {
    background: url("../images/mini2.jpg") no-repeat center center;
    background-size: cover;
  }
  /* line 588, ../sass/style.scss */
  .numbers .col-md-3:hover.mini_3 {
    background: url("../images/mini3.jpg") no-repeat center center;
    background-size: cover;
  }
  /* line 592, ../sass/style.scss */
  .numbers .col-md-3:hover.mini_4 {
    background: url("../images/mini4.jpg") no-repeat center center;
    background-size: cover;
  }
}
@media (max-width: 991px) {
  /* line 600, ../sass/style.scss */
  .numbers .col-md-3 .thumbs-icon {
    background-position: center top;
  }
}
@media (min-width: 991px) {
  /* line 614, ../sass/style.scss */
  .numbers .col-md-3:hover:before {
    bottom: 0px;
  }
  /* line 615, ../sass/style.scss */
  .numbers .col-md-3:hover .num-text {
    color: #555;
  }
  /* line 616, ../sass/style.scss */
  .numbers .col-md-3:hover .thumbs-image {
    width: 100%;
    left: 0px;
    bottom: 180px;
    opacity: 1;
    z-index: 1;
    background: #FFF;
  }
}
@media (max-width: 991px) {
  /* line 620, ../sass/style.scss */
  .numbers .num-text {
    padding-bottom: 20px;
  }
  /* line 621, ../sass/style.scss */
  .numbers .col-md-3 {
    padding-top: 40px;
    padding-bottom: 17px;
  }
  /* line 622, ../sass/style.scss */
  .numbers .col-md-3:before {
    display: none;
  }
}

/* line 637, ../sass/style.scss */
.type-1-text {
  height: 100%;
  position: relative;
}

/* line 638, ../sass/style.scss */
.type-1-text h1, .type-1-text h2 {
  color: #fff;
}

/* line 639, ../sass/style.scss */
.type-1-text p {
  color: #dddddd;
}

/* line 640, ../sass/style.scss */
.type-1-text .row {
  height: 100%;
}

/* line 641, ../sass/style.scss */
.type-1-text .type-1-center {
  text-align: center;
  height: 100%;
  display: table;
  vertical-align: middle;
}

/* line 642, ../sass/style.scss */
.type-1-text .button {
  margin: 0px 15px;
  margin-bottom: 60px;
}

/* line 643, ../sass/style.scss */
.type-1-text article {
  margin-top: 145px;
}

/* line 644, ../sass/style.scss */
.type-1-text article.table {
  display: table-cell;
  vertical-align: middle;
  float: none;
  margin-top: 0px;
}

/* line 645, ../sass/style.scss */
.marvel-device-wrap {
  position: relative;
  display: inline-block;
  text-align: center;
}

/* line 646, ../sass/style.scss */
.marvel-device.iphone6plus {
  height: 853px;
  transform: scale(0.65);
  -moz-transform: scale(0.65);
  -o-transform: scale(0.65);
  -ms-transform: scale(0.65);
  -webkit-transform: scale(0.65);
  position: relative;
  float: left;
  display: block;
  margin-top: -125px;
}

/* line 647, ../sass/style.scss */
.marvel-device-wrap .iphone-image-wrap {
  position: absolute;
  left: 50%;
  top: 95px;
  margin-left: -118px;
  height: 412px;
  overflow: hidden;
}

/* line 648, ../sass/style.scss */
.marvel-device-wrap .iphone-image-wrap-move {
  position: relative;
  float: left;
  -webkit-animation: magic-move 7s infinite;
  animation: magic-move 7s infinite;
}

/* line 649, ../sass/style.scss */
.marvel-device-wrap .iphone-image-wrap img {
  position: relative;
  float: left;
}

/* line 650, ../sass/style.scss */
#content-wrapper .parallax-bg-text * {
  color: #fff;
}

/* line 651, ../sass/style.scss */
#content-wrapper .parallax-bg-text p, #content-wrapper .parallax-bg-text ul li, #content-wrapper .parallax-bg-text .page-tagline .description {
  color: rgba(255, 255, 255, 0.8);
}

@media (max-width: 991px) {
  /* line 654, ../sass/style.scss */
  .block.type-1 {
    height: auto;
    min-height: 0px;
  }

  /* line 655, ../sass/style.scss */
  .type-1-text .button {
    margin-bottom: 10px;
  }

  /* line 656, ../sass/style.scss */
  .numbers {
    position: relative;
    background: #9b9b9b;
  }

  /* line 660, ../sass/style.scss */
  .type-1-text {
    padding-top: 94px;
  }

  /* line 661, ../sass/style.scss */
  .block.type-1.type-1-1 .type-1-text {
    padding-top: 0px;
  }

  /* line 662, ../sass/style.scss */
  .block.type-1.type-1-1 .type-1-text article {
    margin-top: 65px;
  }
}
@media (max-width: 767px) {
  /* line 666, ../sass/style.scss */
  .type-1-text p {
    padding-bottom: 20px;
  }

  /* line 667, ../sass/style.scss */
  .marvel-device-wrap {
    display: none;
  }

  /* line 668, ../sass/style.scss */
  .block.type-1.type-1-1 .clip {
    height: 100%;
  }

  /* line 669, ../sass/style.scss */
  .block.type-1.type-1-1 .type-1-text article {
    margin-top: 65px;
    margin-bottom: 20px;
  }

  /* line 670, ../sass/style.scss */
  .type-1-text .type-1-center {
    overflow: hidden;
  }
}
@keyframes magic-move {
  /* line 674, ../sass/style.scss */
  0% {
    margin-top: 0px;
  }

  /* line 675, ../sass/style.scss */
  14% {
    margin-top: 0px;
  }

  /* line 676, ../sass/style.scss */
  28% {
    margin-top: -412px;
  }

  /* line 677, ../sass/style.scss */
  42% {
    margin-top: -412px;
  }

  /* line 678, ../sass/style.scss */
  56% {
    margin-top: -824px;
  }

  /* line 679, ../sass/style.scss */
  70% {
    margin-top: -824px;
  }

  /* line 680, ../sass/style.scss */
  84% {
    margin-top: 0px;
  }

  /* line 681, ../sass/style.scss */
  100% {
    margin-top: 0px;
  }
}

@-webkit-keyframes magic-move {
  /* line 684, ../sass/style.scss */
  0% {
    margin-top: 0px;
  }

  /* line 685, ../sass/style.scss */
  14% {
    margin-top: 0px;
  }

  /* line 686, ../sass/style.scss */
  28% {
    margin-top: -412px;
  }

  /* line 687, ../sass/style.scss */
  42% {
    margin-top: -412px;
  }

  /* line 688, ../sass/style.scss */
  56% {
    margin-top: -824px;
  }

  /* line 689, ../sass/style.scss */
  70% {
    margin-top: -824px;
  }

  /* line 690, ../sass/style.scss */
  84% {
    margin-top: 0px;
  }

  /* line 691, ../sass/style.scss */
  100% {
    margin-top: 0px;
  }
}

/*-------------------------------------------------------------------------------------------------------------------------------*/
/* 09 - BLOCK "TYPE 2" */
/*-------------------------------------------------------------------------------------------------------------------------------*/
/* line 697, ../sass/style.scss */
.block.type-2 {
  overflow: hidden;
}

/* line 698, ../sass/style.scss */
.block.type-2 .image-block {
  position: absolute;
  height: 100%;
  right: 0;
  top: 0;
  width: 50%;
  background-size: cover;
  background-position: center top;
  z-index: 1;
}

/* line 699, ../sass/style.scss */
.block.type-2 .image-block:first-child {
  left: 0;
  right: auto;
}

/* line 700, ../sass/style.scss */
.block.type-2 .col-md-6 {
  overflow: hidden;
  height: 700px;
}

/* line 701, ../sass/style.scss */
.block.type-2 .col-md-6 img {
  position: relative;
  float: left;
  width: 100%;
  width: 100%;
  margin: 30px auto;
  float: none;
  width: auto;
  display: block;
}

/* line 713, ../sass/style.scss */
.block.type-2 .col-md-4 {
  height: 100%;
  display: table-cell;
  vertical-align: middle;
}

/* line 714, ../sass/style.scss */
.block.type-2 article {
  display: table-cell;
  vertical-align: middle;
  float: none;
  height: 700px;
}

/* line 715, ../sass/style.scss */
.block.type-2 .col-md-4.col-md-pull-6 {
  min-height: 900px;
}

/* line 716, ../sass/style.scss */
.block.type-2 .col-md-6.col-md-push-6 {
  min-height: 900px;
  z-index: 1;
}

/*.block.type-2 .col-md-4:first-child article:nth-child(1){height: auto; padding-top: 120px; padding-bottom: 73px;}*/
/* line 718, ../sass/style.scss */
.block.type-2 .col-md-4 article.normall {
  height: auto;
  padding-top: 120px;
  padding-bottom: 73px;
}

/* line 719, ../sass/style.scss */
.block.type-2 article.normall:last-child {
  height: 700px;
}

/* line 720, ../sass/style.scss */
.block.type-2 .image-block .bg {
  width: 50%;
  left: 50%;
}

/* line 721, ../sass/style.scss */
.block.type-2 .image-block:first-child .bg {
  width: 50%;
  left: 0;
}

/* line 722, ../sass/style.scss */
.mouse-icon {
  width: 22px;
  height: 38px;
  position: absolute;
  left: 50%;
  margin-left: -11px;
  bottom: 30px;
  background: url(../img/mouse.png);
  cursor: pointer;
}

/* line 723, ../sass/style.scss */
.mouse-icon:before {
  width: 4px;
  height: 12px;
  position: absolute;
  left: 50%;
  margin-left: -2px;
  top: 8px;
  content: "";
  border-radius: 2px;
  -webkit-border-radius: 2px;
  background: #d13237;
}

@media (max-width: 991px) {
  /* line 725, ../sass/style.scss */
  .block.type-2 article {
    height: auto;
    padding: 30px 0px;
    padding-top: 35px;
  }

  /* line 726, ../sass/style.scss */
  .block.type-2 .col-md-6 {
    height: 150px;
    display: none;
  }

  /*.block.type-2 .col-md-4:first-child article:nth-child(1){height: auto; padding-bottom: 0px; padding-top: 35px;}*/
  /* line 728, ../sass/style.scss */
  .block.type-2 .col-md-4 article.normall, .block.type-2 article.normall:last-child {
    height: auto;
    padding-bottom: 0px;
    padding-top: 35px;
  }

  /* line 729, ../sass/style.scss */
  .block.type-2 .col-md-4.col-md-pull-6 {
    min-height: 0px;
  }

  /* line 730, ../sass/style.scss */
  .mouse-icon {
    display: none;
  }
}
/*-------------------------------------------------------------------------------------------------------------------------------*/
/* 10 - BLOCK "TYPE 3" */
/*-------------------------------------------------------------------------------------------------------------------------------*/
/* line 739, ../sass/style.scss */
.block.type-3 {
  padding-top: 60px;
}

/* line 740, ../sass/style.scss */
.block.type-2 .block.type-3 {
  padding-bottom: 15px;
}

/* line 741, ../sass/style.scss */
.block.type-3:before {
  position: absolute;
  left: -1000px;
  bottom: 0px;
  width: 2000px;
  background: #f2f2f2;
  height: 1px;
  content: "";
}

/* line 742, ../sass/style.scss */
.block.type-3:after {
  position: absolute;
  left: -1000px;
  top: 0px;
  width: 2000px;
  background: #f2f2f2;
  height: 1px;
  content: "";
}

/* line 743, ../sass/style.scss */
.block.type-3 img {
  float: left;
  width: 30px;
  width: 30px;
}

/* line 744, ../sass/style.scss */
.block.type-3 article {
  float: none;
  position: static;
  height: auto;
  padding-left: 20px;
  padding-top: 6px;
}

/* line 745, ../sass/style.scss */
.block.type-3 .col-md-12 {
  margin: 10px 0px;
}

/* line 746, ../sass/style.scss */
.block.type-3.type-3-1 {
  padding-top: 0px;
  margin-top: -107px;
  padding-bottom: 75px;
  float: left;
  width: 100%;
  z-index: 1;
  background: #fff;
}

/* line 747, ../sass/style.scss */
.block.type-3.type-3-1 img, .new-block.type-3.type-3-1 img, .new-block .little-img-text-entry img {
  width: 50px;
  height: 50px;
  margin-top: 45px;
  float: left;
}

/* line 748, ../sass/style.scss */
.icons-at-the-top {
  text-align: center;
}

/* line 749, ../sass/style.scss */
#content-wrapper .icons-at-the-top img {
  float: none;
  margin-top: 0;
  margin-bottom: 25px;
}

/* line 750, ../sass/style.scss */
.block.type-3.type-3-1 article, .new-block.type-3.type-3-1 article, .new-block .little-img-text-entry article {
  padding-left: 100px;
}

/* line 751, ../sass/style.scss */
.new-block.type-3.type-3-1 .icons-at-the-top article {
  padding-left: 0;
}

/* line 752, ../sass/style.scss */
.block.type-3.type-3-1 .col-md-4 {
  margin-top: 17px;
}

/* line 753, ../sass/style.scss */
.block.type-3.type-3-1:after, .block.type-3.type-3-1:before {
  display: none;
}

@media (max-width: 991px) {
  /* line 755, ../sass/style.scss */
  .block.type-3 {
    padding-top: 30px;
  }

  /* line 756, ../sass/style.scss */
  .block.type-2 .block.type-3 {
    padding-bottom: 0px;
  }

  /* line 757, ../sass/style.scss */
  .block.type-3 .col-md-12:nth-child(3) {
    margin-bottom: 5px;
  }

  /* line 758, ../sass/style.scss */
  .block.type-3 .col-md-12:nth-child(3) article p {
    padding-bottom: 0px;
  }

  /* line 759, ../sass/style.scss */
  .block.type-3.type-3-1 {
    padding-bottom: 0px;
  }
}
@media (max-width: 767px) {
  /* line 762, ../sass/style.scss */
  .block.type-3.type-3-1 {
    margin-top: 40px;
  }
}
/*-------------------------------------------------------------------------------------------------------------------------------*/
/* 11 - BLOCK "TYPE 4" */
/*-------------------------------------------------------------------------------------------------------------------------------*/
/* line 768, ../sass/style.scss */
.block.type-4 {
  padding: 120px 0px;
  padding-top: 120px;
  padding-bottom: 73px;
  background: #fbfbfb;
}

/* line 769, ../sass/style.scss */
.block.type-4.type-4-1 {
  padding-top: 120px;
  padding-bottom: 90px;
}

/* line 770, ../sass/style.scss */
.block.type-4 .h2 {
  margin-bottom: 20px !important;
}

/* line 771, ../sass/style.scss */
.block.type-4.type-4-1 .h2 {
  margin-bottom: 40px !important;
}

/* line 772, ../sass/style.scss */
.block.type-4 .h3 {
  margin-bottom: 20px !important;
  text-transform: none;
}

/* line 773, ../sass/style.scss */
.block.type-4 .col-md-3 article {
  margin: 20px 0px;
}

/* line 774, ../sass/style.scss */
.block.type-4.type-4-1 .col-md-3 article:nth-child(1) {
  margin-bottom: 40px;
}

@media (max-width: 991px) {
  /* line 776, ../sass/style.scss */
  .block.type-4 {
    padding: 40px 0px;
    padding-bottom: 0px;
  }

  /* line 777, ../sass/style.scss */
  .block.type-4.type-4-1 {
    padding-top: 36px;
    padding-bottom: 22px;
  }
}
@media (max-width: 767px) {
  /* line 780, ../sass/style.scss */
  .col-md-3.col-md-offset-1.col-sm-12 .small.col-md-12.col-sm-6 {
    padding: 0px;
  }
}
/*-------------------------------------------------------------------------------------------------------------------------------*/
/* 12 - BLOCK "TYPE 5" */
/*-------------------------------------------------------------------------------------------------------------------------------*/
/* line 786, ../sass/style.scss */
.block.type-5 {
  padding-top: 120px;
  padding-bottom: 78px;
}

/* line 787, ../sass/style.scss */
.block.type-5:after {
  position: absolute;
  left: 0px;
  top: 0px;
  width: 100%;
  background: #f2f2f2;
  height: 1px;
  content: "";
}

/* line 788, ../sass/style.scss */
.block.type-5 .img-wrap-slider {
  position: relative;
  float: left;
  overflow: hidden;
  height: 700px;
}

/* line 789, ../sass/style.scss */
.block.type-5 .img-wrap {
  position: relative;
  float: left;
  width: 100%;
  height: 700px;
  text-align: center;
}

/* line 790, ../sass/style.scss */
.block.type-5 .img-wrap-move {
  position: relative;
  float: left;
  width: 100%;
}

/* line 791, ../sass/style.scss */
.block.type-5 .img-wrap img {
  display: inline-block;
  max-height: 90%;
  width: auto;
}

/* line 792, ../sass/style.scss */
.block.type-5 .pagination {
  width: 10px;
  position: absolute;
  left: 0px;
  top: 0px;
  z-index: 1;
  margin-top: -2px;
}

/* line 793, ../sass/style.scss */
.block.type-5 .swiper-container {
  padding-left: 32px;
  margin-left: -32px;
}

/* line 794, ../sass/style.scss */
.block.type-5 .swiper-container:after {
  position: absolute;
  left: 0px;
  top: 0px;
  background: #fff;
  content: "";
  width: 32px;
  height: 100%;
}

/* line 795, ../sass/style.scss */
.block.type-5 .register-login {
  padding-top: 70px;
  margin-top: 20px;
}

/* line 796, ../sass/style.scss */
.block.type-5 .register-login:after {
  position: absolute;
  left: 0px;
  top: 0px;
  width: 100%;
  height: 1px;
  content: "";
  background: #f2f2f2;
}

/* line 797, ../sass/style.scss */
.block.type-5 .register-login:before {
  position: absolute;
  left: -32px;
  top: 0px;
  width: 100%;
  height: 1px;
  content: "";
  background: #f2f2f2;
}

/* line 798, ../sass/style.scss */
.block.type-5 h5 {
  text-transform: none;
}

/* line 799, ../sass/style.scss */
.triple-images-container {
  position: relative;
  text-align: center;
  max-width: 570px;
}

/* line 801, ../sass/style.scss */
.triple-images-container img:nth-child(1) {
  position: relative;
  width: 50%;
  height: auto;
  display: inline-block;
  vertical-align: bottom;
  z-index: 2;
}

/* line 802, ../sass/style.scss */
.triple-images-container img:nth-child(2) {
  position: absolute;
  left: 0;
  width: 40%;
  top: 10%;
}

/* line 803, ../sass/style.scss */
.triple-images-container img:nth-child(3) {
  position: absolute;
  right: 0;
  width: 33%;
  top: 18%;
}

@media (max-width: 1170px) {
  /* line 805, ../sass/style.scss */
  .block.type-5 .register-login {
    padding-top: 38px;
  }

  /* line 806, ../sass/style.scss */
  .block.type-5 .register-login article {
    width: 90%;
  }

  /* line 807, ../sass/style.scss */
  .block.type-5 {
    padding: 40px 0px;
  }

  /* line 808, ../sass/style.scss */
  .block.type-5 .col-md-5 p {
    padding-bottom: 13px;
  }

  /* line 809, ../sass/style.scss */
  .block.type-5 .register-login .swiper-wrapper {
    padding-bottom: 20px;
  }
}
@media (max-width: 991px) {
  /* line 812, ../sass/style.scss */
  .block.type-5 .img-wrap-slider {
    display: none;
  }

  /* line 813, ../sass/style.scss */
  .block.type-5 .pagination {
    width: 100%;
    top: auto;
    bottom: 0px;
  }

  /* line 814, ../sass/style.scss */
  .block.type-5 .pagination .swiper-active-switch {
    width: 20px;
    height: 9px;
  }
}
/*-------------------------------------------------------------------------------------------------------------------------------*/
/* 13 - BLOCK "TYPE 6" */
/*-------------------------------------------------------------------------------------------------------------------------------*/
/* line 823, ../sass/style.scss */
.block.type-6 {
  background: #d13237;
  padding-top: 120px;
  padding-bottom: 112px;
}

/* line 824, ../sass/style.scss */
.block.type-6 h2 {
  color: #fff;
}

/* line 825, ../sass/style.scss */
.block.type-6 p {
  color: rgba(255, 255, 255, 0.8);
}

/* line 826, ../sass/style.scss */
.block.type-6 .titel-left:after {
  background: #fff;
}

/*.block.type-6 .touru-thumbs{position: relative; float: left; width:33.33%;}
.block.type-6 .touru-thumbs img{width: 90%; position: relative; float: left;  margin: 5px 5%; box-shadow: 3px 3px 15px rgba(0,0,0,0.30);}*/
/* line 829, ../sass/style.scss */
.block.type-6 .pagination {
  margin-top: 40px;
}

/* line 830, ../sass/style.scss */
.block.type-6 .swiper-pagination-switch {
  background: rgba(255, 255, 255, 0.3);
}

/* line 831, ../sass/style.scss */
.block.type-6 .swiper-active-switch {
  height: 9px;
  width: 23px;
  background: #fff;
}

@media (max-width: 991px) {
  /* line 833, ../sass/style.scss */
  .touru {
    margin-top: 40px;
  }

  /* line 834, ../sass/style.scss */
  .block.type-6 {
    padding-top: 40px;
    padding-bottom: 38px;
  }
}
/*-------------------------------------------------------------------------------------------------------------------------------*/
/* 14 - BLOCK "TYPE 7" */
/*-------------------------------------------------------------------------------------------------------------------------------*/
/* line 846, ../sass/style.scss */
.block.type-7 {
  padding-top: 120px;
  padding-bottom: 120px;
  background: #fff;
  -webkit-backface-visibility: hidden;
}

/* line 847, ../sass/style.scss */
.block.type-7 h2 {
  text-align: center;
}

/* line 848, ../sass/style.scss */
.block.type-7 p {
  text-align: center;
}

/* line 849, ../sass/style.scss */
.block.type-7 form {
  margin-top: 8px;
}

/* line 850, ../sass/style.scss */
.block.type-7 .contact-thumbs {
  position: relative;
  float: left;
  width: 100%;
  text-align: center;
  margin-top: 24px;
}

/* line 851, ../sass/style.scss */
.block.type-7 .contact-thumbs img {
  padding-bottom: 15px;
}

/* line 852, ../sass/style.scss */
.block.type-7 .contact-thumbs a {
  color: #777777;
  font-weight: bold;
}

/* line 853, ../sass/style.scss */
.block.type-7 .page-tagline *:last-child {
  margin-bottom: 0;
}

@media (max-width: 991px) {
  /* line 858, ../sass/style.scss */
  .block.type-7 {
    padding-top: 50px;
    padding-bottom: 50px;
  }
}
/*-------------------------------------------------------------------------------------------------------------------------------*/
/* 15 - BLOCK "TYPE 8" (index style 2) */
/*-------------------------------------------------------------------------------------------------------------------------------*/
/* line 867, ../sass/style.scss */
.new-block {
  padding: 120px 0;
  border-bottom: 1px #f2f2f2 solid;
  color: #fff;
  background: #fff;
  margin-top: 0;
  position: relative;
  -webkit-backface-visibility: hidden;
}

/* line 868, ../sass/style.scss */
.new-block.color-background, .new-block.parallax-bg-text {
  border: none;
}

/* line 869, ../sass/style.scss */
.new-block .new-block {
  padding: 0;
  border: none;
}

/* line 870, ../sass/style.scss */
.new-block article *:last-child {
  padding-bottom: 0!important;
}

/* line 871, ../sass/style.scss */
.new-block *:last-child {
  margin-bottom: 0!important;
}

/* line 872, ../sass/style.scss */
.new-block article {
  float: none;
  width: auto;
}

/* line 873, ../sass/style.scss */
.new-block.type-3 {
  background: #fbfbfb;
}

/* line 874, ../sass/style.scss */
.new-block.color-background {
  background: #fcc012;
  color: #fcc012;
}

/* line 875, ../sass/style.scss */
.new-block.color-background article *, .new-block.color-background .titel-left {
  color: #fff;
}

/* line 876, ../sass/style.scss */
.new-block.color-background ul li, .new-block.color-background p, .new-block.color-background .page-tagline .description {
  color: rgba(255, 255, 255, 0.8);
}

/* line 877, ../sass/style.scss */
.new-block.color-background ul li {
  font-size: 14px;
}

/**/
/* line 879, ../sass/style.scss */
.new-block .pagination {
  width: 9px;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  z-index: 1;
  margin-top: 0;
}

/* line 880, ../sass/style.scss */
.new-block .pagination .swiper-pagination-switch {
  margin: 5px 0;
}

/* line 881, ../sass/style.scss */
.new-block.color-background .swiper-pagination-switch, .new-block.parallax-bg-text .swiper-pagination-switch {
  background: rgba(255, 255, 255, 0.3);
}

/* line 882, ../sass/style.scss */
.new-block.color-background .swiper-active-switch, .new-block.parallax-bg-text .swiper-active-switch {
  background: #fff;
}

/* line 883, ../sass/style.scss */
.new-block.color-background .titel-left:after {
  background: #fff;
}

/* line 884, ../sass/style.scss */
.new-block .swiper-container {
  margin-left: -32px;
}

/* line 885, ../sass/style.scss */
.new-block .swiper-container .paddings-container {
  padding-left: 52px;
}

/* line 886, ../sass/style.scss */
.new-block .swiper-container:before {
  position: absolute;
  width: 12px;
  height: 100%;
  content: "";
  left: 0;
  top: 0;
  background: red;
  z-index: 1;
  background: currentColor;
}

/* line 887, ../sass/style.scss */
.new-block .swiper-container.horizontal-pagination:before {
  display: none;
}

/* line 888, ../sass/style.scss */
.new-block .swiper-container.horizontal-pagination {
  margin-left: 0;
}

/* line 889, ../sass/style.scss */
.new-block .swiper-container.horizontal-pagination .pagination {
  width: auto;
  position: relative;
  margin-top: 26px;
  transform: translateY(0%);
  -moz-transform: translateY(0%);
  -webkit-transform: translateY(0%);
  -ms-transform: translateY(0%);
}

/* line 890, ../sass/style.scss */
.new-block .swiper-container.horizontal-pagination .pagination .swiper-pagination-switch {
  margin: 0 10px;
  text-align: center;
}

/* line 891, ../sass/style.scss */
.new-block .swiper-container.horizontal-pagination .pagination .swiper-active-switch {
  width: 23px;
  height: 9px;
}

/* line 892, ../sass/style.scss */
.new-block .swiper-container.horizontal-pagination .paddings-container {
  padding-left: 0;
}

/**/
/* line 894, ../sass/style.scss */
.new-block.type-8 .normall {
  margin-bottom: 60px;
}

/* line 895, ../sass/style.scss */
.new-block.type-8 .tabs-title {
  font-size: 20px;
  color: #222;
  line-height: 40px;
  margin-bottom: 15px!important;
  text-transform: uppercase;
  font-family: 'bold';
}

/* line 896, ../sass/style.scss */
.icon-text-description-entry {
  margin-bottom: 60px;
}

/* line 897, ../sass/style.scss */
.icon-text-description-entry img {
  float: left;
  width: 30px;
  height: auto;
  margin-top: -4px;
}

/* line 898, ../sass/style.scss */
.icon-text-description-entry article {
  margin-left: 50px;
}

/* line 899, ../sass/style.scss */
.phones-container {
  text-align: center;
}

/* line 900, ../sass/style.scss */
.phones-container img {
  display: inline-block;
  max-width: 100%;
  height: auto;
  vertical-align: bottom;
}

/**/
/* line 902, ../sass/style.scss */
.new-block .little-img-text-entry {
  padding-bottom: 57px;
}

/* line 903, ../sass/style.scss */
.new-block .little-img-text-entry:nth-last-child(1), .new-block .little-img-text-entry:nth-last-child(2), .new-block .little-img-text-entry:nth-last-child(3) {
  padding-bottom: 0;
}

/* line 904, ../sass/style.scss */
.little-img-text-entry:nth-child(3n+1) {
  clear: both;
}

/**/
/* line 906, ../sass/style.scss */
.page-tagline {
  text-align: center;
  margin-bottom: 60px;
  padding-top: 25px;
}

/* line 907, ../sass/style.scss */
.page-tagline .title {
  font-family: 'black';
  font-size: 46px;
  color: #222;
  line-height: 40px;
  text-transform: uppercase;
  padding-bottom: 40px;
  position: relative;
}

/* line 908, ../sass/style.scss */
.page-tagline .title:last-child {
  padding-bottom: 0;
}

/* line 909, ../sass/style.scss */
.page-tagline .title:before {
  width: 30px;
  height: 5px;
  background: #d13237;
  position: absolute;
  left: 50%;
  margin-left: -15px;
  top: -25px;
  content: "";
}

/* line 910, ../sass/style.scss */
.page-tagline .description {
  font-size: 16px;
  line-height: 28px;
  color: #777;
  font-family: 'regular';
  margin-bottom: 40px;
}

/* line 911, ../sass/style.scss */
.color-background .page-tagline .title {
  color: #fff;
}

/* line 912, ../sass/style.scss */
.color-background .page-tagline .title:before {
  background: #fff;
}

/* line 913, ../sass/style.scss */
.color-background .page-tagline .description {
  color: #fff;
}

@media (max-width: 991px) {
  /* line 916, ../sass/style.scss */
  .new-block {
    padding: 50px 0;
  }

  /* line 917, ../sass/style.scss */
  .page-tagline, .blog-container .page-tagline {
    margin-bottom: 40px;
  }

  /* line 918, ../sass/style.scss */
  .little-img-text-entry:nth-child(3n+1) {
    clear: none;
  }

  /* line 919, ../sass/style.scss */
  .little-img-text-entry:nth-child(2n+1) {
    clear: both;
  }

  /* line 920, ../sass/style.scss */
  .new-block .little-img-text-entry, .new-block .little-img-text-entry:nth-last-child(3) {
    padding-bottom: 40px;
  }

  /* line 921, ../sass/style.scss */
  .new-block .little-img-text-entry:nth-last-child(1), .new-block .little-img-text-entry:nth-last-child(2) {
    padding-bottom: 0;
  }

  /* line 922, ../sass/style.scss */
  .new-block .swiper-container {
    margin-left: 10px;
  }

  /* line 923, ../sass/style.scss */
  .new-block .swiper-container.horizontal-pagination {
    margin-left: 0;
  }

  /* line 924, ../sass/style.scss */
  .new-block .swiper-container .paddings-container {
    padding-right: 10px;
  }

  /* line 925, ../sass/style.scss */
  .new-block .swiper-container.horizontal-pagination .paddings-container {
    padding-right: 0;
  }
}
@media (max-width: 767px) {
  /* line 928, ../sass/style.scss */
  .phones-container {
    width: auto;
    left: 0;
  }

  /* line 929, ../sass/style.scss */
  .new-block .content-entry:first-child {
    padding-bottom: 30px;
  }

  /* line 930, ../sass/style.scss */
  .new-block .little-img-text-entry, .new-block .little-img-text-entry:nth-last-child(2) {
    padding-bottom: 40px;
  }

  /* line 931, ../sass/style.scss */
  .new-block.type-3.type-3-1 img {
    margin-top: 0;
  }

  /*pagination turned to default horizontal*/
  /* line 933, ../sass/style.scss */
  .new-block .swiper-container:before {
    display: none;
  }

  /* line 934, ../sass/style.scss */
  .new-block .swiper-container {
    margin-left: 0;
  }

  /* line 935, ../sass/style.scss */
  .new-block .swiper-container .pagination {
    width: auto;
    position: relative;
    margin-top: 30px;
    transform: translateY(0%);
    -moz-transform: translateY(0%);
    -webkit-transform: translateY(0%);
    -ms-transform: translateY(0%);
  }

  /* line 936, ../sass/style.scss */
  .new-block .swiper-container .pagination .swiper-pagination-switch {
    margin: 0 10px;
    text-align: center;
  }

  /* line 937, ../sass/style.scss */
  .new-block .swiper-container .pagination .swiper-active-switch {
    width: 23px;
    height: 9px;
  }

  /* line 938, ../sass/style.scss */
  .new-block .swiper-container .paddings-container {
    padding-left: 0;
  }

  /**/
  /* line 940, ../sass/style.scss */
  .page-tagline .title {
    font-size: 38px;
    line-height: 35px;
  }
}
/*-------------------------------------------------------------------------------------------------------------------------------*/
/* 16 - BLOCK "TYPE 9" (index style 2) */
/*-------------------------------------------------------------------------------------------------------------------------------*/
/* line 946, ../sass/style.scss */
.new-block.type-9 .h3 {
  text-transform: none;
  padding-bottom: 15px;
}

/* line 947, ../sass/style.scss */
.new-block.type-9 .cell-view {
  width: 1000px;
  height: 495px;
}

/* line 948, ../sass/style.scss */
.swiper-image-block {
  text-align: center;
}

/* line 949, ../sass/style.scss */
.swiper-image-block img {
  max-width: 410px;
  height: auto;
  display: inline-block;
  vertical-align: bottom;
  width: 100%;
}

/*list style 1*/
/* line 951, ../sass/style.scss */
.list-style-1 li {
  padding-left: 30px;
  line-height: 27px;
  background: url(../img/list-bg-style-1.png) 0 11px no-repeat;
}

/* line 952, ../sass/style.scss */
.list-style-1 li:after {
  display: none;
}

/* line 953, ../sass/style.scss */
.list-style-2 li {
  padding-left: 30px;
  line-height: 27px;
  background: url(../img/theme-1/list-bg-style-2.png) 0 11px no-repeat;
}

/* line 954, ../sass/style.scss */
.list-style-2 li:after {
  display: none;
}

@media (max-width: 991px) {
  /* line 957, ../sass/style.scss */
  .swiper-image-block {
    padding-top: 30px;
  }

  /* line 958, ../sass/style.scss */
  .new-block.type-9 .cell-view {
    height: auto;
  }
}
/*-------------------------------------------------------------------------------------------------------------------------------*/
/* 17 - BLOCK "TYPE 10" (index style 2) */
/*-------------------------------------------------------------------------------------------------------------------------------*/
/* line 967, ../sass/style.scss */
.new-block.type-10 .paddings-container {
  padding: 0 15px!important;
  text-align: center;
}

/* line 968, ../sass/style.scss */
.new-block.type-10 .image-wrapper {
  display: inline-block;
  vertical-align: bottom;
  margin-bottom: 24px;
  max-width: 370px;
  position: relative;
  overflow: hidden;
}

/* line 969, ../sass/style.scss */
.new-block.type-10 .image-wrapper .thumbnail-image {
  width: 100%;
  height: auto;
  display: block;
  position: relative;
  left: 0;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.3);
}

/* line 970, ../sass/style.scss */
.new-block.type-10 .image-wrapper:hover .thumbnail-image {
  left: 70px;
}

/* line 971, ../sass/style.scss */
.new-block.type-10 .image-socials-box {
  position: absolute;
  left: 0;
  top: 0;
  width: 70px;
  height: 100%;
  background: #d13237;
}

/* line 972, ../sass/style.scss */
.new-block.type-10 .image-socials-box a {
  padding: 15px;
  display: block;
  position: relative;
  left: -50px;
}

/* line 973, ../sass/style.scss */
.new-block.type-10 .image-wrapper:hover .image-socials-box a {
  left: 0;
}

/* line 974, ../sass/style.scss */
.new-block.type-10 .image-socials-box img {
  width: 16px;
  height: 16px;
}

/* line 975, ../sass/style.scss */
.new-block.type-10 .image-wrapper .image-socials-box a:hover img {
  transform: scale(0.7);
  -moz-transform: scale(0.7);
  -webkit-transform: scale(0.7);
  -ms-transform: scale(0.7);
}

/* line 976, ../sass/style.scss */
.new-block.type-10 .image-socials-box .vertical-align {
  width: 46px;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translateX(-50%) translateY(-50%);
  -moz-transform: translateX(-50%) translateY(-50%);
  -webkit-transform: translateX(-50%) translateY(-50%);
  -ms-transform: translateX(-50%) translateY(-50%);
}

/* line 977, ../sass/style.scss */
.new-block.type-10 .paddings-container .name {
  font-size: 16px;
  color: #222;
  text-transform: uppercase;
  line-height: 16px;
  font-family: 'bold';
  margin-bottom: 15px;
}

/* line 978, ../sass/style.scss */
.new-block.type-10 .paddings-container .position {
  font-size: 14px;
  line-height: 24px;
  color: #fcc012;
  margin-bottom: 15px;
}

/* line 979, ../sass/style.scss */
.new-block.type-10 .paddings-container .description {
  font-size: 14px;
  line-height: 24px;
  color: #777;
  padding: 0 35px;
}

/*-------------------------------------------------------------------------------------------------------------------------------*/
/* 18 - BLOCK "TYPE 11" (index style 2) */
/*-------------------------------------------------------------------------------------------------------------------------------*/
/* line 991, ../sass/style.scss */
.new-block.type-11 {
  min-height: 650px;
  height: 100vh;
  padding: 0;
}

/* line 992, ../sass/style.scss */
.new-block.type-11 .container {
  position: relative;
}

/* line 993, ../sass/style.scss */
.new-block.type-11 .swiper-container {
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  position: fixed;
  z-index: 0;
}

@media (max-width: 1199px) {
  /* line 995, ../sass/style.scss */
  .new-block.type-11 .swiper-container {
    position: absolute;
  }
}
@media (max-height: 650px) {
  /* line 998, ../sass/style.scss */
  .new-block.type-11 .swiper-container {
    position: absolute;
  }
}
/* line 1000, ../sass/style.scss */
.new-block.type-11 .swiper-slide {
  position: relative;
  background-position: center center;
  background-size: cover;
}

/* line 1001, ../sass/style.scss */
.new-block.type-11 .swiper-slide:before {
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  content: "";
  background: rgba(0, 0, 0, 0.35);
}

/* line 1002, ../sass/style.scss */
.new-block.type-11 .swiper-container, .new-block.type-11 .swiper-wrapper, .new-block.type-11 .swiper-slide {
  height: inherit!important;
  min-height: inherit!important;
}

/* line 1003, ../sass/style.scss */
.new-block.type-11 .center-tagline {
  position: absolute;
  width: 100%;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  margin-top: -32px;
}

/* line 1004, ../sass/style.scss */
.new-block.type-11.increased-height .center-tagline {
  margin-top: 32px;
}

/* line 1005, ../sass/style.scss */
.new-block.type-11 .center-tagline .title {
  font-size: 60px;
  line-height: 70px;
  color: #fff;
  font-family: 'black';
  text-transform: uppercase;
  padding-bottom: 20px;
}

/* line 1006, ../sass/style.scss */
.new-block.type-11 .center-tagline .description {
  font-size: 18px;
  line-height: 30px;
  color: #ddd;
  margin-bottom: 40px;
}

/* line 1007, ../sass/style.scss */
.banner-tabs {
  height: 120px;
  position: absolute;
  width: 100%;
  left: 0;
  bottom: 0;
}

/* line 1008, ../sass/style.scss */
.banner-tabs .entry {
  text-transform: uppercase;
  font-size: 13px;
  line-height: 18px;
  font-family: 'bold';
  cursor: pointer;
}

/* line 1009, ../sass/style.scss */
.banner-tabs .entry span.title {
  display: block;
  color: #d13237;
  padding-top: 25px;
  margin-bottom: 10px;
  position: relative;
}

/* line 1010, ../sass/style.scss */
.banner-tabs span.title:before {
  height: 3px;
  width: 50%;
  background: #d13237;
  position: absolute;
  left: 0;
  top: 0;
  width: 50%;
  content: "";
}

/* line 1011, ../sass/style.scss */
.banner-tabs .entry.active span.title:before, .banner-tabs .entry:hover span.title:before {
  width: 100%;
}

/* line 1012, ../sass/style.scss */
.banner-tabs .entry span.description {
  display: block;
  color: #ddd;
}

/* line 1013, ../sass/style.scss */
.banner-tabs .entry:hover span.title {
  color: #ddd;
}

/* line 1014, ../sass/style.scss */
.banner-tabs .entry:hover span.description {
  color: #d13237;
}

/* line 1015, ../sass/style.scss */
.new-block.type-11 .swiper-container.horizontal-pagination .pagination {
  position: absolute;
  left: 0;
  width: 100%;
  bottom: 15px;
  top: auto;
  margin: 0;
  display: none;
}

/* line 1016, ../sass/style.scss */
.new-block.type-11 .banner-image {
  position: static;
}

/* line 1017, ../sass/style.scss */
.new-block.type-11 .banner-image img {
  max-height: 550px;
  width: auto;
  position: absolute;
  top: 50%;
  left: 75%;
  transform: translateX(-50%) translateY(-50%);
  -moz-transform: translateX(-50%) translateY(-50%);
  -webkit-transform: translateX(-50%) translateY(-50%);
  -ms-transform: translateX(-50%) translateY(-50%);
}

/* line 1018, ../sass/style.scss */
.new-block.type-11 .banner-image:first-child img {
  left: 25%;
}

/* line 1019, ../sass/style.scss */
.banner-text.text-align-right {
  text-align: right;
}

/* line 1020, ../sass/style.scss */
.banner-text.text-align-center {
  text-align: center;
}

/* line 1021, ../sass/style.scss */
.banner-text {
  position: relative;
  opacity: 0;
  transform: translateX(-300px);
  -moz-transform: translateX(-300px);
  -webkit-transform: translateX(-300px);
  -ms-transform: translateX(-300px);
}

/* line 1022, ../sass/style.scss */
.banner-image {
  position: relative;
  opacity: 0;
}

/* line 1023, ../sass/style.scss */
.swiper-slide-active .banner-text {
  opacity: 1;
  transform: translateX(0);
  -moz-transform: translateX(0);
  -webkit-transform: translateX(0);
  -ms-transform: translateX(0);
  left: 0;
}

/* line 1024, ../sass/style.scss */
.swiper-slide-active .banner-image {
  opacity: 1;
}

@media (max-width: 1400px) {
  /* line 1027, ../sass/style.scss */
  .new-block.type-11 .default-arrow.left {
    left: 30px;
  }

  /* line 1028, ../sass/style.scss */
  .new-block.type-11 .default-arrow.right {
    right: 30px;
  }
}
@media (max-width: 1300px) {
  /* line 1031, ../sass/style.scss */
  .new-block.type-11 .default-arrow.left {
    left: 0;
  }

  /* line 1032, ../sass/style.scss */
  .new-block.type-11 .default-arrow.right {
    right: 0;
  }
}
@media (max-width: 1199px) {
  /* line 1035, ../sass/style.scss */
  .new-block.type-11 .banner-image img {
    max-height: 450px;
  }

  /* line 1036, ../sass/style.scss */
  .new-block.type-11.reduced-height .center-tagline {
    margin-top: 32px;
  }

  /* line 1037, ../sass/style.scss */
  .new-block.type-11 .swiper-slide .container {
    max-width: 900px;
  }
}
@media (max-width: 991px) {
  /* line 1040, ../sass/style.scss */
  .banner-tabs {
    display: none;
  }

  /* line 1041, ../sass/style.scss */
  .new-block.type-11 .swiper-container.horizontal-pagination .pagination {
    display: block;
  }

  /* line 1042, ../sass/style.scss */
  .banner-text.text-align-right, .banner-text.text-align-center {
    text-align: left;
  }

  /* line 1043, ../sass/style.scss */
  .new-block.type-11 .banner-image {
    display: none;
  }

  /* line 1044, ../sass/style.scss */
  .new-block.type-11 {
    height: 600px;
    min-height: 0;
  }

  /* line 1045, ../sass/style.scss */
  .new-block.type-11 .center-tagline {
    margin-top: 30px;
  }
}
@media (max-width: 767px) {
  /* line 1048, ../sass/style.scss */
  .new-block.type-11 {
    height: 500px;
  }

  /* line 1049, ../sass/style.scss */
  .new-block.type-11 .center-tagline .title {
    font-size: 32px;
    line-height: 36px;
  }

  /* line 1050, ../sass/style.scss */
  .new-block.type-11 .center-tagline .description {
    margin-bottom: 20px;
  }
}
/*-------------------------------------------------------------------------------------------------------------------------------*/
/* 19 - BLOCK "TYPE 12" (index style 2) */
/*-------------------------------------------------------------------------------------------------------------------------------*/
/* line 1056, ../sass/style.scss */
.new-block.type-12 {
  overflow: hidden;
}

/* line 1057, ../sass/style.scss */
.new-block.type-12 .normall {
  margin-bottom: 60px;
}

/* line 1058, ../sass/style.scss */
.logos-slider {
  margin-bottom: 60px;
}

/* line 1059, ../sass/style.scss */
.logos-slider .pagination {
  display: none;
}

/* line 1060, ../sass/style.scss */
.logos-slider .swiper-slide {
  text-align: center;
  position: relative;
}

/* line 1061, ../sass/style.scss */
.logos-slider .swiper-slide:before {
  position: absolute;
  left: 0;
  top: 0;
  width: 1px;
  height: 100%;
  content: "";
  background: rgba(255, 255, 255, 0.2);
}

/* line 1062, ../sass/style.scss */
.logos-slider .swiper-slide:first-child:before {
  display: none;
}

/* line 1063, ../sass/style.scss */
.logos-slider .swiper-slide img {
  display: inline-block;
  vertical-align: bottom;
}

/* line 1064, ../sass/style.scss */
.testimonials-slider {
  margin-bottom: -135px;
  text-align: center;
  position: relative;
}

/* line 1065, ../sass/style.scss */
.testimonials-slider .pagination {
  display: none;
}

/* line 1066, ../sass/style.scss */
.testimonials-slider img {
  max-width: 100%;
  height: auto;
  display: inline-block;
  vertical-align: bottom;
}

/* line 1067, ../sass/style.scss */
.testimonials-slider .blockquote-wrapper {
  background: url(../img/theme-1/blockquote-bg.png) 38px 33px no-repeat white;
  padding: 25px 50px 25px 70px;
  font-size: 18px;
  line-height: 32px;
  color: #777;
  text-align: left;
  -webkit-border-radius: 5px;
  border-radius: 5px;
  -webkit-box-shadow: 3px 4px 15px rgba(0, 0, 0, 0.2);
  box-shadow: 3px 4px 15px rgba(0, 0, 0, 0.2);
  position: relative;
}

/* line 1068, ../sass/style.scss */
.testimonials-slider .blockquote-wrapper p {
  color: #777;
  font-size: 18px;
  line-height: 32px;
}

/* line 1069, ../sass/style.scss */
.testimonials-slider .blockquote-wrapper:before {
  background: url(../img/blockquote-triangle.png);
  width: 18px;
  height: 28px;
  position: absolute;
  left: -18px;
  top: 50%;
  margin-top: -14px;
  content: "";
}

/* line 1070, ../sass/style.scss */
.testimonials-slider .blockquote-wrapper footer {
  background: none;
  font-size: 16px;
  line-height: 28px;
  color: #777;
  margin-top: 15px;
}

/* line 1071, ../sass/style.scss */
.testimonials-slider .blockquote-wrapper footer cite {
  font-family: 'bold';
}

/* line 1072, ../sass/style.scss */
.testimonials-slider .blockquote-wrapper .cite {
  color: #222;
}

/* line 1073, ../sass/style.scss */
blockquote *:before {
  display: none;
}

/* line 1074, ../sass/style.scss */
.testimonials-slider .cell-view {
  height: 440px;
}

/* line 1075, ../sass/style.scss */
.testimonials-slider .swiper-arrow {
  width: 32px;
  height: 32px;
  position: absolute;
  top: 50%;
  margin-top: -16px;
  text-align: center;
  cursor: pointer;
}

/* line 1076, ../sass/style.scss */
.testimonials-slider .swiper-arrow:hover {
  transform: scale(1.5);
  -moz-transform: scale(1.5);
  -webkit-transform: scale(1.5);
  -ms-transform: scale(1.5);
}

/* line 1077, ../sass/style.scss */
.testimonials-slider .swiper-arrow.left {
  left: 50%;
  margin-left: -600px;
}

/* line 1078, ../sass/style.scss */
.testimonials-slider .swiper-arrow.right {
  right: 50%;
  margin-right: -600px;
}

/* line 1079, ../sass/style.scss */
.testimonials-slider .swiper-arrow .glyphicon {
  color: #fff;
  font-size: 20px;
  line-height: 32px;
}

/* line 1080, ../sass/style.scss */
.testimonials-text {
  position: relative;
  opacity: 0;
  transform: translateX(-100px);
  -moz-transform: translateX(-100px);
  -webkit-transform: translateX(-100px);
  -ms-transform: translateX(-100px);
}

/* line 1081, ../sass/style.scss */
.testimonials-image {
  position: relative;
  opacity: 0;
  transform: translateY(300px);
  -moz-transform: translateY(300px);
  -webkit-transform: translateY(300px);
  -ms-transform: translateY(300px);
}

/* line 1082, ../sass/style.scss */
.swiper-slide-active .testimonials-text, .swiper-slide-active .testimonials-image {
  opacity: 1;
  transform: translateX(0) translateY(0);
  -moz-transform: translateX(0) translateY(0);
  -webkit-transform: translateX(0) translateY(0);
  -ms-transform: translateX(0) translateY(0);
}

@media (max-width: 1199px) {
  /* line 1084, ../sass/style.scss */
  .testimonials-slider .swiper-arrow.left {
    left: 50%;
    margin-left: -500px;
  }

  /* line 1085, ../sass/style.scss */
  .testimonials-slider .swiper-arrow.right {
    right: 50%;
    margin-right: -500px;
  }
}
@media (max-width: 991px) {
  /* line 1088, ../sass/style.scss */
  .testimonials-slider {
    margin-bottom: 0;
  }

  /* line 1089, ../sass/style.scss */
  .testimonials-slider .cell-view {
    height: auto;
  }

  /* line 1090, ../sass/style.scss */
  .new-block.type-12 .normall {
    margin-bottom: 40px;
  }

  /* line 1091, ../sass/style.scss */
  .testimonials-slider .swiper-arrow {
    display: none;
  }

  /* line 1092, ../sass/style.scss */
  .testimonials-slider .pagination {
    display: block;
  }

  /* line 1093, ../sass/style.scss */
  .logos-slider .pagination {
    display: block;
  }
}
@media (max-width: 767px) {
  /* line 1096, ../sass/style.scss */
  .testimonials-slider .blockquote-wrapper {
    margin-top: 18px;
    padding: 35px 20px 20px 20px;
    background-position: 20px 15px;
    line-height: 24px;
  }

  /* line 1097, ../sass/style.scss */
  .testimonials-slider .blockquote-wrapper footer {
    line-height: 24px;
  }

  /* line 1098, ../sass/style.scss */
  .testimonials-slider .blockquote-wrapper:before {
    background: url(../img/blockquote-triangle-rotated.png);
    width: 28px;
    height: 18px;
    position: absolute;
    left: 50%;
    top: -18px;
    margin-top: 0;
    margin-left: -14px;
    content: "";
  }

  /* line 1099, ../sass/style.scss */
  .new-block.type-12 .normall {
    margin-bottom: 20px;
  }
}
/*-------------------------------------------------------------------------------------------------------------------------------*/
/* 20 - BLOCK "TYPE 14" (index style 2) */
/*-------------------------------------------------------------------------------------------------------------------------------*/
/* line 1105, ../sass/style.scss */
.new-block.type-14 .tabs-switch {
  float: left;
  width: 100%;
  height: 114px;
  padding-top: 32px;
  border-top: 1px #f2f2f2 solid;
  border-bottom: 1px #f2f2f2 solid;
  border-right: 1px #f2f2f2 solid;
  margin-top: -1px;
  cursor: pointer;
}

/* line 1106, ../sass/style.scss */
.new-block.type-14 .tabs-switch img {
  float: left;
}

/* line 1107, ../sass/style.scss */
.new-block.type-14 .tabs-switch span {
  display: block;
  margin-left: 65px;
  font-size: 13px;
  line-height: 30px;
  color: #222;
  text-transform: uppercase;
  font-family: 'bold';
  padding: 10px 0;
}

/* line 1108, ../sass/style.scss */
.new-block.type-14 .tabs-switch.active {
  border-right-color: #fff;
}

/* line 1109, ../sass/style.scss */
.new-block.type-14 .tabs-switch.active span {
  color: #d13237;
}

/* line 1110, ../sass/style.scss */
.new-block.type-14 .tabs-title {
  font-size: 18px;
  line-height: 30px;
  color: #222;
  font-family: 'bold';
  margin-bottom: 20px!important;
  text-transform: uppercase;
}

/* line 1111, ../sass/style.scss */
.new-block.type-14 .tabs-text {
  font-size: 14px;
  line-height: 24px;
  color: #777;
  margin-bottom: 20px!important;
}

/* line 1112, ../sass/style.scss */
.new-block.type-14 .tabs-entry img {
  max-width: 260px;
  height: auto;
  margin: 0 auto;
  margin-bottom: 20px!important;
}

/* line 1113, ../sass/style.scss */
.new-block.type-14 .tabs-entry .cell-view {
  height: 585px;
  width: 1000px;
}

/* line 1114, ../sass/style.scss */
.tabs-entry {
  display: none;
}

/* line 1115, ../sass/style.scss */
.tabs-entry:first-child {
  display: block;
}

/* line 1116, ../sass/style.scss */
.tabs-limit-container {
  padding-right: 50px;
}

@media (max-width: 1199px) {
  /* line 1118, ../sass/style.scss */
  .new-block.type-14 .tabs-entry img {
    max-width: 210px;
  }
}
@media (max-width: 991px) {
  /* line 1121, ../sass/style.scss */
  .new-block.type-14 .tabs-switch {
    margin-bottom: 40px;
  }

  /* line 1122, ../sass/style.scss */
  .new-block.type-14 .tabs-entry .cell-view {
    height: auto;
  }

  /**/
  /* line 1124, ../sass/style.scss */
  .new-block.type-14 .tabs-switch {
    width: 20%;
    text-align: center;
    border: 1px #f2f2f2 solid;
    margin-left: -1px;
    padding-top: 15px;
  }

  /* line 1125, ../sass/style.scss */
  .new-block.type-14 .tabs-switch.active {
    border-bottom: none;
  }

  /* line 1126, ../sass/style.scss */
  .new-block.type-14 .tabs-switch img {
    display: inline-block;
    float: none;
    margin-bottom: 10px;
    max-width: 60%;
    height: auto;
  }

  /* line 1127, ../sass/style.scss */
  .new-block.type-14 .tabs-switch span {
    display: block;
    margin-left: 0;
    line-height: 18px;
    padding: 0;
  }

  /* line 1128, ../sass/style.scss */
  .tabs-limit-container {
    padding-right: 0;
  }
}
@media (max-width: 767px) {
  /* line 1131, ../sass/style.scss */
  .new-block.type-14 .tabs-switch {
    margin-bottom: 20px;
  }

  /* line 1132, ../sass/style.scss */
  .new-block.type-14 .tabs-entry {
    text-align: center;
  }

  /* line 1133, ../sass/style.scss */
  .new-block.type-14 .tabs-entry .cell-view {
    margin-bottom: 20px;
  }

  /* line 1134, ../sass/style.scss */
  .new-block.type-14 .tabs-switch span {
    font-size: 10px;
    line-height: 12px;
  }

  /* line 1135, ../sass/style.scss */
  .new-block.type-14 .tabs-switch {
    height: 100px;
  }
}
/*-------------------------------------------------------------------------------------------------------------------------------*/
/* 21 - BLOCK "TYPE 15" (index style 2) */
/*-------------------------------------------------------------------------------------------------------------------------------*/
/* line 1141, ../sass/style.scss */
.video-thumbnail {
  -webkit-box-shadow: 3px 4px 15px rgba(0, 0, 0, 0.3);
  box-shadow: 3px 4px 15px rgba(0, 0, 0, 0.3);
  background: #000;
  max-width: 670px;
  margin: 0 auto;
}

/* line 1142, ../sass/style.scss */
.video-thumbnail img {
  opacity: 0.7;
  display: block;
  width: 100%;
  height: auto;
}

/* line 1143, ../sass/style.scss */
.new-block.type-15 .cell-view {
  height: 380px;
}

/* line 1144, ../sass/style.scss */
.new-block.type-15 .content-entry article {
  padding: 0 0 0 70px;
}

/* line 1145, ../sass/style.scss */
.new-block.type-15 .content-entry:first-child article {
  padding: 0 30px 0 0;
}

@media (max-width: 991px) {
  /* line 1147, ../sass/style.scss */
  .new-block.type-15 .cell-view {
    height: auto;
    display: block;
  }

  /* line 1148, ../sass/style.scss */
  .new-block.type-15 .pagination {
    display: block;
  }

  /* line 1149, ../sass/style.scss */
  .new-block.type-15 .content-entry article, .new-block.type-15 .content-entry:first-child article {
    padding: 0;
  }
}
/*-------------------------------------------------------------------------------------------------------------------------------*/
/* 22 - BLOCK "TYPE 16" (index style 2) */
/*-------------------------------------------------------------------------------------------------------------------------------*/
/* line 1158, ../sass/style.scss */
.new-block.type-16 {
  background: #fbfbfb;
}

/* line 1159, ../sass/style.scss */
.compare-column-entry {
  margin-bottom: 20px;
}

/* line 1160, ../sass/style.scss */
.compare-column-entry .wrapper {
  -webkit-box-shadow: 1px 1px 1px rgba(0, 0, 0, 0.05);
  box-shadow: 1px 1px 1px rgba(0, 0, 0, 0.05);
  background: #fff;
  text-align: center;
  padding: 70px;
}

/* line 1161, ../sass/style.scss */
.compare-column-entry .price {
  font-size: 32px;
  line-height: 40px;
  color: #d13237;
  text-transform: uppercase;
  font-family: 'black';
}

/* line 1162, ../sass/style.scss */
.compare-column-entry .time {
  font-size: 16px;
  line-height: 22px;
  color: #777;
  margin-bottom: 32px;
}

/* line 1163, ../sass/style.scss */
.compare-column-entry .title {
  font-size: 20px;
  line-height: 25px;
  color: #222;
  text-transform: uppercase;
  font-family: 'black';
  padding: 32px 0;
  border-top: 1px #f2f2f2 solid;
  border-bottom: 1px #f2f2f2 solid;
  margin-bottom: 25px;
}

/* line 1164, ../sass/style.scss */
.compare-column-entry .description {
  font-size: 14px;
  color: #777;
  line-height: 34px;
  margin-bottom: 25px;
}

/* line 1165, ../sass/style.scss */
.compare-column-entry .description ul li {
  padding: 0;
}

/* line 1166, ../sass/style.scss */
.compare-column-entry .description ul li:after {
  display: none;
}

@media (max-width: 991px) {
  /* line 1168, ../sass/style.scss */
  .compare-column-entry .description {
    padding: 0;
  }

  /* line 1169, ../sass/style.scss */
  .compare-column-entry .wrapper {
    padding: 20px;
  }
}
/*-------------------------------------------------------------------------------------------------------------------------------*/
/* 23 - BLOCK "TYPE 17" (index style 2) */
/*-------------------------------------------------------------------------------------------------------------------------------*/
/* line 1179, ../sass/style.scss */
.blog-entry {
  margin-bottom: 70px;
}

/* line 1180, ../sass/style.scss */
.blog-entry-image {
  width: 100%;
  max-width: 470px;
  display: inline-block;
  vertical-align: bottom;
}

/* line 1181, ../sass/style.scss */
.blog-entry-image img {
  display: block;
  width: 100%;
  height: auto;
}

/* line 1182, ../sass/style.scss */
.blog-entry .post-data {
  font-size: 12px;
  line-height: 18px;
  color: #d13237;
  text-transform: uppercase;
  font-family: 'black';
  margin-bottom: 15px;
}

/* line 1183, ../sass/style.scss */
.blog-entry .post-data .date {
  display: inline-block;
  padding-right: 25px;
}

/* line 1184, ../sass/style.scss */
.blog-entry .post-data a {
  display: inline-block;
  color: #d13237;
}

/* line 1185, ../sass/style.scss */
.blog-entry .post-data a:hover {
  text-decoration: underline;
}

/* line 1186, ../sass/style.scss */
.blog-entry .title {
  font-size: 16px;
  line-height: 28px;
  color: #222;
  text-transform: uppercase;
  font-family: 'bold';
  margin-bottom: 10px;
  display: block;
}

/* line 1187, ../sass/style.scss */
.blog-entry .title:hover {
  color: #d13237;
}

/* line 1188, ../sass/style.scss */
.blog-entry .description {
  font-size: 14px;
  line-height: 24px;
  color: #777;
}

/* line 1189, ../sass/style.scss */
.blog-entry .cell-view {
  height: 265px;
  padding: 20px 30px;
}

@media (max-width: 991px) {
  /* line 1191, ../sass/style.scss */
  .blog-entry {
    margin-bottom: 50px;
  }
}
@media (max-width: 767px) {
  /* line 1194, ../sass/style.scss */
  .blog-entry .cell-view {
    height: auto;
    padding: 0 20px 20px 0;
  }

  /* line 1195, ../sass/style.scss */
  .blog-entry {
    padding: 0px;
    margin-bottom: 50px;
    background: none;
    box-shadow: none;
    -webkit-box-shadow: none;
  }

  /* line 1196, ../sass/style.scss */
  .blog-entry-image {
    padding: 0 20px 20px 0;
  }
}
/*-------------------------------------------------------------------------------------------------------------------------------*/
/* 24 - BLOCK "TYPE 18" (index style 2) */
/*-------------------------------------------------------------------------------------------------------------------------------*/
/* line 1204, ../sass/style.scss */
.new-block.type-18 .tabs-switch-wrapper {
  border-bottom: 1px #f2f2f2 solid;
  text-align: center;
  font-size: 0;
  margin-bottom: 70px;
}

/* line 1205, ../sass/style.scss */
.new-block.type-18 .tabs-switch {
  display: inline-block;
  vertical-align: bottom;
  font-size: 13px;
  color: #777;
  font-family: 'bold';
  text-transform: uppercase;
  height: 90px;
  padding: 0 40px;
  border: 1px #f2f2f2 solid;
  margin: 0 0 -1px -1px;
  cursor: pointer;
  background: #fbfbfb;
}

/* line 1206, ../sass/style.scss */
.new-block.type-18 .tabs-switch.active {
  border-bottom-color: #fff;
  color: #d13237;
  background: #fff;
}

/* line 1207, ../sass/style.scss */
.new-block.type-18 .tabs-switch:hover {
  color: #d13237;
}

/*accordeon*/
/* line 1210, ../sass/style.scss */
.accordeon .entry {
  background: #fbfbfb;
  margin-bottom: 20px;
  position: relative;
  -webkit-box-shadow: inset -5px 0 #ededed;
  box-shadow: inset -5px 0 #ededed;
}

/* line 1211, ../sass/style.scss */
.accordeon .entry.active {
  background: #d13237;
  -webkit-box-shadow: inset -5px 0 #daa508;
  box-shadow: inset -5px 0 #daa508;
}

/* line 1212, ../sass/style.scss */
.accordeon .entry .title {
  font-size: 12px;
  color: #222;
  line-height: 16px;
  padding: 17px 25px 15px 45px;
  position: relative;
  text-transform: uppercase;
  font-family: 'bold';
  position: relative;
  cursor: pointer;
}

/* line 1213, ../sass/style.scss */
.accordeon .entry .title:hover {
  color: #d13237;
}

/* line 1214, ../sass/style.scss */
.accordeon .entry.active .title {
  color: #fff;
}

/* line 1215, ../sass/style.scss */
.accordeon .entry.active .title:hover {
  color: rgba(255, 255, 255, 0.8) !important;
}

/* line 1216, ../sass/style.scss */
.accordeon .entry .title span {
  position: absolute;
  left: 25px;
  top: 17px;
  font-size: 13px;
  color: #d13237;
}

/* line 1217, ../sass/style.scss */
.accordeon .entry.active .title span {
  color: rgba(255, 255, 255, 0.8);
  transform: rotate(-180deg);
  -moz-transform: rotate(-180deg);
  -webkit-transform: rotate(-180deg);
  -ms-transform: rotate(-180deg);
  top: 19px;
}

/* line 1218, ../sass/style.scss */
.accordeon .entry .text {
  font-size: 14px;
  line-height: 24px;
  color: rgba(255, 255, 255, 0.8);
  padding: 12px 25px;
  display: none;
}

/*accordeon drop-down*/
/* line 1220, ../sass/style.scss */
.accordeon.drop-down .entry .title {
  font-size: 14px;
  line-height: 18px;
  color: #777;
  font-family: 'regular';
  text-transform: none;
  padding: 12px 35px 12px 20px;
}

/* line 1221, ../sass/style.scss */
.accordeon.drop-down .entry .title .glyphicon {
  font-size: 12px;
  line-height: 14px;
  left: auto;
  right: 20px;
  top: 14px;
  transform: rotate(90deg);
  -moz-transform: rotate(90deg);
  -webkit-transform: rotate(90deg);
  -ms-transform: rotate(90deg);
}

/* line 1222, ../sass/style.scss */
.drop-down-list li {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.8);
  line-height: 18px;
  padding: 12px 0;
}

/* line 1223, ../sass/style.scss */
.drop-down-list a {
  display: inline-block;
  color: rgba(255, 255, 255, 0.8);
}

/* line 1224, ../sass/style.scss */
.drop-down-list a:hover {
  text-decoration: underline;
}

/* line 1225, ../sass/style.scss */
.accordeon.drop-down .entry .text {
  padding: 0 20px;
}

/* line 1226, ../sass/style.scss */
.accordeon.drop-down .entry.active .title {
  color: #fff;
}

/* line 1227, ../sass/style.scss */
.accordeon.drop-down .entry.active .title:hover {
  color: #fff0e0;
}

/* line 1228, ../sass/style.scss */
.accordeon.drop-down .entry.active .title .glyphicon {
  transform: rotate(-90deg);
  -moz-transform: rotate(-90deg);
  -webkit-transform: rotate(-90deg);
  -ms-transform: rotate(-90deg);
}

/**/
@media (max-width: 991px) {
  /* line 1232, ../sass/style.scss */
  .new-block.type-18 .tabs-switch {
    height: 70px;
    padding: 0 30px;
  }

  /* line 1233, ../sass/style.scss */
  .new-block.type-18 .tabs-switch-wrapper {
    margin-bottom: 50px;
  }
}
@media (max-width: 767px) {
  /* line 1236, ../sass/style.scss */
  .new-block.type-18 .tabs-switch {
    width: 50%;
    float: left;
  }

  /* line 1237, ../sass/style.scss */
  .new-block.type-18 .tabs-switch .cell-view {
    width: 500px;
  }
}
/*-------------------------------------------------------------------------------------------------------------------------------*/
/* 25 - BLOCK "TYPE 19" (index style 2) */
/*-------------------------------------------------------------------------------------------------------------------------------*/
/* line 1243, ../sass/style.scss */
.new-block.type-19 {
  padding-bottom: 0;
}

/* line 1244, ../sass/style.scss */
.sorting-item, .grid-sizer {
  width: 20%;
  position: relative;
  overflow: hidden;
  cursor: pointer;
}

/* line 1245, ../sass/style.scss */
.full-page {
  margin-bottom: 120px;
}

/* line 1246, ../sass/style.scss */
.full-page .sorting-item, .full-page .grid-sizer {
  width: 25%;
}

/* line 1247, ../sass/style.scss */
.full-page .sorting-item.w2 {
  width: 50%;
}

/* line 1248, ../sass/style.scss */
.sorting-item img {
  display: block;
  width: 100%;
  height: auto;
  position: relative;
}

/* line 1249, ../sass/style.scss */
.sorting-menu {
  text-align: center;
  font-size: 0;
  margin-bottom: 70px;
}

/* line 1250, ../sass/style.scss */
.sorting-menu a {
  display: inline-block;
  font-size: 13px;
  line-height: 30px;
  color: #888;
  text-transform: uppercase;
  font-family: 'bold';
  margin-right: 15px;
  padding: 2px 10px 0 10px;
  margin-bottom: 5px;
}

/* line 1251, ../sass/style.scss */
.sorting-menu a.active, .sorting-menu a:hover {
  color: #fff;
  background: #d13237;
}

/* line 1252, ../sass/style.scss */
.sorting-menu a:first-child {
  margin-left: 0;
}

/* line 1253, ../sass/style.scss */
.sorting-item.disabled {
  opacity: 0.1;
}

/* line 1254, ../sass/style.scss */
.full-page .sorting-item.disabled {
  opacity: 0;
}

/* line 1255, ../sass/style.scss */
.sorting-item .tagline {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(251, 192, 17, 0.8);
  opacity: 0;
}

/* line 1256, ../sass/style.scss */
.sorting-item:hover .tagline {
  opacity: 1;
}

/* line 1257, ../sass/style.scss */
.sorting-item .tagline .content {
  position: absolute;
  width: 90%;
  left: 5%;
  top: 50%;
  transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  text-align: center;
}

/* line 1258, ../sass/style.scss */
.sorting-item .tagline .title {
  font-size: 22px;
  line-height: 40px;
  color: #fff;
  text-transform: uppercase;
  font-family: 'bold';
  transform: translateX(-100%);
  -oz-transform: translateX(-100%);
  -webkit-transform: translateX(-100%);
  -ms-transform: translateX(-100%);
}

/* line 1259, ../sass/style.scss */
.sorting-item:nth-child(2n) .tagline .title {
  transform: translateX(0%) translateY(-100%);
  -oz-transform: translateX(0%) translateY(-100%);
  -webkit-transform: translateX(0%) translateY(-100%);
  -ms-transform: translateX(0%) translateY(-100%);
}

/* line 1260, ../sass/style.scss */
.sorting-item .tagline .description {
  font-size: 11px;
  line-height: 24px;
  text-transform: uppercase;
  transform: translateX(100%);
  -oz-transform: translateX(100%);
  -webkit-transform: translateX(100%);
  -ms-transform: translateX(100%);
}

/* line 1261, ../sass/style.scss */
.sorting-item:nth-child(2n) .tagline .description {
  transform: translateX(0%) translateY(100%);
  -oz-transform: translateX(0%) translateY(100%);
  -webkit-transform: translateX(0%) translateY(100%);
  -ms-transform: translateX(0%) translateY(100%);
}

/* line 1262, ../sass/style.scss */
.sorting-item:hover .tagline .title, .sorting-item:hover .tagline .description {
  transform: translateX(0%) translateY(0%);
  -oz-transform: translateX(0%) translateY(0%);
  -webkit-transform: translateX(0%) translateY(0%);
  -ms-transform: translateX(0%) translateY(0%);
}

/* line 1263, ../sass/style.scss */
.full-page.borders .sorting-item:after {
  position: absolute;
  width: 100%;
  height: 100%;
  border: 15px #fff solid;
  left: 0;
  top: 0;
  content: "";
}

/*dropdown for responsive*/
/* line 1265, ../sass/style.scss */
.responsive-filtration-title {
  display: none;
  position: relative;
}

@media (max-width: 991px) {
  /* line 1268, ../sass/style.scss */
  .sorting-menu {
    margin-bottom: 50px;
  }

  /* line 1269, ../sass/style.scss */
  .full-page.borders .sorting-item:after {
    border-width: 5px;
  }

  /*dropdown for responsive*/
  /* line 1271, ../sass/style.scss */
  .responsive-filtration-title {
    display: block;
    color: #222;
    border-bottom: 5px #d13237 solid;
    font-size: 22px;
    font-family: 'bold';
    line-height: 40px;
    padding: 0 40px;
    cursor: pointer;
  }

  /* line 1272, ../sass/style.scss */
  .responsive-filtration-title .glyphicon {
    position: absolute;
    line-height: 40px;
    width: 40px;
    text-align: center;
    top: 0;
    right: 0;
    font-size: 18px;
    color: #d13237;
  }

  /* line 1273, ../sass/style.scss */
  .sorting-menu.active .responsive-filtration-title .glyphicon {
    transform: rotate(-180deg);
    -moz-transform: rotate(-180deg);
    -webkit-transform: rotate(-180deg);
    -ms-transform: rotate(-180deg);
  }

  /* line 1274, ../sass/style.scss */
  .responsive-filtration-toggle {
    display: none;
  }

  /* line 1275, ../sass/style.scss */
  .sorting-menu.active .responsive-filtration-toggle {
    display: block;
  }

  /* line 1276, ../sass/style.scss */
  .sorting-menu a {
    display: block;
    margin: 10px 0 0 0;
  }
}
@media (max-width: 767px) {
  /* line 1279, ../sass/style.scss */
  .sorting-item, .grid-sizer {
    width: 50%;
  }

  /* line 1280, ../sass/style.scss */
  .full-page .sorting-item, .full-page .grid-sizer, .full-page .sorting-item.w2 {
    width: 50%;
  }
}
/*-------------------------------------------------------------------------------------------------------------------------------*/
/* 26 - BLOG */
/*-------------------------------------------------------------------------------------------------------------------------------*/
/* line 1286, ../sass/style.scss */
.blog-container {
  padding-top: 75px;
}

/* line 1287, ../sass/style.scss */
.blog-post {
  margin-bottom: 90px;
  clear: both;
}

/* line 1288, ../sass/style.scss */
.blog-post .thumbnail-entry {
  display: block;
  margin-bottom: 40px;
}

/* line 1289, ../sass/style.scss */
.blog-post .thumbnail-entry img {
  display: block;
  width: 100%;
  height: auto;
}

/* line 1290, ../sass/style.scss */
.blog-post .thumbnail-entry blockquote {
  background: url(../img/theme-1/blockquote-bg-1.png) 40px 30px no-repeat #f8f8f8;
  padding: 70px 40px 20px 40px;
  font-size: 20px;
  line-height: 24px;
  color: #222;
  text-transform: uppercase;
  font-family: 'bold';
  border-left: 5px #d13237 solid;
}

/* line 1291, ../sass/style.scss */
.blog-post .thumbnail-entry blockquote.style-2 {
  background: none;
  padding-top: 20px;
  padding-bottom: 20px;
  position: relative;
  border: none;
}

/* line 1292, ../sass/style.scss */
.blog-post .thumbnail-entry blockquote.style-2:before {
  width: 2px;
  top: 18px;
  bottom: 18px;
  position: absolute;
  left: 0;
  background: #d13237;
  content: "";
}

/* line 1293, ../sass/style.scss */
.blog-post .thumbnail-entry blockquote footer {
  background: none;
  font-size: 16px;
  line-height: 30px;
  color: #777;
  font-family: 'regular';
  margin-top: 5px;
}

/* line 1294, ../sass/style.scss */
.blog-post .thumbnail-entry blockquote cite {
  color: #d13237;
  font-family: 'bold';
}

/* line 1295, ../sass/style.scss */
.blog-post .thumbnail-entry blockquote.style-2 cite {
  color: #222;
}

/* line 1296, ../sass/style.scss */
.blog-post .thumbnail-entry .default-arrow.left {
  left: 20px;
}

/* line 1297, ../sass/style.scss */
.blog-post .thumbnail-entry .default-arrow.right {
  right: 20px;
}

/* line 1298, ../sass/style.scss */
.blog-post .thumbnail-entry .pagination {
  position: absolute!important;
  left: 0;
  width: 100%!important;
  bottom: 10px;
  top: auto;
  display: none;
}

/* line 1300, ../sass/style.scss */
.blog-post .date {
  float: left;
  width: 70px;
  border-right: 2px #d13237 solid;
  text-align: center;
  font-size: 14px;
  line-height: 24px;
  color: #222;
  padding-top: 3px;
}

/* line 1301, ../sass/style.scss */
.blog-post .date span {
  display: block;
  font-size: 30px;
  font-family: 'bold';
}

/* line 1302, ../sass/style.scss */
.blog-post .text {
  margin-left: 70px;
  padding: 0 0 0 30px;
}

/* line 1303, ../sass/style.scss */
.blog-post .title {
  font-size: 30px;
  line-height: 34px;
  color: #222;
  text-transform: uppercase;
  font-family: 'bold';
  margin-bottom: 20px!important;
  display: inline-block;
}

/* line 1304, ../sass/style.scss */
.blog-post.detail-post .title {
  margin-bottom: 35px!important;
}

/* line 1305, ../sass/style.scss */
.blog-post .title:hover {
  color: #d13237;
}

/* line 1306, ../sass/style.scss */
.blog-post .description {
  font-size: 14px;
  line-height: 24px;
  color: #777;
  margin-bottom: 30px;
}

/*paginator*/
/* line 1309, ../sass/style.scss */
.paginator ul {
  list-style: none;
  margin: 0 100px -40px 100px;
  font-size: 0;
  text-align: center;
}

/* line 1310, ../sass/style.scss */
.paginator ul li {
  display: inline-block;
  margin: 0 5px;
  padding: 0;
}

/* line 1311, ../sass/style.scss */
.paginator ul li:after {
  display: none;
}

/* line 1312, ../sass/style.scss */
.paginator ul li a {
  font-size: 12px;
  line-height: 35px;
  color: #888;
  display: block;
  width: 35px;
  font-family: 'bold';
}

/* line 1313, ../sass/style.scss */
.paginator ul li a.active, .paginator ul li a:hover {
  color: #fff;
  background: #d13237;
}

/* line 1314, ../sass/style.scss */
.arrow-button:hover {
  color: #d13237;
}

/* line 1315, ../sass/style.scss */
.arrow-button {
  float: right;
  font-size: 12px;
  line-height: 42px;
  color: #888;
  font-family: 'bold';
  text-transform: uppercase;
}

/* line 1316, ../sass/style.scss */
.arrow-button:first-child {
  float: left;
}

/*widgets*/
/* line 1318, ../sass/style.scss */
.widget-entry {
  margin-bottom: 70px;
}

/* line 1319, ../sass/style.scss */
.widget-title {
  font-size: 20px;
  line-height: 20px;
  color: #222;
  text-transform: uppercase;
  font-family: 'bold';
  margin-bottom: 40px!important;
}

/* line 1320, ../sass/style.scss */
.widget-entry .swiper-container img {
  width: 100%;
  height: auto;
}

/* line 1321, ../sass/style.scss */
.widget-entry .default-arrow {
  transform: scale(0.8);
  -moz-transform: scale(0.8);
  -webkit-transform: scale(0.8);
  -ms-transform: scale(0.8);
  margin-top: -44px;
}

/* line 1322, ../sass/style.scss */
.widget-entry .default-arrow.left {
  left: 15px;
}

/* line 1323, ../sass/style.scss */
.widget-entry .default-arrow.right {
  right: 15px;
}

/* line 1325, ../sass/style.scss */
.categories-wrapper .entry {
  font-size: 12px;
  line-height: 14px;
  padding: 14px 30px 14px 0;
  display: block;
  position: relative;
  color: #888;
  text-transform: uppercase;
  border-bottom: 1px #f2f2f2 solid;
  cursor: pointer;
}

/* line 1326, ../sass/style.scss */
.categories-wrapper .entry .number {
  position: absolute;
  right: 0;
  top: 14px;
  color: #d13237;
}

/* line 1327, ../sass/style.scss */
.categories-wrapper .entry .glyphicon {
  font-size: 10px;
  margin-right: 10px;
  position: relative;
}

/* line 1328, ../sass/style.scss */
.categories-wrapper .entry.toggle .glyphicon:before {
  content: "+";
  color: #d13237;
  font-family: Arial;
  font-size: 14px;
  font-weight: bold;
}

/* line 1329, ../sass/style.scss */
.categories-wrapper .entry.toggle.active .glyphicon:before {
  content: "-";
}

/* line 1330, ../sass/style.scss */
.categories-wrapper .entry:hover {
  color: #d13237;
}

/* line 1331, ../sass/style.scss */
.categories-wrapper .sub-wrapper {
  border-bottom: 1px #f2f2f2 solid;
  display: none;
}

/* line 1332, ../sass/style.scss */
.categories-wrapper .sub-wrapper:last-child {
  border: none;
}

/* line 1333, ../sass/style.scss */
.categories-wrapper .sub-wrapper a {
  display: block;
  font-size: 12px;
  line-height: 14px;
  color: #888;
  padding: 14px 0 14px 40px;
}

/* line 1334, ../sass/style.scss */
.categories-wrapper .sub-wrapper a span {
  color: #d13237;
}

/**/
/* line 1336, ../sass/style.scss */
.popular-post-entry {
  padding-bottom: 35px;
  border-bottom: 1px #f2f2f2 solid;
  margin-bottom: 35px;
}

/* line 1337, ../sass/style.scss */
.popular-post-entry .popular-thumbnail {
  float: left;
}

/* line 1338, ../sass/style.scss */
.popular-post-entry .popular-thumbnail img {
  display: block;
  width: 80px;
  height: 80px;
}

/* line 1339, ../sass/style.scss */
.popular-post-entry .content {
  margin-left: 100px;
}

/* line 1340, ../sass/style.scss */
.popular-post-entry .content .date {
  font-size: 12px;
  line-height: 14px;
  color: #d13237;
  text-transform: uppercase;
  margin-bottom: 10px;
  font-family: 'bold';
}

/* line 1341, ../sass/style.scss */
.popular-post-entry .content .title {
  font-size: 13px;
  line-height: 20px;
  color: #222;
  text-transform: uppercase;
  font-family: 'bold';
  display: block;
}

/* line 1342, ../sass/style.scss */
.popular-post-entry .content .title:hover {
  color: #d13237;
}

/**/
/* line 1344, ../sass/style.scss */
.tags-container {
  font-size: 0;
}

/* line 1345, ../sass/style.scss */
.tags-container a {
  font-size: 11px;
  line-height: 32px;
  color: #555;
  display: inline-block;
  margin-right: 10px;
  background: #f8f8f8;
  padding: 0 10px;
  text-transform: uppercase;
  margin-bottom: 10px;
}

/* line 1346, ../sass/style.scss */
.tags-container a:hover {
  color: #fff;
  background: #d13237;
}

/* line 1347, ../sass/style.scss */
.tags-title {
  display: inline-block;
  line-height: 32px;
  font-size: 14px;
  color: #222;
  text-transform: uppercase;
  margin-right: 20px;
  font-family: 'bold';
}

/**/
/* line 1349, ../sass/style.scss */
.text-widget-image {
  max-width: 370px;
  width: 100%;
  height: auto;
  display: block;
  margin-bottom: 20px;
}

/* line 1350, ../sass/style.scss */
.text-widget-description {
  font-size: 14px;
  line-height: 24px;
  color: #777;
  margin-bottom: 20px;
}

/**/
/* line 1352, ../sass/style.scss */
.latest-comment-entry {
  margin-bottom: 30px;
}

/* line 1353, ../sass/style.scss */
.latest-comment-entry .date {
  font-size: 11px;
  line-height: 18px;
  color: #888;
  text-transform: uppercase;
  font-family: 'bold';
  margin-bottom: 10px;
}

/* line 1354, ../sass/style.scss */
.latest-comment-entry .date .glyphicon {
  color: #d13237;
  font-size: 16px;
  display: inline-block;
  margin-right: 10px;
  position: relative;
  top: 3px;
}

/* line 1355, ../sass/style.scss */
.latest-comment-entry .title {
  font-size: 13px;
  line-height: 20px;
  color: #888;
}

/* line 1356, ../sass/style.scss */
.latest-comment-entry .title .name {
  color: #d13237;
  text-transform: uppercase;
}

/* line 1357, ../sass/style.scss */
.latest-comment-entry .title .name:hover {
  text-decoration: underline;
}

/* line 1358, ../sass/style.scss */
.latest-comment-entry .title .post-title {
  color: #222;
  text-transform: uppercase;
  font-family: 'bold';
}

/* line 1359, ../sass/style.scss */
.latest-comment-entry .title .post-title:hover {
  color: #d13237;
}

/**/
/* line 1361, ../sass/style.scss */
.gallery-preview img {
  float: left;
  width: 25%;
  height: auto;
}

/**/
/* line 1363, ../sass/style.scss */
.widget-entry .items-1 .tabs-switch {
  width: 100%;
}

/* line 1364, ../sass/style.scss */
.widget-entry .items-2 .tabs-switch {
  width: 50%;
}

/* line 1365, ../sass/style.scss */
.widget-entry .items-3 .tabs-switch {
  width: 33.333333333%;
}

/* line 1366, ../sass/style.scss */
.widget-entry .items-4 .tabs-switch {
  width: 25%;
}

/* line 1367, ../sass/style.scss */
.widget-entry .tabs-switch {
  padding: 0 5px;
  border: 1px #f2f2f2 solid;
  float: left;
  height: 70px;
  font-size: 13px;
  color: #777;
  font-family: 'bold';
  text-transform: uppercase;
  text-align: center;
  background: #fbfbfb;
  cursor: pointer;
}

/* line 1368, ../sass/style.scss */
.widget-entry .tabs-switch.active {
  color: #d13237;
  background: #fff;
  border-bottom-color: #fff;
}

/* line 1369, ../sass/style.scss */
.widget-entry .tabs-switch .cell-view {
  width: 1000px;
}

/* line 1370, ../sass/style.scss */
.widget-tab-wrapper {
  padding: 20px 30px;
  border: 1px #f2f2f2 solid;
  border-top: none;
}

/* line 1371, ../sass/style.scss */
.tab-style .widget-tab-wrapper {
  border: none;
}

/* line 1372, ../sass/style.scss */
.widget-entry .tabs-entry img {
  display: inline-block;
  margin: 0 auto;
  max-width: 100%;
  height: auto;
}

/* line 1373, ../sass/style.scss */
.widget-entry .tabs-entry .cell-view {
  height: 250px;
}

/**/
/* line 1375, ../sass/style.scss */
.widget-testimonial {
  padding-right: 10px;
}

/* line 1376, ../sass/style.scss */
.widget-testimonial .text {
  font-size: 14px;
  line-height: 20px;
  color: #777;
  padding: 15px 25px 15px 50px;
  border: 1px #f2f2f2 solid;
  border-radius: 5px;
  background: url(../img/theme-1/blockquote-bg.png) 20px 17px no-repeat white;
  margin-bottom: 35px;
  position: relative;
}

/* line 1377, ../sass/style.scss */
.widget-testimonial .text:after {
  width: 28px;
  height: 18px;
  background: url(../img/widget-testimonial-triangle.png);
  position: absolute;
  content: "";
  left: 55px;
  top: 100%;
}

/* line 1379, ../sass/style.scss */
.widget-testimonial .person img {
  width: 115px;
  height: auto;
  float: left;
  margin-left: 12px;
}

/* line 1380, ../sass/style.scss */
.widget-testimonial .person .description {
  margin-left: 157px;
  font-size: 13px;
  line-height: 24px;
  color: #777;
  padding-top: 30px;
}

/* line 1381, ../sass/style.scss */
.widget-testimonial .person .description span {
  display: block;
  font-size: 16px;
  color: #222;
  font-family: 'bold';
}

/* line 1382, ../sass/style.scss */
.testimonial-widget-pagination {
  width: 139px!important;
}

/**/
/* line 1384, ../sass/style.scss */
.search-form {
  position: relative;
}

/* line 1385, ../sass/style.scss */
.search-form input {
  height: 43px;
  padding: 0 43px 0 20px;
  width: 100%;
  background: #f8f8f8;
  font-size: 14px;
  line-height: 43px;
  font-family: 'regular';
  border: none;
  margin: 0;
}

/* line 1386, ../sass/style.scss */
.search-form .search-submit {
  position: absolute;
  height: 43px;
  width: 43px;
  text-align: center;
  color: #d13237;
  line-height: 43px;
  text-align: center;
  font-size: 20px;
  cursor: pointer;
  cursor: pointer;
  top: 0;
  right: 0;
}

/* line 1387, ../sass/style.scss */
.search-form .search-submit span {
  position: relative;
}

/* line 1388, ../sass/style.scss */
.search-form .search-submit input {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  padding: 0;
}

/**/
/* line 1390, ../sass/style.scss */
.widget-entry .social-icons {
  font-size: 0;
}

/* line 1391, ../sass/style.scss */
.widget-entry .social-icons a {
  width: 35px;
  height: 35px;
  display: inline-block;
  background: #d13237;
  text-align: center;
  line-height: 35px;
  margin-right: 15px;
}

/* line 1392, ../sass/style.scss */
.widget-entry .social-icons a:hover {
  background: #777;
}

/* line 1393, ../sass/style.scss */
.widget-entry .social-icons a img {
  display: inline-block;
  vertical-align: middle;
  position: relative;
  top: 1px;
}

/**/
/* line 1395, ../sass/style.scss */
.tweet-entry {
  position: relative;
  padding-left: 35px;
  margin-bottom: 24px;
  font-size: 14px;
  line-height: 24px;
  color: #777;
}

/* line 1396, ../sass/style.scss */
.tweet-entry a {
  color: #d13237;
  font-family: 'bold';
}

/* line 1397, ../sass/style.scss */
.tweet-entry a:hover {
  text-decoration: underline;
}

/* line 1398, ../sass/style.scss */
.tw-logo {
  position: absolute;
  left: 0;
  top: 5px;
}

/* line 1399, ../sass/style.scss */
.tweet-entry .date {
  display: block;
  color: #cbcaca;
  font-family: 'bold';
}

/*blog post style 2*/
@media (min-width: 992px) {
  /* line 1405, ../sass/style.scss */
  .blog-post.style-2 {
    padding-left: 100px;
  }

  /* line 1406, ../sass/style.scss */
  .blog-post.style-2 .date {
    position: absolute;
    left: 0;
    top: 0;
    width: 100px;
    background-color: #d13237;
    -webkit-box-shadow: inset 3px 0 #daa508;
    box-shadow: inset 3px 0 #daa508;
    border: none;
    color: #fff;
    text-shadow: 1px 0 1px rgba(0, 0, 0, 0.1);
    padding: 20px 0;
    z-index: 1;
  }

  /* line 1407, ../sass/style.scss */
  .blog-post.style-2 .date:before {
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 7.5px 0 7.5px 10px;
    border-color: transparent transparent transparent #d13237;
    content: "";
    position: absolute;
    left: 100%;
    top: 0;
  }

  /* line 1408, ../sass/style.scss */
  .blog-post.style-2 .date br {
    display: none;
  }

  /* line 1409, ../sass/style.scss */
  .blog-post.style-2 .text {
    margin-left: 0;
    padding-left: 0;
  }
}
/*author*/
/* line 1413, ../sass/style.scss */
.author-entry {
  font-size: 11px;
  color: #888;
  line-height: 15px;
  font-family: 'bold';
  margin-bottom: 20px;
}

/* line 1414, ../sass/style.scss */
.author-thumbnail {
  float: left;
}

/* line 1415, ../sass/style.scss */
.author-thumbnail img {
  width: 39px;
  height: 39px;
  display: block;
}

/* line 1416, ../sass/style.scss */
.author-text {
  margin-left: 50px;
  padding: 12px 0;
}

/* line 1417, ../sass/style.scss */
.author-text .name {
  text-transform: uppercase;
  color: #888;
}

/* line 1418, ../sass/style.scss */
.author-text .category {
  text-transform: uppercase;
  color: #d13237;
}

/* line 1419, ../sass/style.scss */
.author-text a:hover {
  text-decoration: underline;
}

/* line 1420, ../sass/style.scss */
.author-entry .glyphicon {
  color: #d13237;
  font-size: 14px;
  margin-right: 7px;
  margin-left: 25px;
}

/*slider thumbnails*/
/* line 1423, ../sass/style.scss */
.blog-post .thumbnails {
  cursor: pointer;
}

/* line 1424, ../sass/style.scss */
.blog-post .thumbnails .entry {
  opacity: 0.3;
  margin-top: 30px;
}

/* line 1425, ../sass/style.scss */
.blog-post .thumbnails .entry.active {
  opacity: 1;
}

/* line 1426, ../sass/style.scss */
.blog-post .thumbnails img {
  width: 100%;
  height: auto;
}

/*blog post style 3*/
/* line 1429, ../sass/style.scss */
.blog-post.style-3 {
  position: relative;
}

/* line 1430, ../sass/style.scss */
.blog-post.style-3:after {
  position: absolute;
  width: 3000px;
  left: 50%;
  margin-left: -1500px;
  bottom: -30px;
  height: 1px;
  background: #f2f2f2;
  content: "";
}

@media (min-width: 992px) {
  /* line 1432, ../sass/style.scss */
  .blog-post.style-3 .title {
    font-size: 18px;
    line-height: 28px;
  }

  /* line 1433, ../sass/style.scss */
  .blog-post.style-3 .author-thumbnail img {
    width: 60px;
    height: 60px;
  }

  /* line 1434, ../sass/style.scss */
  .blog-post.style-3 .author-text {
    margin-left: 70px;
    padding: 22px 0;
  }
}
/*blog detail page*/
/* line 1438, ../sass/style.scss */
.blog-post.detail-post {
  padding-bottom: 90px;
  border-bottom: 1px #f2f2f2 solid;
  margin-bottom: 90px;
}

/* line 1439, ../sass/style.scss */
.blog-post.detail-post .text {
  margin-left: 0;
  padding: 0;
}

/* line 1440, ../sass/style.scss */
.blog-post.detail-post .author-entry {
  margin-bottom: 35px;
}

/* line 1441, ../sass/style.scss */
.blog-post-hat-center-align {
  text-align: center;
  margin-bottom: 20px;
}

/* line 1442, ../sass/style.scss */
.blog-article-description {
  font-size: 18px;
  line-height: 30px;
  color: #777;
  margin-bottom: 20px;
}

/* line 1443, ../sass/style.scss */
.author-center-align {
  text-align: center;
}

/* line 1444, ../sass/style.scss */
.author-center-align .author-entry {
  display: inline-block;
}

/* line 1445, ../sass/style.scss */
.blog-detail-article {
  font-size: 14px;
  line-height: 24px;
  color: #777;
}

/* line 1446, ../sass/style.scss */
.new-block .blog-detail-article p, .new-block .blog-detail-article ul, .new-block .blog-detail-article ol, .new-block .blog-detail-article img {
  margin-bottom: 20px!important;
}

/* line 1447, ../sass/style.scss */
.blog-detail-article img {
  max-width: 100%;
  height: auto;
}

/* line 1448, ../sass/style.scss */
.blog-detail-article h3 {
  font-size: 18px;
  line-height: 30px;
  color: #222;
  text-transform: uppercase;
  margin-bottom: 20px!important;
  font-family: 'bold';
}

/* line 1449, ../sass/style.scss */
.blog-post.detail-post .thumbnail-entry {
  margin-bottom: 20px!important;
}

/* line 1450, ../sass/style.scss */
.share-post {
  text-align: right;
}

/* line 1451, ../sass/style.scss */
.share-post a {
  display: inline-block;
  width: 32px;
  text-align: center;
  height: 32px;
  position: relative;
  top: -1px;
  vertical-align: middle;
}

/* line 1452, ../sass/style.scss */
.share-post a:hover {
  background: #d13237;
}

/* line 1453, ../sass/style.scss */
.share-post a img {
  position: absolute;
  width: 16px;
  height: 16px;
  left: 50%;
  top: 50%;
  margin: -8px 0 0 -8px;
  opacity: 0;
}

/* line 1454, ../sass/style.scss */
.share-post a img:first-child {
  opacity: 1;
}

/* line 1455, ../sass/style.scss */
.share-post a:hover img {
  opacity: 1;
}

/* line 1456, ../sass/style.scss */
.share-post a:hover img:first-child {
  opacity: 0;
}

/* line 1457, ../sass/style.scss */
.related-posts {
  padding-bottom: 90px;
  border-bottom: 1px #f2f2f2 solid;
  margin-bottom: 90px;
}

/* line 1458, ../sass/style.scss */
.related-posts .titel-left {
  margin-left: 25px!important;
  margin-bottom: 60px!important;
}

/* line 1459, ../sass/style.scss */
.related-entry {
  margin-bottom: 20px;
  padding-top: 10px;
}

/* line 1460, ../sass/style.scss */
.related-entry.content {
  padding: 0 30px 0 0;
}

/* line 1461, ../sass/style.scss */
.related-entry img {
  max-width: 100%;
  height: auto;
  margin-bottom: 20px;
}

/* line 1462, ../sass/style.scss */
.related-entry .title {
  font-size: 18px;
  line-height: 24px;
  color: #222;
  text-transform: uppercase;
  font-family: 'bold';
  display: block;
  margin-bottom: 20px;
}

/* line 1463, ../sass/style.scss */
.related-entry .description {
  font-size: 14px;
  line-height: 24px;
  color: #777;
}

/* line 1464, ../sass/style.scss */
.related-entry .blog-entry {
  background: none;
  border: none;
  box-shadow: none;
  -webkit-box-shadow: none;
}

/* line 1465, ../sass/style.scss */
.related-entry .author-entry {
  margin-bottom: 20px;
}

/* line 1466, ../sass/style.scss */
.back-button {
  margin-bottom: 35px;
  text-align: center;
}

/* line 1467, ../sass/style.scss */
.back-button .glyphicon {
  position: relative;
  top: 2px!important;
  margin-right: 7px;
  float: none!important;
  width: auto!important;
}

/* line 1468, ../sass/style.scss */
.new-block .article-thumbnails {
  margin-bottom: 20px!important;
}

/* line 1469, ../sass/style.scss */
.new-block .article-thumbnails img {
  float: left;
  width: 33.33%;
  height: auto;
  margin-bottom: 0!important;
}

/*comments*/
/* line 1472, ../sass/style.scss */
.blog-comments {
  margin-bottom: 70px;
}

/* line 1473, ../sass/style.scss */
.blog-comments .titel-left {
  margin-bottom: 60px!important;
  margin-left: 25px!important;
}

/* line 1474, ../sass/style.scss */
.blog-comments-container {
  margin-left: -160px;
}

/* line 1475, ../sass/style.scss */
.comment-entry {
  padding-top: 40px;
  margin-left: 120px;
  border-left: 1px #f2f2f2 solid;
  position: relative;
}

/* line 1476, ../sass/style.scss */
.comment-entry:before {
  content: "";
  position: absolute;
  width: 1px;
  background: #f2f2f2;
  height: 40px;
  left: 120px;
  top: 0;
}

/* line 1477, ../sass/style.scss */
.comment-entry .comment-entry:before {
  width: 40px;
  height: 1px;
  left: 0;
  top: 122px;
}

/* line 1478, ../sass/style.scss */
.comment-entry:first-child {
  padding-top: 0;
}

/* line 1479, ../sass/style.scss */
.blog-comments-container > .comment-entry {
  border: none;
}

/* line 1480, ../sass/style.scss */
.comment-entry:first-child:before {
  display: none;
}

/* line 1481, ../sass/style.scss */
.comment-image {
  width: 165px;
  float: left;
  margin-left: 40px;
}

/* line 1482, ../sass/style.scss */
.comment-image img {
  width: 100%;
  height: auto;
  display: block;
}

/* line 1483, ../sass/style.scss */
.comment-content {
  margin-left: 235px;
  padding-top: 20px;
}

/* line 1484, ../sass/style.scss */
.comment-content .name {
  font-size: 16px;
  line-height: 20px;
  color: #222;
  text-transform: uppercase;
  font-family: 'bold';
  margin-bottom: 10px;
  padding-right: 75px;
  position: relative;
}

/* line 1485, ../sass/style.scss */
.comment-content .name .reply {
  position: absolute;
  top: 0;
  right: 0;
  font-size: 11px;
  color: #d13237;
  text-transform: uppercase;
  font-family: 'bold';
  cursor: pointer;
}

/* line 1486, ../sass/style.scss */
.comment-content .name .reply span {
  font-size: 14px;
  position: relative;
  top: 2px;
  margin-right: 5px;
}

/* line 1487, ../sass/style.scss */
.comment-content .name .reply:hover {
  color: #777;
}

/* line 1488, ../sass/style.scss */
.comment-content .date {
  font-size: 11px;
  line-height: 14px;
  color: #cbcaca;
  text-transform: uppercase;
  font-family: 'bold';
  margin-bottom: 15px;
}

/* line 1489, ../sass/style.scss */
.comment-content .date .glyphicon {
  color: #d13237;
  font-size: 16px;
  position: relative;
  top: 2px;
  margin-right: 10px;
}

/* line 1490, ../sass/style.scss */
.comment-content .description {
  font-size: 14px;
  line-height: 24px;
  color: #777;
}

/* line 1491, ../sass/style.scss */
.comment-form {
  margin: 0 -2%;
}

/* line 1492, ../sass/style.scss */
.blog-content-column .comment-form {
  margin-top: -14px;
}

/*posts navigation*/
/* line 1495, ../sass/style.scss */
.posts-navigation {
  border-top: 1px solid #f2f2f2;
  margin-top: -1px;
}

/* line 1496, ../sass/style.scss */
.posts-navigation .thumbnail-image {
  width: 278px;
  float: left;
}

/* line 1497, ../sass/style.scss */
.posts-navigation .align-left {
  border-right: 1px solid #f2f2f2;
}

/* line 1498, ../sass/style.scss */
.posts-navigation .align-right .thumbnail-image {
  float: right;
}

/* line 1499, ../sass/style.scss */
.posts-navigation .description {
  margin-left: 315px;
  margin-right: 15px;
}

/* line 1500, ../sass/style.scss */
.posts-navigation .align-right .description {
  margin-left: 15px;
  margin-right: 315px;
}

/* line 1501, ../sass/style.scss */
.posts-navigation .thumbnail-image img {
  width: 100%;
  height: auto;
  display: block;
}

/* line 1502, ../sass/style.scss */
.posts-navigation .cell-view {
  height: 278px;
  width: 2000px;
}

/* line 1503, ../sass/style.scss */
.posts-navigation .align-right {
  text-align: right;
}

/* line 1504, ../sass/style.scss */
.posts-navigation .width-wrapper {
  float: left;
  width: 100%;
}

/* line 1505, ../sass/style.scss */
.posts-navigation .align-right .width-wrapper {
  float: right;
}

/* line 1506, ../sass/style.scss */
.posts-navigation .title {
  font-size: 24px;
  color: #222;
  line-height: 28px;
  display: block;
  text-transform: uppercase;
  font-family: 'bold';
  margin-bottom: 20px;
}

/* line 1507, ../sass/style.scss */
.posts-navigation .title:hover {
  color: #d13237;
}

/* line 1508, ../sass/style.scss */
.posts-navigation .data {
  font-size: 11px;
  line-height: 14px;
  color: #777;
  margin-bottom: 20px;
  font-family: 'bold';
}

/* line 1509, ../sass/style.scss */
.posts-navigation .data .block {
  display: inline-block;
  margin-right: 5px;
  width: auto;
}

/* line 1510, ../sass/style.scss */
.posts-navigation .data .glyphicon {
  font-size: 14px;
  color: #d13237;
  margin-right: 5px;
}

/* line 1511, ../sass/style.scss */
.posts-navigation .data .category {
  color: #d13237;
}

/* line 1512, ../sass/style.scss */
.posts-navigation .text {
  font-size: 13px;
  line-height: 24px;
  color: #777;
}

/* line 1513, ../sass/style.scss */
.small-button {
  font-size: 13px;
  line-height: 30px;
  color: #fff;
  font-family: 'bold';
  text-shadow: 1px 0 1px rgba(0, 0, 0, 0.1);
  text-transform: uppercase;
  padding: 3px 10px 0 10px;
  display: inline-block;
  background: #d13237;
}

/* line 1514, ../sass/style.scss */
.small-button:hover {
  color: #222;
  background: #f8f8f8;
}

/* line 1515, ../sass/style.scss */
.posts-navigation .small-button {
  margin-bottom: 25px;
}

@media (max-width: 991px) {
  /* line 1519, ../sass/style.scss */
  .blog-content-column:first-child {
    margin-bottom: 50px;
  }

  /* line 1520, ../sass/style.scss */
  .blog-post .thumbnail-entry .pagination {
    display: block;
  }

  /* line 1521, ../sass/style.scss */
  .blog-post {
    margin-bottom: 50px;
  }

  /* line 1522, ../sass/style.scss */
  .widget-entry {
    margin-bottom: 50px;
  }

  /* line 1523, ../sass/style.scss */
  .gallery-preview img {
    width: 16.6%;
  }
}
@media (max-width: 767px) {
  /* line 1526, ../sass/style.scss */
  .blog-comments {
    margin-bottom: 30px;
  }

  /* line 1527, ../sass/style.scss */
  .blog-post.detail-post, .related-posts {
    padding-bottom: 30px;
    margin-bottom: 30px;
  }

  /* line 1528, ../sass/style.scss */
  .share-post {
    text-align: left;
  }

  /* line 1529, ../sass/style.scss */
  .blog-comments-container {
    margin-left: -30px;
  }

  /* line 1530, ../sass/style.scss */
  .comment-entry {
    margin-left: 30px;
    border: none;
  }

  /* line 1531, ../sass/style.scss */
  .comment-entry:before {
    display: none;
  }

  /* line 1532, ../sass/style.scss */
  .comment-image {
    width: 100px;
    margin-left: 0;
  }

  /* line 1533, ../sass/style.scss */
  .comment-content {
    margin-left: 110px;
    padding-top: 0;
  }

  /* line 1534, ../sass/style.scss */
  .author-text .block {
    display: block;
  }

  /* line 1535, ../sass/style.scss */
  .author-entry .glyphicon {
    margin-left: 0;
  }

  /* line 1536, ../sass/style.scss */
  .posts-navigation {
    padding: 20px 0;
  }

  /* line 1537, ../sass/style.scss */
  .posts-navigation .thumbnail-image {
    display: none;
  }

  /* line 1538, ../sass/style.scss */
  .posts-navigation .description, .posts-navigation .align-right .description {
    margin: 0 15px 20px 15px;
    text-align: left;
  }

  /* line 1539, ../sass/style.scss */
  .posts-navigation .width-wrapper, .posts-navigation .align-right .width-wrapper {
    max-width: 100%;
    float: none;
  }

  /* line 1540, ../sass/style.scss */
  .posts-navigation .cell-view {
    height: auto;
  }
}
@media (max-width: 480px) {
  /* line 1543, ../sass/style.scss */
  .gallery-preview img {
    width: 25%;
  }

  /* line 1544, ../sass/style.scss */
  .blog-post .date {
    float: none;
    width: auto;
    text-align: left;
    margin-bottom: 10px;
  }

  /* line 1545, ../sass/style.scss */
  .blog-post .date br {
    display: none;
  }

  /* line 1546, ../sass/style.scss */
  .blog-post .date span {
    display: inline-block;
  }

  /* line 1547, ../sass/style.scss */
  .blog-post .text {
    margin-left: 0;
    padding: 0;
  }

  /* line 1548, ../sass/style.scss */
  .paginator ul {
    margin: 0;
  }

  /* line 1549, ../sass/style.scss */
  .blog-post .thumbnails, .blog-post .thumbnails * {
    padding: 0;
  }

  /* line 1550, ../sass/style.scss */
  .blog-post .thumbnails .entry {
    margin-top: 0;
  }

  /* line 1551, ../sass/style.scss */
  .blog-comments-container {
    margin-left: 0px;
  }

  /* line 1552, ../sass/style.scss */
  .comment-entry {
    margin-left: 0px;
  }
}
/*-------------------------------------------------------------------------------------------------------------------------------*/
/* 27 - POPUP "VIDEO" */
/*-------------------------------------------------------------------------------------------------------------------------------*/
/* line 1559, ../sass/style.scss */
.video-popup {
  position: fixed;
  left: -100%;
  top: 0px;
  width: 100%;
  height: 100%;
  z-index: 500;
}

/* line 1560, ../sass/style.scss */
.video-popup span {
  position: absolute;
  width: 50%;
  height: 50%;
  left: 0px;
  background: #000;
}

/* line 1561, ../sass/style.scss */
.video-popup span:nth-child(1) {
  top: -50%;
  left: -50%;
}

/* line 1562, ../sass/style.scss */
.video-popup span:nth-child(2) {
  bottom: -50%;
  left: -50%;
}

/* line 1563, ../sass/style.scss */
.video-popup span:nth-child(1):after {
  position: absolute;
  left: 300%;
  top: -100%;
  background: #000;
  width: 100%;
  height: 100%;
  content: "";
}

/* line 1564, ../sass/style.scss */
.video-popup span:nth-child(2):after {
  position: absolute;
  left: 300%;
  top: 0px;
  background: #000;
  width: 100%;
  height: 100%;
  content: "";
}

/* line 1565, ../sass/style.scss */
.video-popup.act-act {
  left: 0px;
}

/* line 1566, ../sass/style.scss */
.video-popup.act span:nth-child(1) {
  top: 0px;
  left: 0px;
}

/* line 1567, ../sass/style.scss */
.video-popup.act span:nth-child(1):after {
  left: 100%;
  top: 0px;
}

/* line 1568, ../sass/style.scss */
.video-popup.act span:nth-child(2) {
  bottom: 0px;
  left: 0px;
}

/* line 1569, ../sass/style.scss */
.video-popup.act span:nth-child(2):after {
  left: 100%;
  top: 0px;
}

/* line 1570, ../sass/style.scss */
.video-popup iframe {
  position: absolute;
  left: 0px;
  bottom: 0%;
  opacity: 0;
  width: 100%;
  height: 90%;
}

/* line 1571, ../sass/style.scss */
.video-popup iframe.act {
  opacity: 1;
}

/* line 1572, ../sass/style.scss */
.video-popup a {
  position: absolute;
  left: 0px;
  top: 0px;
  opacity: 0;
  width: 100%;
  height: 10%;
  text-align: center;
  cursor: pointer;
}

/* line 1573, ../sass/style.scss */
.video-popup a.act {
  opacity: 1;
}

/* line 1574, ../sass/style.scss */
.video-popup a:after {
  position: absolute;
  left: 0px;
  top: 50%;
  margin-top: -30px;
  height: 60px;
  content: "";
  color: #d13237;
  font-size: 60px;
  width: 100%;
  text-align: center;
  background: url(../img/theme-1/cross.png) no-repeat scroll 50% 50%;
}

/* line 1575, ../sass/style.scss */
.video-popup a:hover {
  background: #d13237;
  color: #fff;
}

/* line 1576, ../sass/style.scss */
.video-popup a:hover:after {
  color: #fff;
  background: url(../img/cross-act.png) no-repeat scroll 50% 50%;
}

@media (max-width: 991px) {
  /* line 1578, ../sass/style.scss */
  .video-popup {
    opacity: 0;
  }

  /* line 1579, ../sass/style.scss */
  .video-popup.act-act {
    opacity: 1;
  }
}
/*-------------------------------------------------------------------------------------------------------------------------------*/
/* 28 - POPUP "GALLERY" */
/*-------------------------------------------------------------------------------------------------------------------------------*/
/* line 1588, ../sass/style.scss */
.overflow-hidden {
  overflow: hidden;
}

/* line 1589, ../sass/style.scss */
.gallery-popup, .screen-preview-popup {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 12;
  transform: translateX(-100%);
  -moz-transform: translateX(-100%);
  -webkit-transform: translateX(-100%);
  -ms-transform: translateX(-100%);
  background: rgba(0, 0, 0, 0.8);
}

/*.gallery-popup .close-layer{position: absolute; left: 0; top: 0; width: 100%; height: 100%;}*/
/* line 1591, ../sass/style.scss */
.gallery-popup.active, .screen-preview-popup.active {
  transform: translateX(0%);
  -moz-transform: translateX(0%);
  -webkit-transform: translateX(0%);
  -ms-transform: translateX(0%);
}

/* line 1592, ../sass/style.scss */
.gallery-popup .overflow, .screen-preview-popup .overflow {
  position: absolute;
  top: 100px;
  bottom: 0;
  left: 0;
  right: 0;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  -moz-overflow-scrolling: touch;
  -o-overflow-scrolling: touch;
  -ms-overflow-scrolling: touch;
}

/* line 1593, ../sass/style.scss */
.gallery-popup .swiper-container {
  padding-bottom: 100px;
  padding-top: 50px;
}

/* line 1594, ../sass/style.scss */
.gallery-popup .image-container {
  width: 80%;
  max-width: 770px;
  margin: 0 auto;
}

/* line 1595, ../sass/style.scss */
.gallery-popup .image-container img {
  width: 100%;
  height: auto;
  display: block;
}

/* line 1596, ../sass/style.scss */
.gallery-popup .image-container .description {
  background: #fff;
  padding: 40px;
}

/* line 1597, ../sass/style.scss */
.gallery-popup .image-container .title {
  font-size: 18px;
  line-height: 28px;
  color: #222;
  text-transform: uppercase;
  font-family: 'bold';
  margin-bottom: 22px;
}

/* line 1598, ../sass/style.scss */
.gallery-popup .image-container .text {
  font-size: 14px;
  line-height: 24px;
  color: #777;
}

/* line 1599, ../sass/style.scss */
.gallery-popup .close-popup, .screen-preview-popup .close-popup {
  position: absolute;
  top: 0;
  right: 0;
  z-index: 1;
  color: #d13237;
  font-size: 30px;
  line-height: 50px;
  width: 50px;
  text-align: center;
  cursor: pointer;
  width: 100%;
  height: 100px;
  text-align: center;
  line-height: 100px;
  background: #000;
}

/* line 1600, ../sass/style.scss */
.gallery-popup .close-popup:hover, .screen-preview-popup .close-popup:hover {
  background: #d13237;
  color: #fff;
}

/* line 1601, ../sass/style.scss */
.gallery-popup .close-popup:active span {
  transform: scale(0.8);
  -moz-transform: scale(0.8);
  -webkit-transform: scale(0.8);
  -ms-transform: scale(0.8);
}

/* line 1602, ../sass/style.scss */
.gallery-popup .default-arrow {
  margin-top: 24px;
  z-index: 1;
}

/* line 1603, ../sass/style.scss */
.screen-preview-popup {
  text-align: center;
}

/* line 1604, ../sass/style.scss */
.screen-preview-popup img {
  max-width: 100%;
  height: auto;
  display: inline-block;
  vertical-align: bottom;
}

@media (max-width: 991px) {
  /* line 1606, ../sass/style.scss */
  .gallery-popup .default-arrow.left {
    display: block;
    left: 3%;
  }

  /* line 1607, ../sass/style.scss */
  .gallery-popup .default-arrow.right {
    display: block;
    right: 3%;
  }
}
@media (max-width: 767px) {
  /* line 1610, ../sass/style.scss */
  .gallery-popup .image-container .description {
    padding: 30px 20px;
  }
}
/*-------------------------------------------------------------------------------------------------------------------------------*/
/* 29 - TYPOGRAPHY */
/*-------------------------------------------------------------------------------------------------------------------------------*/
/* line 1617, ../sass/style.scss */
.typography-article {
  margin-bottom: 30px;
  font-size: 16px;
  line-height: 28px;
}

/* line 1618, ../sass/style.scss */
.typography-article.small-font {
  font-size: 14px;
  line-height: 24px;
}

/* line 1619, ../sass/style.scss */
.typography-article * {
  color: #777;
}

/* line 1620, ../sass/style.scss */
.color-background .typography-article * {
  color: #fff;
}

/* line 1621, ../sass/style.scss */
.typography-article h1 {
  font-size: 60px;
  line-height: 60px;
  font-family: 'bold';
  text-transform: uppercase;
  margin-bottom: 20px!important;
  color: #222;
}

/* line 1622, ../sass/style.scss */
.typography-article h2 {
  font-size: 46px;
  line-height: 46px;
  font-family: 'bold';
  text-transform: uppercase;
  margin-bottom: 20px!important;
  color: #222;
}

/* line 1623, ../sass/style.scss */
.typography-article h3 {
  font-size: 30px;
  line-height: 30px;
  font-family: 'bold';
  text-transform: uppercase;
  margin-bottom: 20px!important;
  color: #222;
}

/* line 1624, ../sass/style.scss */
.typography-article h4 {
  font-size: 20px;
  line-height: 20px;
  font-family: 'bold';
  text-transform: uppercase;
  margin-bottom: 11px!important;
  color: #222;
}

/* line 1625, ../sass/style.scss */
.typography-article h5 {
  font-size: 18px;
  line-height: 18px;
  font-family: 'bold';
  text-transform: uppercase;
  margin-bottom: 11px!important;
  color: #222;
}

/* line 1626, ../sass/style.scss */
.typography-article h6 {
  font-size: 16px;
  line-height: 16px;
  font-family: 'bold';
  text-transform: uppercase;
  margin-bottom: 11px!important;
  color: #222;
}

/* line 1627, ../sass/style.scss */
.typography-article p, .typography-article ul, .typography-article ol, .typography-article .table-responsive {
  color: #777;
  margin-bottom: 24px;
}

/* line 1628, ../sass/style.scss */
.typography-article ul li, .typography-article ol li {
  padding-top: 4px;
  padding-bottom: 4px;
  font-size: 14px;
  line-height: 24px;
}

/* line 1629, ../sass/style.scss */
.typography-article ol {
  counter-reset: number;
  list-style: outside none none;
}

/* line 1630, ../sass/style.scss */
.typography-article ol li::before {
  color: #fff;
  content: counter(number, decimal);
  counter-increment: number;
  font-family: "bold";
  margin-right: 15px;
  width: 17px;
  height: 17px;
  display: inline-block;
  text-align: center;
  font-size: 10px;
  line-height: 17px;
  background: #d13237;
  position: relative;
  top: -3px;
}

/* line 1631, ../sass/style.scss */
.typography-article ul.list-style-3 li {
  padding-left: 20px;
}

/* line 1632, ../sass/style.scss */
.typography-article ul.list-style-3 li:before {
  width: 7px;
  height: 2px;
  position: absolute;
  left: 0;
  content: "";
  top: 14px;
  background: #d13237;
}

/* line 1633, ../sass/style.scss */
.typography-article ul.list-style-3 li:after {
  display: none;
}

/**/
/* line 1635, ../sass/style.scss */
.message-box-entry {
  font-size: 14px;
  line-height: 24px;
  position: relative;
  margin-bottom: 30px;
}

/* line 1636, ../sass/style.scss */
.message-box-entry.style-1 {
  background: #d13237;
  color: rgba(255, 255, 255, 0.8);
  box-shadow: 3px 4px 10px rgba(0, 0, 0, 0.1);
  padding: 30px;
}

/* line 1637, ../sass/style.scss */
.message-box-entry.style-1:before {
  width: 5px;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  content: "";
  background: #daa508;
}

/* line 1638, ../sass/style.scss */
.message-box-entry.style-2 {
  background: #222;
  color: #c9c9c9;
  box-shadow: 3px 4px 10px rgba(0, 0, 0, 0.1);
  padding: 30px;
}

/* line 1639, ../sass/style.scss */
.message-box-entry.style-2:before {
  width: 5px;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  content: "";
  background: #000;
}

/* line 1640, ../sass/style.scss */
.message-box-entry.style-3 {
  background: #fff;
  border: 5px #d13237 solid;
  color: #d13237;
  padding: 25px;
}

/* line 1641, ../sass/style.scss */
.message-box-entry .close-box {
  position: absolute;
  top: 5px;
  right: 5px;
  font-size: 18px;
  width: 20px;
  line-height: 20px;
  text-align: center;
  cursor: pointer;
  font-family: 'bold';
}

/**/
/* line 1643, ../sass/style.scss */
.typography-article .table {
  font-size: 14px;
  line-height: 24px;
  width: 100%;
  text-align: center;
}

/* line 1644, ../sass/style.scss */
.typography-article .table th {
  font-size: 16px;
  line-height: 20px;
  color: #fff;
  font-family: 'bold';
  text-transform: uppercase;
  padding: 15px 25px;
  background: #d13237;
  text-align: center;
}

/* line 1645, ../sass/style.scss */
.typography-article .table td {
  padding: 15px 25px;
  border-bottom: 1px #f2f2f2 solid;
  background: #fbfbfb;
}

/* line 1646, ../sass/style.scss */
.typography-article .table td:first-child {
  font-family: 'bold';
}

/* line 1647, ../sass/style.scss */
.typography-article .table tr:nth-child(2n) td {
  background: #fff;
}

/* line 1648, ../sass/style.scss */
.typography-article .table td:first-child, .typography-article .table th:first-child {
  text-align: left;
}

/**/
/* line 1650, ../sass/style.scss */
.default-arrow.simple-arrow {
  position: relative;
  left: auto;
  right: auto;
  top: auto;
  bottom: auto;
  margin-right: 20px;
  display: inline-block;
}

/* line 1651, ../sass/style.scss */
.default-arrow.black {
  background: #222;
  box-shadow: none;
}

/* line 1652, ../sass/style.scss */
.default-arrow.black:hover {
  color: #000;
}

/* line 1653, ../sass/style.scss */
.default-arrow.black span {
  color: #d13237;
}

/* line 1654, ../sass/style.scss */
.default-arrow.black:hover span {
  color: #fff;
}

/**/
/* line 1656, ../sass/style.scss */
.checkbox-entry {
  margin: 0 0 10px 0!important;
  float: left;
  clear: both;
}

/* line 1657, ../sass/style.scss */
.checkbox-entry input {
  position: absolute;
  left: -30px;
  display: none;
}

/* line 1658, ../sass/style.scss */
.checkbox-entry label {
  font-size: 14px;
  color: #777;
  line-height: 20px;
  display: block;
  padding-left: 30px;
  position: relative;
  cursor: pointer;
  position: relative;
}

/* line 1659, ../sass/style.scss */
.checkbox-entry label:before {
  position: absolute;
  content: "";
  left: 0px;
  top: 0;
  width: 20px;
  height: 20px;
  border: 1px #edecec solid;
  background: #fbfbfb;
}

/* line 1660, ../sass/style.scss */
.checkbox-entry.active label:before {
  background-color: #fff;
  border: 2px #d13237 solid;
}

/* line 1661, ../sass/style.scss */
.checkbox-entry.active label:after {
  content: "";
  width: 5px;
  height: 10px;
  border: 2px #d13237 solid;
  border-bottom: none;
  border-right: none;
  position: absolute;
  left: 8px;
  top: 3px;
  transform: rotate(-135deg);
  -moz-transform: rotate(-135deg);
  -webkit-transform: rotate(-135deg);
  -ms-transform: rotate(-135deg);
}

/* line 1662, ../sass/style.scss */
.checkbox-entry.radio label:before {
  -webkit-border-radius: 10px;
  border-radius: 10px;
  background-color: #fff;
}

/* line 1663, ../sass/style.scss */
.checkbox-entry.active.radio label:after {
  -webkit-border-radius: 10px;
  border-radius: 10px;
  position: absolute;
  width: 8px;
  height: 8px;
  background: #d13237;
  left: 6px;
  top: 50%;
  margin-top: -4px;
  content: "";
}

/*-------------------------------------------------------------------------------------------------------------------------------*/
/* 30 - THEME CONFIG */
/*-------------------------------------------------------------------------------------------------------------------------------*/
/* line 1669, ../sass/style.scss */
.theme-config {
  position: fixed;
  left: -152px;
  top: 50%;
  transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  width: 152px;
  min-height: 50px;
  background: #fff;
  border: 1px #e7e7e7 solid;
  z-index: 10;
  border-radius: 0 5px 5px 0;
  -webkit-border-radius: 0 5px 5px 0;
  padding: 10px;
}

/* line 1670, ../sass/style.scss */
.theme-config.active {
  left: 0;
}

/* line 1671, ../sass/style.scss */
.theme-config .open {
  position: absolute;
  width: 60px;
  height: 60px;
  background: #fff;
  border: 1px #e7e7e7 solid;
  border-left: none;
  left: 100%;
  top: 50%;
  margin-top: -30px;
  cursor: pointer;
  border-radius: 0 5px 5px 0;
  -webkit-border-radius: 0 5px 5px 0;
}

/* line 1672, ../sass/style.scss */
.theme-config .open img {
  -webkit-backface-visibility: hidden;
}

/* line 1673, ../sass/style.scss */
.theme-config .open img:nth-child(1) {
  position: absolute;
  left: 5px;
  top: 5px;
  width: 32px;
  height: auto;
}

/* line 1674, ../sass/style.scss */
.theme-config .open img:nth-child(2) {
  position: absolute;
  left: 33px;
  top: 23px;
  width: 22px;
  height: auto;
}

/* line 1675, ../sass/style.scss */
.theme-config .open img:nth-child(3) {
  position: absolute;
  left: 23px;
  top: 40px;
  width: 15px;
  height: auto;
}

/* line 1676, ../sass/style.scss */
.theme-config .open:hover img {
  transform: rotate(-180deg);
  -moz-transform: rotate(-180deg);
  -webkit-transform: rotate(-180deg);
  -ms-transform: rotate(-180deg);
}

/* line 1677, ../sass/style.scss */
.theme-config .open:hover img:nth-child(2) {
  transform: rotate(180deg);
  -moz-transform: rotate(180deg);
  -webkit-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
}

/* line 1678, ../sass/style.scss */
.theme-config .title {
  color: #232c3b;
  font-size: 14px;
  line-height: 14px;
  margin-bottom: 10px;
  font-family: "bold", sans-serif, Arial;
  text-transform: uppercase;
  padding-bottom: 7px;
  position: relative;
  margin: 5px 10px 5px 10px;
}

/* line 1679, ../sass/style.scss */
.theme-config .title:before {
  position: absolute;
  content: "";
  left: 0;
  bottom: 0;
  height: 5px;
  width: 100%;
  background: #d13237;
}

/* line 1680, ../sass/style.scss */
.theme-config .colours-wrapper .entry {
  height: 45px;
  width: 45px;
  margin: 10px;
  cursor: pointer;
  position: relative;
  float: left;
  background: currentColor;
}

/* line 1681, ../sass/style.scss */
.theme-config .colours-wrapper .entry:after {
  position: absolute;
  left: -5px;
  top: -5px;
  right: -5px;
  bottom: -5px;
  border: 3px currentColor solid;
  content: "";
  opacity: 0;
}

/* line 1682, ../sass/style.scss */
.theme-config .colours-wrapper .entry.active:after {
  opacity: 1;
}

/* line 1683, ../sass/style.scss */
.theme-config .colours-wrapper .entry:last-child {
  margin-bottom: 0;
}

/*theme 2*/
/* line 1686, ../sass/style.scss */
body[data-theme="theme-2"] nav .submeny a:after {
  border-top-color: #00bbd2;
}

/* line 1687, ../sass/style.scss */
body[data-theme="theme-2"] .play::after {
  border-left-color: #00bbd2;
}

/* line 1688, ../sass/style.scss */
body[data-theme="theme-2"] .play:hover::after {
  border-left-color: #fff;
}

/* line 1689, ../sass/style.scss */
body[data-theme="theme-2"] #loader-wrapper span, body[data-theme="theme-2"] .play:hover, body[data-theme="theme-2"] .blog-post .date, body[data-theme="theme-2"] .blog-post .thumbnail-entry blockquote, body[data-theme="theme-2"] .button.type-1:after, body[data-theme="theme-2"] .checkbox-entry.active label:before, body[data-theme="theme-2"] .checkbox-entry.active label:after, body[data-theme="theme-2"] .message-box-entry.style-3, body[data-theme="theme-2"] .responsive-filtration-title {
  border-color: #00bbd2;
}

/* line 1690, ../sass/style.scss */
body[data-theme="theme-2"] .styled-form .submit-wrapper:hover {
  background-color: #00bbd2;
}

/* line 1691, ../sass/style.scss */
body[data-theme="theme-2"] .teaser-date-circles .date-square .circle-box svg circle {
  stroke: #00bbd2;
}

/* line 1693, ../sass/style.scss */
body[data-theme="theme-2"] nav a.act, body[data-theme="theme-2"] nav a:hover, body[data-theme="theme-2"] .button, body[data-theme="theme-2"] nav .submeny:hover .submeny-top, body[data-theme="theme-2"] header.act nav a:hover, body[data-theme="theme-2"] header.act nav a.act, body[data-theme="theme-2"] .titel-left:after, body[data-theme="theme-2"] .titel-top:after, body[data-theme="theme-2"] .swiper-active-switch, body[data-theme="theme-2"] ul li:after, body[data-theme="theme-2"] .block.type-6, body[data-theme="theme-2"] .video-popup a:hover, body[data-theme="theme-2"] .play:hover, body[data-theme="theme-2"] .mob-icon span, body[data-theme="theme-2"] .mob-icon span:before, body[data-theme="theme-2"] .mob-icon span:after, body[data-theme="theme-2"] .default-arrow, body[data-theme="theme-2"] .page-tagline .title:before, body[data-theme="theme-2"] .accordeon .entry.active, body[data-theme="theme-2"] .new-block.color-background, body[data-theme="theme-2"] .sorting-menu a.active, body[data-theme="theme-2"] .sorting-menu a:hover, body[data-theme="theme-2"] .banner-tabs span.title:before, body[data-theme="theme-2"] .new-block.type-10 .image-socials-box, body[data-theme="theme-2"] .tags-container a:hover, body[data-theme="theme-2"] .paginator ul li a.active, body[data-theme="theme-2"] .paginator ul li a:hover, body[data-theme="theme-2"] .blog-post.style-2 .date, body[data-theme="theme-2"] .share-post a:hover, body[data-theme="theme-2"] .blog-post .thumbnail-entry blockquote.style-2:before, body[data-theme="theme-2"] .small-button, body[data-theme="theme-2"] .widget-entry .social-icons a, body[data-theme="theme-2"] .button.type-1:hover, body[data-theme="theme-2"] .checkbox-entry.active.radio label:after, body[data-theme="theme-2"] .typography-article ol li:before, body[data-theme="theme-2"] .typography-article ul.list-style-3 li:before, body[data-theme="theme-2"] .message-box-entry.style-1, body[data-theme="theme-2"] .typography-article .table th, body[data-theme="theme-2"] .mouse-icon:before, body[data-theme="theme-2"] .back-to-top {
  background: #00bbd2;
}

/* line 1694, ../sass/style.scss */
body[data-theme="theme-2"] .numbers .num, body[data-theme="theme-2"] .button.black, body[data-theme="theme-2"] .default-arrow:hover span, body[data-theme="theme-2"] .new-block.type-18 .tabs-switch.active, body[data-theme="theme-2"] .new-block.type-18 .tabs-switch:hover, body[data-theme="theme-2"] .compare-column-entry .price, body[data-theme="theme-2"] .blog-entry .post-data, body[data-theme="theme-2"] .blog-entry .post-data a, body[data-theme="theme-2"] .blog-entry .title:hover, body[data-theme="theme-2"] .banner-tabs span.title, body[data-theme="theme-2"] .banner-tabs .entry:hover span.description, body[data-theme="theme-2"] .new-block.color-background, body[data-theme="theme-2"] .new-block.type-14 .tabs-switch.active span, body[data-theme="theme-2"] .new-block.type-10 .position, body[data-theme="theme-2"] .popular-post-entry .content .date, body[data-theme="theme-2"] .popular-post-entry .content .title:hover, body[data-theme="theme-2"] .categories-wrapper .entry:hover, body[data-theme="theme-2"] .categories-wrapper .entry .number, body[data-theme="theme-2"] .blog-post .title:hover, body[data-theme="theme-2"] .blog-post .thumbnail-entry blockquote cite, body[data-theme="theme-2"] .categories-wrapper .sub-wrapper a span, body[data-theme="theme-2"] .categories-wrapper .entry.toggle .glyphicon:before, body[data-theme="theme-2"] .latest-comment-entry .date .glyphicon, body[data-theme="theme-2"] .latest-comment-entry .title .name, body[data-theme="theme-2"] .latest-comment-entry .title .post-title:hover, body[data-theme="theme-2"] .arrow-button:hover, body[data-theme="theme-2"] .footer-bottom .footer-linck a:hover, body[data-theme="theme-2"] .accordeon .entry .title span, body[data-theme="theme-2"] .accordeon .entry .title:hover, body[data-theme="theme-2"] .author-text .category, body[data-theme="theme-2"] .author-entry .glyphicon, body[data-theme="theme-2"] .titel-left span, body[data-theme="theme-2"] .comment-content .name .reply, body[data-theme="theme-2"] .comment-content .date .glyphicon, body[data-theme="theme-2"] .posts-navigation .data .glyphicon, body[data-theme="theme-2"] .posts-navigation .data .category, body[data-theme="theme-2"] .posts-navigation .data .category, body[data-theme="theme-2"] .search-form .search-submit, body[data-theme="theme-2"] .tweet-entry a, body[data-theme="theme-2"] .widget-entry .tabs-switch.active, body[data-theme="theme-2"] .button.type-1, body[data-theme="theme-2"] .default-arrow.black span, body[data-theme="theme-2"] .message-box-entry.style-3, body[data-theme="theme-2"] .responsive-filtration-title .glyphicon, body[data-theme="theme-2"].teaser .teaser-date .date-square p, body[data-theme="theme-2"] .teaser-copyright .copyright a, body[data-theme="theme-2"] .content-404 .title, body[data-theme="theme-2"] .content-404 .description a, body[data-theme="theme-2"] .phone-icons-description .entry:hover .title {
  color: #00bbd2;
}

/* line 1696, ../sass/style.scss */
body[data-theme="theme-2"] .comment-content .name .reply:hover {
  color: #777;
}

/* line 1697, ../sass/style.scss */
body[data-theme="theme-2"] .widget-entry .social-icons a:hover {
  background: #777;
}

/* line 1698, ../sass/style.scss */
body[data-theme="theme-2"] .button.type-1:hover, body[data-theme="theme-2"] .default-arrow.black:hover span {
  color: #fff;
}

/* line 1699, ../sass/style.scss */
body[data-theme="theme-2"] .default-arrow:hover {
  background: #fff;
}

/* line 1700, ../sass/style.scss */
body[data-theme="theme-2"] .default-arrow.black {
  background: #222;
}

/* line 1701, ../sass/style.scss */
body[data-theme="theme-2"] .color-background .page-tagline .title:before {
  background: #fff;
}

/* line 1702, ../sass/style.scss */
body[data-theme="theme-2"] .sorting-item .tagline {
  background: rgba(0, 187, 210, 0.8);
}

/* line 1703, ../sass/style.scss */
body[data-theme="theme-2"] .gallery-popup .close-popup, body[data-theme="theme-2"] .screen-preview-popup .close-popup {
  color: #00bbd2;
}

/* line 1704, ../sass/style.scss */
body[data-theme="theme-2"] .gallery-popup .close-popup:hover, body[data-theme="theme-2"] .screen-preview-popup .close-popup:hover {
  background: #00bbd2;
  color: #fff;
}

/* line 1705, ../sass/style.scss */
body[data-theme="theme-2"] .accordeon .entry.active .title span {
  color: rgba(255, 255, 255, 0.8);
}

/* line 1706, ../sass/style.scss */
body[data-theme="theme-2"] .blog-post.style-2 .date:before {
  border-color: transparent transparent transparent #00bbd2;
}

/* line 1707, ../sass/style.scss */
body[data-theme="theme-2"] .small-button:hover {
  background: #f8f8f8;
}

/* line 1708, ../sass/style.scss */
body[data-theme="theme-2"] .button.type-1 {
  background: #fff;
}

/* line 1710, ../sass/style.scss */
body[data-theme="theme-2"] .default-arrow.left {
  -webkit-box-shadow: 3px 4px 10px rgba(0, 0, 0, 0.1), inset -3px 0 #009fb3;
  box-shadow: 3px 4px 10px rgba(0, 0, 0, 0.1), inset -3px 0 #009fb3;
}

/* line 1711, ../sass/style.scss */
body[data-theme="theme-2"] .default-arrow.right {
  -webkit-box-shadow: -4px 3px 10px rgba(0, 0, 0, 0.1), inset 3px 0 #009fb3;
  box-shadow: -4px 3px 10px rgba(0, 0, 0, 0.1), inset 3px 0 #009fb3;
}

/* line 1712, ../sass/style.scss */
body[data-theme="theme-2"] .blog-post.style-2 .date {
  -webkit-box-shadow: 3px 0 #009fb3 inset;
  box-shadow: 3px 0 #009fb3 inset;
}

/* line 1713, ../sass/style.scss */
body[data-theme="theme-2"] .accordeon .entry.active {
  -webkit-box-shadow: inset -5px 0 #009fb3;
  box-shadow: inset -5px 0 #009fb3;
}

/* line 1714, ../sass/style.scss */
body[data-theme="theme-2"] .message-box-entry.style-1:before {
  background: #009fb3;
}

/* line 1716, ../sass/style.scss */
body[data-theme="theme-2"] .subscribe form input[type="submit"] {
  background-image: url(../img/theme-2/icon9.png);
}

/* line 1717, ../sass/style.scss */
body[data-theme="theme-2"] .video-popup a:after {
  background-image: url(../img/theme-2/cross.png);
}

/* line 1718, ../sass/style.scss */
body[data-theme="theme-2"] .video-popup a:hover:after {
  background-image: url(../img/cross-act.png);
}

/* line 1719, ../sass/style.scss */
body[data-theme="theme-2"] .testimonials-slider .blockquote-wrapper {
  background-image: url(../img/theme-2/blockquote-bg.png);
}

/* line 1720, ../sass/style.scss */
body[data-theme="theme-2"] .blog-post .thumbnail-entry blockquote {
  background-image: url(../img/theme-2/blockquote-bg-1.png);
}

/* line 1721, ../sass/style.scss */
body[data-theme="theme-2"] .blog-post .thumbnail-entry blockquote.style-2 {
  background: none;
}

/* line 1722, ../sass/style.scss */
body[data-theme="theme-2"] .list-style-2 li {
  background-image: url(../img/theme-2/list-bg-style-2.png);
}

/* line 1723, ../sass/style.scss */
body[data-theme="theme-2"] .widget-testimonial .text {
  background-image: url(../img/theme-2/blockquote-bg.png);
}

/* line 1724, ../sass/style.scss */
body[data-theme="theme-2"] .styled-form .submit-wrapper {
  background-image: url(../img/theme-2/icon9.png);
}

/*theme 3*/
/* line 1728, ../sass/style.scss */
body[data-theme="theme-3"] nav .submeny a:after {
  border-top-color: #4caf50;
}

/* line 1729, ../sass/style.scss */
body[data-theme="theme-3"] .play::after {
  border-left-color: #4caf50;
}

/* line 1730, ../sass/style.scss */
body[data-theme="theme-3"] .play:hover::after {
  border-left-color: #fff;
}

/* line 1731, ../sass/style.scss */
body[data-theme="theme-3"] #loader-wrapper span, body[data-theme="theme-3"] .play:hover, body[data-theme="theme-3"] .blog-post .date, body[data-theme="theme-3"] .blog-post .thumbnail-entry blockquote, body[data-theme="theme-3"] .button.type-1:after, body[data-theme="theme-3"] .checkbox-entry.active label:before, body[data-theme="theme-3"] .checkbox-entry.active label:after, body[data-theme="theme-3"] .message-box-entry.style-3, body[data-theme="theme-3"] .responsive-filtration-title {
  border-color: #4caf50;
}

/* line 1732, ../sass/style.scss */
body[data-theme="theme-3"] .styled-form .submit-wrapper:hover {
  background-color: #4caf50;
}

/* line 1733, ../sass/style.scss */
body[data-theme="theme-3"] .teaser-date-circles .date-square .circle-box svg circle {
  stroke: #4caf50;
}

/* line 1735, ../sass/style.scss */
body[data-theme="theme-3"] nav a.act, body[data-theme="theme-3"] nav a:hover, body[data-theme="theme-3"] .button, body[data-theme="theme-3"] nav .submeny:hover .submeny-top, body[data-theme="theme-3"] header.act nav a:hover, body[data-theme="theme-3"] header.act nav a.act, body[data-theme="theme-3"] .titel-left:after, body[data-theme="theme-3"] .titel-top:after, body[data-theme="theme-3"] .swiper-active-switch, body[data-theme="theme-3"] ul li:after, body[data-theme="theme-3"] .block.type-6, body[data-theme="theme-3"] .video-popup a:hover, body[data-theme="theme-3"] .play:hover, body[data-theme="theme-3"] .mob-icon span, body[data-theme="theme-3"] .mob-icon span:before, body[data-theme="theme-3"] .mob-icon span:after, body[data-theme="theme-3"] .default-arrow, body[data-theme="theme-3"] .page-tagline .title:before, body[data-theme="theme-3"] .accordeon .entry.active, body[data-theme="theme-3"] .new-block.color-background, body[data-theme="theme-3"] .sorting-menu a.active, body[data-theme="theme-3"] .sorting-menu a:hover, body[data-theme="theme-3"] .banner-tabs span.title:before, body[data-theme="theme-3"] .new-block.type-10 .image-socials-box, body[data-theme="theme-3"] .tags-container a:hover, body[data-theme="theme-3"] .paginator ul li a.active, body[data-theme="theme-3"] .paginator ul li a:hover, body[data-theme="theme-3"] .blog-post.style-2 .date, body[data-theme="theme-3"] .share-post a:hover, body[data-theme="theme-3"] .blog-post .thumbnail-entry blockquote.style-2:before, body[data-theme="theme-3"] .small-button, body[data-theme="theme-3"] .widget-entry .social-icons a, body[data-theme="theme-3"] .button.type-1:hover, body[data-theme="theme-3"] .checkbox-entry.active.radio label:after, body[data-theme="theme-3"] .typography-article ol li:before, body[data-theme="theme-3"] .typography-article ul.list-style-3 li:before, body[data-theme="theme-3"] .message-box-entry.style-1, body[data-theme="theme-3"] .typography-article .table th, body[data-theme="theme-3"] .mouse-icon:before, body[data-theme="theme-3"] .back-to-top {
  background: #4caf50;
}

/* line 1736, ../sass/style.scss */
body[data-theme="theme-3"] .numbers .num, body[data-theme="theme-3"] .button.black, body[data-theme="theme-3"] .default-arrow:hover span, body[data-theme="theme-3"] .new-block.type-18 .tabs-switch.active, body[data-theme="theme-3"] .new-block.type-18 .tabs-switch:hover, body[data-theme="theme-3"] .compare-column-entry .price, body[data-theme="theme-3"] .blog-entry .post-data, body[data-theme="theme-3"] .blog-entry .post-data a, body[data-theme="theme-3"] .blog-entry .title:hover, body[data-theme="theme-3"] .banner-tabs span.title, body[data-theme="theme-3"] .banner-tabs .entry:hover span.description, body[data-theme="theme-3"] .new-block.color-background, body[data-theme="theme-3"] .new-block.type-14 .tabs-switch.active span, body[data-theme="theme-3"] .new-block.type-10 .position, body[data-theme="theme-3"] .popular-post-entry .content .date, body[data-theme="theme-3"] .popular-post-entry .content .title:hover, body[data-theme="theme-3"] .categories-wrapper .entry:hover, body[data-theme="theme-3"] .categories-wrapper .entry .number, body[data-theme="theme-3"] .blog-post .title:hover, body[data-theme="theme-3"] .blog-post .thumbnail-entry blockquote cite, body[data-theme="theme-3"] .categories-wrapper .sub-wrapper a span, body[data-theme="theme-3"] .categories-wrapper .entry.toggle .glyphicon:before, body[data-theme="theme-3"] .latest-comment-entry .date .glyphicon, body[data-theme="theme-3"] .latest-comment-entry .title .name, body[data-theme="theme-3"] .latest-comment-entry .title .post-title:hover, body[data-theme="theme-3"] .arrow-button:hover, body[data-theme="theme-3"] .footer-bottom .footer-linck a:hover, body[data-theme="theme-3"] .accordeon .entry .title span, body[data-theme="theme-3"] .accordeon .entry .title:hover, body[data-theme="theme-3"] .author-text .category, body[data-theme="theme-3"] .author-entry .glyphicon, body[data-theme="theme-3"] .titel-left span, body[data-theme="theme-3"] .comment-content .name .reply, body[data-theme="theme-3"] .comment-content .date .glyphicon, body[data-theme="theme-3"] .posts-navigation .data .glyphicon, body[data-theme="theme-3"] .posts-navigation .data .category, body[data-theme="theme-3"] .posts-navigation .data .category, body[data-theme="theme-3"] .search-form .search-submit, body[data-theme="theme-3"] .tweet-entry a, body[data-theme="theme-3"] .widget-entry .tabs-switch.active, body[data-theme="theme-3"] .button.type-1, body[data-theme="theme-3"] .default-arrow.black span, body[data-theme="theme-3"] .message-box-entry.style-3, body[data-theme="theme-3"] .responsive-filtration-title .glyphicon, body[data-theme="theme-3"] .posts-navigation .title:hover, body[data-theme="theme-3"].teaser .teaser-date .date-square p, body[data-theme="theme-3"] .teaser-copyright .copyright a, body[data-theme="theme-3"] .content-404 .title, body[data-theme="theme-3"] .content-404 .description a, body[data-theme="theme-3"] .phone-icons-description .entry:hover .title {
  color: #4caf50;
}

/* line 1738, ../sass/style.scss */
body[data-theme="theme-3"] .comment-content .name .reply:hover {
  color: #777;
}

/* line 1739, ../sass/style.scss */
body[data-theme="theme-3"] .widget-entry .social-icons a:hover {
  background: #777;
}

/* line 1740, ../sass/style.scss */
body[data-theme="theme-3"] .button.type-1:hover, body[data-theme="theme-3"] .default-arrow.black:hover span {
  color: #fff;
}

/* line 1741, ../sass/style.scss */
body[data-theme="theme-3"] .default-arrow:hover {
  background: #fff;
}

/* line 1742, ../sass/style.scss */
body[data-theme="theme-3"] .default-arrow.black {
  background: #222;
}

/* line 1743, ../sass/style.scss */
body[data-theme="theme-3"] .color-background .page-tagline .title:before {
  background: #fff;
}

/* line 1744, ../sass/style.scss */
body[data-theme="theme-3"] .sorting-item .tagline {
  background: rgba(76, 175, 80, 0.8);
}

/* line 1745, ../sass/style.scss */
body[data-theme="theme-3"] .gallery-popup .close-popup, body[data-theme="theme-3"] .screen-preview-popup .close-popup {
  color: #4caf50;
}

/* line 1746, ../sass/style.scss */
body[data-theme="theme-3"] .gallery-popup .close-popup:hover, body[data-theme="theme-3"] .screen-preview-popup .close-popup:hover {
  background: #4caf50;
  color: #fff;
}

/* line 1747, ../sass/style.scss */
body[data-theme="theme-3"] .accordeon .entry.active .title span {
  color: rgba(255, 255, 255, 0.8);
}

/* line 1748, ../sass/style.scss */
body[data-theme="theme-3"] .blog-post.style-2 .date:before {
  border-color: transparent transparent transparent #4caf50;
}

/* line 1749, ../sass/style.scss */
body[data-theme="theme-3"] .small-button:hover {
  background: #f8f8f8;
}

/* line 1750, ../sass/style.scss */
body[data-theme="theme-3"] .button.type-1 {
  background: #fff;
}

/* line 1752, ../sass/style.scss */
body[data-theme="theme-3"] .default-arrow.left {
  -webkit-box-shadow: 3px 4px 10px rgba(0, 0, 0, 0.1), inset -3px 0 #419544;
  box-shadow: 3px 4px 10px rgba(0, 0, 0, 0.1), inset -3px 0 #419544;
}

/* line 1753, ../sass/style.scss */
body[data-theme="theme-3"] .default-arrow.right {
  -webkit-box-shadow: -4px 3px 10px rgba(0, 0, 0, 0.1), inset 3px 0 #419544;
  box-shadow: -4px 3px 10px rgba(0, 0, 0, 0.1), inset 3px 0 #419544;
}

/* line 1754, ../sass/style.scss */
body[data-theme="theme-3"] .blog-post.style-2 .date {
  -webkit-box-shadow: 3px 0 #419544 inset;
  box-shadow: 3px 0 #419544 inset;
}

/* line 1755, ../sass/style.scss */
body[data-theme="theme-3"] .accordeon .entry.active {
  -webkit-box-shadow: inset -5px 0 #419544;
  box-shadow: inset -5px 0 #419544;
}

/* line 1756, ../sass/style.scss */
body[data-theme="theme-3"] .message-box-entry.style-1:before {
  background: #419544;
}

/* line 1758, ../sass/style.scss */
body[data-theme="theme-3"] .subscribe form input[type="submit"] {
  background-image: url(../img/theme-3/icon9.png);
}

/* line 1759, ../sass/style.scss */
body[data-theme="theme-3"] .video-popup a:after {
  background-image: url(../img/theme-3/cross.png);
}

/* line 1760, ../sass/style.scss */
body[data-theme="theme-3"] .video-popup a:hover:after {
  background-image: url(../img/cross-act.png);
}

/* line 1761, ../sass/style.scss */
body[data-theme="theme-3"] .testimonials-slider .blockquote-wrapper {
  background-image: url(../img/theme-3/blockquote-bg.png);
}

/* line 1762, ../sass/style.scss */
body[data-theme="theme-3"] .blog-post .thumbnail-entry blockquote {
  background-image: url(../img/theme-3/blockquote-bg-1.png);
}

/* line 1763, ../sass/style.scss */
body[data-theme="theme-3"] .blog-post .thumbnail-entry blockquote.style-2 {
  background: none;
}

/* line 1764, ../sass/style.scss */
body[data-theme="theme-3"] .list-style-2 li {
  background-image: url(../img/theme-3/list-bg-style-2.png);
}

/* line 1765, ../sass/style.scss */
body[data-theme="theme-3"] .widget-testimonial .text {
  background-image: url(../img/theme-3/blockquote-bg.png);
}

/* line 1766, ../sass/style.scss */
body[data-theme="theme-3"] .styled-form .submit-wrapper {
  background-image: url(../img/theme-3/icon9.png);
}

/*theme 4*/
/* line 1770, ../sass/style.scss */
body[data-theme="theme-4"] nav .submeny a:after {
  border-top-color: #ba68c8;
}

/* line 1771, ../sass/style.scss */
body[data-theme="theme-4"] .play::after {
  border-left-color: #ba68c8;
}

/* line 1772, ../sass/style.scss */
body[data-theme="theme-4"] .play:hover::after {
  border-left-color: #fff;
}

/* line 1773, ../sass/style.scss */
body[data-theme="theme-4"] #loader-wrapper span, body[data-theme="theme-4"] .play:hover, body[data-theme="theme-4"] .blog-post .date, body[data-theme="theme-4"] .blog-post .thumbnail-entry blockquote, body[data-theme="theme-4"] .button.type-1:after, body[data-theme="theme-4"] .checkbox-entry.active label:before, body[data-theme="theme-4"] .checkbox-entry.active label:after, body[data-theme="theme-4"] .message-box-entry.style-3, body[data-theme="theme-4"] .responsive-filtration-title {
  border-color: #ba68c8;
}

/* line 1774, ../sass/style.scss */
body[data-theme="theme-4"] .styled-form .submit-wrapper:hover {
  background-color: #ba68c8;
}

/* line 1775, ../sass/style.scss */
body[data-theme="theme-4"] .teaser-date-circles .date-square .circle-box svg circle {
  stroke: #ba68c8;
}

/* line 1777, ../sass/style.scss */
body[data-theme="theme-4"] nav a.act, body[data-theme="theme-4"] nav a:hover, body[data-theme="theme-4"] .button, body[data-theme="theme-4"] nav .submeny:hover .submeny-top, body[data-theme="theme-4"] header.act nav a:hover, body[data-theme="theme-4"] header.act nav a.act, body[data-theme="theme-4"] .titel-left:after, body[data-theme="theme-4"] .titel-top:after, body[data-theme="theme-4"] .swiper-active-switch, body[data-theme="theme-4"] ul li:after, body[data-theme="theme-4"] .block.type-6, body[data-theme="theme-4"] .video-popup a:hover, body[data-theme="theme-4"] .play:hover, body[data-theme="theme-4"] .mob-icon span, body[data-theme="theme-4"] .mob-icon span:before, body[data-theme="theme-4"] .mob-icon span:after, body[data-theme="theme-4"] .default-arrow, body[data-theme="theme-4"] .page-tagline .title:before, body[data-theme="theme-4"] .accordeon .entry.active, body[data-theme="theme-4"] .new-block.color-background, body[data-theme="theme-4"] .sorting-menu a.active, body[data-theme="theme-4"] .sorting-menu a:hover, body[data-theme="theme-4"] .banner-tabs span.title:before, body[data-theme="theme-4"] .new-block.type-10 .image-socials-box, body[data-theme="theme-4"] .tags-container a:hover, body[data-theme="theme-4"] .paginator ul li a.active, body[data-theme="theme-4"] .paginator ul li a:hover, body[data-theme="theme-4"] .blog-post.style-2 .date, body[data-theme="theme-4"] .share-post a:hover, body[data-theme="theme-4"] .blog-post .thumbnail-entry blockquote.style-2:before, body[data-theme="theme-4"] .small-button, body[data-theme="theme-4"] .widget-entry .social-icons a, body[data-theme="theme-4"] .button.type-1:hover, body[data-theme="theme-4"] .checkbox-entry.active.radio label:after, body[data-theme="theme-4"] .typography-article ol li:before, body[data-theme="theme-4"] .typography-article ul.list-style-3 li:before, body[data-theme="theme-4"] .message-box-entry.style-1, body[data-theme="theme-4"] .typography-article .table th, body[data-theme="theme-4"] .mouse-icon:before, body[data-theme="theme-4"] .back-to-top {
  background: #ba68c8;
}

/* line 1778, ../sass/style.scss */
body[data-theme="theme-4"] .numbers .num, body[data-theme="theme-4"] .button.black, body[data-theme="theme-4"] .default-arrow:hover span, body[data-theme="theme-4"] .new-block.type-18 .tabs-switch.active, body[data-theme="theme-4"] .new-block.type-18 .tabs-switch:hover, body[data-theme="theme-4"] .compare-column-entry .price, body[data-theme="theme-4"] .blog-entry .post-data, body[data-theme="theme-4"] .blog-entry .post-data a, body[data-theme="theme-4"] .blog-entry .title:hover, body[data-theme="theme-4"] .banner-tabs span.title, body[data-theme="theme-4"] .banner-tabs .entry:hover span.description, body[data-theme="theme-4"] .new-block.color-background, body[data-theme="theme-4"] .new-block.type-14 .tabs-switch.active span, body[data-theme="theme-4"] .new-block.type-10 .position, body[data-theme="theme-4"] .popular-post-entry .content .date, body[data-theme="theme-4"] .popular-post-entry .content .title:hover, body[data-theme="theme-4"] .categories-wrapper .entry:hover, body[data-theme="theme-4"] .categories-wrapper .entry .number, body[data-theme="theme-4"] .blog-post .title:hover, body[data-theme="theme-4"] .blog-post .thumbnail-entry blockquote cite, body[data-theme="theme-4"] .categories-wrapper .sub-wrapper a span, body[data-theme="theme-4"] .categories-wrapper .entry.toggle .glyphicon:before, body[data-theme="theme-4"] .latest-comment-entry .date .glyphicon, body[data-theme="theme-4"] .latest-comment-entry .title .name, body[data-theme="theme-4"] .latest-comment-entry .title .post-title:hover, body[data-theme="theme-4"] .arrow-button:hover, body[data-theme="theme-4"] .footer-bottom .footer-linck a:hover, body[data-theme="theme-4"] .accordeon .entry .title span, body[data-theme="theme-4"] .accordeon .entry .title:hover, body[data-theme="theme-4"] .author-text .category, body[data-theme="theme-4"] .author-entry .glyphicon, body[data-theme="theme-4"] .titel-left span, body[data-theme="theme-4"] .comment-content .name .reply, body[data-theme="theme-4"] .comment-content .date .glyphicon, body[data-theme="theme-4"] .posts-navigation .data .glyphicon, body[data-theme="theme-4"] .posts-navigation .data .category, body[data-theme="theme-4"] .posts-navigation .data .category, body[data-theme="theme-4"] .search-form .search-submit, body[data-theme="theme-4"] .tweet-entry a, body[data-theme="theme-4"] .widget-entry .tabs-switch.active, body[data-theme="theme-4"] .button.type-1, body[data-theme="theme-4"] .default-arrow.black span, body[data-theme="theme-4"] .message-box-entry.style-3, body[data-theme="theme-4"] .responsive-filtration-title .glyphicon, body[data-theme="theme-4"] .posts-navigation .title:hover, body[data-theme="theme-4"].teaser .teaser-date .date-square p, body[data-theme="theme-4"] .teaser-copyright .copyright a, body[data-theme="theme-4"] .content-404 .title, body[data-theme="theme-4"] .content-404 .description a, body[data-theme="theme-4"] .phone-icons-description .entry:hover .title {
  color: #ba68c8;
}

/* line 1780, ../sass/style.scss */
body[data-theme="theme-4"] .comment-content .name .reply:hover {
  color: #777;
}

/* line 1781, ../sass/style.scss */
body[data-theme="theme-4"] .widget-entry .social-icons a:hover {
  background: #777;
}

/* line 1782, ../sass/style.scss */
body[data-theme="theme-4"] .button.type-1:hover, body[data-theme="theme-4"] .default-arrow.black:hover span {
  color: #fff;
}

/* line 1783, ../sass/style.scss */
body[data-theme="theme-4"] .default-arrow:hover {
  background: #fff;
}

/* line 1784, ../sass/style.scss */
body[data-theme="theme-4"] .default-arrow.black {
  background: #222;
}

/* line 1785, ../sass/style.scss */
body[data-theme="theme-4"] .color-background .page-tagline .title:before {
  background: #fff;
}

/* line 1786, ../sass/style.scss */
body[data-theme="theme-4"] .sorting-item .tagline {
  background: rgba(186, 104, 200, 0.8);
}

/* line 1787, ../sass/style.scss */
body[data-theme="theme-4"] .gallery-popup .close-popup, body[data-theme="theme-4"] .screen-preview-popup .close-popup {
  color: #ba68c8;
}

/* line 1788, ../sass/style.scss */
body[data-theme="theme-4"] .gallery-popup .close-popup:hover, body[data-theme="theme-4"] .screen-preview-popup .close-popup:hover {
  background: #ba68c8;
  color: #fff;
}

/* line 1789, ../sass/style.scss */
body[data-theme="theme-4"] .accordeon .entry.active .title span {
  color: rgba(255, 255, 255, 0.8);
}

/* line 1790, ../sass/style.scss */
body[data-theme="theme-4"] .blog-post.style-2 .date:before {
  border-color: transparent transparent transparent #ba68c8;
}

/* line 1791, ../sass/style.scss */
body[data-theme="theme-4"] .small-button:hover {
  background: #f8f8f8;
}

/* line 1792, ../sass/style.scss */
body[data-theme="theme-4"] .button.type-1 {
  background: #fff;
}

/* line 1794, ../sass/style.scss */
body[data-theme="theme-4"] .default-arrow.left {
  -webkit-box-shadow: 3px 4px 10px rgba(0, 0, 0, 0.1), inset -3px 0 #9e59aa;
  box-shadow: 3px 4px 10px rgba(0, 0, 0, 0.1), inset -3px 0 #9e59aa;
}

/* line 1795, ../sass/style.scss */
body[data-theme="theme-4"] .default-arrow.right {
  -webkit-box-shadow: -4px 3px 10px rgba(0, 0, 0, 0.1), inset 3px 0 #9e59aa;
  box-shadow: -4px 3px 10px rgba(0, 0, 0, 0.1), inset 3px 0 #9e59aa;
}

/* line 1796, ../sass/style.scss */
body[data-theme="theme-4"] .blog-post.style-2 .date {
  -webkit-box-shadow: 3px 0 #9e59aa inset;
  box-shadow: 3px 0 #9e59aa inset;
}

/* line 1797, ../sass/style.scss */
body[data-theme="theme-4"] .accordeon .entry.active {
  -webkit-box-shadow: inset -5px 0 #9e59aa;
  box-shadow: inset -5px 0 #9e59aa;
}

/* line 1798, ../sass/style.scss */
body[data-theme="theme-4"] .message-box-entry.style-1:before {
  background: #9e59aa;
}

/* line 1800, ../sass/style.scss */
body[data-theme="theme-4"] .subscribe form input[type="submit"] {
  background-image: url(../img/theme-4/icon9.png);
}

/* line 1801, ../sass/style.scss */
body[data-theme="theme-4"] .video-popup a:after {
  background-image: url(../img/theme-4/cross.png);
}

/* line 1802, ../sass/style.scss */
body[data-theme="theme-4"] .video-popup a:hover:after {
  background-image: url(../img/cross-act.png);
}

/* line 1803, ../sass/style.scss */
body[data-theme="theme-4"] .testimonials-slider .blockquote-wrapper {
  background-image: url(../img/theme-4/blockquote-bg.png);
}

/* line 1804, ../sass/style.scss */
body[data-theme="theme-4"] .blog-post .thumbnail-entry blockquote {
  background-image: url(../img/theme-4/blockquote-bg-1.png);
}

/* line 1805, ../sass/style.scss */
body[data-theme="theme-4"] .blog-post .thumbnail-entry blockquote.style-2 {
  background: none;
}

/* line 1806, ../sass/style.scss */
body[data-theme="theme-4"] .list-style-2 li {
  background-image: url(../img/theme-4/list-bg-style-2.png);
}

/* line 1807, ../sass/style.scss */
body[data-theme="theme-4"] .widget-testimonial .text {
  background-image: url(../img/theme-4/blockquote-bg.png);
}

/* line 1808, ../sass/style.scss */
body[data-theme="theme-4"] .styled-form .submit-wrapper {
  background-image: url(../img/theme-4/icon9.png);
}

/*theme 5*/
/* line 1812, ../sass/style.scss */
body[data-theme="theme-5"] nav .submeny a:after {
  border-top-color: #d80d0d;
}

/* line 1813, ../sass/style.scss */
body[data-theme="theme-5"] .play::after {
  border-left-color: #d80d0d;
}

/* line 1814, ../sass/style.scss */
body[data-theme="theme-5"] .play:hover::after {
  border-left-color: #fff;
}

/* line 1815, ../sass/style.scss */
body[data-theme="theme-5"] #loader-wrapper span, body[data-theme="theme-5"] .play:hover, body[data-theme="theme-5"] .blog-post .date, body[data-theme="theme-5"] .blog-post .thumbnail-entry blockquote, body[data-theme="theme-5"] .button.type-1:after, body[data-theme="theme-5"] .checkbox-entry.active label:before, body[data-theme="theme-5"] .checkbox-entry.active label:after, body[data-theme="theme-5"] .message-box-entry.style-3, body[data-theme="theme-5"] .responsive-filtration-title {
  border-color: #d80d0d;
}

/* line 1816, ../sass/style.scss */
body[data-theme="theme-5"] .styled-form .submit-wrapper:hover {
  background-color: #d80d0d;
}

/* line 1817, ../sass/style.scss */
body[data-theme="theme-5"] .teaser-date-circles .date-square .circle-box svg circle {
  stroke: #d80d0d;
}

/* line 1819, ../sass/style.scss */
body[data-theme="theme-5"] nav a.act, body[data-theme="theme-5"] nav a:hover, body[data-theme="theme-5"] .button, body[data-theme="theme-5"] nav .submeny:hover .submeny-top, body[data-theme="theme-5"] header.act nav a:hover, body[data-theme="theme-5"] header.act nav a.act, body[data-theme="theme-5"] .titel-left:after, body[data-theme="theme-5"] .titel-top:after, body[data-theme="theme-5"] .swiper-active-switch, body[data-theme="theme-5"] ul li:after, body[data-theme="theme-5"] .block.type-6, body[data-theme="theme-5"] .video-popup a:hover, body[data-theme="theme-5"] .play:hover, body[data-theme="theme-5"] .mob-icon span, body[data-theme="theme-5"] .mob-icon span:before, body[data-theme="theme-5"] .mob-icon span:after, body[data-theme="theme-5"] .default-arrow, body[data-theme="theme-5"] .page-tagline .title:before, body[data-theme="theme-5"] .accordeon .entry.active, body[data-theme="theme-5"] .new-block.color-background, body[data-theme="theme-5"] .sorting-menu a.active, body[data-theme="theme-5"] .sorting-menu a:hover, body[data-theme="theme-5"] .banner-tabs span.title:before, body[data-theme="theme-5"] .new-block.type-10 .image-socials-box, body[data-theme="theme-5"] .tags-container a:hover, body[data-theme="theme-5"] .paginator ul li a.active, body[data-theme="theme-5"] .paginator ul li a:hover, body[data-theme="theme-5"] .blog-post.style-2 .date, body[data-theme="theme-5"] .share-post a:hover, body[data-theme="theme-5"] .blog-post .thumbnail-entry blockquote.style-2:before, body[data-theme="theme-5"] .small-button, body[data-theme="theme-5"] .widget-entry .social-icons a, body[data-theme="theme-5"] .button.type-1:hover, body[data-theme="theme-5"] .checkbox-entry.active.radio label:after, body[data-theme="theme-5"] .typography-article ol li:before, body[data-theme="theme-5"] .typography-article ul.list-style-3 li:before, body[data-theme="theme-5"] .message-box-entry.style-1, body[data-theme="theme-5"] .typography-article .table th, body[data-theme="theme-5"] .mouse-icon:before, body[data-theme="theme-5"] .back-to-top {
  background: #d80d0d;
}

/* line 1820, ../sass/style.scss */
body[data-theme="theme-5"] .numbers .num, body[data-theme="theme-5"] .button.black, body[data-theme="theme-5"] .default-arrow:hover span, body[data-theme="theme-5"] .new-block.type-18 .tabs-switch.active, body[data-theme="theme-5"] .new-block.type-18 .tabs-switch:hover, body[data-theme="theme-5"] .compare-column-entry .price, body[data-theme="theme-5"] .blog-entry .post-data, body[data-theme="theme-5"] .blog-entry .post-data a, body[data-theme="theme-5"] .blog-entry .title:hover, body[data-theme="theme-5"] .banner-tabs span.title, body[data-theme="theme-5"] .banner-tabs .entry:hover span.description, body[data-theme="theme-5"] .new-block.color-background, body[data-theme="theme-5"] .new-block.type-14 .tabs-switch.active span, body[data-theme="theme-5"] .new-block.type-10 .position, body[data-theme="theme-5"] .popular-post-entry .content .date, body[data-theme="theme-5"] .popular-post-entry .content .title:hover, body[data-theme="theme-5"] .categories-wrapper .entry:hover, body[data-theme="theme-5"] .categories-wrapper .entry .number, body[data-theme="theme-5"] .blog-post .title:hover, body[data-theme="theme-5"] .blog-post .thumbnail-entry blockquote cite, body[data-theme="theme-5"] .categories-wrapper .sub-wrapper a span, body[data-theme="theme-5"] .categories-wrapper .entry.toggle .glyphicon:before, body[data-theme="theme-5"] .latest-comment-entry .date .glyphicon, body[data-theme="theme-5"] .latest-comment-entry .title .name, body[data-theme="theme-5"] .latest-comment-entry .title .post-title:hover, body[data-theme="theme-5"] .arrow-button:hover, body[data-theme="theme-5"] .footer-bottom .footer-linck a:hover, body[data-theme="theme-5"] .accordeon .entry .title span, body[data-theme="theme-5"] .accordeon .entry .title:hover, body[data-theme="theme-5"] .author-text .category, body[data-theme="theme-5"] .author-entry .glyphicon, body[data-theme="theme-5"] .titel-left span, body[data-theme="theme-5"] .comment-content .name .reply, body[data-theme="theme-5"] .comment-content .date .glyphicon, body[data-theme="theme-5"] .posts-navigation .data .glyphicon, body[data-theme="theme-5"] .posts-navigation .data .category, body[data-theme="theme-5"] .posts-navigation .data .category, body[data-theme="theme-5"] .search-form .search-submit, body[data-theme="theme-5"] .tweet-entry a, body[data-theme="theme-5"] .widget-entry .tabs-switch.active, body[data-theme="theme-5"] .button.type-1, body[data-theme="theme-5"] .default-arrow.black span, body[data-theme="theme-5"] .message-box-entry.style-3, body[data-theme="theme-5"] .responsive-filtration-title .glyphicon, body[data-theme="theme-5"] .posts-navigation .title:hover, body[data-theme="theme-5"].teaser .teaser-date .date-square p, body[data-theme="theme-5"] .teaser-copyright .copyright a, body[data-theme="theme-5"] .content-404 .title, body[data-theme="theme-5"] .content-404 .description a, body[data-theme="theme-5"] .phone-icons-description .entry:hover .title {
  color: #d80d0d;
}

/* line 1822, ../sass/style.scss */
body[data-theme="theme-5"] .comment-content .name .reply:hover {
  color: #777;
}

/* line 1823, ../sass/style.scss */
body[data-theme="theme-5"] .widget-entry .social-icons a:hover {
  background: #777;
}

/* line 1824, ../sass/style.scss */
body[data-theme="theme-5"] .button.type-1:hover, body[data-theme="theme-5"] .default-arrow.black:hover span {
  color: #fff;
}

/* line 1825, ../sass/style.scss */
body[data-theme="theme-5"] .default-arrow:hover {
  background: #fff;
}

/* line 1826, ../sass/style.scss */
body[data-theme="theme-5"] .default-arrow.black {
  background: #222;
}

/* line 1827, ../sass/style.scss */
body[data-theme="theme-5"] .color-background .page-tagline .title:before {
  background: #fff;
}

/* line 1828, ../sass/style.scss */
body[data-theme="theme-5"] .sorting-item .tagline {
  background: rgba(216, 13, 13, 0.8);
}

/* line 1829, ../sass/style.scss */
body[data-theme="theme-5"] .gallery-popup .close-popup, body[data-theme="theme-5"] .screen-preview-popup .close-popup {
  color: #d80d0d;
}

/* line 1830, ../sass/style.scss */
body[data-theme="theme-5"] .gallery-popup .close-popup:hover, body[data-theme="theme-5"] .screen-preview-popup .close-popup:hover {
  background: #d80d0d;
  color: #fff;
}

/* line 1831, ../sass/style.scss */
body[data-theme="theme-5"] .accordeon .entry.active .title span {
  color: rgba(255, 255, 255, 0.8);
}

/* line 1832, ../sass/style.scss */
body[data-theme="theme-5"] .blog-post.style-2 .date:before {
  border-color: transparent transparent transparent #d80d0d;
}

/* line 1833, ../sass/style.scss */
body[data-theme="theme-5"] .small-button:hover {
  background: #f8f8f8;
}

/* line 1834, ../sass/style.scss */
body[data-theme="theme-5"] .button.type-1 {
  background: #fff;
}

/* line 1836, ../sass/style.scss */
body[data-theme="theme-5"] .default-arrow.left {
  -webkit-box-shadow: 3px 4px 10px rgba(0, 0, 0, 0.1), inset -3px 0 #b22c2c;
  box-shadow: 3px 4px 10px rgba(0, 0, 0, 0.1), inset -3px 0 #b22c2c;
}

/* line 1837, ../sass/style.scss */
body[data-theme="theme-5"] .default-arrow.right {
  -webkit-box-shadow: -4px 3px 10px rgba(0, 0, 0, 0.1), inset 3px 0 #b22c2c;
  box-shadow: -4px 3px 10px rgba(0, 0, 0, 0.1), inset 3px 0 #b22c2c;
}

/* line 1838, ../sass/style.scss */
body[data-theme="theme-5"] .blog-post.style-2 .date {
  -webkit-box-shadow: 3px 0 #b22c2c inset;
  box-shadow: 3px 0 #b22c2c inset;
}

/* line 1839, ../sass/style.scss */
body[data-theme="theme-5"] .accordeon .entry.active {
  -webkit-box-shadow: inset -5px 0 #b22c2c;
  box-shadow: inset -5px 0 #b22c2c;
}

/* line 1840, ../sass/style.scss */
body[data-theme="theme-5"] .message-box-entry.style-1:before {
  background: #b22c2c;
}

/* line 1842, ../sass/style.scss */
body[data-theme="theme-5"] .subscribe form input[type="submit"] {
  background-image: url(../img/theme-5/icon9.png);
}

/* line 1843, ../sass/style.scss */
body[data-theme="theme-5"] .video-popup a:after {
  background-image: url(../img/theme-5/cross.png);
}

/* line 1844, ../sass/style.scss */
body[data-theme="theme-5"] .video-popup a:hover:after {
  background-image: url(../img/cross-act.png);
}

/* line 1845, ../sass/style.scss */
body[data-theme="theme-5"] .testimonials-slider .blockquote-wrapper {
  background-image: url(../img/theme-5/blockquote-bg.png);
}

/* line 1846, ../sass/style.scss */
body[data-theme="theme-5"] .blog-post .thumbnail-entry blockquote {
  background-image: url(../img/theme-5/blockquote-bg-1.png);
}

/* line 1847, ../sass/style.scss */
body[data-theme="theme-5"] .blog-post .thumbnail-entry blockquote.style-2 {
  background: none;
}

/* line 1848, ../sass/style.scss */
body[data-theme="theme-5"] .list-style-2 li {
  background-image: url(../img/theme-5/list-bg-style-2.png);
}

/* line 1849, ../sass/style.scss */
body[data-theme="theme-5"] .widget-testimonial .text {
  background-image: url(../img/theme-5/blockquote-bg.png);
}

/* line 1850, ../sass/style.scss */
body[data-theme="theme-5"] .styled-form .submit-wrapper {
  background-image: url(../img/theme-5/icon9.png);
}

/*theme 6*/
/* line 1854, ../sass/style.scss */
body[data-theme="theme-6"] nav .submeny a:after {
  border-top-color: #0045ad;
}

/* line 1855, ../sass/style.scss */
body[data-theme="theme-6"] .play::after {
  border-left-color: #0045ad;
}

/* line 1856, ../sass/style.scss */
body[data-theme="theme-6"] .play:hover::after {
  border-left-color: #fff;
}

/* line 1857, ../sass/style.scss */
body[data-theme="theme-6"] #loader-wrapper span, body[data-theme="theme-6"] .play:hover, body[data-theme="theme-6"] .blog-post .date, body[data-theme="theme-6"] .blog-post .thumbnail-entry blockquote, body[data-theme="theme-6"] .button.type-1:after, body[data-theme="theme-6"] .checkbox-entry.active label:before, body[data-theme="theme-6"] .checkbox-entry.active label:after, body[data-theme="theme-6"] .message-box-entry.style-3, body[data-theme="theme-6"] .responsive-filtration-title {
  border-color: #0045ad;
}

/* line 1858, ../sass/style.scss */
body[data-theme="theme-6"] .styled-form .submit-wrapper:hover {
  background-color: #0045ad;
}

/* line 1859, ../sass/style.scss */
body[data-theme="theme-6"] .teaser-date-circles .date-square .circle-box svg circle {
  stroke: #0045ad;
}

/* line 1861, ../sass/style.scss */
body[data-theme="theme-6"] nav a.act, body[data-theme="theme-6"] nav a:hover, body[data-theme="theme-6"] .button, body[data-theme="theme-6"] nav .submeny:hover .submeny-top, body[data-theme="theme-6"] header.act nav a:hover, body[data-theme="theme-6"] header.act nav a.act, body[data-theme="theme-6"] .titel-left:after, body[data-theme="theme-6"] .titel-top:after, body[data-theme="theme-6"] .swiper-active-switch, body[data-theme="theme-6"] ul li:after, body[data-theme="theme-6"] .block.type-6, body[data-theme="theme-6"] .video-popup a:hover, body[data-theme="theme-6"] .play:hover, body[data-theme="theme-6"] .mob-icon span, body[data-theme="theme-6"] .mob-icon span:before, body[data-theme="theme-6"] .mob-icon span:after, body[data-theme="theme-6"] .default-arrow, body[data-theme="theme-6"] .page-tagline .title:before, body[data-theme="theme-6"] .accordeon .entry.active, body[data-theme="theme-6"] .new-block.color-background, body[data-theme="theme-6"] .sorting-menu a.active, body[data-theme="theme-6"] .sorting-menu a:hover, body[data-theme="theme-6"] .banner-tabs span.title:before, body[data-theme="theme-6"] .new-block.type-10 .image-socials-box, body[data-theme="theme-6"] .tags-container a:hover, body[data-theme="theme-6"] .paginator ul li a.active, body[data-theme="theme-6"] .paginator ul li a:hover, body[data-theme="theme-6"] .blog-post.style-2 .date, body[data-theme="theme-6"] .share-post a:hover, body[data-theme="theme-6"] .blog-post .thumbnail-entry blockquote.style-2:before, body[data-theme="theme-6"] .small-button, body[data-theme="theme-6"] .widget-entry .social-icons a, body[data-theme="theme-6"] .button.type-1:hover, body[data-theme="theme-6"] .checkbox-entry.active.radio label:after, body[data-theme="theme-6"] .typography-article ol li:before, body[data-theme="theme-6"] .typography-article ul.list-style-3 li:before, body[data-theme="theme-6"] .message-box-entry.style-1, body[data-theme="theme-6"] .typography-article .table th, body[data-theme="theme-6"] .mouse-icon:before, body[data-theme="theme-6"] .back-to-top {
  background: #0045ad;
}

/* line 1862, ../sass/style.scss */
body[data-theme="theme-6"] .numbers .num, body[data-theme="theme-6"] .button.black, body[data-theme="theme-6"] .default-arrow:hover span, body[data-theme="theme-6"] .new-block.type-18 .tabs-switch.active, body[data-theme="theme-6"] .new-block.type-18 .tabs-switch:hover, body[data-theme="theme-6"] .compare-column-entry .price, body[data-theme="theme-6"] .blog-entry .post-data, body[data-theme="theme-6"] .blog-entry .post-data a, body[data-theme="theme-6"] .blog-entry .title:hover, body[data-theme="theme-6"] .banner-tabs span.title, body[data-theme="theme-6"] .banner-tabs .entry:hover span.description, body[data-theme="theme-6"] .new-block.color-background, body[data-theme="theme-6"] .new-block.type-14 .tabs-switch.active span, body[data-theme="theme-6"] .new-block.type-10 .position, body[data-theme="theme-6"] .popular-post-entry .content .date, body[data-theme="theme-6"] .popular-post-entry .content .title:hover, body[data-theme="theme-6"] .categories-wrapper .entry:hover, body[data-theme="theme-6"] .categories-wrapper .entry .number, body[data-theme="theme-6"] .blog-post .title:hover, body[data-theme="theme-6"] .blog-post .thumbnail-entry blockquote cite, body[data-theme="theme-6"] .categories-wrapper .sub-wrapper a span, body[data-theme="theme-6"] .categories-wrapper .entry.toggle .glyphicon:before, body[data-theme="theme-6"] .latest-comment-entry .date .glyphicon, body[data-theme="theme-6"] .latest-comment-entry .title .name, body[data-theme="theme-6"] .latest-comment-entry .title .post-title:hover, body[data-theme="theme-6"] .arrow-button:hover, body[data-theme="theme-6"] .footer-bottom .footer-linck a:hover, body[data-theme="theme-6"] .accordeon .entry .title span, body[data-theme="theme-6"] .accordeon .entry .title:hover, body[data-theme="theme-6"] .author-text .category, body[data-theme="theme-6"] .author-entry .glyphicon, body[data-theme="theme-6"] .titel-left span, body[data-theme="theme-6"] .comment-content .name .reply, body[data-theme="theme-6"] .comment-content .date .glyphicon, body[data-theme="theme-6"] .posts-navigation .data .glyphicon, body[data-theme="theme-6"] .posts-navigation .data .category, body[data-theme="theme-6"] .posts-navigation .data .category, body[data-theme="theme-6"] .search-form .search-submit, body[data-theme="theme-6"] .tweet-entry a, body[data-theme="theme-6"] .widget-entry .tabs-switch.active, body[data-theme="theme-6"] .button.type-1, body[data-theme="theme-6"] .default-arrow.black span, body[data-theme="theme-6"] .message-box-entry.style-3, body[data-theme="theme-6"] .responsive-filtration-title .glyphicon, body[data-theme="theme-6"] .posts-navigation .title:hover, body[data-theme="theme-6"].teaser .teaser-date .date-square p, body[data-theme="theme-6"] .teaser-copyright .copyright a, body[data-theme="theme-6"] .content-404 .title, body[data-theme="theme-6"] .content-404 .description a, body[data-theme="theme-6"] .phone-icons-description .entry:hover .title {
  color: #0045ad;
}

/* line 1864, ../sass/style.scss */
body[data-theme="theme-6"] .comment-content .name .reply:hover {
  color: #777;
}

/* line 1865, ../sass/style.scss */
body[data-theme="theme-6"] .widget-entry .social-icons a:hover {
  background: #777;
}

/* line 1866, ../sass/style.scss */
body[data-theme="theme-6"] .button.type-1:hover, body[data-theme="theme-6"] .default-arrow.black:hover span {
  color: #fff;
}

/* line 1867, ../sass/style.scss */
body[data-theme="theme-6"] .default-arrow:hover {
  background: #fff;
}

/* line 1868, ../sass/style.scss */
body[data-theme="theme-6"] .default-arrow.black {
  background: #222;
}

/* line 1869, ../sass/style.scss */
body[data-theme="theme-6"] .color-background .page-tagline .title:before {
  background: #fff;
}

/* line 1870, ../sass/style.scss */
body[data-theme="theme-6"] .sorting-item .tagline {
  background: rgba(0, 69, 173, 0.8);
}

/* line 1871, ../sass/style.scss */
body[data-theme="theme-6"] .gallery-popup .close-popup, body[data-theme="theme-6"] .screen-preview-popup .close-popup {
  color: #0045ad;
}

/* line 1872, ../sass/style.scss */
body[data-theme="theme-6"] .gallery-popup .close-popup:hover, body[data-theme="theme-6"] .screen-preview-popup .close-popup:hover {
  background: #0045ad;
  color: #fff;
}

/* line 1873, ../sass/style.scss */
body[data-theme="theme-6"] .accordeon .entry.active .title span {
  color: rgba(255, 255, 255, 0.8);
}

/* line 1874, ../sass/style.scss */
body[data-theme="theme-6"] .blog-post.style-2 .date:before {
  border-color: transparent transparent transparent #0045ad;
}

/* line 1875, ../sass/style.scss */
body[data-theme="theme-6"] .small-button:hover {
  background: #f8f8f8;
}

/* line 1876, ../sass/style.scss */
body[data-theme="theme-6"] .button.type-1 {
  background: #fff;
}

/* line 1878, ../sass/style.scss */
body[data-theme="theme-6"] .default-arrow.left {
  -webkit-box-shadow: 3px 4px 10px rgba(0, 0, 0, 0.1), inset -3px 0 #16396f;
  box-shadow: 3px 4px 10px rgba(0, 0, 0, 0.1), inset -3px 0 #16396f;
}

/* line 1879, ../sass/style.scss */
body[data-theme="theme-6"] .default-arrow.right {
  -webkit-box-shadow: -4px 3px 10px rgba(0, 0, 0, 0.1), inset 3px 0 #16396f;
  box-shadow: -4px 3px 10px rgba(0, 0, 0, 0.1), inset 3px 0 #16396f;
}

/* line 1880, ../sass/style.scss */
body[data-theme="theme-6"] .blog-post.style-2 .date {
  -webkit-box-shadow: 3px 0 #16396f inset;
  box-shadow: 3px 0 #16396f inset;
}

/* line 1881, ../sass/style.scss */
body[data-theme="theme-6"] .accordeon .entry.active {
  -webkit-box-shadow: inset -5px 0 #16396f;
  box-shadow: inset -5px 0 #16396f;
}

/* line 1882, ../sass/style.scss */
body[data-theme="theme-6"] .message-box-entry.style-1:before {
  background: #16396f;
}

/* line 1884, ../sass/style.scss */
body[data-theme="theme-6"] .subscribe form input[type="submit"] {
  background-image: url(../img/theme-6/icon9.png);
}

/* line 1885, ../sass/style.scss */
body[data-theme="theme-6"] .video-popup a:after {
  background-image: url(../img/theme-6/cross.png);
}

/* line 1886, ../sass/style.scss */
body[data-theme="theme-6"] .video-popup a:hover:after {
  background-image: url(../img/cross-act.png);
}

/* line 1887, ../sass/style.scss */
body[data-theme="theme-6"] .testimonials-slider .blockquote-wrapper {
  background-image: url(../img/theme-6/blockquote-bg.png);
}

/* line 1888, ../sass/style.scss */
body[data-theme="theme-6"] .blog-post .thumbnail-entry blockquote {
  background-image: url(../img/theme-6/blockquote-bg-1.png);
}

/* line 1889, ../sass/style.scss */
body[data-theme="theme-6"] .blog-post .thumbnail-entry blockquote.style-2 {
  background: none;
}

/* line 1890, ../sass/style.scss */
body[data-theme="theme-6"] .list-style-2 li {
  background-image: url(../img/theme-6/list-bg-style-2.png);
}

/* line 1891, ../sass/style.scss */
body[data-theme="theme-6"] .widget-testimonial .text {
  background-image: url(../img/theme-6/blockquote-bg.png);
}

/* line 1892, ../sass/style.scss */
body[data-theme="theme-6"] .styled-form .submit-wrapper {
  background-image: url(../img/theme-6/icon9.png);
}

/*theme 7*/
/* line 1896, ../sass/style.scss */
body[data-theme="theme-7"] nav .submeny a:after {
  border-top-color: #dd137b;
}

/* line 1897, ../sass/style.scss */
body[data-theme="theme-7"] .play::after {
  border-left-color: #dd137b;
}

/* line 1898, ../sass/style.scss */
body[data-theme="theme-7"] .play:hover::after {
  border-left-color: #fff;
}

/* line 1899, ../sass/style.scss */
body[data-theme="theme-7"] #loader-wrapper span, body[data-theme="theme-7"] .play:hover, body[data-theme="theme-7"] .blog-post .date, body[data-theme="theme-7"] .blog-post .thumbnail-entry blockquote, body[data-theme="theme-7"] .button.type-1:after, body[data-theme="theme-7"] .checkbox-entry.active label:before, body[data-theme="theme-7"] .checkbox-entry.active label:after, body[data-theme="theme-7"] .message-box-entry.style-3, body[data-theme="theme-7"] .responsive-filtration-title {
  border-color: #dd137b;
}

/* line 1900, ../sass/style.scss */
body[data-theme="theme-7"] .styled-form .submit-wrapper:hover {
  background-color: #dd137b;
}

/* line 1901, ../sass/style.scss */
body[data-theme="theme-7"] .teaser-date-circles .date-square .circle-box svg circle {
  stroke: #dd137b;
}

/* line 1903, ../sass/style.scss */
body[data-theme="theme-7"] nav a.act, body[data-theme="theme-7"] nav a:hover, body[data-theme="theme-7"] .button, body[data-theme="theme-7"] nav .submeny:hover .submeny-top, body[data-theme="theme-7"] header.act nav a:hover, body[data-theme="theme-7"] header.act nav a.act, body[data-theme="theme-7"] .titel-left:after, body[data-theme="theme-7"] .titel-top:after, body[data-theme="theme-7"] .swiper-active-switch, body[data-theme="theme-7"] ul li:after, body[data-theme="theme-7"] .block.type-6, body[data-theme="theme-7"] .video-popup a:hover, body[data-theme="theme-7"] .play:hover, body[data-theme="theme-7"] .mob-icon span, body[data-theme="theme-7"] .mob-icon span:before, body[data-theme="theme-7"] .mob-icon span:after, body[data-theme="theme-7"] .default-arrow, body[data-theme="theme-7"] .page-tagline .title:before, body[data-theme="theme-7"] .accordeon .entry.active, body[data-theme="theme-7"] .new-block.color-background, body[data-theme="theme-7"] .sorting-menu a.active, body[data-theme="theme-7"] .sorting-menu a:hover, body[data-theme="theme-7"] .banner-tabs span.title:before, body[data-theme="theme-7"] .new-block.type-10 .image-socials-box, body[data-theme="theme-7"] .tags-container a:hover, body[data-theme="theme-7"] .paginator ul li a.active, body[data-theme="theme-7"] .paginator ul li a:hover, body[data-theme="theme-7"] .blog-post.style-2 .date, body[data-theme="theme-7"] .share-post a:hover, body[data-theme="theme-7"] .blog-post .thumbnail-entry blockquote.style-2:before, body[data-theme="theme-7"] .small-button, body[data-theme="theme-7"] .widget-entry .social-icons a, body[data-theme="theme-7"] .button.type-1:hover, body[data-theme="theme-7"] .checkbox-entry.active.radio label:after, body[data-theme="theme-7"] .typography-article ol li:before, body[data-theme="theme-7"] .typography-article ul.list-style-3 li:before, body[data-theme="theme-7"] .message-box-entry.style-1, body[data-theme="theme-7"] .typography-article .table th, body[data-theme="theme-7"] .mouse-icon:before, body[data-theme="theme-7"] .back-to-top {
  background: #dd137b;
}

/* line 1904, ../sass/style.scss */
body[data-theme="theme-7"] .numbers .num, body[data-theme="theme-7"] .button.black, body[data-theme="theme-7"] .default-arrow:hover span, body[data-theme="theme-7"] .new-block.type-18 .tabs-switch.active, body[data-theme="theme-7"] .new-block.type-18 .tabs-switch:hover, body[data-theme="theme-7"] .compare-column-entry .price, body[data-theme="theme-7"] .blog-entry .post-data, body[data-theme="theme-7"] .blog-entry .post-data a, body[data-theme="theme-7"] .blog-entry .title:hover, body[data-theme="theme-7"] .banner-tabs span.title, body[data-theme="theme-7"] .banner-tabs .entry:hover span.description, body[data-theme="theme-7"] .new-block.color-background, body[data-theme="theme-7"] .new-block.type-14 .tabs-switch.active span, body[data-theme="theme-7"] .new-block.type-10 .position, body[data-theme="theme-7"] .popular-post-entry .content .date, body[data-theme="theme-7"] .popular-post-entry .content .title:hover, body[data-theme="theme-7"] .categories-wrapper .entry:hover, body[data-theme="theme-7"] .categories-wrapper .entry .number, body[data-theme="theme-7"] .blog-post .title:hover, body[data-theme="theme-7"] .blog-post .thumbnail-entry blockquote cite, body[data-theme="theme-7"] .categories-wrapper .sub-wrapper a span, body[data-theme="theme-7"] .categories-wrapper .entry.toggle .glyphicon:before, body[data-theme="theme-7"] .latest-comment-entry .date .glyphicon, body[data-theme="theme-7"] .latest-comment-entry .title .name, body[data-theme="theme-7"] .latest-comment-entry .title .post-title:hover, body[data-theme="theme-7"] .arrow-button:hover, body[data-theme="theme-7"] .footer-bottom .footer-linck a:hover, body[data-theme="theme-7"] .accordeon .entry .title span, body[data-theme="theme-7"] .accordeon .entry .title:hover, body[data-theme="theme-7"] .author-text .category, body[data-theme="theme-7"] .author-entry .glyphicon, body[data-theme="theme-7"] .titel-left span, body[data-theme="theme-7"] .comment-content .name .reply, body[data-theme="theme-7"] .comment-content .date .glyphicon, body[data-theme="theme-7"] .posts-navigation .data .glyphicon, body[data-theme="theme-7"] .posts-navigation .data .category, body[data-theme="theme-7"] .posts-navigation .data .category, body[data-theme="theme-7"] .search-form .search-submit, body[data-theme="theme-7"] .tweet-entry a, body[data-theme="theme-7"] .widget-entry .tabs-switch.active, body[data-theme="theme-7"] .button.type-1, body[data-theme="theme-7"] .default-arrow.black span, body[data-theme="theme-7"] .message-box-entry.style-3, body[data-theme="theme-7"] .responsive-filtration-title .glyphicon, body[data-theme="theme-7"] .posts-navigation .title:hover, body[data-theme="theme-7"].teaser .teaser-date .date-square p, body[data-theme="theme-7"] .teaser-copyright .copyright a, body[data-theme="theme-7"] .content-404 .title, body[data-theme="theme-7"] .content-404 .description a, body[data-theme="theme-7"] .phone-icons-description .entry:hover .title {
  color: #dd137b;
}

/* line 1906, ../sass/style.scss */
body[data-theme="theme-7"] .comment-content .name .reply:hover {
  color: #777;
}

/* line 1907, ../sass/style.scss */
body[data-theme="theme-7"] .widget-entry .social-icons a:hover {
  background: #777;
}

/* line 1908, ../sass/style.scss */
body[data-theme="theme-7"] .button.type-1:hover, body[data-theme="theme-7"] .default-arrow.black:hover span {
  color: #fff;
}

/* line 1909, ../sass/style.scss */
body[data-theme="theme-7"] .default-arrow:hover {
  background: #fff;
}

/* line 1910, ../sass/style.scss */
body[data-theme="theme-7"] .default-arrow.black {
  background: #222;
}

/* line 1911, ../sass/style.scss */
body[data-theme="theme-7"] .color-background .page-tagline .title:before {
  background: #fff;
}

/* line 1912, ../sass/style.scss */
body[data-theme="theme-7"] .sorting-item .tagline {
  background: rgba(221, 19, 123, 0.8);
}

/* line 1913, ../sass/style.scss */
body[data-theme="theme-7"] .gallery-popup .close-popup, body[data-theme="theme-7"] .screen-preview-popup .close-popup {
  color: #dd137b;
}

/* line 1914, ../sass/style.scss */
body[data-theme="theme-7"] .gallery-popup .close-popup:hover, body[data-theme="theme-7"] .screen-preview-popup .close-popup:hover {
  background: #dd137b;
  color: #fff;
}

/* line 1915, ../sass/style.scss */
body[data-theme="theme-7"] .accordeon .entry.active .title span {
  color: rgba(255, 255, 255, 0.8);
}

/* line 1916, ../sass/style.scss */
body[data-theme="theme-7"] .blog-post.style-2 .date:before {
  border-color: transparent transparent transparent #dd137b;
}

/* line 1917, ../sass/style.scss */
body[data-theme="theme-7"] .small-button:hover {
  background: #f8f8f8;
}

/* line 1918, ../sass/style.scss */
body[data-theme="theme-7"] .button.type-1 {
  background: #fff;
}

/* line 1920, ../sass/style.scss */
body[data-theme="theme-7"] .default-arrow.left {
  -webkit-box-shadow: 3px 4px 10px rgba(0, 0, 0, 0.1), inset -3px 0 #bb347a;
  box-shadow: 3px 4px 10px rgba(0, 0, 0, 0.1), inset -3px 0 #bb347a;
}

/* line 1921, ../sass/style.scss */
body[data-theme="theme-7"] .default-arrow.right {
  -webkit-box-shadow: -4px 3px 10px rgba(0, 0, 0, 0.1), inset 3px 0 #bb347a;
  box-shadow: -4px 3px 10px rgba(0, 0, 0, 0.1), inset 3px 0 #bb347a;
}

/* line 1922, ../sass/style.scss */
body[data-theme="theme-7"] .blog-post.style-2 .date {
  -webkit-box-shadow: 3px 0 #bb347a inset;
  box-shadow: 3px 0 #bb347a inset;
}

/* line 1923, ../sass/style.scss */
body[data-theme="theme-7"] .accordeon .entry.active {
  -webkit-box-shadow: inset -5px 0 #bb347a;
  box-shadow: inset -5px 0 #bb347a;
}

/* line 1924, ../sass/style.scss */
body[data-theme="theme-7"] .message-box-entry.style-1:before {
  background: #bb347a;
}

/* line 1926, ../sass/style.scss */
body[data-theme="theme-7"] .subscribe form input[type="submit"] {
  background-image: url(../img/theme-7/icon9.png);
}

/* line 1927, ../sass/style.scss */
body[data-theme="theme-7"] .video-popup a:after {
  background-image: url(../img/theme-7/cross.png);
}

/* line 1928, ../sass/style.scss */
body[data-theme="theme-7"] .video-popup a:hover:after {
  background-image: url(../img/cross-act.png);
}

/* line 1929, ../sass/style.scss */
body[data-theme="theme-7"] .testimonials-slider .blockquote-wrapper {
  background-image: url(../img/theme-7/blockquote-bg.png);
}

/* line 1930, ../sass/style.scss */
body[data-theme="theme-7"] .blog-post .thumbnail-entry blockquote {
  background-image: url(../img/theme-7/blockquote-bg-1.png);
}

/* line 1931, ../sass/style.scss */
body[data-theme="theme-7"] .blog-post .thumbnail-entry blockquote.style-2 {
  background: none;
}

/* line 1932, ../sass/style.scss */
body[data-theme="theme-7"] .list-style-2 li {
  background-image: url(../img/theme-7/list-bg-style-2.png);
}

/* line 1933, ../sass/style.scss */
body[data-theme="theme-7"] .widget-testimonial .text {
  background-image: url(../img/theme-7/blockquote-bg.png);
}

/* line 1934, ../sass/style.scss */
body[data-theme="theme-7"] .styled-form .submit-wrapper {
  background-image: url(../img/theme-7/icon9.png);
}

/*theme 8*/
/* line 1938, ../sass/style.scss */
body[data-theme="theme-8"] nav .submeny a:after {
  border-top-color: #482d1d;
}

/* line 1939, ../sass/style.scss */
body[data-theme="theme-8"] .play::after {
  border-left-color: #482d1d;
}

/* line 1940, ../sass/style.scss */
body[data-theme="theme-8"] .play:hover::after {
  border-left-color: #fff;
}

/* line 1941, ../sass/style.scss */
body[data-theme="theme-8"] #loader-wrapper span, body[data-theme="theme-8"] .play:hover, body[data-theme="theme-8"] .blog-post .date, body[data-theme="theme-8"] .blog-post .thumbnail-entry blockquote, body[data-theme="theme-8"] .button.type-1:after, body[data-theme="theme-8"] .checkbox-entry.active label:before, body[data-theme="theme-8"] .checkbox-entry.active label:after, body[data-theme="theme-8"] .message-box-entry.style-3, body[data-theme="theme-8"] .responsive-filtration-title {
  border-color: #482d1d;
}

/* line 1942, ../sass/style.scss */
body[data-theme="theme-8"] .styled-form .submit-wrapper:hover {
  background-color: #482d1d;
}

/* line 1943, ../sass/style.scss */
body[data-theme="theme-8"] .teaser-date-circles .date-square .circle-box svg circle {
  stroke: #482d1d;
}

/* line 1945, ../sass/style.scss */
body[data-theme="theme-8"] nav a.act, body[data-theme="theme-8"] nav a:hover, body[data-theme="theme-8"] .button, body[data-theme="theme-8"] nav .submeny:hover .submeny-top, body[data-theme="theme-8"] header.act nav a:hover, body[data-theme="theme-8"] header.act nav a.act, body[data-theme="theme-8"] .titel-left:after, body[data-theme="theme-8"] .titel-top:after, body[data-theme="theme-8"] .swiper-active-switch, body[data-theme="theme-8"] ul li:after, body[data-theme="theme-8"] .block.type-6, body[data-theme="theme-8"] .video-popup a:hover, body[data-theme="theme-8"] .play:hover, body[data-theme="theme-8"] .mob-icon span, body[data-theme="theme-8"] .mob-icon span:before, body[data-theme="theme-8"] .mob-icon span:after, body[data-theme="theme-8"] .default-arrow, body[data-theme="theme-8"] .page-tagline .title:before, body[data-theme="theme-8"] .accordeon .entry.active, body[data-theme="theme-8"] .new-block.color-background, body[data-theme="theme-8"] .sorting-menu a.active, body[data-theme="theme-8"] .sorting-menu a:hover, body[data-theme="theme-8"] .banner-tabs span.title:before, body[data-theme="theme-8"] .new-block.type-10 .image-socials-box, body[data-theme="theme-8"] .tags-container a:hover, body[data-theme="theme-8"] .paginator ul li a.active, body[data-theme="theme-8"] .paginator ul li a:hover, body[data-theme="theme-8"] .blog-post.style-2 .date, body[data-theme="theme-8"] .share-post a:hover, body[data-theme="theme-8"] .blog-post .thumbnail-entry blockquote.style-2:before, body[data-theme="theme-8"] .small-button, body[data-theme="theme-8"] .widget-entry .social-icons a, body[data-theme="theme-8"] .button.type-1:hover, body[data-theme="theme-8"] .checkbox-entry.active.radio label:after, body[data-theme="theme-8"] .typography-article ol li:before, body[data-theme="theme-8"] .typography-article ul.list-style-3 li:before, body[data-theme="theme-8"] .message-box-entry.style-1, body[data-theme="theme-8"] .typography-article .table th, body[data-theme="theme-8"] .mouse-icon:before, body[data-theme="theme-8"] .back-to-top {
  background: #482d1d;
}

/* line 1946, ../sass/style.scss */
body[data-theme="theme-8"] .numbers .num, body[data-theme="theme-8"] .button.black, body[data-theme="theme-8"] .default-arrow:hover span, body[data-theme="theme-8"] .new-block.type-18 .tabs-switch.active, body[data-theme="theme-8"] .new-block.type-18 .tabs-switch:hover, body[data-theme="theme-8"] .compare-column-entry .price, body[data-theme="theme-8"] .blog-entry .post-data, body[data-theme="theme-8"] .blog-entry .post-data a, body[data-theme="theme-8"] .blog-entry .title:hover, body[data-theme="theme-8"] .banner-tabs span.title, body[data-theme="theme-8"] .banner-tabs .entry:hover span.description, body[data-theme="theme-8"] .new-block.color-background, body[data-theme="theme-8"] .new-block.type-14 .tabs-switch.active span, body[data-theme="theme-8"] .new-block.type-10 .position, body[data-theme="theme-8"] .popular-post-entry .content .date, body[data-theme="theme-8"] .popular-post-entry .content .title:hover, body[data-theme="theme-8"] .categories-wrapper .entry:hover, body[data-theme="theme-8"] .categories-wrapper .entry .number, body[data-theme="theme-8"] .blog-post .title:hover, body[data-theme="theme-8"] .blog-post .thumbnail-entry blockquote cite, body[data-theme="theme-8"] .categories-wrapper .sub-wrapper a span, body[data-theme="theme-8"] .categories-wrapper .entry.toggle .glyphicon:before, body[data-theme="theme-8"] .latest-comment-entry .date .glyphicon, body[data-theme="theme-8"] .latest-comment-entry .title .name, body[data-theme="theme-8"] .latest-comment-entry .title .post-title:hover, body[data-theme="theme-8"] .arrow-button:hover, body[data-theme="theme-8"] .footer-bottom .footer-linck a:hover, body[data-theme="theme-8"] .accordeon .entry .title span, body[data-theme="theme-8"] .accordeon .entry .title:hover, body[data-theme="theme-8"] .author-text .category, body[data-theme="theme-8"] .author-entry .glyphicon, body[data-theme="theme-8"] .titel-left span, body[data-theme="theme-8"] .comment-content .name .reply, body[data-theme="theme-8"] .comment-content .date .glyphicon, body[data-theme="theme-8"] .posts-navigation .data .glyphicon, body[data-theme="theme-8"] .posts-navigation .data .category, body[data-theme="theme-8"] .posts-navigation .data .category, body[data-theme="theme-8"] .search-form .search-submit, body[data-theme="theme-8"] .tweet-entry a, body[data-theme="theme-8"] .widget-entry .tabs-switch.active, body[data-theme="theme-8"] .button.type-1, body[data-theme="theme-8"] .default-arrow.black span, body[data-theme="theme-8"] .message-box-entry.style-3, body[data-theme="theme-8"] .responsive-filtration-title .glyphicon, body[data-theme="theme-8"] .posts-navigation .title:hover, body[data-theme="theme-8"].teaser .teaser-date .date-square p, body[data-theme="theme-8"] .teaser-copyright .copyright a, body[data-theme="theme-8"] .content-404 .title, body[data-theme="theme-8"] .content-404 .description a, body[data-theme="theme-8"] .phone-icons-description .entry:hover .title {
  color: #482d1d;
}

/* line 1948, ../sass/style.scss */
body[data-theme="theme-8"] .comment-content .name .reply:hover {
  color: #777;
}

/* line 1949, ../sass/style.scss */
body[data-theme="theme-8"] .widget-entry .social-icons a:hover {
  background: #777;
}

/* line 1950, ../sass/style.scss */
body[data-theme="theme-8"] .button.type-1:hover, body[data-theme="theme-8"] .default-arrow.black:hover span {
  color: #fff;
}

/* line 1951, ../sass/style.scss */
body[data-theme="theme-8"] .default-arrow:hover {
  background: #fff;
}

/* line 1952, ../sass/style.scss */
body[data-theme="theme-8"] .default-arrow.black {
  background: #222;
}

/* line 1953, ../sass/style.scss */
body[data-theme="theme-8"] .color-background .page-tagline .title:before {
  background: #fff;
}

/* line 1954, ../sass/style.scss */
body[data-theme="theme-8"] .sorting-item .tagline {
  background: rgba(72, 45, 29, 0.8);
}

/* line 1955, ../sass/style.scss */
body[data-theme="theme-8"] .gallery-popup .close-popup, body[data-theme="theme-8"] .screen-preview-popup .close-popup {
  color: #482d1d;
}

/* line 1956, ../sass/style.scss */
body[data-theme="theme-8"] .gallery-popup .close-popup:hover, body[data-theme="theme-8"] .screen-preview-popup .close-popup:hover {
  background: #482d1d;
  color: #fff;
}

/* line 1957, ../sass/style.scss */
body[data-theme="theme-8"] .accordeon .entry.active .title span {
  color: rgba(255, 255, 255, 0.8);
}

/* line 1958, ../sass/style.scss */
body[data-theme="theme-8"] .blog-post.style-2 .date:before {
  border-color: transparent transparent transparent #482d1d;
}

/* line 1959, ../sass/style.scss */
body[data-theme="theme-8"] .small-button:hover {
  background: #f8f8f8;
}

/* line 1960, ../sass/style.scss */
body[data-theme="theme-8"] .button.type-1 {
  background: #fff;
}

/* line 1962, ../sass/style.scss */
body[data-theme="theme-8"] .default-arrow.left {
  -webkit-box-shadow: 3px 4px 10px rgba(0, 0, 0, 0.1), inset -3px 0 #806250;
  box-shadow: 3px 4px 10px rgba(0, 0, 0, 0.1), inset -3px 0 #806250;
}

/* line 1963, ../sass/style.scss */
body[data-theme="theme-8"] .default-arrow.right {
  -webkit-box-shadow: -4px 3px 10px rgba(0, 0, 0, 0.1), inset 3px 0 #806250;
  box-shadow: -4px 3px 10px rgba(0, 0, 0, 0.1), inset 3px 0 #806250;
}

/* line 1964, ../sass/style.scss */
body[data-theme="theme-8"] .blog-post.style-2 .date {
  -webkit-box-shadow: 3px 0 #806250 inset;
  box-shadow: 3px 0 #806250 inset;
}

/* line 1965, ../sass/style.scss */
body[data-theme="theme-8"] .accordeon .entry.active {
  -webkit-box-shadow: inset -5px 0 #806250;
  box-shadow: inset -5px 0 #806250;
}

/* line 1966, ../sass/style.scss */
body[data-theme="theme-8"] .message-box-entry.style-1:before {
  background: #806250;
}

/* line 1968, ../sass/style.scss */
body[data-theme="theme-8"] .subscribe form input[type="submit"] {
  background-image: url(../img/theme-8/icon9.png);
}

/* line 1969, ../sass/style.scss */
body[data-theme="theme-8"] .video-popup a:after {
  background-image: url(../img/theme-8/cross.png);
}

/* line 1970, ../sass/style.scss */
body[data-theme="theme-8"] .video-popup a:hover:after {
  background-image: url(../img/cross-act.png);
}

/* line 1971, ../sass/style.scss */
body[data-theme="theme-8"] .testimonials-slider .blockquote-wrapper {
  background-image: url(../img/theme-8/blockquote-bg.png);
}

/* line 1972, ../sass/style.scss */
body[data-theme="theme-8"] .blog-post .thumbnail-entry blockquote {
  background-image: url(../img/theme-8/blockquote-bg-1.png);
}

/* line 1973, ../sass/style.scss */
body[data-theme="theme-8"] .blog-post .thumbnail-entry blockquote.style-2 {
  background: none;
}

/* line 1974, ../sass/style.scss */
body[data-theme="theme-8"] .list-style-2 li {
  background-image: url(../img/theme-8/list-bg-style-2.png);
}

/* line 1975, ../sass/style.scss */
body[data-theme="theme-8"] .widget-testimonial .text {
  background-image: url(../img/theme-8/blockquote-bg.png);
}

/* line 1976, ../sass/style.scss */
body[data-theme="theme-8"] .styled-form .submit-wrapper {
  background-image: url(../img/theme-8/icon9.png);
}

/* line 1978, ../sass/style.scss */
body[data-theme="theme-8"] .button.black {
  color: #fff;
}

/*  ==============
	CSS ANIMATIONS
	==============  */
/* line 1984, ../sass/style.scss */
.class {
  -moz-transition: none;
  -o-transition: none;
  -webkit-transition: none;
  transition: none;
  -ms-transition: none;
}

/* line 1985, ../sass/style.scss */
.button:after, .footer-bottom .footer-linck a, .footer-bottom .media-icon a, .banner-tabs .entry span, .banner-tabs .entry span:before, .new-block.type-10 .paddings-container .image-wrapper img, .new-block.type-10 .image-socials-box a, .new-block.type-10 .image-socials-box a img, .testimonials-slider .swiper-arrow, .blog-entry .title, .new-block.type-18 .tabs-switch, .sorting-menu a, .accordeon .entry, .accordeon .entry .title, .accordeon .entry .title span, .default-arrow, .default-arrow span, .blog-post .title, .popular-post-entry .content .title, .tags-container a, .arrow-button, .blog-post .thumbnails .entry, .share-post a, .posts-navigation .title, .small-button, .sorting-item .tagline, .gallery-popup .close-popup, .screen-preview-popup .close-popup, .paginator ul li a, .categories-wrapper .entry, .latest-comment-entry .title a, .comment-content .name .reply, .gallery-popup .close-popup span, .screen-preview-popup .close-popup span, .sorting-item .tagline .title, .sorting-item .tagline .description, .button, .widget-entry .social-icons a, .styled-form .submit-wrapper, .teaser-copyright .copyright a, .back-to-top {
  -moz-transition: all 0.15s ease-out;
  -o-transition: all 0.15s ease-out;
  -webkit-transition: all 0.15s ease-out;
  transition: all 0.15s ease-out;
  -ms-transition: all 0.15s ease-out;
}

/* line 1986, ../sass/style.scss */
.play:hover, .play:hover:after, nav a, header, #logo img, .mob-icon span, .mob-icon span:before, .mob-icon span:after, nav, nav .submeny a:after, .numbers .col-md-3:before, .numbers .num-text, .video-popup a, .video-popup a:after, .footer-bottom .media-icon a:after, .img-wrap-move, .numbers .thumbs-image, .screens-preview-box .im, .custom-screen-wrapper, .phone-icons-image, .filter-item img, .phone-icons-description .entry .title {
  -moz-transition: all 300ms ease-out;
  -o-transition: all 300ms ease-out;
  -webkit-transition: all 300ms ease-out;
  transition: all 300ms ease-out;
  -ms-transition: all 300ms ease-out;
}

/* line 1987, ../sass/style.scss */
.theme-config, .banner-text, .banner-image, .testimonials-text, .testimonials-image, .loaded .gallery-popup, .loaded .screen-preview-popup, .screens-preview-animation {
  -moz-transition: all 500ms ease-out;
  -o-transition: all 500ms ease-out;
  -webkit-transition: all 500ms ease-out;
  transition: all 500ms ease-out;
  -ms-transition: all 500ms ease-out;
}

/* line 1988, ../sass/style.scss */
.video-popup span, .video-popup span:nth-child(1):after, .video-popup span:nth-child(2):after, .video-popup iframe, .theme-config .open img {
  -moz-transition: all 700ms ease-out;
  -o-transition: all 700ms ease-out;
  -webkit-transition: all 700ms ease-out;
  transition: all 700ms ease-out;
  -ms-transition: all 700ms ease-out;
}

/* line 1989, ../sass/style.scss */
.class {
  -moz-transition: all 1000ms ease-out;
  -o-transition: all 1000ms ease-out;
  -webkit-transition: all 1000ms ease-out;
  transition: all 1000ms ease-out;
  -ms-transition: all 1000ms ease-out;
}

/* line 1990, ../sass/style.scss */
.iphone6plus, .iphone6plus * {
  -moz-transition: all 2000ms ease-out;
  -o-transition: all 2000ms ease-out;
  -webkit-transition: all 2000ms ease-out;
  transition: all 2000ms ease-out;
  -ms-transition: all 2000ms ease-out;
}

/*transition delay*/
/* line 1993, ../sass/style.scss */
.new-block.type-10 .image-wrapper:hover .image-socials-box a:nth-child(1) {
  transition-delay: 150ms;
  -moz-transition-delay: 150ms;
  -webkit-transition-delay: 150ms;
  -ms-transition-delay: 150ms;
}

/* line 1994, ../sass/style.scss */
.new-block.type-10 .image-wrapper:hover .image-socials-box a:nth-child(2) {
  transition-delay: 250ms;
  -moz-transition-delay: 250ms;
  -webkit-transition-delay: 250ms;
  -ms-transition-delay: 250ms;
}

/* line 1995, ../sass/style.scss */
.new-block.type-10 .image-wrapper:hover .image-socials-box a:nth-child(3) {
  transition-delay: 350ms;
  -moz-transition-delay: 350ms;
  -webkit-transition-delay: 350ms;
  -ms-transition-delay: 350ms;
}

/* line 1996, ../sass/style.scss */
.new-block.type-10 .image-wrapper:hover .image-socials-box a:nth-child(4) {
  transition-delay: 450ms;
  -moz-transition-delay: 450ms;
  -webkit-transition-delay: 450ms;
  -ms-transition-delay: 450ms;
}

/* line 1998, ../sass/style.scss */
.loaded .banner-text, .loaded .banner-image, .loaded .testimonials-text, .loaded .testimonials-image {
  transition-delay: 300ms;
  -moz-transition-delay: 300ms;
  -webkit-transition-delay: 300ms;
  -ms-transition-delay: 300ms;
}

/* line 1999, ../sass/style.scss */
.screens-preview-animation {
  transition-delay: 700ms;
  -moz-transition-delay: 700ms;
  -webkit-transition-delay: 700ms;
  -ms-transition-delay: 700ms;
}

/*  =====================
	VERTICAL ALIGN STYLES
	=====================  */
/* line 2004, ../sass/style.scss */
.class {
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  top: 50%;
  position: absolute;
}

/*  =================
	BORDER BOX STYLES
	=================  */
/* line 2009, ../sass/style.scss */
.subscription-form input {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

/*  ===============
	BOX SIZE STYLES
	===============  */
/* line 2014, ../sass/style.scss */
.box-size {
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
}

/*-------------------------------------------------------------------------------------------------------------------------------*/
/* 31 - WELCOME PAGE */
/*-------------------------------------------------------------------------------------------------------------------------------*/
/* line 2020, ../sass/style.scss */
.welcome-slide {
  min-height: 500px;
  min-height: 100vh;
  background-position: center center;
  background-size: cover;
  position: relative;
}

/* line 2021, ../sass/style.scss */
.welcome-banner {
  background-image: url(../img/welcome/banner.jpg);
  background-attachment: fixed;
}

/* line 2022, ../sass/style.scss */
.welcome-banner:before {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  content: "";
  background: rgba(0, 0, 0, 0.8);
}

/* line 2023, ../sass/style.scss */
.welcome-banner .container {
  position: relative;
  height: inherit;
  min-height: inherit;
}

/* line 2024, ../sass/style.scss */
.welcome-vertical-center {
  position: absolute;
  left: 15px;
  right: 15px;
  top: 50%;
  margin-top: -50px;
  text-align: center;
}

/* line 2025, ../sass/style.scss */
.welcome-logo {
  margin-bottom: 50px;
}

/* line 2026, ../sass/style.scss */
.welcome-title {
  font-size: 30px;
  line-height: 30px;
  color: #fff;
  text-transform: uppercase;
  font-family: 'bold';
  margin-bottom: 50px!important;
}

/* line 2027, ../sass/style.scss */
.welcome-tabs {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
}

/* line 2028, ../sass/style.scss */
.welcome-tab-entry {
  height: 100px;
  padding: 0 20px;
  text-align: center;
  color: #fff;
  font-size: 18px;
  line-height: 20px;
  text-transform: uppercase;
  font-family: 'bold';
}

@media (min-width: 992px) {
  /* line 2030, ../sass/style.scss */
  .welcome-tab-entry:hover {
    height: 150px;
  }
}
/* line 2032, ../sass/style.scss */
.welcome-tab-entry:nth-child(1) {
  background: #d13237;
}

/* line 2033, ../sass/style.scss */
.welcome-tab-entry:nth-child(2) {
  background: #00bbd2;
}

/* line 2034, ../sass/style.scss */
.welcome-tab-entry:nth-child(3) {
  background: #4caf50;
}

/* line 2035, ../sass/style.scss */
.welcome-tab-entry:nth-child(4) {
  background: #ba68c8;
}

/* line 2036, ../sass/style.scss */
.welcome-tab-entry .cell-view {
  width: 1000px;
}

/* line 2037, ../sass/style.scss */
.welcome-slide .align-container {
  max-width: 500px;
  margin: 0 auto;
  padding-bottom: 90px;
}

/* line 2038, ../sass/style.scss */
.template-link-entry {
  display: block;
  position: relative;
}

/* line 2039, ../sass/style.scss */
.template-link-entry .background {
  display: block;
  width: 100%;
  height: auto;
}

/* line 2040, ../sass/style.scss */
.template-link-entry .preview {
  position: absolute;
  width: 92%;
  height: 64%;
  left: 4%;
  top: 4.5%;
  overflow: hidden;
}

/* line 2041, ../sass/style.scss */
.template-link-entry .preview img {
  position: absolute;
  width: 100%;
  left: 0;
  top: 0;
  -moz-transition: all 1000ms ease-out;
  -o-transition: all 1000ms ease-out;
  -webkit-transition: all 1000ms ease-out;
  transition: all 1000ms ease-out;
  -ms-transition: all 1000ms ease-out;
}

/* line 2042, ../sass/style.scss */
.template-link-entry .preview .button {
  position: absolute;
  padding-left: 30px;
  padding-right: 30px;
  position: absolute;
  z-index: 2;
  left: 50%;
  top: 50%;
  transform: translateX(-50%) translateY(-50%);
  -moz-transform: translateX(-50%) -webkit-translateY(-50%);
  -ms-transform: translateX(-50%) translateY(-50%);
  transform: translateX(-50%) translateY(-50%);
}

/*.template-link-entry .preview:after{position: absolute; width: 100%; height: 100%; left: 0; top: 0; background: rgba(0,0,0,0.7); content: "";}*/
/* line 2044, ../sass/style.scss */
.template-link-entry:hover .preview img {
  transform: translateY(-90%);
  -moz-transform: translateY(-90%);
  -webkit-transform: translateY(-90%);
  -ms-transform: translateY(-90%);
  -moz-transition: all 10000ms linear;
  -o-transition: all 10000ms linear;
  -webkit-transition: all 10000ms linear;
  transition: all 10000ms linear;
  -ms-transition: all 10000ms linear;
}

/* line 2045, ../sass/style.scss */
.template-link-entry:hover .preview:after, .template-link-entry:hover .preview .button {
  opacity: 0;
}

/* line 2046, ../sass/style.scss */
.align-container .description {
  text-align: center;
  top: 100%;
  margin-top: 40px;
  font-size: 18px;
  line-height: 20px;
  text-transform: uppercase;
  font-family: 'bold';
  color: #222;
  position: relative;
  padding-bottom: 10px;
  margin-bottom: 50px;
  display: inline-block;
}

/* line 2047, ../sass/style.scss */
.align-container .description:after {
  position: absolute;
  width: 100%;
  height: 5px;
  background: #d13237;
  left: 0;
  bottom: 0;
  content: "";
}

/* line 2048, ../sass/style.scss */
.align-container .buttons-wrapper {
  text-align: center;
}

/* line 2049, ../sass/style.scss */
.welcome-subtitle {
  font-size: 60px;
  line-height: 60px;
  text-align: center;
  color: #222;
  text-transform: uppercase;
  font-family: 'bold';
  padding-top: 120px;
}

/* line 2050, ../sass/style.scss */
.welcome-subtitle-description {
  font-size: 18px;
  line-height: 24px;
  color: #777;
  text-align: center;
  margin-bottom: 70px;
}

/* line 2051, ../sass/style.scss */
.welcome-developed-by {
  background: #222;
  color: #fff;
  text-align: center;
  padding: 50px 20px;
  text-transform: uppercase;
  font-family: 'bold';
  font-size: 16px;
  line-height: 16px;
}

/* line 2052, ../sass/style.scss */
.template-link-entry .description:after, .template-link-entry .preview:after, .template-link-entry .preview .button, .welcome-tab-entry {
  -moz-transition: all 0.15s ease-out;
  -o-transition: all 0.15s ease-out;
  -webkit-transition: all 0.15s ease-out;
  transition: all 0.15s ease-out;
  -ms-transition: all 0.15s ease-out;
}

/* line 2053, ../sass/style.scss */
.label-new {
  font-size: 20px;
  line-height: 32px;
  color: #fff;
  font-family: 'bold';
  background: #d80d0d;
  position: absolute;
  left: -39px;
  top: 19px;
  width: 150px;
  text-align: center;
  text-transform: uppercase;
  transform: rotate(-45deg);
  -moz-transform: rotate(-45deg);
  -webkit-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  letter-spacing: 1px;
}

@media (max-width: 991px) {
  /* line 2055, ../sass/style.scss */
  .welcome-slide {
    height: auto;
    min-height: 700px;
  }
}
@media (max-width: 767px) {
  /* line 2058, ../sass/style.scss */
  .welcome-vertical-center {
    margin-top: -115px;
  }

  /* line 2059, ../sass/style.scss */
  .welcome-slide {
    min-height: 400px;
  }

  /* line 2060, ../sass/style.scss */
  .welcome-title {
    font-size: 22px;
  }

  /* line 2061, ../sass/style.scss */
  .welcome-tabs {
    position: relative;
  }

  /* line 2062, ../sass/style.scss */
  .welcome-tab-entry {
    height: 70px;
  }

  /* line 2063, ../sass/style.scss */
  .welcome-subtitle {
    padding-top: 50px;
  }

  /* line 2064, ../sass/style.scss */
  .welcome-subtitle-description {
    margin-bottom: 40px;
  }

  /* line 2065, ../sass/style.scss */
  .welcome-slide .align-container {
    padding-bottom: 50px;
  }
}
/*-------------------------------------------------------------------------------------------------------------------------------*/
/* 32 - TEASER */
/*-------------------------------------------------------------------------------------------------------------------------------*/
/*teaser 1*/
/* line 2074, ../sass/style.scss */
.teaser-container {
  height: 100%;
  position: relative;
}

/* line 2075, ../sass/style.scss */
.teaser-container .page-tagline .title {
  color: #fff;
}

/* line 2076, ../sass/style.scss */
.teaser-container .page-tagline .description {
  color: rgba(255, 255, 255, 0.8);
}

/* line 2077, ../sass/style.scss */
.teaser-container .cell-view {
  vertical-align: middle;
}

/* line 2078, ../sass/style.scss */
.teaser-container .row-view:first-child, .teaser-container .row-view:last-child {
  height: 40px;
}

/* line 2079, ../sass/style.scss */
.teaser-logo {
  text-align: center;
  padding: 20px 0;
}

/* line 2080, ../sass/style.scss */
.teaser-logo .logo {
  display: inline-block;
}

/* line 2081, ../sass/style.scss */
.teaser-logo .logo img {
  display: block;
  max-height: 40px;
}

/* line 2082, ../sass/style.scss */
.teaser-content {
  background: #fff;
  padding: 70px 0;
  text-align: center;
}

/* line 2083, ../sass/style.scss */
.teaser-title {
  font-size: 48px;
  line-height: 48px;
  margin-bottom: 11px;
  color: #262626;
  text-transform: uppercase;
  font-weight: 700;
  font-family: 'bold', sans-serif;
}

/* line 2084, ../sass/style.scss */
.teaser-description {
  font-size: 15px;
  line-height: 22px;
  color: #b6b6b6;
  max-width: 560px;
  margin: 0 auto;
  margin-bottom: 35px;
}

/* line 2085, ../sass/style.scss */
.teaser-date {
  margin-bottom: 55px;
}

/* line 2086, ../sass/style.scss */
.teaser-date .date-square {
  font-family: 'bold', sans-serif;
  float: left;
  width: 25%;
  position: relative;
}

/* line 2087, ../sass/style.scss */
.teaser-date .date-square:after {
  height: 60px;
  width: 1px;
  background: #e3e3e3;
  position: absolute;
  top: 50%;
  margin-top: -30px;
  left: 0;
  content: "";
}

/* line 2088, ../sass/style.scss */
.teaser-date .date-square:first-child:after {
  display: none;
}

/* line 2089, ../sass/style.scss */
.teaser-date .date-square span {
  display: block;
  font-size: 72px;
  line-height: 70px;
  display: block;
  font-weight: 400;
  color: #262626;
}

/* line 2090, ../sass/style.scss */
.teaser-date .date-square p {
  font-size: 18px;
  line-height: 24px;
  display: block;
  color: #c8c8c8;
  text-transform: uppercase;
  font-family: 'bold', sans-serif;
}

/* line 2091, ../sass/style.scss */
.teaser-content .center {
  max-width: 740px;
  margin: 0 auto;
  padding: 0 15px;
}

/* line 2092, ../sass/style.scss */
.teaser-copyright {
  text-align: center;
  padding: 25px 0;
}

/* line 2093, ../sass/style.scss */
.teaser-copyright .copyright {
  margin-bottom: 0;
  color: #b4b4b4;
}

/* line 2094, ../sass/style.scss */
.teaser-copyright .copyright a {
  color: #d7af23;
}

/* line 2095, ../sass/style.scss */
.styled-form {
  max-width: 430px;
  margin: 0 auto;
}

/* line 2096, ../sass/style.scss */
.styled-form .form-title {
  font-size: 14px;
  line-height: 22px;
  color: #fff;
  text-align: left;
  text-transform: uppercase;
  font-family: 'bold', sans-serif;
  margin-bottom: 5px;
}

/* line 2097, ../sass/style.scss */
.styled-form .submit-wrapper {
  position: relative;
  float: right;
  height: 45px;
  white-space: nowrap;
  line-height: 45px;
  width: 45px;
  background: url("../img/theme-1/icon9.png") no-repeat center center rgba(255, 255, 255, 0.1);
}

/* line 2098, ../sass/style.scss */
.styled-form .submit-wrapper:hover {
  background: url("../img/icon9-white.png") no-repeat center center #fcc012;
  background-image: url("../img/icon9-white.png") !important;
}

/* line 2099, ../sass/style.scss */
.styled-form .submit-wrapper input {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  border: none;
  font-family: 'regular', sans-serif;
}

/* line 2100, ../sass/style.scss */
.styled-form .field-wrapper {
  border: 1px #e6e6e6 solid;
  border-right: none;
  height: 45px;
  margin-right: 45px;
}

/* line 2101, ../sass/style.scss */
.styled-form .field-wrapper input {
  width: 100%;
  padding: 0 20px;
  border: none;
  font-size: 13px;
  line-height: 43px;
  height: 43px;
  margin: 0!important;
  color: #777!important;
}

/*Phones (<768px)*/
@media (max-width: 767px) {
  /* line 2104, ../sass/style.scss */
  .teaser-date .date-square span {
    font-size: 38px;
    line-height: 34px;
  }

  /* line 2105, ../sass/style.scss */
  .teaser-date .date-square p {
    font-size: 14px;
  }

  /* line 2106, ../sass/style.scss */
  .teaser-content {
    padding: 35px 0;
  }
}
/* line 2108, ../sass/style.scss */
body.teaser {
  background: #000;
}

/* line 2109, ../sass/style.scss */
body.teaser .teaser-container {
  background-color: transparent;
}

/* line 2110, ../sass/style.scss */
.teaser-background {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-position: center center;
  background-size: cover;
  opacity: 0.3;
}

/* line 2111, ../sass/style.scss */
body.teaser .teaser-content {
  background: none;
}

/* line 2112, ../sass/style.scss */
body.teaser .teaser-title {
  color: #fff;
}

/* line 2113, ../sass/style.scss */
body.teaser .teaser-description {
  color: #b6b6b6;
}

/* line 2114, ../sass/style.scss */
body.teaser .teaser-date .date-square span {
  color: #fff;
}

/* line 2115, ../sass/style.scss */
body.teaser .teaser-date .date-square p {
  color: #edc32f;
}

/* line 2116, ../sass/style.scss */
body.teaser .teaser-date .date-square:after {
  background: rgba(255, 255, 255, 0.3);
}

/* line 2117, ../sass/style.scss */
body.teaser .styled-form .field-wrapper {
  border-color: rgba(255, 255, 255, 0.1);
}

/* line 2118, ../sass/style.scss */
body.teaser .styled-form .field-wrapper input {
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
}

/* line 2119, ../sass/style.scss */
.teaser-copyright .copyright a:hover {
  color: #fff!important;
}

/*teaser circles*/
/* line 2121, ../sass/style.scss */
.teaser-date-circles {
  max-width: 650px;
  margin-bottom: 55px;
}

/* line 2122, ../sass/style.scss */
.teaser-date-circles .date-entry {
  float: left;
  width: 25%;
  text-align: center;
}

/* line 2123, ../sass/style.scss */
.teaser-date-circles .date-square {
  width: 130px;
  height: 130px;
  display: inline-block;
  position: relative;
  display: inline-block;
  margin-bottom: 10px;
}

/* line 2124, ../sass/style.scss */
.teaser-date-circles .date-square span {
  font-family: 'bold', sans-serif;
  font-size: 40px;
  line-height: 40px;
  color: #fff;
  padding-top: 37px;
  display: block;
  position: relative;
}

/* line 2125, ../sass/style.scss */
.teaser-date-circles .date-square p {
  font-size: 11px;
  line-height: 22px;
  color: #c9c9c9;
  text-transform: uppercase;
  position: relative;
}

/* line 2126, ../sass/style.scss */
.teaser-date-circles .date-square .circle-box {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  transform: rotate(-90deg);
  -moz-transform: rotate(-90deg);
  -webkit-transform: rotate(-90deg);
  -ms-transform: rotate(-90deg);
}

/* line 2127, ../sass/style.scss */
.teaser-date-circles .date-square .circle-box svg circle {
  stroke-dashoffset: 0;
  transition: stroke-dashoffset 1s linear;
  -webkit-transition: stroke-dashoffset 1s linear;
  stroke-width: 3px;
  stroke: #fcc012;
}

/* line 2128, ../sass/style.scss */
.teaser-date-circles .date-square .circle-box.stop-animation svg circle {
  transition: none;
  -webkit-transition: none;
}

/* line 2129, ../sass/style.scss */
.teaser-background video.bgvid {
  position: absolute;
}

@media (max-width: 767px) {
  /* line 2131, ../sass/style.scss */
  .teaser-date-circles .date-entry {
    width: 50%;
  }
}
/*-------------------------------------------------------------------------------------------------------------------------------*/
/* 33 - PAGE "404" */
/*-------------------------------------------------------------------------------------------------------------------------------*/
/* line 2138, ../sass/style.scss */
.canvas-overflow {
  overflow: hidden;
  background-size: cover;
  background-position: center center;
}

/* line 2139, ../sass/style.scss */
.canvas-overflow:before {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  content: "";
}

/* line 2140, ../sass/style.scss */
.canvas-background {
  position: absolute;
  left: 0;
  top: 0;
}

/* line 2141, ../sass/style.scss */
.content-404 {
  text-align: center;
  max-width: 500px;
  padding: 10px 20px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  margin-bottom: 20px;
}

/* line 2142, ../sass/style.scss */
.content-404 .title {
  font-size: 170px;
  line-height: 170px;
  color: #fcc012;
  font-family: 'black', sans-serif;
}

/* line 2143, ../sass/style.scss */
.content-404 .description {
  font-size: 18px;
  line-height: 24px;
  color: #b4b4b4;
}

/* line 2144, ../sass/style.scss */
.content-404 .description a {
  color: #fcc012;
}

/* line 2145, ../sass/style.scss */
.content-404 .description a:hover {
  color: #fff!important;
}

@media (max-width: 767px) {
  /* line 2147, ../sass/style.scss */
  .content-404 .title {
    font-size: 70px;
    line-height: 70px;
  }
}
/*-------------------------------------------------------------------------------------------------------------------------------*/
/* 34 - HOMEPAGE "INDEX 5" */
/*-------------------------------------------------------------------------------------------------------------------------------*/
/* line 2155, ../sass/style.scss */
.screens-preview-animation {
  position: relative;
  top: 200px;
  opacity: 0;
}

/* line 2156, ../sass/style.scss */
.loaded .screens-preview-animation {
  position: relative;
  top: 0px;
  opacity: 1;
}

/* line 2157, ../sass/style.scss */
.screens-preview-box {
  position: relative;
  top: -120px;
  transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
}

/* line 2158, ../sass/style.scss */
.screens-preview-margin {
  margin-top: -270px;
}

/* line 2159, ../sass/style.scss */
.screens-preview-box .im {
  position: relative;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.4);
}

/* line 2160, ../sass/style.scss */
.screens-preview-box > .im {
  width: 23%;
  position: relative;
  left: 38.5%;
}

/* line 2161, ../sass/style.scss */
.screens-preview-box > .im > img {
  z-index: 5;
}

/* line 2162, ../sass/style.scss */
.screens-preview-box > .im .im {
  position: absolute;
}

/* line 2163, ../sass/style.scss */
.screens-preview-box .left .im:nth-child(1) {
  right: 75%;
  width: 90%;
  top: 5%;
  z-index: 4;
}

/* line 2164, ../sass/style.scss */
.screens-preview-box .left .im:nth-child(1):hover {
  right: 95%;
}

/* line 2165, ../sass/style.scss */
.screens-preview-box .left .im:nth-child(2) {
  right: 125%;
  width: 80%;
  top: 10%;
  z-index: 3;
}

/* line 2166, ../sass/style.scss */
.screens-preview-box .left .im:nth-child(2):hover {
  right: 145%;
}

/* line 2167, ../sass/style.scss */
.screens-preview-box .left .im:nth-child(3) {
  right: 170%;
  width: 70%;
  top: 15%;
  z-index: 2;
}

/* line 2168, ../sass/style.scss */
.screens-preview-box .left .im:nth-child(3):hover {
  right: 185%;
}

/* line 2169, ../sass/style.scss */
.screens-preview-box .left .im:nth-child(4) {
  right: 205%;
  width: 60%;
  top: 20%;
  z-index: 1;
}

/* line 2170, ../sass/style.scss */
.screens-preview-box .left .im:nth-child(4):hover {
  right: 225%;
}

/* line 2171, ../sass/style.scss */
.screens-preview-box .right .im:nth-child(1) {
  left: 75%;
  width: 90%;
  top: 5%;
  z-index: 4;
}

/* line 2172, ../sass/style.scss */
.screens-preview-box .right .im:nth-child(1):hover {
  left: 95%;
}

/* line 2173, ../sass/style.scss */
.screens-preview-box .right .im:nth-child(2) {
  left: 125%;
  width: 80%;
  top: 10%;
  z-index: 3;
}

/* line 2174, ../sass/style.scss */
.screens-preview-box .right .im:nth-child(2):hover {
  left: 145%;
}

/* line 2175, ../sass/style.scss */
.screens-preview-box .right .im:nth-child(3) {
  left: 170%;
  width: 70%;
  top: 15%;
  z-index: 2;
}

/* line 2176, ../sass/style.scss */
.screens-preview-box .right .im:nth-child(3):hover {
  left: 185%;
}

/* line 2177, ../sass/style.scss */
.screens-preview-box .right .im:nth-child(4) {
  left: 205%;
  width: 60%;
  top: 20%;
  z-index: 1;
}

/* line 2178, ../sass/style.scss */
.screens-preview-box .right .im:nth-child(4):hover {
  left: 225%;
}

/* line 2179, ../sass/style.scss */
.screens-preview-box .right .im {
  transform-origin: 0% 50% 0px;
  -moz-transform-origin: 0% 50% 0px;
  -webkit-transform-origin: 0% 50% 0px;
  -ms-transform-origin: 0% 50% 0px;
  transform: perspective(500px) rotateY(5deg);
  -moz-transform: perspective(500px) rotateY(5deg);
  -webkit-transform: perspective(500px) rotateY(5deg);
  -ms-transform: perspective(500px) rotateY(5deg);
}

/* line 2180, ../sass/style.scss */
.screens-preview-box .left .im {
  transform-origin: 100% 50% 0px;
  -moz-transform-origin: 100% 50% 0px;
  -webkit-transform-origin: 100% 50% 0px;
  -ms-transform-origin: 100% 50% 0px;
  transform: perspective(500px) rotateY(-5deg);
  -moz-transform: perspective(500px) rotateY(-5deg);
  -webkit-transform: perspective(500px) rotateY(-5deg);
  -ms-transform: perspective(500px) rotateY(-5deg);
}

/* line 2181, ../sass/style.scss */
.screens-preview-box .im:hover {
  transform: perspective(500px) rotateY(0deg);
  -moz-transform: perspective(500px) rotateY(0deg);
  -webkit-transform: perspective(500px) rotateY(0deg);
  -ms-transform: perspective(500px) rotateY(0deg);
}

/* line 2182, ../sass/style.scss */
.screens-preview-box img {
  display: block;
  width: 100%;
  position: relative;
}

/**/
/* line 2184, ../sass/style.scss */
.new-block .styled-form {
  max-width: 730px;
}

/* line 2185, ../sass/style.scss */
.new-block .styled-form form {
  float: none;
}

/* line 2186, ../sass/style.scss */
.new-block .styled-form .form-title {
  text-align: center;
}

/**/
/* line 2188, ../sass/style.scss */
.screens-slider-box {
  max-width: 300px;
  margin: 0 auto;
}

/* line 2189, ../sass/style.scss */
.screens-slider-box img {
  width: 100%;
  height: auto;
}

/* line 2190, ../sass/style.scss */
.align-slider-article {
  height: 535px;
}

/**/
/* line 2192, ../sass/style.scss */
.bottom-screens-align {
  padding-bottom: 70px;
}

/* line 2193, ../sass/style.scss */
.counters-box {
  text-align: center;
  color: #fff;
}

/* line 2194, ../sass/style.scss */
.counters-box .fa {
  font-size: 50px;
  line-height: 50px;
  margin-bottom: 25px;
}

/* line 2195, ../sass/style.scss */
.counters-box .description {
  font-size: 14px;
  line-height: 24px;
  margin: 0 30px 20px 30px;
}

/* line 2196, ../sass/style.scss */
.counters-box .counter {
  font-size: 36px;
  line-height: 36px;
  font-family: 'bold', sans-serif;
  display: block;
  text-align: center;
  display: block;
  margin-bottom: 10px;
}

/**/
/* line 2198, ../sass/style.scss */
.filtergrid-sizer, .filter-item {
  width: 25%;
}

/* line 2199, ../sass/style.scss */
.filter-item img {
  display: block;
  width: 100%;
  height: auto;
  box-shadow: 3px 3px 15px rgba(0, 0, 0, 0.3);
  position: relative;
  cursor: pointer;
}

/* line 2200, ../sass/style.scss */
.filter-item:hover {
  z-index: 1;
}

/* line 2201, ../sass/style.scss */
.filter-item img:hover {
  transform: scale(0.95);
  -moz-transform: scale(0.95);
  -webkit-transform: scale(0.95);
  -ms-transform: scale(0.95);
}

/* line 2202, ../sass/style.scss */
.filter-align {
  padding: 10px;
}

/**/
/* line 2204, ../sass/style.scss */
.two-columns-icons .little-img-text-entry {
  padding-bottom: 40px!important;
}

/**/
/* line 2206, ../sass/style.scss */
.footer-animation-screen-box {
  text-align: center;
  left: 9%;
  position: relative;
  margin-bottom: -50px;
}

/* line 2207, ../sass/style.scss */
.footer-animation-screen {
  display: inline-block;
  width: 30%;
  margin-left: -17%;
}

/* line 2208, ../sass/style.scss */
.footer-animation-screen img {
  display: block;
  width: 100%;
  height: auto;
  box-shadow: rgba(0, 0, 0, 0.2) -12px 0px 17px 0px, rgba(0, 0, 0, 0.09804) -5px 0px 5px 0px;
  transform: perspective(1500px) rotateY(30deg);
  -moz-transform: perspective(1500px) rotateY(30deg);
  -webkit-transform: perspective(1500px) rotateY(30deg);
  -ms-transform: perspective(1500px) rotateY(30deg);
}

/**/
/* line 2210, ../sass/style.scss */
.layer-animation-screen-box {
  width: 60%;
  position: relative;
  left: 20%;
  top: 50px;
}

/* line 2211, ../sass/style.scss */
.layer-animation-screen {
  margin-top: -47%;
  position: relative;
}

/* line 2212, ../sass/style.scss */
.layer-animation-screen:nth-child(1) {
  margin-top: 0%;
}

/* line 2213, ../sass/style.scss */
.layer-animation-screen:nth-child(2) .scale {
  transform: scale(0.95);
}

/* line 2214, ../sass/style.scss */
.layer-animation-screen:nth-child(3) .scale {
  transform: scale(0.9);
}

/* line 2215, ../sass/style.scss */
.layer-animation-screen:nth-child(4) .scale {
  transform: scale(0.85);
}

/* line 2216, ../sass/style.scss */
.layer-animation-screen:nth-child(5) .scale {
  transform: scale(0.8);
}

/* line 2217, ../sass/style.scss */
.layer-animation-screen:nth-last-child(1) {
  z-index: 0;
}

/* line 2218, ../sass/style.scss */
.layer-animation-screen:nth-last-child(2) {
  z-index: 1;
}

/* line 2219, ../sass/style.scss */
.layer-animation-screen:nth-last-child(3) {
  z-index: 2;
}

/* line 2220, ../sass/style.scss */
.layer-animation-screen:nth-last-child(4) {
  z-index: 3;
}

/* line 2221, ../sass/style.scss */
.layer-animation-screen:nth-last-child(4) {
  z-index: 4;
}

/* line 2222, ../sass/style.scss */
.layer-animation-screen:nth-last-child(5) {
  z-index: 5;
}

/* line 2223, ../sass/style.scss */
.layer-animation-screen img {
  display: block;
  width: 100%;
  height: auto;
  box-shadow: rgba(0, 0, 0, 0.2) 0px 12px 17px 0px, rgba(0, 0, 0, 0.09804) 0px 5px 5px 0px;
  transform: perspective(1000px) rotateX(55deg);
  -moz-transform: perspective(1000px) rotateX(55deg);
  -webkit-transform: perspective(1000px) rotateX(55deg);
  -ms-transform: perspective(1000px) rotateX(55deg);
  transform-origin: 50% 0% 0px;
  -moz-transform-origin: 50% 0% 0px;
  -webkit-transform-origin: 50% 0% 0px;
  -ms-transform-origin: 50% 0% 0px;
}

@media (max-width: 991px) {
  /* line 2225, ../sass/style.scss */
  .screens-preview-box {
    top: auto;
    transform: translateY(0%);
    -moz-transform: translateY(0%);
    -webkit-transform: translateY(0%);
    -ms-transform: translateY(0%);
  }

  /* line 2226, ../sass/style.scss */
  .screens-preview-margin {
    margin-top: 40px;
  }

  /* line 2227, ../sass/style.scss */
  .bottom-screens-align {
    padding-bottom: 30px;
  }

  /* line 2228, ../sass/style.scss */
  .filtergrid-sizer, .filter-item {
    width: 33.33333333333%;
  }

  /* line 2229, ../sass/style.scss */
  .layer-animation-screen-box {
    top: 50px;
  }
}
@media (max-width: 767px) {
  /* line 2232, ../sass/style.scss */
  .counter-entry {
    padding-bottom: 40px;
  }

  /* line 2233, ../sass/style.scss */
  .counters-box .fa {
    margin-bottom: 10px;
  }

  /* line 2234, ../sass/style.scss */
  .counters-box .counter {
    font-size: 30px;
    line-height: 30px;
  }

  /* line 2235, ../sass/style.scss */
  .align-slider-article {
    height: auto;
    display: block;
  }

  /* line 2236, ../sass/style.scss */
  .filtergrid-sizer, .filter-item {
    width: 50%;
  }

  /* line 2237, ../sass/style.scss */
  .layer-animation-screen-box {
    top: 40px;
  }
}
/*-------------------------------------------------------------------------------------------------------------------------------*/
/* 34 - HOMEPAGE "INDEX 6" */
/*-------------------------------------------------------------------------------------------------------------------------------*/
/* line 2244, ../sass/style.scss */
.hand-image {
  position: absolute;
  left: 0;
  bottom: 0;
  max-height: 80%;
  width: auto;
}

/**/
/* line 2247, ../sass/style.scss */
.custom-screen-wrapper {
  text-align: center;
}

/* line 2248, ../sass/style.scss */
.custom-screen-wrapper img {
  display: inline-block;
  width: 100%;
  max-width: 300px;
  height: auto;
  vertical-align: bottom;
  margin-bottom: 25px;
}

/* line 2249, ../sass/style.scss */
.screens-custom-slider-box .swiper-slide .custom-screen-wrapper {
  opacity: 0.5;
  transform: scale(0.5);
  -moz-transform: scale(0.5);
  -webkit-transform: scale(0.5);
  -ms-transform: scale(0.5);
}

/* line 2250, ../sass/style.scss */
.screens-custom-slider-box .swiper-slide-visible .custom-screen-wrapper {
  transform-origin: 100% 50% 0px;
  -moz-transform-origin: 100% 50% 0px;
  -webkit-transform-origin: 100% 50% 0px;
  -ms-transform-origin: 100% 50% 0px;
  transform: perspective(1000px) rotateY(-40deg) scale(0.7);
  -moz-transform: perspective(1000px) rotateY(-40deg) scale(0.7);
  -webkit-transform: perspective(1000px) rotateY(-40deg) scale(0.7);
  -ms-transform: perspective(1000px) rotateY(-40deg) scale(0.7);
  cursor: pointer;
}

/* line 2251, ../sass/style.scss */
.screens-custom-slider-box .swiper-slide-active .custom-screen-wrapper {
  opacity: 1;
  transform: perspective(1000px) rotateY(0deg) scale(1);
  -moz-transform: perspective(1000px) rotateY(0deg) scale(1);
  -webkit-transform: perspective(1000px) rotateY(0deg) scale(1);
  -ms-transform: perspective(1000px) rotateY(0deg) scale(1);
  cursor: default;
}

/* line 2252, ../sass/style.scss */
.screens-custom-slider-box .swiper-slide-active + .swiper-slide-visible .custom-screen-wrapper {
  transform-origin: 0% 50% 0px;
  -moz-transform-origin: 0% 50% 0px;
  -webkit-transform-origin: 0% 50% 0px;
  -ms-transform-origin: 0% 50% 0px;
  transform: perspective(1000px) rotateY(40deg) scale(0.7);
  -moz-transform: perspective(1000px) rotateY(40deg) scale(0.7);
  -webkit-transform: perspective(1000px) rotateY(40deg) scale(0.7);
  -ms-transform: perspective(1000px) rotateY(40deg) scale(0.7);
  cursor: pointer;
}

/* line 2253, ../sass/style.scss */
.custom-screen-wrapper:hover {
  opacity: 1!important;
}

/* line 2254, ../sass/style.scss */
.screens-custom-slider-box .text {
  font-size: 16px;
  line-height: 22px;
  text-align: center;
}

/**/
/* line 2256, ../sass/style.scss */
.phone-icons-image {
  text-align: center;
  position: absolute;
  width: 100%;
  left: 0;
  top: 0;
  opacity: 0;
}

/* line 2257, ../sass/style.scss */
.phone-icons-image.visible {
  opacity: 1;
}

/* line 2258, ../sass/style.scss */
.phone-icons-image:first-child {
  position: relative;
  opacity: 1;
}

/* line 2259, ../sass/style.scss */
.phone-icons-image img {
  display: inline-block;
  max-width: 100%;
  height: auto;
}

/* line 2261, ../sass/style.scss */
.phone-icons-description .entry {
  margin-bottom: 100px;
  min-height: 105px;
  cursor: pointer;
}

/* line 2262, ../sass/style.scss */
.phone-icons-description .entry .icon {
  width: 50px;
  float: left;
  padding-top: 5px;
}

/* line 2263, ../sass/style.scss */
.phone-icons-description .entry .content {
  margin-left: 75px;
}

/* line 2264, ../sass/style.scss */
.phone-icons-description .entry .icon img {
  display: inline-block;
  max-width: 100%;
  height: auto;
}

/* line 2265, ../sass/style.scss */
.phone-icons-description .entry .title {
  color: #222;
  font-family: "bold",sans-serif;
  font-size: 16px;
  line-height: 22px;
  text-transform: uppercase;
  margin-bottom: 10px;
}

/* line 2266, ../sass/style.scss */
.phone-icons-description .entry:hover .title {
  color: #d13237;
}

/* line 2267, ../sass/style.scss */
.phone-icons-description .entry .description {
  font-size: 14px;
  line-height: 24px;
  color: #777;
}

/* line 2268, ../sass/style.scss */
.phone-icons-description.right-align {
  text-align: right;
}

/* line 2269, ../sass/style.scss */
.phone-icons-description.right-align .entry .icon {
  float: right;
}

/* line 2270, ../sass/style.scss */
.phone-icons-description.right-align .entry .content {
  margin-right: 75px;
  margin-left: 0;
}

/**/
/* line 2272, ../sass/style.scss */
.left-right-entry {
  margin-bottom: 120px;
}

/* line 2273, ../sass/style.scss */
.left-right-entry .image-entry {
  text-align: center;
}

/* line 2274, ../sass/style.scss */
.left-right-entry .image-entry img {
  max-width: 400px;
  width: 70%;
  height: auto;
  display: inline-block;
  vertical-align: bottom;
}

/* line 2275, ../sass/style.scss */
.left-right-entry .cell-view {
  height: 585px;
}

/**/
/* line 2277, ../sass/style.scss */
.dividing-image {
  width: 100%;
  height: auto;
  margin-bottom: 40px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
}

/**/
/* line 2279, ../sass/style.scss */
.inline-play-button {
  position: relative;
  display: inline-block;
  margin: 0;
  left: auto;
  top: auto;
  float: none;
}

/**/
/* line 2281, ../sass/style.scss */
#content-wrapper .team-inline-entry {
  margin-bottom: 40px;
}

/**/
@media (min-width: 1200px) {
  /* line 2284, ../sass/style.scss */
  .sidebar-menu-added header {
    left: 0;
    width: 180px;
    height: 100%;
    background: #fff;
    border-right: 1px solid #f2f2f2;
  }

  /* line 2285, ../sass/style.scss */
  .sidebar-menu-added #content-wrapper {
    padding-left: 180px;
  }

  /* line 2286, ../sass/style.scss */
  .sidebar-menu-added nav {
    padding-right: 0;
    width: 100%;
  }

  /* line 2287, ../sass/style.scss */
  .sidebar-menu-added nav > ul {
    float: none;
  }

  /* line 2288, ../sass/style.scss */
  .sidebar-menu-added nav > ul > li {
    float: none;
    padding-right: 15px;
    padding-left: 5px;
  }

  /* line 2289, ../sass/style.scss */
  .sidebar-menu-added nav > ul > li > a {
    float: none;
    display: block;
    text-align: center;
    height: auto;
    line-height: 15px;
    padding-top: 12px;
    padding-bottom: 12px;
    margin-top: 10px;
  }

  /* line 2290, ../sass/style.scss */
  .sidebar-menu-added nav > ul > li > a:hover {
    color: #fff!important;
  }

  /* line 2291, ../sass/style.scss */
  .sidebar-menu-added nav > ul > li > a:not(.act) {
    color: #777;
  }

  /* line 2292, ../sass/style.scss */
  .sidebar-menu-added nav .submeny a:after {
    left: 100%;
    top: 50%;
    transform: rotate(-90deg);
    -moz-transform: rotate(-90deg);
    -webkit-transform: rotate(-90deg);
    -ms-transform: rotate(-90deg);
    margin-left: -4px;
    margin-top: -3px;
  }

  /* line 2293, ../sass/style.scss */
  .sidebar-menu-added nav ul ul {
    left: 100%;
    top: 0;
    margin: 0;
    transform: none;
    -moz-transform: none;
    -webkit-transform: none;
    -ms-transform: none;
    max-height: 500px;
    overflow-y: auto;
    width: auto;
  }

  /* line 2294, ../sass/style.scss */
  .sidebar-menu-added nav ul li:last-child ul {
    margin-left: 0;
    top: auto;
    bottom: -10px;
  }

  /* line 2295, ../sass/style.scss */
  .sidebar-menu-added #logo {
    margin-left: 44px;
    margin-bottom: 20px;
  }

  /* line 2296, ../sass/style.scss */
  .sidebar-menu-added #logo .act {
    opacity: 1;
  }

  /* line 2297, ../sass/style.scss */
  .sidebar-menu-added .theme-config {
    right: -152px;
    left: auto;
  }

  /* line 2298, ../sass/style.scss */
  .sidebar-menu-added .theme-config.active {
    right: 0;
  }

  /* line 2299, ../sass/style.scss */
  .sidebar-menu-added .theme-config .open {
    right: 100%;
    left: auto;
    transform: rotate(180deg);
    -moz-transform: rotate(180deg);
    -webkit-transform: rotate(180deg);
    -ms-transform: rotate(180deg);
  }
}
@media (max-width: 991px) {
  /* line 2302, ../sass/style.scss */
  .hand-image {
    display: none;
  }

  /* line 2303, ../sass/style.scss */
  .phone-icons-description .entry {
    margin-bottom: 10px;
    min-height: 0;
  }

  /* line 2304, ../sass/style.scss */
  .left-right-entry {
    margin-bottom: 50px;
  }

  /* line 2305, ../sass/style.scss */
  .left-right-entry .cell-view {
    display: block;
    height: auto;
  }
}
@media (max-width: 767px) {
  /* line 2308, ../sass/style.scss */
  .phone-icons-image {
    padding-bottom: 20px;
  }

  /* line 2309, ../sass/style.scss */
  #content-wrapper .phone-icons-description .entry {
    text-align: center;
    margin-bottom: 20px!important;
  }

  /* line 2310, ../sass/style.scss */
  #content-wrapper .phone-icons-description .entry .icon {
    float: none;
    text-align: center;
    width: auto;
    margin-bottom: 10px;
  }

  /* line 2311, ../sass/style.scss */
  #content-wrapper .phone-icons-description .entry .content {
    margin-left: 0;
    margin-right: 0;
  }

  /* line 2312, ../sass/style.scss */
  .left-right-entry .image-entry {
    padding-bottom: 50px;
  }

  /* line 2313, ../sass/style.scss */
  #content-wrapper .team-inline-entry {
    margin-bottom: 0px;
  }

  /* line 2314, ../sass/style.scss */
  #content-wrapper .team-inline-entry .paddings-container {
    padding-bottom: 40px!important;
  }
}
/*ie*/
/* line 2319, ../sass/style.scss */
_:-ms-input-placeholder, :root .type-2.block .image-block .bg {
  position: absolute;
  width: 100%;
  left: 0;
}

/* line 2321, ../sass/style.scss */
.block.type-5 .swiper-container {
  padding-left: 0;
}

/* line 2322, ../sass/style.scss */
.block.type-5 .swiper-container .swiper-slide > * {
  padding-left: 35px;
}

/*back to top button*/
/* line 2324, ../sass/style.scss */
.back-to-top {
  position: absolute;
  right: 10px;
  bottom: 10px;
  width: 60px;
  line-height: 60px;
  text-align: center;
  background: #d13237;
  color: #fff;
  font-size: 18px;
  cursor: pointer;
}

/* line 2325, ../sass/style.scss */
.back-to-top:hover {
  background: #fff!important;
  color: #222;
}

@media (max-width: 767px) {
  /* line 2327, ../sass/style.scss */
  .back-to-top {
    width: 40px;
    line-height: 40px;
  }
}
