@charset "utf-8";

@font-face {
	font-family: 'Bebas';
	src: url('../fonts/BebasNeueBook.ttf')  format('truetype');
    font-weight: 300;
    font-style: normal;
}
@font-face {
	font-family: 'Bebas';
	src: url('../fonts/BebasNeueRegular.ttf')  format('truetype');
    font-weight: 400;
    font-style: normal;
}
@font-face {
	font-family: 'Bebas';
	src: url('../fonts/BebasNeueBold.ttf')  format('truetype');
    font-weight: 600;
    font-style: normal;
}

@font-face {
	font-family: 'RobotoCondensed';
	src: url('../fonts/RobotoCondensed-Light.ttf')  format('truetype');
    font-weight: 300;
    font-style: normal;
}
@font-face {
	font-family: 'RobotoCondensed';
	src: url('../fonts/RobotoCondensed-Regular.ttf')  format('truetype');
    font-weight: 400;
    font-style: normal;
}
@font-face {
	font-family: 'RobotoCondensed';
	src: url('../fonts/RobotoCondensed-Bold.ttf')  format('truetype');
    font-weight: 700;
    font-style: normal;
}

html {
    font-size: 10px;
    position: relative;
    min-height: 100%;
}
/*Сбрасываем отступы body, подключаем шрифт*/
body {
    font-size: 1.7rem;
    margin: 0 0 190px 0;
    font-family: 'Bebas', sans-serif;
    font-weight: 400;
/*    background: url(../img/hxg2.png) no-repeat;*/
    background: url(../img/gray-treangle-bg3.png) no-repeat;
    background-position: right 0;
}
/*Размеры элементов учитывают рамки*/
*, *:before, *:after {
    -webkit-box-sizing: border-box; 
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}
/*Делаем HTML5 элементы блочными для старых браузеров*/
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block;
}

h1,h2,h3,h4,h5,h6 {
    margin-top: 0;
}
h1 {
    color: rgba(39, 41, 41, 0.95);
    padding-bottom: 10px;
    font-size: 3.4rem;
}
h2 {  
    color: rgba(95, 95, 95, 1);
    font-size: 2.5rem;
}
h3,h4 {
    font-size: 2.2rem;
    color: rgb(105, 105, 105);
    margin-bottom: 20px;
}
h5,h6 {
    font-size: 1.9rem;
    color: rgba(173, 167, 0, 0.9);
    margin-bottom: 20px;
}
p {
    color: #252525;
}
a {
    color: rgba(173, 167, 0, 1);
}
/*=====Flex-box элементы=====*/

/*Делаем элемент flex*/
.dfb {
    display: flex; 
}

/*Направления*/
.fdr {
    flex-direction: row;    /*В строку*/
}
.fdrr {
    flex-direction: row-reverse;    /*Реверс строка*/     
}
.fdc {
    flex-direction: column;    /*В колонку*/
}
.fdcr {
    flex-direction: column-reverse;    /*Реверс в колонку*/
}

/*Горизонтальное выравнивание*/
.jcfs {
    justify-content: flex-start;    /*К началу*/
}
.jcfe {
    justify-content: flex-end;    /*К концу*/
}
.jcc {
    justify-content: center;    /*К центру*/
}
.jcsb {
    justify-content: space-between;    /*Равномерно по блоку*/
}
.jcsa {
    justify-content: space-around;    /*Равномерно с отступами по краям*/
}

/*Вертикальное выравнивание*/
.aifs {
    align-items: flex-start;    /*Прижат к верху*/
}
.acfe {
    align-content: flex-end;    /*Прижат к низу*/
}
.aic {
    align-items: center;    /*По центру*/
}
.aib {
    align-items: baseline;    /*По базовой линии*/
}
.ais {
    align-items: stretch;    /*Растягиваются по высоте*/
}

/*=====Основные элементы=====*/

.header {    /*Шапка сайта*/
    position: relative;
    padding: 45px 0 95px;
    margin-bottom: 15px;
    background: url(../img/black-dot.png) repeat, url(../img/aspiracia-bg2.jpg) no-repeat;
    -webkit-background-size: auto, cover;
    background-size: auto, cover;
}

.content {    /*Блок со статьей*/
    padding: 20px 15px 20px 5px;
    flex: 0 1 100%;
}

.content p {
    font-family: 'RobotoCondensed', sans-serif;
    font-size: 1.6rem;
}
.sidebar {    /*Боковая колонка*/
    padding: 20px 0 20px 25px;
    flex: 0 0 280px;
}

.footer {    /*Подвал*/
    position: absolute;
    bottom: 0;
    width: 100%;
    height: 160px; 
    padding: 30px 0;
    background: linear-gradient(to bottom,#080808,#151515);
}

/*===== Дополнительные элементы =====*/

.clear {
    clear: both;
}
.centro {
    max-width: 1300px;
    margin: auto;
    padding: 0 20px;
}


.address {
    float: right;
    text-align: right;
    padding: 0 0 20px;
    margin: 0 10px 0 0;
}
.address a {
    display: block;
    text-decoration: none;
    font-size: 2.8rem;
    margin-bottom: 7px;
    color: #fff;
    text-shadow: 0 2px 8px rgba(0,0,0,.8), 0 10px 40px rgba(0,0,0,.6);
}
.address .tel {
    font-size: 3.4rem;
}
.address .mail {
    font-size: 2.2rem;
}
.breadcrumbs {
    margin: 0 0 10px 0;
    padding: 3px 5px;
    list-style: none;
    color: #333;
    font-size: 12px;
}
.breadcrumbs li {
    display: inline-block;
}
.breadcrumbs li a {
    color: #fff;
}

/*Адаптивность через flex шапки сайта*/
.f-header {
    display: -ms-flex;
    display: flex;
    justify-content: space-between; 
    -ms-align-items: center;
    align-items: center;
}
.f-article {
    display: -ms-flex;
    display: flex;
}

/* Услуги на главной */
.a-list {
    margin: 20px 0 30px 0;
    padding: 0;
    list-style: none;
    text-align: center;
}
.a-list .block {
    display: inline-block;
    margin: 0 20px;
    font-size: 1.5rem;
}
.a-list .block .pod-img {
    position: relative;
    overflow: hidden;
    width: 110px;
    height: 110px;
    margin: 0 auto 5px;
    display: block;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: -webkit-box;
    display: flex;
    -ms-flex-pack: center;
    -webkit-justify-content: center;
    -webkit-box-pack: center;
    justify-content: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    -webkit-box-align: center;
    align-items: center;
    border-radius: 100px;
    background: #af4f48;
}
.a-list .block .name {
/*
    position: absolute;
    bottom: 30px;
*/
    font-size: 1.9rem;
    text-decoration: none;
}
.a-list .block:before {
    content: '';
}

.posr {
    position: relative;
}

.kid {
    display: block;
    float: right;
    width: 140px;
    height: 100px;
    margin: 0 80px 0 0;
    border: solid 2px #34a3de;
    background: url(../img/kid.gif) no-repeat center;
}

.com-name {
    float: left;
    color: #fff;
    margin-top: 10px;
    margin-left: 90px;
    text-shadow: 0 2px 8px rgba(0,0,0,.8), 0 10px 40px rgba(0,0,0,.6);
}
.com-name .year {
    font-size: 4.8rem;
}
.com-name ul {
    list-style: none;
    margin: 8px 0 0 15px;
    padding: 0;
    font-size: 2.1rem;
}
.com-name ul li {
    margin-bottom: 5px; 
    padding-left: 35px;
}
.com-name ul li:nth-child(1) {
    background: url(../img/p1.png) no-repeat left;
}
.com-name ul li:nth-child(2) {
    background: url(../img/p2.png) no-repeat left;
}
.com-name ul li:nth-child(3) {
    background: url(../img/p3.png) no-repeat left;
}

.footer-address {
    float: right;
    color: #fff;
}
.footer-address .name {
    font-size: 2.4rem;
    margin-bottom: 5px;
}
.footer-address a {
    color: #fff;
}
.footer-address span {
    display: block;
    margin-bottom: 3px;
}

.as-txt {
    font-size: 3rem;
    color: #fff;
    text-align: center;
    max-width: 400px;
    margin: 0 0 0 100px;
    float: left;
    text-shadow: 0 2px 8px rgba(0,0,0,.8), 0 10px 40px rgba(0,0,0,.6);
}
.hold-prod-line .prod-line {
    margin-top: -85px;
}
.hold-prod-line .prod-line .line-title {
    text-align: center;
}
.prod-line {
    margin: 0 0 20px 0;
}
.prod-catalog {
    margin-bottom: 50px;
}

.prod-line a {
    vertical-align: top;
    position: relative;
    display: inline-block;
    text-align: left;
    width: 210px;
    color: rgba(95, 95, 95, 0.9);
    font-size: 1.6rem;
    text-decoration: none;
    -webkit-background-size: contain;
    background-size: contain;
    padding: 10px 10px 5px 10px;
    margin: 0 5px 5px 0;
    background: rgba(255, 255, 255, 1);
    border: solid 1px rgba(39, 41, 41, 0.83);
    box-shadow: 0 0 10px rgba(106, 106, 106, 0.4), 0 0 40px rgba(106, 106, 106, 0.4);
}
.prod-line a:hover {
    outline: solid 2px rgba(173, 167, 0, 0.9);
    border: solid 1px rgba(173, 167, 0, 0.9);
}
.prod-line a img {
    float: left;
    width: 100%;
    max-width: 100px;
    margin: 0 8px 8px 0;
}
.prod-line a .line-title {
    display: block;
    font-size: 2.2rem;
    clear: both;
    color: rgba(173, 167, 0, 0.9);
}
.prod-line a:hover .line-title {
    color: rgba(191, 185, 2, 0.9);
}
.prod-catalog a .line-title {
    font-size: 2rem;
}
.any {
    background: url(../img/any.png) no-repeat center;
    -webkit-background-size: contain;
    background-size: contain;
    padding: 0 25px;
}
.hexagon-bg {
/*    background: url(../img/hxg.png) no-repeat left top;*/
}

.gallery-btn {
    display: block;
    text-align: center;
}
.gallery-btn img {
/*    display: block;*/
    margin-bottom: 5px;
}

/*Каталог оборудовния*/
.catalog-prod {
    
}
.catalog-prod ul {
    list-style: none;
    margin: 0;
    padding: 0;
    text-align: center;
}
.catalog-prod ul li {
    display: inline-block;
    margin: 0 5px 15px 0; 
    max-width: 125px;
    vertical-align: top;
}
.catalog-prod ul li .pod-img {
    display: -ms-flexbox;
    display: -webkit-flex;
    display: -webkit-box;
    display: flex;
    -ms-flex-pack: center;
    -webkit-justify-content: center;
    -webkit-box-pack: center;
    justify-content: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    -webkit-box-align: center;
    align-items: center; 
    width: 125px;
    height: 140px;  
    background: url(../img/icon-frame4.png) no-repeat top;
}
.catalog-prod ul li a {
    
}
.catalog-prod ul li a img {
    max-width: 95px;
}

/*Боковой каталог*/
.side-catalog {
    margin: 50px 0 0 0;
}
.side-catalog h4 {
    font-size: 2rem;
    margin-bottom: 15px;
}
button.accordion {
    font-family: 'Bebas', sans-serif;
    background-color: #eee;
    color: #444;
    cursor: pointer;
    padding: 12px;
    width: 100%;
    border: none;
    text-align: left;
    outline: none;
    font-size: 1.7rem;
    transition: 0.4s;
    margin: 0 0 3px 0;
}

button.accordion.active, button.accordion:hover {
    background-color: #ddd;
}

button.accordion:after {
    content: '\002B';
    color: #777;
    font-weight: bold;
    float: right;
    margin-left: 5px;
}

button.accordion.active:after {
    content: "\2212";
}

div.panel {
    padding: 0 18px;
    background-color: white;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.2s ease-out;
}
div.panel a {
    display: block;
    padding: 10px 0;
}

.breadcrumb {
    margin: 0 0 20px 0;
    padding: 3px 5px;
    list-style: none;
    font-size: 1.4rem;
}
.breadcrumb li {
    display: inline-block;
}
.breadcrumb li a {
    color: rgba(39, 41, 41, 0.95);
}
table {
    width: 100%;
    margin-bottom: 30px;
}
table,table td {
    border: solid 1px rgba(95, 95, 95, 1);
    text-align: center;
}
table td {
    padding: 5px;
}
table tr:nth-child(odd) {
    background: rgba(95, 95, 95, 0.1);
}
table tr:nth-child(even) {
    background: rgba(173, 167, 0, 0.1);
}
.content-foto {
    margin: 0;
}
.content-foto figcaption {
    color: rgba(173, 167, 0, 1);
    font-style: italic;
    font-size: 1.5rem;
}
.content-foto img {
    border: none;
}
.price {
    font-size: 2.7rem;
    color: rgba(39, 41, 41, 0.95);
}
.price b {
    color: rgba(173, 167, 0, 0.9);
}

.order-btn {
    display: block;
    text-align: center;
    font-family: 'Bebas', sans-serif;
    border: solid 1px rgba(39, 41, 41, 0.83);
    box-shadow: 0 0 10px rgba(106, 106, 106, 0.4), 0 0 40px rgba(106, 106, 106, 0.4);
    padding: 10px 0;
    font-size: 1.8rem;
    /* width: 80%; */
    margin: 20px auto;
    color: #fff;
    cursor: pointer;
    background: url(../img/black-dot-50.png), linear-gradient(to bottom,rgba(39, 41, 41, 0.9),rgba(173, 167, 0, 0.9));
}
.order-btn:hover {
    background: linear-gradient(to bottom,rgba(75, 78, 78, 0.9),rgba(191, 184, 3, 0.9));
}
.order-btn:active {
    position:relative;
	top:1px;
}
.order-box {
    clear: both;
}
.order-box .head-foto {
    float: left;
    margin: 0 15px 10px 0;
    position: relative;
    cursor: zoom-in;
}
.order-box .head-foto:before {
    content: '\f00e';
    position: absolute;
    bottom: 10px;
    right: 10px;
    color: #fff;
    font-family: FontAwesome;
}
.order-box .order-btn {
    display: inline-block;
    width: auto;
    padding: 11px 40px;
}
.order-box h1 {
    margin-bottom: 10px;
}
.alert {
    position: relative;
    border-left: solid 2px #af4f48;
    padding-left: 5px;
}
.alert:before {
    position: absolute;
    content: '\f071';
    color: #af4f48;
    font-size: 1rem;
    left: -25px;
    top: 5px;
    font-family: FontAwesome;
}
.price-hint {
    margin: 10px 0 0 0;
    font-size: 1.4rem;
    color: #6f6f6f;
}
.link-holder {
    margin-top: 50px;
}
.pod-links img {
    float: left;
}
.map-holder {
    width: 100%;
    max-width: 905px;
}
.map-holder img {
    width: 100%;
} 
.count {
    float: right;
    margin: 0 100px 0 0;
}

.form-search {
    width: 100%;
}

.adapt-t {
    width: 100%;
    position: relative;
    overflow-y: auto;
}

@media (max-width: 1024px) {
    .adapt-t {
        background-image: linear-gradient(0deg, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.2) 50%, rgba(0, 0, 0, 0)), linear-gradient(0deg, rgba(255, 255, 255, 0), rgba(255, 255, 255, 0.25) 50%, rgba(255, 255, 255, 0.25));
        background-repeat: no-repeat, no-repeat;
        background-position: right 100%, right 100%;
        background-size: 4px 100%, 4px 100%;
        background-origin: padding-box, border-box;
        border-bottom: 1px solid transparent;
        -webkit-box-shadow: inset 0px 0px 5px 0px rgba(50, 50, 50, 0.75);
        -moz-box-shadow: inset 0px 0px 5px 0px rgba(50, 50, 50, 0.75);
        box-shadow: inset 0px 0px 5px 0px rgba(50, 50, 50, 0.75);
    }
    .adapt-t table {
        width: 100% !important;
    }
}

.adapt-t::-webkit-scrollbar-track
{
	-webkit-box-shadow: inset 0 0 6px rgba(0,0,0,0.3);
	border-radius: 10px;
	background-color: #F5F5F5;
}

.adapt-t::-webkit-scrollbar
{
    width: 9px;
	height: 9px;
	background-color: #F5F5F5;
}

.adapt-t::-webkit-scrollbar-thumb
{
	border-radius: 10px;
	-webkit-box-shadow: inset 0 0 6px rgba(0,0,0,.3);
	background-color: #555;
}
.copy {
    font-size: 1.4rem;
}