*
{
    margin: 0;
    padding: 0;
    outline: none;
}

body
{
  font: 12px "Century Gothic", Tahoma, sans-serif;
}

a
{
  text-decoration: none;
}

.clr
{
  clear: both;
}

.active
{
  color: white;
  background-color: #292929;
}

.unactive
{
  color: #292929;
}

.hr_heading
{
  width: 14%;
  margin: 10px 0 30px 43%;
}

.hr_small_heading
{
  width: 20%;
  margin: 5px 0 10px 40%;
}

.headlines
{
  text-align: center;
  font-size: 32px;
  color: #292929;
}

.headlines_big
{
  text-align: center;
  font-size: 50px;
  color: #292929;
  font-style: italic;
}

.headlines_white
{
    color: white;
}

.top_h1
{
  padding-top: 30px;
}

.red_star
{
  color: red;
}

.only_left
{
  float: left;
}

.only_right
{
  float: right;
}

.noLink
{
  pointer-events: none;
}

.green_span
{
  color: green;
}

#page_align
{
  width: 100%;
  margin: 0px auto;
  /*background-color: #fcfaf2;*/
  background-color: #f1f1f1;
  overflow: hidden;
}

/*Header*/
header
{
  z-index: 2;
  height: 100px;
  position: fixed;
  top: 0;
  /*background-color: #fcfaf2;*/
  background-color: #f1f1f1;
  width: 100%;
  box-shadow: 0 0 12px 0px black;
}

#main_logo
{
  margin: 20px 0px 0px 15px;
  float: left;
  
  user-select: none;
}

#main_logo img
{
  padding: 3px;
  height: 54px;
  opacity: 0.9;
  background-color: black;
}

#header_menu ul
{
  margin-left: 250px;
  padding-top: 25px;
  list-style: none;
}

#header_menu ul li
{
  float: left;
  border-right: solid 1px #d1d1d1;
}

#header_menu ul li:last-child
{
  border-right: none;
}

#header_menu ul li a
{
  line-height: 50px;
  padding: 0px 10px;
  display: block;
  font-size: 17px;
  font-weight: bold;
  transition: 0.3s;
}

#header_menu ul li a:hover
{
  color: white;
  background-color: #292929;
  transition: 0.3s;
}

#language_selection
{
  float: right;
  margin: -8px 1% 0 0;
}

#language_selection img
{
  user-select: none;
  margin-right: 0px;
  margin-top: 7px;
  width: 32px;
  border: 1px solid black;
}

.eng_a
{
  pointer-events: none;
  cursor: default;
}

.eng_img
{
  opacity: 0.4;
}

#contact_information
{
  float: right;
  margin: -2px 1% 0 0;
}

#contact_information p
{
  font-size: 18px;
  font-weight: bold;
  float: right;
  margin-top: 0px;
}

#contact_information img
{
  user-select: none;
  pointer-events: none;
  margin-right: 5px;
  margin-top: 2px;
  width: 20px;
}

.header_contact
{
  margin-bottom: 10px;
}
/**/

/*Footer*/
footer
{
  box-shadow: 0 0px 10px 0px black;
  margin-bottom: 0;
  /*background-color: #fcfaf2;*/
  background-color: #f1f1f1;
}

#copyright
{
  float: left;
  margin: 30px 0px 0px 25px;
}

#footer_contact
{
  float: right;
  margin: 10px 30px 0px 0px;
}

#footer_contact p
{
  font-size: 14px;
  padding-bottom: 5px;
}

#footer_contact img
{
  width: 25px;
  float: left;
}

#footer_contact a
{
  margin: 5px 0px 0px 5px;
  float: left;
  font-size: 14px;
}
/**/

#content
{
  margin-top: 100px;
  width: 100%;
  min-height: calc(100% - 70px);
  margin-bottom: -70px;
}

#content:after
{
  content: '';
  display: block;
}

#content:after, footer
{
  height: 70px;
}

#border_map
{
  margin-left: 5%;
  width: 90%;
  border: solid 2px #292929;
}

/* Мобильное меню изначально скрыто */
.mobile-nav
{
    display: none;
}

/* Гамбургер-иконка изначально скрыта */
.hamburger
{
    float: right;
    display: none;
    flex-direction: column;
    cursor: pointer;
    padding: 5px;
    margin: 9px 9px 0px 0px;
}

.hamburger span
{
    width: 25px;
    height: 3px;
    background: #292929;
    margin: 3px 0;
    transition: 0.3s;
}

@media screen and (max-width: 768px)
{ 
    #content
    {
      margin-top: 55px;
      min-height: calc(100% - 70px);
      margin-bottom: -70px;
    }
    
    /* Скрываем десктопное меню */
    .desktop-nav
    {
        display: none;
    }
    
    /* Показываем гамбургер */
    .hamburger
    {
        display: flex;
    }
    
    .hamburger.active span
    {
        background: #f1f1f1;
    }
    
    /* Стили для открытого мобильного меню */
    .mobile-nav.active
    {
        display: block;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: #f1f1f1;
        padding: 1rem 0;
    }
    
    .mobile-nav-list
    {
        list-style: none;
        text-align: center;
    }
    
    .mobile-nav-list li
    {
        padding: 0;
        border-bottom: 1px solid #444;
    }
    
    .mobile-nav-list a
    {
        text-decoration: none;
        display: block;
    }
    
    header
    {
      z-index: 2;
      height: 55px;
    }
    
    #contact_information
    {
      display: none;
    }
    
    #main_logo
    {
      margin: 10px 0px 0px 5px;
    }
    
    #main_logo img
    {
      padding: 1px;
      height: 34px;
      opacity: 0.9;
      background-color: black;
    }
    
    #language_selection
    {
        margin: 0px 0px 0px 15px;
        float: left;
    }
    
    #language_selection img
    {
      width: 24px;
    }
    
    #header_menu ul
    {
      margin-left: 0px;
      padding-top: 0px;
      list-style: none;
    }
    
    #header_menu ul li
    {
      width: 100%;
      float: left;
      border-right: solid 1px #d1d1d1;
      border-left: solid 1px #d1d1d1;
    }
    
    #header_menu ul li a
    {
      padding: 0px 0px;
      font-size: 14px;
    }
}

@media screen and (max-width: 1024px)
{
    
}
