@import url(http://fonts.googleapis.com/css?family=Roboto:300,400,900&subset=latin,cyrillic);


html * {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

*, *:after, *:before {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

body {
  font-size: 100%;
  font-family: 'Roboto', sans-serif;
  color: #2d313f;
  background-color: #e7eaf0;
}

/* -------------------------------- 

Основные стили

-------------------------------- */
header {
  height: 200px;
  line-height: 200px;
  text-align: center;
  background: #2d313f;
}
header h1 {
  color: white;
  font-size: 20px;
  font-size: 1.25rem;
}
@media only screen and (min-width: 768px) {
  header {
    height: 300px;
    line-height: 300px;
  }
}

#google-container {
  position: relative;
  width: 100%;
  height: 200px;
  background-color: #e7eaf0;
  height: 600px;
  }


#google-map {
  position: relative;
}


#zoom-in, #zoom-out {
  height: 50px;
  width: 50px;
  cursor: pointer;
  margin-left: 10px;
  background-repeat: no-repeat;
  background-size: cover;
  opacity: 0.7;
  transition:all 0.25s ease;
}
#zoom-in {
  background-image: url("d0ec76bd-a6fe-491d-bcf0-1728425f9d6d.png");
}
#zoom-out {
  background-image: url("983f427f-1f9d-4504-ba01-1b272601799f.png");
}

#zoom-in:hover, #zoom-out:hover {
  opacity: 1;
}

@media only screen and (min-width: 768px) {
  #zoom-in, #zoom-out {
    margin-right: 18px;
  }
}

#zoom-in {
  margin-top: 12px;
}
@media only screen and (min-width: 768px) {
  #zoom-in {
    margin-top: 50px;
  }
}


