@charset "UTF-8";
/*! Made with Bones: http://themble.com/bones :) */
/******************************************************************
Site Name:
Author:

Stylesheet: Main Stylesheet

Here's where the magic happens. Here, you'll see we are calling in
the separate media queries. The base mobile goes outside any query
and is called at the beginning, after that we call the rest
of the styles inside media queries.

Helpful articles on Sass file organization:
http://thesassway.com/advanced/modular-css-naming-conventions

******************************************************************/
/*********************
IMPORTING PARTIALS
These files are needed at the beginning so that we establish all
our mixins, functions, and variables that we'll be using across
the whole project.
*********************/
/******************************************************************
Site Name:
Author:

Stylesheet: Variables

Here is where we declare all our variables like colors, fonts,
base values, and defaults. We want to make sure this file ONLY
contains variables that way our files don't get all messy.
No one likes a mess.

******************************************************************/
/*********************
COLORS
Need help w/ choosing your colors? Try this site out:
http://0to255.com/
*********************/
/*
Here's a great tutorial on how to
use color variables properly:
http://sachagreif.com/sass-color-variables/
*/
/******************************************************************
Site Name:
Author:

Stylesheet: Typography

Need to import a font or set of icons for your site? Drop them in
here or just use this to establish your typographical grid. Or not.
Do whatever you want to...GOSH!

Helpful Articles:
http://trentwalton.com/2012/06/19/fluid-type/
http://ia.net/blog/responsive-typography-the-basics/
http://alistapart.com/column/responsive-typography-is-a-physical-discipline

******************************************************************/
/*********************
FONT FACE (IN YOUR FACE)
*********************/
/*  To embed your own fonts, use this syntax
  and place your fonts inside the
  library/fonts folder. For more information
  on embedding fonts, go to:
  http://www.fontsquirrel.com/
  Be sure to remove the comment brackets.
*/
/*  @font-face {
      font-family: 'Font Name';
      src: url('library/fonts/font-name.eot');
      src: url('library/fonts/font-name.eot?#iefix') format('embedded-opentype'),
             url('library/fonts/font-name.woff') format('woff'),
             url('library/fonts/font-name.ttf') format('truetype'),
             url('library/fonts/font-name.svg#font-name') format('svg');
      font-weight: normal;
      font-style: normal;
  }
*/
@font-face {
  font-family: 'Bebas';
  src: url("../fonts/bebasneue_regular-webfont.ttf") format("truetype");
  font-weight: normal;
}
@font-face {
  font-family: 'Bebas';
  src: url("../fonts/bebasneue_bold-webfont.ttf") format("truetype");
  font-weight: bold;
}
@font-face {
  font-family: 'Bebas';
  src: url("../fonts/bebasneue_light-webfont.ttf") format("truetype");
  font-weight: 300;
}
@font-face {
  font-family: "SegoeUI";
  src: url("../fonts/SegoeUIRegular/SegoeUIRegular.eot");
  src: url("../fonts/SegoeUIRegular/SegoeUIRegular.eot?#iefix") format("embedded-opentype"), url("../fonts/SegoeUIRegular/SegoeUIRegular.woff") format("woff"), url("../fonts/SegoeUIRegular/SegoeUIRegular.ttf") format("truetype");
  font-style: normal;
  font-weight: normal;
}
/* font-family: "SegoeUIBold"; */
@font-face {
  font-family: "SegoeUI";
  src: url("../fonts/SegoeUIBold/SegoeUIBold.eot");
  src: url("../fonts/SegoeUIBold/SegoeUIBold.eot?#iefix") format("embedded-opentype"), url("../fonts/SegoeUIBold/SegoeUIBold.woff") format("woff"), url("../fonts/SegoeUIBold/SegoeUIBold.ttf") format("truetype");
  font-style: normal;
  font-weight: 700;
}
/* font-family: "SegoeUIItalic"; */
@font-face {
  font-family: "SegoeUI";
  src: url("../fonts/SegoeUIItalic/SegoeUIItalic.eot");
  src: url("../fonts/SegoeUIItalic/SegoeUIItalic.eot?#iefix") format("embedded-opentype"), url("../fonts/SegoeUIItalic/SegoeUIItalic.woff") format("woff"), url("../fonts/SegoeUIItalic/SegoeUIItalic.ttf") format("truetype");
  font-style: italic;
  font-weight: normal;
}
/* font-family: "SegoeUILight"; */
@font-face {
  font-family: "SegoeUI";
  src: url("../fonts/SegoeUILight/SegoeUILight.eot");
  src: url("../fonts/SegoeUILight/SegoeUILight.eot?#iefix") format("embedded-opentype"), url("../fonts/SegoeUILight/SegoeUILight.woff") format("woff"), url("../fonts/SegoeUILight/SegoeUILight.ttf") format("truetype");
  font-style: normal;
  font-weight: 300;
}
/* font-family: "SegoeUISemiBold"; */
@font-face {
  font-family: "SegoeUI";
  src: url("../fonts/SegoeUISemiBold/SegoeUISemiBold.eot");
  src: url("../fonts/SegoeUISemiBold/SegoeUISemiBold.eot?#iefix") format("embedded-opentype"), url("../fonts/SegoeUISemiBold/SegoeUISemiBold.woff") format("woff"), url("../fonts/SegoeUISemiBold/SegoeUISemiBold.ttf") format("truetype");
  font-style: normal;
  font-weight: 600;
}
/*
The following is based of Typebase:
https://github.com/devinhunt/typebase.css
I've edited it a bit, but it's a nice starting point.
*/
/*
 i imported this one in the functions file so bones would look sweet.
 don't forget to remove it for your site.
*/
/*
some nice typographical defaults
more here: http://www.newnet-soft.com/blog/csstypography
*/
/* line 130, ../scss/partials/_typography.scss */
p {
  -ms-word-break: break-all;
  -ms-word-wrap: break-all;
  word-break: break-word;
  word-break: break-word;
  -webkit-hyphens: auto;
  -moz-hyphens: auto;
  hyphens: auto;
  -webkit-hyphenate-before: 2;
  -webkit-hyphenate-after: 3;
  hyphenate-lines: 3;
  -webkit-font-feature-settings: "liga", "dlig";
  -moz-font-feature-settings: "liga=1, dlig=1";
  -ms-font-feature-settings: "liga", "dlig";
  -o-font-feature-settings: "liga", "dlig";
  font-feature-settings: "liga", "dlig";
}

/******************************************************************
Site Name:
Author:

Stylesheet: Sass Functions

You can do a lot of really cool things in Sass. Functions help you
make repeated actions a lot easier. They are really similar to mixins,
but can be used for so much more.

Anyway, keep them all in here so it's easier to find when you're
looking for one.

For more info on functions, go here:
http://sass-lang.com/documentation/Sass/Script/Functions.html

******************************************************************/
/*********************
COLOR FUNCTIONS
These are helpful when you're working
with shadows and such things. It's essentially
a quicker way to write RGBA.

Example:
box-shadow: 0 0 4px black(0.3);
compiles to:
box-shadow: 0 0 4px rgba(0,0,0,0.3);
*********************/
/*********************
RESPONSIVE HELPER FUNCTION
If you're creating a responsive site, then
you've probably already read
Responsive Web Design: http://www.abookapart.com/products/responsive-web-design

Here's a nice little helper function for calculating
target / context
as mentioned in that book.

Example:
width: cp(650px, 1000px);
or
width: calc-percent(650px, 1000px);
both compile to:
width: 65%;
*********************/
/******************************************************************
Site Name:
Author:

Stylesheet: Mixins Stylesheet

This is where you can take advantage of Sass' great features: Mixins.
I won't go in-depth on how they work exactly,
there are a few articles below that will help do that. What I will
tell you is that this will help speed up simple changes like
changing a color or adding CSS3 techniques gradients.

A WORD OF WARNING: It's very easy to overdo it here. Be careful and
remember less is more.

Helpful:
http://sachagreif.com/useful-sass-mixins/
http://thesassway.com/intermediate/leveraging-sass-mixins-for-cleaner-code
http://web-design-weekly.com/blog/2013/05/12/handy-sass-mixins/

******************************************************************/
/*********************
TRANSITION
*********************/
/*
I totally rewrote this to be cleaner and easier to use.
You'll need to be using Sass 3.2+ for these to work.
Thanks to @anthonyshort for the inspiration on these.
USAGE: @include transition(all 0.2s ease-in-out);
*/
/*********************
CSS3 GRADIENTS
Be careful with these since they can
really slow down your CSS. Don't overdo it.
*********************/
/* @include css-gradient(#dfdfdf,#f8f8f8); */
/*********************
BOX SIZING
*********************/
/* @include box-sizing(border-box); */
/* NOTE: value of "padding-box" is only supported in Gecko. So
probably best not to use it. I mean, were you going to anyway? */
/*********************
IMPORTING MODULES
Modules are reusable blocks or elements we use throughout the project.
We can break them up as much as we want or just keep them all in one.
I mean, you can do whatever you want. The world is your oyster. Unless
you hate oysters, then the world is your peanut butter & jelly sandwich.
*********************/
/*********************
BASE (MOBILE) SIZE
This are the mobile styles. It's what people see on their phones. If
you set a great foundation, you won't need to add too many styles in
the other stylesheets. Remember, keep it light: Speed is Important.
*********************/
/*!
 * Start Bootstrap - Simple Sidebar HTML Template (http://startbootstrap.com)
 * Code licensed under the Apache License v2.0.
 * For details, see http://www.apache.org/licenses/LICENSE-2.0.
 */
/* Toggle Styles */
/* line 9, ../scss/partials/_simple-sidebar.scss */
#wrapper {
  padding-left: 0;
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
  background-color: transparent;
}

/* line 18, ../scss/partials/_simple-sidebar.scss */
#wrapper.toggled {
  padding-left: 250px;
}

/* line 22, ../scss/partials/_simple-sidebar.scss */
#sidebar-wrapper {
  z-index: 1000;
  position: fixed;
  left: 250px;
  width: 0;
  height: 100%;
  margin-left: -250px;
  overflow-y: auto;
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
}

/* line 36, ../scss/partials/_simple-sidebar.scss */
#socials, #searchLang {
  width: 250px;
}

/* line 40, ../scss/partials/_simple-sidebar.scss */
#wrapper.toggled #sidebar-wrapper {
  width: 250px;
}

/* line 44, ../scss/partials/_simple-sidebar.scss */
#page-content-wrapper {
  width: 100%;
  position: absolute;
  padding: 15px;
}

/* line 50, ../scss/partials/_simple-sidebar.scss */
#wrapper.toggled #page-content-wrapper {
  position: absolute;
  margin-right: -250px;
}

/* Sidebar Styles */
/* line 57, ../scss/partials/_simple-sidebar.scss */
.sidebar-nav {
  position: absolute;
  top: 0;
  width: 250px;
  margin: 0;
  padding: 0;
  list-style: none;
}

/* line 66, ../scss/partials/_simple-sidebar.scss */
.sidebar-nav li {
  text-indent: 20px;
  line-height: 40px;
}

/* line 71, ../scss/partials/_simple-sidebar.scss */
.sidebar-nav li a {
  display: block;
  text-decoration: none;
  color: #999999;
}

/* line 77, ../scss/partials/_simple-sidebar.scss */
.sidebar-nav li a:hover {
  text-decoration: none;
  color: #fff;
  background: rgba(255, 255, 255, 0.2);
}

/* line 83, ../scss/partials/_simple-sidebar.scss */
.sidebar-nav li a:active,
.sidebar-nav li a:focus {
  text-decoration: none;
}

/* line 88, ../scss/partials/_simple-sidebar.scss */
.sidebar-nav > .sidebar-brand {
  min-height: 65px;
  font-size: 18px;
  line-height: 60px;
}

/* line 94, ../scss/partials/_simple-sidebar.scss */
.sidebar-nav > .sidebar-brand a {
  color: #999999;
}

/* line 98, ../scss/partials/_simple-sidebar.scss */
.sidebar-nav > .sidebar-brand a:hover {
  color: #fff;
  background: none;
}

@media (min-width: 768px) {
  /* line 104, ../scss/partials/_simple-sidebar.scss */
  #wrapper {
    padding-left: 250px;
  }

  /* line 108, ../scss/partials/_simple-sidebar.scss */
  #wrapper.toggled {
    padding-left: 0;
  }

  /* line 112, ../scss/partials/_simple-sidebar.scss */
  #sidebar-wrapper {
    width: 250px;
  }

  /* line 116, ../scss/partials/_simple-sidebar.scss */
  #socials, #searchLang {
    width: 250px;
  }

  /* line 120, ../scss/partials/_simple-sidebar.scss */
  #wrapper.toggled #sidebar-wrapper {
    width: 0;
  }

  /* line 124, ../scss/partials/_simple-sidebar.scss */
  #page-content-wrapper {
    padding: 20px;
    position: relative;
  }

  /* line 129, ../scss/partials/_simple-sidebar.scss */
  #wrapper.toggled #page-content-wrapper {
    position: relative;
    margin-right: 0;
  }
}
@media (min-width: 992px) {
  /* line 135, ../scss/partials/_simple-sidebar.scss */
  #wrapper {
    padding-left: 300px;
  }

  /* line 139, ../scss/partials/_simple-sidebar.scss */
  #wrapper.toggled {
    padding-left: 0;
  }

  /* line 143, ../scss/partials/_simple-sidebar.scss */
  #sidebar-wrapper {
    width: 300px;
  }

  /* line 147, ../scss/partials/_simple-sidebar.scss */
  #wrapper.toggled #sidebar-wrapper {
    width: 0;
  }

  /* line 150, ../scss/partials/_simple-sidebar.scss */
  .sidebar-nav {
    width: 300px;
  }

  /* line 153, ../scss/partials/_simple-sidebar.scss */
  #socials, #searchLang {
    width: 300px;
  }

  /* line 156, ../scss/partials/_simple-sidebar.scss */
  #page-content-wrapper {
    padding: 20px;
    position: relative;
  }

  /* line 161, ../scss/partials/_simple-sidebar.scss */
  #wrapper.toggled #page-content-wrapper {
    position: relative;
    margin-right: 0;
  }
}
/* line 1, ../scss/breakpoints/_bootstrapOver.scss */
html {
  font-size: 12px;
}

/* line 4, ../scss/breakpoints/_bootstrapOver.scss */
body {
  font-family: "SegoeUI", "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 120%;
  line-height: 1.5;
  color: #323232;
  background-color: #fff;
  -webkit-font-smoothing: antialiased;
}

/* line 12, ../scss/breakpoints/_bootstrapOver.scss */
#sliderBg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
/* line 18, ../scss/breakpoints/_bootstrapOver.scss */
#sliderBg .slick-list, #sliderBg .slick-track {
  height: 100%;
}
/* line 21, ../scss/breakpoints/_bootstrapOver.scss */
#sliderBg .slick-dots {
  bottom: 25px;
}
/* line 24, ../scss/breakpoints/_bootstrapOver.scss */
#sliderBg .slick-dots li button:before {
  content: "я┐╜";
  color: transparent;
  width: 12px;
  height: 12px;
  background: #69696b;
  border: 2px solid #69696b;
  -webkit-border-radius: 25px;
  -moz-border-radius: 25px;
  border-radius: 25px;
}
/* line 33, ../scss/breakpoints/_bootstrapOver.scss */
#sliderBg .slick-dots li:hover button:before {
  background-color: transparent;
}
/* line 36, ../scss/breakpoints/_bootstrapOver.scss */
#sliderBg .slick-dots li.slick-active button:before {
  background-color: transparent;
}

/* line 40, ../scss/breakpoints/_bootstrapOver.scss */
#sliderText {
  margin: 11% 0 0 0;
}
/* line 43, ../scss/breakpoints/_bootstrapOver.scss */
#sliderText p, #sliderText span, #sliderText font {
  font-family: "Bebas", "Helvetica Neue", Helvetica, Arial, sans-serif;
}
/* line 47, ../scss/breakpoints/_bootstrapOver.scss */
#sliderText .btn-default {
  border: 3px solid #69696b;
  color: #69696b;
  background: none;
  font-size: 200%;
  padding: 10px 30px;
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  border-radius: 0;
  text-transform: uppercase;
}

/* line 57, ../scss/breakpoints/_bootstrapOver.scss */
#sidebar-wrapper {
  background-color: rgba(255, 255, 255, 0.4);
}
/* line 60, ../scss/breakpoints/_bootstrapOver.scss */
#sidebar-wrapper #logo {
  text-align: center;
  margin: 0;
  top: 45px;
  position: relative;
}
/* line 65, ../scss/breakpoints/_bootstrapOver.scss */
#sidebar-wrapper #logo img {
  max-width: 96%;
}
/* line 69, ../scss/breakpoints/_bootstrapOver.scss */
#sidebar-wrapper nav {
  margin: 0px 25px 0 0;
  top: 80px;
  position: relative;
  text-align: right;
}
/* line 75, ../scss/breakpoints/_bootstrapOver.scss */
#sidebar-wrapper nav ul li {
  display: block;
  float: none;
}
/* line 78, ../scss/breakpoints/_bootstrapOver.scss */
#sidebar-wrapper nav ul li a {
  color: #323232;
  font-size: 120%;
  line-height: 1.2;
  display: inline-block;
}
/* line 83, ../scss/breakpoints/_bootstrapOver.scss */
#sidebar-wrapper nav ul li a:hover {
  color: #9fa6b4;
  text-decoration: none;
  background-color: transparent;
}
/* line 88, ../scss/breakpoints/_bootstrapOver.scss */
#sidebar-wrapper nav ul li a:focus {
  background: transparent;
}
/* line 92, ../scss/breakpoints/_bootstrapOver.scss */
#sidebar-wrapper nav ul li .sub-menu {
  background-color: transparent;
  margin-right: 30px;
  padding: 0;
  display: none;
}
/* line 98, ../scss/breakpoints/_bootstrapOver.scss */
#sidebar-wrapper nav ul li.current-menu-parent ul {
  display: block;
}
/* line 104, ../scss/breakpoints/_bootstrapOver.scss */
#sidebar-wrapper #searchLang {
  position: absolute;
  bottom: 130px;
  left: 0;
}
/* line 109, ../scss/breakpoints/_bootstrapOver.scss */
#sidebar-wrapper #searchLang #searchform {
  position: relative;
}
/* line 112, ../scss/breakpoints/_bootstrapOver.scss */
#sidebar-wrapper #searchLang .form-group {
  width: 100%;
}
/* line 113, ../scss/breakpoints/_bootstrapOver.scss */
#sidebar-wrapper #searchLang input[type=text] {
  width: 100%;
  padding-right: 26px;
  background: rgba(255, 255, 255, 0.5);
}
/* line 118, ../scss/breakpoints/_bootstrapOver.scss */
#sidebar-wrapper #searchLang button[type=submit] {
  background: none;
  border: none;
  position: absolute;
  box-shadow: none;
  font-size: 148%;
  line-height: 100%;
  padding: 4px;
  right: 0px;
  top: 0;
  z-index: 5;
  color: #323232;
}
/* line 130, ../scss/breakpoints/_bootstrapOver.scss */
#sidebar-wrapper #searchLang button[type=submit]:focus {
  outline: none;
}
/* line 132, ../scss/breakpoints/_bootstrapOver.scss */
#sidebar-wrapper #searchLang .widget {
  margin: 0;
  padding: 0;
  line-height: 200%;
}
/* line 137, ../scss/breakpoints/_bootstrapOver.scss */
#sidebar-wrapper #searchLang .widget ul {
  margin: 0;
  padding: 0;
}
/* line 142, ../scss/breakpoints/_bootstrapOver.scss */
#sidebar-wrapper #searchLang .widget ul li a {
  color: #323232;
  font-size: 115%;
}
/* line 151, ../scss/breakpoints/_bootstrapOver.scss */
#sidebar-wrapper #socials {
  text-align: center;
  position: absolute;
  bottom: 50px;
  left: 0;
}
/* line 157, ../scss/breakpoints/_bootstrapOver.scss */
#sidebar-wrapper #socials .list {
  margin: 0;
  padding: 0;
}
/* line 160, ../scss/breakpoints/_bootstrapOver.scss */
#sidebar-wrapper #socials .list li {
  list-style: none;
  display: inline-block;
  text-indent: 0px;
}
/* line 164, ../scss/breakpoints/_bootstrapOver.scss */
#sidebar-wrapper #socials .list li a {
  color: #545454;
  font-size: 200%;
  padding: 0 10px;
}

/* line 173, ../scss/breakpoints/_bootstrapOver.scss */
#topPanel {
  background: #C1C1C1;
  padding: 20px;
  margin: -15px -15px 15px -15px;
}
/* line 178, ../scss/breakpoints/_bootstrapOver.scss */
#topPanel div.logo img {
  height: 56px;
  margin: -10px 15px 0 0;
}

/* line 184, ../scss/breakpoints/_bootstrapOver.scss */
#pageContent {
  background-color: rgba(255, 255, 255, 0.3);
}

/* line 188, ../scss/breakpoints/_bootstrapOver.scss */
.butiquePageList .item {
  margin-bottom: 15px;
}
/* line 190, ../scss/breakpoints/_bootstrapOver.scss */
.butiquePageList .item a {
  text-decoration: none;
  position: relative;
  display: block;
  color: #fff;
}
/* line 197, ../scss/breakpoints/_bootstrapOver.scss */
.butiquePageList .item .butiqueThumb {
  width: 100%;
  height: 150px;
}
/* line 201, ../scss/breakpoints/_bootstrapOver.scss */
.butiquePageList .item .title {
  text-align: center;
  position: absolute;
  bottom: 6px;
  background: rgba(0, 0, 0, 0.7);
  width: 100%;
  font-weight: 700;
  padding: 8px 15px;
}
/* line 210, ../scss/breakpoints/_bootstrapOver.scss */
.butiquePageList .item .street {
  text-align: center;
  color: #fff;
  font-weight: 400;
}

/* line 218, ../scss/breakpoints/_bootstrapOver.scss */
.butiquePage .simpleList {
  padding: 0;
}
/* line 220, ../scss/breakpoints/_bootstrapOver.scss */
.butiquePage .simpleList .inner {
  background: #323232;
  padding: 15px;
  position: absolute;
  width: 100%;
  top: -20px;
  overflow: hidden;
}
/* line 228, ../scss/breakpoints/_bootstrapOver.scss */
.butiquePage .simpleList .inner2 {
  background: #323232;
  padding: 15px;
  top: -15px;
  overflow: hidden;
  height: 250px;
  margin: 0px 0 25px;
  position: relative;
}
/* line 237, ../scss/breakpoints/_bootstrapOver.scss */
.butiquePage .simpleList .titleH {
  color: #fff;
  text-align: center;
  text-transform: uppercase;
  font-size: 125%;
  font-weight: 700;
  padding: 3px;
  margin: 0 0 10px;
  border-bottom: 1px solid;
}
/* line 248, ../scss/breakpoints/_bootstrapOver.scss */
.butiquePage .simpleList .item .title {
  color: #fff;
  text-transform: uppercase;
}
/* line 252, ../scss/breakpoints/_bootstrapOver.scss */
.butiquePage .simpleList .item a {
  color: #fff;
  text-transform: uppercase;
  display: block;
  text-decoration: none;
}
/* line 257, ../scss/breakpoints/_bootstrapOver.scss */
.butiquePage .simpleList .item a.sub {
  padding-left: 20px;
  text-transform: capitalize;
}
/* line 261, ../scss/breakpoints/_bootstrapOver.scss */
.butiquePage .simpleList .item a:hover, .butiquePage .simpleList .item a.act {
  background: #fff;
  color: #323232;
}
/* line 269, ../scss/breakpoints/_bootstrapOver.scss */
.butiquePage .cityContent .top {
  position: relative;
}
/* line 272, ../scss/breakpoints/_bootstrapOver.scss */
.butiquePage .cityContent .butiqueimg {
  width: 100%;
}
/* line 276, ../scss/breakpoints/_bootstrapOver.scss */
.butiquePage .cityContent .title {
  position: absolute;
  bottom: 6px;
  left: 0;
  color: #FFFFFF;
  background: rgba(0, 0, 0, 0.5);
}

/* line 293, ../scss/breakpoints/_bootstrapOver.scss */
.gallery iframe {
  width: 100%;
  height: 300px;
}
/* line 297, ../scss/breakpoints/_bootstrapOver.scss */
.gallery .buti {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
/* line 302, ../scss/breakpoints/_bootstrapOver.scss */
.gallery .buti .flexElem {
  flex: 1 1 auto;
}
/* line 306, ../scss/breakpoints/_bootstrapOver.scss */
.gallery .item {
  display: inline-block !important;
  float: none;
  vertical-align: top;
  height: 300px;
  margin: 0 0 15px 0px;
  flex: 1 1 auto;
  text-align: center;
}
/* line 315, ../scss/breakpoints/_bootstrapOver.scss */
.gallery .item.mainImg {
  margin-left: 0;
  width: 100%;
}
/* line 320, ../scss/breakpoints/_bootstrapOver.scss */
.gallery .item img {
  height: 100%;
  display: inline-block;
}

/* line 326, ../scss/breakpoints/_bootstrapOver.scss */
.fancybox-overlay {
  background: rgba(255, 255, 255, 0.7) !important;
}

/* line 329, ../scss/breakpoints/_bootstrapOver.scss */
.fancybox-opened .fancybox-title {
  text-align: center;
}

/* line 332, ../scss/breakpoints/_bootstrapOver.scss */
.slick-slide img {
  margin: 0 auto;
  max-width: 95%;
}

/* line 336, ../scss/breakpoints/_bootstrapOver.scss */
#exslider {
  margin: 50px 0;
}

/* line 340, ../scss/breakpoints/_bootstrapOver.scss */
#secondMain {
  position: absolute;
  width: 100%;
  left: 0;
  top: 0;
  height: 100%;
}
/* line 346, ../scss/breakpoints/_bootstrapOver.scss */
#secondMain .titleBlock {
  text-align: center;
  font-size: 20pt;
}
/* line 350, ../scss/breakpoints/_bootstrapOver.scss */
#secondMain .subTitleBlock {
  text-align: center;
  font-size: 14pt;
  line-height: 16pt;
  margin: 15px 0 40px;
  color: #999;
}
/* line 357, ../scss/breakpoints/_bootstrapOver.scss */
#secondMain .items .item {
  margin-bottom: 60px;
  text-align: center;
  min-height: 177px;
}
/* line 362, ../scss/breakpoints/_bootstrapOver.scss */
#secondMain .inner {
  position: absolute;
  top: 15%;
}
/* line 369, ../scss/breakpoints/_bootstrapOver.scss */
#secondMain .inner .btn-default {
  border: 3px solid #69696b;
  color: #69696b;
  background: none;
  font-size: 200%;
  padding: 10px 30px;
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  border-radius: 0;
  text-transform: uppercase;
  margin: 35px 0 0;
}

/* line 385, ../scss/breakpoints/_bootstrapOver.scss */
.media .item {
  display: inline-block !important;
  float: none;
  vertical-align: top;
  height: 300px;
  margin: 0 0 15px 15px;
}
/* line 393, ../scss/breakpoints/_bootstrapOver.scss */
.media img {
  height: 100%;
}

/* line 397, ../scss/breakpoints/_bootstrapOver.scss */
.vcard {
  display: none;
}

/* line 402, ../scss/breakpoints/_bootstrapOver.scss */
.page-template-page-contacts .entry-content {
  margin-top: 50px;
}
/* line 405, ../scss/breakpoints/_bootstrapOver.scss */
.page-template-page-contacts .contactItem {
  margin-bottom: 40px;
}
/* line 407, ../scss/breakpoints/_bootstrapOver.scss */
.page-template-page-contacts .contactItem .image {
  max-width: 90px;
  margin-top: 8px;
  margin-right: 20px;
}
/* line 413, ../scss/breakpoints/_bootstrapOver.scss */
.page-template-page-contacts .contactItem .image img {
  width: 100%;
}
/* line 417, ../scss/breakpoints/_bootstrapOver.scss */
.page-template-page-contacts .contactItem .info {
  float: left;
  margin-left: 0px;
}
/* line 420, ../scss/breakpoints/_bootstrapOver.scss */
.page-template-page-contacts .contactItem .info .title {
  font-weight: 600;
  font-size: 20px;
}
/* line 424, ../scss/breakpoints/_bootstrapOver.scss */
.page-template-page-contacts .contactItem .info .descr {
  font-size: 18px;
}
/* line 428, ../scss/breakpoints/_bootstrapOver.scss */
.page-template-page-contacts .contactItem .info .descr a:hover {
  text-decoration: none;
}

/* line 438, ../scss/breakpoints/_bootstrapOver.scss */
.devlexForm .title {
  font-weight: 600;
  font-size: 20px;
  line-height: 26px;
}
/* line 443, ../scss/breakpoints/_bootstrapOver.scss */
.devlexForm .descr {
  color: #777777;
  font-size: 15px;
  margin: 20px 0px 30px;
}
/* line 450, ../scss/breakpoints/_bootstrapOver.scss */
.devlexForm .form form .field {
  margin: 0 0 15px;
  border-color: #cfcfcf;
  position: relative;
  width: 100%;
  max-width: 400px;
}
/* line 457, ../scss/breakpoints/_bootstrapOver.scss */
.devlexForm .form form .field > span {
  display: inline-block;
  width: 30px;
  height: 18px;
  background-size: contain;
  position: absolute;
  left: 6px;
  top: 6px;
  padding-right: 6px;
  border-right: 1px solid #cfcfcf;
}
/* line 467, ../scss/breakpoints/_bootstrapOver.scss */
.devlexForm .form form .field > span:before {
  content: ' ';
  position: absolute;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.4);
}
/* line 476, ../scss/breakpoints/_bootstrapOver.scss */
.devlexForm .form form .field input[type=text], .devlexForm .form form .field input[type=tel], .devlexForm .form form .field input[type=email] {
  width: 100%;
  display: inline-block;
  border: none;
  border-bottom: 1px solid #cfcfcf;
  padding: 6px 10px 6px 45px;
  outline: none;
}
/* line 484, ../scss/breakpoints/_bootstrapOver.scss */
.devlexForm .form form .field input[type=text]:active, .devlexForm .form form .field input[type=text]:focus, .devlexForm .form form .field input[type=text]:hover, .devlexForm .form form .field input[type=tel]:active, .devlexForm .form form .field input[type=tel]:focus, .devlexForm .form form .field input[type=tel]:hover, .devlexForm .form form .field input[type=email]:active, .devlexForm .form form .field input[type=email]:focus, .devlexForm .form form .field input[type=email]:hover {
  border-color: #000;
}
/* line 487, ../scss/breakpoints/_bootstrapOver.scss */
.devlexForm .form form .field input[type=text]:active + span, .devlexForm .form form .field input[type=text]:focus + span, .devlexForm .form form .field input[type=text]:hover + span, .devlexForm .form form .field input[type=tel]:active + span, .devlexForm .form form .field input[type=tel]:focus + span, .devlexForm .form form .field input[type=tel]:hover + span, .devlexForm .form form .field input[type=email]:active + span, .devlexForm .form form .field input[type=email]:focus + span, .devlexForm .form form .field input[type=email]:hover + span {
  border-color: #000;
}
/* line 489, ../scss/breakpoints/_bootstrapOver.scss */
.devlexForm .form form .field input[type=text]:active + span:before, .devlexForm .form form .field input[type=text]:focus + span:before, .devlexForm .form form .field input[type=text]:hover + span:before, .devlexForm .form form .field input[type=tel]:active + span:before, .devlexForm .form form .field input[type=tel]:focus + span:before, .devlexForm .form form .field input[type=tel]:hover + span:before, .devlexForm .form form .field input[type=email]:active + span:before, .devlexForm .form form .field input[type=email]:focus + span:before, .devlexForm .form form .field input[type=email]:hover + span:before {
  display: none;
}
/* line 495, ../scss/breakpoints/_bootstrapOver.scss */
.devlexForm .form form .field > span.divName {
  background: url(../images/user_icon.png) 5px center no-repeat;
}
/* line 498, ../scss/breakpoints/_bootstrapOver.scss */
.devlexForm .form form .field > span.divCity {
  background: url(../images/city_icon.png) 5px center no-repeat;
}
/* line 501, ../scss/breakpoints/_bootstrapOver.scss */
.devlexForm .form form .field > span.divMail {
  background: url(../images/mail_icon.png) 5px center no-repeat;
}
/* line 504, ../scss/breakpoints/_bootstrapOver.scss */
.devlexForm .form form .field > span.divPhone {
  background: url(../images/user_icon.png) 5px center no-repeat;
}
/* line 508, ../scss/breakpoints/_bootstrapOver.scss */
.devlexForm .form form .but {
  max-width: 400px;
  width: 100%;
  margin-top: 30px;
}
/* line 512, ../scss/breakpoints/_bootstrapOver.scss */
.devlexForm .form form .but button.btn {
  background: #c00202;
  text-shadow: none;
  color: #fff;
  font-weight: 600;
  text-transform: uppercase;
  width: 100%;
  border: none;
  border-radius: 5px;
  padding: 10px;
  font-size: 12px;
  /* font-family: 'Lato'; */
  letter-spacing: 2px;
  box-shadow: 0px 5px 12px -3px #4b0000;
  outline: none;
}
/* line 528, ../scss/breakpoints/_bootstrapOver.scss */
.devlexForm .form form .but button.btn:hover {
  box-shadow: 0px 5px 12px -3px #ac4545;
}
/* line 535, ../scss/breakpoints/_bootstrapOver.scss */
.devlexForm .info {
  margin-top: 15px;
  text-align: center;
}
/* line 538, ../scss/breakpoints/_bootstrapOver.scss */
.devlexForm .info .success {
  color: #25b700;
}
/* line 541, ../scss/breakpoints/_bootstrapOver.scss */
.devlexForm .info .error {
  color: #f00;
}
/* line 545, ../scss/breakpoints/_bootstrapOver.scss */
.devlexForm .footerText {
  text-align: center;
  margin: 25px 0 0;
  color: #777777;
  font-size: 13px;
}

/* line 552, ../scss/breakpoints/_bootstrapOver.scss */
#timeline {
  padding: 50px 0;
}
/* line 554, ../scss/breakpoints/_bootstrapOver.scss */
#timeline * {
  transition: all .3s;
}
/* line 558, ../scss/breakpoints/_bootstrapOver.scss */
#timeline .subtitle {
  text-align: center;
  font-size: 20px;
  color: #666666;
  margin: 26px 0 0;
}
/* line 564, ../scss/breakpoints/_bootstrapOver.scss */
#timeline .list {
  margin: 0px 0 0;
  position: relative;
}
/* line 567, ../scss/breakpoints/_bootstrapOver.scss */
#timeline .list .line {
  position: absolute;
  top: 0;
  left: 15px;
  width: 1px;
  height: 100%;
  background-color: #666666;
  margin: 0 0 0 -0.5px;
}
/* line 577, ../scss/breakpoints/_bootstrapOver.scss */
#timeline .list .year {
  position: relative;
  margin: 10px 0 10px 50px;
}
/* line 580, ../scss/breakpoints/_bootstrapOver.scss */
#timeline .list .year h4 {
  color: #000;
  font-size: 20px;
  font-weight: 700;
  margin: 0 0 20px 0px;
  text-align: left;
}
/* line 588, ../scss/breakpoints/_bootstrapOver.scss */
#timeline .list .year h4.hovered {
  font-size: 30px;
  /*& ~ div.descr {
    color:#000;
  }*/
}
/* line 596, ../scss/breakpoints/_bootstrapOver.scss */
#timeline .list .year .descr:hover {
  color: #000;
}
/* line 598, ../scss/breakpoints/_bootstrapOver.scss */
#timeline .list .year .descr:hover ~ h4 {
  font-size: 30px;
}
/* line 603, ../scss/breakpoints/_bootstrapOver.scss */
#timeline .list .year.left h4 {
  /*margin-left: 50%;
  padding-left: 70px;*/
}
/* line 607, ../scss/breakpoints/_bootstrapOver.scss */
#timeline .list .year .row {
  font-size: 16px;
  color: #666666;
  display: block;
  align-items: center;
}
/* line 612, ../scss/breakpoints/_bootstrapOver.scss */
#timeline .list .year .row .fancy {
  position: relative;
  display: inline-block;
}
/* line 615, ../scss/breakpoints/_bootstrapOver.scss */
#timeline .list .year .row .fancy .hover {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.8);
  color: #356DB6;
  display: none;
}
/* line 624, ../scss/breakpoints/_bootstrapOver.scss */
#timeline .list .year .row .fancy .hover span {
  position: absolute;
  top: 50%;
  left: 50%;
  font-size: 40px;
  width: 40px;
  height: 40px;
  margin: -20px 0 0 -20px;
}
/* line 635, ../scss/breakpoints/_bootstrapOver.scss */
#timeline .list .year .row img {
  max-width: 250px;
  max-height: 150px;
  width: auto;
  height: auto;
  margin: 0 35px;
  border-radius: 10px;
}
/* line 643, ../scss/breakpoints/_bootstrapOver.scss */
#timeline .list .year .row .col-1 {
  width: 100%;
  padding: 10px;
  float: left;
  color: #7c7c7c;
}
/* line 648, ../scss/breakpoints/_bootstrapOver.scss */
#timeline .list .year .row .col-1.p-0 {
  padding: 0;
}
/* line 652, ../scss/breakpoints/_bootstrapOver.scss */
#timeline .list .year .row .col-2 {
  width: 100%;
  padding: 10px;
  float: left;
  color: #7c7c7c;
}
/* line 657, ../scss/breakpoints/_bootstrapOver.scss */
#timeline .list .year .row .col-2.p-0 {
  padding: 0;
}
/* line 661, ../scss/breakpoints/_bootstrapOver.scss */
#timeline .list .year .row .largeDevice {
  display: none;
}
/* line 664, ../scss/breakpoints/_bootstrapOver.scss */
#timeline .list .year .row .smallDevice {
  display: block;
  text-align: center;
}
/* line 670, ../scss/breakpoints/_bootstrapOver.scss */
#timeline .list .year div.descr.hovered {
  color: #000;
}
/* line 674, ../scss/breakpoints/_bootstrapOver.scss */
#timeline .list .year .timePoint {
  position: absolute;
  top: 22px;
  left: -35px;
  margin: -18px 0 0 -18px;
  width: 36px;
  height: 36px;
  background: #fff;
  border-radius: 20px;
  color: transparent;
  /*&:hover {
    & + h4, & ~ h4 {
      font-size: 30px;
      & + div.descr {
        color: #000;
      }
    }
  }*/
}
/* line 693, ../scss/breakpoints/_bootstrapOver.scss */
#timeline .list .year .timePoint span {
  display: inline-block;
  width: 22px;
  height: 22px;
  border-radius: 20px;
  box-shadow: 0px 0px 8px -1px #8d0000;
  background: #c00202;
  margin: 7px;
}
/* line 702, ../scss/breakpoints/_bootstrapOver.scss */
#timeline .list .year .timePoint img {
  max-width: 250px;
  max-height: 150px;
  width: auto;
  height: auto;
  display: block;
}

/* line 713, ../scss/breakpoints/_bootstrapOver.scss */
.exList {
  margin-top: 50px;
  text-align: center;
}
/* line 716, ../scss/breakpoints/_bootstrapOver.scss */
.exList .item {
  width: 300px;
  margin: 0 30px 30px 0;
  display: inline-block;
  vertical-align: top;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0px 0px 10px -3px #000;
  background: #fff;
}
/* line 725, ../scss/breakpoints/_bootstrapOver.scss */
.exList .item .image {
  height: 175px;
}
/* line 728, ../scss/breakpoints/_bootstrapOver.scss */
.exList .item .title {
  font-size: 20pt;
  color: #000;
  font-weight: 600;
  text-transform: uppercase;
  padding: 10px 20px;
}
/* line 734, ../scss/breakpoints/_bootstrapOver.scss */
.exList .item .title a {
  font-size: 20pt;
  color: #000;
  text-decoration: none !important;
  font-weight: 600;
  text-transform: uppercase;
}
/* line 740, ../scss/breakpoints/_bootstrapOver.scss */
.exList .item .title a:hover {
  text-decoration: none !important;
}
/* line 745, ../scss/breakpoints/_bootstrapOver.scss */
.exList .item .descr {
  color: #7c7c7c;
  padding: 0 20px;
  min-height: 85px;
}
/* line 750, ../scss/breakpoints/_bootstrapOver.scss */
.exList .item .more {
  padding: 10px 20px 20px;
}
/* line 752, ../scss/breakpoints/_bootstrapOver.scss */
.exList .item .more a {
  color: #000;
  font-weight: 600;
  text-decoration: none;
}
/* line 756, ../scss/breakpoints/_bootstrapOver.scss */
.exList .item .more a:hover {
  text-decoration: none;
}
/* line 759, ../scss/breakpoints/_bootstrapOver.scss */
.exList .item .more a span.arrow {
  display: inline-block;
  background: url(../images/arrow.png) center no-repeat;
  background-size: contain;
  width: 12px;
  height: 9px;
  margin: 0 0 0 8px;
  vertical-align: middle;
}

/* line 772, ../scss/breakpoints/_bootstrapOver.scss */
.dfPopUp {
  position: fixed;
  top: 0;
  left: 0;
  background: rgba(0, 0, 0, 0.7);
  z-index: 1100;
  width: 100%;
  height: 100%;
  display: none;
}
/* line 781, ../scss/breakpoints/_bootstrapOver.scss */
.dfPopUp .inner {
  position: absolute;
  top: 50%;
  left: 50%;
  background: #fff;
  width: 300px;
  padding: 20px;
  border-radius: 10px;
  margin: -225px 0 0 -150px;
}
/* line 791, ../scss/breakpoints/_bootstrapOver.scss */
.dfPopUp .inner .close {
  position: absolute;
  top: -10px;
  right: 5px;
  font-size: 50px;
  font-weight: 200;
}
/* line 799, ../scss/breakpoints/_bootstrapOver.scss */
.dfPopUp .inner .devlexForm .title {
  text-align: center;
}
/* line 802, ../scss/breakpoints/_bootstrapOver.scss */
.dfPopUp .inner .devlexForm .descr {
  text-align: center;
  padding: 0 0px;
}
/* line 807, ../scss/breakpoints/_bootstrapOver.scss */
.dfPopUp .inner .info {
  position: absolute;
  top: -15px;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.9);
  border-radius: 10px;
  display: flex;
  display: none;
  align-items: center;
  justify-content: center;
}
/* line 821, ../scss/breakpoints/_bootstrapOver.scss */
.dfPopUp .thankYou {
  position: absolute;
  top: 0px;
  left: 0;
  background: #fff;
  width: 100%;
  height: 100%;
  border-radius: 10px;
  padding: 40px 20px;
  display: none;
}
/* line 832, ../scss/breakpoints/_bootstrapOver.scss */
.dfPopUp .thankYou .descr {
  padding: 0 !important;
  margin: 50px 0 25px;
}
/* line 836, ../scss/breakpoints/_bootstrapOver.scss */
.dfPopUp .thankYou .choose {
  text-align: center;
}
/* line 838, ../scss/breakpoints/_bootstrapOver.scss */
.dfPopUp .thankYou .choose .item {
  width: 49%;
  display: inline-block;
  text-align: center;
}
/* line 842, ../scss/breakpoints/_bootstrapOver.scss */
.dfPopUp .thankYou .choose .item a {
  color: #fff;
  width: 85%;
  display: inline-block;
  text-align: center;
  text-transform: uppercase;
  border-radius: 5px;
  padding: 10px 0;
  line-height: 20px;
}
/* line 851, ../scss/breakpoints/_bootstrapOver.scss */
.dfPopUp .thankYou .choose .item a:hover {
  text-decoration: none;
}
/* line 855, ../scss/breakpoints/_bootstrapOver.scss */
.dfPopUp .thankYou .choose .item .telegram {
  background: #05a6e3;
}
/* line 857, ../scss/breakpoints/_bootstrapOver.scss */
.dfPopUp .thankYou .choose .item .telegram:hover {
  box-shadow: 0px 5px 12px -3px #42c6e3;
}
/* line 861, ../scss/breakpoints/_bootstrapOver.scss */
.dfPopUp .thankYou .choose .item .viber {
  background: #6a51ac;
}
/* line 863, ../scss/breakpoints/_bootstrapOver.scss */
.dfPopUp .thankYou .choose .item .viber:hover {
  box-shadow: 0px 5px 12px -3px #8777ac;
}
/* line 869, ../scss/breakpoints/_bootstrapOver.scss */
.dfPopUp .thankYou .mailPlace {
  text-align: center;
}
/* line 871, ../scss/breakpoints/_bootstrapOver.scss */
.dfPopUp .thankYou .mailPlace .field {
  margin: 0 0 15px;
  border-color: #cfcfcf;
  position: relative;
  width: 60%;
  max-width: 400px;
  display: inline-block;
  margin-right: 10px;
}
/* line 880, ../scss/breakpoints/_bootstrapOver.scss */
.dfPopUp .thankYou .mailPlace .field > span {
  display: inline-block;
  width: 30px;
  height: 18px;
  background-size: contain;
  position: absolute;
  left: 6px;
  top: 6px;
  padding-right: 6px;
  border-right: 1px solid #cfcfcf;
}
/* line 890, ../scss/breakpoints/_bootstrapOver.scss */
.dfPopUp .thankYou .mailPlace .field > span:before {
  content: ' ';
  position: absolute;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.4);
  left: 0;
}
/* line 900, ../scss/breakpoints/_bootstrapOver.scss */
.dfPopUp .thankYou .mailPlace .field input[type=text], .dfPopUp .thankYou .mailPlace .field input[type=tel], .dfPopUp .thankYou .mailPlace .field input[type=email] {
  width: 100%;
  display: inline-block;
  border: none;
  border-bottom: 1px solid #cfcfcf;
  padding: 6px 10px 6px 45px;
  outline: none;
}
/* line 908, ../scss/breakpoints/_bootstrapOver.scss */
.dfPopUp .thankYou .mailPlace .field input[type=text]:active, .dfPopUp .thankYou .mailPlace .field input[type=text]:focus, .dfPopUp .thankYou .mailPlace .field input[type=text]:hover, .dfPopUp .thankYou .mailPlace .field input[type=tel]:active, .dfPopUp .thankYou .mailPlace .field input[type=tel]:focus, .dfPopUp .thankYou .mailPlace .field input[type=tel]:hover, .dfPopUp .thankYou .mailPlace .field input[type=email]:active, .dfPopUp .thankYou .mailPlace .field input[type=email]:focus, .dfPopUp .thankYou .mailPlace .field input[type=email]:hover {
  border-color: #000;
}
/* line 911, ../scss/breakpoints/_bootstrapOver.scss */
.dfPopUp .thankYou .mailPlace .field input[type=text]:active + span, .dfPopUp .thankYou .mailPlace .field input[type=text]:focus + span, .dfPopUp .thankYou .mailPlace .field input[type=text]:hover + span, .dfPopUp .thankYou .mailPlace .field input[type=tel]:active + span, .dfPopUp .thankYou .mailPlace .field input[type=tel]:focus + span, .dfPopUp .thankYou .mailPlace .field input[type=tel]:hover + span, .dfPopUp .thankYou .mailPlace .field input[type=email]:active + span, .dfPopUp .thankYou .mailPlace .field input[type=email]:focus + span, .dfPopUp .thankYou .mailPlace .field input[type=email]:hover + span {
  border-color: #000;
}
/* line 913, ../scss/breakpoints/_bootstrapOver.scss */
.dfPopUp .thankYou .mailPlace .field input[type=text]:active + span:before, .dfPopUp .thankYou .mailPlace .field input[type=text]:focus + span:before, .dfPopUp .thankYou .mailPlace .field input[type=text]:hover + span:before, .dfPopUp .thankYou .mailPlace .field input[type=tel]:active + span:before, .dfPopUp .thankYou .mailPlace .field input[type=tel]:focus + span:before, .dfPopUp .thankYou .mailPlace .field input[type=tel]:hover + span:before, .dfPopUp .thankYou .mailPlace .field input[type=email]:active + span:before, .dfPopUp .thankYou .mailPlace .field input[type=email]:focus + span:before, .dfPopUp .thankYou .mailPlace .field input[type=email]:hover + span:before {
  display: none;
}
/* line 919, ../scss/breakpoints/_bootstrapOver.scss */
.dfPopUp .thankYou .mailPlace .field > span.divName {
  background: url(../images/user_icon.png) 5px center no-repeat;
}
/* line 922, ../scss/breakpoints/_bootstrapOver.scss */
.dfPopUp .thankYou .mailPlace .field > span.divCity {
  background: url(../images/city_icon.png) 5px center no-repeat;
}
/* line 925, ../scss/breakpoints/_bootstrapOver.scss */
.dfPopUp .thankYou .mailPlace .field > span.divMail {
  background: url(../images/mail_icon.png) 5px center no-repeat;
}
/* line 928, ../scss/breakpoints/_bootstrapOver.scss */
.dfPopUp .thankYou .mailPlace .field > span.divPhone {
  background: url(../images/user_icon.png) 5px center no-repeat;
}
/* line 932, ../scss/breakpoints/_bootstrapOver.scss */
.dfPopUp .thankYou .mailPlace .but {
  max-width: 400px;
  width: 35%;
  display: inline-block;
}
/* line 937, ../scss/breakpoints/_bootstrapOver.scss */
.dfPopUp .thankYou .mailPlace .but button.btn {
  background: #c00202;
  text-shadow: none;
  color: #fff;
  font-weight: 600;
  text-transform: uppercase;
  width: 100%;
  border: none;
  border-radius: 5px;
  padding: 8px;
  font-size: 12px;
  /* font-family: 'Lato'; */
  /* letter-spacing: 2px; */
  /* box-shadow: 0px 5px 12px -3px #4b0000; */
  outline: none;
}
/* line 953, ../scss/breakpoints/_bootstrapOver.scss */
.dfPopUp .thankYou .mailPlace .but button.btn:hover {
  box-shadow: 0px 5px 12px -3px #ac4545;
}
/* line 960, ../scss/breakpoints/_bootstrapOver.scss */
.dfPopUp .telegram-icon {
  background: url(../images/telegram-pngrepo-com.png) center no-repeat;
  background-size: contain;
  display: inline-block;
  width: 20px;
  height: 20px;
  margin-right: 5px;
  vertical-align: bottom;
}
/* line 969, ../scss/breakpoints/_bootstrapOver.scss */
.dfPopUp .viber-icon {
  background: url(../images/viber-pngrepo-com.png) center no-repeat;
  background-size: contain;
  display: inline-block;
  width: 20px;
  height: 20px;
  margin-right: 5px;
  vertical-align: bottom;
  margin-bottom: -1px;
}

/*#logo {
  margin: 0.75em 0;

  a {
    color: $text-color;
    text-decoration: none;
  }
}*/
/*********************
LARGER MOBILE DEVICES
This is for devices like the Galaxy Note or something that's
larger than an iPhone but smaller than a tablet. Let's call them
tweeners.
*********************/
@media only screen and (max-width: 767px) {
  /******************************************************************
  Site Name:
  Author:
  
  Stylesheet: 481px and Up Stylesheet
  
  This stylesheet is loaded for larger devices. It's set to
  481px because at 480px it would load on a landscaped iPhone.
  This isn't ideal because then you would be loading all those
  extra styles on that same mobile connection.
  
  A word of warning. This size COULD be a larger mobile device,
  so you still want to keep it pretty light and simply expand
  upon your base.scss styles.
  
  ******************************************************************/
  /*
  IMPORTANT NOTE ABOUT SASS 3.3 & UP
  You can't use @extend within media queries
  anymore, so just be aware that if you drop
  them in here, they won't work.
  */
  /* line 25, ../scss/breakpoints/_481up.scss */
  #sliderText {
    margin: 8% 0 0 0;
  }
  /* line 28, ../scss/breakpoints/_481up.scss */
  #sliderText p, #sliderText span, #sliderText font {
    font-family: "Bebas", "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-size: 50%;
  }
  /* line 33, ../scss/breakpoints/_481up.scss */
  #sliderText .btn-default {
    border: 3px solid #69696b;
    color: #69696b;
    background: none;
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    border-radius: 0;
    font-size: 150%;
    padding: 8px 30px;
    float: left;
  }

  /* line 43, ../scss/breakpoints/_481up.scss */
  #sidebar-wrapper #searchLang {
    bottom: 85px;
  }

  /* line 47, ../scss/breakpoints/_481up.scss */
  #sidebar-wrapper #logo {
    text-align: center;
    margin: 0;
    top: 8px;
    position: relative;
  }
  /* line 54, ../scss/breakpoints/_481up.scss */
  #sidebar-wrapper nav {
    top: 15px;
  }

  /* line 58, ../scss/breakpoints/_481up.scss */
  .qtranxs_widget ul li {
    margin: 0 1px 0 0 !important;
  }

  /* line 61, ../scss/breakpoints/_481up.scss */
  #sidebar-wrapper #searchLang .widget ul li a {
    color: #323232;
    font-size: 100%;
  }

  /* line 65, ../scss/breakpoints/_481up.scss */
  #pageContent {
    background-color: rgba(255, 255, 255, 0.6);
  }

  /* line 72, ../scss/breakpoints/_481up.scss */
  .cityContent .butiqueimg {
    height: 250px;
  }
  /* line 75, ../scss/breakpoints/_481up.scss */
  .cityContent .title {
    padding: 10px 15px 15px 15px;
    font-size: 150%;
    -webkit-border-radius: 0 30px 0 0;
    -moz-border-radius: 0 30px 0 0;
    border-radius: 0 30px 0 0;
  }
  /* line 80, ../scss/breakpoints/_481up.scss */
  .cityContent .descr {
    padding: 15px;
    font-size: 100%;
  }

  /* line 87, ../scss/breakpoints/_481up.scss */
  .gallery .item {
    height: 190px;
  }

  /* line 94, ../scss/breakpoints/_481up.scss */
  .sidebar-nav li {
    line-height: 30px;
  }

  /* line 97, ../scss/breakpoints/_481up.scss */
  .nav > li a {
    padding: 5px 15px;
  }

  /*********************
  NAVIGATION STYLES
  *********************/
  /* .menu is clearfixed inside mixins.scss */
  /* line 107, ../scss/breakpoints/_481up.scss */
  .menu {
    /* end .menu ul */
  }
  /* line 108, ../scss/breakpoints/_481up.scss */
  .menu ul {
    /* end .menu ul li */
    /* highlight current page */
    /* end current highlighters */
  }
  /* line 109, ../scss/breakpoints/_481up.scss */
  .menu ul li {
    /*
    plan your menus and drop-downs wisely.
    */
  }
  /* line 110, ../scss/breakpoints/_481up.scss */
  .menu ul li a {
    /*
    you can use hover styles here even though this size
    has the possibility of being a mobile device.
    */
  }

  /* end .menu */
  /*********************
  POSTS & CONTENT STYLES
  *********************/
  /* entry content */
  /* line 155, ../scss/breakpoints/_481up.scss */
  .entry-content {
    /* at this larger size, we can start to align images */
  }
  /* line 159, ../scss/breakpoints/_481up.scss */
  .entry-content .alignleft, .entry-content img.alignleft {
    margin-right: 1.5em;
    display: inline;
    float: left;
  }
  /* line 164, ../scss/breakpoints/_481up.scss */
  .entry-content .alignright, .entry-content img.alignright {
    margin-left: 1.5em;
    display: inline;
    float: right;
  }
  /* line 169, ../scss/breakpoints/_481up.scss */
  .entry-content .aligncenter, .entry-content img.aligncenter {
    margin-right: auto;
    margin-left: auto;
    display: block;
    clear: both;
  }

  /* end .entry-content */
  /*********************
  FOOTER STYLES
  *********************/
  /*
  check your menus here. do they look good?
  do they need tweaking?
  */
  /* end .footer-links */
}
/*********************
TABLET & SMALLER LAPTOPS
This is the average viewing window. So Desktops, Laptops, and
in general anyone not viewing on a mobile device. Here's where
you can add resource intensive styles.
*********************/
@media only screen and (min-width: 768px) {
  /******************************************************************
  Site Name:
  Author:
  
  Stylesheet: Tablet & Small Desktop Stylesheet
  
  Here's where you can start getting into the good stuff.
  This size will work on iPads, other tablets, and desktops.
  So you can start working with more styles, background images,
  and other resources. You'll also notice the grid starts to
  come into play. Have fun!
  
  ******************************************************************/
  /* line 14, ../scss/breakpoints/_768up.scss */
  #sliderText {
    margin: 11% 0 0 0;
  }
  /* line 17, ../scss/breakpoints/_768up.scss */
  #sliderText p, #sliderText span, #sliderText font {
    font-family: "Bebas", "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-size: 50%;
  }
  /* line 22, ../scss/breakpoints/_768up.scss */
  #sliderText .btn-default {
    border: 3px solid #69696b;
    color: #69696b;
    background: none;
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    border-radius: 0;
    font-size: 150%;
    padding: 8px 30px;
    float: left;
  }

  /* line 33, ../scss/breakpoints/_768up.scss */
  #sidebar-wrapper #logo {
    text-align: center;
    margin: 0;
    top: 8px;
    position: relative;
  }
  /* line 40, ../scss/breakpoints/_768up.scss */
  #sidebar-wrapper nav {
    top: 15px;
  }

  /* line 44, ../scss/breakpoints/_768up.scss */
  .qtranxs_widget ul li {
    margin: 0 1px 0 0 !important;
  }

  /* line 47, ../scss/breakpoints/_768up.scss */
  #sidebar-wrapper #searchLang .widget ul li a {
    color: #323232;
    font-size: 100%;
  }

  /* line 51, ../scss/breakpoints/_768up.scss */
  #pageContent {
    background-color: rgba(255, 255, 255, 0.8);
  }

  /* line 59, ../scss/breakpoints/_768up.scss */
  .cityContent .butiqueimg {
    height: 250px;
  }
  /* line 62, ../scss/breakpoints/_768up.scss */
  .cityContent .title {
    padding: 10px 15px 15px 15px;
    font-size: 150%;
    -webkit-border-radius: 0 30px 0 0;
    -moz-border-radius: 0 30px 0 0;
    border-radius: 0 30px 0 0;
  }
  /* line 67, ../scss/breakpoints/_768up.scss */
  .cityContent .descr {
    padding: 15px;
    font-size: 100%;
  }

  /* line 73, ../scss/breakpoints/_768up.scss */
  .gallery .item {
    height: 250px;
  }

  /* line 80, ../scss/breakpoints/_768up.scss */
  .sidebar-nav li {
    line-height: 30px;
  }

  /* line 83, ../scss/breakpoints/_768up.scss */
  .nav > li a {
    padding: 5px 15px;
  }

  /*********************
  GENERAL STYLES
  *********************/
  /*********************
  LAYOUT & GRID STYLES
  *********************/
  /* line 96, ../scss/breakpoints/_768up.scss */
  .wrap {
    width: 760px;
  }

  /*********************
  HEADER STYLES
  *********************/
  /*********************
  NAVIGATION STYLES
  *********************/
  /* line 112, ../scss/breakpoints/_768up.scss */
  .nav {
    border: 0;
    /* end .menu ul li */
    /* highlight current page */
    /* end current highlighters */
  }
  /* line 114, ../scss/breakpoints/_768up.scss */
  .nav ul {
    background: #323944;
    margin-top: 0;
  }

  /* end .nav */
  /*********************
  SIDEBARS & ASIDES
  *********************/
  /* line 133, ../scss/breakpoints/_768up.scss */
  .sidebar {
    margin-top: 2.2em;
  }

  /* line 137, ../scss/breakpoints/_768up.scss */
  .widgettitle {
    border-bottom: 2px solid #444;
    margin-bottom: 0.75em;
  }

  /* line 142, ../scss/breakpoints/_768up.scss */
  .widget {
    padding: 0 10px;
    margin: 2.2em 0;
  }
  /* line 147, ../scss/breakpoints/_768up.scss */
  .widget ul li {
    margin-bottom: 0.75em;
    /* deep nesting */
  }
  /* line 155, ../scss/breakpoints/_768up.scss */
  .widget ul li ul {
    margin-top: 0.75em;
    padding-left: 1em;
  }

  /* links widget */
  /* meta widget */
  /* pages widget */
  /* recent-posts widget */
  /* archives widget */
  /* tag-cloud widget */
  /* calendar widget */
  /* category widget */
  /* recent-comments widget */
  /* search widget */
  /* text widget */
  /*********************
  FOOTER STYLES
  *********************/
  /*
  you'll probably need to do quite a bit
  of overriding here if you styled them for
  mobile. Make sure to double check these!
  */
  /* line 263, ../scss/breakpoints/_768up.scss */
  .footer-links ul li {
    /*
    be careful with the depth of your menus.
    it's very rare to have multi-depth menus in
    the footer.
    */
  }

  /* end .footer-links */
  /* line 277, ../scss/breakpoints/_768up.scss */
  #timeline .list .year .row .smallDevice {
    float: left;
  }

  /* line 280, ../scss/breakpoints/_768up.scss */
  .dfPopUp .inner {
    width: 400px;
    margin: -204px 0 0 -200px;
  }

  /* line 284, ../scss/breakpoints/_768up.scss */
  .dfPopUp .inner .devlexForm .descr {
    padding: 0 25px;
  }

  /* line 287, ../scss/breakpoints/_768up.scss */
  .devlexForm .form form .but button.btn {
    font-size: 17px;
  }
}
/*********************
DESKTOP
This is the average viewing window. So Desktops, Laptops, and
in general anyone not viewing on a mobile device. Here's where
you can add resource intensive styles.
*********************/
@media only screen and (min-width: 1030px) {
  /******************************************************************
  Site Name:
  Author:
  
  Stylesheet: Desktop Stylsheet
  
  This is the desktop size. It's larger than an iPad so it will only
  be seen on the Desktop.
  
  ******************************************************************/
  /* line 12, ../scss/breakpoints/_1030up.scss */
  #sliderText {
    margin: 11% 0 0 0;
  }
  /* line 15, ../scss/breakpoints/_1030up.scss */
  #sliderText p, #sliderText span, #sliderText font {
    font-family: "Bebas", "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-size: 75%;
  }
  /* line 20, ../scss/breakpoints/_1030up.scss */
  #sliderText .btn-default {
    border: 3px solid #69696b;
    color: #69696b;
    background: none;
    font-size: 200%;
    padding: 10px 30px;
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    border-radius: 0;
  }

  /* line 30, ../scss/breakpoints/_1030up.scss */
  #sidebar-wrapper #logo {
    text-align: center;
    margin: 0;
    top: 8px;
    position: relative;
  }
  /* line 37, ../scss/breakpoints/_1030up.scss */
  #sidebar-wrapper nav {
    top: 15px;
  }

  /* line 41, ../scss/breakpoints/_1030up.scss */
  .qtranxs_widget ul li {
    margin: 0 5px 0 0 !important;
  }

  /* line 44, ../scss/breakpoints/_1030up.scss */
  #sidebar-wrapper #searchLang .widget ul li a {
    color: #323232;
    font-size: 115%;
  }

  /* line 48, ../scss/breakpoints/_1030up.scss */
  #pageContent {
    background-color: rgba(255, 255, 255, 0.3);
  }

  /* line 55, ../scss/breakpoints/_1030up.scss */
  .cityContent .butiqueimg {
    height: 300px;
  }
  /* line 58, ../scss/breakpoints/_1030up.scss */
  .cityContent .title {
    padding: 10px 25px 25px 25px;
    font-size: 250%;
    -webkit-border-radius: 0 40px 0 0;
    -moz-border-radius: 0 40px 0 0;
    border-radius: 0 40px 0 0;
  }
  /* line 63, ../scss/breakpoints/_1030up.scss */
  .cityContent .descr {
    padding: 25px;
    font-size: 150%;
  }

  /* line 69, ../scss/breakpoints/_1030up.scss */
  .gallery .item {
    height: 300px;
  }

  /* line 76, ../scss/breakpoints/_1030up.scss */
  .nav > li a {
    padding: 10px 15px;
  }

  /* line 79, ../scss/breakpoints/_1030up.scss */
  .sidebar-nav li {
    line-height: 40px;
  }

  /* line 82, ../scss/breakpoints/_1030up.scss */
  #timeline .list .year {
    margin: 10px 0;
  }

  /* line 85, ../scss/breakpoints/_1030up.scss */
  #timeline .list .year .timePoint {
    top: 32px;
    display: block;
    left: 50%;
  }

  /* line 90, ../scss/breakpoints/_1030up.scss */
  #timeline .list .line {
    display: block;
    left: 50%;
  }

  /* line 95, ../scss/breakpoints/_1030up.scss */
  #timeline .list {
    margin: 0;
  }

  /* line 98, ../scss/breakpoints/_1030up.scss */
  #timeline .list .year .row {
    display: flex;
  }

  /* line 101, ../scss/breakpoints/_1030up.scss */
  #timeline .list .year .row .col-1 {
    width: 50%;
    padding: 20px 70px 20px 20px;
    float: left;
    text-align: right;
  }
  /* line 107, ../scss/breakpoints/_1030up.scss */
  #timeline .list .year .row .col-1.p-0 {
    padding: 20px 70px 20px 20px;
  }
  /* line 111, ../scss/breakpoints/_1030up.scss */
  #timeline .list .year .row .col-1 h4 {
    text-align: right;
  }

  /* line 115, ../scss/breakpoints/_1030up.scss */
  #timeline .list .year .row .col-2 {
    width: 50%;
    padding: 20px 20px 20px 70px;
    float: left;
  }
  /* line 120, ../scss/breakpoints/_1030up.scss */
  #timeline .list .year .row .col-2.p-0 {
    padding: 20px 20px 20px 70px;
  }

  /* line 124, ../scss/breakpoints/_1030up.scss */
  #timeline .list .year h4 {
    text-align: left;
  }

  /* line 127, ../scss/breakpoints/_1030up.scss */
  #timeline .list .year .row .largeDevice {
    display: block;
  }

  /* line 130, ../scss/breakpoints/_1030up.scss */
  #timeline .list .year .row .smallDevice {
    display: none;
  }

  /* line 133, ../scss/breakpoints/_1030up.scss */
  .exList {
    text-align: left;
  }
}
/*********************
LARGE VIEWING SIZE
This is for the larger monitors and possibly full screen viewers.
*********************/
@media only screen and (min-width: 1240px) {
  /******************************************************************
  Site Name: 
  Author: 
  
  Stylesheet: Super Large Monitor Stylesheet
  
  You can add some advanced styles here if you like. This kicks in
  on larger screens.
  
  ******************************************************************/
  /* line 12, ../scss/breakpoints/_1240up.scss */
  #sliderText {
    margin: 11% 0 0 0;
  }
  /* line 15, ../scss/breakpoints/_1240up.scss */
  #sliderText p, #sliderText span, #sliderText font {
    font-family: "Bebas", "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-size: 80%;
  }
  /* line 20, ../scss/breakpoints/_1240up.scss */
  #sliderText .btn-default {
    border: 3px solid #69696b;
    color: #69696b;
    background: none;
    font-size: 200%;
    padding: 10px 30px;
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    border-radius: 0;
  }

  /* line 30, ../scss/breakpoints/_1240up.scss */
  #sidebar-wrapper #logo {
    top: 45px;
  }
  /* line 34, ../scss/breakpoints/_1240up.scss */
  #sidebar-wrapper nav {
    top: 80px;
  }

  /* line 41, ../scss/breakpoints/_1240up.scss */
  .gallery .item.noVideo {
    height: 600px;
  }
}
@media only screen and (min-width: 1450px) {
  /* line 1, ../scss/breakpoints/_1450up.scss */
  #sliderText {
    margin: 11% 0 0 0;
  }
  /* line 4, ../scss/breakpoints/_1450up.scss */
  #sliderText p, #sliderText span, #sliderText font {
    font-family: "Bebas", "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-size: 100%;
  }
  /* line 9, ../scss/breakpoints/_1450up.scss */
  #sliderText .btn-default {
    border: 3px solid #69696b;
    color: #69696b;
    background: none;
    font-size: 200%;
    padding: 10px 30px;
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    border-radius: 0;
  }

  /* line 18, ../scss/breakpoints/_1450up.scss */
  .page-template-page-contacts .contactItem .image {
    float: left;
  }
}
/*********************
RETINA (2x RESOLUTION DEVICES)
This applies to the retina iPhone (4s) and iPad (2,3) along with
other displays with a 2x resolution. You can also create a media
query for retina AND a certain size if you want. Go Nuts.
*********************/
@media only screen and (-webkit-min-device-pixel-ratio: 1.5), only screen and (min--moz-device-pixel-ratio: 1.5), only screen and (min-device-pixel-ratio: 1.5) {
  /******************************************************************
  Site Name: 
  Author: 
  
  Stylesheet: Retina Screens & Devices Stylesheet
  
  When handling retina screens you need to make adjustments, especially
  if you're not using font icons. Here you can add them in one neat
  place.
  
  ******************************************************************/
  /* 
  
  EXAMPLE 
  Let's say you have an image and you need to make sure it looks ok
  on retina screens. Let's say we have an icon which dimension are
  24px x 24px. In your regular stylesheets, it would look something
  like this:
  
  .icon {
  	width: 24px;
  	height: 24px;
  	background: url(img/test.png) no-repeat;
  }
  
  For retina screens, we have to make some adjustments, so that image
  doesn't look blurry. So, taking into account the image above and the
  dimensions, this is what we would put in our retina stylesheet:
  
  .icon {
  	background: url(img/test@2x.png) no-repeat;
  	background-size: 24px 24px;
  }
  
  So, you would create the same icon, but at double the resolution, meaning 
  it would be 48px x 48px. You'd name it the same, but with a @2x at the end
  (this is pretty standard practice). Set the background image so it matches
  the original dimensions and you are good to go. 
  
  */
}
/*********************
PRINT STYLESHEET
Feel free to customize this. Remember to add things that won't make
sense to print at the bottom. Things like nav, ads, and forms should
be set to display none.
*********************/
