* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  margin: 0;
}

body {
  background-color: #f0f2f2;
  font-family: "Roboto", sans-serif;
  color: #121212;
  position: relative;
  height: 100%;
}
body h1 {
  text-align: center;
  color: #121212;
  font-weight: 300;
  font-size: 22px;
  margin: 22px 22px 0;
}
body h3 {
  font-weight: 300;
  line-height: 2em;
}
body a {
  text-decoration: none;
  color: #f0f2f2;
}
body hr {
  width: 60%;
  margin: auto;
  border: 1px solid #121212;
}
body ul {
  list-style: none;
}

div.frontPageContainer {
  background-image: url("img/backgr.img.jpg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  height: 100vh;
}
div.frontPageContainer .columnContainer {
  height: 100%;
  margin: 0 30px;
}
@media (min-width: 768px) {
  div.frontPageContainer .columnContainer {
    margin: 0 130px;
  }
}
@media (min-width: 992px) {
  div.frontPageContainer .columnContainer {
    margin: 0 90px;
  }
}
div.frontPageContainer .columnContainer .columnLeftcontainer {
  width: 100%;
  margin: 0 auto 66px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100%;
  margin: 0 auto;
}
@media (min-width: 992px) {
  div.frontPageContainer .columnContainer .columnLeftcontainer {
    width: 50%;
    float: left;
    max-width: 400px;
  }
}
div.frontPageContainer .columnContainer .columnLeftcontainer img.logoImg {
  display: block;
  margin: 120px auto 0;
  width: 100%;
}
div.frontPageContainer .columnContainer .columnLeftcontainer a.contactbtn {
  text-align: center;
  margin: 44px auto 0;
  display: block;
  width: 70%;
  border: #121212 solid 2px;
  padding: 22px;
  font-size: 22px;
  background-color: rgba(240, 242, 242, 0.3);
  color: #121212;
  font-weight: 400;
  box-shadow: 2px 15px 30px rgba(18, 18, 18, 0.1);
  transition: all 0.4s ease-out;
}
@media (min-width: 768px) {
  div.frontPageContainer .columnContainer .columnLeftcontainer a.contactbtn {
    font-size: 18px;
    width: 60%;
    padding: 20px;
  }
}
div.frontPageContainer .columnContainer .columnLeftcontainer a.contactbtn:hover {
  background-color: #121212;
  color: #f0f2f2;
  transform: translateY(-6px);
}

footer {
  text-align: center;
}
footer .infoFooter {
  margin: 33px 0;
  font-size: 0.9em;
}
footer .bottomFooter {
  color: #f0f2f2;
  background-color: #121212;
  padding: 33px 0;
  font-size: 14px;
  font-weight: 300;
}
footer .bottomFooter ul li {
  margin-bottom: 5px;
}
@media (min-width: 768px) {
  footer .bottomFooter ul {
    display: flex;
    flex-flow: row wrap;
    justify-content: center;
  }
  footer .bottomFooter ul li {
    position: relative;
    padding: 0 11px;
    margin: 0;
  }
  footer .bottomFooter ul li:first-child {
    padding: 0 11px 0 0;
  }
  footer .bottomFooter ul li + li::after {
    content: "";
    background: rgba(250, 250, 250, 0.5);
    position: absolute;
    bottom: 0%;
    left: 0;
    height: 100%;
    width: 1px;
  }
}

/*# sourceMappingURL=style.css.map */
