#block-header {
    position: absolute;
    background: transparent;
    width: 100%;
    height: 100px;
    z-index: 998;
    padding: 15px 30px;
    overflow: hidden;
    box-sizing: border-box;
    top: 0;
    left: 0;
    background: url(/img/gradient.png) repeat-x 0 0;
    display: flex;
    flex-direction: row;
}

#block-header .btnmenu {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    width: 36px;
    height: 70px;
    z-index: 999999;
    cursor: pointer;
    flex: 1;
}
#block-header .btnmenu .firstline {
    height: 2px;
    width: 36px;
    background: white;
}
#block-header .btnmenu .secondline {
    height: 2px;
    width: 32px;
    background: white;
    margin: 6px 0;
}
#block-header .btnmenu .thirdline {
    height: 2px;
    width: 28px;
    background: white;
}
#block-header .btnmenu:hover .firstline, #block-header .btnmenu:hover .secondline, #block-header .btnmenu:hover .thirdline {
    opacity: 0.8;
}
#block-header .btnmenu .active {
    height: 30px;
    width: 30px;
}
#block-header .btnmenu.active .firstline {
    transform: rotate(45deg) translateY(11px);
    height: 2px;
    width: 36px;
}
#block-header .btnmenu.active .secondline {
    opacity: 0;
    visibility: hidden;
}
#block-header .btnmenu.active .thirdline {
    transform: rotate(-45deg) translateY(-10px);
    width: 36px;
    height: 2px;
}

#block-header .block-logo{
    display: flex;
    flex-direction: column;
    align-items: center;
    align-content: center;
    text-align: center;
    height: 70px;
    flex: 1;
}
#block-header .block-logo .box-logotip img {
    height: 40px;
}
#block-header .block-logo .box-logotip .logo-name {
    font-family: "Blagovest";
    font-size: 24px;
    color: white;
    padding-top: 5px;
}

#block-header .clock-contact{
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-end;
    height: 70px;
    flex: 1;
}
#block-header .clock-contact .box_contact {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-end;
    height: 70px;
    flex: 1;
}
#block-header .clock-contact .box_contact a, #block-header .clock-contact .box_contact a:visited {
    color: white;
}
#block-header .clock-contact .box_contact a:hover {
    opacity: 0.8;
    text-decoration: none;
}
#block-header .clock-contact .box_contact i {
    display: block;
    border: 1px solid white;
    border-radius: 100px;
    color: white;
    font-size: 20px;
    width: 36px;
    height: 36px;
    padding-top: 7px;

    text-align: center;
}
#block-header .clock-contact .box_contact .phnum {
    font-family: "Open Sans", sans-serif;
    font-size: 16px;
    font-weight: 400;
    color: white;
    padding-left: 10px;
}

.block-menu-popup {
    position: fixed;
    z-index: 199;
    opacity: 0;
    left: 0;
    background: rgba(37, 54, 69, 0.9);
    top: 0;
    right: 0;
    bottom: 0;
    visibility: hidden;
    overflow: hidden;
    padding-top: 80px;
    padding-bottom: 70px;
    -webkit-transition-delay: 0s;
    transition-delay: 0s;
    -webkit-transform: translateY(-100%);
    transform: translateY(-100%);
    -webkit-transition: all 400ms ease-in-out;
    -moz-transition: all 400ms ease-in-out;
    -o-transition: all 400ms ease-in-out;
    transition: all 400ms ease-in-out;
}
.block-menu-popup-active-menu {
    opacity: 1;
    visibility: visible;
    height: 100%;
    width: 100%;
    -webkit-transition-delay: 0s;
    transition-delay: 0s;
    -webkit-transform: translateY(0px);
    transform: translateY(0px);
    -webkit-transition: all 400ms ease-in-out;
    -moz-transition: all 400ms ease-in-out;
    -o-transition: all 400ms ease-in-out;
    transition: all 400ms ease-in-out;
}
.block-menu-popup .block-menu-list {
    position: absolute;
    top: 100px;
    bottom: 30px;
    overflow-y: auto;
    width: 100%;
    left: 0;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    justify-content: center;
}
.block-menu-popup .block-menu-list .hline {
    width: 30%;
    height: 1px;
    background-color: white;
}
.block-menu-popup .block-menu-list .nav {
    width: 100%;
    padding-top: 5px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
.block-menu-popup .block-menu-list .nav li {
    text-align: center;
}
.block-menu-popup .block-menu-list .nav li a, .block-menu-popup .block-menu-list .nav li .dropdown-item {
    position: relative;
    display: block;
    padding: 10px 15px;
    font-family: "Montserrat", sans-serif;
    font-size: 16px;
    text-transform: uppercase;
    color: white;
}
.block-menu-popup .block-menu-list .nav li a:hover, .block-menu-popup .block-menu-list .nav li a:focus {
    background-color: transparent;
    opacity: 0.8;
}
.block-menu-popup .block-menu-list .nav .sub-menu {
    visibility: visible;
    padding-top: 0;
    overflow: hidden;
}
.block-menu-popup .block-menu-list .nav .sub-menu a {
    font-size: 14px;
    font-weight: 600;
    color: #df8e7c;
}
.block-menu-popup .block-menu-list .block-menu-social {
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 20px;
    padding-bottom: 20px;
    width: 100%;
}
.block-menu-popup .block-menu-list .block-menu-social i {
    color: white;
    padding: 0 10px;
}