/* Vic - korsvs@gmail.com */

html {
    /*overflow-y: scroll;*/
    height: 100%;
    font-size: 10px;
}
body {
    /*overflow-y: scroll;*/
    height: 100%;
    vertical-align:baseline;
    font-size: 14px;
    background-color: #dbdee0;/*#f1f1f1;*/
    font-family: Arial, Helvetica, sans-serif;
}
body.form-page {
    height: auto;
}
.wrapper {
    /*min-height: 95%;*/
    min-height: 99.5%;
    height: auto!important;
    height: 100%;
    margin-bottom: -40px;
}

/******************************************/
/*fonts*/
    /*light*/
@font-face {
    font-family: 'Roboto Condensed';
    font-style: normal;
    font-weight: 300;
    src: local('Roboto Condensed Light'), local('RobotoCondensed-Light'),
         url('../fonts/RobotoCondensed-Light.woff2') format('woff2'),
         url('../fonts/RobotoCondensed-Light.woff') format('woff');
}
    /*normal*/
@font-face {
    font-family: 'Roboto Condensed';
    font-style: normal;
    font-weight: 400;
    src: local('Roboto Condensed'), local('RobotoCondensed-Regular'),
         url('../fonts/RobotoCondensed-Regular.woff2') format('woff2'),
         url('../fonts/RobotoCondensed-Regular.woff') format('woff');
}
    /*bold*/
@font-face {
    font-family: 'Roboto Condensed';
    font-style: normal;
    font-weight: 700;
    src: local('Roboto Condensed Bold'), local('RobotoCondensed-Bold'),
         url('../fonts/RobotoCondensed-Bold.woff2') format('woff2'),
         url('../fonts/RobotoCondensed-Bold.woff') format('woff');
}
    /*italic*/
@font-face {
    font-family: 'Roboto Condensed';
    font-style: italic;
    font-weight: 300;
    src: local('Roboto Condensed Light Italic'), local('RobotoCondensed-LightItalic'),
         url('../fonts/RobotoCondensed-LightItalic.woff2') format('woff2'),
         url('../fonts/RobotoCondensed-LightItalic.woff') format('woff');
}
@font-face {
    font-family: 'Roboto Condensed';
    font-style: italic;
    font-weight: 400;
    src: local('Roboto Condensed Italic'), local('RobotoCondensed-Italic'),
         url('../fonts/RobotoCondensed-Italic.woff2') format('woff2'),
         url('../fonts/RobotoCondensed-Italic.woff') format('woff');
}
@font-face {
    font-family: 'Roboto Condensed';
    font-style: italic;
    font-weight: 700;
    src: local('Roboto Condensed Bold Italic'), local('RobotoCondensed-BoldItalic'),
         url('../fonts/RobotoCondensed-BoldItalic.woff2') format('woff2'),
         url('../fonts/RobotoCondensed-BoldItalic.woff') format('woff');
}

/******************************************/
/*helper style*/
.f-bold {font-weight:bold !important}
.f-italic {font-style:italic !important}
.nm {margin:0 !important}
.no-mt {margin-top: 0 !important;}
.no-mb {margin-bottom: 0 !important;}
.no-mr {margin-right: 0 !important;}
.mb-10 {margin-bottom: 10px !important}
.mb-20 {margin-bottom: 20px !important}
.mt-10 {margin-top: 10px !important}
.mt-20 {margin-top: 20px !important}
.ml-20 {margin-left: 20px !important}
.mr-20 {margin-right: 20px !important}
.no-bg {background:none !important}
.no-shadow {
    -webkit-box-shadow: none !important;
    box-shadow: none !important;
}
.width-inherit {
    width: inherit !important;
}
.orange {
    color: #E88129;
    color: rgba(232,129,41,.99);
}
.bg-orange {
    background-color: #E88129 !important;
    background-color: rgba(232,129,41,.99) !important;
}
.bg {
    padding: 15px;
}

/******************************************/
/*shtick style*/
::selection {
    background: #7a7a7a;
    color: #fff;
    text-shadow: -1px -1px 0 #222;
}
/*noinspection CssInvalidPseudoSelector*/
*::-webkit-scrollbar {
    width: 8px;
    height: 8px;
}
*::-webkit-scrollbar-thumb {
    border-radius: 10px;
    background-color: rgba(0,0,0,0.5);
    -webkit-box-shadow: inset 0 0 0 1px rgb(235,235,235);
}
*::-webkit-scrollbar-thumb:hover {
    background-color: rgba(0,0,0,.6);
    box-shadow: inset 1px 1px 1px rgba(255,255,255,.37)
}

*::-webkit-scrollbar-thumb:active {
    background-color: rgba(0,0,0,.75);
    box-shadow: inset 1px 1px 3px rgba(255,255,255,.5)
}
/*new*/
::-webkit-scrollbar-thumb {
    background-color: rgba(0,0,0,.2);
    background-clip: padding-box;
    /*border: solid transparent;*/
    border-width: 1px 1px 1px 6px;
    min-height: 28px;
    padding: 100px 0 0;
    box-shadow: inset 1px 1px 0 rgba(0,0,0,.1),inset 0 -1px 0 rgba(0,0,0,.07);
}
::-webkit-scrollbar-thumb:horizontal {
    border-width: 6px 1px 1px;
    padding: 0 0 0 100px;
    box-shadow: inset 1px 1px 0 rgba(0,0,0,.1),inset -1px 0 0 rgba(0,0,0,.07)
}
::-webkit-scrollbar-thumb:hover {
    background-color: rgba(0,0,0,.4);
    box-shadow: inset 1px 1px 1px rgba(0,0,0,.25)
}
::-webkit-scrollbar-thumb:active {
    background-color: rgba(0,0,0,0.5);
    box-shadow: inset 1px 1px 3px rgba(0,0,0,0.35)
}
a:link{-webkit-tap-highlight-color:#FFBF00;}
.trans{
        -o-transition: all 0.3s;
      -moz-transition: all 0.3s ease;
   -webkit-transition: all 0.3s ease;
           transition: all 0.3s ease;
}

/******************************************/
/*min viewport width*/
.container {
    min-width: 320px !important;
        -o-transition: width ease-in-out 0.3s;
      -moz-transition: width ease-in-out 0.3s;
   -webkit-transition: width ease-in-out 0.3s;
           transition: width ease-in-out 0.3s;
    background-color: #fff;
    box-shadow: 0 1px 2px rgba(0,0,0,.1);
}

/*video*/
.responsive-video {
    position: relative;
    padding-bottom: 56.25%;
    padding-top: 60px; overflow: hidden;
}
.responsive-video iframe,
.responsive-video object,
.responsive-video embed {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

/******************************************/
/*typography*/

a {
    color: #0071BA;
    color: rgba(0, 113, 186,.99);
    border-color: #D7E6F1;
    border-color: rgba(0,96,160,.15);
    border-bottom-width: 1px;
    border-bottom-style: solid;
    -webkit-transition-property: border-bottom, border-color, background, color;
    -moz-transition-property: border-bottom, border-color, background, color;
    -o-transition-property: border-bottom, border-color, background, color;
    transition-property: border-bottom, border-color, background, color;
    -webkit-transition-duration: 0.3s;
    -moz-transition-duration: 0.3s;
    -o-transition-duration: 0.3s;
    transition-duration: 0.3s;
    -webkit-transition-timing-function: ease-out;
    -moz-transition-timing-function: ease-out;
    -o-transition-timing-function: ease-out;
    transition-timing-function: ease-out;
    text-decoration:none;
}
.wrapper a:hover,
.wrapper a:focus,
footer a:hover,
footer a:focus,
.breadcramb a:hover,
.breadcramb a:focus {
    /*color: #70a6ca;*/
    /*color: rgba(112, 166, 202, 0.99);*/
    color: #0071BA;
    color: rgba(0, 113, 186,.99);
    border-color: #0082d6;
    border-color: rgba(0, 130, 214,.99);
    text-decoration:none;
}
a:visited {
    /*color: #8000a0;*/
    color: #52277C;
    /*color: rgba(128, 0, 160, .99);*/
    color: rgba(82, 39, 124, 0.99);
    border-color: #B75DD2;
    border-color: rgba(128, 0, 160, 0.45);
}
a:visited:hover {
    color: #85319A;
    color: rgba(133, 49, 154, 0.9);
    border-color: #8000A0;
    border-color: rgba(128, 0, 160, 0.99);
}
header a:visited,
header a:visited:hover,
header a:visited:focus,
footer a:visited,
footer a:visited:hover,
footer a:visited:focus,
.breadcramb a:visited,
.breadcramb a:visited:hover,
.breadcramb a:visited:focus ,
aside .more:visited,
aside .more:visited:focus {
    color: #0071BA;
    color: rgba(0, 113, 186,.99);
    border-color: #D7E6F1;
    border-color: rgba(0,96,160,.15);
}
.breadcramb a {
    border: none;
}
aside .more:visited:hover {
    border-bottom-style: none;
}
.navbar a,
a.logo,
.flexslider a {
    text-decoration:none !important;
    border-bottom-style: none;
}
.h1, .h2, .h3, .h4, .h5, .h6, h1, h2, h3, h4, h5, h6,
.lead,
time,
.contact p,
footer p,
.info,
.sky-form header {
    font-family: 'Roboto Condensed', Arial, Helvetica, sans-serif;
}

.h1, .h2, h1, h2 {
    font-weight: 300;
}
.h3, h3, .h4, .h5, .h6, h4, h5, h6 {
    font-weight: 400;
}
h1,.h1 { font-size: 3.6rem;}
h2,.h2 { font-size: 3rem;}
h3,.h3 { font-size: 2.4rem;}
h4,.h4 { font-size: 2.1rem;}
h5,.h5 { font-size: 1.8rem;}
h6,.h6 { font-size: 1.6rem;}
h1, h2 , h3 {color: #292929;/*#757575;*/}

h1 a, h2 a, h3 a, h4 a, h5 a, h6 a,
h1 a:hover, h2 a:hover, h3 a:hover, h4 a:hover, h5 a:hover, h6 a:hover,
h1 a:visited, h2 a:visited, h3 a:visited, h4 a:visited, h5 a:visited, h6 a:visited {
    /*color:#45666b;*/
    text-decoration:none !important;
    /*border-bottom: none !important;*/
}
a:hover h1,
a:focus h1,
a:hover h2,
a:focus h2,
a:hover h3,
a:focus h3,
a:hover h4,
a:focus h4,
a:hover h5,
a:focus h5,
a:hover h6,
a:focus h6 {
    color: #0071BA;
    color: rgba(0, 113, 186,.99);
}
p {
    font-size: 1.6rem;
}
/*.lead {
    font-weight: 400;
}*/
time {
    font-size: 1.1rem;
    color: #999;
}
aside time {
    display: block;
    text-align: right;
    margin-bottom: 5px;
}

/*thumbnail*/
.thumbnail {
    margin: 0 10px 0 0;
    border-radius: 0 !important;
    background-color: #F1F3F3 !important;
    background-color: rgba(241, 243, 243, 0.99) !important;
    border: 1px solid #ddd !important;
}
.gal .thumbnail {
    margin-bottom: 20px;
    margin-right: 0;
}
/*lightbox*/
.lb-data .lb-details {
    margin-top: 10px;
}
/*button*/
.button {
    position: relative;
    display: block;
    border: none !important;
}
.button {
    /*float: right;*/
    height: 39px;
    overflow: hidden;
    margin-bottom: 20px;
    padding: 0 25px;
    outline: none;
    border: 0;
    font: 300 15px/39px 'Roboto Condensed', Arial, Helvetica, sans-serif;
    text-decoration: none;
    color: #fff;
    cursor: pointer;
}
.button {
    background-color: #777F81;
    background-color: rgba(119, 127, 129, 0.99);
    text-shadow: 1px 1px #333, 1px 1px #333, 1px 1px 3px #333, 1px 1px 3px #333;
    opacity: 0.8;
    -o-transition: opacity 0.2s;
    -ms-transition: opacity 0.2s;
    -moz-transition: opacity 0.2s;
    -webkit-transition: opacity 0.2s;
    transition: opacity 0.2s;
}
.button:hover,
.button:focus {
    opacity: 1;
}
.button:visited,
.button:hover {
    color: #fff !important;
}
/*icon*/
[class^="icon-"],
[class*=" icon-"] {
    margin-right: 5px;
    text-shadow: none !important;
}
/*[required="required"] {*/
    /*border-color: #F1B1B8  !important;*/
    /*border-color: rgba(241, 177, 184, 0.97) !important;*/
/*}*/

/******************************************/
/*header*/
header {
    /*padding: 15px 0;*/
    padding-bottom: 20px;
}
.logo {
    text-indent: -999em;
    display: inline-block;
}
/*.calc_icon {*/
    /*width: 30px;*/
    /*height: 30px;*/
    /*margin-right: 5px;*/
    /*display: block;*/
    /*background: url(images/calc_icon.png) no-repeat;*/
    /*float: left;*/
/*}*/
/*.calc_link i,*/
/*.contact i {*/
    /*margin-right: 5px;*/
/*}*/
.contact p,
footer .contact p {
    font-weight: 300;
    font-size: 1.6rem;
    white-space: nowrap;
}
.contact p span.orange {
    font-size: 120%;
}
nav .contact a {
    border-bottom-style: solid;
}

/******************************************/
/*menu*/
.top-menu {
    background-color: transparent;
    border: none;
    border-radius: 0;
    white-space: nowrap;
    margin-bottom: 0;
}
.navbar .navbar-collapse {
    background-color: #6c8daf;/*#8A99A9;*/
    border: 0;
}
.navbar a.navbar-brand {
    height: auto;
    width: 190px;
    text-indent: -999em;
    padding-top: 0;
}
button.navbar-toggle {
    margin-top: 25px;
}
.navbar .navbar-toggle .icon-bar {
    background-color: #8A99A9;
}
.navbar .navbar-nav li a,
footer  nav a {
    font-family: 'Roboto Condensed', Arial, Helvetica, sans-serif;
}
.navbar .navbar-nav > li > a {
    font-size: 1.4rem;
    font-weight: 300;
    color: #fff;
    text-shadow: 1px 1px 0 #333;
}
.navbar .dropdown-menu > li > a {
    font-size: 1.5rem;
    font-weight: 300;
}
.navbar .navbar-nav > li > a:hover,
.navbar .navbar-nav > li > a:focus,
.navbar-default .navbar-nav > .active > a,
.navbar-default .navbar-nav > .active > a:hover,
.navbar-default .navbar-nav > .active > a:focus {
    color: #fff;
}
.navbar.navbar-nav > .open > a,
.navbar .navbar-nav > .open > a:hover,
.navbar .navbar-nav > .open > a:focus,
.navbar-default .navbar-nav > .open > a,
.navbar-default .navbar-nav > .open > a:hover,
.navbar-default .navbar-nav > .open > a:focus
/*.navbar-default .navbar-nav > .active > a,*/ {
    color: #666;
    text-shadow: 1px 1px 0 #fff;
    background-color: #e7e7e7;
}
nav.navbar .navbar-nav > li > a:hover,
nav.navbar .navbar-nav > li > a:focus {
    background-color: #CBD1D6;
    background-color: rgba(203, 209, 214, 0.83);
    -webkit-box-shadow: inset 0 3px 9px rgba(0, 0, 0, 0.28);
    box-shadow: inset 0 3px 9px rgba(0, 0, 0, 0.28);
}
.navbar-default .navbar-nav > .active > a {
    text-shadow: 1px 1px 0 #333;
    background-color: #CBD1D6;
    background-color: rgba(203, 209, 214, 0.83);
    -webkit-box-shadow: inset 0 3px 9px rgba(0, 0, 0, 0.28);
    box-shadow: inset 0 3px 9px rgba(0, 0, 0, 0.28);
}
.navbar-default .navbar-nav > .active > a:hover,
.navbar-default .navbar-nav > .active > a:focus {
    background-color: #CBD1D6;
    background-color: rgba(203, 209, 214, 0.83);
}
.dropdown-menu > li > a:hover,
.dropdown-menu > li > a:focus {
    color: #262626;
    text-shadow: 1px 1px 0 #fff;
    background-color: rgba(237, 238, 239, 0.8);
}
.navbar .contact {
    float: left;
    margin-top: 15px;
}
.navbar-default .navbar-toggle.collapsed {
    background-color: transparent;
}
.dropdown-menu>.active>a,
.dropdown-menu>.active>a:focus,
.dropdown-menu>.active>a:hover {
    background-color: #93ABBF;
    text-shadow: 1px 1px 0 #333;
}

/******************************************/
/*content*/
#content {
    margin-bottom: 40px;
}
#post-content {
    margin-top: -20px;
    margin-bottom: 20px;
}
#content .icons-ul {
    margin-left: 0;
}
#content .icons-ul li {
    margin-bottom: 5px;
}
#content ul > li > .icon-li {
    color: #E88129;
    color: rgba(232,129,41,.99);
}
#content ul > li > ul > li > .icon-li {
    color: #B38D6C;
    color: rgba(179, 141, 108, 0.99);
}
.content-thumb-left {
    float: left;
    margin-top: 5px;
}
#content .add-info {
    font-size: 1.2rem;
    color: #999;
}

.content-callout {
    padding: 20px;
    margin: 20px 0;
    border: 1px solid #eee;
    border-left-width: 5px;
    /*border-radius: 3px;*/
}
.content-callout h4 {
    color: #757575;
    margin-top: 0;
    margin-bottom: 15px;
}
.content-callout-to-form {
    border-left-color: #E88129;
    border-left-color: rgba(232,129,41,.99);
}
.content-callout-share {
    border-left-color: #50b0e8;
    border-left-color: rgba(80, 176, 232, 0.98);
}
.content-callout-info {
    border-left-color: #11e8ad;
    border-left-color: rgba(17, 232, 173, 0.98);
}

.thumbnail .caption {
    min-height: 68px;
}

/*map icon*/
.maps-icons a {
    display: inline-block;
    width: 25px;
    height: 25px;
    border: none;
    opacity: .65;
    -o-transition: opacity 0.2s;
    -ms-transition: opacity 0.2s;
    -moz-transition: opacity 0.2s;
    -webkit-transition: opacity 0.2s;
    transition: opacity 0.2s;
}
.maps-icons .yandex {
        background-image: url("data:image/svg+xml;charset=utf-8,<svg width='25' height='25' viewBox='0 0 56 56' xmlns='http://www.w3.org/2000/svg'><title>Slice 1</title><g fill='none' fill-rule='evenodd'><path d='M26,13.2 C26,22 19.9896067,28.5999992 9.15627335,43.9999992 L13,26.4 L26,13.2 L26,13.2 Z' fill='%23C00' transform='translate%2815 6%29'/><path d='M13,0 C20.1740741,0 26,5.82592593 26,13 C26,20.1740741 20.1740741,26 13,26 C5.82592593,26 0,20.1740741 0,13 C0,5.82592593 5.82592593,0 13,0 L13,0 L13,0 Z' fill='%23F00' transform='translate%2815 6%29'/><path d='M13,7.92 C15.8888889,7.92 18.2,10.16 18.2,12.96 C18.2,15.76 15.8888889,18 13,18 C10.1111111,18 7.8,15.76 7.8,12.96 C7.8,10.16 10.1111111,7.92 13,7.92 L13,7.92 L13,7.92 Z' fill='%23F6F5F3' transform='translate%2815 6%29'/></g></svg>");
        margin-right: 10px;
}
.maps-icons .google {
    background-image: url(images/google-map-icon-25-25.png);
}
.maps-icons a:hover,
.maps-icons a:focus {
    opacity: 1;
}
.privat a {
    font-size: 1.2rem;
}

/******************************************/
/*footer*/
footer {
    margin-top: 39px;
    /* margin-bottom: 20px; */
    color: #767676;
    color: rgba(118, 118, 118, 0.99);
    border-top: 1px solid #e5e5e5;
    /* border-bottom: 1px solid #e5e5e5; */
    background: rgba(248,248,248,.9);
    margin-left: -15px;
    margin-right: -15px;
    padding: 15px;
}
footer .contact p {
    font-size: 1.4rem;
    font-weight: 400;
    margin-bottom: 5px;
}
footer .footer-menu {

}
footer address {
    margin-bottom: 0;
}
footer .row {
    position: relative;
}

/******************************************/
/*aside*/
aside section {
    position: relative;
    margin-bottom: 20px;
    margin-top: 20px;
}
aside section:first-child {
    margin-top: 50px;
}
aside section:last-child {
    margin-bottom: 40px;
}
aside .media a .summary {
    margin: 0;
}
aside section h4 {
    padding-bottom: 15px;
    border-bottom: 1px solid #eee;
    /*margin-top: 50px;*/
}
/*aside section.not-more-link .media:last-child {*/
     /*margin-bottom: 40px;*/
/*}*/
aside section .media a {
    display: block;
    border-bottom: 1px solid #eee;
    padding-bottom: 15px;
    color: #333;
    color: rgba(51, 51, 51, 0.99);
}
aside section .media a:hover,
aside section .media a:focus {
    border-bottom-color: #666;
    border-bottom-color: rgba(51, 51, 51, 0.75);
}
aside section .media a img {
    opacity: .8;
    border: 1px solid #eee;
    float: left;
    margin: 0 10px 0 0;
    -webkit-transition-property: border-color, opacity;
    -moz-transition-property: border-color, opacity;
    -o-transition-property: border-color, opacity;
    transition-property: border-color, opacity;
    -webkit-transition-duration: 0.3s;
    -moz-transition-duration: 0.3s;
    -o-transition-duration: 0.3s;
    transition-duration: 0.3s;
    -webkit-transition-timing-function: ease-out;
    -moz-transition-timing-function: ease-out;
    -o-transition-timing-function: ease-out;
    transition-timing-function: ease-out;
}
aside section .media a:hover img,
aside section .media a:focus img {
    opacity: 1;
}
aside .media .summary h6 {
    font-size: 1.4rem;
    color: #333;
    color: rgba(51, 51, 51, 0.99);
}
aside .media a:hover h6,
aside .media a:focus h6 {
    color: #0071BA;
    color: rgba(0, 113, 186,.99);
}
aside .media .summary span {
    display: block;
    font-size: 1.2rem;
    line-height: 1.3;
    color: #888;
    margin-bottom: 5px;
}
aside .media a:hover .summary span,
aside .media a:focus .summary span,
aside section .media a:hover .summary time,
aside section .media a:focus .summary time {
    color: #333;
    color: rgba(51, 51, 51, 0.99);
}
a.more {
    font-family: 'Roboto Condensed', Arial, Helvetica, sans-serif;
    display: inline-block;
    /*float: right;*/
    margin-top: 20px;
    /*text-align: right;*/
    border: none;
}
aside section.tz .media a img {
    float: none;
    margin: 0;
    border: 1px solid #BAB8B8;
}
aside section.tz .media a {
    border-bottom: none;
    padding-bottom: 0;
    display: inline-block;
}


/******************************************/
/*contacts*/
a.thumbnail {
    position: relative;
    outline: none;
    margin-bottom: 10px;
}
a .icon-zoom-in {
    position: absolute;
    bottom: 5px;
    right: 5px;
    /*color: #999;*/
    color: #E88129;
    color: rgba(232,129,41,.99);
    opacity: .7;
        -o-transition: font-size ease-in-out 0.3s;
      -moz-transition: font-size ease-in-out 0.3s;
   -webkit-transition: font-size ease-in-out 0.3s;
           transition: font-size ease-in-out 0.3s;
}
a:hover .icon-zoom-in,
a:focus .icon-zoom-in {
    font-size: 2.5em;
    opacity: .9;
}
table.info tbody tr > td {
    border: none;
}

/*form*/
.sky-form {
	box-shadow: 0 0 2px rgba(0,0,0,.3);
}
.sky-form .input input,
.sky-form .select select,
.sky-form .textarea textarea {
    font: 15px/19px 'Roboto Condensed', Arial, Helvetica, sans-serif;
}
/*.sky-form footer {*/
    /*background: #F8F8F8;*/
/*}*/
.sky-form .label {
    text-align: left;
    color: #666;
    font-family: 'Roboto Condensed', Arial, Helvetica, sans-serif;;
    font-size: 1.4rem;
}
.sky-form .input input,
.sky-form .select select,
.sky-form .textarea textarea {
    border-radius: 0;
}
.sky-form .textarea textarea {
    resize: vertical;
}
.sky-form .required {
    color: #CB0F24;
}
.button:disabled,
.button:disabled:hover {
    cursor: not-allowed !important;
    background-color: #A1A6A7;
    background-color: rgba(161, 166, 167, 0.99);
    opacity: .8;
}
.sky-form fieldset + header {
    border-top: 1px solid rgba(0,0,0,.1);
}
.alert {
    display: none;
    border-radius: 0;
    padding: 15px;
}
.alert-dismissable,
.alert-dismissible {
    padding-right: 35px;
}
/*.sky-form.filter_block .select select {*/
    /*height: auto;*/
    /*padding: 1px 10px;*/
/*}*/
/*.sky-form.filter_block .button {*/
    /*height: auto;*/
    /*padding: 5px 14px;*/
    /*font: 15px 'Roboto Condensed', Arial, Helvetica, sans-serif;*/
/*}*/

form .user-check .checkbox + * {
    margin-left: 30px;
    padding-top: 2px;
    display: inline-block;
}
.sky-form .checkbox i {
    width: 18px;
    height: 18px;
}

/******************************************/
/*item*/
.info tr > td:first-child {
    font-weight: bold;
}

/*slider*/
.flexslider {
    margin-bottom: 20px;
    border: none;
}
.flexslider .slides > li {
    display: none;
    -webkit-backface-visibility: hidden;
}
.flexslider .thumbnail {
    margin-bottom: 0;
}
#carousel li {
    margin-right: 5px;
}
#carousel img {
    display: block;
    opacity: .5;
    cursor: pointer;
}
#carousel img:hover {
    opacity: 1;
}
#carousel .flex-active-slide img {
    opacity: 1;
    cursor: default;
}
#carousel.flexslider {
    /*border: 4px solid #ddd;*/
    border-radius: 0;
}

/******************************************/
/*catalog*/
.catalog-list section:first-child {
    margin-top: 10px;
}
.catalog [class^="content-thumb-"],
.catalog [class*="content-thumb-"] {
    margin-top: 5px;
}
.catalog a, 
.catalog:hover a,
.catalog:focus a {
    display: block;
    border-bottom: 1px solid #eee;
}
.catalog p {
    color: #333;
}
.catalog img {
    opacity: .8;
}
.catalog h4 {
    color: #757575;
}
.catalog:hover h3,
.catalog:focus h3 {
    color: inherit;
}
.catalog:hover img,
.catalog:focus img {
    opacity: 1;
}
.caption h6 {
    font-size: 1.4rem;
}

/******************************************/
/*social*/
.share{
    position: absolute;
    right: 15px;
    bottom: 0;
    clear: both;
}
.share a {
    border: none;
    opacity:0.65;
    filter:Alpha(opacity=40);
    display:inline-block;
    vertical-align:bottom;
    width:32px;
    height:32px;
    margin: 0 6px 0 0;
    padding:0;
    outline:none;
}
.share a:hover {
    opacity:1;
    filter:Alpha(opacity=100);
}
.g-plus .media {
    width: 100%;
    overflow-x: hidden;
}
.ya-share2 a,
.ya-share2 a:hover,
.ya-share2 a:focus {
    border: none !important;
}

/******************************************/
/*paginate*/
/*.pages,*/
/*.galleryPage {*/
    /*clear: both;*/
    /*text-align:center;*/
/*}*/
/*.pages{padding-top:1em}*/
/*.ditto_page,*/
/*.pages a,*/
/*.ditto_currentpage,*/
/*.galleryPage a,*/
/*.eg_currentpage,*/
/*.eg_page {*/
    /*display:inline-block;*/
    /*text-align:center;*/
    /*width:30px;*/
    /*height:21px;*/
    /*border-righ:1px solid white;*/
    /*line-height:21px;*/
    /*margin-right:2px;*/
    /*margin-bottom: 2px;*/
    /*padding: 6px;*/
/*}*/
/*.ditto_page,*/
/*.pages a,*/
/*.galleryPage a,*/
/*.eg_page {*/
    /*background:*//**//*#DCDCDC*//**//*url(images/nav.png);*/
/*}*/
/*.ditto_page:hover,*/
/*.pages a:hover,*/
/*a.page:hover,*/
/*.ditto_currentpage,*/
/*.eg_currentpage,*/
/*.eg_page:hover,*/
/*.galleryPage a:hover {*/
    /*background:#9e9e9e;*/
    /*color:#F05 !important;*/
    /*text-decoration:none;*/
/*}*/
/*.forClients {text-align:right}*/
/*.galleryPage {*/
    /*text-align:center;*/
    /*position:relative;*/
    /*padding-left:120px;*/
    /*min-height:30px;*/
    /*padding-top:5px;*/
/*}*/
/*.totalPages {*/
    /*display:inline-block;*/
    /*width:115px;*/
    /*position:absolute;*/
    /*left:0;*/
    /*top:9px;*/
/*}*/
/*.all_project a {*/
    /*display:block;*/
    /*text-decoration:none;*/
/*}*/

/******************************************/
#goTop {
    /*background: url(images/nav.png);*/
    color: #333;
    display: none;
    position: absolute;
    bottom:0;
    right:0;
    z-index: 1000;
    width:auto;
    padding: 7px;
    text-align:center;
    opacity:.8
}
#goTop:hover,
.all_project:hover {
    opacity:1;
}
#goTop:hover {
    -moz-box-shadow:#333 0 0 10px;
    -webkit-box-shadow:#333 0 0 10px;
    box-shadow:#333 0 0 10px
}

/******************************************/
#siteMap li{position:relative;margin-bottom:10px;display:block;width:100%;height:auto;}
#siteMap li ul{margin:10px 0 0 35px;padding-left:15px;border-left:1px solid #444}
#siteMap li a{color:#0071BA;font-size:105%;display:block;float:left;margin:0 15px 5px 0}
#siteMap li mark{padding:1px 3px;font-size:102%;background:#FFc;color:#333;border:2px solid #ffc;display:inline-block;margin-left:15px}
#siteMap li a:hover + mark{background:#ff9;color:#000;border:2px solid #999;webkit-box-shadow:0 0 5px #777;-moz-box-shadow:0 0 5px #777;box-shadow:0 0 5px #777}

/******************************************/

.youtube,
.youtube-max {
    cursor: pointer;
}
.video-btn {
    cursor: pointer;
    position: absolute;
    left: 50%;
    top: 50%;
    width: 68px;
    height: 48px;
    margin-left: -34px;
    margin-top: -24px;
    -moz-transition: opacity .25s cubic-bezier(0.0,0.0,0.2,1);
    -webkit-transition: opacity .25s cubic-bezier(0.0,0.0,0.2,1);
    transition: opacity .25s cubic-bezier(0.0,0.0,0.2,1);
    z-index: 63
}
.video-btn svg {
    height: 100%;
    left: 0;
    position: absolute;
    top: 0;
    width: 100%;
    pointer-events: none;
}
.youtube {
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
    display: block
}
.youtube .play {
    background: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAEAAAABACAYAAACqaXHeAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAyJpVFh0WE1MOmNvbS5hZG9iZS54bXAAAAAAADw/eHBhY2tldCBiZWdpbj0i77u/IiBpZD0iVzVNME1wQ2VoaUh6cmVTek5UY3prYzlkIj8+IDx4OnhtcG1ldGEgeG1sbnM6eD0iYWRvYmU6bnM6bWV0YS8iIHg6eG1wdGs9IkFkb2JlIFhNUCBDb3JlIDUuMy1jMDExIDY2LjE0NTY2MSwgMjAxMi8wMi8wNi0xNDo1NjoyNyAgICAgICAgIj4gPHJkZjpSREYgeG1sbnM6cmRmPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5LzAyLzIyLXJkZi1zeW50YXgtbnMjIj4gPHJkZjpEZXNjcmlwdGlvbiByZGY6YWJvdXQ9IiIgeG1sbnM6eG1wPSJodHRwOi8vbnMuYWRvYmUuY29tL3hhcC8xLjAvIiB4bWxuczp4bXBNTT0iaHR0cDovL25zLmFkb2JlLmNvbS94YXAvMS4wL21tLyIgeG1sbnM6c3RSZWY9Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC9zVHlwZS9SZXNvdXJjZVJlZiMiIHhtcDpDcmVhdG9yVG9vbD0iQWRvYmUgUGhvdG9zaG9wIENTNiAoV2luZG93cykiIHhtcE1NOkluc3RhbmNlSUQ9InhtcC5paWQ6M0FDNjYyMUU4ODg5MTFFN0I0NDk5NTY2MTdGQzg0QjEiIHhtcE1NOkRvY3VtZW50SUQ9InhtcC5kaWQ6M0FDNjYyMUY4ODg5MTFFN0I0NDk5NTY2MTdGQzg0QjEiPiA8eG1wTU06RGVyaXZlZEZyb20gc3RSZWY6aW5zdGFuY2VJRD0ieG1wLmlpZDozQUM2NjIxQzg4ODkxMUU3QjQ0OTk1NjYxN0ZDODRCMSIgc3RSZWY6ZG9jdW1lbnRJRD0ieG1wLmRpZDozQUM2NjIxRDg4ODkxMUU3QjQ0OTk1NjYxN0ZDODRCMSIvPiA8L3JkZjpEZXNjcmlwdGlvbj4gPC9yZGY6UkRGPiA8L3g6eG1wbWV0YT4gPD94cGFja2V0IGVuZD0iciI/Ph1VijUAAAROSURBVHja5JtLbA1RGMfPvZrGq1pUWCLRFtGF9zMWWtWGWpaIoIuqLrxKIo1EhY0F2ogi3iEhISyKom1CEBWLCtG0LBQJEkW1IUKo/+d+k0wmc3sfc2bmnPFPfovezr1zvv+cM/N9Z85JeTdutHBZY8BCMBlMYIaDISCVj/kJvoEv4CV4AdrAXfDBzcaluPS7M8FKkM+BJ6Jplr+fg9vgAngsu6EhiT0gA5SDtSDbJWPbwRlwFHxVxYBRYCuoAMOEN6LgD4ODoMvJD4UdfJfGbzXoBDs8DJ6UDqr43NWme4lnBuSAB2AXGCz80xBuw/1kh10yBmwCrWC6UEczwBNQ5qYBdGwNM1CoJ2rTMbA/kbjiPXAQuMpXX3XRDfkKt1mKAan8g8VCHy0Hl+O5OcYygBKlS2CJ0E9F3PYBTgzYr9mVt4ravi9ZA9aAjUJ/VYLViRowiTOtoKgOTIzXgBA4wUlGUDSUH5GheAygZGKOCJ4WgNJYBlCdvkfC3feRoibstdYsYZskYpTDkzSA2ex4k2IG0OTMlmjlcAZXV+lOS2zL3/O5YMlTxITPYCzotfaAUgnB24kqNZoZKgQtChgwwnwvMBuw3uUT3+SbK/WIaz6bUGY1gObwsjw6Oc0jLPPZCMpzppoNKPGhEYYRfg2NErMBBT52R7+GRoFhwBjuEn7L66GRS498MmCeXYqogBFuDw2KeR4ZMEXRrM2LoZFLBuQonsO7OTSywx4+/mQZQbNTDyX9ZhYZMFKzqu4WmCupR2SGuVbWUTKGRprOBsgw4p8BIREM/RKJv+nqCxtlocZaxBUnTcIUJfjdXp0NMAJv4mQuGfWQAR81C5wq1+sOAzfURQZ0/AddPZraUzQwgALfLeFq26mDDGhTNPBZIjKXWOjiOdrIgDvgj3C2XEaXK27Wb4qdgv4EnikQeJ6Eu3oiohUl3cZVb/a5q98AjR4FLswxGwac8/GKt7g8zqPprNkA6g5PPQ7c6ytuVqtx8w9bHQlgV4969UnmV2O03q9TOH83GLK54tUKBG3oPRgPflh7wHdQG7CubqdaI3hh8+yvk1Ab0JvhBgUDJ9HS+yPmD6wG0Hr9Socnofk6VVeV0ev/nv4MIJ0X8iYdVdI9cNH6oZ0BfWCFiLxHD4oo213FscU0gPRGRDY+9AUgeIqBlvy9tftnfwVQPTgUAAMO8ASKSNQA0mZwSuPgT4Lt/R0QjqP7bBCR93S6ibLOiljDOJ45ANrStlREFk/qouMisk74Z6wD450EockDWkNUo0HwtMC7nNssZBlAolkjWmO3WLi8mdFBlker0bZxW4VsAww1crrbrFDwTVxtJrwwM9l5wNdc7BRzBemXXnEb8jl3EV4ZYM4VaK3NTs62vMzsqvjc9Y5qd4lbZ9P4sbNOuLt19jRXdFJe6YVc2j3uZPO0Vdpsno4mu+3zmSKyONtYm9wtIvuBaR+wp9vn/wowAHes4GUHhJ9QAAAAAElFTkSuQmCC) center center no-repeat;
    background-size: 64px 64px;
    position: absolute;
    height: 100%;
    width: 100%;
    opacity: .7;
    filter: alpha(opacity=70)
}
.youtube .play:hover {
    opacity: 1;
    filter: alpha(opacity=100)
}
.youtube .yt-play-button,
.youtube-max .yt-play-button {
    -moz-transition: fill .1s cubic-bezier(0.4,0.0,1,1),fill-opacity .1s cubic-bezier(0.4,0.0,1,1);
    -webkit-transition: fill .1s cubic-bezier(0.4,0.0,1,1),fill-opacity .1s cubic-bezier(0.4,0.0,1,1);
    transition: fill .1s cubic-bezier(0.4,0.0,1,1),fill-opacity .1s cubic-bezier(0.4,0.0,1,1);
    fill: #212121;
    fill-opacity: .8
}

.youtube:hover .yt-play-button,
.youtube-max:hover .yt-play-button {
    -moz-transition: fill .1s cubic-bezier(0.0,0.0,0.2,1),fill-opacity .1s cubic-bezier(0.0,0.0,0.2,1);
    -webkit-transition: fill .1s cubic-bezier(0.0,0.0,0.2,1),fill-opacity .1s cubic-bezier(0.0,0.0,0.2,1);
    transition: fill .1s cubic-bezier(0.0,0.0,0.2,1),fill-opacity .1s cubic-bezier(0.0,0.0,0.2,1);
    fill: #f00;
    fill-opacity: 1
}

/*media*/
@media (max-width: 991px) {
    #content {
        /*margin-bottom: 20px;*/
    }
    #post-content {
    margin-top: 0;
    }
    aside section:first-child {
        margin-top: 20px;
    }
    .g-plus, .tz {
        text-align: center;
    }
}

@media (max-width: 767px) {
    .navbar-default .navbar-nav .open .dropdown-menu > li > a:hover,
    .navbar-default .navbar-nav .open .dropdown-menu > li > a:focus {
        background-color: rgba(237, 238, 239, 0.8);
        text-shadow: none;
    }
    .navbar-default .navbar-nav .open .dropdown-menu>.active>a {
        text-shadow: none;
    }
    .navbar-default .navbar-nav .open .dropdown-menu > li > a {
        color: #EAEAEA;
        color: rgba(234, 234, 234, 0.99);
    }
    .navbar .contact {
        margin-left: 120px;
    }
    .navbar .contact p {
        font-weight: 400;
    }
    .navbar-header {
        border-bottom: 1px solid #eee;
        padding-bottom: 10px;
    }
    [class^="content-thumb-"],
    [class*="content-thumb-"] {
        margin-bottom: 20px !important;
        margin-right: 0;
    }
    .content-thumb-left {
        float: none;
    }
    .content-thumb-right {
        float: none;
    }
    #content a.button {
        float: none !important;
    }
    h1, .h1 {
        font-size: 2.8rem;
    }
    h2, .h2 {
        font-size: 2.4rem;
    }
    h3, .h3 {
        font-size: 2.2rem;
    }
    p {font-size: 1.4rem}
    .lead {font-weight: 400}
}
@media (max-width: 675px) {
    .navbar .contact {
        margin-left: 70px;
    }
}
@media (max-width: 648px) {
    .tz img.hidden-lg {
        display: none !important;
    }
    .tz img.visible-lg {
        display: block !important;
    }
}    
@media (max-width: 600px) {
    .navbar .contact {
        margin-left: 30px;
    }
    .footer-menu li {
        display: inherit;
        padding-right: 0;
        padding-left: 0;
        margin-bottom: 7px;
    }
    .share {
        position: inherit;
        padding: 20px 15px 0 15px;
        text-align: center;
    }
}
@media (max-width: 560px) {
    .navbar .contact {
        margin-left: 0;
    }
    .project {
        width: 100%;
    }
    .caption h6 {
        font-size: 1.6rem;
    }
}
@media (max-width: 540px) {
    .navbar .contact p {
        font-size: 1.5rem;
    }
}
@media (max-width: 520px) {
    .navbar .call-me button {
        font-size: 1.4rem;
        padding: 0 15px;
    }
}
@media (max-width: 500px) {
    .navbar .contact p {
        font-size: 1.3rem;
    }
    .navbar .contact {
        margin-left: 15px;
        float: none;
        clear: both;
        display: block;
        /*text-align: center;*/
    }
    .navbar .call-me button {
        display: inline;
        margin-top: 10px;
    }
    /*.logo {display: none}*/
}
@media (max-width: 460px) {
    .navbar .contact p {
        font-size: 1.2rem;
    }
    /*.navbar .contact {*/
        /*margin-left: 60px;*/
    /*}*/
    .banner {display: none}
}
@media (max-width: 450px) {
    /*.navbar .contact {*/
        /*display: none;*/
    /*}*/
}
@media (max-width: 380px) {
    .contactForm footer .req {
        font-size: 1.1rem;
    }
    /*.navbar .contact {*/
        /*margin-left: 50px;*/
    /*}*/
}

@media (max-width: 376px) {
    .privat a.pull-right  {
        float: none !important;
        display: inline-block;
        margin-top: 10px;
    }
    /*.navbar .contact {*/
        /*margin-left:30px;*/
    /*}*/
}
@media (max-width: 320px) {
    .navbar .contact {
        margin-left:15px;
    }
}

@media (min-width: 540px) {
    .my-modal {
        width: 360px;
        margin: 10px auto;
    }
}
@media (min-width: 768px) {
    .content-thumb-300 {
        width: 300px;
    }
    .content-thumb-200 {
        width: 200px;
    }
    /*.thumbnail .caption {*/
        /*min-height: 50px;*/
    /*}*/
}
@media (min-width: 992px) {
    .contact p {
        font-size: 1.9rem;
    }
    .navbar .navbar-nav > li > a {
        font-size: 1.9rem;
    }
    .navbar .dropdown-menu > li > a {
        font-size: 1.6rem;
    }
    .thumbnail .caption {
        min-height: 83px;
    }
}
@media (min-width: 1200px) {
    .contact p {
        font-size: 2.2rem;
    }
    .thumbnail .caption {
        min-height: 68px;
    }
}