/*-------------------------------------
 *  1. Reset CSS
 *-------------------------------------*/


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

  body {
    margin: 0;
    }

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

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

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

  [hidden],
  template {
    display: none;
    }

  a {
    background-color: transparent;
    }

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

  b,
  strong {
    font-weight: 700;
    }

  small {
    font-size: 80%;
    }

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

  sup {
    top: -0.5em;
    }

  sub {
    bottom: -0.25em;
    }

  img {
    border: 0;
    }

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

  figure {
    margin: 0;
    }

  hr {
    -webkit-box-sizing: content-box;
    -moz-box-sizing: content-box;
    box-sizing: content-box;
    }

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

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

  select {
    text-transform: none;
    }

  button {
    overflow: visible;
    }

  button,
  input,
  select,
  textarea {
    max-width: 100%;
    }

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

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

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

  input[type="checkbox"],
  input[type="radio"] {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    margin-right: 0.4375em;
    padding: 0;
    }

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

  input[type="search"] {
    -webkit-appearance: textfield;
    }

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

  fieldset {
    border: 1px solid #d1d1d1;
    margin: 0 0 1.75em;
    padding: 0.875em;
    }

  fieldset > :last-child {
    margin-bottom: 0;
    }

  legend {
    border: 0;
    padding: 0;
    }

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

  optgroup {
    font-weight: bold;
    }



/*-------------------------------------
 *  2. Globaly used classes
 *-------------------------------------*/
 

  /* clear floating */
  .clear{
    clear:both;
    display: block;
    }
  .clearfix:after{
    content: " ";
    clear: both;
    display: block;
    }
  
  /* hide overflow */
  .hideoverflow{
    overflow: hidden;
    }
  
  /* full height */
  .fullheight{
    height: 100%;
    }

  /* text aligning */
  .align-center { text-align: center; }
  .align-left { text-align: left; }
  .align-right { text-align: right; }

  /* vertical centering */
  .valign-middle{
    position: relative;
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    }

  /* position centering */
  .position-center{
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    }

  /* floating */
  .no-float { float: none; }
  .float-left { float: left; }
  .float-right { float: right; }

  /* text case transform */
  .uppercase{ text-transform: uppercase; }
  .lowercase{ text-transform: lowercase; }
  .capitalize{ text-transform: capitalize; }

  /* font-style */
  .italic{ font-style: italic; }
  .noitalic{ font-style: normal; }
  
  /* disable text selection */
  .noselect{
    -webkit-user-select: none; /* Chrome/Safari */        
    -moz-user-select: none; /* Firefox */
    -ms-user-select: none; /* IE10+ */
    }
    
  /* content color scheme (light/dark) */
  .content-light,
  .content-light h1,
  .content-light h2,
  .content-light h3,
  .content-light h4,
  .content-light h5,
  .content-light h6{ color: #fff; }
  .content-light a{ color: #ddd; }
  
  .content-dark{ color: #000; }
  .content-dark a{ color: #666; }

  .bgimage{
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
  }

  /* loading icon */
  .loading-icon{
    position: absolute;
    bottom: -15px;
    left: -15px;
    background: url(images/loading.png) no-repeat center;
    width: 30px;
    height: 30px;
    -webkit-animation-name: loadingrotate; 
    -webkit-animation-duration: 1.3s; 
    -webkit-animation-iteration-count: infinite;
    -webkit-animation-timing-function: linear;
    -moz-animation-name: loadingrotate; 
    -moz-animation-duration: 1.3s; 
    -moz-animation-iteration-count: infinite;
    -moz-animation-timing-function: linear;
    }
  @-webkit-keyframes loadingrotate {
    from {-webkit-transform: rotate(0deg);}
    to {-webkit-transform: rotate(360deg);}
    }
  @-moz-keyframes loadingrotate {
    from {-moz-transform: rotate(0deg);}
    to {-moz-transform: rotate(360deg);}
    }


/*-------------------------------------
 *  WP BASICS
 *-------------------------------------*/

  .wp-caption{
    max-width: 100%;
    }
  .wp-caption-text{
    font-family: Open Sans;
    font-size: 13px;
    font-style: italic;
    margin: 0;
    line-height: 1.5;
    margin-bottom: 20px!important;
    }
  .sticky{
    margin-bottom: 50px;
    }
  .gallery-caption{
    margin: 0 4px 8px;
    }
  .bypostauthor{
      border-top: none;
      background: #d4d4d4;
      border-radius: 10px;
      margin-bottom: 10px;
    }
  .alignright{
    float: right;
    margin: 9px 0 20px 28px ;
    }
  .alignleft{
    float: left;
    margin: 9px 28px 20px 0;
    }
  .aligncenter{
    display: block;
    margin: 9px auto 20px;
    }
  /* Text meant only for screen readers. */
  .screen-reader-text {
    clip: rect(1px, 1px, 1px, 1px);
    position: absolute !important;
    height: 1px;
    width: 1px;
    overflow: hidden;
    }

  .screen-reader-text:focus {
    background-color: #f1f1f1;
    border-radius: 3px;
    box-shadow: 0 0 2px 2px rgba(0, 0, 0, 0.6);
    clip: auto !important;
    color: #21759b;
    display: block;
    font-size: 14px;
    font-size: 0.875rem;
    font-weight: bold;
    height: auto;
    left: 5px;
    line-height: normal;
    padding: 15px 23px 14px;
    text-decoration: none;
    top: 5px;
    width: auto;
    z-index: 100000; /* Above WP toolbar. */
    }



/*------------------------------------------------------------------

[TABLE OF CONTENTS]

- GLOBAL
- HEADER
- GUI
  -- Titles
  -- Decor
  -- Paragrafs
  -- Buttons
  -- Images
  -- List
  -- Forms
    -- Radio/check customisation
  -- Tables
  -- Tabs
  -- Dropcap
  -- Blockquote
  -- Pagination
  -- Alert
  -- Tooltip
  -- Progress bar
  -- Sections
  -- Carousel
  -- Other
- COMPONENTS
- FOOTER
-------------------------------------------------------------------*/

/* ======= GLOBAL ======= */

body {
  font: 400 13px/2.15385 Merriweather;
  color: #777;
  background-color: #FFF;
  word-wrap: break-word;
  text-rendering: optimizeLegibility;
}

.l-theme {
  position: relative;
  overflow-x: hidden;
  max-width: 1920px;
  margin: auto;
  padding-right: 50px;
  padding-left: 50px;
  background-color: #fff;
}

.main-wrapper {
    min-height: 450px;
}

.l-sidebar {
  margin-top: 94px;
  margin-bottom: 70px;
}
.page .l-sidebar {
  margin-top: 0px;
}
#main-sidebar.sidebar-right, #main-content.sidebar-left {
  float: right;
}
#main-sidebar.sidebar-left, #main-content.sidebar-right {
  float: left;
}

p {
  letter-spacing: .025em;
}


/* ======= HEADER ======= */


/* Mobile sidebar*/


[data-off-canvas*="mobile-slidebar"] a{
        font: 700 12px/1 Montserrat;
}

[data-off-canvas*="mobile-slidebar"] li{
    position: relative !important;
    
    
}

[data-off-canvas*="mobile-slidebar"] .dropdown-menu{
    position: relative !important;
}

[data-off-canvas*="mobile-slidebar"] .dropdown-menu a{
    color: #333 !important;
}

[data-off-canvas*="mobile-slidebar"] .dropdown-menu li:hover a{
    color: #fff !important;
}

/* Mobile sidebar end*/

.yamm{
    list-style: none;
    float: left;  
}
.btn-menu{
    list-style: none;
    float: left;
    margin: 38px 0 0 25px;
    padding: 0;
}

.btn-menu li{
    display:inline-block;
    list-style: none;
}

/*ABSOLUTE NAV */

.navbar-absolute-top {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 77;
}

.btn-menu li *{
        color: #aaa;
}


.btn-menu li:hover *{
    color: #777;
}

.toggle-menu-button:hover  .toggle-menu-button-icon span{
    background-color:#777;
}


/*LOGO WHITE */

.header.header-logo-white .normal-logo {
  display: block !important;
}
.header.header-logo-white .scroll-logo {
  display: none !important;
}


/*LOGO BLACK */

.header.header-logo-black .normal-logo {
  display: none !important;
}
.header.header-logo-black .scroll-logo {
  display: block !important;
}


/*BACKGROUND  BLACK #000 */

.header.header-background-black {
  background: #484848;
}


/*BACKGROUND  WHITE #fff */

.header.header-background-white {
  background: #fff;
}
.header.header-background-white .top-bar {
  border-bottom: 1px solid rgba(000, 000, 000, 0.15);
}


/*BACKGROUND  WHITE #fff */

.header.header-background-trans-white-rgba09 {
  background-color: rgba(255, 255, 255, 0.9);
}
.header.header-background-trans-white-rgba08 {
  background-color: rgba(255, 255, 255, 0.8);
}
.header.header-background-trans-white-rgba07 {
  background-color: rgba(255, 255, 255, 0.7);
}
.header.header-background-trans-white-rgba06 {
  background-color: rgba(255, 255, 255, 0.6);
}
.header.header-background-trans-white-rgba05 {
  background-color: rgba(255, 255, 255, 0.5);
}
.header.header-background-trans-white-rgba04 {
  background-color: rgba(255, 255, 255, 0.4);
}
.header.header-background-trans-white-rgba03 {
  background-color: rgba(255, 255, 255, 0.3);
}
.header.header-background-trans-white-rgba02 {
  background-color: rgba(255, 255, 255, 0.2);
}
.header.header-background-trans-white-rgba01 {
  background-color: rgba(255, 255, 255, 0.1);
}
.header.header-background-trans-white-rgba00 {
  background-color: rgba(255, 255, 255, 0.0);
}


/*COLOR FONTS WHITE #fff */

.header-color-white *,
.header.header-color-white .navbar .navbar-nav > li > a {
  color: #fff;
}
.header.header-color-white .toggle-menu-button .toggle-menu-button-icon span {
  background: #fff;
}
.header.header-color-white .navbar .navbar-nav > li > a:hover {
  color: #fff;
}
.header.header-color-white .toggle-menu-button.is-open .toggle-menu-button-icon span {
  background: #fff;
}
.header.header-color-white .header-cart-count {
  color: #fff;
}


/*COLOR FONTS BLACK #333 */

.header-color-black *,
.header.header-color-black .navbar .navbar-nav > li > a {
  color: #333;
}
.header.header-color-black .toggle-menu-button .toggle-menu-button-icon span {
  background: #333;
}
.header.header-color-black .header-cart-count {
  color: #fff;
  background: #333;
}


/*NAV BAR SCROLLING */

body:not(.header-demo) .navbar-scrolling * {
  color: #333;
}
body:not(.header-demo) .header.navbar-scrolling .navbar .navbar-nav > li > a {
  color: #333;
}
body:not(.header-demo) .header.navbar-scrolling .navbar .navbar-nav > li:hover > a,
.header.navbar-scrolling .navbar .navbar-nav > li a:hover {
  color: #333 !important;
}

body:not(.header-demo) .header.navbar-scrolling .navbar .navbar-nav > li li:hover > a,
.header.navbar-scrolling .navbar .navbar-nav > li li a:hover {
  color: #fff !important;
  background-color: #333;
}


body:not(.header-demo) .header.navbar-scrolling .navbar .toggle-menu-button .toggle-menu-button-icon span {
  background: #333;
}
body:not(.header-demo) .header.navbar-scrolling .header-cart-count {
  color: #fff;
  background: #333;
}
body:not(.header-demo) .header.navbar-scrolling {
  background-color: rgba(255, 255, 255, 0.9);
  padding-top: 0;
}
body:not(.header-demo) .header.header.navbar-scrolling .normal-logo {
  display: none !important;
}
body:not(.header-demo) .header.header.navbar-scrolling .scroll-logo {
  display: block !important;
}
body:not(.header-demo) .header.header.navbar-scrolling .navbar {
  border-bottom: 1px solid rgba(000, 000, 000, 0.15);
  padding-top: 0;
}

body:not(.header-demo) .header.header.navbar-scrolling .header-navibox-1,
body:not(.header-demo) .header.header.navbar-scrolling .header-navibox-2,
body:not(.header-demo) .header.header.navbar-scrolling .header-navibox-3,
body:not(.header-demo) .header.header.navbar-scrolling .header-navibox-4 {
  padding-top: 0;
  padding-bottom: 0;
}

body:not(.header-demo) .header.header.navbar-scrolling .navbar-brand {
  padding-top: 0;
}

body:not(.header-demo) .header-menu-middle.header.header.navbar-scrolling .header-navibox-2 {
  border-bottom: 1px solid rgba(000, 000, 000, 0.15);
}
body:not(.header-demo) .header-topbarbox-border.navbar-scrolling .header-topbarbox-1,
body:not(.header-demo) .header-topbarbox-border .header-topbarbox-2 {
  border-right: 1px solid rgba(000, 000, 000, 0.15);
  border-left: 1px solid rgba(000, 000, 000, 0.15);
}
body:not(.header-demo) .navbar-scrolling .navbar .toggle-menu-button.is-open .toggle-menu-button-icon span {
  background: #333 !important;
}
body:not(.header-demo) .navbar-scrolling .top-bar {
  //border-bottom: 1px solid rgba(000, 000, 000, 0.15);
  display: none;
}


/*NORMAL WIDTH */

.header-normal-width .container-boxed-width {
  width: 100%;
  padding: 0;
}


/*FULL WIDTH */

.header-full-width .container {
  width: 100% !important;
  padding: 0;
  text-align: center;
}
.header-full-width .header-navibox-1 {
  padding-left: 25px;
}


/*BOXED WIDTH */

.header .navbar-scrolling.header-boxed-width .header-navibox-4 {
  border-right: 0;
  border-left: 1px solid rgba(000, 000, 000, 0.15);
}
.header-boxed-width #nav {
  /*border-left: 1px solid rgba(255, 255, 255, 0.15) !important;
  border-right: 1px solid rgba(255, 255, 255, 0.15) !important;*/
}
.header-boxed-width .container-boxed-width.container {
  width: auto !important;
}
.header-boxed-width .header-navibox-4 {
  padding-right: 0 !important;
  border-right: 0;
  margin-left: 0 !important;
}
.header-boxed-width .header-navibox-1 {
    margin-left: 25px;
}

.header-boxed-width .header-navibox-2 {
    padding-right: 25px;
}


.header-boxed-width .navbar-scrolling {
  background: none !important;
}
.header-boxed-width .navbar-scrolling #nav {
  margin-top: 15px;
  background: #fff;
}
.header-boxed-width .navbar-scrolling .top-bar {
  display: none;
}
.header-boxed-width .navbar-scrolling #nav {
  border: 1px solid rgba(000, 000, 000, 0.15) !important;
}


/*NAVI BOX FLOAT*/

.header-navibox-1-left .header-navibox-1,
.header-navibox-2-left .header-navibox-2,
.header-navibox-3-left .header-navibox-3,
.header-navibox-4-left .header-navibox-4 {
  float: left !important;
}
.header-navibox-1-right .header-navibox-1,
.header-navibox-2-right .header-navibox-2,
.header-navibox-3-right .header-navibox-3,
.header-navibox-4-right .header-navibox-4 {
  float: right !important;
}
.header-navibox-1-middle .header-navibox-1,
.header-navibox-2-middle .header-navibox-2,
.header-navibox-3-middle .header-navibox-3,
.header-navibox-4-middle .header-navibox-4 {
  margin: 0 auto !important;
}
.header-navibox-4 #nav {
  margin-left: 15px !important;
  padding-right: 15px !important;
  border-right: 1px solid rgba(255, 255, 255, 0.15);
  border-left: 1px solid rgba(255, 255, 255, 0.15);
}
.header-navibox-4 {
  padding-right: 15px !important;
  border-right: 1px solid rgba(255, 255, 255, 0.15);
  margin-left: 15px !important;
}


/*TOP BAR BOX*/

.header-topbar-hidden .top-bar {
  display: none !important;
}
.top-bar {
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}
.top-bar ul {
  margin: 0;
  padding: 0;
}
.top-bar li {
  display: inline-block;
}
.header-topbarbox-1-left .header-topbarbox-1,
.header-topbarbox-2-left .header-topbarbox-2 {
  float: left !important;
}
.header-topbarbox-1-right .header-topbarbox-1,
.header-topbarbox-2-right .header-topbarbox-2 {
  float: right !important;
}
.header-topbarbox-1,
.header-topbarbox-2 {
  padding: 15px 0;
}
.header-topbarbox-border .header-topbarbox-1,
.header-topbarbox-border .header-topbarbox-2 {
  padding-right: 25px;
  padding-left: 25px;
  border-right: 1px solid rgba(255, 255, 255, 0.15);
  border-left: 1px solid rgba(255, 255, 255, 0.15);
}


/***** HEADER MENU MIDDLE ****/

.header-menu-middle .header-navibox-2 {
  display: inline-block;
  float: none;
  width: 100%;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}
.header-menu-middle .header-navibox-2 li a {
  text-transform: uppercase;
}
.header-menu-middle.header .center-logo a {
  display: inline !important;
}
.header-menu-middle.header.header-logo-white .normal-logo,
.header-menu-middle.header .center-logo {
  display: inline-block;
}
.header-menu-middle .nav .header-cart {
  margin: 6px;
}
.header-menu-middle .header-cart {
  position: relative;
  float: right;
  margin: 21px;
  font-size: 20px;
}
.header-menu-middle .navbar-collapse {
  text-align: center;
}
.header-menu-middle .wrap-inside-nav {
  top: 49px;
}


/***** HEADER MAIN ****/

.header-navibox-1,
.header-navibox-2,
.header-navibox-3,
.header-navibox-4 {
  padding: 15px 0;
}
.navbar -brand {
  height: auto;
  padding: 21px 0 6px 15px;
}
.header.scrolling-header .navbar.navbar-default.navbar-scrolling,
.header.scrolling-header .navbar.navbar-default.navbar-scrolling-fixing {
  padding-top: 5px;
  padding-bottom: 4px;
  border-bottom: 1px solid #e4e4e4;
  background: rgba(255, 255, 255, 0.9);
}
.header.scrolling-header .navbar.navbar-default.navbar-scrolling .navbar-nav li a,
.header.scrolling-header .navbar.navbar-default.navbar-scrolling-fixing .navbar-nav li a {
  color: #333;
}
.header.scrolling-header .navbar.navbar-default.navbar-scrolling .normal-logo,
.header.scrolling-header .navbar.navbar-default.navbar-scrolling-fixing .normal-logo {
  display: none;
}
.header.scrolling-header .navbar.navbar-default.navbar-scrolling .scroll-logo,
.header.scrolling-header .navbar.navbar-default.navbar-scrolling-fixing .scroll-logo {
  display: inline-block;
}
.header.scrolling-header .navbar.navbar-default.navbar-scrolling .toggle-menu-button .toggle-menu-button-icon span,
.header.scrolling-header .navbar.navbar-default.navbar-scrolling-fixing .toggle-menu-button .toggle-menu-button-icon span {
  background: #333 !important;
}
.header.scrolling-header .navbar.navbar-default.navbar-scrolling-fixing {
  background: #fff;
}
.header {
  -webkit-transition: all 0.3s ease-out;
     -moz-transition: all 0.3s ease-out;
          transition: all 0.3s ease-out;
}
.navbar {
  margin-bottom: 0;
  padding-top: 20px;
  padding-bottom: 0;
  border: none;
  border: none;
  background: none;
  background: none;
  -webkit-transition: all 0.3s ease-out;
     -moz-transition: all 0.3s ease-out;
          transition: all 0.3s ease-out;
}
.navbar .container {
  padding-left: 0;
  padding-right: 0;
}
.navbar .toggle-button {
  float: right;
  padding: 0 5px;
  line-height: 40px;
  color: #333;
  cursor: pointer;
}
.navbar .toggle-button.collapsed {
  color: #999;
}
.navbar .toggle-button.collapsed:hover {
  color: #333;
}
.navbar .scroll-logo {
  display: none;
}
.navbar .navbar-nav.social-nav li a {
  padding: 0 5px;
}
.navbar .navbar-nav > li {
  padding-top: 15px;
  padding-bottom: 12px;
}
.navbar .navbar-nav > li.no-hover a {
  border: none !important;
  cursor: default;
}
.navbar .navbar-nav > li.current_page_item,
.navbar .navbar-nav > li:hover {
  background: none;
}
.navbar .navbar-nav > li.current_page_item > a,
.navbar .navbar-nav > li:hover > a {
  background: none;
}
.navbar .navbar-nav > li > a {
  color: #777;
  border: 1px solid transparent;
  -webkit-transition: color 0.3s ease-out;
     -moz-transition: color 0.3s ease-out;
          transition: color 0.3s ease-out;
  text-transform: uppercase;
  font: 700 12px/1 Montserrat;
  border-top: 2px solid #ddd;
  padding: 7px 0 0;
}

.navbar .navbar-nav > li .dropdown-menu li  a {
  text-transform: uppercase;
  font: 700 12px/1 Montserrat;

}


.navbar .navbar-nav > li > a .fa-bars {
  margin-right: 10px;
}
.navbar .main-menu {
  counter-reset: list;
}
.navbar .main-menu > li:before {
  display: block;
  content: '0' counter(list);
  counter-increment: list;
  text-align: right;
  color: #aaa;
  font: italic 300 14px Merriweather;
  margin-bottom: 11px;
}

.navbar .main-menu > li {
  margin-left: 23px;
  margin-right: 24px;
  right: 0;
  transition: all 0.3s ease-out;
}
.notice-wrapper {
  display: inline;
  float: left;
  padding-top: 44px;
  list-style: none;
}
.error-404 {
  text-align: center;
  margin-bottom: 30px;
}
.error-404 h1 {
  font-size: 72px;
}
.navbar .main-menu > li:last-child {
  margin-right: 5px;
}
.navbar .main-menu > li.hidden-menu-item {
  right: -1500px;
  right: -100vw;
}
.toggle-menu-button.is-open .toggle-menu-button-icon span:nth-child(1),
.toggle-menu-button.is-open .toggle-menu-button-icon span:nth-child(6) {
  -webkit-transform: rotate(45deg);
     -moz-transform: rotate(45deg);
       -o-transform: rotate(45deg);
          transform: rotate(45deg);
}
.toggle-menu-button.is-open .toggle-menu-button-icon span:nth-child(2),
.toggle-menu-button.is-open .toggle-menu-button-icon span:nth-child(5) {
  -webkit-transform: rotate(-45deg);
     -moz-transform: rotate(-45deg);
       -o-transform: rotate(-45deg);
          transform: rotate(-45deg);
}
.toggle-menu-button.is-open .toggle-menu-button-icon span:nth-child(1) {
  top: 4px;
  left: 2px;
}
.toggle-menu-button.is-open .toggle-menu-button-icon span:nth-child(2) {
  top: 4px;
  left: calc(50% - 2px);
}
.toggle-menu-button.is-open .toggle-menu-button-icon span:nth-child(3) {
  left: -50%;
  opacity: 0;
}
.toggle-menu-button.is-open .toggle-menu-button-icon span:nth-child(4) {
  left: 100%;
  opacity: 0;
}
.toggle-menu-button.is-open .toggle-menu-button-icon span:nth-child(5) {
  top: 11px;
  left: 2px;
}
.toggle-menu-button.is-open .toggle-menu-button-icon span:nth-child(6) {
  top: 11px;
  left: calc(50% - 2px);
}
.toggle-menu-button .toggle-menu-button-icon {
  position: relative;
  position: relative;
  top: -2px;
  display: inline-block;
  width: 22px;
  height: 17px;
  vertical-align: middle;
  cursor: pointer;
  -webkit-transition: 0.5s ease-in-out;
     -moz-transition: 0.5s ease-in-out;
       -o-transition: 0.5s ease-in-out;
          transition: 0.5s ease-in-out;
  -webkit-transform: rotate(0deg);
     -moz-transform: rotate(0deg);
       -o-transform: rotate(0deg);
          transform: rotate(0deg);
}
.toggle-menu-button .toggle-menu-button-icon span {
  position: absolute;
  display: block;
  width: 50%;
  height: 2px;
  background: #aaa;
  opacity: 1;
  -webkit-transition: 0.25s ease-in-out;
     -moz-transition: 0.25s ease-in-out;
       -o-transition: 0.25s ease-in-out;
          transition: 0.25s ease-in-out;
  -webkit-transform: rotate(0deg);
     -moz-transform: rotate(0deg);
       -o-transform: rotate(0deg);
          transform: rotate(0deg);
}
.toggle-menu-button .toggle-menu-button-icon span:nth-child(even) {
  left: 50%;
  border-radius: 0 9px 9px 0;
}
.toggle-menu-button .toggle-menu-button-icon span:nth-child(odd) {
  left: 0;
  border-radius: 9px 0 0 9px;
}
.toggle-menu-button .toggle-menu-button-icon span:nth-child(1),
.toggle-menu-button .toggle-menu-button-icon span:nth-child(2) {
  top: 0;
}
.toggle-menu-button .toggle-menu-button-icon span:nth-child(3),
.toggle-menu-button .toggle-menu-button-icon span:nth-child(4) {
  top: 6px;
}
.toggle-menu-button .toggle-menu-button-icon span:nth-child(5),
.toggle-menu-button .toggle-menu-button-icon span:nth-child(6) {
  top: 12px;
}
.navbar-with-inside > li:hover .wrap-inside-nav {
  display: block;
}


/***** INSIDE NAV ****/

.wrap-inside-nav {
  position: absolute;
  top: 60px;
  left: 0;
  display: none;
  min-width: 220px;
  border-top: 2px solid #088cdc;
  background: #1a1a1a;
  -webkit-transition: all 0.3s ease-out;
          transition: all 0.3s ease-out;
  text-align: left;
}
.wrap-inside-nav .inside-col {
  padding: 15px 0;
}
.wrap-inside-nav .inside-col .inside-nav:after,
.wrap-inside-nav .inside-col .inside-nav:before {
  display: table;
  height: 0;
  clear: both;
  content: '';
}
.wrap-inside-nav .inside-col .inside-nav li {
  min-height: 45px;
  line-height: 45px;
}
.wrap-inside-nav .inside-col .inside-nav li a {
  display: block;
  padding-left: 20px;
  font-size: 14px;
  font-weight: bold;
  color: #7e848e !important;
  text-decoration: none;
}
.wrap-inside-nav .inside-col .inside-nav li a:active,
.wrap-inside-nav .inside-col .inside-nav li a:focus {
  display: block;
  padding-left: 20px;
  color: #088cdc !important;
}
.wrap-inside-nav .inside-col .inside-nav li a:hover,
.wrap-inside-nav .inside-col .inside-nav li a:active:hover,
.wrap-inside-nav .inside-col .inside-nav li a:visited:hover,
.wrap-inside-nav .inside-col .inside-nav li a:focus:hover {
  color: #088cdc !important;
  background-color: #26282d;
}
.header-top-menu-support.wrap-fixed-menu {
  top: 141px;
}
.wrap-fixed-menu {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  display: none;
  font-size: 0;
  background: #333;
  overflow: auto;
  z-index: 10;
  z-index: 99999;
}
.wrap-fixed-menu .top-items {
  display: table;
  width: 100%;
  height: 50%;
}
.wrap-fixed-menu .top-items .menu-item {
  border-bottom: 1px solid #484848;
}
.wrap-fixed-menu .bottom-items {
  display: table;
  width: 100%;
  height: 50%;
}
.wrap-fixed-menu .menu-item {
  position: relative;
  display: inline-block;
  display: table-cell;
  width: 50%;
  height: 50%;
  font-size: 14px;
  color: #fff;
  vertical-align: middle;
  vertical-align: middle;
  background: #333;
  -webkit-transition: all 0.3s ease-out;
          transition: all 0.3s ease-out;
  text-align: center;
  text-decoration: none;
}
.fixed-menu-hidden .wrap-fixed-menu {
  display: none !important;
}
.wrap-fixed-menu .menu-item.contact-info * {
  color: #fff;
}
.wrap-fixed-menu .menu-item .subtitle {
}
.wrap-fixed-menu .menu-item.contact-info {
  padding-right: 30px;
  padding-left: 30px;
  /*text-align: left;*/
  cursor: default;
}
.wrap-fixed-menu .menu-item.contact-info:hover {
  background: #333;
}
.wrap-fixed-menu .menu-item.contact-info h4 {
  font-size: 36px;
  font-weight: bold;
  color: #fff;
}
.wrap-fixed-menu .menu-item.contact-info .fa {
  margin-right: 10px;
}
.wrap-fixed-menu .menu-item:hover {
  background: #484848;
}
.wrap-fixed-menu .menu-item:first-child {
  border-right: 1px solid #484848;
}
.wrap-fixed-menu .menu-item .subtitle {
  margin-bottom: 10px;
  font-size: 16px;
  text-shadow: 1px 1px rgba(0,0,0,0.7);
  transition: all .3s;
}
.wrap-fixed-menu .menu-item:hover .subtitle {
  text-shadow: 1px 1px rgba(255,255,255,.7);
}
.wrap-fixed-menu .menu-item .title {
  display: block;
  font-size: 36px;
  font-weight: bold;
  color: #fff;
}
.header-cart {
  position: relative;
  display: inline-block;
  box-sizing: border-box;
  width: 25px;
  max-height: 23px;
  margin: 10px 10px 20px 0px;
  font-size: 20px;
  text-align: center;
}
.header-cart .icon {
  font-size: 16px;
}
.header-cart-count {
  position: absolute;
  top: 4px;
  right: -7px;
  display: inline-block;
  width: 16px;
  height: 15px;
  padding: 5px;
  font-size: 10px;
  line-height: 6px;
  color: #fff;
  border-radius: 50%;
  text-align: center;
}
.toggle-menu-button {
  margin-left: 4px;
  border: none;
  background: none;
  margin-top: 5px;
    outline: none !important;
}
.header-section {
  padding: 180px 0 100px;
  border-bottom: 6px solid #088cdc;
  text-align: center;
}
.header-section h2 {
  color: #fff;
  text-shadow: 1px 2px 5px rgba(0, 0, 0, 0.5);
}
.header-section p {
  color: #fff;
}
.header-section.elements-header {
  background: url(../../img/section-1-demo.jpg) top center no-repeat;
  background-size: cover;
}
.header-section.portfolio-single-header {
  background: url(../../img/section-1-demo.jpg) top center no-repeat;
  background-size: cover;
}


/*SIDEBARS*/

/**
 * Box Model, Html & Body
 */

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section,
summary {
  transform: translate(0px, 0px);
}
[data-canvas=container],
[data-off-canvas] {
  -webkit-box-sizing: border-box;
     -moz-box-sizing: border-box;
          box-sizing: border-box;
  margin: 0;
  padding: 0;
}
[data-off-canvas*=reveal] {
  padding: 25px 0;
  z-index: 0;
}


/** Canvas **/

[data-canvas] {
  z-index: 1;
}
[data-canvas=container] {
  width: 100%;
  height: 100%;
  background-color: white; /* Basic background color, overwrite this in your own css. */
  -webkit-overflow-scrolling: touch; /* Enables momentum scrolling on iOS devices, may be removed by setting to 'auto' in your own CSS. */
}
[data-canvas=container]:before,
[data-canvas=container]:after {
  display: table;
  clear: both;
  content: '';
}


/** Off-Canavs **/

[data-off-canvas] {
  position: fixed;
  display: none;
  color: white; /* Basic colors, overwrite this in your own css. */
  background-color: black; /* Basic background color, overwrite this in your own css. */
  overflow: hidden;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch; /* Enables momentum scrolling on iOS devices, may be removed by setting to 'auto' in your own CSS. */
}
[data-off-canvas*=top] {
  top: 0;
  width: 100%;
  height: auto;
  padding: 30px;
  text-align: center;
}
[data-off-canvas*=top] ul {
  float: none !important;
  margin: 0 !important;
}
[data-off-canvas*=top] li {
  display: inline-block;
  float: none !important;
  width: auto !important;
}
[data-off-canvas*=right] {
  top: 0;
  right: 0;
  width: 255px;
  height: 100%;
}
[data-off-canvas*=bottom] {
  bottom: 0;
  width: 100%;
}
html [data-off-canvas*=bottom] {
  padding: 25px;
}
html [data-off-canvas*=bottom] li {
  display: inline-block;
  float: none !important;
  width: auto;
  margin: 0;
  text-align: left;
  text-transform: uppercase;
}
html [data-off-canvas*=bottom] ul {
  display: inline-block;
  width: 100%;
  margin: 0 auto !important;
  text-align: center;
}
[data-off-canvas*=left] {
  top: 0;
  left: 0;
  width: 255px;
  height: 100%;
}
[data-off-canvas*=slidebar-panel-left] {
  top: 0;
  left: 0;
  width: 320px;
  height: 100%;
  padding-left: 70px;
}
.slidebar-panel-wrap {
  position: relative;
  margin-left: -120px;
  padding-top: 50px;
  z-index: 99999 !important;
}
html [data-off-canvas*=open] {
  display: block;
  margin-left: -255px;
  transition-duration: 300ms;
  transform: translate(255px, 0px);
}
[data-off-canvas*=reveal] {
  z-index: 0;
}
[data-off-canvas*=push] {
  z-index: 1;
}
[data-off-canvas*=overlay] {
  z-index: 9999;
}
[data-off-canvas*=shift] {
  z-index: 0;
}


/** Animation **/

[data-canvas],
[data-off-canvas] {
  -webkit-transition: -webkit-transform 300ms;
          transition:         transform 300ms;
  -webkit-backface-visibility: hidden; /* Prevents flickering, may be removed if experiencing problems with fixed background images in Chrome. */
}
[data-off-canvas*=shift][data-off-canvas*=top] {
  -webkit-transform: translate( 0px, 50% );
          transform: translate( 0px, 50% );
}
[data-off-canvas*=shift][data-off-canvas*=right] {
  -webkit-transform: translate( -50%, 0px );
          transform: translate( -50%, 0px );
}
[data-off-canvas*=shift][data-off-canvas*=bottom] {
  -webkit-transform: translate( 0px, -50% );
          transform: translate( 0px, -50% );
}
[data-off-canvas*=shift][data-off-canvas*=left] {
  -webkit-transform: translate( 50%, 0px );
          transform: translate( 50%, 0px );
}
.menu-mobile-button {
  position: absolute;
  top: 20px;
  right: 20px;
  z-index: 777;
}
[data-off-canvas] ul {
  margin: 0 !important;
}
[data-off-canvas] li {
  display: inline-block;
  float: none !important;
  width: 100%;
  margin: 0;
  text-align: left;
  text-transform: uppercase;
}
[data-off-canvas] li a {
  display: inline-block;
  float: none !important;
  width: 100%;
  margin: 0;
  padding: 10px 20px;
  color: #fff;
}
[data-off-canvas] li:hover a {
  color: #0060c1;
}


/* SEARCH MODAL */

.header-search {
  position: fixed;
  top: 0;
  left: 0;
  display: block;
  visibility: hidden;
  width: 100%;
  height: 100vh;
  background-color: rgba(34,34,34,0.95);
  opacity: 0;
  z-index: 99999;
  transition: all 0.3s ease 0s;
}
.header-search.open {
  visibility: visible;
  opacity: 1;
}
.search-close {
  position: absolute;
  top: 0;
  right: 0;
  width: 60px;
  height: 60px;
  font-size: 18px;
  border: none;
  background-color: #fff !important;
  opacity: 1 !important;
  z-index: 999;
  transition: all 0.3s;
}
.search-open {
  float: right;
  height: 40px;
  padding-top: 7px;
  padding-left: 22px;
  font-size: 14px;
  color: #666;
  background-color: #fff;
}
.header-search.open {
  visibility: visible;
  opacity: 1;
}
.search-global {
  position: absolute;
  top: 50vh;
  margin-top: -120px;
}
.search-global__input {
  width: 100%;
  padding-right: 50px;
  padding-bottom: 12px;
  font: 700 72px Montserrat;
  color: #fff;
  border: none;
  border-bottom: 1px solid #919191;
  background-color: transparent;
  opacity: 1;
}
.search-global__input::-moz-placeholder {
  color: #fff;
}
.search-global__input:-ms-input-placeholder {
  color: #fff;
}
.search-global__input::-webkit-input-placeholder {
  color: #fff;
}
.search-global__input:focus {
  outline-style: none;
}
.search-global__btn {
  position: absolute;
  top: 34px;
  right: 0;
  font-size: 30px;
  color: #fff;
  border: none;
  background-color: transparent;
  transition: all 0.3s;
}
.search-global__note {
margin-top: 10px;
    font-family: Montserrat;
    font-size: 14px;
    color: #fff;
}
.btn_header_search {
  font-size: 16px!important;
  padding: 0 7px !important;
}

.btn_header_search .icon {
  font-size: 16px;
}


/*RESPONSIVE STYLES */

@media (min-width:768px) and (max-width:1000px) {
  .center-logo {
    padding-top: 20px;
  }
  .top-bar .header-topbarbox-1,
  .top-bar .header-topbarbox-2,
  .top-bar .header-topbarbox-3,
  .top-bar .header-topbarbox-4 {
    float: none !important;
    text-align: center;
  }
  html .menu-mobile-button {
    top: 26px;
  }
  .header-navibox-4,
  .header-navibox-3,
  .header-navibox-2 {
    display: none !important;
  }
  .header .navbar {
    min-height: 87px;
  }
  html .header-full-width .header-navibox-1 {
    position: inherit;
    left: auto;
  }
  html .menu-mobile-button {
    top: 26px;
    display: block !important;
  }
}

@media (max-width:768px) {
  .center-logo {
    padding-top: 20px;
  }
  .top-bar .header-topbarbox-1,
  .top-bar .header-topbarbox-2,
  .top-bar .header-topbarbox-3,
  .top-bar .header-topbarbox-4 {
    float: none !important;
    text-align: center;
  }
  html .menu-mobile-button {
    top: 55px;
  }
  .header-navibox-4,
  .header-navibox-3,
  .header-navibox-2 {
    display: none !important;
  }
  .header .navbar {
    min-height: 87px;
  }
  html .header-full-width .header-navibox-1 {
    position: inherit;
    left: auto;
  }
  .wrap-left-open {
    margin-left: 0 !important;
  }
  .wrap-left-open [data-off-canvas*='slidebar-open'],
  .slidebar-panel {
    display: none !important;
  }
}
.side-logo {
  display: inline-block;
  width: 100%;
  padding: 10px;
}
.side-cart {
  display: inline-block;
  width: 100%;
  margin-bottom: 20px;
  border: 1px solid rgba(255, 255, 255, 0.15);
}
.side-cart a {
  color: #fff;
}
.side-search {
  display: inline-block;
  width: 100%;
  margin-bottom: 20px;
  padding: 20px;
}
.side-form-search {
  position: relative;
  background: #fff;
}
.side-form-search input[type=search] {
  padding: 10px;
  color: #000;
  border: none;
  background: none;
}
.side-form-search .button {
  border: none;
  background: none;
}
.side-form-search .button .fa {
  color: #000;
}
.slidebar-nav-panel {
  position: fixed;
  top: 0;
  left: 0;
  width: 75px;
  height: 100%;
  padding: 20px;
  border-right: 1px solid rgba(255, 255, 255, 0.15);
  background-color: rgba(000, 000, 000, 0.9);
  z-index: 99999;
}
.slidebar-panel.slidebar-nav-middle .toggle-menu-button {
  position: absolute;
  top: 40%;
  left: -119px;
  display: inline-block;
  width: 300px;
  padding: 21px;
  outline: none;
  transform: rotate(90deg);
}
.slidebar-panel.slidebar-nav-middle .toggle-menu-button .toggle-menu-button-icon {
  width: 60px;
}
.slidebar-panel.slidebar-nav-middle .toggle-menu-button.is-open .toggle-menu-button-icon span:nth-child(6) {
  left: calc(50% - 21px);
}
.slidebar-panel.slidebar-nav-middle .toggle-menu-button.is-open .toggle-menu-button-icon span:nth-child(2) {
  top: 4px;
  left: calc(50% - 21px);
}
.wrap-left-open {
  margin-left: 255px;
}
.navbar-brand {
  height: auto;
  padding: 0;
  float: none;
  display: block;
  margin-top: -2px;
  margin-bottom: 5px;
}

.header .social-links > li > a {
  color: #333;
  transition: all .3s;
  padding-right: 5px;
}

a.SP-link {
  color: #777;
}

.header {
  left: 50px;
  right: 50px;
}

.header_mod-a {
  padding-top: 74px;
}
.header_mod-a .navbar .main-menu > li {
  position: relative;
}
.header_mod-a .navbar .main-menu > li:before {
  content: '';
  position: absolute;
  top: 10px;
  right: 0;
  height: 2px;
  width: 20px;
}
.header_mod-a .navbar .main-menu > li > a {
  border-top: none;
}





/* Fullscreen menu*/

.fullscreen-center-menu {
    display: inline-block;
    width: 100%;
    height: 100%;
    padding-top: 15%;
    text-align: center;
}

.fullscreen-center-menu nav,
.fullscreen-center-menu ul {
    padding: 0;
    display: inline-block;
    margin: 0 auto;
    float: none;
    width: 100%;
}

.menu-top-container {
    display: inline-block;
    margin: 0 auto;
}

.fullscreen-center-menu li {
    display: inline-block;
    width: 100%;
    text-align: center;
    font-size: 30px;
    text-transform: uppercase;
    position: relative;
}

.fullscreen-center-menu li a {
    -webkit-transition: all 0.3s ease-out;
    -moz-transition: all 0.3s ease-out;
    transition: all 0.3s ease-out;
    color: #fff;
    position: relative;
    z-index: 88;
    padding: 0 0 15px 0;
    margin-bottom: 20px;
    display: inline-block; 
     font-family: Montserrat;
}

.fullscreen-center-menu li a:hover {
opacity: 0.7;
    background: none !important;
}

.fw-close {
    position: absolute;
    top: 0;
    right: 0;
    width: 60px;
    height: 60px;
    font-size: 18px;
    border: none;
    background-color: #fff !important;
    opacity: 1 !important;
    z-index: 999;
    transition: all 0.3s;
}

.fullscreen-center-menu .caret{
    display: none;
}

.fw-close:hover,
.fw-close:active,
.fw-close:focus {
    color: inherit;
}

.fullscreen-center-menu .submenu-controll-inner,
.fullscreen-center-menu .submenu-controll {
    display: none !important;
}

.fullscreen-center-menu .sub-menu {
    visibility: hidden;
    position: absolute;
    top: 200px;
    -webkit-transition: all 0.4s ease-out;
    -moz-transition: all 0.4s ease-out;
    transition: all 0.4s ease-out;
    display: none !important;
}

.fullscreen-center-menu .menu-item-has-children:hover .sub-menu {
    position: relative;
    top: 0;
    visibility: visible;
    display: block;
}

.fullscreen-center-menu .sub-menu a {
    font-size: 18px;
}

.fullscreen-center-menu .sub-menu .sub-menu a {
    font-size: 14px;
}

.submenu-controll-fullscreen {
    display: inline-block;
    width: 100%;
    position: absolute;
    top: 32px;
    left: 0;
    color: #fff;
}

ul ul .submenu-controll-fullscreen {
    top: 22px;
}


.fullscreen-center-menu  .dropdown-menu {
    display: none !important;
}


.fullmenu-close {
    position: absolute;
    top: 0;
    right: 0;
    width: 60px;
    height: 60px;
    font-size: 18px;
    border: none;
    background-color: #fff !important;
    opacity: 1 !important;
    z-index: 999;
}

.fullmenu-close * {
    color: #000;
}


/* ======= GUI ======= */
/* Titles */
.ui-title-page {
  position: relative;
  display: inline-block;
  margin-top: 0;
  padding: 38px 88px 32px;
  font-size: 36px;
  font-weight: 600;
  letter-spacing: .05em;
}

.ui-title-block {
  display: inline-block;
  min-width: 200px;
  margin-top: 0;
  margin-bottom: 0;
  padding-bottom: 13px;
  font: italic 400 14px/1 Merriweather;
  text-align: right;
  letter-spacing: .1em;
  border-bottom: 3px solid #333;
}

.ui-subtitle-block {
  margin-top: 18px;
  margin-bottom: 73px;
  padding-left: 46px;
  font: 700 50px/1 Montserrat;
  text-transform: uppercase;
  color: #333;
}

.ui-title-inner {
  font: 700 16px/2 Montserrat;
  text-transform: uppercase;
  color: #333;
}

.ui-title-inner-2 {
  margin-bottom: 37px;
  font: 700 22px/1.455 Montserrat;
  color: #333;
}

.ui-title-bg {
  position: relative;
  margin-bottom: -6px;
  margin-left: -8px;
  font: 700 130px/.8 Montserrat;
  text-transform: uppercase;
  color: inherit;
}

.ui-title-bg:before {
  position: absolute;
  top: -20px;
  left: 8px;
  display: block;
  width: 185px;
  height: 5px;
  margin-bottom: 0;
  content: '';
  background-color: #eee;
}

.ui-title-bg_sm {
  font-size: 120px;
  line-height: .85;
}

.ui-description {
  font-size: 14px;
}

.ui-wrap-title-center {
  display: inline-block;
  text-align: left;
}

.h-light {
  font-weight: 400;
}

/* Decor elements */
.ui-decor-1 {
  display: inline-block;
  width: 50px;
  height: 2px;
  background-color: #333;
}

.ui-decor-1_sm {
  width: 30px;
}

/* Paragrafs */
.block-paragraphs-1 p {
  margin-bottom: 25px;
  padding-right: 45px;
  line-height: 1.85;
}

.block-paragraphs-1 p:last-child {
  margin-bottom: 40px;
}

p + p {
  margin-top: 26px;
}

/* Buttons */
.btn .icon, input[type=button],
input[type=submit] {
  display: inline-block;
  padding-left: 14px;
  font-size: 17px;
  vertical-align: inherit;
}

.btn-type-1 {
  border: none;
  background-color: transparent;
}

.btn-type-1__inner {
  display: inline-block;
  padding-top: 13px;
  padding-bottom: 12px;
  border-top: 2px solid #333;
  border-bottom: 2px solid #333;
}

.btn-type-1 .icon {
  margin-top: -4px;
}

.btn-type-1_left-arr .icon {
  padding-right: 14px;
  padding-left: 0;
}

.btn-type-1.btn-lg .btn-type-1__inner {
  padding: 10px 0;
}

.btn-type-1.btn-lg .icon {
  padding-left: 18px;
  font-size: 20px;
}

.btn-type-1.btn-sm .btn-type-1__inner {
  padding: 9px 0;
}

.btn-type-1.btn-sm .icon {
  padding-left: 10px;
  font-size: 15px;
}

.btn-type-1.btn-sm, .btn-type-1.btn-lg,
.btn-default.btn-sm,
.btn-default.btn-lg {
  padding-left: 0;
  padding-right: 0;
}

/* Button effect*/
.btn {
  position: relative;
  overflow: hidden;
}

.btn:hover {
  color: #000;
}

.btn:hover:after {
  -webkit-transition: .7s linear;
  transition: .7s linear;
  background-position: 150% 0;
}

.btn:after {
  position: absolute;
  top: 0;
  left: 0;
  width: 110%;
  height: 100%;
  content: '';
  -webkit-transform: skewX(-50deg);
          transform: skewX(-50deg);
  background: -webkit-linear-gradient(right, rgba(255, 255, 255, 0), rgba(255, 255, 255, 0.8), rgba(255, 255, 255, 0)) no-repeat -2em 0;
  background: linear-gradient(to left, rgba(255, 255, 255, 0), rgba(255, 255, 255, 0.8), rgba(255, 255, 255, 0)) no-repeat -2em 0;
  background-size: 2em 100%;
}

/* Images */
.img-default {
  margin-bottom: 30px;
}

/* Lists */
.list {
  margin-bottom: 40px;
  padding-left: 0;
  list-style-type: none;
}

.list li {
  position: relative;
  margin-bottom: 5px;
  padding-left: 30px;
}

.list li:before {
  position: absolute;
  top: 5px;
  left: 1px;
  font-size: 14px;
  font-weight: 400;
  line-height: 1;
}

.list li > a {
  color: #777;
}

.list li > a:hover {
  text-decoration: none;
}

.list-mark-1 li:before {
  font: 12px 'ElegantIcons';
  content: '\52';
}

.list-mark-2 li {
  padding-left: 39px;
}

.list-mark-2 li:before {
  left: 14px;
  font-family: 'Stroke-Gap-Icons';
  content: '\e677';
}

.list-mark-3 li:before {
  font-family: FontAwesome;
  content: '\f00c';
}

.list-mark-3 li:hover:before {
  content: '\f00d';
}

.list-mark-4 li:before {
  font-family: FontAwesome;
  content: '\f178';
}

.list-mark-5 li:before {
  font-family: 'Stroke-Gap-Icons';
  content: '\e61f';
}

.list-num {
  counter-reset: list;
}

.list-num li:before {
  display: inline-block;
  font-weight: 700;
  content: counter(list) ". ";
  counter-increment: list;
}

/* Forms */
select:focus {
  outline-style: none;
}

input::-webkit-input-placeholder {
  color: #888;
}

input::-moz-placeholder {
  color: #888;
}

input:-ms-input-placeholder {
  color: #888;
}

.ui-form-1 .form-control {
  margin-bottom: 20px;
}

.ui-form-1 .btn {
  margin-top: 27px;
}

.ui-select {
  width: 100%;
  margin-bottom: 0;
  padding-top: 3px;
  padding-bottom: 5px;
  font-size: 16px;
  vertical-align: top;
  text-transform: inherit;
  border: 1px solid #fff;
  border-radius: 0;
  background-color: transparent;
}

/* Radio/check customisation */
.forms__label {
  position: relative;
  display: inline-block;
  margin-bottom: 11px;
  padding-left: 45px;
  cursor: pointer;
}

.forms__label:last-child {
  margin-right: 0;
}

.forms__label-check:before, .forms__label-radio:before {
  position: absolute;
  left: 0;
  content: '';
  border: 1px solid #fff;
}

.forms__label-check:after, .forms__label-radio:after {
  position: absolute;
  display: none;
}

.forms__label-check {
  display: block;
  height: 22px;
  margin-top: 0;
  margin-right: 12px;
  margin-bottom: 19px;
  padding-left: 29px;
  font-weight: 400;
}

.forms__label-check:before {
  top: 4px;
  width: 15px;
  height: 15px;
  border: 1px solid #999;
}

.forms__label-check:after {
  padding-top: 3px;
  padding-top: 5px;
}

.forms__label-check-1:after {
  top: 8px;
  left: 4px;
  width: 7px;
  height: 7px;
  content: '';
}

.forms__label-check-2:after {
  top: 1px;
  left: 3px;
  font: 11px/1 FontAwesome;
  content: '\f00c';
  text-align: center;
  color: #fff;
  color: #666;
}

.forms__label-radio {
  height: 12px;
  margin-right: 0;
  margin-bottom: 0;
  padding-left: 23px;
}

.forms__label-radio:before {
  top: 2px;
  width: 15px;
  height: 15px;
  border-radius: 50%;
}

.forms__label-radio:after {
  top: 6px;
  left: 4px;
  width: 7px;
  height: 7px;
  content: '';
  border-radius: 50%;
  background-color: #fff;
}

.forms__label-radio-1:after {
  background-color: #fff;
}

.forms__label-radio-2:before {
  border: 1px #ccc solid;
}

.forms__label-radio-3:before {
  border: 1px #e4e4e4 solid;
}

.forms__label-radio-3:after {
  background-color: #666;
}

.forms__check, .forms__radio {
  position: absolute;
  display: block;
  width: 0;
  height: 0;
  opacity: 0;
}

.forms__check:checked + .forms__label-check:after,
.forms__radio:checked + .forms__label-radio:after {
  display: block;
}

.forms__check:checked + .forms__label-check:before {
  box-shadow: none;
}

.forms__radio:checked + .forms__label-radio:before {
  box-shadow: 0 0 2px rgba(211, 211, 211, 0.75);
}

.label-group-inline {
  white-space: nowrap;
}

/* Tables */
table th:first-child,
table td:first-child {
  padding-left: 20px;
}

.table-type-1 {
  border-bottom: 1px solid #eee;
}

.table-type-1 > thead > tr > th {
  padding-top: 30px;
  padding-bottom: 22px;
  background-color: #f4f4f4;
}

.table-type-2 > thead > tr > th {
  padding-top: 26px;
  padding-bottom: 25px;
}

.table-type-2 > tbody > tr > td {
  border: 1px solid #eee;
}

.table-type-2 > thead:first-child > tr:first-child > th {
  border-top: 1px solid #eee;
  border-right: 1px solid #eee;
  border-bottom-width: 4px;
  border-left: 1px solid #eee;
}

/* Tabular scrolling for mobile devices */
.table-container {
  overflow-y: auto;
  width: 100%;
  _overflow: auto;
}

.table-container::-webkit-scrollbar {
  width: 14px;
  height: 14px;
  -webkit-appearance: none;
}

.table-container::-webkit-scrollbar-thumb {
  border: 3px solid #fff;
  border-radius: 8px;
  background-color: rgba(0, 0, 0, 0.3);
}

/* Dropcap */
.dropcap:first-letter {
  float: left;
  margin-right: 10px;
  padding: 5px 10px;
  font-size: 42px;
  font-weight: 700;
  color: #fff;
  border-width: 2px;
  border-style: solid;
}

.dropcap_secondary:first-letter {
  color: #333;
  border: 1px solid #eee;
}

.dropcap_sm:first-letter {
  font-size: 30px;
}

/* Blockquote */
blockquote cite {
  display: block;
  font-style: normal;
}

/* Pagination */
.pagination__title {
  padding-right: 12px;
}
.pagination .nav-links a {
  display: inline-block;
  vertical-align: middle;
  color: #333;
  font-weight: 400;
  font-family: Montserrat;
  text-transform: uppercase;
  font-size: 11px;
}

/* Alert */
.alert {
  letter-spacing: .05em;
}

.alert .icon {
  display: inline-block;
  margin-right: 18px;
  font-size: 16px;
  vertical-align: middle;
}

.alert__inner {
  padding-left: 70px;
}

.alert .close {
  position: absolute;
  top: 50%;
  right: 25px;
  margin-top: -9px;
  font-size: 18px;
  -webkit-transition: all .3s;
  transition: all .3s;
  opacity: .3;
  color: #222;
}

.alert .close:hover {
  opacity: 1;
}

.alert-default {
  color: #666;
  background-color: #f1f1f1;
}

.alert-default .alert-icon .icon {
  color: #444;
}

.alert-1 {
  background-color: #ffbc3a;
}

.alert-2 {
  color: #fff;
  background-color: #9160ff;
}

.alert-3 {
  background-color: #fff5e1;
}

.alert-3 .alert-icon .icon {
  color: #ffbc3a;
}

.alert-4 {
  background-color: #ffe7e4;
}

.alert-4 .alert-icon .icon {
  color: #ff523a;
}

.alert-5 {
  background-color: #d5ffe3;
}

.alert-5 .alert-icon .icon {
  color: #00d547;
}

.alert-block {
  margin-bottom: 21px;
  padding: 22px 50px 30px;
  text-shadow: none;
}

.alert-title {
  margin-bottom: 9px;
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: uppercase;
}

.alert-text {
  letter-spacing: .025em;
  color: #333;
}

.alert-icon {
  float: left;
  margin-top: 20px;
}

.alert-icon .icon {
  font-size: 30px;
}

/* Tooltip */
.tooltip {
  text-transform: uppercase;
}

.link-tooltip-1 {
  font-weight: 700;
  color: #666;
}

.link-tooltip-2 {
  font-weight: 700;
  color: #000101;
}

/* Progress bar */
.progress_w_border {
  border: 1px solid #eee;
}

.progress_round {
  border-radius: 11px;
}

.progress_round .progress-bar {
  border-radius: 11px;
}

.progress_shadow {
  box-shadow: inset 0.5px 0.9px 2px rgba(1, 1, 1, 0.1);
}

.progress_background {
  background-color: #eee;
}

.progress_high {
  height: 22px;
}

.progress_border_primary, .progress_border_secondary {
  border-width: 2px;
  border-style: solid;
}

.progress__title {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  color: #333;
}

.progress__title {
  margin-bottom: 16px;
  font: 700 11px Montserrat;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: #333;
}

.progress-1 .progress-bar {
  background-color: #ff523a;
}

.progress-2 .progress-bar {
  background-color: #00d547;
}

.progress-3 .progress-bar {
  background-color: #9160ff;
}

.progress-block-group {
  padding-right: 20px;
}

.progress-block {
  position: relative;
  margin-bottom: 73px;
}

.progress-block-group_right {
  padding-right: 0;
  padding-left: 20px;
}

.section-progress-bars {
  margin-top: 38px;
  padding-bottom: 53px;
}

.progress-w-number {
  height: 7px;
  padding: 2px;
}

.progress-w-number .progress-bar {
  position: relative;
  background-color: #333;
}

.progress-w-number .progress-bar__number {
  position: absolute;
  top: -4px;
  right: 0;
  font: 700 11px Montserrat;
  color: #333;
}

.progress-w-number .progress-bar:after {
  position: absolute;
  right: -6px;
  bottom: -14px;
  font-family: 'Simple-Line-Icons';
  font-size: 11px;
  content: '\e071';
  -webkit-transform: rotate(-90deg) scaleY(1.1);
          transform: rotate(-90deg) scaleY(1.1);
  color: #777;
}

/* Sections */
.section-area {
  position: relative;
}

.section-default {
  position: relative;
  padding-top: 105px;
  padding-bottom: 110px;
}

.section-default_pdn-top {
  position: relative;
  padding-top: 105px;
}

.section-content {
  padding-top: 90px;
  padding-bottom: 100px;
}

.section-inner {
  margin-top: 60px;
}

.section-border {
  border-bottom: 1px solid #eee;
}

.area-bg {
  position: relative;
}

.area-bg:after {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  content: '';
  opacity: .8;
}

.area-bg__inner {
  position: relative;
  z-index: 110;
}

.area-bg_dark:after {
  background-color: #000;
}

.area-bg_light:after {
  background-color: #f1f1f1;
}

.area-bg_grey:after {
  background-color: #111;
}

.area-bg_op_10:after {
  opacity: .1;
}

.area-bg_op_20:after {
  opacity: .2;
}

.area-bg_op_30:after {
  opacity: .3;
}

.area-bg_op_40:after {
  opacity: .4;
}

.area-bg_op_50:after {
  opacity: .5;
}

.area-bg_op_60:after {
  opacity: .6;
}

.area-bg_op_70:after {
  opacity: .7;
}

.area-bg_op_75:after {
  opacity: .75;
}

.area-bg_op_80:after {
  opacity: .8;
}

.area-bg_op_85:after {
  opacity: .85;
}

.area-bg_op_90:after {
  opacity: .9;
}

.section-form-1 {
  padding-top: 110px;
  padding-bottom: 100px;
}

.section-form-1__img {
  padding-left: 30px;
}

.section-form-1__inner {
  padding-top: 5px;
  padding-right: 93px;
}

.section-form-1__description {
  padding-left: 47px;
}

.section-form-1 .ui-form {
  margin-top: 50px;
  padding-left: 47px;
}

.section-form-1 .ui-subtitle-block {
  margin-bottom: 47px;
}

/* CAROUSEL */
.owl-theme .owl-controls {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  text-align: center;
}

.owl-theme .owl-controls .owl-page {
  display: inline-block;
}

.owl-theme .owl-controls .owl-page span {
  display: block;
  width: 8px;
  height: 8px;
  margin: 0 8px;
  -webkit-transition: background-color .3s;
  transition: background-color .3s;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  border: 1px solid #ccc;
}

.owl-theme .owl-controls .owl-page.active span, .owl-theme .owl-controls .owl-page:hover span {
  width: 11px;
  height: 11px;
  border-color: #000;
  background-color: black;
}

.owl-theme .owl-controls .owl-buttons {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
}

.owl-theme .owl-controls .owl-buttons div {
  position: absolute;
  display: inline-block;
  width: 40px;
  height: 40px;
  margin: 0 2px;
  font: normal normal 18px FontAwesome;
  -webkit-transition: all .3s;
  transition: all .3s;
  text-align: center;
  vertical-align: middle;
  opacity: .5;
  color: #fff;
}

.owl-theme .owl-controls .owl-buttons div:hover {
  opacity: 1;
}

.owl-theme .owl-controls .owl-buttons div i {
  display: inline-block;
  font-style: normal;
}

.owl-theme .owl-controls .owl-buttons .owl-prev {
  left: -40px;
}

.owl-theme .owl-controls .owl-buttons .owl-prev i:after {
  content: '\f060';
}

.owl-theme .owl-controls .owl-buttons .owl-next {
  right: -40px;
}

.owl-theme .owl-controls .owl-buttons .owl-next i:after {
  content: '\f061';
}

.owl-theme_col-w-mrg {
  margin-right: -30px;
}

.owl-theme_col-w-mrg .owl-controls {
  right: 30px;
}

.owl-theme_btm-nav {
  padding-bottom: 92px;
}

.owl-theme_vert-pagin .owl-controls {
  right: auto;
  bottom: 50%;
}

.owl-theme_vert-pagin .owl-controls .owl-page {
  display: block;
}

.owl-theme_vert-pagin .owl-controls .owl-page span {
  display: inline-block;
  margin: 0;
}

/* Other */
/* colors */
.text-bg {
  padding: 5px;
  color: #fff;
}

.color-dark {
  font-weight: 700;
}

.color-white {
  color: #fff;
}

.icon-grad {
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.bg-grey {
  background-color: #f7f7f7;
}

.bg-dark {
  background-color: #222;
}

.bg-border {
  padding: 5px;
  color: #222;
  border: 1px dashed #222;
}

.map {
  height: 600px;
  margin-top: 30px;
}

.text-primary_h, .bg-primary_h, .border_prim_h, .border-t_prim_h, .border-b_prim_h, .border-l_prim_h, .border-r_prim_h, .text-second_h, .bg-second_h, .border_second_h, .border-t_second_h, .border-r_second_h, .border-l_second_h, .border-b_second_h {
  -webkit-transition: all .3s;
  transition: all .3s;
}

.pruning {
  overflow: hidden;
}

.parallax {
  -webkit-transform: none;
          transform: none;
  background-repeat: no-repeat;
  background-attachment: fixed;
}

/* colomns inline-block */
.wrap-inl-bl {
  margin-right: -30px;
}

.wrap-inl-bl [class^='col'] {
  display: inline-block;
  float: none;
  margin-right: -3px;
  vertical-align: top;
}

/* columns of the same height */
.block-table {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
}

.block-table__cell {
  overflow: hidden;
  padding-right: 0;
  padding-left: 0;
  vertical-align: top;
}

.block-table__inner {
  overflow: hidden;
  height: 100%;
}

.row_no-mrg {
  margin-right: 0;
  margin-left: 0;
}

.col_no-pdg {
  padding-right: 0;
  padding-left: 0;
}

.js-scroll-next + .js-scroll-content {
  display: none;
}

.js-scroll-next {
  cursor: pointer;
}

/* Vertical align */
.helper, .helper:before {
  display: inline-block;
  vertical-align: middle;
}

.helper:before {
  width: 0;
  height: 100%;
  content: '';
}

.helper-2 {
  display: inline-block;
  width: 0;
  height: 100%;
  vertical-align: middle;
}

.br {
  display: block;
}

.no-br {
  white-space: nowrap;
}

/*effect*/
.hvr-shutter-in-vertical {
  display: inline-block;
  -webkit-transition: all .4s;
  transition: all .4s;
  -webkit-transform: perspective(1px) translateZ(0);
          transform: perspective(1px) translateZ(0);
  vertical-align: middle;
  box-shadow: 0 0 1px transparent;
}

.hvr-shutter-in-vertical:before {
  position: absolute;
  z-index: -1;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  content: '';
  -webkit-transition: all .3s;
  transition: all .3s;
  -webkit-transform: scaleY(1);
          transform: scaleY(1);
  -webkit-transform-origin: 50%;
          transform-origin: 50%;
}

.hvr-shutter-in-vertical:hover:before, .hvr-shutter-in-vertical:focus:before, .hvr-shutter-in-vertical:active:before {
  -webkit-transform: scaleY(0);
          transform: scaleY(0);
}

.section-policy {
  padding-top: 110px;
  padding-bottom: 110px;
}

.section-policy h2 {
  margin-bottom: 40px;
}

.section-policy h3 {
  margin-top: 30px;
  margin-bottom: 20px;
}

.section-policy p {
  margin-bottom: 5px;
}

.section-policy .list-letter {
  margin-bottom: 10px;
  list-style-type: lower-alpha;
}

/* Accordion */
.accordion .panel .icon {
  display: inline-block;
  font-style: normal;
  background-color: transparent;
  line-height: 1;
}

.accordion .panel-title.panel-passive {
  color: #fff;
  border-left-color: #eee;
}

.panel-heading {
  position: relative;
}

.panel-heading .btn-collapse {
  position: absolute;
  top: 10px;
  display: block;
  width: 47px;
  height: 30px;
  text-align: center;
  right: 0;
}

.accordion-1 .btn-collapse {
  border-left: 1px solid rgba(243, 243, 243, 0.2);
}

.accordion-1 .btn-collapse .icon:before {
  display: block;
  width: 10px;
  height: 10px;
  border-left: 1px solid #fff;
  border-bottom: 1px solid #fff;
  -webkit-transform: rotate(-135deg);
          transform: rotate(-135deg);
  content: '';
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

.accordion-1 .btn-collapse.collapsed {
  background-color: transparent;
  border-left-color: rgba(204, 204, 204, 0.5);
}

.accordion-1 .btn-collapse.collapsed .icon:before {
  content: '';
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
  border-left-color: #999;
  border-bottom-color: #999;
}

.accordion-1 .panel-body {
  background-color: #f7f7f7;
  border-bottom-width: 1px;
  border-bottom-style: solid;
}

.accordion-2 .btn-collapse {
  color: #ffffff;
}

.accordion-2 .btn-collapse .icon:before {
  display: block;
  font-size: 27px;
  content: '-';
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  color: #fff;
}

.accordion-2 .btn-collapse.collapsed {
  background-color: transparent;
}

.accordion-2 .btn-collapse.collapsed .icon:before {
  border-color: #999;
  content: '+';
  font-size: 19px;
  padding-top: 6px;
  font-weight: 700;
  color: #333;
}

.accordion-2 .panel-body {
  border: 1px solid #eee;
}

.section-services {
  padding-left: 40px;
}

.b-advantages-group {
  margin-bottom: 38px;
}
.b-advantages-group .b-advantages {
  display: inline-block;
  width: 50%;
  margin-right: -3px;
  vertical-align: top;
}
.b-advantages-1 {
  position: relative;
  margin-right: 30px;
  padding: 49px 40px 32px 40px;
  background-color: rgba(255, 255, 255, 0.6);
  height:280px
}

.b-advantages-1:before, .b-advantages-1:after {
  display: table;
  content: "";
}

.b-advantages-1:after {
  clear: both;
}

.lt-ie8 .b-advantages-1 {
  zoom: 1;
}

.b-advantages-1 .b-advantages__icon {
  position: absolute;
  top: 47px;
  right: 50px;
  font-size: 44px;
}

.b-advantages-1 .b-advantages__title {
  margin-bottom: 28px;
  padding-right: 50px;
  line-height: 1;
}

.b-advantages-1 .b-advantages__info {
  margin-bottom: 17px;
}

.b-advantages-1_mod-a {
  display: inline-block;
  width: 50%;
  margin-right: -3px;
  padding: 15px 20px 51px 10px;
  vertical-align: top;
}

.b-advantages-1_mod-a .b-advantages__icon {
  top: 11px;
  right: 40px;
  font-size: 40px;
}

.b-advantages-1_mod-a .b-advantages__title {
  margin-bottom: 28px;
  padding-right: 70px;
}

.section-features {
  padding-top: 104px;
  border-top: 1px solid #eee;
}

.section-features .ui-subtitle-block {
  margin-bottom: 35px;
}

.section-features .ui-description {
  margin-bottom: 62px;
}

.section-features-2 {
  padding-top: 100px;
  padding-bottom: 30px;
}

.section-features-2 .ui-description {
  margin-bottom: 52px;
}

.section-features-2__bg {
  margin-top: 55px;
}

.b-advantages-2 {
  position: relative;
  margin-bottom: 40px;
  padding-left: 62px;
}

.b-advantages-2:before, .b-advantages-2:after {
  display: table;
  content: "";
}

.b-advantages-2:after {
  clear: both;
}

.lt-ie8 .b-advantages-2 {
  zoom: 1;
}

.b-advantages-2 .b-advantages__icon {
  position: absolute;
  top: 22px;
  left: 0;
  font-size: 32px;
}

.b-advantages-2 .b-advantages__title {
  display: block;
  margin-bottom: 18px;
}

.b-advantages- {
  position: relative;
}

.b-advantages-:before, .b-advantages-:after {
  display: table;
  content: "";
}

.b-advantages-:after {
  clear: both;
}

.lt-ie8 .b-advantages- {
  zoom: 1;
}

.b-advantages- .b-advantages__icon {
  font-size: 40px;
}

.b-advantages- .b-advantages__title {
  display: block;
}

.section-blockquote__quote {
  position: relative;
  z-index: 10;
  height: 100%;
}

.section-blockquote__quote-inner {
  height: 330px;
  padding-left: 90px;
}

.section-blockquote__quote-inner:before {
  display: inline-block;
  vertical-align: middle;
  width: 0;
  height: 100%;
  content: '';
}

.section-blockquote__quote-inner .icon {
  display: inline-block;
  width: 200px;
  padding-bottom: 18px;
  font-size: 60px;
  vertical-align: middle;
  border-bottom: 3px solid #333;
  text-shadow: -2px -2px 0 #333, -2px -1px 0 #333, -2px 0 0 #333, -2px 1px 0 #333, -2px 2px 0 #333, -1px -2px 0 #333, -1px -1px 0 #333, -1px 0 0 #333, -1px 1px 0 #333, -1px 2px 0 #333, 0 -2px 0 #333, 0 -1px 0 #333, 0 0 0 #333, 0 1px 0 #333, 0 2px 0 #333, 1px -2px 0 #333, 1px -1px 0 #333, 1px 0 0 #333, 1px 1px 0 #333, 1px 2px 0 #333, 2px -2px 0 #333, 2px -1px 0 #333, 2px 0 0 #333, 2px 1px 0 #333, 2px 2px 0 #333;
}

blockquote.figure {
  position: absolute;
  z-index: -2;
  bottom: -35px;
  left: -270px;
  display: block;
  width: 350px;
  height: 70px;
  content: '';
  background-image: url(../images/content/bg/texture-1.png);
}

.section-blockquote-2 {
  padding-top: 105px;
  padding-bottom: 36px;
}

.section-blockquote-2 .ui-decor-1 {
  margin-top: 33px;
}

blockquote {
  margin-top: 50px;
  font-size: 16px;
  font-style: italic;
  line-height: 1.75;
  color: #333;
}


blockquote p {
  letter-spacing: .02em;
}


blockquote:before {
  font: 63px/1 FontAwesome;
  content: '\f10d';
  color: #fff;
}

blockquote {
  margin-top: 38px;
  font-size: 16px;
  font-style: italic;
  color: #333;
}

.b-blockquote-1 {
  position: relative;
  text-align: center;
}

.b-blockquote-1 blockquote {
  margin-top: 38px;
  font-size: 16px;
  font-style: italic;
  color: #333;
}

.b-blockquote-1 .b-blockquote__cite {
  display: inline-block;
  margin-top: 43px;
  margin-bottom: 60px;
  padding: 17px 40px 20px;
  background-image: url(../images/content/bg/texture-1.png);
}

.b-blockquote-1 .b-blockquote__author {
  padding-right: 14px;
  font: 700 14px Montserrat;
  text-transform: uppercase;
  color: #333;
}

.b-blockquote-1 .b-blockquote__category {
  font: italic 11px Merriweather;
  letter-spacing: .1em;
  color: #777;
}

.b-blockquote-1_dark blockquote:before {
  display: inline-block;
  color: #111;
}

.b-blockquote-1_dark blockquote {
  margin-bottom: 64px;
  color: #ccc;
}

.b-blockquote-1_dark .b-blockquote__cite {
  margin-top: 8px;
  margin-bottom: 13px;
  background-image: none;
}

.b-blockquote-1_dark .b-blockquote__author {
  display: block;
  padding-right: 0;
  font-size: 16px;
  line-height: 1;
  color: #ccc;
}

.b-blockquote-1_dark .b-blockquote__category {
  display: block;
  margin-top: 7px;
  color: #ccc;
}

.b-blockquote-2 {
  position: relative;
}

.b-blockquote-2 blockquote {
  margin-top: 0;
  padding: 65px 90px 0 120px;
  font-size: 16px;
  font-style: italic;
  color: #333;
}

.b-blockquote-2 .b-blockquote__cite {
  position: relative;
  margin-top: 52px;
  margin-bottom: 20px;
  padding: 0 47px 20px;
  letter-spacing: 0;
}

.b-blockquote-2 .b-blockquote__cite:before {
  position: absolute;
  top: 7px;
  left: 0;
  width: 30px;
  height: 2px;
  content: '';
  background-color: #333;
}

.b-blockquote-2 .b-blockquote__author {
  display: block;
  padding-right: 14px;
  font: 700 16px Montserrat;
  text-transform: uppercase;
  color: #333;
}

.b-blockquote-2 .b-blockquote__category {
  display: block;
  margin-top: 8px;
  font: italic 11px Merriweather;
  letter-spacing: .1em;
  color: #777;
}

.section-brands {
  padding: 30px 40px 72px;
}

.section-brands.bg-dark {
  padding-bottom: 30px;
}

.b-brands {
  margin-right: auto;
  margin-left: auto;
}

.b-brands__item {
  height: 160px;
  padding-right: 15px;
  padding-left: 15px;
  text-align: center;
}

.b-brands__item:before {
  display: inline-block;
  vertical-align: middle;
  width: 0;
  height: 100%;
  content: '';
}

.b-brands__item img {
  display: inline-block;
  vertical-align: middle;
}

.b-brands_bg-texture.b-brands__item {
  margin-right: 12px;
  margin-left: 12px;
  background-image: url(../images/content/bg/texture-1.png);
}

.b-brands-2 {
  padding-right: 150px;
  padding-left: 150px;
  border-width: 0 5px;
  border-style: solid;
}

.b-brands-2__item {
  height: 160px;
  text-align: center;
}

.b-brands-2__item:before {
  display: inline-block;
  vertical-align: middle;
  width: 0;
  height: 100%;
  content: '';
}

.b-brands-2__item img {
  display: inline-block;
  vertical-align: middle;
}

.section-contact .ui-description {
  padding-right: 67px;
  padding-left: 67px;
}

.b-contact {
  margin-top: 65px;
  text-align: center;
}

.b-contact__icon {
  display: inline-block;
  width: 130px;
  height: 130px;
  margin-right: 20px;
  margin-bottom: 10px;
  font-size: 48px;
  line-height: 130px;
  color: #333;
  border: 1px solid #eee;
  background-color: white;
}

.b-contact__inner {
  margin-top: 50px;
  padding: 39px 10px 40px;
  background-image: url(../images/content/bg/texture-1.png);
}

.b-contact__name {
  margin-top: 9px;
  margin-bottom: 7px;
  font: 700 16px/1 Montserrat;
  letter-spacing: .01em;
  text-transform: uppercase;
  color: #333;
}

.b-contact__info {
  font-size: 14px;
  letter-spacing: .03em;
  color: #333;
}

/* Tilter figure */
.tilter {
  position: relative;
  color: #fff;
  flex: none;
  perspective: 1000px;
  z-index: 100;
}

.tilter * {
  pointer-events: none;
}

.tilter:hover,
.tilter:focus {
  color: #fff;
  outline: none;
}

/*
.tilter__figure,
.tilter__deco,
.tilter__caption {
  will-change: transform;
}*/

.tilter__figure,
.tilter__image {
  margin: 0;
  width: 100%;
  height: 100%;
  display: block;
}

.tilter__figure > * {
  transform: translateZ(0px); /* Force correct stacking order */
}

.smooth .tilter__figure,
.smooth .tilter__deco--overlay,
.smooth .tilter__deco--lines,
.smooth .tilter__deco--shine div,
.smooth .tilter__caption {
  transition: transform 0.2s ease-out;
}

.tilter__figure {
  position: relative;
  z-index: 100;
}

.tilter__figure::before {
  content: '';
  position: absolute;
  width: 90%;
  height: 90%;
  top: 5%;
  left: 5%;
  box-shadow: 0 30px 20px rgba(35,32,39,0.5);
}

.tilter__deco {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: 110;
}

.tilter__deco--overlay {
  background-image: linear-gradient(45deg, rgba(226, 60, 99, 0.4), rgba(145, 58, 252, 0.4), rgba(16, 11, 192, 0.4));
}

.tilter__deco--shine div {
  position: absolute;
  width: 200%;
  height: 200%;
  top: -50%;
  left: -50%;
  background-image: linear-gradient(45deg, rgba(0, 0, 0, 0.5) 0%, rgba(255, 255, 255, 0.25) 50%, transparent 100%);
}

.tilter__deco--lines {
  fill: none;
  stroke: #fff;
  stroke-width: 1.5px;
}

.tilter__caption {
  position: absolute;
  bottom: 0;
  width: 100%;
  padding: 4em;
}

.tilter__title {
  margin: 0;
  font-weight: normal;
  font-size: 2.5em;
  font-family: 'Abril Fatface', serif;
  line-height: 1;
}

.tilter__description {
  margin: 1em 0 0 0;
  font-size: 0.85em;
  letter-spacing: 0.15em;
}

/* Individual styles */

/* Example 1 (Default) */
.tilter--1 .tilter__figure::before {
  box-shadow: 0 30px 20px rgba(0,0,0,0.5);
}

/* Example 2 (thicker lines, overlay) */
.tilter--2,
.tilter--2:hover,
.tilter--2:focus {
  color: #2e27ad;
}

.tilter--2 .tilter__deco--overlay {
  background-image: linear-gradient(45deg, rgba(245, 239, 40, 0.6), rgba(164, 22, 169, 0.6));
}

.tilter--2 .tilter__deco--lines {
  stroke: #2e27ad;
  stroke-width: 4px;
}

/* Example 3 (no lines, overlay hard-light) */
.tilter--3 .tilter__deco--overlay {
  background-image: linear-gradient(45deg, rgba(205, 81, 220, 0.6), rgba(41, 94, 230,0.5));
}

.tilter--3 .tilter__caption {
  padding: 2em;
  text-align: right;
  text-shadow: 0.1em 0.8em 1em rgba(0,0,0,0.35);
}

/* Example 4 (caption sliding in) */
.tilter--4 .tilter__deco--overlay {
  background-image: linear-gradient(20deg, rgb(214, 100, 40), rgba(46, 39, 173, 0.58), rgba(53, 74, 165, 0.6));
}

@media screen and (min-width: 30em) {
  .tilter--4 .tilter__deco--lines {
    transform: scale3d(0.8,0.8,1);
    transition: transform 0.4s;
  }
  .tilter--4:hover .tilter__deco--lines {
    transform: scale3d(1,1,1);
  }
  .tilter--4 .tilter__title,
  .tilter--4 .tilter__description {
    transform: translate3d(0,80px,0);
    opacity: 0;
    transition: transform 0.4s, opacity 0.4s;
  }
  .tilter--4:hover .tilter__description {
    transition-delay: 0.1s;
  }
  .tilter--4:hover .tilter__title,
  .tilter--4:hover .tilter__description {
    transform: translate3d(0,0,0);
    opacity: 1;
  }
}

/* Example 5 (line animating) */
.tilter--5 .tilter__deco--lines path {
  stroke-dasharray: 1270;
  stroke-dashoffset: 1270;
  transition: stroke-dashoffset 0.7s;
}

.tilter--5:hover .tilter__deco--lines path {
  stroke-dashoffset: 0;
}

.tilter--5 .tilter__figure::before {
  box-shadow: none;
}

/* Example 6 (different line position) */
.tilter--6,
.tilter--6:hover,
.tilter--6:focus {
  color: #2e27ad;
}

.tilter--6 .tilter__deco--overlay {
  background-image: linear-gradient(45deg, rgba(46, 39, 173, 0.2), rgba(255, 186, 59, 0.58));
}

.tilter--6 .tilter__deco--lines {
  stroke: #2e27ad;
  stroke-width: 6px;
  top: -50px;
  left: -50px;
}

.tilter--6 .tilter__caption {
  padding: 0 4em 5.5em 1em;
}

.tilter--6 .tilter__figure::before {
  box-shadow: none;
}

/* Example 7 (different line) */
.tilter--7 .tilter__deco--overlay {
  background-image: linear-gradient(45deg, rgba(93, 203, 106, 0.48), rgba(59, 239, 255, 0.58));
}

.tilter--7 .tilter__deco--lines {
  stroke-width: 20px;
  transform: scale3d(0.9,0.9,1);
  opacity: 0;
  transition: transform 0.3s, opacity 0.3s;
}

.tilter--7:hover .tilter__deco--lines {
  opacity: 1;
  transform: scale3d(1,1,1);
}

.tilter--7 .tilter__figure::before {
  box-shadow: none;
}

/* Example 8 (different line) */
.tilter--8 {
  perspective: none;
}

.tilter--8 .tilter__figure {
  transform-style: flat;
}

.tilter--8 .tilter__deco--lines {
  stroke: #9255ae;
  stroke-width: 6px;
  mix-blend-mode: color-burn;
}

.tilter--8 .tilter__caption {
  color: #9255ae;
  mix-blend-mode: color-burn;
}

.tilter--8 .tilter__figure::before {
  box-shadow: none;
}


/* Post basics */

.l-theme ul > ul,
  .l-theme ul ol,
  .l-theme ol ul,
  .l-theme ol ol{
    padding-left: 30px;
  }
  .l-theme ul{
    list-style: disc;
  }
  .l-theme .main-slider ul{
    list-style: none;
  }
  }
  .l-theme ol{
    list-style: upper-roman ;
  }
  .l-theme ol ol{
    list-style: lower-roman ;
  }
  .l-theme pre{
    overflow: auto;
  }

.l-theme table{
    border-collapse:collapse;
    margin-bottom: 20px;
    border-top: solid 4px #0097c2;
  }
  .l-theme th{
    font-weight: bold;
    padding: 3px 10px;
  }
  .l-theme td{
    margin: 0;
    padding: 3px 10px;
  }
  .l-theme table tr:first-child td{
    border-top: none;
  }
  .l-theme table tr:nth-of-type(odd){
    background-color: #f3f3f3;
  }

  .l-theme dd {
    display: block;
    -webkit-margin-start: 40px;
    margin-top: 10px;
    margin-bottom: 10px;
  }


.section-form-contact {
  padding-top: 105px;
  padding-bottom: 100px;
  border-top: 1px solid #eee;
}

.section-form-contact .ui-subtitle-block {
  margin-bottom: 0;
}

.section-form-contact .ui-description {
  margin-top: 30px;
}

.b-form-contacts {
  margin-top: 75px;
}

.b-form-contacts .btn {
  margin-top: 46px;
}

.b-form-contacts textarea.form-control {
  padding-bottom: 12px;
}

.b-info {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #222;
}

.b-info__title {
  margin-top: 43px;
  margin-bottom: 45px;
  font: italic 700 24px/1.5 Merriweather;
  letter-spacing: .1em;
  color: #fff;
}

.b-info__inner {
  margin-right: 40px;
  margin-left: 40px;
  border-width: 0 5px;
  border-style: none solid;
}

.b-info__link {
  position: relative;
  padding-top: 5px;
  padding-bottom: 5px;
}

.b-info__link:before, .b-info__link:after {
  display: table;
  content: "";
}

.b-info__link:after {
  clear: both;
}

.lt-ie8 .b-info__link {
  zoom: 1;
}

.b-info__btn {
  position: absolute;
  top: 50%;
  right: 0;
  margin-top: -7px;
  font: 12px/1 Montserrat;
  letter-spacing: .57em;
  text-transform: uppercase;
  color: white;
}

.b-info__btn .icon {
  display: inline-block;
  margin-top: -2px;
  padding-right: 30px;
  font-size: 18px;
  vertical-align: middle;
}

.b-info__btn:focus {
  outline-style: none;
}

.b-info__btn-emphasis {
  margin-left: 4px;
  padding-bottom: 4px;
  border-bottom: 2px solid #fff;
}

.b-info__link-bg .icon {
  float: right;
  padding-right: 27px;
  font-size: 150px;
  line-height: 1;
  color: #444;
  width: 178px;
  height: 100%;
}

.b-info__helper:before {
  display: inline-block;
  vertical-align: middle;
  width: 0;
  height: 100%;
  content: '';
}

.b-info_mrg-top {
  margin-top: 105px;
}

.b-info_mrg-btm {
  margin-bottom: 104px;
}

.section-isotope {
  padding-top: 40px;
}

/* ---- isotope ---- */
.grid-item {
  float: left;
}

.grid-item img {
  height: 100%;
}

.b-isotope {
  background: #fff;
}

.b-isotope:before, .b-isotope:after {
  display: table;
  content: "";
}

.b-isotope:after {
  clear: both;
}

.lt-ie8 .b-isotope {
  zoom: 1;
}

.grid-sizer,
.grid-item {
  width: 25%;
  position: relative;
  list-style: none;
}

.grid-item_wx2 {
  width: 50%;
}

.b-isotope-filter {
  position: relative;
  margin-top: 54px;
  margin-bottom: 60px;
  margin-left: 0;
  padding-top: 74px;
  text-align: right;
}

.b-isotope-filter > li {
  padding-right: 0;
  padding-left: 35px;
}

.b-isotope-filter > li > a {
  position: relative;
  font: 400 11px Montserrat;
  -webkit-transition: all .3s;
  transition: all .3s;
  text-transform: uppercase;
  color: #777;
}

.b-isotope-filter > li > a:after {
  position: absolute;
  top: -45px;
  left: 50%;
  margin-left: -3px;
  font: 18px FontAwesome;
  content: '\f175';
  -webkit-transition: all .3s;
  transition: all .3s;
  opacity: 0;
}

.b-isotope-filter > li > a:focus {
  outline-style: none;
}

.b-isotope-filter > li.current > a, .b-isotope-filter > li:hover > a {
  color: #333;
}

.b-isotope-filter > li.current > a:after, .b-isotope-filter > li:hover > a:after {
  opacity: 1;
}

.b-isotope-filter > li.current .b-isotope-filter__title {
  opacity: 1;
}

.b-isotope-filter__title {
  position: absolute;
  top: 0;
  right: 0;
  font: 700 50px/1 Montserrat;
  -webkit-transition: all .3s;
  transition: all .3s;
  opacity: 0;
  color: #eee;
}

.b-isotope-filter_mrg-btm_lg {
  margin-bottom: 90px;
}

.b-isotope-filter_center {
  display: inline-block;
  margin-top: 0;
  margin-bottom: 70px;
  padding-top: 93px;
}

.b-isotope-grid {
  margin-right: -30px;
  margin-bottom: 75px;
}

.b-isotope-grid__inner {
  display: block;
  overflow: hidden;
  margin-right: 30px;
  margin-bottom: 30px;
}

.b-isotope-grid__inner:hover .b-isotope-grid__wrap-info {
  opacity: 1;
}

.b-isotope-grid__wrap-info {
  position: absolute;
  top: 10px;
  right: 40px;
  bottom: 40px;
  left: 10px;
  padding: 42px 50px;
  -webkit-transition: all .3s;
  transition: all .3s;
  opacity: 0;
  color: #777;
}

.b-isotope-grid__info {
  position: absolute;
  bottom: 30px;
  left: 40px;
}

.b-isotope-grid__title {
  display: inline-block;
  padding-top: 5px;
  font: 700 16px/2 Montserrat;
  text-transform: uppercase;
  color: #333;
  border-top: 2px solid #333;
}

.b-isotope-grid__categorie {
  display: block;
  font-size: 12px;
}

.b-isotope-grid .icon {
  position: absolute;
  right: 50px;
  bottom: 48px;
}

.b-isotope-grid_mod-a {
  margin-bottom: 88px;
}

.b-isotope-grid_mod-a .b-isotope-grid__inner {
  position: relative;
  margin-right: 20px;
  margin-bottom: 20px;
}

.b-isotope-grid_mod-a .b-isotope-grid__inner img {
  width: 100%;
  height: auto;
}

.b-isotope-grid_mod-a .b-isotope-grid__wrap-info {
  top: auto;
  right: 0;
  bottom: 0;
  left: 0;
  padding: 16px 10px 19px;
  text-align: center;
  letter-spacing: .05em;
}

.b-isotope-grid_mod-a .b-isotope-grid__info {
  position: relative;
  bottom: auto;
  left: auto;
  line-height: 1;
}

.b-isotope-grid_mod-a .b-isotope-grid__title {
  line-height: 1;
  border-top: none;
}

/* MAIN SLIDER */
.main-slider {
  position: relative;
  margin-top: 128px!important;
  text-align: center;
  color: white;
}
.page-template-template-homepage .main-slider {
  margin-top: 50px!important;
}

.main-slider__inner {
  position: absolute;
  z-index: 200;
  top: 0;
  right: 0;
  left: 0;
}

.main-slider__title {
  font-size: 48px;
  font-weight: 700;
  line-height: 1.2;
  text-transform: uppercase;
  color: white;
}

.main-slider__title-emphasis {
  margin-left: 10px;
  padding-bottom: 3px;
  border-bottom: 3px solid #fff;
}

 .typed-strings{
    font-family: Montserrat;
    /*float: left;*/
}

 .typed-cursor{
    float: left;
    position: relative;
    top: 7px;
}

.main-slider__info {
  margin-bottom: 17px;
  padding-top: 282px;
  font-size: 20px;
  font-style: italic;
  letter-spacing: .5em;
  color: white;
}

.main-slider__btn {
  margin: 10px 8px;
}

.main-slider__btn_white {
  background-color: #fff;
}

.main-slider_lg {
  margin-top: 50px;
}

.main-slider_lg .main-slider__info {
  margin-bottom: 27px;
  padding-top: 350px;
  font-size: 16px;
}

.sp-image-container:after {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  content: '';
  background-color: rgba(0, 0, 0, 0.75);
}

/* Buttons
--------------------------------------------------*/
.sp-buttons {
  position: absolute;
  bottom: 90px;
  left: 0;
  width: 100%;
  text-align: center;
}

.sp-button {
  display: inline-block;
  width: 10px;
  height: 5px;
  margin-right: 5px;
  margin-left: 5px;
  cursor: pointer;
  -webkit-transition: all .3s;
  transition: all .3s;
  opacity: .5;
  background-color: white;
}

.sp-button:hover {
  width: 25px;
  opacity: 1;
}

.sp-selected-button {
  width: 25px;
  opacity: 1;
}

input[type=button],
input[type=submit] {
  color: #ffffff;
  padding-left: 30px;
  padding-right: 30px;
  display: inline-block;
  margin-bottom: 0;
  padding: 13px 20px;
  font-weight: 400;
  font-size: 11px;
  text-align: center;
  vertical-align: middle;
  -ms-touch-action: manipulation;
  touch-action: manipulation;
  cursor: pointer;
  background-image: none;
  white-space: nowrap;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  text-transform: uppercase;
  transition: all .3s;
  font-family: Montserrat;
  letter-spacing: .1em;
  background-color: transparent;
  border-color: transparent;
}
input[type=button]:active,
input[type=submit]:active {
    outline: 0;
    background-image: none;
    -webkit-box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
    box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
}
input[type=button]:hover,
input[type=submit]:hover{
    color: #ffffff;
    background-color: #fc0101;
    border-color: #ba0101;
}

.post-password-form input[type="submit"] {
    padding: 4px 30px;
}

        

/* Arrows
--------------------------------------------------*/
.sp-arrows {
  position: absolute;
}

.sp-fade-arrows {
  -webkit-transition: opacity .5s;
  transition: opacity .5s;
  opacity: .5;
}

.sp-slides-container:hover .sp-fade-arrows {
  opacity: 1;
}

.sp-horizontal .sp-arrows {
  z-index: 10;
  right: 0;
  bottom: 105px;
  width: 100%;
  margin-top: 0;
  text-align: center;
}

.sp-vertical .sp-arrows {
  top: 0;
  left: 50%;
  height: 100%;
  margin-left: -10px;
}

.sp-arrow {
  bottom: 0;
  display: inline-block;
  padding: 0 50px;
  font-size: 22px;
  cursor: pointer;
  -webkit-transition: all .3s;
  transition: all .3s;
  text-align: center;
}

.sp-horizontal .sp-previous-arrow {
  left: 80px;
}

.sp-horizontal .sp-next-arrow {
  right: 80px;
}

.sp-vertical .sp-previous-arrow {
  top: 20px;
}

.sp-vertical .sp-next-arrow {
  bottom: 20px;
}

.sp-previous-arrow:before, .sp-next-arrow:before {
  font-family: 'FontAwesome';
}

.sp-previous-arrow:before {
  content: '\f177';
}

.sp-next-arrow:before {
  content: '\f178';
}


.sp-slides-container {
  position: relative;
}

.sp-mask {
  position: relative;
  overflow: hidden;
}

.sp-slides {
  position: relative;
  -webkit-backface-visibility: hidden;
  -webkit-perspective: 1000;
}

.sp-slide {
  position: absolute;
  background-color: #C5C5C5;
}

.sp-image-container {
  overflow: hidden;
  position: absolute;
  top: 0;
}
.sp-image-container:after {
  content: '';
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.1);
  position: absolute;
}
.sp-image {
  position: relative;
  display: block;
  border: none;
}

.sp-no-js {
  overflow: hidden;
  max-width: 100%;
}

/* Thumbnails
--------------------------------------------------*/
.sp-thumbnails-container {
  top: 0;
}

.sp-top-thumbnails,
.sp-bottom-thumbnails  {
  margin: 0 auto;
  right: 0;
}

.sp-top-thumbnails {
  position: absolute;
  top: 0;
  margin-bottom: 4px;
}

.sp-bottom-thumbnails {
  margin-top: 0;
}

.sp-left-thumbnails,
.sp-right-thumbnails {
  position: absolute;
  top: 14vw;
}

.sp-right-thumbnails {
  right: 8.33333333%;
}

.sp-left-thumbnails {
  left: 0;
  margin-right: 4px;
}

.sp-thumbnails {
  position: relative;
}

.sp-thumbnail {
  border: none;
  font-family: Montserrat;
  color: #ffffff;
  font-size: 14px;
  font-weight: 700;
  text-align: right;
  line-height: 1;
}
.sp-selected-thumbnail .sp-thumbnail {
  font-size: 3rem;
}

.sp-thumbnail-container {
  position: relative;
  display: inline-block;
  overflow: hidden;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

/* Horizontal thumbnails
------------------------*/
.sp-top-thumbnails .sp-thumbnail-container,
.sp-bottom-thumbnails .sp-thumbnail-container {
  margin-left: 2px;
  margin-right: 2px;
}

.sp-top-thumbnails .sp-thumbnail-container:first-child,
.sp-bottom-thumbnails .sp-thumbnail-container:first-child {
  margin-left: 0;
}

.sp-top-thumbnails .sp-thumbnail-container:last-child,
.sp-bottom-thumbnails .sp-thumbnail-container:last-child {
  margin-right: 0;
}

/* Vertical thumbnails
----------------------*/
.sp-left-thumbnails .sp-thumbnail-container,
.sp-right-thumbnails .sp-thumbnail-container {
  margin-top: 2px;
  margin-bottom: 2px;
}

.sp-left-thumbnails .sp-thumbnail-container:first-child,
.sp-right-thumbnails .sp-thumbnail-container:first-child {
  margin-top: 0;
}

.sp-left-thumbnails .sp-thumbnail-container:last-child,
.sp-right-thumbnails .sp-thumbnail-container:last-child {
  margin-bottom: 0;
}

/* Right thumbnails with pointer
--------------------------------*/
.sp-right-thumbnails.sp-has-pointer {
  margin-left: -13px;
}

.sp-right-thumbnails.sp-has-pointer .sp-thumbnail {
  position: absolute;
  left: 18px;
  margin-left: 0 !important;
}

.sp-right-thumbnails.sp-has-pointer .sp-selected-thumbnail:before {
  content: '';
  position: absolute;
  height: 100%;
  border-left: 5px solid #F00;
  left: 0;
  top: 0;
  margin-left: 13px;
}

.sp-right-thumbnails.sp-has-pointer .sp-selected-thumbnail:after {
  content: '';
  position: absolute;
  width: 0;
  height: 0;
  left: 0;
  top: 50%;
  margin-top: -8px;
  border-right: 13px solid #F00;
  border-top: 8px solid transparent;
  border-bottom: 8px solid transparent;
}

/* Left thumbnails with pointer
-------------------------------*/
.sp-left-thumbnails.sp-has-pointer {
  margin-right: -13px;
}

.sp-left-thumbnails.sp-has-pointer .sp-thumbnail {
  position: absolute;
  right: 18px;
}

.sp-left-thumbnails.sp-has-pointer .sp-selected-thumbnail:before {
  content: '';
  position: absolute;
  height: 100%;
  border-left: 5px solid #F00;
  right: 0;
  top: 0;
  margin-right: 13px;
}

.sp-left-thumbnails.sp-has-pointer .sp-selected-thumbnail:after {
  content: '';
  position: absolute;
  width: 0;
  height: 0;
  right: 0;
  top: 50%;
  margin-top: -8px;
  border-left: 13px solid #F00;
  border-top: 8px solid transparent;
  border-bottom: 8px solid transparent;
}

/* Bottom thumbnails with pointer
---------------------------------*/
.sp-bottom-thumbnails.sp-has-pointer {
  margin-top: -13px;
}

.sp-bottom-thumbnails.sp-has-pointer .sp-thumbnail {
  position: absolute;
  top: 18px;
  margin-top: 0 !important;
}

.sp-bottom-thumbnails.sp-has-pointer .sp-selected-thumbnail:before {
  position: absolute;
  width: 100%;
  border-bottom: 5px solid #F00;
  top: 0;
  margin-top: 13px;
}

.sp-bottom-thumbnails.sp-has-pointer .sp-selected-thumbnail:after {
  position: absolute;
  width: 0;
  height: 0;
  left: 50%;
  top: 0;
  margin-left: -8px;
  border-bottom: 13px solid #F00;
  border-left: 8px solid transparent;
  border-right: 8px solid transparent;
}

/* Top thumbnails with pointer
------------------------------*/
.sp-top-thumbnails.sp-has-pointer {
  margin-bottom: -13px;
}

.sp-top-thumbnails.sp-has-pointer .sp-thumbnail {
  position: absolute;
  bottom: 18px;
}

.sp-top-thumbnails.sp-has-pointer .sp-selected-thumbnail:before {
  content: '';
  position: absolute;
  width: 100%;
  border-bottom: 5px solid #F00;
  bottom: 0;
  margin-bottom: 13px;
}

.sp-top-thumbnails.sp-has-pointer .sp-selected-thumbnail:after {
  content: '';
  position: absolute;
  width: 0;
  height: 0;
  left: 50%;
  bottom: 0;
  margin-left: -8px;
  border-top: 13px solid #F00;
  border-left: 8px solid transparent;
  border-right: 8px solid transparent;
}

/* Layers
--------------------------------------------------*/
.sp-layer {
  margin: 0;
  box-sizing: border-box;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  -webkit-font-smoothing: subpixel-antialiased;
  -webkit-backface-visibility: hidden;
}

.sp-black {
  color: #FFF;
  background: rgb(0, 0, 0);
  background: rgba(0, 0, 0, 0.7);
}

.sp-white {
  color: #000;
  background: rgb(255, 255, 255);
  background: rgba(255, 255, 255, 0.7);
}

.sp-rounded {
  border-radius: 10px;
}

.sp-padding {
  padding: 10px;
}

/* Touch Swipe
--------------------------------------------------*/
.sp-grab {
  cursor: url(images/openhand.cur), move;
}

.sp-grabbing {
  cursor: url(images/closedhand.cur), move;
}

.sp-selectable {
  cursor: default;
}

/* Caption
--------------------------------------------------*/
.sp-caption-container {
  text-align: center;
  margin-top: 10px;
}

/* Full Screen
--------------------------------------------------*/
.sp-full-screen {
  margin: 0 !important;
  background-color: #000;
}

.sp-full-screen-button {
  position: absolute;
  top: 5px;
  right: 10px;
  font-size: 30px;
  line-height: 1;
  cursor: pointer;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}

.sp-full-screen-button:before {
  content: '\2195';
}

.sp-fade-full-screen {
  opacity: 0;
  -webkit-transition: opacity 0.5s;
  transition: opacity 0.5s;
  display: none;
}

.slider-pro:hover .sp-fade-full-screen {
}


/* Thumbnail Arrows
--------------------------------------------------*/
.sp-thumbnail-arrows {
  position: absolute;
}

.sp-fade-thumbnail-arrows {
  opacity: 0;
  -webkit-transition: opacity 0.5s;
  transition: opacity 0.5s;
}

.sp-thumbnails-container:hover .sp-fade-thumbnail-arrows {
  opacity: 1;
}

.sp-top-thumbnails .sp-thumbnail-arrows,
.sp-bottom-thumbnails .sp-thumbnail-arrows {
  width: 100%;
  top: 50%;
  left: 0;
  margin-top: -12px;
}

.sp-left-thumbnails .sp-thumbnail-arrows,
.sp-right-thumbnails .sp-thumbnail-arrows {
  height: 100%;
  top: 0;
  left: 50%;
  margin-left: -7px;
}

.sp-thumbnail-arrow {
  position: absolute;
  display: block;
  width: 15px;
  height: 25px;
  cursor: pointer;
}

.sp-left-thumbnails .sp-thumbnail-arrows .sp-thumbnail-arrow,
.sp-right-thumbnails .sp-thumbnail-arrows .sp-thumbnail-arrow {
  -webkit-transform: rotate(90deg);
  -ms-transform: rotate(90deg);
  transform: rotate(90deg);
}

.sp-top-thumbnails .sp-previous-thumbnail-arrow,
.sp-bottom-thumbnails .sp-previous-thumbnail-arrow {
  left: 0px;
}

.sp-top-thumbnails .sp-next-thumbnail-arrow,
.sp-bottom-thumbnails .sp-next-thumbnail-arrow {
  right: 0px;
}

.sp-left-thumbnails .sp-previous-thumbnail-arrow,
.sp-right-thumbnails .sp-previous-thumbnail-arrow {
  top: 0px;
}

.sp-left-thumbnails .sp-next-thumbnail-arrow,
.sp-right-thumbnails .sp-next-thumbnail-arrow {
  bottom: 0px;
}

.sp-previous-thumbnail-arrow:before,
.sp-previous-thumbnail-arrow:after,
.sp-next-thumbnail-arrow:before,
.sp-next-thumbnail-arrow:after {
  content: '';
  position: absolute;
  width: 50%;
  height: 50%;
  background-color: #FFF;
}

.sp-previous-thumbnail-arrow:before {
  left: 30%;
  top: 0;
  -webkit-transform: skew(145deg, 0deg);
  -ms-transform: skew(145deg, 0deg);
  transform: skew(145deg, 0deg);
}

.sp-previous-thumbnail-arrow:after {
  left: 30%;
  top: 50%;
  -webkit-transform: skew(-145deg, 0deg);
  -ms-transform: skew(-145deg, 0deg);
  transform: skew(-145deg, 0deg);
}

.sp-next-thumbnail-arrow:before {
  right: 30%;
  top: 0;
  -webkit-transform: skew(35deg, 0deg);
  -ms-transform: skew(35deg, 0deg);
  transform: skew(35deg, 0deg);
}

.sp-next-thumbnail-arrow:after {
  right: 30%;
  top: 50%;
  -webkit-transform: skew(-35deg, 0deg);
  -ms-transform: skew(-35deg, 0deg);
  transform: skew(-35deg, 0deg);
}

.ie8 .sp-thumbnail-arrow,
.ie7 .sp-thumbnail-arrow {
  width: 0;
  height: 0;
}

.ie8 .sp-thumbnail-arrow:before,
.ie8 .sp-thumbnail-arrow:after,
.ie7 .sp-thumbnail-arrow:before,
.ie7 .sp-thumbnail-arrow:after {
  content: none;
}

.ie8 .sp-top-thumbnails .sp-previous-thumbnail-arrow,
.ie8 .sp-bottom-thumbnails .sp-previous-thumbnail-arrow,
.ie7 .sp-top-thumbnails .sp-previous-thumbnail-arrow,
.ie7 .sp-bottom-thumbnails .sp-previous-thumbnail-arrow {
  border-right: 12px solid #FFF;
  border-top: 12px solid transparent;
  border-bottom: 12px solid transparent;
}

.ie8 .sp-top-thumbnails .sp-next-thumbnail-arrow,
.ie8 .sp-bottom-thumbnails .sp-next-thumbnail-arrow,
.ie7 .sp-top-thumbnails .sp-next-thumbnail-arrow,
.ie7 .sp-bottom-thumbnails .sp-next-thumbnail-arrow {
  border-left: 12px solid #FFF;
  border-top: 12px solid transparent;
  border-bottom: 12px solid transparent;
}

.ie8 .sp-left-thumbnails .sp-previous-thumbnail-arrow,
.ie8 .sp-right-thumbnails .sp-previous-thumbnail-arrow,
.ie7 .sp-left-thumbnails .sp-previous-thumbnail-arrow,
.ie7 .sp-right-thumbnails .sp-previous-thumbnail-arrow {
  border-bottom: 12px solid #FFF;
  border-left: 12px solid transparent;
  border-right: 12px solid transparent;
}

.ie8 .sp-left-thumbnails .sp-next-thumbnail-arrow,
.ie8 .sp-right-thumbnails .sp-next-thumbnail-arrow,
.ie7 .sp-left-thumbnails .sp-next-thumbnail-arrow,
.ie7 .sp-right-thumbnails .sp-next-thumbnail-arrow {
  border-top: 12px solid #FFF;
  border-left: 12px solid transparent;
  border-right: 12px solid transparent;
}

/* Video
--------------------------------------------------*/
a.sp-video {
  text-decoration: none;
}

a.sp-video img {
  -webkit-backface-visibility: hidden;
  border: none;
}

a.sp-video:after {
  content: '\25B6';
  position: absolute;
  width: 45px;
  padding-left: 5px;
  height: 50px;
  border: 2px solid #FFF;
  text-align: center;
  font-size: 30px;
  border-radius: 30px;
  top: 0;
  color: #FFF;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: rgba(0, 0, 0, 0.2);
  margin: auto;
  line-height: 52px;
}

/* CSS for preventing styling issues in WordPress
--------------------------------------------------*/
.slider-pro img.sp-image,
.slider-pro img.sp-thumbnail {
  border: none !important;
  border-radius: 0 !important;
  padding: 0 !important;
  -webkit-box-shadow: none !important;
  -mox-box-shadow: none !important;
  box-shadow: none !important;
  transition: none;
  -moz-transition: none;
  -webkit-transition: none;
  -o-transition: none;
  margin-left: 0 !important;
  margin-top: 0 !important;
}

.slider-pro a {
}

.slider-pro iframe,
.slider-pro object,
.slider-pro video,
.slider-pro embed,
.slider-pro canvas {
  max-width: none;
  max-height: none;
}

.slider-pro p.sp-layer {
  margin: 0;
}

.slider-pro h1.sp-layer {
  font-size: 32px;
  line-height: 1.4;
  margin: 0;
}

.slider-pro h2.sp-layer {
}

.slider-pro h3.sp-layer {
  font-size: 19px;
  line-height: 1.4;
  margin: 0;
}

.slider-pro h4.sp-layer {
  font-size: 16px;
  line-height: 1.4;
  margin: 0;
}

.slider-pro h5.sp-layer {
  font-size: 13px;
  line-height: 1.4;
  margin: 0;
}

.slider-pro h6.sp-layer {
  font-size: 11px;
  line-height: 1.4;
  margin: 0;
}

.slider-pro img.sp-layer {
  border: none;
}



.slider-pro {
  position: relative;
  margin: 0 auto;
  overflow: hidden;
}

.section-news {
  position: relative;
  padding-top: 105px;
  padding-bottom: 90px;
  border-bottom: 1px solid #eee;
}

.section-news:after {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 650px;
  content: '';
  background-color: #f7f7f7;
}

.section-news__link {
  position: absolute;
  right: 17px;
  bottom: 16px;
}

/*01  Blog */
.posts-group {
  padding-bottom: 115px;
}

.posts-group > section.b-post-has-image{
  padding-top: 110px;
}

.posts-group .pagination {
  margin-top: 34px;
}

.posts-group_pdg-btm_sm {
  padding-bottom: 100px;
}

.single .posts-group {
  padding-top: 75px;
}

.b-post .entry-title {
  color: #333;
}

.b-post .entry-title, .b-post .entry-title a {
  color: #333;
}

.b-post .entry-meta__item {
  margin-right: 19px;
}

.b-post .entry-meta__link {
  font-size: 12px;
  color: #777;
}

.b-post .entry-meta__icon {
  display: inline-block;
}

.b-post .entry-date {
  display: inline-block;
}

.b-post .entry-date__month {
  display: block;
}

.b-post .entry-header {
  position: relative;
}

.b-post-1 .entry-title {
  position: relative;
  margin-top: 7px;
  margin-bottom: 17px;
  font-size: 22px;
}

.b-post-1 .entry-title:before {
  display: block;
  width: 50px;
  height: 2px;
  margin-bottom: 38px;
  content: '';
  background-color: #333;
}

.b-post-1 .entry-media {
  position: relative;
  margin-bottom: 42px;
}
.entry-media .img-responsive{
  width: 100%;
}

.b-post-1 .entry-meta__item .icon {
  padding-right: 8px;
  font-size: 16px;
}

.b-post-1 .entry-content {
  margin-bottom: 14px;
  padding-right: 40px;
  letter-spacing: .025em;
}

.b-post-full {
  margin-bottom: 24px;
}

.b-post-full .entry-title {
  margin-top: 37px;
  margin-bottom: 24px;
  font-size: 22px;
}

.b-post-full .entry-media {
  position: relative;
  margin-bottom: 52px;
}

.b-post-full .entry-main {
  padding-bottom: 31px;
  padding-left: 100px;
}

.b-post-full .entry-meta__item .icon {
  padding-right: 8px;
  font-size: 16px;
  vertical-align: middle;
}

.b-post-full .entry-date {
  position: absolute;
  bottom: -32px;
  left: 0;
  width: 80px;
  height: 90px;
  padding-top: 23px;
  font: 700 14px Montserrat;
  text-align: center;
  color: #333;
}

.b-post-full .entry-date__number {
  display: block;
  font-size: 22px;
  text-transform: uppercase;
}

.b-post-full .entry-header .ui-decor-1 {
  display: block;
  margin-top: 8px;
  margin-left: 2px;
}

.b-post-full .entry-content {
  margin-bottom: 23px;
  padding-right: 40px;
  letter-spacing: .025em;
}

.post-tags {
  float: left;
  margin-top: 30px;
  padding: 7px 18px 4px 25px;
  letter-spacing: .07em;
  border: 1px solid #eee;
}

.post-tags a {
  padding-right: 7px;
  font-size: 10px;
  font-weight: 700;
  font-style: italic;
  -webkit-transition: all .3s;
  transition: all .3s;
  text-transform: uppercase;
  color: #777;
}

.post-tags a:hover {
  color: #333;
}

.b-post-full p {
  letter-spacing: .03em;
}

.b-post-full .entry-footer {
  margin-top: 20px;
}

.b-post-full .entry-footer:before, .b-post-full .entry-footer:after {
  display: table;
  content: "";
}

.b-post-full .entry-footer:after {
  clear: both;
}

.lt-ie8 .b-post-full .entry-footer {
  zoom: 1;
}

.b-post-full .entry-footer__link {
  float: right;
  margin-top: 30px;
  padding-top: 15px;
  padding-right: 17px;
  font: 700 11px Montserrat;
  letter-spacing: .075em;
  text-transform: uppercase;
  color: #333;
}

.b-post-full .entry-footer__link .icon {
  display: inline-block;
  padding-right: 8px;
  font-size: 16px;
  vertical-align: sub;
}

.b-post-sm {
  padding-top: 56px;
}

.b-post-sm .entry-title {
  margin-top: 8px;
  margin-bottom: 30px;
  font-size: 16px;
  line-height: 1.625;
  text-transform: none;
}

.b-post-sm .entry-title:before {
  display: block;
  width: 30px;
  height: 2px;
  margin-bottom: 24px;
  content: '';
  background-color: #333;
}

.b-post-full.b-post-no-image .entry-date {
    position: absolute;
    bottom: -148px;
}
@media screen and (max-width: 767px){
  .b-post-no-image .entry-meta {
    margin-top: 155px;
  }
}



/*02  Comments */
/*-------------------------------------
 *  COMMENTS & CONTACT FORMS
 *-------------------------------------*/

  
  /* Comments */

  #comments{
    padding-top: 50px;
    }

  .comment-form:after{
    content: "";
    clear: both;
    display: block;
    }
  .comment-form-comment textarea {
    width: 100%;
  }
  .comment-form input[name="submit"]{
    padding-top: 13px;
    padding-bottom: 12px;
    background-color: transparent;
    border: none;
    border-top: 2px solid #333;
    border-bottom: 2px solid #333;
    color: #777;
  }

  .comments-description{
    font-family: Open Sans;
    font-size: 13px;
    letter-spacing: 0.03em;
    }
  .comments-form-wrapper,
  .comment-form .form-submit{
    display: block;
    }

  .form-submit {
    position: relative;
  }
  .comment-form {
    margin-bottom: 50px;
  }
  .comment-form .form-submit:after{
    content: '';
    position: absolute;
    top: 35%;
    right: 87%;
    font: 17px/1 FontAwesome;
    content: '\f178';
    color: #777;
  }
  .logged-in .comment-form .form-submit:after {
    right: 86%;
  }
  .comment-respond{
    color: #000;
    }
  .commentlist{
    margin-bottom: 80px;
    list-style: none !important;
    padding-left: 0px;
    }
    ul.commentlist > li {
        margin-bottom: 35px!important;
    }
    .commentlist .comment{
        margin-bottom: 1.5em;
      }
      .comment .comment-body{
        /*border: solid 1px rgba(0,0,0,0.2);*/
        margin-bottom: 22px;
        position: relative;
        /*padding: 17px 25px 17px 20px;*/
        font-size: 14px;
        line-height: 1.7;
        }
      .comment .comment-body p{
        line-height: 1.6;
        margin-bottom: 10px;
        }
        .comment .comment-body:hover,
        .comment:hover .comment-respond{
          /*border: solid 1px rgba(0,0,0,0.4);*/
          /*box-shadow: 4px 5px 3px rgba(0,0,0,0.07);*/
          }
          
        .comment .comment-edge{
          position: absolute;
          top: 20px;
          left: -14px;
          overflow: hidden;
          width: 14px;
          height: 14px;
          }
          .comment-edge > div{
            background-color: #fff;
            border: solid 1px rgba(0,0,0,0.2);
            width: 18px;
            height: 18px;
            transform: skew(45deg);
            -ms-transform: skew(45deg);
            -webkit-transform: skew(45deg);
            margin: 0 0 0 8px;
            }
          .comment-body:hover .comment-edge > div{
            border: solid 1px rgba(0,0,0,0.4);
            }
            
        .comment .comment-author{
          line-height: 1.5;
          font-weight: 400;
          }
        .comment .comment-user{
            margin-bottom: 4px;
            font-size: 12px;
            color: #303133;
            font-weight: 400;
            text-transform: uppercase;
          }
        .comment .comment-user a{
          text-decoration: none;
          }
        .comment .comment-text{
          margin-left: 150px;
          margin-bottom: 8px;
          font-size: 13px;
          }
        .comment .comment-date{
          font-size: 11px;
          font-weight: 400;
          margin-bottom: 15px;
          margin-left: 150px;
          color: #303133;
            text-transform: uppercase;
          }
        .comment .comment-reply a,
        #cancel-comment-reply-link{
          font-size: 10px !important;
          display: inline-block;
          font-family: arial;
          background: #f4f4f4;
          color: #aaa;
          letter-spacing: 0;
          padding: 0 9px;
          height: 18px;
          line-height: 18px;
          text-transform: uppercase;
          margin-left: 10px;
          }
        .comment .comment-respond{
          border: solid 1px rgba(0,0,0,0.2);
          padding: 17px 25px 17px 20px;
          margin: -15px 0 40px;
          }

        .comment-reply{

        }
        .comment-body:hover .comment-reply{
          display: inline-block;
        }
  

      .commentlist .children{
        margin-left: 30px;
        }
      .children .comment-edge{
        top: -10px;
        left: 14px;
        width: 19px;
        height: 10px;
        }
      .children .comment-edge > div{
        width: 18px;
        height: 18px;
        transform: rotate(45deg);
        -ms-transform: rotate(45deg);
        -webkit-transform: rotate(45deg);
        margin: 4px 0 0 0;
        }

.section-comment {
  margin-top: 67px;
}

.comments-list {
  padding-top: 44px;
}

.comments-list .children {
  margin-left: 125px;
}

.comments-list .comment {
  margin-bottom: 65px;
  padding-left: 68px;
  list-style: none;
}

.comments-list .comment-face {
  position: absolute;
  top: -25px;
  left: 0;
  width: 80px;
}

.comments-list .comment-inner {
  padding: 37px 39px 20px 100px;
  border: 1px solid #eee;
}

.comments-list .comment-header {
  margin-bottom: 22px;
  line-height: 1;
}

.comments-list .comment-author {
  display: block;
  margin-bottom: 7px;
  font: 700 14px Montserrat;
  text-transform: uppercase;
  color: #333;
}

.comments-list .comment-datetime {
  font-size: 11px;
  font-style: italic;
  letter-spacing: .09em;
}

.comments-list .comment-btn {
  position: absolute;
  top: 4px;
  right: 0;
  font: 11px Montserrat;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: #777;
}

.comments-list .comment-btn .icon {
  display: inline-block;
  margin-top: -3px;
  font-size: 17px;
  vertical-align: middle;
}

/*03  Blog form */
.section-comment .ui-title-inner-2, .section-reply-form .ui-title-inner-2 {
  position: relative;
  display: inline-block;
  margin-bottom: 32px;
  padding-top: 15px;
  text-transform: uppercase;
}

.section-comment .ui-title-inner-2:before, .section-reply-form .ui-title-inner-2:before {
  position: absolute;
  top: 0;
  right: 0;
  display: block;
  width: 50px;
  height: 2px;
  content: '';
  background-color: #333;
}

.section-reply-form {
  padding-top: 33px;
}

.form-reply {
  margin-top: 0;
}

/*04 Other */
.page-link {
  display: inline-block;
  padding-bottom: 7px;
  font-family: Montserrat;
  font-size: 11px;
  -webkit-transition: all .3s;
  transition: all .3s;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: #777;
  border-bottom: 2px solid transparent;
}

.page-link:hover {
  color: #333;
}

.b-pricing {
  position: relative;
  min-height: 542px;
  padding: 50px 61px 58px;
  vertical-align: bottom;
  border: 1px solid #eee;
}

.b-pricing:before {
  position: absolute;
  top: 0;
  right: 11px;
  left: 11px;
  display: block;
  height: 5px;
  content: '';
  opacity: 0;
}

.b-pricing__title {
  float: left;
  font-size: 16px;
  font-weight: 400;
  text-transform: uppercase;
}

.b-pricing__title .icon {
  display: block;
  margin-bottom: 11px;
  font-size: 32px;
  color: #777;
}

.b-pricing__description {
  margin-top: 55px;
  margin-bottom: 61px;
  letter-spacing: .025em;
}

.b-pricing__description li {
  margin-bottom: 12px;
}

.b-pricing.active:before {
  opacity: 1;
}

.b-pricing-price {
  float: right;
  margin-top: 7px;
  text-align: right;
  color: #333;
}

.b-pricing-price__number {
  font: 40px Montserrat;
  text-transform: uppercase;
}

.b-pricing-price__title {
  display: block;
  margin-top: 3px;
  margin-right: 3px;
  font: italic 11px Merriweather;
  letter-spacing: .08em;
}

.b-progress-list {
  position: relative;
  margin-right: -35px;
  margin-left: -100px;
}
.b-progress-list.list-unstyled {
  list-style: none;
  padding-left: 0;
}

.b-progress-list:before, .b-progress-list:after {
  display: table;
  content: "";
}

.b-progress-list:after {
  clear: both;
}

.list-unstyled li {
  list-style: none;
}
.lt-ie8 .b-progress-list {
  zoom: 1;
}

.b-progress-list__item {
  position: relative;
  float: left;
  width: 25%;
  height: 160px;
  padding-left: 60px;
  text-align: center;
  border-right: 5px solid transparent;
}

.b-progress-list__inner {
  margin-right: 5px;
  padding: 30px 10px 20px;
  background-image: url(../images/content/bg/texture-1.png);
}

.b-progress-list__percent {
  display: block;
  font: 400 40px/1 Montserrat;
  text-transform: uppercase;
  color: #333;
}

.b-progress-list__name {
  display: block;
  font: italic 14px Merriweather;
  color: #333;
}

.b-progress-list_mod-a .b-progress-list__item {
  margin-top: 50px;
}

.social-net {
  margin-bottom: 0;
}

.social-net__item {
  padding-right: 20px;
  padding-left: 0;
}

.social-net__item:last-child {
  padding-right: 0;
}

.social-net__link {
  font-size: 12px;
  -webkit-transition: all .3s;
  transition: all .3s;
  color: #ccc;
}

.b-tabs-nav li {
  float: none;
}

.b-tabs-nav li > a {
  padding-right: 20px;
  font-size: 14px;
  font-weight: 600;
  line-height: 1;
  cursor: pointer;
  -webkit-transition: all .3s;
  transition: all .3s;
  text-transform: uppercase;
  opacity: .5;
  color: white;
  border-right: 4px solid transparent;
}

.b-tabs-nav li > a:hover {
  opacity: 1;
  border-right: 1px solid #fff;
}

.b-tabs-nav li.active > a {
  opacity: 1;
  border-right: 1px solid #fff;
}

.b-team {
  overflow: hidden;
  margin-right: 30px;
}

.b-team__name {
  margin-top: 0;
  margin-bottom: 2px;
  font-size: 16px;
  font-weight: 700;
  text-transform: uppercase;
}

.b-team__category {
  font-size: 11px;
  font-style: italic;
  letter-spacing: .1em;
  color: #333;
}

.b-team__description {
  position: relative;
  left: -100%;
  padding-top: 34px;
  padding-bottom: 30px;
  padding-left: 15px;
  -webkit-transition: all .3s;
  transition: all .3s;
  letter-spacing: .025em;
  border-bottom: 2px solid #333;
}

.b-team__media {
  position: relative;
  padding-right: 60px;
}

.b-team__header {
  margin-top: -25px;
  margin-left: 60px;
  padding-top: 57px;
  padding-bottom: 20px;
  padding-left: 40px;
  background-image: url(../images/content/bg/texture-1.png);
}

.b-team .social-net {
  position: absolute;
  top: 0;
  right: -60px;
  bottom: 25px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  width: 60px;
  -webkit-transition: all .3s;
  transition: all .3s;
  text-align: center;
  -ms-flex-pack: distribute;
      justify-content: space-around;
}

.b-team .social-net .social-net__link {
  margin: auto;
  font-size: 14px;
  color: #333;
}

.b-team .social-net .social-net__link:hover {
  color: #fff;
}

.b-team:hover .social-net {
  right: 0;
}

.b-team:hover .b-team__description {
  left: 0;
}

.b-team_rows {
  margin-right: 0;
  margin-bottom: 70px;
}

.section-title-page {
  position: relative;
  height: 350px;
  margin-top: 128px;
  text-align: center;
}

.b-title-page {
  display: inline-block;
  margin-top: 10px;
  padding-bottom: 4px;
  font-size: 50px;
  font-weight: 700;
  text-transform: uppercase;
  color: white;
  border-bottom: 3px solid #fff;
}

/* ======= TYPOGRAPHY ======= */
.typography-section {
  padding-top: 100px;
  padding-bottom: 100px;
}

.typography-section-border {
  border-bottom: 4px double #eee;
}

.typography-section__inner {
  margin-top: 67px;
}

.typography-title-number {
  padding-left: 85px;
  font-size: 16px;
  line-height: 1;
  color: #999;
  vertical-align: middle;
}

.typography__highlights {
  margin-bottom: 23px;
}

.typography-dropcap {
  margin-top: 44px;
}

.typography-blockquote {
  margin-top: 90px;
}

.typography-page .typography-title {
  margin-top: 0;
  margin-bottom: 30px;
  font-size: 30px;
  font-weight: 400;
  color: #777;
}

.typography-page .list {
  margin-bottom: 45px;
}

.typography-page .checkbox-group,
.typography-page .label-group {
  margin-left: 20px;
}

.typography-page .checkbox-group {
  margin-bottom: 50px;
}

.typography-page .ui-form {
  margin-bottom: 80px;
}

.typography-page .alert-group {
  margin-bottom: 55px;
}

.typography-page .table {
  margin-bottom: 65px;
}

.typography-page .typography-btn-group .btn {
  margin-right: 20px !important;
  margin-bottom: 40px;
}

.typography-page .typography-last-elem {
  margin-bottom: 0;
}

.table_primary-headings h1,
.table_primary-headings h2 {
  margin-bottom: 44px;
  line-height: 1;
  vertical-align: middle;
}

.table_primary-headings h3,
.table_primary-headings h4,
.table_primary-headings h5,
.table_primary-headings h6 {
  margin-bottom: 34px;
}

.wrap-title {
  margin-bottom: 56px;
}

.section-works__inner {
  position: relative;
}

.section-works__group {
  margin-bottom: 80px;
}

.section-works__title-group {
  margin-top: 0;
  margin-bottom: 20px;
  font: 700 50px/1 Montserrat;
  text-align: right;
  color: #eee;
}

.section-works .ui-subtitle-block {
  margin-bottom: 48px;
}

.section-works__nav {
  position: absolute;
  z-index: 20;
  top: 35px;
  left: 0;
}

.section-works__nav li > a {
  position: relative;
  padding-left: 40px;
  font: 11px Montserrat;
  -webkit-transition: all .3s;
  transition: all .3s;
  text-transform: uppercase;
  color: #777;
}

.section-works__nav li > a:focus {
  outline-style: none;
}

.section-works__nav li > a:before {
  position: absolute;
  top: -2px;
  left: 0;
  font: 17px/1 FontAwesome;
  content: '\f178';
  -webkit-transition: all .3s;
  transition: all .3s;
  opacity: 0;
  color: #777;
}

.section-works__nav li.active > a, .section-works__nav li:hover > a {
  color: #333;
}

.section-works__nav li.active > a:before, .section-works__nav li:hover > a:before {
  opacity: 1;
}

.section-works__btn {
  margin-top: 30px;
}

.section-works_mod-a {
  padding-top: 105px;
  padding-bottom: 100px;
}

.b-works {
  margin-bottom: 40px;
}

.b-works:before, .b-works:after {
  display: table;
  content: "";
}

.b-works:after {
  clear: both;
}

.lt-ie8 .b-works {
  zoom: 1;
}

.b-works__media {
  width: 450px;
}

.b-works__inner {
  position: relative;
  margin-top: 160px;
  letter-spacing: .025em;
}

.b-works__inner:after {
  position: absolute;
  top: 0;
  width: 210px;
  height: 2px;
  content: '';
  background-color: #333;
}

.b-works__title {
  margin-top: 0;
  margin-bottom: 25px;
  padding-top: 41px;
  font-size: 20px;
  letter-spacing: .04em;
  text-transform: uppercase;
}

.b-works__category {
  margin-top: 26px;
  font-size: 12px;
}

.b-works:nth-child(odd) .b-works__media {
  float: right;
}

.b-works:nth-child(odd) .b-works__inner {
  margin-right: 450px;
  margin-left: 100px;
  padding-right: 70px;
  text-align: right;
}

.b-works:nth-child(odd) .b-works__inner:after {
  right: -25px;
}

.b-works:nth-child(even) .b-works__media {
  float: left;
  margin-left: 45px;
}

.b-works:nth-child(even) .b-works__inner {
  margin-right: 80px;
  margin-left: 495px;
  padding-left: 70px;
}

.b-works:nth-child(even) .b-works__inner:after {
  left: -25px;
}

.b-works-details {
  padding-top: 105px;
  padding-bottom: 100px;
}

.b-works-details .ui-subtitle-block {
  margin-top: 0;
  margin-bottom: 10px;
  padding-left: 0;
}

.b-works-details .ui-title-block {
  letter-spacing: .105em;
  border-bottom: none;
}

.b-works-details .ui-title-inner {
  margin-top: 0;
  margin-bottom: 17px;
  line-height: 1;
}

.b-works-details .ui-decor-1 {
  display: block;
  width: 300px;
  margin-top: 20px;
  margin-bottom: 76px;
}

.b-works-details__description dt {
  width: 110px;
  margin-top: -3px;
  padding-right: 15px;
  font: 700 16px Montserrat;
  text-align: left;
  text-transform: uppercase;
  color: #333;
}

.b-works-details__description dd {
  margin-bottom: 25px;
  margin-left: 110px;
  letter-spacing: .025em;
}

.b-works-details__slider {
  margin-top: 60px;
  margin-bottom: 96px;
  padding-bottom: 100px;
}

/* ======= FOOTER ======= */
.footer {
  margin-bottom: 50px;
  padding-top: 32px;
  font-size: 12px;
  background-color: #111;
}

.footer .ui-decor-1 {
  width: 40px;
  height: 3px;
}

.footer__logo {
  display: block;
  margin-top: 3px;
  margin-bottom: 22px;
  padding-bottom: 22px;
}
.footer__info {
  margin-top: 22px;
}
.footer__contact {
  margin-bottom: 3px;
}

.footer__contact .icon {
  margin-right: 10px;
}

.footer__info {
  margin-right: 20px;
  line-height: 2.334;
  letter-spacing: .025em;
  color: #ccc;
}

.footer .copyright {
  padding: 47px 0 45px;
}

.footer .copyright__link {
  -webkit-transition: all .3s;
  transition: all .3s;
}

.footer .footer-section {
  margin-top: 65px;
}

.footer .footer-section__title {
  margin-bottom: 20px;
  padding-top: 33px;
  font-size: 12px;
  text-transform: uppercase;
  color: #ccc;
}

.footer .footer-section_list {
  padding-left: 43px;
}

.footer .footer-section_form {
  margin-left: -50px;
}

.footer .footer-form {
  position: relative;
}

.footer .footer-form__info {
  margin-bottom: 30px;
  padding-top: 3px;
  line-height: 1.83;
  letter-spacing: .025em;
}

.footer .footer-form__input {
  width: 100%;
  padding: 0 0 11px 5px;
  font: 11px Montserrat;
  letter-spacing: .1em;
  border: none;
  border-bottom: 1px solid #444;
  background-color: transparent;
}

.footer .footer-form__input::-webkit-input-placeholder {
  color: #777;
}

.footer .footer-form__input::-moz-placeholder {
  color: #777;
}

.footer .footer-form__input:-ms-input-placeholder {
  color: #777;
}

.footer .footer-form__btn {
  position: absolute;
  right: 0;
  bottom: -1px;
  height: 100%;
  padding: 0 4px 15px 7px;
  font-size: 19px;
  line-height: 1;
  color: #fff;
  border-width: 0 0 2px 0;
  border-bottom-style: solid;
  background-color: transparent;
}

.footer-list__link {
  display: block;
  margin-bottom: 7px;
  font-size: 12px;
  -webkit-transition: all .3s;
  transition: all .3s;
  letter-spacing: .025em;
  color: #777;
}

.footer-list__link:hover {
  color: #ccc;
}

/* ======= PRELOADER ========== */


.loader-text {
    position: absolute;
    left: 50%;
    top: 50%;
    color: #fff;
    z-index: 99999;
    font: 700 50px/1 Montserrat;
    text-transform: uppercase;
    width: 600px;
    text-align: center;
    margin-left: -300px;
    margin-top: -60px;
     -webkit-transition:  all .7s;
    transition: all  all .7s;
}


.screen-end .loader-text {
    opacity: 1;
    
}


.screen-start .loader-text {
    opacity: 0;
    display: none;
    
}

.sl-top{
    -webkit-transition:  all .7s;
    transition: all .7s;
    background-color:#333;
    position: fixed;
    top: 0%;
    left: 0;
    width: 100%;
    height: 90%;
    z-index: 9999;
    overflow: hidden;
    border: 100px solid #fff;
    border-bottom: 0;
}





.sl-bottom{
    -webkit-transition:  all .7s;
    transition: all  all .7s;
    background-color:#333;
    position: fixed;
    bottom: 0%;
    left: 0;
    width: 100%;
    height: 90%;
    z-index: 9999;
    overflow: hidden;
    border: 100px solid #fff;
    border-top: 0;
}

.screen-loader.screen-start .sl-top{
      top: -100%;    
}

.screen-loader.screen-start .sl-bottom{
      bottom: -100%;    
}


.loader-wrap{
    -webkit-transition:  all .7s;
    transition: all  all .7s;
    position: absolute;
    left: 50%;
    top: 50%;
    margin: -20px 0 0 -20px;
}


.screen-loader.screen-start .loader02{
    opacity: 0;
}

.screen-loader.screen-end .loader02{
    opacity: 1;
}

.sl-top .loader02 {
    top: 100%;
    margin: -28px auto;
    z-index: 999;
    position: absolute;
    left: 50%;
}


.sl-bottom .loader02 {
    top: 0;
    margin: -28px auto;
    z-index: 999;
    position: absolute;
    left: 50%;
}

.screen-loader.screen-end .loader-wrap{
  opacity: 1;    
}





.loading{
    position: absolute;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 99999;
    height: 10px;
    -webkit-transition:  all .7s;
    transition: all  all .7s;
}


.loading .loader_span {
    display: block;
    width: 100%;
    height: 8px;
    position: absolute;
    top: 0px;
    left: 0px;
    overflow: hidden;
}

.screen-start  .loader_right , .screen-start   .loader_left{
    width: 50% !important;
}

.loading-hide{
    opacity: 0;
}

.loading .loader_right{
    opacity: 0.8;
    background:#ae0063;
    position: absolute;
    right: 100%;
    z-index: 999;
    height: 10px;
    display: inline-block;
    left: 50%;
    width: 0%;
        -webkit-transition: all 1000ms cubic-bezier(0.745, 0.12, 0.32, 1.275);
    -moz-transition: all 1000ms cubic-bezier(0.745, 0.12, 0.32, 1.275);
    -o-transition: all 1000ms cubic-bezier(0.745, 0.12, 0.32, 1.275);
    transition: all 1000ms cubic-bezier(0.745, 0.12, 0.32, 1.275);
}
 .loading .loader_left {
      opacity: 0.8;
    width: 0%;
     background:#ae0063;
    position: absolute;
    z-index: 999;
      height: 10px;
    display: inline-block;
    right: 50%;
         -webkit-transition: all 1000ms cubic-bezier(0.745, 0.12, 0.32, 1.275);
    -moz-transition: all 1000ms cubic-bezier(0.745, 0.12, 0.32, 1.275);
    -o-transition: all 1000ms cubic-bezier(0.745, 0.12, 0.32, 1.275);
    transition: all 1000ms cubic-bezier(0.745, 0.12, 0.32, 1.275);
}


.loader-wrap > span{
        display: block;
}
.preloaderjs#page-preloader {
	background: rgba( 46, 46, 46, 0.99) !important;
}
#page-preloader {
	position: fixed;
	z-index: 100500;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: #fff;
}
#page-preloader .spinner {
	position: absolute;
	z-index: 1001;
	top: 50%;
	left: 50%;
	display: block;
	width: 100px;
	height: 100px;
	margin-top: -50px;
	margin-left: -50px;
	-webkit-animation: spin 2.5s infinite linear;
	animation: spin 2.5s infinite linear;
	border: 3px solid transparent;
	border-top-color: #e7e4d7;
	border-radius: 50%;
}
#page-preloader .spinner:before, #page-preloader .spinner:after {
	position: absolute;
	content: '';
	border-radius: 50%;
}
#page-preloader .spinner:before {
	top: 5px;
	right: 5px;
	bottom: 5px;
	left: 5px;
	-webkit-animation: spin 2s infinite linear;
	animation: spin 2s infinite linear;
	border: 3px solid transparent;
	border-top-color: #71383e;
}
#page-preloader .spinner:after {
	top: 15px;
	right: 15px;
	bottom: 15px;
	left: 15px;
	-webkit-animation: spin 1s infinite linear;
	animation: spin 1s infinite linear;
	border: 3px solid transparent;
	border-top-color: #efa96b;
}
@-webkit-keyframes spin {
 0% {
 -webkit-transform: rotate(0);
 transform: rotate(0);
}
 100% {
 -webkit-transform: rotate(360deg);
 transform: rotate(360deg);
}
}
 @keyframes spin {
 0% {
 -webkit-transform: rotate(0);
 transform: rotate(0);
}
 100% {
 -webkit-transform: rotate(360deg);
 transform: rotate(360deg);
}
}


.container-loader {
  display: flex;
  flex-flow: row wrap;
  justify-content: space-around; }

.container-loader .item {
  width: 280px;
  height: 280px;
  margin: 20px;
  background: #f6f9ff;
  border-radius: 3px;
  position: relative; }

.container-loader .number {
  position: absolute;
  top: 16px;
  right: 16px;
  color: #c3d8ff;
  font-size: 30px; }

.loader01 {
  width: 56px;
  height: 56px;
  border: 8px solid #0052ec;
  border-right-color: transparent;
  border-radius: 50%;
  position: relative;
  animation: loader-rotate 1s linear infinite;
  top: 50%;
  margin: -28px auto 0 auto; }
  .loader01:after {
    content: '';
    width: 8px;
    height: 8px;
    background: #0052ec;
    border-radius: 50%;
    position: absolute;
    top: -1px;
    left: 33px; }

@keyframes loader-rotate {
  0% {
    transform: rotate(0); }
  100% {
    transform: rotate(360deg); } }

.loader02 {
  width: 56px;
  height: 56px;
  border: 8px solid rgba(0, 82, 236, 0.25);
  border-top-color: #b67c5a;
  border-radius: 50%;
  position: relative;
  animation: loader-rotate 1s linear infinite;
  top: 50%;
  margin: -28px auto 0 auto; }

@keyframes loader-rotate {
  0% {
    transform: rotate(0); }
  100% {
    transform: rotate(360deg); } }

.loader03 {
  width: 56px;
  height: 56px;
  border: 8px solid transparent;
  border-top-color: #0052ec;
  border-bottom-color: #0052ec;
  border-radius: 50%;
  position: relative;
  animation: loader-rotate 1s linear infinite;
  top: 50%;
  margin: -28px auto 0 auto; }

@keyframes loader-rotate {
  0% {
    transform: rotate(0); }
  100% {
    transform: rotate(360deg); } }

.loader04 {
  width: 56px;
  height: 56px;
  border: 2px solid rgba(0, 82, 236, 0.5);
  border-radius: 50%;
  position: relative;
  animation: loader-rotate 1s ease-in-out infinite;
  top: 50%;
  margin: -28px auto 0 auto; }
  .loader04:after {
    content: '';
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #0052ec;
    position: absolute;
    top: -6px;
    left: 50%;
    margin-left: -5px; }

@keyframes loader-rotate {
  0% {
    transform: rotate(0); }
  100% {
    transform: rotate(360deg); } }

.loader05 {
  width: 56px;
  height: 56px;
  border: 4px solid #0052ec;
  border-radius: 50%;
  position: relative;
  animation: loader-scale 1s ease-out infinite;
  top: 50%;
  margin: -28px auto 0 auto; }

@keyframes loader-scale {
  0% {
    transform: scale(0);
    opacity: 0; }
  50% {
    opacity: 1; }
  100% {
    transform: scale(1);
    opacity: 0; } }

.loader06 {
  width: 56px;
  height: 56px;
  border: 4px solid transparent;
  border-radius: 50%;
  position: relative;
  top: 50%;
  margin: -28px auto 0 auto; }
  .loader06:before {
    content: '';
    border: 4px solid rgba(0, 82, 236, 0.5);
    border-radius: 50%;
    width: 67.2px;
    height: 67.2px;
    position: absolute;
    top: -9.6px;
    left: -9.6px;
    animation: loader-scale 1s ease-out infinite;
    animation-delay: 1s;
    opacity: 0; }
  .loader06:after {
    content: '';
    border: 4px solid #0052ec;
    border-radius: 50%;
    width: 56px;
    height: 56px;
    position: absolute;
    top: -4px;
    left: -4px;
    animation: loader-scale 1s ease-out infinite;
    animation-delay: 0.5s; }

@keyframes loader-scale {
  0% {
    transform: scale(0);
    opacity: 0; }
  50% {
    opacity: 1; }
  100% {
    transform: scale(1);
    opacity: 0; } }

.loader07 {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  position: relative;
  animation: loader-circles 1s linear infinite;
  top: 50%;
  margin: -8px auto 0 auto; }

@keyframes loader-circles {
  0% {
    box-shadow: 0 -27px 0 0 rgba(0, 82, 236, 0.05), 19px -19px 0 0 rgba(0, 82, 236, 0.1), 27px 0 0 0 rgba(0, 82, 236, 0.2), 19px 19px 0 0 rgba(0, 82, 236, 0.3), 0 27px 0 0 rgba(0, 82, 236, 0.4), -19px 19px 0 0 rgba(0, 82, 236, 0.6), -27px 0 0 0 rgba(0, 82, 236, 0.8), -19px -19px 0 0 #0052ec; }
  12.5% {
    box-shadow: 0 -27px 0 0 #0052ec, 19px -19px 0 0 rgba(0, 82, 236, 0.05), 27px 0 0 0 rgba(0, 82, 236, 0.1), 19px 19px 0 0 rgba(0, 82, 236, 0.2), 0 27px 0 0 rgba(0, 82, 236, 0.3), -19px 19px 0 0 rgba(0, 82, 236, 0.4), -27px 0 0 0 rgba(0, 82, 236, 0.6), -19px -19px 0 0 rgba(0, 82, 236, 0.8); }
  25% {
    box-shadow: 0 -27px 0 0 rgba(0, 82, 236, 0.8), 19px -19px 0 0 #0052ec, 27px 0 0 0 rgba(0, 82, 236, 0.05), 19px 19px 0 0 rgba(0, 82, 236, 0.1), 0 27px 0 0 rgba(0, 82, 236, 0.2), -19px 19px 0 0 rgba(0, 82, 236, 0.3), -27px 0 0 0 rgba(0, 82, 236, 0.4), -19px -19px 0 0 rgba(0, 82, 236, 0.6); }
  37.5% {
    box-shadow: 0 -27px 0 0 rgba(0, 82, 236, 0.6), 19px -19px 0 0 rgba(0, 82, 236, 0.8), 27px 0 0 0 #0052ec, 19px 19px 0 0 rgba(0, 82, 236, 0.05), 0 27px 0 0 rgba(0, 82, 236, 0.1), -19px 19px 0 0 rgba(0, 82, 236, 0.2), -27px 0 0 0 rgba(0, 82, 236, 0.3), -19px -19px 0 0 rgba(0, 82, 236, 0.4); }
  50% {
    box-shadow: 0 -27px 0 0 rgba(0, 82, 236, 0.4), 19px -19px 0 0 rgba(0, 82, 236, 0.6), 27px 0 0 0 rgba(0, 82, 236, 0.8), 19px 19px 0 0 #0052ec, 0 27px 0 0 rgba(0, 82, 236, 0.05), -19px 19px 0 0 rgba(0, 82, 236, 0.1), -27px 0 0 0 rgba(0, 82, 236, 0.2), -19px -19px 0 0 rgba(0, 82, 236, 0.3); }
  62.5% {
    box-shadow: 0 -27px 0 0 rgba(0, 82, 236, 0.3), 19px -19px 0 0 rgba(0, 82, 236, 0.4), 27px 0 0 0 rgba(0, 82, 236, 0.6), 19px 19px 0 0 rgba(0, 82, 236, 0.8), 0 27px 0 0 #0052ec, -19px 19px 0 0 rgba(0, 82, 236, 0.05), -27px 0 0 0 rgba(0, 82, 236, 0.1), -19px -19px 0 0 rgba(0, 82, 236, 0.2); }
  75% {
    box-shadow: 0 -27px 0 0 rgba(0, 82, 236, 0.2), 19px -19px 0 0 rgba(0, 82, 236, 0.3), 27px 0 0 0 rgba(0, 82, 236, 0.4), 19px 19px 0 0 rgba(0, 82, 236, 0.6), 0 27px 0 0 rgba(0, 82, 236, 0.8), -19px 19px 0 0 #0052ec, -27px 0 0 0 rgba(0, 82, 236, 0.05), -19px -19px 0 0 rgba(0, 82, 236, 0.1); }
  87.5% {
    box-shadow: 0 -27px 0 0 rgba(0, 82, 236, 0.1), 19px -19px 0 0 rgba(0, 82, 236, 0.2), 27px 0 0 0 rgba(0, 82, 236, 0.3), 19px 19px 0 0 rgba(0, 82, 236, 0.4), 0 27px 0 0 rgba(0, 82, 236, 0.6), -19px 19px 0 0 rgba(0, 82, 236, 0.8), -27px 0 0 0 #0052ec, -19px -19px 0 0 rgba(0, 82, 236, 0.05); }
  100% {
    box-shadow: 0 -27px 0 0 rgba(0, 82, 236, 0.05), 19px -19px 0 0 rgba(0, 82, 236, 0.1), 27px 0 0 0 rgba(0, 82, 236, 0.2), 19px 19px 0 0 rgba(0, 82, 236, 0.3), 0 27px 0 0 rgba(0, 82, 236, 0.4), -19px 19px 0 0 rgba(0, 82, 236, 0.6), -27px 0 0 0 rgba(0, 82, 236, 0.8), -19px -19px 0 0 #0052ec; } }

.loader08 {
  width: 20px;
  height: 20px;
  position: relative;
  animation: loader08 1s ease infinite;
  top: 50%;
  margin: -46px auto 0 auto; }

@keyframes loader08 {
  0%, 100% {
    box-shadow: -13px 20px 0 #b67c5a, 13px 20px 0 rgba(0, 82, 236, 0.2), 13px 46px 0 rgba(0, 82, 236, 0.2), -13px 46px 0 rgba(0, 82, 236, 0.2); }
  25% {
    box-shadow: -13px 20px 0 rgba(0, 82, 236, 0.2), 13px 20px 0 #b67c5a, 13px 46px 0 rgba(0, 82, 236, 0.2), -13px 46px 0 rgba(0, 82, 236, 0.2); }
  50% {
    box-shadow: -13px 20px 0 rgba(0, 82, 236, 0.2), 13px 20px 0 rgba(0, 82, 236, 0.2), 13px 46px 0 #b67c5a, -13px 46px 0 rgba(0, 82, 236, 0.2); }
  75% {
    box-shadow: -13px 20px 0 rgba(0, 82, 236, 0.2), 13px 20px 0 rgba(0, 82, 236, 0.2), 13px 46px 0 rgba(0, 82, 236, 0.2), -13px 46px 0 #b67c5a; } }

.loader09 {
  width: 10px;
  height: 48px;
  background: #0052ec;
  position: relative;
  animation: loader09 1s ease-in-out infinite;
  animation-delay: 0.4s;
  top: 50%;
  margin: -28px auto 0 auto; }
  .loader09:after, .loader09:before {
    content: '';
    position: absolute;
    width: 10px;
    height: 48px;
    background: #0052ec;
    animation: loader09 1s ease-in-out infinite; }
  .loader09:before {
    right: 18px;
    animation-delay: 0.2s; }
  .loader09:after {
    left: 18px;
    animation-delay: 0.6s; }

@keyframes loader09 {
  0%, 100% {
    box-shadow: 0 0 0 #0052ec, 0 0 0 #0052ec; }
  50% {
    box-shadow: 0 -8px 0 #0052ec, 0 8px 0 #0052ec; } }

.loader10 {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  position: relative;
  animation: loader10 0.9s ease alternate infinite;
  animation-delay: 0.36s;
  top: 50%;
  margin: -42px auto 0 auto; }
  .loader10:after, .loader10:before {
    content: '';
    position: absolute;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    animation: loader10 0.9s ease alternate infinite; }
  .loader10:before {
    left: -40px;
    animation-delay: 0.18s; }
  .loader10:after {
    right: -40px;
    animation-delay: 0.54s; }

@keyframes loader10 {
  0% {
    box-shadow: 0 28px 0 -28px #0052ec; }
  100% {
    box-shadow: 0 28px 0 #0052ec; } }

.loader11 {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  box-shadow: 0 40px 0 #b67c5a;
  position: relative;
  animation: loader11 0.8s ease-in-out alternate infinite;
  animation-delay: 0.32s;
  top: 50%;
  margin: -50px auto 0 auto; }
  .loader11:after, .loader11:before {
    content: '';
    position: absolute;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    box-shadow: 0 40px 0 #b67c5a;
    animation: loader11 0.8s ease-in-out alternate infinite; }
  .loader11:before {
    left: -30px;
    animation-delay: 0.48s; }
  .loader11:after {
    right: -30px;
    animation-delay: 0.16s; }

@keyframes loader11 {
  0% {
    box-shadow: 0 40px 0 #b67c5a; }
  100% {
    box-shadow: 0 20px 0 #b67c5a; } }

.loader12 {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  position: relative;
  animation: loader12 1s linear alternate infinite;
  top: 50%;
  margin: -50px auto 0 auto; }

@keyframes loader12 {
  0% {
    box-shadow: -60px 40px 0 2px #b67c5a, -30px 40px 0 0 rgba(0, 82, 236, 0.2), 0 40px 0 0 rgba(0, 82, 236, 0.2), 30px 40px 0 0 rgba(0, 82, 236, 0.2), 60px 40px 0 0 rgba(0, 82, 236, 0.2); }
  25% {
    box-shadow: -60px 40px 0 0 rgba(0, 82, 236, 0.2), -30px 40px 0 2px #b67c5a, 0 40px 0 0 rgba(0, 82, 236, 0.2), 30px 40px 0 0 rgba(0, 82, 236, 0.2), 60px 40px 0 0 rgba(0, 82, 236, 0.2); }
  50% {
    box-shadow: -60px 40px 0 0 rgba(0, 82, 236, 0.2), -30px 40px 0 0 rgba(0, 82, 236, 0.2), 0 40px 0 2px #b67c5a, 30px 40px 0 0 rgba(0, 82, 236, 0.2), 60px 40px 0 0 rgba(0, 82, 236, 0.2); }
  75% {
    box-shadow: -60px 40px 0 0 rgba(0, 82, 236, 0.2), -30px 40px 0 0 rgba(0, 82, 236, 0.2), 0 40px 0 0 rgba(0, 82, 236, 0.2), 30px 40px 0 2px #b67c5a, 60px 40px 0 0 rgba(0, 82, 236, 0.2); }
  100% {
    box-shadow: -60px 40px 0 0 rgba(0, 82, 236, 0.2), -30px 40px 0 0 rgba(0, 82, 236, 0.2), 0 40px 0 0 rgba(0, 82, 236, 0.2), 30px 40px 0 0 rgba(0, 82, 236, 0.2), 60px 40px 0 2px #b67c5a; } }



.thecube {
  width: 75px;
  height: 75px;
  margin: 0 auto;
  margin-top: 50px;
  position: relative;
  -webkit-transform: rotateZ(45deg);
  -moz-transform: rotateZ(45deg);
  -ms-transform: rotateZ(45deg);
  -o-transform: rotateZ(45deg);
  transform: rotateZ(45deg);
}
.thecube .cube {
  position: relative;
  -webkit-transform: rotateZ(45deg);
  -moz-transform: rotateZ(45deg);
  -ms-transform: rotateZ(45deg);
  -ms-transform: rotateZ(45deg);
  transform: rotateZ(45deg);
}
.thecube .cube {
  float: left;
  width: 50%;
  height: 50%;
  position: relative;
  -webkit-transform: scale(1.1);
  -moz-transform: scale(1.1);
  -ms-transform: scale(1.1);
  -ms-transform: scale(1.1);
  transform: scale(1.1);
}
.thecube .cube:before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #2796de;
  -webkit-animation: foldthecube 2.4s infinite linear both;
  -moz-animation: foldthecube 2.4s infinite linear both;
  -ms-animation: foldthecube 2.4s infinite linear both;
  -o-animation: foldthecube 2.4s infinite linear both;
  animation: foldthecube 2.4s infinite linear both;

  -webkit-transform-origin: 100% 100%;
  -moz-transform-origin: 100% 100%;
  -ms-transform-origin: 100% 100%;
  -o-transform-origin: 100% 100%;
  transform-origin: 100% 100%;
}
.thecube .c2 {
  -webkit-transform: scale(1.1) rotateZ(90deg);
  -moz-transform: scale(1.1) rotateZ(90deg);
  -ms-transform: scale(1.1) rotateZ(90deg);
  -o-transform: scale(1.1) rotateZ(90deg);
  transform: scale(1.1) rotateZ(90deg);
}
.thecube .c3 {
  -webkit-transform: scale(1.1) rotateZ(180deg);
  -moz-transform: scale(1.1) rotateZ(180deg);
  -ms-transform: scale(1.1) rotateZ(180deg);
  -o-transform: scale(1.1) rotateZ(180deg);
  transform: scale(1.1) rotateZ(180deg);
}
.thecube .c4 {
  -webkit-transform: scale(1.1) rotateZ(270deg);
  -moz-transform: scale(1.1) rotateZ(270deg);
  -ms-transform: scale(1.1) rotateZ(270deg);
  -o-transform: scale(1.1) rotateZ(270deg);
  transform: scale(1.1) rotateZ(270deg);
}
.thecube .c2:before {
  -webkit-animation-delay: 0.3s;
  -moz-animation-delay: 0.3s;
  -ms-animation-delay: 0.3s;
  -o-animation-delay: 0.3s;
  animation-delay: 0.3s;
}
.thecube .c3:before {
  -webkit-animation-delay: 0.6s;
  -moz-animation-delay: 0.6s;
  -ms-animation-delay: 0.6s;
  -o-animation-delay: 0.6s;
  animation-delay: 0.6s;
}
.thecube .c4:before {
  -webkit-animation-delay: 0.9s;
  -moz-animation-delay: 0.9s;
  -ms-animation-delay: 0.9s;
  -o-animation-delay: 0.9s;
  animation-delay: 0.9s;
}
@-webkit-keyframes foldthecube {
  0%,
    10% {
    -webkit-transform: perspective(140px) rotateX(-180deg);
    -moz-transform: perspective(140px) rotateX(-180deg);
    -ms-transform: perspective(140px) rotateX(-180deg);
    -o-transform: perspective(140px) rotateX(-180deg);
    transform: perspective(140px) rotateX(-180deg);
    opacity: 0;
  }
  25%,
    75% {
    -webkit-transform: perspective(140px) rotateX(0deg);
    -moz-transform: perspective(140px) rotateX(0deg);
    -ms-transform: perspective(140px) rotateX(0deg);
    -o-transform: perspective(140px) rotateX(0deg);
    transform: perspective(140px) rotateX(0deg);
    opacity: 1;
  }
  90%,
    100% {
    -webkit-transform: perspective(140px) rotateY(180deg);
    -moz-transform: perspective(140px) rotateY(180deg);
    -ms-transform: perspective(140px) rotateY(180deg);
    -o-transform: perspective(140px) rotateY(180deg);
    transform: perspective(140px) rotateY(180deg);
    opacity: 0;
  }
}
@keyframes foldthecube {
  0%,
    10% {
    -webkit-transform: perspective(140px) rotateX(-180deg);
    -moz-transform: perspective(140px) rotateX(-180deg);
    -ms-transform: perspective(140px) rotateX(-180deg);
    -o-transform: perspective(140px) rotateX(-180deg);
    transform: perspective(140px) rotateX(-180deg);
    opacity: 0;
  }
  25%,
    75% {
    -webkit-transform: perspective(140px) rotateX(0deg);
    -moz-transform: perspective(140px) rotateX(0deg);
    -ms-transform: perspective(140px) rotateX(0deg);
    -o-transform: perspective(140px) rotateX(0deg);
    transform: perspective(140px) rotateX(0deg);
    opacity: 1;
  }
  90%,
    100% {
    -webkit-transform: perspective(140px) rotateY(180deg);
    -moz-transform: perspective(140px) rotateY(180deg);
    -ms-transform: perspective(140px) rotateY(180deg);
    -o-transform: perspective(140px) rotateY(180deg);
    transform: perspective(140px) rotateY(180deg);
    opacity: 0;
  }
}


 .spinner {
	position: absolute;
	z-index: 1001;
	top: 50%;
	left: 50%;
	display: block;
	width: 100px;
	height: 100px;
	margin-top: -50px;
	margin-left: -50px;
	-webkit-animation: spin 2.5s infinite linear;
	animation: spin 2.5s infinite linear;
	border: 3px solid transparent;
	border-top-color: #a91605;
	border-radius: 50%;
}
.spinner:before,  .spinner:after {
	position: absolute;
	content: '';
	border-radius: 50%;
}
 .spinner:before {
	top: 5px;
	right: 5px;
	bottom: 5px;
	left: 5px;
	-webkit-animation: spin 2s infinite linear;
	animation: spin 2s infinite linear;
	border: 3px solid transparent;
	border-top-color: red;
}
 .spinner:after {
	top: 15px;
	right: 15px;
	bottom: 15px;
	left: 15px;
	-webkit-animation: spin 1s infinite linear;
	animation: spin 1s infinite linear;
	border: 3px solid transparent;
	border-top-color: #549404;
}
@-webkit-keyframes spin {
 0% {
 -webkit-transform: rotate(0);
transform: rotate(0);
}
100% {
 -webkit-transform: rotate(360deg);
transform: rotate(360deg);
}
}
@keyframes spin {
 0% {
 -webkit-transform: rotate(0);
transform: rotate(0);
}
100% {
 -webkit-transform: rotate(360deg);
transform: rotate(360deg);
}
}





.section-first__subtitle {
  margin-bottom: 28px;
  font-size: 14px;
  font-weight: 700;
  font-style: italic;
  letter-spacing: .1em;
  color: #777;
}

.section-first__img {
  position: relative;
  display: inline-block;
  vertical-align: top;
}

.section-first__img:first-child:before, .section-first__img:first-child:after {
  position: absolute;
  z-index: 1;
  content: '';
}

.section-first__img:first-child:after {
  bottom: -25px;
  width: 260px;
  height: 290px;
}

.section-first__img:first-child:before {
  bottom: -70px;
  left: -180px;
  width: 300px;
  height: 100px;
  background-image: url(../images/content/bg/texture-1.png);
}

.section-first__img:first-child img {
  position: relative;
  z-index: 10;
}

.section-first__title-link {
  margin-top: 50px;
  margin-bottom: 12px;
}

.section-first__title-link .btn {
  font-size: 16px;
  letter-spacing: 0;
  color: #333;
}

.section-first__carousel {
  margin-right: -40px;
  margin-left: -80px;
  padding-bottom: 41px;
}

.section-first__carousel-item {
  padding-bottom: 70px;
  padding-left: 80px;
}

.section-first_type-1 {
}

.section-first_type-1 .section-first__main {
  padding-right: 20px;
}

.section-first_type-1 .section-first__inner {
  margin-top: 47px;
  padding-left: 166px;
}

.section-first_type-1 .section-first__inner .ui-decor-1 {
  display: block;
  margin-bottom: 22px;
}

.section-first_type-1 .section-first__img-group {
  margin-top: -4px;
  margin-left: -12px;
}

.section-first_type-1 .section-first__img {
  position: relative;
  display: inline-block;
  vertical-align: top;
}

.section-first_type-1 .section-first__img:first-child:after {
  right: -150px;
}

.section-first_type-1 .section-first__img:last-child {
  margin-top: 140px;
  margin-left: 35px;
}

.section-first_type-2 {
  padding-top: 95px;
  padding-bottom: 180px;
}

.section-first_type-2 .ui-title-inner-2 {
  margin-bottom: 70px;
  padding-left: 100px;
}

.section-first_type-2 .ui-title-bg {
  margin-top: 116px;
}

.section-first_type-2 .ui-title-bg:before {
  top: auto;
  bottom: -20px;
}

.section-first_type-2 .section-first__header {
  text-align: right;
}

.section-first_type-2 .section-first__inner {
  margin-top: 10px;
  padding-left: 50px;
}

.section-first_type-2 .section-first__inner .btn {
  margin-top: 54px;
}

.section-first_type-2 .section-first__img:first-child:after {
  right: -108px;
}

.section-first_type-3 {
  padding-top: 108px;
  padding-bottom: 11px;
}

.section-first_type-3 .ui-title-inner-2 {
  margin-bottom: 4px;
}

.section-first_type-3 .ui-title-bg {
  margin-top: 116px;
}

.section-first_type-3 .ui-title-bg:before {
  top: auto;
  bottom: -20px;
}

.section-first_type-3 .section-first__header {
  text-align: right;
}

.section-first_type-3 .section-first__inner {
  margin-top: -15px;
  padding-left: 70px;
}

.section-first_type-3 .section-first__img:first-child:after {
  right: -40px;
  bottom: -40px;
}

.section-social-net .ui-title-block {
  padding-left: 58px;
}

.section-social-net__list {
  position: relative;
  z-index: 100;
  margin-top: 50px;
  margin-bottom: -10px;
}

.section-social-net__item {
  vertical-align: top;
}

.section-social-net__link {
  display: block;
  margin-bottom: 20px;
  padding: 10px 50px;
  font: 10px Montserrat;
  -webkit-transition: all .3s;
  transition: all .3s;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: #777;
  background-color: #eee;
}

.section-social-net__link:hover , .active .section-social-net__link {
  margin-bottom: 0;
  padding-top: 20px;
  padding-bottom: 20px;
  color: #333;
  background-color: #0060c1;
}

.widget ul {
  padding-bottom: 20px;
  padding-left: 0px;
}

/* Sidebars and Widgets  */

  .widget{
    padding-top: 0;
    margin-bottom: 30px;
    list-style: none;
    padding-bottom: 20px;
    }
  .col-md-6 > .widget, .col-md-3 > .widget  {
    margin-bottom: 0px;
    padding-bottom: 0px;
  }
  .col-md-6 ul {
    margin: 0;
    padding: 0;
  }
  .widget:last-child{
    border-bottom: none;
    }
  .widget li{
    list-style: none;
    line-height: 30px;
    }
  .widget a{
    text-decoration: none;
    color: #FFF;
    }
  .widget a:hover{
    color: #000;
    }
  .widget img{
    max-width: 100%;
    height: auto;
    }
  .widget:last-child{
    }
  .widgettitle{
    margin-top: 0;
    padding-bottom: 15px;
    font-size: 14px;
    letter-spacing: .05em;
    text-transform: uppercase;
    }
    .widget #wp-calendar a {
      color: #222;
      text-decoration: underline;
    }
    ul.sub-menu{
      padding-left: 0px;
      padding-bottom: 2px;
    }

    .footer .widgettitle {
      margin-bottom: 20px;
      font-size: 12px;
      text-transform: uppercase;
      color: #ccc;
      font-weight: 700;
      font-family: Montserrat;
    }
    .footer .widgettitle:before{
      content: none;
    }
    .footer .widget ul {
      padding-left: 0;
    }
    .footer .widget a:hover {
      color: #ccc;
    }

  /** Widgets: Recent posts **/
  .widget_recent_entries li{
    display: block;
    padding: 0px;
    margin-bottom: 6px;
    position: relative;
    line-height: 23px;
    }
  .widget_recent_entries li:last-child{
    margin-bottom: 0;
    border-bottom: none;
    }
  .widget_recent_entries li:before{
    }
  .widget a,
  .widget_recent_entries li a{
    font-size: 13px;
    font-weight: 400;
    color: #777;
    line-height: 23px;
    margin-bottom: 0 !important;
    }
  .widget_recent_entries .post-date{
    font-size: 11px;
    }
  .widget_recent_entries .post-date:before {
    content: "";
    display: inline-block;
    width: 6px;
    height: 6px;
    background-color: #BE967E;
    margin-right: 9px;
    border-radius: 20px;
    }       
      
  /** Widgets: Recent posts, Categories, Archive, Pages, Most liked posts, Nav menu */
  
  .widget_categories,
  .widget_archive,
  .widget_pages,
  .widget_mostlikedposts,
  .widget_nav_menu{
    }
  .widget_categories li,
  .widget_archive li,
  .widget_pages li,
  .widget_mostlikedposts li,
  .widget_nav_menu li{
    display: block;
    position: relative;
    }
  .widget_categories a,
  .widget_archive a,
  .widget_pages a,
  .widget_mostlikedposts a,
  .widget_nav_menu a{
    border-bottom: none;
    padding: 0px;
    position: relative;
    line-height: 23px;
    font-size: 13px;
    color: #777777;
    }
  .widget_recent_entries a:hover,
  .widget_categories a:hover,
  .widget_archive a:hover,
  .widget_pages a:hover,
  .widget_mostlikedposts a:hover,
  .widget_nav_menu a:hover,
  .widget a:hover,{
    color: #000;
    }
  .widget_categories li:first-child,
  .widget_archive li:first-child,
  .widget_pages li:first-child,
  .widget_mostlikedposts li:first-child,
  .widget_nav_menu li:first-child{
    }
  .widget_recent_entries li:last-child,
  .widget_categories li:last-child,
  .widget_archive li:last-child,
  .widget_pages li:last-child,
  .widget_mostlikedposts li:last-child,
  .widget_nav_menu li:last-child{
    margin-bottom: 0;
    border-bottom: none;
    }
  .widget_nav_menu .current-menu-item{
    font-weight: 600;
    }
  .widget .children{
    }
  .widget .children li{
    border-bottom: none;
    display: block;
    position: relative;
    }
  .widget .children li a, .widget .children li {
    font-weight: 300!important;
  }



  /** Widget: TAG CLOUD **/
  
  .widget_tag_cloud{
    text-align: left;
    }
  .widget_tag_cloud .tagcloud:after{
    content: " ";
    clear: both;
    display: block;
    }
  .widget_tag_cloud .tagcloud a{
      float: left;
      margin-right: 8px;
      margin-bottom: 8px!important;
      padding: 10px 18px 7px;
      font-size: 10px!important;
      font-style: italic;
      -webkit-transition: all .3s;
      transition: all .3s;
      letter-spacing: .1em;
      text-transform: uppercase;
      color: #333;
      border: 1px solid #eee;
    }
  .widget_tag_cloud .tagcloud a:hover{
      background-color: #0060c1;
    }


  /** Widget: TEMP IMAGES **/
  
  .widget_tempimages > div a{
    display: block;
    float: left;
    width: 29.33%;
    padding-bottom: 29.33%;
    background-size: cover;
    background-position: center;
    margin: 0 4% 4% 0;
    }


.widget .ui-decor-1 {
  width: 45px;
}

.widget h2 {
  margin-top: 20px;
  padding-bottom: 15px;
  font-size: 14px;
  letter-spacing: .05em;
  text-transform: uppercase;
}

.widget h2:before, .widgettitle:before {
  content: "";
  margin-top: -20px;
  position: absolute;
  width: 42px;
  display: inline-block;
  height: 2px;
  background-color: #333;
}

.l-sidebar .form-sidebar {
  position: relative;
  margin-bottom: 43px;
  background-color: #f4f4f4;
}

.l-sidebar .form-sidebar__input {
  width: 100%;
  margin-bottom: 0;
  padding: 7px 40px 5px 20px;
  border: none;
  background-color: transparent;
}

.l-sidebar .form-sidebar__input::-webkit-input-placeholder {
  color: #777;
}

.l-sidebar .form-sidebar__input::-moz-placeholder {
  color: #777;
}

.l-sidebar .form-sidebar__input:-ms-input-placeholder {
  color: #777;
}

.l-sidebar .form-sidebar__btn {
  position: absolute;
  top: 0;
  right: 5px;
  width: 30px;
  height: 100%;
  line-height: 1;
  text-align: center;
  border: none;
  background-color: transparent;
}

.l-sidebar .form-sidebar__btn .icon {
  font-size: 16px;
}

.widget-list {
  margin-bottom: 37px;
}

.widget-list__link {
  display: block;
  padding-left: 10px;
  -webkit-transition: all .3s;
  transition: all .3s;
  letter-spacing: .03em;
  color: #333;
}

.widget-list__link:hover {
  box-shadow: -1px 1px 2px 0 #333;
}

.widget-list__link .badge {
  font-size: 12px;
  color: #999;
}

.widget-list__link .badge:before {
  content: '[';
}

.widget-list__link .badge:after {
  content: ']';
}

.widget-list .widget-list__item {
  padding-bottom: 10px;
}

.post-widget {
  margin-top: 10px;
  margin-bottom: 30px;
  padding-bottom: 30px;
  padding-left: 10px;
  border-bottom: 1px solid #eee;
}

.post-widget:first-child {
  margin-top: 14px;
}

.post-widget:last-child {
  margin-bottom: 53px;
}

.post-widget__media {
  float: left;
  margin-right: 18px;
}

.post-widget__title {
  display: block;
  margin-bottom: 11px;
  font-size: 12px;
  font-weight: 400;
  line-height: 1.83;
  color: #333;
}

.post-widget__date {
  font-size: 11px;
  font-style: italic;
  letter-spacing: .1em;
  color: #333;
}

.list-tags {
  margin-right: -8px;
  margin-left: 11px;
}

.list-tags:before, .list-tags:after {
  display: table;
  content: "";
}

.list-tags:after {
  clear: both;
}

.lt-ie8 .list-tags {
  zoom: 1;
}

.list-tags__link {
  float: left;
  margin-right: 8px;
  margin-bottom: 8px;
  padding: 10px 18px 7px;
  font-size: 10px;
  font-style: italic;
  -webkit-transition: all .3s;
  transition: all .3s;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: #333;
  border: 1px solid #eee;
}



.block-revealer__element {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: #000;
	pointer-events: none;
	opacity: 0;
}

 .revealfx{
    
   	opacity: 0; 
}


 .revealfx.block-revealer{
    opacity: 1;
}


.scrollme-wrap{
    position: relative;
    min-height: 400px;
}


.scroll-mac1{
    position: relative;
    left: 0;
    top: 0;
    z-index: 7;
}


.scroll-mac1 img{
    margin: 0 auto;
}

.scroll-mac2{
    position: absolute;
    left: 0;
    top: 55px;
    z-index: 3;
}



.scroll-mac3{
    position: absolute;
    right: 0;
    top: 55px;
    z-index: 4;
}


.hover {
    height: 350px;
    width: 200px;
}


/* Typed cursor */

 .typed-cursor{
            opacity: 1;
            font-weight: 100;
            -webkit-animation: blink 0.7s infinite;
            -moz-animation: blink 0.7s infinite;
            -ms-animation: blink 0.7s infinite;
            -o-animation: blink 0.7s infinite;
            animation: blink 0.7s infinite;
        }
        @-keyframes blink{
            0% { opacity:1; }
            50% { opacity:0; }
            100% { opacity:1; }
        }
        @-webkit-keyframes blink{
            0% { opacity:1; }
            50% { opacity:0; }
            100% { opacity:1; }
        }
        @-moz-keyframes blink{
            0% { opacity:1; }
            50% { opacity:0; }
            100% { opacity:1; }
        }
        @-ms-keyframes blink{
            0% { opacity:1; }
            50% { opacity:0; }
            100% { opacity:1; }
        }
        @-o-keyframes blink{
            0% { opacity:1; }
            50% { opacity:0; }
            100% { opacity:1; }
        }