@font-face {
  font-family: "Texturina";
  src: url("../fonts/Texturina-Light.ttf");
  font-weight: 300;
}
@font-face {
  font-family: "Texturina";
  src: url("../fonts/Texturina-Regular.ttf");
  font-weight: 400;
}
@font-face {
  font-family: "Texturina";
  src: url("../fonts/Texturina-SemiBold.ttf");
  font-weight: 600;
}
main {
  width: 100%;
  height: auto;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  margin-top: 65px;
}
main .fake-header {
  width: 100%;
  height: auto;
  min-height: 250px;
  background: #000000;
  background-image: url("../images/bg1.png");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
}
main .fake-header .wrapper {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}
main .fake-header .wrapper .logo {
  width: 70%;
  height: auto;
  display: block;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  margin: auto;
}
main .fake-header .wrapper .main-nav {
  display: none;
  z-index: 1;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}
main .real-main {
  width: 100%;
  height: auto;
  background: #080808;
  position: relative;
  z-index: 0;
}
main .real-main::before {
  width: 100%;
  height: 12px;
  min-height: 12px;
  max-height: 12px;
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  background-image: url("../images/divider.jpg");
  background-repeat: repeat;
  background-size: cover;
}
main .real-main::after {
  width: 100%;
  height: 12px;
  min-height: 12px;
  max-height: 12px;
  position: absolute;
  content: "";
  bottom: 0;
  left: 0;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  background-image: url("../images/divider.jpg");
  background-repeat: repeat;
  background-size: cover;
}
main .real-main .wrapper {
  width: 100%;
  height: auto;
  padding: 2rem 1rem 3rem 1rem;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}
main .real-main .wrapper .welcome {
  width: 100%;
  height: auto;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}
main .real-main .wrapper .welcome h1 {
  font-size: 1.5rem;
  font-weight: 600;
  text-align: center;
  color: #efefef;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  margin-bottom: 2rem;
}
main .real-main .wrapper .welcome p {
  font-weight: 300;
  text-align: justify;
  color: #9c9c9c;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  margin-bottom: 1rem;
}
main .real-main .wrapper .welcome img {
  width: 100%;
  height: auto;
  margin: 0px auto 2rem auto;
}

@media (min-width: 768px) and (max-width: 1023px) {
  main .fake-header {
    background-image: url("../images/tablet/bg1.png");
    background-position: center top;
    background-size: cover;
    min-height: 300px;
  }
  main .fake-header .wrapper {
    position: relative;
  }
  main .fake-header .wrapper .logo {
    width: 30%;
  }
  main .fake-header .wrapper .main-nav {
    width: 100%;
    display: flex;
    flex-flow: row nowrap;
    justify-content: center;
    position: absolute;
    bottom: -15px;
    left: 50%;
    right: 50%;
    transform: translateX(-50%);
  }
  main .fake-header .wrapper .main-nav li {
    list-style: none;
  }
  main .fake-header .wrapper .main-nav li a {
    padding: 5px 10px 10px 10px;
    margin: 0 5px;
  }
  main .real-main::before {
    background-size: contain;
  }
  main .real-main::after {
    background-size: contain;
  }
  main .real-main .wrapper {
    flex-flow: row wrap;
    justify-content: space-between;
    padding: 70px 40px;
  }
  main .real-main .wrapper .welcome p {
    font-size: 1.2rem;
  }
  main .real-main .wrapper .welcome img {
    width: auto;
    height: 100%;
    margin: 0px auto 2rem auto;
  }
}
@media (min-width: 1024px) {
  main .fake-header {
    background-image: url("../images/desktop/bg1.png");
    background-position: center top;
    background-size: cover;
    min-height: 400px;
  }
  main .fake-header .wrapper {
    width: 1024px;
    position: relative;
    margin: 0px auto;
  }
  main .fake-header .wrapper .logo {
    width: 30%;
  }
  main .fake-header .wrapper .main-nav {
    width: 100%;
    display: flex;
    flex-flow: row nowrap;
    justify-content: center;
    position: absolute;
    bottom: -17px;
    left: 50%;
    right: 50%;
    transform: translateX(-50%);
  }
  main .fake-header .wrapper .main-nav li {
    list-style: none;
  }
  main .fake-header .wrapper .main-nav li a {
    padding: 8px 15px 10px 15px;
    margin: 0 5px;
  }
  main .fake-header .wrapper .main-nav li a .font-button {
    font-size: 1.2rem;
  }
  main .real-main::before {
    background-size: contain;
  }
  main .real-main::after {
    background-size: contain;
  }
  main .real-main .wrapper {
    width: 1024px;
    flex-flow: row wrap;
    justify-content: space-between;
    padding: 70px 40px;
    margin: 0px auto;
  }
  main .real-main .wrapper .welcome h1 {
    font-size: 2rem;
  }
  main .real-main .wrapper .welcome p {
    font-size: 1.5rem;
  }
  main .real-main .wrapper .welcome img {
    width: auto;
    height: 100%;
    margin: 0px auto 2rem auto;
  }
}/*# sourceMappingURL=donations.css.map */