/** Common **/
body{
    font-family: 'Open Sans', sans-serif;
}
body a{
    text-decoration: none;
    color: #00CDE1;
    transition: all .3s;
    cursor: pointer;
}
body a:hover,
body a:hover span{
    color: #00aac5;
}
.middle{
    max-width: 1140px;
}
.bx-wrapper{
    margin: 0;
    box-shadow: none;
    border: none;
}
.bx-wrapper .bx-controls-direction a{
    width: 30px;
    height: 10px;
    opacity: 1;
}
.bx-wrapper .bx-prev{
    background: url('../img/arrow.png') no-repeat;
    left: 80px;
}
.bx-wrapper .bx-next{
    background: url('../img/arrow.png') no-repeat;
    right: 80px;
    transform: rotate(180deg);
}
.bx-wrapper .bx-next:hover, .bx-wrapper .bx-next:focus{
    background-position: 0 0;
}
.bx-wrapper .bx-controls-direction a.bx-next.disabled,
.bx-wrapper .bx-controls-direction a.bx-prev.disabled{
    opacity: 0.2;
}
/** Top panel **/
#top-panel{
    background: #292929;
    height: 40px;
    display: flex;
    align-items: center;
    align-content: center;
    flex-direction: row;
    justify-content: center;
    transition: all .5s;
	opacity:90%;
}
#top-panel.fixed{
    position: fixed;
    z-index: 10;
    width: 100%;
    top: 0;
    left: 0;
}
#top-panel .middle{
    display: flex;
    flex: 0 1 100%;
    align-items: center;
    align-content: center;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: space-between;
}
#top-panel .socials .social{
    text-decoration: none;
    opacity: 0.5;
}
#top-panel .socials .social.fb,
#top-panel .socials .social.ig{
    margin-right: 5px;
}
#top-panel .socials .social:hover{
    opacity: 1;
}
#top-panel .contacts{
    display: flex;
    align-items: center;
    align-content: center;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: space-between;
}
#top-panel .contact-phone{
    text-decoration: none;
    font-size: 12px;
    color: white;
    margin: 0 15px;
    cursor: default;
}
#top-panel .contact-phone.first{
    position: relative;
}
#top-panel .contact-phone.first:before{
    content: '';
    display: block;
    background-size: contain;
    background-image: url('../img/phone-blue.svg');
    background-repeat: no-repeat;
    width: 14px;
    height: 12px;
    position: absolute;
    left: -25px;
}
#top-panel .contact-phone.first:after{
    content: '|';
    display: block;
    position: absolute;
    right: -20px;
    top: -1px;
}
#top-panel .contacts .callback{
    color: #00cde1;
    font-size: 12px;
    text-transform: uppercase;
    border-bottom: dashed 1px;
    padding-bottom: 2px;
    box-sizing: border-box;
    cursor: pointer;
    transition: all .3s;
}
#top-panel .contacts .callback:hover{
    color: #00aac5;
}
#top-panel .shop-btn{
    line-height: 23px;
    color: white;
    padding: 0 20px;
    font-size: 11px;
    margin-left: 15px;
}

/** Header **/
header{
    display: flex;
    align-items: center;
    align-content: center;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: center;
    padding: 35px 0;
}
header .middle{
    display: flex;
    flex: 0 1 100%;
    align-items: center;
    align-content: center;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: space-between;
}
nav{
    display: flex;
    align-items: center;
    align-content: center;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: right;
}
nav .nav-item{
    color: #292929;
    text-decoration: none;
    font-size: 11px;
    text-transform: uppercase;
    margin: 0 10px;
}
nav .nav-item:hover,
nav .nav-item.active{
    color: #00cde1;
}
nav .nav-item.nav-shop{
    width: 140px;
    height: 30px;
    line-height: 30px;
    color: white;
    background: linear-gradient(271deg, #00cde1, #ff0007);
    background-size: 400% 400%;
    border-radius: 15px;
    text-align: center;
    text-transform: uppercase;
    transition: all .3s;
    -webkit-animation: ShopButtonAnimate 3s ease infinite;
    -moz-animation: ShopButtonAnimate 3s ease infinite;
    animation: ShopButtonAnimate 3s ease infinite;
}
nav .nav-item.nav-shop:hover{
    border-radius: 10px;
}
@-webkit-keyframes ShopButtonAnimate {
    0%{background-position:91% 0%}
    50%{background-position:10% 100%}
    100%{background-position:91% 0%}
}
@-moz-keyframes ShopButtonAnimate {
    0%{background-position:91% 0%}
    50%{background-position:10% 100%}
    100%{background-position:91% 0%}
}
@keyframes ShopButtonAnimate {
    0%{background-position:91% 0%}
    50%{background-position:10% 100%}
    100%{background-position:91% 0%}
}
nav .close{
    display: none;
    width: 23px;
    height: 23px;
    background-image: url('../img/close.png');
    position: absolute;
    top: 20px;
    right: 20px;
    cursor: pointer;
}
nav .close:hover{
    background-image: url('../img/close-hover.png');
}
header .menu{
    display: none;
    width: 35px;
}
header .menu .line{
    width: 100%;
    height: 5px;
    background: #292929;
}
header .menu .line:not(:last-child){
    margin: 0 0 5px;
}

.blue-button{
    background: #00cde1;
    color: white;
    border-radius: 15px;
    text-align: center;
    text-transform: uppercase;
    transition: all .3s;
}
.blue-button:hover{
    color: white;
    background: #00aac5;
    box-shadow: 0 2px 2px rgba(37,34,35,0.2);
}

#about{
    display: flex;
    align-items: center;
    align-content: center;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: center;
    height: 600px;
    margin: 0 0 80px;
}
#about .middle{
    background-repeat: no-repeat;
    background-size: cover;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}
#about .title,
#projects .title{
    color: white;
    font-size: 36px;
    font-weight: 300;
    text-align: center;
    line-height: 50px;
}
#about .title b,
#projects .title .bold{
    font-weight: 400;
}

#about .title .shop-link {
    margin: 30px auto 0;
    width: 235px;
    height: 40px;
    display: block;
	background: #00cde191;
    line-height: 40px;
    border-radius: 20px;
    font-weight: 400;
    font-size: 14px;
}

#about .title .shop-link:hover {
    width: 300px;
}

#projects .project{
    background-size: cover;
    width: 100%;
    height: 550px;
}
#projects .overlay{
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    background: rgba(0,0,0,0.5);
}
#projects .title-block{
    display: flex;
    align-items: center;
    flex-direction: column;
}
#projects .title-block .all-url{
    font-weight: 400;
    font-size: 14px;
    height: 40px;
    width: 245px;
    border-radius: 20px;
    line-height: 40px;
    margin: 35px 0 0;
}

#sale{
    background: #f0f0f0;
    height: 560px;
    padding: 80px 0;
    box-sizing: border-box;
    display: flex;
    justify-content: center;
}
#sale .middle{
    display: flex;
    flex-direction: row;
    width: 100%;
    justify-content: space-between;
}
#sale .sale-img{
    width: 560px;
}
#sale .sale-img img{
    max-width: 100%;
}
#sale .sale-info{
    width: 450px;
    color: #292929;
    font-size: 14px;
    font-weight: 300;
    display: flex;
    flex-direction: column;
    align-items: left;
    align-content: center;
    justify-content: center;
}
#sale .sale-info .sale-title{
    font-weight: 400;
    font-size: 24px;
}
#sale .sale-info .sale-desc{
    line-height: 25px;
    margin: 25px 0;
}
#sale .sale-info .sale-detail{
    text-decoration: none;
    width: 165px;
    height: 35px;
    border-radius: 20px;
    line-height: 35px;
}

#gallery{
    padding: 80px 0 60px;
    box-sizing: border-box;
    height: 500px;
    display: flex;
    justify-content: center;
}
#gallery .middle{
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
}
#gallery .title{
    color: #292929;
    font-size: 24px;
    font-weight: 300;
}
#gallery .gal-block{
    display: flex;
    margin: 30px 0;
    flex-direction: row;
    width: 100%;
    justify-content: space-between;
    flex-wrap: wrap;
}
#gallery .gal-item{
    flex-wrap: wrap;
    width: 265px;
    height: 235px;
    overflow: hidden;
    position: relative;
    text-align: center;
}
#gallery .gal-item img{
    max-width: 100%;
    max-height: 100%;
    margin: 0 auto;
}
#gallery .gal-item:hover .hover-block{
    display: flex;
}
#gallery .gal-item .hover-block{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: rgba(0,0,0,0.7);
    transition: all .3s;
}
#gallery .gal-item .hover-block .gal-title{
    color: white;
    font-size: 20px;
    font-weight: 300;
    margin: 0 0 20px;
    text-align: center;
    line-height: 25px;
}
#gallery .gal-item .hover-block .gal-see{
    font-weight: 400;
    font-size: 14px;
    height: 35px;
    width: 165px;
    border-radius: 20px;
    line-height: 33px;
    box-sizing: border-box;
}
#gallery .gal-more{
    font-size: 13px;
    font-weight: 300;
}

#news{
    padding: 50px 0;
    box-sizing: border-box;
    display: flex;
    justify-content: center;
    background: #f0f0f0;
}
#news .middle{
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
}
#news .title{
    color: #292929;
    font-size: 24px;
    font-weight: 300;
    margin: 0 0 35px;
}
#news .news-list{
    display: flex;
    flex-direction: row;
    width: 100%;
    justify-content: space-between;
}
#news .news-item{
    width: 360px;
    background: white;
    border-bottom: solid 1px transparent;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    transition: all .3s;
}
#news .news-item .image-news{
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}
#news .news-item:hover{
    border-bottom: solid 1px #00cde1;
    box-shadow: 0 2px 5px rgba(84, 84, 84, 0.5);
}
#news .news-img{
    max-width: 100%;
    max-height: 100%;
}
#news .news-info{
    padding: 35px 25px 0;
    flex-grow: 2;
}
#news .news-title{
    color: #292929;
    font-size: 18px;
    line-height: 22px;
    margin: 0 0 20px;
    display: block;
    text-decoration: none;
}
#news .news-desc{
    color: #292929;
    font-size: 14px;
    line-height: 20px;
    margin: 0 0 35px;
    font-weight: 300;
}
#news .news-date{
    color: #9e9e9f;
    font-size: 12px;
    padding: 0 25px 25px;
}
#news .all-news{
    font-weight: 300;
    font-size: 13px;
    margin: 30px 0 0;
}

#seo{
    padding: 0 0 60px;
    box-sizing: border-box;
    display: flex;
    justify-content: center;
    position: relative;
    height: 400px;
    overflow: hidden;
    transition: all .5s;
}
#seo.active {
    height: 535px;
}
#seo .middle{
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    position: relative;
}
#seo .seo-text{
    height: 100%;
    overflow: hidden;
}
#seo .seo-title{
    color: #292929;
    margin: 0 0 30px;
    line-height: 35px;
    font-size: 30px;
}
#seo .seo-paragraph{
    font-size: 14px;
    font-weight: 300;
    line-height: 21px;
    margin: 0 0 20px;
}
#seo .seo-more{
    position: absolute;
    bottom: -20px;
    right: 0;
    font-size: 13px;
    color: #292929;
    font-weight: 300;
    border-bottom: dashed 1px;
    padding-bottom: 2px;
    box-sizing: border-box;
    cursor: pointer;
    transition: all .5s;
}
#seo:not(.active) .seo-more .close{
    display: none;
}
#seo.active .seo-more .open{
    display: none;
}
#seo .seo-after{
    position: absolute;
    display: block;
    left: 0;
    bottom: -1px;
    width: 100%;
    height: 175px;
    border: none;
    background: url(../img/seo-txt.png) 50% 0 repeat-x;
    text-align: center;
    z-index: 2;
    transition: all .5s;
}

footer .middle{
    width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
}
footer .top-footer{
    display: flex;
    justify-content: center;
    padding: 30px 0;
    background: #f0f0f0;
}
footer .site-block{
    width: 170px;
}
footer .footer-logo{
    margin: 0 0 15px;
}
footer .site-name{
    color: #292929;
    font-size: 12px;
    font-weight: 300;
}
footer .footer-nav{
    width: 200px;
}
footer .footer-nav-item{
    display: block;
    font-size: 10px;
    color: #292929;
    text-decoration: none;
    margin: 0 0 15px;
}
footer .footer-nav-item.active,
footer .footer-nav-item:hover{
    color: #00cde1;
}
footer .footer-phones{
    width: 255px;
}
footer .title{
    color: #292929;
    font-size: 10px;
    text-transform: uppercase;
    margin: 0 0 25px;
}
footer .footer-phones .phones-blocks{
    display: flex;
    justify-content: space-between;
}
footer .footer-phone,
footer .footer-email{
    color: #292929;
    font-size: 12px;
    text-decoration: none;
    display: block;
}
footer .footer-phone:not(:last-child),
footer .footer-email:not(:last-child){
    margin: 0 0 15px;
}
footer .footer-feedback{
    width: 160px;
}
footer .footer-feedback a{
	text-decoration: none;
}
footer .bottom-footer{
    display: flex;
    justify-content: center;
    padding: 15px 0;
    background: #292929;
}
footer .bottom-footer .middle{
    align-items: center;
}
footer .footer-copyright{
    color: white;
    font-weight: 300;
    font-size: 11px;
}

#content{
    box-sizing: border-box;
    display: flex;
    justify-content: center;
}
#content .middle{
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    position: relative;
}

table:not(.clear){
    width: 100%;
    margin: 0 0 35px;
}
table:not(.clear) thead th{
    background-color: #00cde1;
    padding: 15px 40px;
    color: white;
    font-size: 14px;
    text-align: center;
}
table:not(.clear) tbody{
    color: #292929;
    font-size: 14px;
    font-weight: 300;
}
table:not(.clear) tbody td{
    padding: 20px;
    border: solid 1px #f0f0f0;
    border-top: none;
}
table:not(.clear) tbody p {
    margin: 0 0 20px;
}

.transp-button{
    text-decoration: none;
    color: white;
    border: solid 1px white;
    text-align: center;
    text-transform: uppercase;
    box-sizing: border-box;
}
.transp-button:hover{
    background: white;
    color: black;
}

.hover-block{
    display: none;
}
.hover-block.active{
    display: flex;
}
.more-link{
    text-decoration: none;
    color: #292929;
    position: relative;
}
.more-link:hover{
    color: #00cde1;
}
.more-link:after{
    content: '';
    background-image: url('../img/small-arrow.png');
    background-repeat: no-repeat;
    width: 11px;
    height: 9px;
    display: block;
    position: absolute;
    top: 5px;
    right: -20px;
}
.more-link:hover:after{
    background-image: url('../img/small-arrow-hover.png');
}

#main-overlay{
    width: 100%;
    height: 100%;
    background: black;
    opacity: 0.7;
    top: 0;
    left: 0;
    position: absolute;
    z-index: 10000;
    display: none;
}
#contact-form{
    display: none;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 615px;
    height: 400px;
    background: white;
    z-index: 10001;
    align-items: center;
    justify-content: center;
    text-align: center;
}
#contact-form.active{
    display: flex;
}
#contact-form .title{
    color: #292929;
    font-size: 24px;
    margin: 0 0 24px;
}
#contact-form .title-help{
    font-size: 14px;
    font-weight: 300;
}
#contact-form .response-message,
#contact-form .response-message .message{
    display: none;
}
#contact-form form{
    margin: 25px 0 0;
}
#contact-form .field{
    height: 55px;
    position: relative;
}
#contact-form .field:first-child{
    margin: 0 0 30px;
}
#contact-form .field .input-field{
    height: 35px;
    display: block;
    width: 100%;
    border: none;
    border-bottom: solid 1px #9e9e9f;
    font-size: 14px;
    color: #292929;
    padding: 0 10px;
    box-sizing: border-box;
}
#contact-form .field.error .input-field{
    border-bottom: solid 1px #D20006;
}
#contact-form .field .input-field:focus{
    border: none;
    border-bottom: solid 1px #00cde1;
    outline: none;
}
#contact-form .field .form-label{
    color: #9e9e9f;
    font-size: 14px;
    font-weight: 300;
    position: absolute;
    left: 10px;
    top: 10px;
    transition: all 0.5s;
}
#contact-form .field.error .form-label{
    color: #D20006;
}
#contact-form .field .input-field:focus + .form-label,
#contact-form .field .form-label.active{
    color: #00cde1;
    top: -10px;
}
#contact-form .submit-button{
    width: 100%;
    height: 50px;
    border-radius: 30px;
    border: none;
}
#contact-form .submit-button:focus{
    outline: none;
}
#contact-form .close{
    width: 23px;
    height: 23px;
    background-image: url('../img/close.png');
    background-size: cover;
    position: absolute;
    top: 20px;
    right: 20px;
    cursor: pointer;
}
#contact-form .close:hover{
    background-image: url('../img/close-hover.png');
}
.fancybox-caption-wrap{
    background: none;
    opacity: 1;
    visibility: visible;
}
.fancybox-caption{
    border-top: none;
}
.fancybox-show-nav .fancybox-navigation,
.fancybox-navigation{
    display: flex;
    width: 100%;
    justify-content: center;
}
.fancybox-navigation button{
    width: 30px;
    height: 9px;
    padding: 0;
    margin: 0;
    background-image: url('../img/arrow.png');
    background-repeat: no-repeat;
}
.fancybox-navigation button:before{
    display: none;
}
.fancybox-navigation .fancybox-button--arrow_left {
    left: -30px;
}
.fancybox-navigation .fancybox-button--arrow_right{
    transform: rotate(180deg);
}
#map{
    height: 600px;
    margin: 80px auto;
    width: 90%;
}
#map-legend,
#map-legend-mobile{
    background: rgba(60, 60, 59, 0.9);
    width: 32%;
    height: 35%;
    color: white;
    font-family: 'Open Sans', sans-serif;
    margin: 0 0 0 5%;
    box-sizing: border-box;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
}
#map-legend-mobile{
	display: none;
}
#map-legend .contacts,
#map-legend-mobile .contacts{
    display: flex;
    flex-direction: column;
    width: 80%;
}
#map-legend .contacts .contact-item,
#map-legend-mobile .contacts .contact-item{
    display: flex;
    flex-direction: row;
    margin: 0 0 15px;
}
#map-legend .contacts .contact-item .label,
#map-legend-mobile .contacts .contact-item .label{
    width: 45%;
    font-size: 13px;
    font-weight: 300;
}
#map-legend .contacts .contact-item .info,
#map-legend-mobile .contacts .contact-item .info{
    font-size: 12px;
}
#map-legend .contacts .contact-item .info .row,
#map-legend-mobile .contacts .contact-item .info .row{
    display: block;
    line-height: 19px;
}
#map-legend .contacts .contact-item .info a.row,
#map-legend-mobile .contacts .contact-item .info a.row{
    color: white;
    text-decoration: none;
}

#error-page{
    text-align: center;
    padding: 80px 0 125px;
}
#error-page .title{
    font-size: 20px;
    margin: 0 0 20px;
}

#load-more{
    margin: 20px auto;
    border: solid 1px #00CDE1;
    color: #00CDE1;
    border-radius: 20px;
    width: 200px;
    display: block;
    padding: 5px;
    font-size: 14px;
    height: 30px;
    line-height: 18px;
}
#load-more:hover{
    background: #00cde1;
    color: white;
}

#to-top{
    display: none;
    width: 40px;
    height: 40px;
    position: fixed;
    right: 20px;
    bottom: 20px;
    border: solid 1px #00aac5;
    border-radius: 100%;
    background: white;
    cursor: pointer;
    z-index: 10;
}
#to-top .fa{
    color: #00aac5;
    position: absolute;
    top: 9px;
    left: 11px;
    font-size: 20px;
}

.bx-wrapper .gallery-item img{
    max-height: 100%;
    margin: 0 auto;
}

#no-info{
    margin: 20px 0 30px;
}