html,body{
	margin:0;
	padding:0;
  height: 100%;
	width: 100%;
  font-family: 'Open Sans', sans-serif;
	color:#2a2a2a;
	font-size:14px;
	background-color:#f39c14;
}

.logocontainer{
  top:50%;
  left:50%;
  position:absolute;
  width:80%;
  max-width:960px;
  transform: translate(-50%, -50%);
}
.logocontainer .logo{
  width:100%;
}

.wrapper {
  position: relative;
  display:inline-block;
  background: white;
}

.wrapper, .wrapper * {
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

.wrapper {
  width: 20px;
  height: 20px;
}

.wrapper .pie {
  width: 50%;
  height: 100%;
  transform-origin: 100% 50%;
  position: absolute;
  background: #fff;
  border: 2px solid #f39c14;
}

.wrapper .spinner {
  border-radius: 100% 0 0 100% / 50% 0 0 50%;
  z-index: 200;
  border-right: none;
  animation: rota 15s linear infinite;
}

.wrapper:hover .spinner,
.wrapper:hover .filler,
.wrapper:hover .mask {
  animation-play-state: running;
}

.wrapper .filler {
  border-radius: 0 100% 100% 0 / 0 50% 50% 0;
  left: 50%;
  opacity: 0;
  z-index: 100;
  animation: opa 15s steps(1, end) infinite reverse;
  border-left: none;
}

.wrapper .mask {
  width: 50%;
  height: 100%;
  position: absolute;
  background: inherit;
  opacity: 1;
  z-index: 300;
  animation: opa 15s steps(1, end) infinite;
}

@keyframes rota {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
@keyframes opa {
  0% {
    opacity: 1;
  }
  50%, 100% {
    opacity: 0;
  }
}
#map {
  height: 100%;
	width: 100%;
}
.time{
  position: absolute;
  top: 0;
  right: 10px;
  background-color: #fff;
  color: #f39c14;
  padding: 10px;
  z-index: 10;
}

.site__content{
  width: 100%;
  max-width: 600px;
  margin: auto;
  padding: 2rem;
}

.outer {
  display: table;
  position: absolute;
  height: 100%;
  width: 100%;
}

.middle {
  display: table-cell;
  vertical-align: middle;
}

.inner {
  margin-left: auto;
  margin-right: auto;
  width: 600px;
  text-align: center;
  /*whatever width you want*/
}
.Hcontent{
  display: block;
  font-weight: bold;
  font-size: 4rem;
  text-align: center;
  color: #fff;
}
.Pcontent{
  font-size: 2rem;
  color: #fff;
}
img{
  max-width: 100%;
  margin: auto;
}
.frame{
  width: 100%;
  height: 99%;
  margin: 0;
  padding: 0;
  border: 0;
}
.frame-page{
  background-color: #eee;
}