@charset "UTF-8";
@import url("https://fonts.googleapis.com/css?family=Signika");
@import url("https://api.tiles.mapbox.com/mapbox.js/v1.3.1/mapbox.css");
@import url("https://netdna.bootstrapcdn.com/font-awesome/3.2.1/css/font-awesome.css");
html {
  font-family: 'Signika', sans-serif;
}

body {
  width: 100vw;
  height: 100vh;
  margin: 0;
  padding: 0;
}
.background_img{
  background:url('main_page_bg.png') round;
  background-repeat: no-repeat;
  background-size: cover;
  width: 100vw;height: 150vh;
  position: fixed;
  z-index: -20;
  margin: 0;
  left: 0;
  top: 0;
}
.logo{
  width: 30vw;
}
.container {
  overflow-x: hidden;
  position: absolute;
  display: block;
  width: 100vw;
  height: 175vh;
  color: white;
  text-align: center;
  min-width: 24px;
  top: 0;
  left: 0;
}

.section {
  position: absolute;
  display: block;
  width: 100%;
  color: white;
  text-align: left;
}

#sect1 {
  top: 70vh;
}


band2 h2 {
  text-align: left;
}

.explanation {
  min-width: 12.42em;
  float: left;
  width: 40%;
  padding-left: 30%;
}

.explanation-right {
  min-width: 12.42em;
  float: left;
  text-align: right;
  padding-left: 30%;
  width: 40%;
}

#phone {
  width: 20%;
  min-width: 200px;
  max-width: 400px;
  margin-right: 5%;
  float: right;
}


#topBar {
  height: 10%;
  overflow: hidden;
  padding-left: 10px;
  padding-right: 10px;
  position: relative;
  min-width: 100px;
}

h1, h3 {
  font-family: 'Signika', sans-serif;
  font-weight: 1000;
  text-align: center;
  text-shadow:
    1px 1px 20px rgba(0,0,0,1),
    2px 2px 20px rgba(0,0,0,1),
    3px 3px 20px rgba(0,0,0,1);
}

.container h1 {
  font-size: 5em;
  line-height: 1em;
  /*margin-bottom: 1em;*/
}


@media only screen and (min-width: 767px) {
  body {
    font-size: 1.125em;
    /* 18px / 16px */
  }

  .container {
    background-size: 100%;
  }

  .container h1 {
    font-size: 3.25em;
    /*52 / 16*/
  }

}
@media only screen and (max-width: 550px) {
  .explanation {
    float: none;
    margin: auto;
    text-align: center;
    width: 100%;
    padding-left: 0;
  }

  .explanation-right {
    float: none;
    margin: auto;
    text-align: center;
  }

  .logo{
    width: 70vw;
  }

  #sect1 {
    top: 85vh;
  }

  #phone {
    visibility: hidden;
    height: 0px;
    width: 0px;
    padding: 0;
    margin: 0;
  }

 
}
.social_icons {
  display: flex;
  flex-wrap: wrap;
  margin-left: -4px;
  margin-right: -4px;
}

.social_icons--link {
  position: relative;
  z-index: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  margin: 4px;
  color: #fff;
  background-color: #999;
  border-radius: 50%;
  box-shadow: rgba(0, 0, 0, 0.2) 0 2px 6px;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-property: transform, box-shadow, background-color, z-index;
  transition-duration: 0.2s;
  transform: scale(1);
  will-change: transform, contents;
}
.social_icons--link-facebook:hover {
  background-color: #3b5998;
}
.social_icons--link-twitter:hover {
  background-color: #00aced;
}
.social_icons--link-google_plus:hover {
  background-color: #dd4b39;
}
.social_icons--link-instagram:hover {
  background-color: #d93175;
}
.social_icons--link-youtube:hover {
  background-color: #bb0000;
}
.social_icons--link, .social_icons--link:hover, .social_icons--link:focus {
  text-decoration: none;
}
.social_icons--link:hover, .social_icons--link:focus, .social_icons--link:active {
  z-index: 900;
  box-shadow: rgba(0, 0, 0, 0.2) 0 3px 9px;
  transform: scale(1.5);
}

.social_icons--icon {
  width: 24px;
  height: 24px;
  fill: currentColor;
}
.arrow{
  animation: bounce 1.5s infinite;
}

@keyframes bounce {
  0%   { transform: translate(0px,0vw); }
  50%  { transform: translate(0px,3vw);  }
  100% { transform: translate(0px,0vw);  }
}