body {
  margin: 0;
  width: 100vw;
  min-height: 100vh;
  background: url(../img/awarenessBG.jpg);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.container {
  max-width: 1200px;
  width: calc(100% - 60px);
  margin: 0 auto;
}
.containerFull {
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
}
.flex {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.bannerContent {
  width: 100%;
}
h1 {
  font-family: "DM Sans";
  color: #414042;
  text-align: center;
  font-size: 70px;
  font-weight: bold;
  margin: 60px 0 ;
  line-height: 1.1;
}
h2 {
  font-family: "DM Sans";
  color: #414042;
  text-align: center;
  font-size: 50px;
  font-weight: bold;
  margin: 0;
}
h3 {
  font-family: "DM Sans";
  color: #414042;
  text-align: center;
  font-size: 32px;
  font-weight: bold;
  margin: 10px 0 20px;
}
h4 {
  font-family: "DM Sans";
  color: #414042;
  text-align: center;
  font-size: 26px;
  font-weight: bold;
  line-height: 1;
  margin: 20px 0 10px;
}
p {
  font-family: "DM Sans";
  color: #414042;
  text-align: center;
  font-size: 22px;
  font-weight: bold; 
}
.lista p {
  margin: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.lista p:before {
  content: "";
  width: 5px;
  height: 5px;
  display: block;
  background: #414042;
  border-radius: 50%;
  margin-right: 10px;
}
.lista-inline .row p:nth-child(2):before {
  content: "";
  width: 5px;
  height: 5px;
  display: block;
  background: #414042;
  border-radius: 50%;
  margin-right: 10px;
}
.lista-inline .row p:nth-child(2) {
  margin-left: 10px;
}
.lista-inline {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.lista-inline .row {
  display: flex;
}
.lista-inline .row p {
  display: flex;
  align-items: center;
  margin: 0;
  text-transform: uppercase;
}

.regBtn {
  font-family: "DM Sans";
  color: #000;
  text-align: center;
  font-size: 32px;
  font-weight: bold;
  text-transform: uppercase;
  text-decoration: none;
  background: #FFCD00;
  padding: 20px 40px;
  border-radius: 15px;
  margin: 60px 0;
}
.flex-row {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  margin-top: 60px;
}
.flex-row a {
  width: calc(25% - 10px);
  max-width: 220px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-decoration: none;
}
.flex-row a:not(:last-of-type) {
  margin-right: 40px;
}
.flex-row a img { 
  width: 100%;
}
.flex-row a span {
  font-family: "DM Sans";
  color: #414042;
  text-align: center;
  font-size: 18px;
  font-weight: 500;
  line-height: 1.15;
}
footer {
  margin-top: auto;
  margin-bottom: 0;
}
.mobile {
  display: none;
}
.bannerContent img {
  width: 100%;
}
@media only screen and (max-width: 965px) {
   p {
     font-size: 17px;
   }
}
@media only screen and (max-width: 767px) {
  body {
    background: none;
  }
  section {
    background: url(../img/awarenessBG-mobile.jpg);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
  }
  .mobile {
    display: block;
  }
  .desktop {
    display: none;
  }
  h3 {
    margin-bottom: 0;
  }

  .lista p {
    flex-direction: column;
  }
  .lista p:before { 
    margin-right: 0;
    margin-top: 15px;
    width: 5px;
    height: 5px;
  }
  .lista-inline .row {
    flex-direction: column;
    align-items: center;
  }
  .lista-inline .row p:before {
    content: "";
    width: 3px !important;
    height: 3px !important;
    display: block;
    background: #414042;
    border-radius: 50%;
    margin-right: 5px;
  }
  .lista-inline .row p:nth-child(2) {
    margin-left: 0;
  }
  .flex-row {
    flex-wrap: wrap;
    margin-top: 30px;
    justify-content: space-between;
  }
  .flex-row a {
    width: calc(50% - 10px);
    margin-bottom: 30px;
    max-width: initial;
  }
  .flex-row a:not(:last-of-type) {
    margin-right: 0;
  }
  h1 {
    font-size: 35px;
    margin: 30px 0;
  }
  h2 {
    font-size: 25px;
  }
  h3 {
    font-size: 18px;
  }
  h4 {
    font-size: 15px;
    margin: 10px 0 5px;
  }
  p {
    font-size: 14px;
  }
  .flex-row a span {
    font-size: 12px;
  }
  .regBtn { 
    font-size: 16px;
    padding: 10px 20px;
    margin: 30px 0;
  }
}