html {
  height: 100%;
}

body {
  width: 100vw;
  height: 100%;
  overflow: hidden;
  background: url("../img/background.jpg") no-repeat center center fixed;
  background-size: cover;
}

body * {
  font-family: "ministry", sans-serif;
  font-weight: 700;
  position: relative;
}

a {
  text-decoration: none;
  color: white;
}

.container {
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-line-pack: center;
      align-content: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.img-box {
  text-align: center;
}

@media (max-width: 780px) {
  .img-box img {
    width: 60%;
  }
}

.desc {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-line-pack: center;
      align-content: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  margin-top: 75px;
}

@media (max-width: 375px) {
  .desc {
    margin-top: 50px;
  }
}

.desc p {
  max-width: 65%;
  margin: 0 auto;
  text-align: center;
  font-size: 1.8vw;
  line-height: 2;
  margin-bottom: 75px;
}

@media (max-width: 780px) {
  .desc p {
    font-size: 16px;
  }
}

@media (max-width: 500px) {
  .desc p {
    max-width: 90%;
  }
}

@media (max-width: 375px) {
  .desc p {
    margin-bottom: 50px;
  }
}

@media (max-width: 320px) {
  .desc p {
    margin-bottom: 20px;
  }
}

.desc strong {
  background-color: #f37e30;
  color: white;
  padding: 8px;
  margin: 7px 6px;
  -webkit-transition: 0.2s ease-in;
  transition: 0.2s ease-in;
}

.desc strong:hover {
  -webkit-transition: 0.2s ease-in;
  transition: 0.2s ease-in;
  background-color: #f3bf30;
}

.contact {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.contact span:first-of-type {
  margin-right: 20px;
}

.contact span:last-of-type {
  margin-left: 20px;
}

.contact a {
  color: black;
}

.contact a:after {
  content: '';
  height: 100%;
  width: 2px;
  color: gray;
  background-color: #d2d3d5;
  display: inline;
  position: absolute;
  margin-left: 20px;
}

span {
  font-size: 2vw;
}

@media (max-width: 780px) {
  span {
    font-size: 3vw;
  }
}

@media (max-width: 500px) {
  span {
    font-size: 22px;
  }
}
/*# sourceMappingURL=app.css.map */