@import url("https://fonts.googleapis.com/css?family=Catamaran:400,500&display=swap");
.font-orange {
  color: #ff5e1d;
}

.logo {
  background-image: url("../../static/logo.svg");
  height: 200px;
  width: 450px;
  display: block;
  background-repeat: no-repeat;
  background-size: 500px;
  background-position: center;
}

body {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  background-color: #eaeaea;
  margin: 0;
  font-family: "Catamaran", sans-serif;
}
body::after {
  background-image: url("../../static/body_bg.svg");
  content: "";
  background-size: 35%;
  position: fixed;
  right: 0;
  width: 100%;
  height: 100%;
  bottom: 0;
  background-repeat: no-repeat;
  background-position: bottom right;
  z-index: -1;
}

p, small {
  color: #777;
}

.container {
  text-align: center;
  display: flex;
  flex-direction: column;
  margin: 0 auto 7vh;
  padding-right: 27%;
}
.container .content {
  display: flex;
  justify-content: center;
  flex-direction: column;
}
.container .type-text {
  font-size: 18px;
  color: #777;
}

hr {
  border-color: #ff5e1d;
  width: 25px;
  border-right: 0;
  border-left: 0;
  border-bottom: 0;
  border-width: 1px;
  color: transparent;
  border-style: solid;
  background-color: transparent;
  margin: 1.5rem auto;
}

footer {
  position: fixed;
  bottom: 10px;
  padding-right: 27%;
}

a {
  color: #323232;
  text-decoration: none;
  transition: 0.4s all;
}
a:hover {
  color: #ff5e1d;
}

.whatsapp {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-left: -25px;
}
.whatsapp .whatsapp-ico {
  fill: #ff5e1d;
  width: 30px;
  height: 30px;
  padding: 3px;
}

@media screen and (max-width: 768px) {
  body::after {
    background-image: none;
  }

  .container, footer {
    padding-right: 0;
  }

  .container {
    margin: 0 auto 14vh;
  }

  .logo {
    height: 125px;
    width: 100%;
    background-size: 85%;
  }
}

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