body, html{
    height: 100%;
    margin: 0;
    padding: 0;
    font-family: 'Source Sans Pro', sans-serif;
    font-size: 17px;
    font-weight: 300;
    background-color: #fff;
    overflow:hidden;
    top: 0;
}

h1, h2, h3, h4, h5, h6{
    font-weight: 400;
    color: #3E3D40;
    text-transform: uppercase;
    box-sizing: border-box;
}

h1{
    font-size: 2.35em;
}
h2{
    font-size: 1.76em;
}
h3{
    font-weight: 700;
}

a{
    text-decoration: underline;
    color: #3E3D40;
    font-weight: 700;
}

.bg1{
    background-color: #ECEDED;
}
.bg2{
    background-color: #D9DADB;
}
.bg3{
    background-color: #f1f1f1;
}
.bg4{
    background-color: transparent;
}
.bg5{
    background-color: #FFD608;
}

.main-container{
    width: 100%;
    height: 100%;
    position: absolute;
    display: block;
    overflow-y: scroll;
    -webkit-overflow-scrolling: touch;
    background-color: #ECEDED;
    box-sizing: border-box;
}
.open-sidebar {
    right: 240px !important;
    top: 0px !important;
}

.right-container{
    position: fixed;
    background: #323232;
    width: 240px;
    height: 100%;
    top: 0;
    right: 0;
    box-sizing: border-box;
    display: block;
    z-index: 0;
    overflow-y: auto;
    display: none;
}
.right-container.open-sidebar{
    display: block;
}

.tmm{
    width: 24px;
    height: 35px;
    display: none;
    float: right;
    cursor: pointer;
    margin-top: 22px;
    margin-right:  0px;
}
.tmm span, .tmm span::before, .tmm span::after{
    position: absolute;
    width: 30px;
    height: 3px;
    display: block;
    background: #e0e0e0;
    content: '';
    transition: all 500ms ease-in-out;
}
.tmm span{
    top: 55px;
}
.tmm span:before{
    top: -7px;
}
.tmm span:after{
    top: 7px;
}
.tmm.active span:before {
  transform: rotate(-45deg);
  -webkit-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  top: 0;
  background: #666 !important;
}
.tmm.active span:after {
  transform: rotate(45deg);
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  top: 0;
  background: #666 !important;
}
.tmm.active span{
    background-color: transparent;
}

div.tmm:hover i{
    background: #666 !important;
}

.side-menu{
    width: 100%;
    padding: 0;
    margin: 0;
    display: block;
    overflow-y: auto;
}
.side-menu li{
    width: 100%;
    display: block;
    list-style: none;
    border-top: 1px solid #525252;
    padding: 0px 0px 0px 10px;
    box-sizing: border-box;
}
.side-menu li a{
    color: #fafafa;
    text-decoration: none;
    padding: 20px 0px 20px 0px;
    font-size: 0.9em;
    display: block;
}
.side-menu li a span{
    width: 24px;
    height: 24px;
    display: block;
    background-color: #424242;
    float: right;
    margin-right: 10px;
}
.side-menu li a span i{
    width: 16px;
    height: 2px;
    background: #ccc;
    display: block;
    margin: 11px 0px 0px 4px;
}
.side-menu li a span i:after{
    width: 16px;
    height: 2px;
    background: #ccc;
    display: block;
    transform: rotate(90deg);
    -webkit-transform: rotate(90deg);
    -ms-transform: rotate(90deg);
    content: '';
    transition: all 500ms ease-in-out;
}
.side-menu li.open a.active span i:after{
    transform: rotate(0deg);
    -webkit-transform: rotate(0deg);
    -ms-transform: rotate(0deg);
}
.side-menu li ul{
    display: none;
}
.side-menu li.open ul{
    display: block;
}

.side-menu li.selected{
    background-color: rgba(255, 255, 255, 0.1);
}

header{
    padding: 0px 0px 20px 0px !important;
    border-bottom: 2px solid #FFD608;
    background: #fff;
}

header div:first-child{
    width: 80% !important;
    margin: 0 auto !important; 
    padding: 0;
    display: block;
    clear: both;
    box-sizing: border-box;
    height: 100px;
}

.logo{
    width: 270px;
    height: 80px;
    display: block;
    float: left;
    cursor: pointer;
    background: url("/interface/logo_270pix.png") no-repeat center center;
    background-size:contain;
    margin-top: 20px;
}

header.small{
    position: fixed;
    top: 0;
    z-index: 100001;
    padding: 10px 0px 8px 0px !important;
    background: rgba(255, 255, 255, 0.90);
}

header.small div:first-child{
    height: 50px;
}

header.small .logo{
    height: 46px;
    background: url("/interface/logo.png") no-repeat left center;
    margin-top: 0px;
}

.widget .title{
    width: 100%;
    height: 35px;
    display: block;
    clear: both;
    font-size: 0.9em;
    text-transform: uppercase;
    color: #666;
    cursor: pointer;
    height: 35px;
    line-height: 35px;
}
.widget .body{
    width: 100%;
    min-height: 50px;
    display: none;
    clear: both;
    overflow-y: auto;
}
.widget.open .body{
    display: block;
}
.widget .title .icon{
    width: 18px;
    height: 18px;
    display: inline-block;
    float: right;
    margin-top: 8.5px;
    margin-right: 8.5px;
}
.widget .title .icon i{
    width: 16px;
    height: 2px;
    background: #FFD608;
    display: block;
    margin: 8px 0px 0px 4px;
}
.widget .title .icon i:after{
    width: 16px;
    height: 2px;
    background: #FFD608;
    display: block;
    transform: rotate(90deg);
    -webkit-transform: rotate(90deg);
    -ms-transform: rotate(90deg);
    content: '';
    transition: all 500ms ease-in-out;
}
.widget.open .title .icon i:after{
    transform: rotate(180deg);
    -webkit-transform: rotate(180deg);
    -ms-transform: rotate(180deg);
    background: #FFD608;
}
.widget input{
    width: 100%;
    box-sizing: border-box;
    border: 1px solid #C6C7C8;
    border-radius: 3px;
    height: 35px;
    font-family: 'Source Sans Pro', sans-serif;
    font-size: 1em;
    font-weight: 300;
}
::-webkit-input-placeholder, ::-moz-placeholder, :-ms-input-placeholder{
    font-family: 'Source Sans Pro', sans-serif !important;
    font-style: normal;
    font-weight: 300;
}

.results .item{
    width: 100%;
    min-height: 35px;
    display: block;
    clear: both;
    overflow:hidden;
}
.results .item .content, .results .item .tools{
    width: 100%;
    min-height: 35px;
    position: relative;
    display: block;
    float: left;
    overflow-y: auto;
    top:0;
    left: 0;
    z-index: 1;
    transition: all 500ms ease-in-out;
    box-sizing: border-box;
    cursor: pointer;
}
.results .item .content{
    padding: 10px 0px 10px 0px;
}
.results .item .tools{
    height: 100%;
    background: #FFD608;
    top: 0;
    left: 100%;
    z-index: 2;
}
.results .item .tools i,.results .item .tools a{
    width: 20%;
    height: 100%;
    display: block;
    float: left;
    box-sizing: border-box;
    border-left: 1px solid #f1f1f1;
    cursor: pointer;
}
.results .item .tools i:first-child{
    border: none;
}
i.return{
    background: url("/interface/left-32.png") no-repeat center center #333;
}
i.image{
    background: url("/interface/photo.svg") no-repeat 12px center;
    background-size: 30px 30px;
}
i.map{
    background: url("/interface/marker.svg") no-repeat 12px center;
    background-size: 30px 30px;
}
i.map.active{
    background: url("/interface/location-32.png") no-repeat 12px center #D9DADB;
}
i.cart-add, a.cart-add{
    background: url("/interface/cart-add.svg") no-repeat 12px center;
    background-size: auto 30px;
}
i.cart-remove, a.cart-remove{
    background: url("/interface/cart-remove.svg") no-repeat 12px center;
    background-size: auto 30px;
}
.results .item .tools a.link, .marker-info a.link{
    background: url("/interface/external-link.svg") no-repeat 12px center;
    background-size: 30px 30px;
}
.results .item .tools span{
    display: inline-block;
    padding-top: 4px;
    padding-left: 52px;
    font-weight: 400;
    font-size: 0.9em;
    color: #3e3d40;
}

@media screen and (max-width: 1024px) {
    .results .item .tools i, .results .item .tools a{
        background-position-x: center !important;
    }
    .results .item .tools span{
        display: none;
    }
}
.marker-info i, .marker-info a{
    font-size: 0.8em;
    text-align: center;
    padding-top: 40px;
    background-position: center 4px !important;
    text-decoration: none;
    font-weight: 300;
}

.impressum{
    text-decoration: none; 
    color: #999; 
    display: block; 
    float: right; 
    text-transform: uppercase; 
    font-weight: 400; 
    margin-top: 58px;
}
@media screen and (max-width: 420px) {
    .impressum{
        display: none;
    }
}

.logo-new{
    padding: 44px 0px 44px 0px; display: block; float: left;
}

.results .item.selected .content{
    left: -100% !important;
}
.results .item.selected .tools{
    left: 0% !important;
}
.results .item .cs1{
    width: 25%;
    min-height: 30px;
    display: block;
    float: left;
}
.results .item .cs2{
    width: 75%;
    min-height: 30px;
    display: block;
    float: left;
}
.c1, .c2, .c3, .c4, .c5, .c6{
    display: block;
    float: left;
    box-sizing: border-box;
    padding: 0px 10px 0px 10px;
}
.c1, .c2{
    width: 50%;
}

.merkliste a{
    font-weight: 300 !important;
}
.results.merkliste .item{
    padding-left: 40px;
    background-image: url("/interface/minus.png");
    background-repeat: no-repeat;
    background-position: 10px center;
    cursor: pointer;
}

#results-map{
    width: 100%;
    height: 350px;
    display: block;
    clear: both;
    border: 4px solid #fff;
    border-left: none;
    border-right: none;
}
#results-map img{
    max-width: none; 
}

.filter-type{
    width: 100%;
    display: block;
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    overflow-y: auto;
}
.filter-type li{
    width: 100%;
    height: 30px;
    line-height: 30px;
    list-style: none;
    cursor: pointer;
    font-size: 0.9em;
    padding-left: 22px;
    color: #333;
    box-sizing: border-box;
    display: block;
}
.checkbox span{
    width: 12px;
    height: 12px;
    display: block;
    border: 2px solid #C6C7C8;
    border-radius: 1px;
    vertical-align: middle;
    float: left;
    margin: 9px 0px 0px -22px;
}
.checkbox span i{
    width: 0px;
    height: 0px;
    display: block;
    background: #FFD608;
    margin: 50%;
    transition: all 100ms ease-in-out;
    border-radius: 1px;
}
.checkbox.selected{
    font-weight: 400;
}
.checkbox.selected span i{
    width: 50%;
    height: 50%;
    margin: 25%;
}

.filter-region{
    width: 100%;
    display: block;
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    overflow-y: auto;
}
.filter-region li{
    width: 100%;
    height: 30px;
    line-height: 30px;
    list-style: none;
    cursor: pointer;
    font-size: 0.9em;
    box-sizing: border-box;
    display: block;
    padding-left: 22px;
}

.md{
    width: 100%;
    height: 100%;
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 100001;
    background: rgba(0,0,0,0.3);
}

.md .window{
    width: 60%;
    min-height: 200px;
    display: block;
    background: #fff;
    position: fixed;
    top: 5%;
    left: 20%;
    padding: 0 3%;
}
.md .window .title{
    padding: 2% 0%;
    font-size: 1.3em;
    cursor: pointer;
    background: url("/interface/cancel-25.png") no-repeat right center;
    text-transform: uppercase;
}
.md .window .body{
    width: 100%;
    padding: 2% 0%;
    text-align: center;
}

.marker-info i, .marker-info a{
    width: 60px;
    height: 60px;
    display: block;
    float: left;
    cursor: pointer;
}
label{
    font-size: 0.8em;
    color: #666;
}

.mm{
    min-height: 45px;
    display: inline;
    float: right;
    margin: 0;
    padding: 0;
    list-style: none;
    clear: right;
}
.mm li{
    display: inline-block;
    float: left;
    vertical-align: middle;
    line-height: 45px;
    position: relative;
}
.mm li a{
    height: 45px;
    display: inline-block;
    line-height: 45px;
    padding: 0px 12px 0px 0px;
    font-size: 16px;
    text-decoration: none;
    color: #3E3D40;
    font-weight: 400;
    float: left;
}
.mm li:last-child a{
    padding-right: 0;
}
.mm li i{
    width: 16px;
    height: 18px;
    display: inline-block;
    float: left;
    border-left: 1px solid #3E3D40;
    line-height: 45px;
    vertical-align: middle;
    margin-top: 13px;
}

.mm li ul{
    display: none;
    position: absolute;
    top: 45px;
    left: 0;
    z-index: 111001;
    width: 110px;
    background: #FFD608;
}
.mm li:hover ul{
    display: block;
    padding: 0;
    margin: 0;
}
.mm li ul li{
    width: 100%;
    clear: both;
    border-bottom: 1px solid #3E3D40;
    box-sizing: border-box;
    padding: 8px 10px 8px 10px;
    height: auto;
    min-height: 0 !important;
    line-height: 17px !important;
    z-index: 111002;
}
.mm li ul li:hover{
    background: #aaa;
}
.mm li ul li a{
    font-size: 14px !important;
    line-height: 17px;
    height: auto;
}

.header-top-wrap{
    height: 24px;
    float: right;
    display: block;
    text-align: right;
    padding: 10px 0px 12px 0px;
    
}

.header-top-wrap a.cart, a.cart{
    width: 24px;
    height: 24px;
    display: inline-block;
    font-size: 0.6em;
    text-transform: uppercase;
    text-decoration: none;
    font-weight: 400;
    color: #636778;
    background: url("/interface/cart-add.svg") no-repeat center center;
    background-size: auto 24px;
    box-sizing: border-box;
    text-align: center;
    line-height: 30px;
}

a.cart{
    float: right;
    color: #999;
    margin: 55px 0px 0px 20px;
    background: url("/interface/cart-add-light.svg") no-repeat center center;
    background-size: auto 24px;
    padding: 0px 0px 12px 0px;
}

header.small .mm{
    clear: none;
}
header.small .header-top-wrap{
    padding-left: 20px;
}

footer{
    background: #3E3D40;
    position: relative !important;
    min-height: 50px;
    font-size: 0.82em !important; 
    padding: 1% 0px 1% 0px !important;
    color: #87888A;
    font-weight: 300;
}

footer .links a{
    color: #87888A;
    text-decoration: none;
    display: block;
    padding-right: 30px;
    line-height: 1.5em;
    font-weight: 400;
    float: left;
    cursor: pointer;
    height: 25px;
}

footer div .bottom{
    border-top: 1px solid #87888A;
    margin-top: 3% !important;
    padding-top: 0.5%;
    font-size: 0.9em !important; 
}
footer div .bottom a{
    color: #87888A;
    text-decoration: none;
    display: inline-block;
    padding: 0px 5px 0px 8px;
    border-left: 1px solid #B1B3B4;
}
footer div .bottom a:first-child{
    border: none;
}

.media-wrap{
    width: 90%;
    height: 540px;
    display: block;
    margin: 0px auto 0px auto;
    background-size: cover;
    
}
.media-wrap img{
    width: 100%;
}

.slider{
    width: 100%;
    height: 100%;
    display: block;
    overflow: hidden;
    position: relative;
}

.slider .items{
    height: 480px;
    position: relative;
    padding: 0;
    margin: 0;
    list-style: none;
    display: block;
    overflow: hidden;
    background-color: #fff;
}
.slider .items > li {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -webkit-transform: translateX(100%);
  -moz-transform: translateX(100%);
  -ms-transform: translateX(100%);
  -o-transform: translateX(100%);
  transform: translateX(100%);
  cursor: pointer;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
}
.slider .items li.selected {
  /* this is the visible slide */
  position: relative;
  -webkit-transform: translateX(0);
  -moz-transform: translateX(0);
  -ms-transform: translateX(0);
  -o-transform: translateX(0);
  transform: translateX(0);
}
.slider .items li.move-left {
  /* slide hidden on the left */
  -webkit-transform: translateX(-100%);
  -moz-transform: translateX(-100%);
  -ms-transform: translateX(-100%);
  -o-transform: translateX(-100%);
  transform: translateX(-100%);
}
.slider .items li.is-moving, .slider .items li.from-left, .slider .items li.from-right {
  /* the is-moving class is assigned to the slide which is moving outside the viewport */
  -webkit-transition: -webkit-transform 0.500s;
  -moz-transition: -moz-transform 0.500s;
  transition: transform 0.500s;
}

.slider .dot{
    height: 30px;
    display: block;
    padding: 0px 0px 0px 0px;
    margin: 20px auto 0px auto;
    text-align: center;
    position: relative;
    z-index: 1001;
}
.slider .dot li{
    width: 6px;
    height: 6px;
    display: inline-block;
    background-color: #6b6b6b;
    border-radius: 12px;
    -webkit-border-radius: 12px;
    margin: 0px 10px 0px 10px;
    cursor: pointer;
    border: 3px solid #6b6b6b;
}

.media-wrap-2{
    height: 440px;
    display: block;
    margin: 0px auto 0px auto;
    background-size: cover;
    float: left;
    margin-left: 0px;
}
.media-wrap-2 img{
    width: 100%;
}
.media-wrap-2 .slider{
     height: 440px;
}
.media-wrap-2 .slider .items{
    height: 440px;
}
.media-wrap-2 .slider .dot{
    margin-top: -40px;
}

.right-description{
}

.right-description .label{
    text-transform: uppercase;
    font-weight: 400;
    margin-top: 30px;
}

.inner-map{
    width: 100%;
    height: 100%;
    position: relative;
}
.inner-map img{
    max-width: none; 
}

.bd .row{
    padding: 20px 10px 20px 10px;
}

.bd .row:nth-child(odd){
   background: #f6f6f6;
}
.bd .row div:first-child{
    //text-align: right;
}
.bd-wrap{
    margin-top: -60px !important;
    padding-top: 40px;
}

h1 i{
    height: 42px;
    display: inline-block;
    float: right;
    overflow: hidden;
}

h1 i a{
    width: 32px;
    height: 32px;
    display: inline-block;
    margin: 0px 10px 0px 10px;
}

.details{
    background: url("/interface/details.png") no-repeat center center;
}
.marker{
    background: url("/interface/location.png") no-repeat center center;
}
.pdf{
    background: url("/interface/PDF-2-32.png") no-repeat center center;
}
.cart-buy{
    background: url("/interface/cart-buy.png") no-repeat center center;
}

.inner.slider .items{
    height: 350px;
}

.index.slider{
    width: 100%;
    height: 540px;
}
.index.slider .items{
    width: 100%;
    height: 448px;
}
.index.slider .dot li{
    background: #c4c4c4;
    border-color: #c4c4c4;
    width: 6px;
    height: 6px;
}

.slider .dot{
    margin-top: 10px;
}

.slider .dot li.selected{
    background-color: #FFD608;
    border-color: #FFD608;
}

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

.top-item .title{
    font-weight: 400;
    font-size: 28px;
    color: #3E3D40;
    padding-bottom: 12px;
}
.top-item .image{
    width: 100%;
    height: 185px;
    display: block;
    overflow: hidden;
    cursor: pointer;
}
.top-item .description{
    padding-top: 12px;
    font-size: 17px;
}
.top-item .description .more{
    text-decoration: underline;
    color: #3E3D40;
    font-weight: 700;
}

h2.index{
    font-size: 40px;
}

.vtab, .vtab .nav, .vtab .body{
    width: 100%;
    min-height: 100px;
    display: block;
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}
.vtab .nav{
    width: 25%;
    float: left;
}
.vtab > .nav > li{
    width: 100%;
    display: block;
    padding: 0;
    margin: 0;
    list-style: none;
    clear: both;
    border-bottom: 2px solid #707173;
    background: #FFD608;
    color: #3E3D40;
    padding: 12px;
    box-sizing: border-box;
    font-size: 18px;
    line-height: 18px;
    font-weight: 400;
    text-transform: uppercase;
    cursor: pointer;    
    min-height: 60px;
}
.vtab > .nav > li > .wrap{
    text-transform:none !important;
}
.vtab > .nav > li:hover, .vtab > .nav > .open{
    color: #FFD608;
    background: #3E3D40;
}
.vtab > .nav > li:hover > .wrap, .vtab > .nav > li > .wrap{
    color: #3E3D40;
    background: #D9DADB;
    margin-top: 20px;
}

.vtab .body{
    width: 75%;
    float: right;
}
.vtab > .body > li{
    width: 100%;
    display: none;
    clear: both;
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    list-style: none;
}
.vtab > .body > li.open{
    display: block;
}
.vtab > .body > li > .wrap > .image, .vtab > .nav > li > .wrap > .image{
    width: 100%;
    height: 450px;
    display: block;
}
.vtab > .body > li > .wrap > .content{
    padding: 0px 20px;
    margin: 0;
}

.vtab .body li .slider{
    height: 450px;
}
.vtab .body li .slider > .items{
    height: 420px;
}

.offer.slider > .items{
    height: auto;
    min-height: 380px;
    background: none;
}

.at1.image{
    height: 440px;
}
.at2.image{
    height: 220px;
}
.at3.image{
    height: 370px;
}

.yellow-block{
    background: #FFF6DB;
    padding: 20px;
    margin-bottom: 20px;
}

.practice.slider{
    height: 420px;
}
.practice.slider .items{
    height: 380px;
}

.news-list{
    width: 100%;
    display: block;
    padding: 0;
    margin: 0;
    overflow-x: hidden;
    overflow-y: auto;
}
.news-list li{
    width: 100%;
    display: block;
    padding: 30px 0px 30px 0px;
    margin: 0;
    list-style: none;
    border-bottom: 1px solid #f1f1f1;
}
.news-list li .title{
    text-decoration: none;
}
.news-list li .description{
    padding-top: 10px;
}
.news-list li:first-child{
    padding-top: 10px;
}
.news-list li:last-child{
    border-bottom: none;
}

.media-wrap div.image{
    width: 100%;
    height: 100%;
    display: block;
}

.team-list{
    width: 100%;
    display: block;
    padding: 0;
    margin: 0;
    clear: both;
    overflow-x: hidden;
    overflow-y: auto;
}
.team-list li{
    width: 50%;
    height: 158px;
    display: block;
    float: left;
    padding: 0;
    margin: 10px 0px 0px 10px;
    box-sizing: border-box;
}
.team-list-img{
    width: 158px;
    height: 158px;
    display: block;
    float: left;
}
.team-list-name{
    width: 185px;
    height: 69px;
    display: block;
    float: right;
    background: #FFEA9D;
    padding: 10px 0px 0px 10px;
}
.team-list-contacts{
    width: 185px;
    height: 69px;
    display: block;
    float: right;
    background: #FFF6DB;
    padding: 10px 0px 0px 10px;
}

.clients, .clients-list{
    width: 100%;
    display: block;
    overflow-x: hidden;
    overflow-y: auto;
    padding: 20px 0px 20px 0px;
}
.clients li{
    width: 20%;
    height: 116px;
    display: block;
    margin: 0px 0px 40px 0px;
    padding: 0px 0px 0px 0px;
    float: left;
    text-align: center;
    box-sizing: border-box;
}
.clients li a{
    width: 100%;
    height: 120px;
    display: block;
    border: none !important;
    text-decoration: none;
    text-align: center;
}
.clients li span{
    width: 100%;
    display: block;
    margin: 60px 0px 0px 0px;
    font-weight: bold;
    font-size: 11pt;
    text-align: center;
}
.clients li img{

}

.clients-list{
    list-style-type: circle !important;
	list-style-position: outside !important;
        text-align: center;
}

.clients-list li{
    height: 30px;
    display: inline-block;
    margin: 0px 0px 0px 0px;
    padding: 0px 0px 0px 0px;

    text-align: center;
    box-sizing: border-box;
    list-style-type: circle !important;
    list-style-position: outside !important;
}
.clients-list li a{
    display: block;
    border: none !important;
    text-decoration: none;
    text-align: center;
}
.clients-list li span{
    display: inline-block;
    font-weight: 400;
    font-size: 11pt;
    text-align: center;
    float: left;
}
.clients-list li span.bull{
    padding: 0px 10px 0px 10px;
    display: inline-block;
    float: left;
    font-size: 16pt;
    line-height: 18px;
}
.clients-list li:last-child span.bull{
    display: none;
}

.al{
    padding: 2% 0px 0px 0px;
    margin: 0;
    list-style: none;
    box-sizing: border-box;
}
.al-item{
    border-bottom: 1px solid #ddd;
    padding: 1% 0px 1% 0px;
    cursor: pointer;
}
.al .al-item:last-child{
    border-bottom: none;
}
.al-title{
    font-weight: 300;
    padding-left: 38px;
    margin: 0;
    font-size: 1.3em;
}
:hover.al-item .al-title{
    color: #FFD608;
}
.al-content{
    display: none;
    width: 95%;
    padding: 0% 0px 2% 38px;
    box-sizing: border-box;
}
.al .open{
    background: #fafafa;
}
.al .open .al-title{
    font-weight: 400;
    color: #FFD608;
}

.al-icon{
    width: 18px;
    height: 18px;
    display: inline-block;
    background-color: #fff;
    float: left;
    margin-top: 8px;
    margin-left: -28px;
}
.al-icon i{
    width: 10px;
    height: 2px;
    background: #FFD608;
    display: block;
    margin: 8px 0px 0px 4px;
}
.al-icon i:after{
    width: 10px;
    height: 2px;
    background: #FFD608;
    display: block;
    transform: rotate(90deg);
    -webkit-transform: rotate(90deg);
    -ms-transform: rotate(90deg);
    content: '';
    transition: all 500ms ease-in-out;
}
.al-item.open .al-icon i:after{
    transform: rotate(0deg);
    -webkit-transform: rotate(0deg);
    -ms-transform: rotate(0deg);
    background: #FFD608;
}

.newsletter input, .newsletter select{
    border: 1px solid #3E3D40;
    font-size: 1.1em;
    font-weight: 300;
    font-family: 'Source Sans Pro', sans-serif;
    box-sizing: border-box;
    -webkit-border-radius: 0px !important;
    -webkit-appearance: none;
    line-height: 2em;
    color: #c4c4c4;
    background-color: #f2f2f2;
    padding-left: 4px;
}
.newsletter input:focus, .newsletter select:focus, .newsletter input:hover, .newsletter select:hover{
    background-color: #fff;
    color: #3E3D40;
    outline: 0;
}
.newsletter .al{
    padding: 0;
    margin-left: 1%;
    width: 98%;
}
.newsletter .al-title{
    font-size: 1.1em;
}
.newsletter .al-content{
    padding-top: 20px;
}
.newsletter .al-icon{
    margin-top: 3px;
}

.newsletter input[type="submit"]{
    background-color: #FFD608;
    color: #3E3D40;
    margin: 28px 0px 28px 2px;
    width: 130px;
    box-shadow: 0px 0px 2px 1px rgba(0,0,0,0.3);
    border-radius: 3px;
    border: none;
    font-style: normal;
    height: 35px;
    cursor: pointer;
    font-weight: 700;
    text-align: center;
    padding: 0;
}

@media handheld, only screen and (max-width: 960px) {
    h1, h2{
        font-size: 1.5em;
        box-sizing: border-box;
    }
    .cs1, .cs2{
        width: auto !important;
        clear: both;
    }
    .mm{
        display: none !important;
    }
    .header-top-wrap{
        padding-top: 43px;
        padding-right: 20px;
        
    }
    
    header.small .header-top-wrap{
        padding-top: 13px !important;
        padding-left: 0px !important;
    }
    
    .md .window{
        width: 90%;
        min-height: 200px;
        display: block;
        background: #fff;
        position: fixed;
        top: 2%;
        left: 2%;
        padding: 0 3%;
    }
    
    .media-wrap{
        width: 100%;
    }
    
    .bd .row div:first-child{
        text-align: left;
        font-weight: 400;
    }
    
    h1.billboard{
        text-align: center;
    }
    
    
    h1 i{
        width: 100%;
        height: 62px;
        display: block;
        clear: both;
        padding: 20px 0px 0px 0px;
        text-align: center;
    }
    
    footer div .bottom div:last-child{
        text-align: left !important;
    }
    
    .vtab .nav, .vtab .body{
        width: 100%;
    }
    .vtab .body li.open{
        display: none;
    }
    
    .clients li{
        width: 100%;
        clear: both;
    }
}

header.index{
    width: 100%;
    border: none;
}
.slider.index{
    width: 100%;
    margin: 0px auto 0px auto;
}
.slider.index .items li a{
    width: 100%;
    height: 100%;
    display: block;
}

.yellow-button{
    display: inline-block;
    padding: 0px 20px 0px 20px;
    background: #FFD608;
    text-decoration: none;
    text-transform: uppercase;
    font-size: 0.9em;
    color: #fff;
    font-weight: 400;
    line-height: 40px;
    cursor: pointer;
}

.team{
    width: 100%;
    min-height: 180px;
    display: block;
    padding: 0;
    margin: 0;
    overflow-x: hidden;
    overflow-y: auto;
}
.team li{
    width: 50%;
    height: 160px;
    display: block;
    float: left;
    list-style: none;
    padding: 0;
    margin: 0px 0px 20px 0px;
}
.team li .image{
    width: 120px;
    height: 160px;
    display: block;
    float: left;
    padding: 0;
    margin: 0px 0px 0px 0px;
    overflow: hidden;
}
.team li .image img{
    width: 100%;
}
.team li .top, .team li .bottom{
    width: calc(100% - 140px);
    height: 80px;
    display: block;
    float: left;
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    padding: 0px 0px 0px 20px;
}
.team li .top{
    clear: right;
}
.team a{
    font-weight: 400;
    cursor: pointer;
}

@media only screen and (max-width: 1024px) {
    .media-wrap{
        width: 100% !important;
        max-width: 100% !important; 
    }
}

@media only screen and (min-width: 1600px) {
    .box-container {
        width: 1100px !important;
        max-width: 1100px !important;
       
        margin: 0 auto; 
    }
    
    .media-wrap{
        max-width: 1300px;
    }
    
    header div:first-child{
        width: 1200px !important;
        padding-left: 0px;
        padding-right: 0px;
    }
    .box-container-float{
        width: 1200px !important;
        max-width: 1200px !important;
        margin: 0 auto; 
    }
    
    header.index{
        width: 100%;
    }
    header.index div:first-child{
        width: 1200px !important;
        padding-left: 3%;
        padding-right:3%;
    }
    .slider.index{
        //width: 1300px;
        margin: 0px auto 0px auto;
    }
}

@media only screen and (max-width: 960px) {
    
    header div:first-child{
        width: 90% !important;
        margin-left: 10px !important;
    }
    
    header.small div:first-child{
        width: 90% !important;
        margin-left: 10px !important;
    }
    
    .team li{
        width: 100% !important;
        clear: both;
    }
    .logo{
        width: 160px;
    }
    header.small .logo{
        width: 210px;
        background-size: contain;
    }
    .tmm{
        display: block;
    }
    header.small .tmm{
        margin-top: 0px !important;
    }
    header.small .tmm span{
        top: 35px !important;
    }
}

.success-box{
    width: 100%;
    display: block;
    border: 1px solid #22A62E;
    background: rgba(34,166,46,0.3);
    padding: 2% 2% 2% 2%;
    box-sizing: border-box;
    color: #22A62E;
    font-weight: 400;
}

.error-box{
    width: 100%;
    display: block;
    border: 1px solid #f44336;
    background: rgba(244,67,54,0.3);
    padding: 2% 2% 2% 2%;
    box-sizing: border-box;
    color: #f44336;
    font-weight: 400;
}

.offer label{
    display: block;
    clear: both;
    font-weight: 400;
    margin-top: 20px;
}
.offer input, .offer textarea{
    padding: 1%;
    border: 1px solid #f1f1f1;
    width: 100%;
    box-sizing: border-box;
    font-size: 1.1em;
    line-height: 30px;
    -webkit-border-radius: 0px !important;
    -webkit-appearance: none;
    font-family: 'Source Sans Pro', sans-serif !important;
    font-weight: 300 !important;
}
.offer input[type=submit]{
    margin-top: 20px;
    background: #FFD608;
    border: 1px solid #FFD608;
    cursor: pointer;
}

.scrollTop{
    position: absolute;
    width: 48px;
    height: 16px;
    display: none;
    background-color: rgba(0,0,0,0.3);
    z-index: 100001;
    color: #ECEDED;
    font-size: 10px;
    border-radius: 3px;
    bottom: 10px;
    right: 30px;
    text-align: center;
    padding-top: 30px;
    background-image: url("../interface/Up-26.png");
    background-repeat: no-repeat;
    background-position: center 4px;
    cursor: pointer;
}

.contact-form label{
    color: #3E3D40;
    display: block;
    clear: left;
    font-size: 17px;
    margin: 10px 0px 10px 0px;
    font-weight: 400;
}
.contact-form input, .contact-form textarea{
    border: 1px solid #3E3D40;
    color: #c4c4c4;
    font-size: 14px;
    height: 23px;
    display: block;
    clear: left;
    width: 100%;
    background-color: #f2f2f2;
    padding: 6px 6px 6px 6px;
    font-weight: 400;
    font-style: italic;
}
.contact-form textarea{
    height: 69px;
}
.contact-form input:hover , .contact-form textarea:hover{
    background: #fff;
    font-style: normal;
    color: #3E3D40;
    font-weight: 400;
}
.contact-form input[type="submit"]{
    background-color: #FFD608;
    color: #3E3D40;
    margin: 28px 0px 28px 2px;
    width: 120px;
    box-shadow: 0px 0px 2px 1px rgba(0,0,0,0.3);
    border-radius: 3px;
    border: none;
    font-style: normal;
    height: 31px;
    cursor: pointer;
    font-weight: 700;
}