/* -------------------------------------------------
   Global Styles
--------------------------------------------------- */

body {
  font-family: 'Lato', sans-serif;
  background: #353535;
  color: #ffffff;
}

h2 {
  color: #e6e6e6;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.mrng-60-top {
  margin-top: 60px;
}

/* -------------------------------------------------
   Animated Button Base
--------------------------------------------------- */

a.animated-button {
  position: relative;
  display: inline-block;
  margin: 30px auto 0;
  padding: 14px 30px;
  font-size: 14px;
  font-weight: bold;
  letter-spacing: 0.08em;
  text-align: center;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 0;
  cursor: pointer;
  box-sizing: border-box;
  overflow: hidden;
  transition: color 0.4s cubic-bezier(0.215, 0.61, 0.355, 1);
  z-index: 1;
  background: transparent;
}

a.animated-button::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 0;
  left: 0;
  z-index: -1;
  transition: height 0.4s cubic-bezier(0.215, 0.61, 0.355, 1);
}

a.animated-button:hover {
  color: #000;
}

/* -------------------------------------------------
   Animation Direction
--------------------------------------------------- */

/* One – fill top to bottom */

a.animated-button.one::before {
  top: 0;
}

a.animated-button.one:hover::before {
  height: 100%;
}

/* Two – fill bottom to top */

a.animated-button.two::before {
  bottom: 0;
}

a.animated-button.two:hover::before {
  height: 100%;
}

/* -------------------------------------------------
   Color Themes
--------------------------------------------------- */

/* Report Section */

a.animated-button.report_section {
  border: 2px solid #d24d57;
  color: #fff;
}

a.animated-button.report_section::before {
  background: #d24d57;
}

/* Appeal Section */

a.animated-button.appeal_section {
  border: 2px solid #65b37a;
  color: #fff;
}

a.animated-button.appeal_section::before {
  background: #65b37a;
}

/* Gang Section */

a.animated-button.gang_section {
  border: 2px solid #d24d57;
  color: #fff;
}

a.animated-button.gang_section::before {
  background: #d24d57;
}

/* Whitelisted Section */

a.animated-button.whitelisted_section {
  border: 2px solid #ffffff;
  color: #fff;
}

a.animated-button.whitelisted_section::before {
  background: #ffffff;
}

a.animated-button.whitelisted_section:hover {
  color: #000000;
}

/* State Section */

a.animated-button.state_section {
  border: 2px solid #6561ff;
  color: #fff;
}

a.animated-button.state_section::before {
  background: #6561ff;
}

a.animated-button.state_section:hover {
  color: #ffffff;
}

/* Community Section */

a.animated-button.community_section {
  border: 2px solid #59c932;
  color: #fff;
}

a.animated-button.community_section::before {
  background: #59c932;
}

a.animated-button.community_section:hover {
  color: #000000;
}

/* -------------------------------------------------
   Fix Button Size (Full Width Look)
--------------------------------------------------- */

a.animated-button.btn.btn-sm {
  display: block;
  width: 100%;
  padding: 14px 0 !important;
  font-size: 16px !important;
  font-weight: 600;
  box-sizing: border-box;
  text-align: center;
  border-radius: 0;
  margin: 20px 0;
  line-height: 1.2;
}

a.animated-button.btn.btn-sm::before {
  width: 100%;
}

.row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
}

.card-container_application {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 0px!important;
  margin-bottom: 50px!important;
}

