@import url('https://fonts.googleapis.com/css2?family=Cardo:wght@400;700&family=Lakki+Reddy&display=swap');
@font-face {
  font-family: 'Be Vietnam';
  font-style: normal;
  font-weight: normal;
  src: local('Be Vietnam'), url('BeVietnam.woff') format('woff');
  }

html, * {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background-image: linear-gradient(120deg, #857fff 0%, #706eb3 100%);
  font-family: 'Be Vietnam', sans-serif;
  font-weight: 550;
  font-size: 1.7em;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

@media (max-width: 700px) {
  body {
    font-size: 1.2em;
    font-weight: 500;
  }
}

a {
  color: #ffffff;
  text-decoration: none;
}

a:hover, a:active {
  color: #de7c00;
}

.wrapper {
  margin: 80px 100px 10px 100px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
}

@media (max-width: 700px) {
  .wrapper {
    margin: 80px 20px 10px 20px;
  }
}

.wrap_left {
  flex: 50%;
}

.wrap_right {
  flex: 50%;
}

@media (max-width: 700px) {
  .wrap_right, .wrap_left {
    flex: 100%;
  }
}

.header-navigation {
  position: fixed;
  top: 0;
  width: 100%;
  height: 60px;
  line-height: 60px;
  background-color: #333;
  text-align: center;
  box-shadow: 0 14px 28px rgba(0,0,0,0.25), 0 10px 10px rgba(0,0,0,0.22);
  z-index: 10;
}

.link {
  color: #fff;
  text-decoration: none;
  font-size: 1.2em;
  margin: 0 40px;
}

@media (max-width: 700px) {
  .link {
    margin: 0 10px;
    font-size: .8em;
  }
}

.donate {
  padding: 5px;
  background-color: #c7372f;
  border: 1px solid #000000;
  color: white;
  text-align: center;
  text-decoration: none;
  width: 125px;
  border-radius: 10px;
}

.donate:hover {
  background-color: #c7372f;
}

.facebook {
  width: 25px;
  display: inline-block;
  margin: 0px 40px;
}

@media (max-width: 700px) {
  .facebook {
    margin: 0 0px;
  }
}

.center {
  text-align: center;
}

h1 {
  text-align: center;
  margin-top: 25px;
  margin-bottom: 50px;
  color: #ffffff;
  font-family: 'Be Vietnam', sans-serif;
  font-weight: 700;
  font-size: 4em;
}

p {
  margin-left: 20px;
  margin-bottom: 10px;
  text-indent: 20px;
}

.faq {
  padding-left: 100px;
  padding-right: 100px;
  padding-bottom: 50px;
}

@media (max-width: 700px) {
  .faq {
    padding-left: 0px;
    padding-right: 0px;
    padding-bottom: 0px;
  }
}

ul {
  margin-left: 100px;
  margin-bottom: 10px;
  margin-top: 10px;
}

.highlight {
  border-radius: 1em 0 1em 0;
  background-image: linear-gradient(
    -100deg,
    rgba(255, 224, 0, 0.2),
    rgba(222, 144, 0, 0.7) 95%,
    rgba(255, 224, 0, 0.1)
  );
}

@media (max-width: 700px) {
  h1 {
    margin-bottom: 20px;
    font-size: 2em;
  }
}

img {
  display: block;
  margin: 30px auto;
  max-width: 100%;
  filter: drop-shadow(3px 3px 5px black);
}

.images {
  max-width: 80%;
  filter: drop-shadow(3px 3px 5px black);
}

@media (max-width: 700px) {
  .images {
    max-width: 100%;
    border: 0px;
  }
}

.image_left {
  max-width: 80%;
  height: auto;
  float: left;
}

.image_right {
  max-width: 80%;
  height: auto;
  float: right;
}

.line {
  width: 80%;
  height: 1px;
  margin: 75px auto;
}

@media (max-width: 700px) {
  .line {
    margin: 0px auto;
  }
}

.map {
  width: 60%;
  height: auto;
  aspect-ratio: 4/3;
  filter: drop-shadow(3px 3px 5px black);
}

@media (max-width: 700px) {
  .map {
    width: 100%;
  }
}

.footer {
  width: 100%;
  margin-top: auto;
  border-top: 1px solid #000000;
}

.foot {
  font-weight: 700;
  font-size: .8em;
  text-align: center;
}

/* Slide transitions */

.slideUp {
  -webkit-transform: translateY(-100px);
  transform: translateY(-100px);
  transition: transform .5s ease-out;
}

.slideDown {
  -webkit-transform: translateY(0);
  transform: translateY(0);
  transition: transform .5s ease-out;
}