@import url("https://fonts.googleapis.com/css?family=Lato:400,700&display=swap");
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}

/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block;
}

body {
  line-height: 1;
}

ol, ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

blockquote:before, blockquote:after,
q:before, q:after {
  content: '';
  content: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

.inner-wrapper {
  padding-left: 3%;
  padding-right: 3%;
}

.flex-vert-ctr {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.cta {
  background-color: #fed201;
  color: #000000;
  text-decoration: none;
  font-weight: bolder;
  transition: .3s all;
}

.cta:hover {
  background-color: #cba801;
  color: #000;
}

.btn-lg {
  padding: .5em 3em;
  font-size: 4vw;
  line-height: 1.5;
}

.btn-sm {
  padding: .5em 2em;
  font-size: 1.5vw;
  font-weight: bold;
}

.btn {
  display: inline-block;
  text-align: center;
  text-decoration: none;
  margin: 2px 0;
  border-radius: 2px;
  color: #000;
  background-color: #fed201;
  text-transform: uppercase;
  font-weight: bold;
  box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.07);
}

.btn:hover {
  color: #000;
  background-color: #c1a001;
}

.img-responsive {
  display: block;
  max-width: 100%;
  height: auto;
}

.div-spacer {
  padding-top: 4%;
  padding-bottom: 4%;
}

.div-spacer-sm {
  padding-top: 3%;
  padding-bottom: 3%;
}

.bottom-spacer {
  padding-top: 0;
  padding-bottom: 4%;
}

@media (min-width: 300px) and (max-width: 530px) {
  .bottom-spacer {
    padding-bottom: 8%;
  }
}

.text-center {
  width: 100%;
  margin: 40px 0;
  text-align: center;
}

.p-center {
  text-align: center;
}

.checked {
  color: #fed201;
}

/*------------------------------------*\
    # Simple Typography Settings
\*------------------------------------*/
/*------------------------------------*\
    # Type
\*------------------------------------*/
*, html, body {
  font-size: 16px;
  font-family: "Lato", sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
}

h1, h2, h3, h4, h5, h6 {
  margin-top: 36px;
  line-height: 1.25em;
  font-weight: 900;
}

h1:first-child, h2:first-child, h3:first-child, h4:first-child, h5:first-child, h6:first-child {
  margin-top: 0;
}

h1 {
  font-size: 2.5rem;
  margin-bottom: 24px;
}

h2 {
  font-size: 1.92308rem;
  margin-bottom: 18.46154px;
}

h3 {
  font-size: 1.66667rem;
  margin-bottom: 16px;
}

h4 {
  font-size: 1.47059rem;
  margin-bottom: 14.11765px;
}

h5 {
  font-size: 1.38889rem;
  margin-bottom: 13.33333px;
}

h6 {
  font-size: 1.25rem;
  margin-bottom: 12px;
}

p {
  margin-bottom: 20px;
  font-size: 1.0625rem;
  line-height: 1.5em;
  color: #323232;
}

p:last-of-type {
  margin-bottom: 0;
}

ul,
ol {
  margin: 20px 0 0 20px;
}

ul li,
ol li {
  margin-top: 10px;
  line-height: 1.5em;
  color: #505050;
}

ul ul,
ul ol,
ol ul,
ol ol {
  margin-top: 0;
}

ul li {
  list-style: disc;
}

ul ul li {
  list-style: circle;
}

ol li {
  list-style: decimal;
}

hr {
  height: 3px;
  margin: 30px 0;
  border: none;
  background-color: #323232;
  opacity: .3;
}

blockquote {
  margin: 30px 0;
  font-size: 1.4375rem;
  line-height: 1.5em;
  color: #505050;
  text-align: center;
  font-style: italic;
}

table {
  width: 100%;
  margin: 30px 0;
  border-collapse: collapse;
}

table, td, th {
  border: 1px solid #DADADA;
  text-align: left;
}

th {
  font-weight: 800;
}

th, td {
  padding: 15px;
}

figure {
  margin: 30px 0;
}

figure img {
  margin: 0;
}

figcaption {
  margin-top: 10px;
  color: #6a6a6a;
  font-size: 16px;
}

pre {
  display: block;
  margin: 0 0 40px 0;
  padding: 20px;
  background-color: #f9f9f9;
  border: 1px solid #DADADA;
  overflow: auto;
  border-radius: 3px;
}

pre code {
  position: static;
  padding: 0;
  border: none;
  line-height: 1.5em;
}

code {
  position: relative;
  top: -0.2em;
  padding: 3px;
  font-family: Courier New, Courier, monospace;
  font-size: 0.88542rem;
  color: #282828;
  line-height: 1em;
  pointer-events: none;
  border: 1px solid #DADADA;
  border-radius: 3px;
}

em,
i,
.italic {
  font-style: italic;
}

strong,
b,
.bold {
  font-weight: 800;
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: #c36103;
}

a:hover {
  color: #fed201;
}

.active {
  color: #fff;
}

.join-btn a {
  background: #fed201;
  color: #000;
  padding: 10px 20px !important;
  font-weight: bold;
  text-transform: uppercase;
  border: none;
}

.join-btn a:hover {
  background-color: #cba801;
  color: #000;
}

.clearfix {
  clear: both;
}

/* End Reset Some Elements */
.navbar {
  background-color: #000;
  display: grid;
  grid-template-columns: 1fr auto;
  padding-top: .5em;
  padding-bottom: .5em;
}

@media (min-width: 300px) and (max-width: 1019px) {
  .navbar {
    padding-top: 0;
    padding-bottom: 0;
  }
}

.navbar .toggle {
  width: 30px;
  padding: 10px;
  float: right;
  background-color: transparent;
  border-radius: 10px;
  margin: 6px;
  cursor: pointer;
  display: none;
}

@media (max-width: 882px) {
  .navbar .toggle {
    display: block;
  }
}

.navbar .toggle span {
  width: 100%;
  height: 4px;
  background-color: #fff;
  display: block;
  margin-bottom: 3px;
}

.navbar .logo {
  align-self: center;
}

.navbar .logo img {
  width: 350px;
}

@media (min-width: 380px) and (max-width: 1019px) {
  .navbar .logo img {
    width: 275px;
  }
}

@media (min-width: 1020px) and (max-width: 1200px) {
  .navbar .logo img {
    width: 350px;
  }
}

.navbar .links ul {
  margin: 0;
}

.navbar .links li {
  display: inline-block;
  padding: 15px;
  line-height: 1;
  margin: 0;
}

@media (max-width: 882px) {
  .navbar .links li {
    display: block;
    text-align: center;
  }
}

@media (min-width: 769px) and (max-width: 1079px) {
  .navbar .links li {
    padding: 15px 5px;
  }
}

@media (min-width: 1080px) and (max-width: 1200px) {
  .navbar .links li {
    padding: 15px 5px;
  }
}

.navbar .links li:first-child:hover {
  color: #fff;
}

.navbar .links li:last-child {
  padding-right: 0;
  color: #000;
}

.navbar .links a {
  font-size: 1.5em;
  text-decoration: none;
  text-transform: uppercase;
}

@media (min-width: 769px) and (max-width: 1200px) {
  .navbar .links a {
    font-size: 1.2em;
  }
}

header {
  background-repeat: no-repeat;
  background-size: cover;
  background-position: 50% 50%;
  width: 100%;
  height: 90vh;
  position: relative;
  color: #fff;
  background-blend-mode: multiply;
}

.header-text {
  width: 100%;
  background-color: rgba(0, 0, 0, 0.7);
  text-align: center;
  position: absolute;
  bottom: 0;
  padding: 1em 0;
}

.header-text h2 {
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.6);
  margin: 0;
  font-weight: normal;
  font-size: calc(1vw + 1vh + 1vmin);
}

@media (min-width: 300px) and (max-width: 1199px) {
  .header-text {
    width: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    text-align: center;
    position: absolute;
    bottom: 0;
    padding: 1em 0;
  }
  .header-text h2 {
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.6);
    margin: 0;
    font-weight: normal;
    font-size: 1.5em;
  }
}

.title {
  display: flex;
}

.title h1 {
  margin-top: -5px;
  font-size: 2em;
}

@media (min-width: 300px) and (max-width: 530px) {
  .title h1 {
    font-size: 1.5em;
    margin-bottom: .5em;
  }
}

.title img {
  width: 30px;
  height: 30px;
  padding-right: 10px;
}

.video-card-wrapper {
  width: 100%;
  height: auto;
  padding-top: 1em;
  /*display: -ms-grid;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    grid-gap: 1.5em;
    */
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  grid-gap: 1em;
}

@media (min-width: 300px) and (max-width: 430px) {
  .video-card-wrapper {
    grid-template-columns: 1fr;
    grid-gap: 1em;
  }
}

@media (min-width: 431px) and (max-width: 998px) {
  .video-card-wrapper {
    grid-template-columns: 1fr 1fr;
    grid-gap: 1em;
  }
}

.video-card .video-card-img img {
  width: 100%;
  transition: transform .5s ease;
  overflow: hidden;
}

.video-card .video-card-img img:hover {
  transform: scale(1.06);
}

.video-card .video-card-text {
  background-color: #000;
  border-top: 2px solid #fed201;
  padding: .5em;
}

.video-card .video-card-text a {
  font-size: 1.1em;
  text-decoration: none;
  color: #fff;
  margin: 0;
}

.video-card .video-card-text a:hover {
  color: #fed201;
}

@media (min-width: 300px) and (max-width: 430px) {
  .video-card .video-card-text a {
    font-size: 1.1em;
  }
}

@media (min-width: 431px) and (max-width: 998px) {
  .video-card .video-card-text a {
    font-size: 1em;
  }
}

.video-card .video-card-text p {
  color: #a7a7a7;
  font-size: .9em;
}

.video-card .video-card-text .video-card-rating {
  padding-top: 8px;
  display: flex;
  flex-wrap: nowrap;
  justify-content: space-between;
}

@media (min-width: 431px) and (max-width: 630px) {
  .video-card .video-card-text .video-card-rating {
    flex-direction: column;
  }
}

.video-card .video-card-text .video-card-rating p {
  margin: 0;
  font-size: .8em;
}

@media (min-width: 300px) and (max-width: 992px) {
  .video-card .video-card-text .video-card-rating p {
    font-size: .8em;
  }
}

.video-card .video-card-text .snippet-updated {
  color: #7a7a8c;
  font-size: 14px;
}

.video-card .video-card-text .snippet-author a, .video-card .video-card-text .snippet-author time, .video-card .video-card-text .snippet-category a, .video-card .video-card-text .snippet-category time, .video-card .video-card-text .snippet-updated a, .video-card .video-card-text .snippet-updated time {
  color: #fff;
}

.video-card .img-hover-zoom {
  width: 100%;
  height: auto;
  overflow: hidden;
}

.pagination {
  display: inline-block;
  padding: 0 0 70px 0;
  width: 100%;
  display: flex;
  justify-content: center;
}

.pagination a {
  color: #fff;
  padding: 10px 25px;
  text-decoration: none;
  transition: background-color .3s;
  margin: 5px;
  font-size: 1.8em;
  font-weight: normal;
}

.pagination a:hover {
  text-decoration: underline;
  color: #fed201;
}

.pagination .active-page {
  background-color: #fed201;
  color: #000;
  font-weight: 900;
}

.pagination .active-page:hover {
  background-color: #fed201;
  color: #000;
}

@media (min-width: 300px) and (max-width: 530px) {
  .pagination {
    flex-wrap: wrap;
    padding: 30px 0;
  }
  .pagination a {
    font-size: 1.2em;
    padding: 5px 12px;
  }
}

.desi-benefits {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  background-color: #000;
}

.desi-benefits h2 {
  color: #fed201;
}

.desi-benefits p {
  color: #a7a7a7;
}

.desi-benefits .left {
  background-color: #000;
  padding: 2.5em;
}

.desi-benefits .right {
  background-color: #141414;
  padding: 2.5em;
}

.desi-benefits .right li {
  color: #a7a7a7;
}

.desi-benefits .right li:hover {
  color: #fff;
}

.desi-benefits .bottom {
  background-color: #fed201;
  padding: 2em;
  text-align: center;
  grid-column: 1 / 3;
}

.desi-benefits .bottom h1 {
  color: #000;
  width: 80%;
  margin: 0 auto;
  font-size: 3.5em;
  font-weight: bolder;
}

@media (min-width: 300px) and (max-width: 530px) {
  .desi-benefits {
    grid-template-rows: 1fr auto;
  }
  .desi-benefits .left {
    grid-column: 1 / 3;
    padding: 1.5em 1em;
  }
  .desi-benefits .right {
    grid-column: 1 / 3;
    padding: 1.5em 1em;
  }
  .desi-benefits .bottom {
    padding: 1.5em 1em;
  }
  .desi-benefits .bottom h1 {
    width: 95%;
    font-size: 2.5em;
  }
}

.photo-card-wrapper {
  width: 100%;
  height: auto;
  padding-top: 1em;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(170px, 1fr));
  grid-gap: 1.5em;
}

.photo-card .photo-card-img img {
  width: 100%;
  transition: transform .5s ease;
  overflow: hidden;
}

.photo-card .photo-card-text {
  background-color: #000;
  border-top: 2px solid #fed201;
  padding: .5em;
}

.photo-card .photo-card-text a {
  font-size: 1.2em;
  text-decoration: none;
  color: #fff;
  margin: 0;
}

.photo-card .photo-card-text a:hover {
  color: #fed201;
}

.photo-card .photo-card-text p {
  color: #a7a7a7;
  font-size: .9em;
}

.photo-card .img-hover-zoom {
  width: 100%;
  height: auto;
  overflow: hidden;
}

.desi-text {
  display: grid;
  grid-template-columns: 1fr 1fr;
  background-color: #000;
}

.desi-text h2 {
  color: #fed201;
}

.desi-text p {
  color: #a7a7a7;
}

.desi-text .left {
  background-color: #000;
  padding: 2.5em;
}

.desi-text .right {
  background-color: #141414;
  padding: 2.5em;
}

.desi-text .right li {
  color: #a7a7a7;
}

.desi-text .right li:hover {
  color: #fff;
}

@media (min-width: 300px) and (max-width: 530px) {
  .desi-text {
    grid-template-rows: 1fr;
  }
  .desi-text .left {
    grid-column: 1 / 3;
    padding: 1.5em 1em;
  }
  .desi-text .right {
    grid-column: 1 / 3;
    padding: 1.5em 1em;
  }
}

.footer {
  width: 100%;
  margin: 0 auto;
  padding: 2% 0;
  color: #BBB;
}

.footer .footer-nav {
  width: 100%;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  padding-bottom: 1em;
}

.footer li {
  display: inline-block;
  padding: 10px;
  font-weight: bold;
  font-size: 1.1em;
}

.footer a {
  color: #a7a7a7;
  text-decoration: none;
}

.footer a:hover {
  color: #fff;
}

.footer p {
  color: #fff;
}

@media (min-width: 300px) and (max-width: 530px) {
  .footer {
    padding-top: 3em;
  }
  .footer .footer-nav {
    flex-direction: column;
    padding-bottom: 2em;
  }
  .footer li {
    padding: 5px;
  }
}

.video-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  grid-template-rows: 1fr auto auto;
  padding: 2em;
  width: 100%;
  max-width: 80%;
  margin: 0 auto;
}

.video-player {
  grid-column: 1 / 4;
}

.video-info-left {
  grid-column: 1 / 3;
  padding: 2em;
  background-color: #000;
}

.video-info-left h2 {
  color: #fed201;
}

.video-info-left p {
  color: #a7a7a7;
}

.video-info-right {
  grid-column: 3 / 4;
  background-color: #141414;
  padding: 2em;
}

.video-info-right p {
  color: #a7a7a7;
}

.video-info-right p span {
  color: #fff;
}

.video-info-bottom {
  grid-column: 1 / 4;
  margin: 1em 0;
}

.video-info-bottom ul {
  display: flex;
  margin: 0;
  justify-content: center;
}

.video-info-bottom li {
  list-style: none;
  padding-top: 2em;
  padding-bottom: 2em;
  margin-right: 1em;
  margin-top: 0;
  background-color: #000;
  color: #fff;
  text-transform: uppercase;
  width: 24%;
  text-align: center;
}

.video-info-bottom li:last-child {
  margin-right: 0;
}

.video-info-bottom li h3 {
  margin: 0;
}

.video-info-bottom li p {
  color: #fff;
  text-transform: uppercase;
}

@media (min-width: 300px) and (max-width: 530px) {
  .links {
    grid-column: 1 / 3;
  }
  /*.video-card-wrapper {
        grid-template-columns: 1fr;
        grid-gap: 1em;
    }
    */
  .video-wrapper {
    padding: .5em;
    max-width: 95%;
  }
  .video-info-left {
    grid-column: 1 / 4;
    padding: 1em;
  }
  .video-info-left h2 {
    font-size: 1.5em;
  }
  .video-info-right {
    grid-column: 1 / 4;
    padding: 1em;
    text-align: center;
  }
  .video-info-bottom ul {
    flex-direction: column;
  }
  .video-info-bottom li {
    width: 100%;
    padding-top: 1em;
    padding-bottom: 1em;
    margin: .3em auto;
  }
  .btn-lg {
    padding: .3em;
    font-size: 2.2em;
    line-height: 1.5;
    text-align: center;
  }
}

@media (min-width: 531px) and (max-width: 882px) {
  .video-wrapper {
    padding: 1.3em;
  }
  .video-info-left {
    grid-column: 1 / 4;
    padding: 1em;
  }
  .video-info-left h2 {
    font-size: 1.4em;
  }
  .video-info-right {
    grid-column: 1 / 4;
    padding: 1em;
    text-align: center;
  }
  .video-info-bottom ul {
    flex-wrap: wrap;
  }
  .video-info-bottom li {
    width: 48%;
    padding-top: 1em;
    padding-bottom: 1em;
    margin-right: 0;
    border: 3px solid #323232;
  }
  .btn-lg {
    padding: .3em;
    font-size: 7vw;
  }
}

@media (min-width: 883px) and (max-width: 1199px) {
  .video-wrapper {
    padding: 1.5em;
    max-width: 90%;
  }
  .video-info-right {
    padding: 1em 0 0 0;
  }
  .video-info-bottom ul {
    flex-wrap: wrap;
  }
  .video-info-bottom li {
    width: 48%;
    padding-top: 1em;
    padding-bottom: 1em;
    margin-right: 0;
    border: 3px solid #323232;
  }
  .btn-lg {
    font-size: 3em;
  }
}

.navbar-join {
  background-color: #000;
  margin: 0 auto;
  padding-top: 1em;
  padding-bottom: 1em;
}

.navbar-join img {
  width: 500px;
  margin: 0 auto;
}

@media (min-width: 300px) and (max-width: 579px) {
  .navbar-join img {
    width: 280px;
  }
}

.join-wrapper {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
}

@media (min-width: 300px) and (max-width: 768px) {
  .join-wrapper .text {
    width: 90%;
    margin: 0 auto;
    padding: 1em 0;
  }
  .join-wrapper .btn-sm {
    padding: .5em 2em;
    font-size: 5vw;
    font-weight: bold;
  }
}

@media (min-width: 769px) and (max-width: 1020px) {
  .join-wrapper .text {
    width: 90%;
    margin: 0 auto;
    padding: .5em 0;
  }
}

.join-wrapper .text {
  padding: 2em 0;
  text-align: center;
}

.join-wrapper .text p {
  color: #ffffff;
}

.join-form-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
}

@media (min-width: 300px) and (max-width: 768px) {
  .join-form-wrapper {
    grid-template-columns: 1fr;
  }
}

.join-form-wrapper .left {
  background-color: #000;
  padding: 2em;
}

.join-form-wrapper .left span {
  color: #fed201;
}

.join-form-wrapper .left input {
  border: 0;
}

.join-form-wrapper .left input p {
  color: #fff;
}

.join-form-wrapper .left input .join_select {
  margin-top: 1em;
}

.join-form-wrapper .left .right {
  background-color: transparent;
}

@media (min-width: 300px) and (max-width: 768px) {
  .join-form-wrapper .text {
    width: 90%;
    margin: 0 auto;
    padding: 1em 0;
  }
  .join-form-wrapper .btn-sm {
    padding: .5em 2em;
    font-size: 5vw;
    font-weight: bold;
  }
  .join-form-wrapper .right {
    margin: 1em;
  }
  .join-form-wrapper .left {
    padding: 1em;
  }
}

.join-form-wrapper .form-btn {
  text-align: center;
}

.join-form-wrapper .form-btn p {
  color: #a7a7a7;
}

.join-form-wrapper .form {
  font-style: normal;
  padding-left: 20px;
  padding-bottom: 40px;
}

.join-form-wrapper .w-gray-bg h2 {
  font-size: 30px !important;
  margin-bottom: 20px;
}

.join-form-wrapper .w-gray-bg h2 {
  margin: 0;
  padding-top: 0 !important;
  padding-bottom: 0 !important;
  color: #fff;
  text-shadow: 1px 1px #000;
  font-size: 48px;
  letter-spacing: -0.02em;
  line-height: 1.4em;
  border: 0;
}

.join-form-wrapper input {
  padding: 4px;
  border: 1px solid #d0d0d0;
  outline: none;
  background: #f7f7f7;
  margin-top: 3px;
}

.join-form-wrapper input[type=submit] {
  font-size: 30px;
  display: block;
  height: 51px;
  text-shadow: none;
  font-weight: 600;
  letter-spacing: -0.05em;
  border-radius: 5px;
  text-transform: uppercase;
  padding: 0px 20px 0 20px;
  margin: 20px auto 16px;
  border: none;
  background-color: #fed201;
}

.join-form-wrapper input[type="text"] {
  display: block;
  outline: none;
  border-radius: 6px;
  border: solid 1px #d6d6d6;
  -moz-border-radius: 6px;
  width: 100%;
  margin-right: 5px;
  margin-bottom: 10px;
  padding: 5px 0;
  font-size: 18px;
  font-weight: bold;
  color: #000;
}

.join-form-wrapper select {
  display: block;
  border-radius: 6px;
  border: solid 1px #d6d6d6;
  -moz-border-radius: 6px;
  width: 100%;
  height: 35px;
  margin: 3px 5px 10px 0;
  color: #000;
  padding: 0px 10px;
  font-size: 18px;
  font-weight: bold;
  background: #f7f7f7;
  outline: none;
  line-height: 38px;
}

.join-form-wrapper .join_name {
  font-size: 14px;
  font-weight: normal;
  text-align: left;
  display: block;
  color: #fff;
  font-style: normal;
  padding: 10px 0 0 0;
}

.join-form-wrapper label {
  display: block;
  max-width: 100%;
  margin-bottom: 5px;
  font-weight: 700;
}

.join-form-wrapper input[type=radio], .join-form-wrapper input[type=checkbox] {
  margin: 3px 0 0 5px;
}

body {
  background: #323232;
  color: #fff;
  font-family: "Lato", sans-serif;
}
/*# sourceMappingURL=main.css.map */

  .blur {
  filter: blur(10px);
}