@charset  "UTF-8";

/*  Базовый контейнер выдвижной панели */
.top-panel {
	background: rgba(255, 255, 255, 0.9);
    /*position: fixed;
    top: 0px;*/
    left: 0;
    width: 100%;
    /*height: 39px;*/
    padding: 0;
	z-index: 9999;
    box-shadow: 0 2px 5px 0 rgba(0,0,0,0.16),0 2px 10px 0 rgba(0,0,0,0.12);
    transition: top 400ms cubic-bezier(0.17,0.04,0.03,0.94);
	border-bottom: 1px solid #06557e;
}

/* Переключатель панели */
label.btn {
    display: block;
    position: fixed;
    right: 50px;
    top: 0;
    cursor: pointer;
    border-radius: 0 0 8px 8px;
    padding: 2px 10px;
    color: #FFF;
    line-height: 20px;
    font-size: 12px;
	font-family: Verdana, Geneva;
    text-align: center;
    -webkit-font-smoothing: antialiased;
    cursor: pointer;
    transition: all 400ms cubic-bezier(0.17,0.04,0.03,0.94);
    box-shadow: 0 2px 5px 0 rgba(0,0,0,0.16),0 2px 10px 0 rgba(0,0,0,0.12);
    z-index: 9999;
	/*background: #ef7c00;*/
	background: #c79c6e;
}
/* Переключатель при наведении */
label.btn:hover {
    box-shadow: 0 5px 11px 0 rgba(0,0,0,0.18),0 4px 15px 0 rgba(0,0,0,0.15);
	color: #333;
}

/* Активация панели */
.open:checked ~ .top-panel {
    top: 0;
	z-index: 9999;
}

.open:checked ~ label.btn {
    top: 100px
}

.panel_txt{
    text-align: center;
    color: #2c3144;
	/*float:left;
	width: 100%;*/
    padding: 20px 10px;
    border-bottom: 2px solid #ffffff;
}

div.panel_txt:after {
    content:'';
    width: 2px;
    height: 75%;
    background: #808080;
    position:absolute;
    right: 0px;
    top: 15%;
}

div.panel_txt:last-child:after {
    width: 0;
}

.panel_txt p{
    text-align: center;
	line-height: 2.1;
	font-size: 18px;
}

.panel_txt:hover {
    background: rgba(10, 0, 0, 0.15);
	border-radius: 0px;
	cursor: pointer;
    border-bottom: 2px solid #c79c6e;
    box-sizing: border-box;
}

/*.container {
    width: 1170px;
    margin-right: auto;
	margin-left: auto;
}*/

.sticky-content.fixed{
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 9999;
}
/*.top-panel a {
    width: 16%;
}*/
@media (max-width: 1172px){
    .container{
	    width: 100%;
	}
}

@media (max-width: 760px){
    .offices1{
        display: none;
    }
    .panel_txt p{
        font-size: 14px;
    }
    /*.top-panel {
        height: 30px;
    }*/
}

@media (max-width: 560px){
    .panel_txt
	{
	    width: 50%;
	}
	.panel_txt p
	{
	    font-weight: 600;
		line-height: 1.5em;
        padding-top: 4px;
        /*font-size: 8px;*/
    }
    /*.top-panel {
        height: 54px;
    }*/
}