@font-face {
  font-family: avenir;
  src: url(avenir.otf);
}

@font-face {
  font-family: avenir-bold;
  src: url(avenir-bold.ttf);
}

@font-face {
  font-family: avenir-light;
  src: url(avenir-light.ttf);
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: avenir, Arial, sans-serif;
  background-color: rgba(12,21,58,1);
  position: relative;
}

body,
h1,
h2,
h3,
p {
  margin: 0;
  padding: 0;
}

p,
a {
  font-size: 14px;
}

@media only screen and (min-width: 300px) {
  p,
  a {
    font-size: 16px;
  }
}

@media only screen and (min-width: 800px) {
  p,
  a {
    font-size: 18px;
    text-align: center;
    max-width: 800px;
  }
}

a {
  text-decoration: none;
  color: white;
}
a.selected{
  color: rgba(12,21,58,1);
  font-weight: bold;
}

h2 {
  color: #fbb03b;
  font-family: avenir-bold, Arial, sans-serif;
  font-size: 34px;
  line-height: 36px;
}

h2 br {
  display: none;
}

h2.bigger {
  font-size: 36px;
  line-height: 38px;
}

@media only screen and (min-width: 800px) {
  h2 {
    font-size: 48px;
    line-height: 60px;
  }
  h2 br {
    display: block;
  }
  h2.bigger {
    font-size: 56px;
    line-height: 64px;
  }
}

img {
  image-rendering: -webkit-optimize-contrast;
  display: block;
  width: 100%;
}

img.mitraland-logo {
  width: 120px;
}

.button {
  background-color: #c1272d;
  color: white;
  text-transform: uppercase;
  font-size: 18px !important;
  font-weight: bold;
  width: -webkit-fit-content !important;
  width: -moz-fit-content !important;
  width: fit-content !important;
  border-radius: 40px;
  cursor: pointer;
  padding: 8px 40px !important;
  display: block;
}

.button.return-btn {
  background-color: #fbb03b;
  color: black;
}

nav {
  width: 100%;
  background-image: -webkit-gradient(linear, left bottom, left top, from(#771214), to(#e92027));
  background-image: linear-gradient(to top, #771214, #e92027);
  padding: 16px 20px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  position: fixed;
  left: 0;
  top: 0;
  z-index: 100;
}

nav.fade {
  background-image: linear-gradient(to top, #771214, #e92027);
}

nav .navbar {
  width: 100%;
  max-width: 1000px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin: auto;
}

nav .navbar .mitraland-logo {
  height: 36px;
}

nav .navbar .right {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  display: none;
}

@media only screen and (min-width: 1000px) {
  nav .navbar .right {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    justify-content: space-around;
    align-items: center;
  }
  
  nav .navbar .right a{
    margin: 0 15px;
  }
}

nav .navbar .right .button {
  margin-left: 80px;
  background-color: #fbb03b;
  color: black;
  font-family: avenir-bold, Arial, sans-serif;
}

nav .navbar img.burger-icon {
  width: 38px;
  cursor: pointer;
}

@media only screen and (min-width: 1000px) {
  nav .navbar img.burger-icon {
    display: none;
  }
}

.menu {
  height: 100vh;
  width: 100%;
  background-color: rgba(12,21,58,1);
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 100;
  -webkit-transform: translateX(120%);
          transform: translateX(120%);
  -webkit-transition: 0.3s;
  transition: 0.3s;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  overflow: auto;
}

.menu.slide-in {
  -webkit-transform: translateX(0);
          transform: translateX(0);
}

.menu .close-btn {
  cursor: pointer;
  width: 24px;
  display: block;
  opacity: 0.7;
  position: absolute;
  right: 20px;
  top: 30px;
}

.menu a {
  color: white;
  text-decoration: none;
  font-size: 26px;
  margin-top: 46px;
  letter-spacing: 1px;
}

.menu a:first-of-type {
  margin-top: -40px;
}

.menu a img {
  width: auto;
  height: 45px;
}

.menu .button {
  background-color: #fbb03b;
  color: black;
  font-family: avenir-bold, Arial, sans-serif;
}

main {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  padding: 100px 20px 100px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  position: relative;
  min-height: calc(100vh - 68px);
  margin-top: 68px;
}

@media only screen and (min-width: 800px) {
  main {
    min-height: calc(100vh - 72px);
    margin-top: 72px;
  }
}

main .bg {
  background-image: radial-gradient(circle, rgba(12,21,58,1) 0%, rgba(45,56,98,1) 0%, rgba(12,21,58,1) 100%);
  z-index: -1;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}

@media only screen and (min-width: 800px) {
  main .bg {
    background-image: radial-gradient(circle, rgba(12,21,58,1) 0%, rgba(45,56,98,1) 0%, rgba(12,21,58,1) 100%);
  }
}


.splash-desktop {
  position: absolute;
  top: 0;
  height: 100%;
  width: 80%;
  z-index: -1;
  width: 33%;
  display: block;
  height: 600px;
  width: 490px;
  pointer-events: none;
}


.splash-desktop.left {
  left: 0;
  top: 0;
  width: 40vw!important;
  background: url(../images/splash-left.png) top left no-repeat;
}

.splash-desktop.right {
  background: url(../images/splash-right.png) bottom right no-repeat;
  right: 0;
  bottom: 0;
  top: auto;
  z-index: 0;
}

@media only screen and (max-width: 1000px) {
  .splash-desktop.left {
    left: 0;
    background: url(../images/splash-left.png) top left no-repeat;
    width: 300px;
    background-size: contain;
  }
  
  .splash-desktop.right {
    background: url(../images/splash-right.png) bottom right no-repeat;
    right: 0;
    bottom: 0;
    top: auto;
    z-index: 0;
    width: 300px;
    background-size: contain;
  }

  section#registration{
    padding-bottom: 1000px;
  }
}

main .overlay {
  z-index: -1;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background-image: linear-gradient(316deg, rgba(92, 23, 113, 0.7), #5c177100 50%);
}

main .terms {
  position: absolute;
  right: 20px;
  bottom: 20px;
  color: white;
  font-family: avenir-light, Arial, sans-serif;
  font-size: 12px;
}

@media only screen and (min-width: 800px) {
  main .terms {
    right: 40px;
  }
}

main img {
  width: 100%;
  max-width: 740px;
}

main img.masthead {
  margin-top: -100px;
}


main div.main {
  color: white;
  font-size: 16px;
  margin-top: 40px;
  text-align: center;
  font-weight: bold;
  padding: 0 10px;
  text-shadow: 0px 0px 6px rgba(0, 0, 0, 0.6);
}

div.main .iti__country-list{
  color: black;
  text-shadow: none;
  font-weight: normal;
}

div.main p{
  margin-bottom: 35px;
  font-size: 24px;
  line-height: 30px;
  font-weight: normal;
}


@media only screen and (max-width: 640px) {
  div.main p{
    width: 90%;
    margin: 0 auto;
    margin-bottom: 35px;
    font-size: 18px;
    line-height: 24px;
    
    white-space: normal;
    word-break: normal;
    overflow-wrap: break-word;
  }
}

div.main p a{
  font-size: inherit;
  text-decoration: underline;
}

.pill{
  padding: 10px 40px;
  color: #ea1c24;
  font-weight: bold;
  font-size: 32px;
  background: linear-gradient(0deg, rgba(198,197,200,1) 0%, rgba(249,250,254,1) 100%);
  border-radius: 20px;
  display: block;
  margin: 0 auto;
  margin-bottom: 20px;
  text-align: center;
  font-family: 'Montserrat', sans-serif;
  text-decoration: uppercase;
  box-sizing: border-box;
  max-width: 400px;
}

.pill a{
  font-size: 22px;
  text-transform: uppercase;
}
@media only screen and (max-width: 640px) {
  .pill a{
    font-size: 14px;
  }
}

.main-date{
  font-size: 20px;
  color: #fbb03b;
  font-weight: bold;
  text-align: center;
  margin-top: 20px;
  text-shadow: 0px 0px 8px rgba(0, 0, 0, 0.8);
}
@media only screen and (min-width: 800px) {
  .main-date{
    font-size: 30px;
  }
}

.pill.pill-button {
  cursor: pointer;
  font-size: 22px;
}
@media only screen and (max-width: 640px) {
  .pill{
    padding: 10px 20px;
    width: 100%;
  }
  .pill.pill-button{
    font-size: 14px;
  }
}

span.highlight {
  font-weight: bold;
  color: #fbb03b;
}

@media only screen and (min-width: 800px) {
  div.main {
    font-size: 24px;
    max-width: 700px;
  }
}

main.project {
  background-image: radial-gradient(circle, rgba(12,21,58,1) 0%, rgba(45,56,98,1) 0%, rgba(12,21,58,1) 100%);
}

@media only screen and (min-width: 800px) {
  main.project {
    padding-bottom: 60px;
  }
}

main.project img.mitraland-logo {
  width: 130px;
  margin: 20px auto;
}

@media only screen and (min-width: 1000px) {
  main.project img.mitraland-logo {
    margin: 40px auto 20px;
  }
}

main.project img.project-logo {
  width: 100%;
  max-width: 240px;
  margin: auto;
}

main.project img.project-logo.ashino {
  max-width: 220px;
}

main.project img.facade {
  margin: 20px auto;
  max-width: 700px;
}

@media only screen and (min-width: 1000px) {
  main.project img.facade {
    margin: 30px auto;
  }
}

main.project img.divider {
  width: 100%;
  max-width: 900px;
  max-height: 20px;
}

main.project p {
  text-align: center;
  color: white;
  padding-bottom: 12px;
  max-width: 800px;
  width: calc(100% - 40px);
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  margin: auto;
}

main.project .info {
  color: white;
  text-align: center;
  font-weight: bold;
  font-size: 18px;
  margin: 20px 10px 10px;
  line-height: 20px;
}

main.project .info b {
  display: block;
  margin-bottom: 16px;
}

@media only screen and (min-width: 1000px) {
  main.project .info b {
    font-size: 20px;
  }
}

main.project .info span {
  font-weight: normal;
}

.front.thankyou{  
  background-image: radial-gradient(circle, rgba(12,21,58,1) 0%, rgba(45,56,98,1) 0%, rgba(12,21,58,1) 100%);
}

main.thankyou {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding-left: 20px;
  padding-right: 20px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

main.thankyou h1 {
  color: #fbb03b;
  text-align: center;
  font-size: 40px;
}

main.thankyou p {
  text-align: center;
  color: white;
  margin-top: 20px;
  margin-bottom: 20px;
}

main.thankyou .button {
  text-align: center;
  padding: 8px 20px !important;
  font-size: 14px !important;
}

@media only screen and (min-width: 320px) {
  main.thankyou .button {
    font-size: 16px !important;
  }
}

section#about {
  padding: 50px 20px;
  width: 100%;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  background-image: radial-gradient(circle, rgba(12,21,58,1) 0%, rgba(45,56,98,1) 0%, rgba(12,21,58,1) 100%);
}

#about img.feature{
  width: 90%;
  max-width: 800px;
  margin: 0 auto;
  display: block;
}
#about img.lucky-draw-feature{
  width: 100%;
  max-width: 1000px;
  margin: 0 auto 40px;
  display: block;
}
@media only screen and (min-width: 800px) {
  #about img.lucky-draw-feature{
    width: 70%;
    margin-bottom: 60px;
  }
}

#about .main{
  color: white;
  font-size: 24px;
  text-align: center;
  font-weight: bold;
  padding: 0 10px;
  text-shadow: 0px 0px 6px rgba(0, 0, 0, 0.6);
  line-height: 1.5em;  
  display: block;
  margin: 0 auto;
  margin-top: 40px;
  margin-bottom: 40px;
  max-width: 800px;
}


@media only screen and (min-width: 1000px) {
  section#about {
    padding: 120px 20px;
  }
}

section#about h2 {
  text-align: center;
}

section#about .item-list {
  max-width: 1000px;
  margin: 30px auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -ms-flex-pack: distribute;
      justify-content: space-around;
}

section#about .item-list .item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 30px;
  width: 100%;
}

@media only screen and (min-width: 340px) {
  section#about .item-list .item {
    width: calc(50% - 20px);
  }
}

@media only screen and (min-width: 800px) {
  section#about .item-list .item {
    width: calc(25% - 24px);
  }
  section#about .item-list .item.shorten {
    width: calc(20% - 24px);
  }
}

section#about .item-list .item img {
  margin-bottom: 12px;
  width: 100px;
}

section#about .item-list .item .title {
  font-family: avenir-bold, Arial, sans-serif;
  color: #fbb03b;
  margin-bottom: 8px;
  font-size: 18px;
  text-align: center;
  text-shadow: 0px 0px 4px rgba(0, 0, 0, 0.5);
}

@media only screen and (min-width: 800px) {
  section#about .item-list .item .title {
    font-size: 20px;
  }
}

section#about .item-list .item p {
  color: white;
  text-align: center;
  text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.8);
}

@media only screen and (min-width: 800px) {
  section#about .item-list .item p.shorten {
    max-width: 170px;
  }
}

section#about .terms {
  color: white;
  text-align: center;
  font-family: avenir-light, Arial, sans-serif;
  margin-top: 20px;
  margin-bottom: 12px;
  text-shadow: 1px 1px 4px black;
}

section#about img.divider {
  max-width: 800px;
  width: 100%;
  margin: auto;
}

section#about .ogse {
  margin-top: 60px;
}

@media only screen and (min-width: 800px) {
  section#about .ogse {
    margin-top: 90px;
  }
}

section#about .ogse .description {
  color: white;
  font-size: 18px;
  text-align: center;
  text-shadow: 1px 1px 8px rgba(0, 0, 0, 0.6);
  margin-bottom: 14px;
}

@media only screen and (min-width: 800px) {
  section#about .ogse .description {
    font-size: 22px;
  }
}

section#about .ogse .title {
  color: #fbb03b;
  font-family: avenir-bold, Arial, sans-serif;
  font-size: 24px;
  text-align: center;
  text-shadow: 0px 0px 6px rgba(0, 0, 0, 0.3);
}

@media only screen and (min-width: 800px) {
  section#about .ogse .title {
    font-size: 28px;
  }
}

section#about .ogse .ogse-img {
  max-width: 772px;
  margin: auto;
  margin-top: 20px;
}

section#about .ogse .ogse-img.desktop {
  display: none;
}

@media only screen and (min-width: 800px) {
  section#about .ogse .ogse-img.desktop {
    display: block;
    margin-top: 40px;
  }
  section#about .ogse .ogse-img.mobile {
    display: none;
  }
}


section#tiktok {
  padding: 60px 20px;
  width: 100%;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  background-image: radial-gradient(circle, rgba(12,21,58,1) 0%, rgba(45,56,98,1) 0%, rgba(12,21,58,1) 100%);
}


#tiktok .pill,
#tiktok-subpage .pill{
  margin: 0 auto;
  display: block;  
  text-transform: uppercase;
  margin-bottom: 10px;
}

#tiktok img.feature,
#tiktok-subpage img.feature{
  width: 100%;
  max-width: 1000px;
  margin: 0 auto;
  display: block;
  margin-bottom: 30px;
}

#tiktok img.feature.hashtag,
#tiktok-subpage img.feature.hashtag{
  max-width: 700px;
}

#tiktok h1,
#tiktok-subpage h1{
  color: #FFFFFF;
  font-weight: bold;
  font-size: 30px;
  text-align: center;
  margin-bottom: 30px;
}


@media only screen and (max-width: 640px) {
  #tiktok h1,
  #tiktok-subpage h1{
    font-size: 20px;
    text-align: center;
    margin-bottom: 20px;
  }
}

section#charity {
  padding: 100px 20px 60px 20px;
  width: 100%;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  background-image: radial-gradient(circle, rgba(12,21,58,1) 0%, rgba(45,56,98,1) 0%, rgba(12,21,58,1) 100%);
}

#charity .main{
  color: white;
  font-size: 24px;
  text-align: center;
  font-weight: bold;
  padding: 0 10px;
  text-shadow: 0px 0px 6px rgba(0, 0, 0, 0.6);
  line-height: 1.5em;  
  display: block;
  margin: 0 auto;
  margin-top: 40px;
  margin-bottom: 40px;
  max-width: 700px;
}

#charity img.feature{
  width: 100%;
  max-width: 800px;
  margin: 0 auto;
  display: block;
  margin-bottom: 30px;
}
@media only screen and (min-width: 800px) {
  #charity img.feature{
    width: 90%;
  }
}

#charity h1{
  color: #FFFFFF;
  font-weight: bold;
  font-size: 32px;
  text-align: center;
  margin-bottom: 30px;
}

#charity .pill,
#donation-submit .pill{
  margin: 0 auto;
  display: block;  
  /* min-width: 250px; */
  max-width: 400px;
  margin-bottom: 10px;
}

#charity .terms{
  font-size: 12px;
  color: #FFF;
  text-align: center;
  display: block;
}

#charity .stay-safe{
  width: 90%;
  max-width: 800px;
  font-weight: 900;
  text-align: center;
  display: block;
  margin: 0 auto;
  margin-bottom: 30px;
}


@media only screen and (max-width: 640px) {
  #charity .stay-safe{
    font-size: 24px;
    overflow: hidden;
    white-space: normal;
    word-break: break-all;
    overflow-wrap: break-word;
  }
}


section#prizes {
  padding: 60px 20px;
  width: 100%;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  background-image: radial-gradient(circle, rgba(12,21,58,1) 0%, rgba(45,56,98,1) 0%, rgba(12,21,58,1) 100%);
}

@media only screen and (min-width: 1000px) {
  section#prizes {
    padding: 120px 20px;
  }
}

section#prizes img.title {
  width: 100%;
  max-width: 520px;
  margin: auto;
}

section#prizes .title-wrapper {
  color: #fbb03b;
  font-size: 60px;
  text-align: center;
  font-family: 'Montserrat', sans-serif;
  line-height: 1.2em;
  letter-spacing: 0.02em;
}

section#prizes .title-wrapper span {
  font-size: 1.4em;
}

@media only screen and (min-width: 800px) {
  section#prizes .title-wrapper {
    font-size: 80px;
  }
}

@media only screen and (max-width: 300px) {
  section#prizes .title-wrapper {
    font-size: 50px;
  }
}

section#prizes .prize-wrapper {
  max-width: 1200px;
  margin: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -ms-flex-pack: distribute;
      justify-content: space-around;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  margin-top: 10px;
}

section#prizes .prize-wrapper .item {
  margin-top: 30px;
  max-width: 312px;
}

section#prizes .prize-wrapper .item img {
  max-width: 146px;
  width: 100%;
  margin: auto;
  margin-bottom: 8px;
}

@media only screen and (min-width: 500px) {
  section#prizes .prize-wrapper .item img {
    max-width: 200px;
  }
}

section#prizes .prize-wrapper .item p {
  color: white;
  text-align: center;
  margin: 0 8px;
  font-size: 14px;
  text-shadow: 1px 1px 12px rgba(0, 0, 0, 0.8);
}

@media only screen and (min-width: 320px) {
  section#prizes .prize-wrapper .item p {
    font-size: 16px;
  }
}

section#prizes .prize-wrapper .item:first-of-type img {
  margin-bottom: 35px;
}

@media only screen and (min-width: 300px) {
  section#prizes .prize-wrapper .item {
    width: 40%;
  }
}

@media only screen and (min-width: 900px) {
  section#prizes .prize-wrapper {
    margin-top: 12px;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  section#prizes .prize-wrapper .item {
    width: 50%;
    max-width: 364px;
  }
  section#prizes .prize-wrapper .item img {
    max-width: 200px;
    margin-bottom: 12px;
  }
  section#prizes .prize-wrapper .item p {
    font-size: 18px;
  }
  section#prizes .prize-wrapper .item:first-of-type img {
    margin-bottom: 40px;
  }
}

section#prizes .terms {
  text-align: right;
  font-size: 12px;
  color: white;
  margin: auto;
  margin-top: 60px !important;
  display: block;
  font-style: normal;
  max-width: 870px;
}

section#participating-projects {
  padding: 60px 20px;
  background-image: radial-gradient(circle, rgba(12,21,58,1) 0%, rgba(45,56,98,1) 0%, rgba(12,21,58,1) 100%);
  position: relative;
}

@media only screen and (min-width: 1000px) {
  section#participating-projects {
    padding: 120px 20px;
  }
}

section#participating-projects h2 {
  text-align: center;
  margin-bottom: 20px;
}

@media only screen and (min-width: 800px) {
  section#participating-projects h2 {
    margin-bottom: 50px;
  }
}

@media only screen and (min-width: 1000px) {
  section#participating-projects .wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    margin-top: 60px;
  }
}

@media only screen and (min-width: 1000px) and (min-width: 1200px) {
  section#participating-projects .wrapper {
    max-width: 1400px;
    padding-left: 80px;
    padding-right: 80px;
    margin: auto;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
  }
}

@media only screen and (min-width: 1000px) {
  section#participating-projects .wrapper .card {
    margin: unset;
    max-width: 31%;
    min-height: 706px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  section#participating-projects .wrapper .card .info-wrapper {
    margin-bottom: 40px;
  }
  section#participating-projects .wrapper .card a.button {
    margin-top: auto;
  }
}

section#features {
  padding: 60px 20px;
  background-image: radial-gradient(circle, rgba(12,21,58,1) 0%, rgba(45,56,98,1) 0%, rgba(12,21,58,1) 100%);
  text-align: center;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  position: relative;
}

@media only screen and (min-width: 1000px) {
  section#features {
    padding: 120px 20px;
  }
}

section#features h2 {
  font-size: 24px;
}

@media only screen and (min-width: 800px) {
  section#features h2 {
    font-size: 28px;
    margin-bottom: 24px;
  }
}

section#features .show-all-btn {
  margin: 10px auto;
  padding: 4px 40px !important;
  border-radius: 8px;
  font-size: 16px !important;
}

section#features .accordion {
  color: white;
  max-width: 600px;
  margin: auto;
}

section#features .accordion .tag {
  cursor: pointer;
  border-bottom: 1px solid white;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 16px 0 16px 8px;
}

section#features .accordion .tag img.icon {
  width: 36px;
}

section#features .accordion .tag span {
  display: block;
  margin: 0 6px 0 16px;
  font-weight: bold;
  font-size: 18px;
}

section#features .accordion .tag img.arrow {
  width: 20px;
  margin-left: auto;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

section#features .accordion .tag img.arrow.up {
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
}

section#features .accordion .content {
  text-align: left;
  height: 0;
  overflow: hidden;
  -webkit-transition: height 0.3s;
  transition: height 0.3s;
}

section#features .accordion .content .content-wrapper {
  padding: 20px 4px 20px 2px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

section#features .accordion .content .content-wrapper img {
  margin-top: 20px;
}

footer {
  background-color: #454041;
  width: 100%;
  padding: 20px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

footer .wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  max-width: 1000px;
  margin: auto;
}

footer .wrapper span {
  color: white;
  font-size: 14px;
}

footer .wrapper img {
  width: 30px;
  margin-left: 20px;
}

.card {
  background-color: white;
  border-radius: 12px;
  padding-bottom: 20px;
  width: 100%;
  max-width: 500px;
  margin: auto;
  margin-bottom: 40px;
  -webkit-box-shadow: 4px 4px 20px rgba(0, 0, 0, 0.4);
          box-shadow: 4px 4px 20px rgba(0, 0, 0, 0.4);
}

.card .image {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}

.card .image img.project-img {
  border-top-left-radius: 12px;
  border-top-right-radius: 12px;
}

.card .image .tag {
  background-color: #c1272d;
  color: white;
  padding: 4px 12px;
  border-top-left-radius: 6px;
  border-top-right-radius: 6px;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  font-size: 14px;
  font-weight: bold;
  position: absolute;
  bottom: 0;
  margin: auto;
  text-align: center;
}

.card .info-wrapper {
  padding: 0 16px;
}

@media only screen and (min-width: 600px) {
  .card .info-wrapper {
    padding: 0 30px;
  }
}

.card .info-wrapper .title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 20px 0;
  height: 108px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

@media only screen and (min-width: 600px) {
  .card .info-wrapper .title {
    padding: 20px 0;
  }
}

.card .info-wrapper .title img.project-logo {
  width: calc(100% - 130px);
  max-width: 260px;
  margin: auto;
}

@media only screen and (min-width: 800px) {
  .card .info-wrapper .title img.project-logo {
    max-width: unset;
  }
}

.card .info-wrapper .title img.project-logo.upperville {
  width: calc(100% - 80px);
}

.card .info-wrapper .item {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  border-bottom: 1px solid rgba(0, 0, 0, 0.3);
  padding: 4px 0;
}

.card .info-wrapper .item:last-of-type {
  border-bottom: none;
}

.card .info-wrapper .item .subtitle {
  width: 40%;
}

.card .info-wrapper .item .content {
  width: 60%;
}

.card .info-wrapper .item .content b {
  font-family: avenir-bold, Arial, sans-serif;
}

.card .button {
  border-radius: 10px;
  margin: 20px auto 0;
}

.card.packages {
  margin-top: 30px;
  padding: 16px 30px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  color: #c1272d;
}

@media only screen and (min-width: 1000px) {
  .card.packages {
    margin-top: 60px;
  }
}

.card.packages h2 {
  text-align: center;
  margin-bottom: 20px;
  color: #c1272d;
}

.card.packages p {
  font-weight: bold;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  text-align: left;
  margin-bottom: 4px;
}

.card.packages p span.dot {
  color: black;
  font-size: 10px;
  margin-right: 6px;
  display: block;
  line-height: 22px;
}

@media only screen and (min-width: 800px) {
  .card.packages p span.dot {
    line-height: 24px;
    margin-right: 8px;
  }
}

.card.packages p b {
  font-family: avenir-bold, Arial, sans-serif;
  letter-spacing: -0.5px;
}

.card.packages .button {
  margin-top: 30px !important;
  padding: 8px 20px !important;
}

@media only screen and (min-width: 320px) {
  .card.packages .button {
    padding: 8px 40px !important;
  }
}

.registration-modal {
  position: fixed;
  top: 68px;
  left: 0;
  width: 100%;
  height: calc(100vh - 68px);
  overflow: auto;
  padding: 20px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  display: none;
}

.registration-modal.open {
  display: block;
}

.registration-modal .backdrop {
  background-color: black;
  opacity: 0.8;
  width: 100%;
  height: calc(100vh - 68px);
  position: absolute;
  top: 0;
  left: 0;
}

.registration-modal .card-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: calc(100vh - 68px);
}

.registration-modal .card-wrapper form.card {
  padding: 16px 16px 20px;
  width: calc(100% - 40px);
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  margin: unset;
  margin-top: -20px;
  max-width: 700px;
}

.registration-modal .card-wrapper form.card img.register-close-btn {
  cursor: pointer;
  width: 34px;
  margin-left: auto;
  margin-bottom: 8px;
}

.registration-modal .card-wrapper form.card h2 {
  border-bottom: 1px solid black;
  padding-bottom: 8px;
  color: #c1272d;
  text-align: center;
  margin: 0 auto 20px;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}

.registration-modal .card-wrapper form.card input {
  display: block;
  width: 100%;
  max-width: 400px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  margin: auto;
  margin-bottom: 12px;
  border: none;
  background-color: lightgray;
  text-align: center;
  padding: 8px;
  border-radius: 20px;
  font-family: avenir, Arial, sans-serif;
  font-size: 16px;
}

@media only screen and (min-width: 800px) {
  .registration-modal .card-wrapper form.card input {
    max-width: 600px;
    font-size: 18px;
    margin-bottom: 16px;
  }
}

.registration-modal .card-wrapper form.card input::-webkit-input-placeholder {
  color: black;
}

.registration-modal .card-wrapper form.card input:-ms-input-placeholder {
  color: black;
}

.registration-modal .card-wrapper form.card input::-ms-input-placeholder {
  color: black;
}

.registration-modal .card-wrapper form.card input::placeholder {
  color: black;
}

.registration-modal .card-wrapper form.card input.button {
  border: none;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  background-color: #c1272d !important;
  padding: 4px 40px !important;
}

.registration-modal .card-wrapper form.card .iti {
  display: block;
  margin: 0 auto 20px;
  max-width: 400px;
}

@media only screen and (min-width: 800px) {
  .registration-modal .card-wrapper form.card .iti {
    max-width: 600px;
  }
}

.registration-modal .card-wrapper form.card .checkbox-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  max-width: 260px;
  margin: 20px auto;
}

@media only screen and (min-width: 800px) {
  .registration-modal .card-wrapper form.card .checkbox-wrapper {
    max-width: -webkit-fit-content;
    max-width: -moz-fit-content;
    max-width: fit-content;
  }
}

.registration-modal .card-wrapper form.card .checkbox-wrapper input.checkbox {
  width: 18px;
  height: 18px;
  margin: 0;
  margin-right: 8px;
  margin-top: 2px;
}

.registration-modal .card-wrapper form.card .checkbox-wrapper label.checkbox {
  font-size: 14px;
  font-family: avenir, Arial, sans-serif;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}

.registration-modal .card-wrapper form.card .checkbox-wrapper label.checkbox a {
  color: black;
}

@media only screen and (min-width: 800px) {
  .registration-modal .card-wrapper form.card .checkbox-wrapper label.checkbox {
    font-size: 16px;
  }
  .registration-modal .card-wrapper form.card .checkbox-wrapper label.checkbox a {
    font-size: 16px;
  }
}

section#registration {
  padding: 80px 20px 80px;
  width: 100%;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  background-image: radial-gradient(circle, rgba(12,21,58,1) 0%, rgb(29, 40, 79) 0%, rgba(12,21,58,1) 100%);
  position: relative;
}


@media only screen and (max-width: 640px) {
  section#registration{
    padding-bottom: 300px;
  }
}

@media only screen and (min-width: 600px) {
  section#registration {
    padding: 60px 20px;
  }
}

@media only screen and (min-width: 1000px) {
  section#registration {
    padding: 120px 20px;
  }
}

section#registration h2 {
  margin-bottom: 30px;
  text-align: center;
  color: #FFFFFF;
}

section#registration p {
  max-width: 484px;
  margin: auto;
  text-align: center;
  color: white;
  text-shadow: 0px 0px 8px rgba(0, 0, 0, 0.8);
}

@media only screen and (min-width: 800px) {
  section#registration p {
    max-width: 600px;
  }
}

section#registration form {
  width: 100%;
  max-width: 600px;
  margin: auto;
  padding: 40px 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

form input,
form select,
form .select-box {
  border-radius: 12px;
  padding: 10px 8px;
  margin-bottom: 20px;
  font-size: 18px;
  text-align: center;
  border: 2px solid #e92027;
  color: white;
  background-color: rgb(29, 40, 79);
  width: 100%;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

form input:focus,
form select:focus,
form .select-box:focus{  
  border: 2px solid #ff7c7e;
  outline: none;
}

form input::-webkit-input-placeholder,
form select::-webkit-input-placeholder,
form .select-box::-webkit-input-placeholder {
  color: white;
  text-align: center;
  text-align-last: center;
}

form input:-ms-input-placeholder,
form select:-ms-input-placeholder,
form .select-box:-ms-input-placeholder {
  color: white;
  text-align: center;
  text-align-last: center;
}

form input::-ms-input-placeholder,
form select::-ms-input-placeholder,
form .select-box::-ms-input-placeholder {
  color: white;
  text-align: center;
  text-align-last: center;
}

form input::placeholder,
form select::placeholder,
form .select-box::placeholder {
  color: white;
  text-align: center;
  text-align-last: center;
}

form .select-wrapper {
  position: relative;
}

form .select-wrapper select {
  text-align-last: center;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  width: 100%;
  opacity: 0;
  z-index: 2;
  position: absolute;
  left: 0;
  top: 0;
}

form .select-wrapper .select-box {
  z-index: 1;
  padding: 8px !important;
}

form option {
  font-family: avenir, Arial, sans-serif;
  color: black;
  text-align: center;
  text-align-last: center;
}

form .iti {
  display: block;
  margin-bottom: 20px;
}

form .checkbox-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  max-width: 286px;
  margin: 6px auto 16px;
  color: white;
}

@media only screen and (min-width: 800px) {
  form .checkbox-wrapper {
    max-width: unset;
  }
}

form .checkbox-wrapper input.checkbox {
  width: 18px;
  height: 18px;
  margin: 0;
  margin-right: 8px;
  margin-top: 2px;
}

form .checkbox-wrapper label.checkbox {
  font-size: 16px;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  font-family: avenir, Arial, sans-serif;
}

form .checkbox-wrapper label.checkbox a {
  font-size: 16px !important;
}

#registration form button {
  border: none !important;
  margin: auto;
  margin-top: 30px;
  width: 100%;
  font-size: 22px;
  cursor: pointer;
}
@media only screen and (max-width: 640px) {
  #registration form button {
    font-size: 16px;
  }
}

form input::-webkit-outer-spin-button,
form input::-webkit-inner-spin-button {
  display: none;
}

#tiktok-subpage img.masthead{
  margin-top: -50px;
}

#tiktok-subpage h2{
  margin-top: 20px;
  text-align: center;
  color: #FFFFFF;
  font-weight: 300;
  font-size: 24px;
  max-width: 700px;
  line-height: 30px;
}

#tiktok-subpage{
  padding-bottom: 280px;
}

#donation-submit {
  margin-top: 0;
}

#donation-submit div.main{
  max-width: 800px;
}

#donation-submit h2{
  margin-top: 20px;
  margin-bottom: 40px;
  text-align: center;
  color: #FFFFFF;
  font-weight: normal;
  font-size: 24px;
  max-width: 900px;
  line-height: 30px;
}

#frmDonationSubmit{
  max-width: 600px;
  width: 100%;
  margin: 0 auto;
  text-align: center;
}

#frmDonationSubmit label{
  display: block;
  margin-bottom: 20px;
  margin-top: 10px;
  font-weight: normal;
  font-size: 20px;
  line-height: 24px;
}
.custom-file-upload{
  margin-bottom: 5px;
}
.custom-file-upload::-webkit-file-upload-button {
  visibility: hidden;
  display: none;
}
.custom-file-upload::before{
  content: 'Upload File';
  background-color:#fbb03b;
  outline: none;
  white-space: nowrap;
  -webkit-user-select: none;
  border-radius: 5px;
  padding: 5px 15px;
  margin-right: 10px;
}

.remarks{
  font-size: 14px;
  color: #FFF;
  text-align: center;
  display: block;
  font-weight: normal;
}


#donation-thankyou img.feature{
  max-width: 400px;
}

#donation-thankyou img.feature-tq{
  max-width: 500px;
}

#donation-thankyou h1{
  font-weight: normal;
  text-align: center;
  display: block;
  color: #FFF;
  font-size: 24px;
  line-height: 32px;
}

.iti input{
  padding-left: 8px!important;
}

/* Change the white to any color ;) */
input:-webkit-autofill {
  -webkit-box-shadow: 0 0 0 30px rgb(29, 40, 79) inset;
}

/*Change text in autofill textbox*/
input:-webkit-autofill {
  -webkit-text-fill-color: white !important;
}

.amountWrapper{
  position: relative;
}
.amountWrapper span{
  position: absolute;
  left: 9px;
  top: 10px;
  color: white;
  opacity: 0.8;
}

a.termsLink{
  font-size: 15px;
  text-align: center;
  color: white;
  text-decoration: underline;
  margin: auto;
  display: block;
  width: fit-content;
  margin-top: 20px;
}
@media only screen and (min-width: 800px) {
  a.termsLink{
    font-size: 20px;
  }
}
@media only screen and (max-width: 360px) {
  .highlight.hashtag{
    font-size: 16px;
  }
}
@media only screen and (max-width: 310px) {
  .highlight.hashtag{
    font-size: 15px;
  }
}
p.expand{
  width: 100%!important;
}
@media only screen and (max-width: 500px) {
  h1.smaller{
    font-size: 16px!important;
  }
}
@media only screen and (max-width: 420px) {
  h1.smaller{
    font-size: 15px!important;
  }
}
@media only screen and (max-width: 400px) {
  h1.smaller{
    font-size: 13px!important;
  }
}
@media only screen and (max-width: 350px) {
  h1.smaller{
    font-size: 12px!important;
  }
}
@media only screen and (max-width: 900px) {
  #donation-thankyou .splash-desktop.right{
    background-position-y: 100px;
    z-index: -1;
  }
}

#statusFileUpload{
  display: none;
  color: #FFFFFF;
  font-size: 16px;
  margin-top: 50px;
}

option{
  background-color: white!important;
  color: black!important;
}
@media only screen and (min-width: 639px) {
  .pill-wrap{
    display: flex;
    align-items: center;
    flex-direction: row-reverse;
  }
  .pill-wrap .pill{
    margin-top: 0!important;
  }
}
.disclaimer{
  position: absolute;
  right: 8px;
  top: 6px;
  font-size: 12px;
  color: rgba(0, 0, 0, 0.7);
}
.upload-wrapper{
  position: relative;
  width: fit-content;
  margin: auto;
}
@media only screen and (min-width: 310px) {
  .upload-wrapper{
    display: flex;
    align-items: center;
    justify-content: center;
  }
}
input#upload{
  opacity: 0;
  z-index: 1;
  width: 146px;
  cursor: pointer;
}
.upload-btn{
  position: absolute;
  left: 0;
  top: 0;
  width: 146px;
  z-index: -1;
  background-color: #fbb03b;
  border-radius: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 12px;
  box-sizing: border-box;
  font-size: 14px;
  color: black;
  font-family: avenir-bold, Arial, sans-serif;
  cursor: pointer;
  white-space: nowrap;
}
.upload-btn span{
  padding-top: 1px;
  text-shadow: none;
}
.upload-btn img{
  width: 20px;
  height: auto;
  margin-right: 4px;
}
.remarks{
  margin-left: 8px;
}
@media only screen and (max-width: 500px) {
  section{
    background-image: linear-gradient(to bottom, rgba(12,21,58,1), rgb(36, 45, 82) , rgba(12,25,63,1) )!important;
  }
}
.t-c{
  display: inline-block;
  margin-top: 4px;
}
/*# sourceMappingURL=style.css.map */