@font-face {
   font-family: 'FormaDJRMicro';
   src: url(/fonts/FormaDJRMicro-ExtraBold.woff);
   font-weight: 800;
}
@font-face {
   font-family: 'FormaDJRMicro';
   src: url(/fonts/FormaDJRMicro-Medium.woff);
   font-weight: 500;
}
@font-face {
   font-family: 'FormaDJRMicro';
   src: url(/fonts/FormaDJRMicro-Regular.woff);
   font-weight: 400;
}


:root {
  --white: #fff;
  --black: #222221;
  --lightgrey: #F8F8F8;
  --grey: #415064;
  --blue: #009DE0;
  --orange: #F68F36;
}

html, body{
  margin: 0;
  padding: 0 !important;
  font-family: 'FormaDJRMicro';
  font-weight: normal;
  font-style: normal;
  font-size: 16px;
  overflow-x: hidden !important;
}
a:hover {
  color: #000000;
}
/* header */
.header {
  text-align: center;
  padding: 50px 0 200px 0;
  overflow: hidden;
  position: relative;
}
.header-txt {
  margin: 60px 0 60px 0;
}
.header-txt h1 {
  color: var(--black);
  font-size: 36px;
  font-weight: 800;
  line-height: 1.1;
}
.header-txt p {
  color: var(--black);
  font-size: 20px;
  font-weight: 400;
  max-width: 70%;
  line-height: 1.1;
  margin: 0 auto;
}
#pc, #phone {
  position: absolute;
}
#phone {
  width: 500px;
  top: 100px;
  right: -50px;
}
#pc {
  width: 600px;
  left: -50px;
  bottom: 0px;
}
/* form */
#contactform {
  width: 600px;
  padding: 30px 20px;
  background: var(--white);
  margin: 0 auto;
  border-radius: 35px;
  box-shadow: 0px 4px 16px rgba(0, 0, 0, 0.25);
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  position: relative;
  z-index: 99;
}
#contactform h3 {
  margin-bottom: 20px;
  font-size: 28px;
  font-weight: 500;
  color: var(--grey);
  line-height: 1.2;
}
#contactform h3 span {
  font-weight: 800;
  color: var(--blue);
}
.form-input-group {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}
.form-inputs {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  flex-direction: column;
  width: 45%;
  margin: 5px;
}
.form-inputs input, .form-inputs select {
  width: 100%;
  height: 40px;
  border-radius: 10px;
  border: 2px solid var(--grey);
  background: var(--white);
  color: var(--grey);
  padding: 0 0 0 10px;
  font-size: 16px;
  line-height: 1;
  font-weight: 400;
  -webkit-appearance: none;
}
.form-inputs input:focus-visible, .form-inputs select:focus-visible {
  outline: none;
}
::-webkit-input-placeholder {
  color: var(--grey);
}
:-moz-placeholder {
  color: var(--grey);
  opacity: 1;
}
::-moz-placeholder {
  color: var(--grey);
  opacity: 1;
}
:-ms-input-placeholder {
  color: var(--grey);
}
::-ms-input-placeholder {
  color: var(--grey);
}
::placeholder {
  color: var(--grey);
}
.form-check {
  text-align: left;
  padding: 0;
}
.form-check label {
  margin: 0 0 0 0px;
  position: relative;
  padding-left: 20px;
  cursor: pointer;
  line-height: 1;
  color: var(--black);
  font-size: 10px;
  font-weight: 300;
}
.form-check input[type=checkbox] {
  position: absolute;
  opacity: 0;
  cursor: pointer;
}
.checkmark {
  position: absolute;
  top: 0 px;
  left: 0;
  height: 12px;
  width: 12px;
  background-color: transparent;
  border: 1px solid var(--black);
  border-radius: 2px;
  padding-right: 2px;
  color: var(--blue);
}
.form-check input[type=checkbox]:checked + .checkmark::after {
  content: "\2713";
  display: block;
  text-align: center;
  line-height: 12px;
  margin-left: 2px;
  margin-top: 0px;
  font-size: 13px;
}
.pp-link {
  position: relative;
  z-index: 100;
}
#politica-link {
  color: var(--black);
  font-weight: 700;
  text-decoration: none;
}
#politica-link:hover {
  color: var(--blue);
  text-decoration: underline;
}
.error, #termos-error {
  color: red;
  font-size: 11px;
  font-weight: 400;
  margin: 3px 0 0 0;
}
#termos-error {
  text-align: left;
  margin-left: -20px;
}
.form-button {
  width: 160px;
  height: 50px  ;
  border-radius: 10px;
  border: none;
  background: var(--blue);
  color: var(--White, #FFF);
  font-size: 20px;
  font-weight: 700;
  transition: all 0.4s ease;
  margin: 20px auto 0 auto;
}
.form-button:hover {
  background: var(--orange);
  color: var(--white);
  transform: scale(1.02);
}
/* section1 */
.section1 {
  text-align: center;
  padding: 20px 0 60px 0;
  margin-top: -100px;
}
.title {
  margin-bottom: 50px;
}
.title h3 {
  font-size: 40px;
  font-weight: 800;
  color: var(--black);
}
.title h3 span {
  color: var(--blue);
}
.benif {
  background: var(--lightgrey);
  padding: 30px;
  width: 90%;
  min-height: 275px;
  margin: 0 auto;
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  flex-direction: column;
  text-align: left;
  border-radius: 50px;
  border: 0px solid var(--grey);
  box-shadow: 0px 4px 10px 0px rgba(0, 0, 0, 0.25);
  transition: all 0.6s ease;
}
.benif:hover {
  transform: scale(1.05);
}
.benif img {
  height: 60px;
  margin-bottom: 20px;
}
.benif p {
  font-size: 18px;
  color: var(--grey);
  line-height: 1.2;
  font-weight: 500;
}
/* section 2 */
.section2 {
  text-align: center;
  padding: 40px 0;
}
.sec2-txt {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 60px;
}
.sec2-txt img {
  margin: -10px 20px 0 0;
  height: 55px;
}
.sec2-txt h3 {
  color: var(--grey);
  font-size: 64px;
  font-weight: 800;
  line-height: 1;
  margin: 0;
}
.prizes-img {
  text-align: left;
}
.prizes-img2 {
  text-align: right;
}
.prizes-img img, .prizes-img2 img {
  margin: 40px 0;
}
/* section3 */
.section3 {
  padding: 150px 0 50px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.section3 .title {
  margin-bottom: 30px;
}
#tablet {
  position: absolute;
  top: 0;
  right: 0;
}
.sec3-txt p {
  color: var(--black);
  font-size: 20px;
  line-height: 1.1;
  font-weight: 400;
  margin: 0 auto 30px auto;
  max-width: 90%;
}
/* section 4 */
.section4 {
  padding: 0 0 30px 0;
  text-align: center;
}
.section4 .container {
  background: var(--lightgrey);
  box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.25);
  border-radius: 50px;
  max-width: 60%;
  margin: 0 auto;
}
.sec4-txt {
  padding: 60px 20px;
}
.sec4-txt h3 {
  color: var(--grey);
  font-size: 36px;
  font-weight: 700;
  margin: 0 auto 20px auto;
}
.sec4-txt button {
  width: 160px;
  height: 50px  ;
  border-radius: 10px;
  border: none;
  background: var(--blue);
  color: var(--white);
  font-size: 20px;
  font-weight: 700;
  transition: all 0.4s ease;
  margin: 20px auto 0 auto;
}
.sec4-txt button:hover {
  background: var(--orange);
  color: var(--white);
  transform: scale(1.02);
}
/* section 5 */ 
.section5 {
  text-align: center;
  padding: 60px 0;
}
.sec5-txt {
  margin-bottom: 60px;
}
.sec5-txt h3 {
  color: var(--grey);
  font-size: 64px;
  font-weight: 800;
  line-height: 1.1;
}
.vant-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
}
.vant-outer {
  width: 18%;
  display: flex;
  justify-content: center;
  align-items: flex-start;
}
.vants {
  text-align: left;
  margin: 0 auto;
  transition: all 0.6s ease;
}
.vants:hover {
  transform: scale(1.1);
}
.vants img {
  margin-bottom: 30px;
  height: 50px;
}
.vants h6 {
  font-size: 16px;
  font-weight: 700;
  color: var(--grey);
  line-height: 1.1;
  margin-bottom: 10px;
}
.vants p {
  font-size: 14px;
  font-weight: 400;
  line-height: 1.1;
  color: var(--grey);
  max-width: 90%;
}
/* section 6 */
.section6 {
  background: url('/img/divider.svg');
  background-size: 105%;
  background-position: center;
  background-repeat: no-repeat;
  min-height: 430px;
}
/* section 7 */
.section7 {
  padding: 50px 0 30px 0;
  text-align: center;
}
.section7 .container {
  background: var(--lightgrey);
  box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.25);
  border-radius: 50px;
  max-width: 80%;
  margin: 0 auto;
  overflow: hidden;
}
.risk-box {
  background-color: #1a96ae;
  background-image: url('/img/risk.png');
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  min-height: 320px;
}
.risk-txt {
  text-align: left;
  padding: 20px 30px;
  color: var(--black);
}
.risk-txt p {
  font-size: 14px;
  font-weight: 400;
  margin: 0 0 5px 0;
  line-height: 1.4;
}
.risk-txt h6 {
  font-size: 22px;
  font-weight: 700;
  margin: 10px 0;
}
/* footer */
.footer {
  padding: 50px 0 60px 0;
  text-align: center;
}
.footer-txt h3 {
  color: var(--blue);
  font-size: 36px;
  font-weight: 700;
}
.footer-txt button {
  width: 160px;
  height: 50px  ;
  border-radius: 10px;
  border: none;
  background: var(--blue);
  color: var(--white);
  font-size: 20px;
  font-weight: 700;
  transition: all 0.4s ease;
  margin: 20px auto 0 auto;
}
.footer-txt button:hover {
  background: var(--orange);
  color: var(--white);
  transform: scale(1.02);
}
/* message */
.message-box {
  width: 600px;
  min-height: 350px;
  padding: 30px 20px;
  background: var(--white);
  margin: 0 auto;
  border-radius: 35px;
  box-shadow: 0px 4px 16px rgba(0, 0, 0, 0.25);
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  position: relative;
  z-index: 99;
}
.message-box h3 {
  font-size: 35px;
  font-weight: 700;
  color: var(--blue);
  line-height: 1.2;
  max-width: 90%;
  margin: 0 auto;
}
.message-box p {
  font-size: 18px;
  line-height: 1.2;
  margin: 20px auto 0 auto;
  max-width: 90%;
}
/* Adstrategy */
#section-ads {
  text-align: center;
  padding: 30px 0;
}
/* Media Queries */
@media only screen and (max-width: 1440px) {
  .risk-box {
    min-height: 350px;  
  }
}
@media only screen and (max-width: 1300px) {
  #pc, #phone {
    width: 450px;
  }
  #tablet {
    width: 300px;
  }
  .prizes-img img, .prizes-img2 img {
    max-width: 100%;
  }
}
@media only screen and (max-width: 1200px) {
  #pc, #phone {
    width: 400px;
  }
  .header-txt p {
    max-width: 85%;
  }
  .sec3-txt p {
    font-size: 18px;
    max-width: 100%;
  }
  .title h3 {
    font-size: 35px;
  }
  #tablet {
    right: -50px;
  }
  .risk-txt p {
    font-size: 13px;
  }
  .benif {
    width: 98%;
  }
  .benif p {
    font-size: 16px;
  }
}
@media only screen and (max-width: 1080px) {
  #tablet {
    width: 250px;
  }
}
@media only screen and (max-width: 991px) {
  .header-txt p {
    max-width: 100%;
  }
  #pc, #phone {
    width: 360px;
  }
  #phone {
    right: -100px;
  }
  #pc {
    bottom: 80px;
  }
  .title h3 {
    font-size: 34px;
  }
  .benif {
    width: 85%;
    margin: 30px auto;
  }
  .sec2-txt h3 {
    font-size: 55px;
  }
}
@media only screen and (max-width: 880px) {
  #phone {
    right: -140px;
  }
  #tablet {
    width: 220px;
    right: -80px;
  }
  .risk-box {
    min-height: 450px;
  }
}
@media only screen and (max-width: 768px) {
  .logo {
    max-width: 300px;
  }
  #contactform, .message-box  {
    width: 100%;
  }
  #pc, #phone {
    width: 300px;
  }
  #pc {
    bottom: 120px;
  }
  .benif {
    min-height: 220px;
    padding: 30px 40px;
    justify-content: center;
  }
  .prizes-img, .prizes-img2 {
    text-align: center;
  }
  .prizes-img img, .prizes-img2 img {
    width: 44%;
    margin: 20px 0;
  }
  .sec2-txt img {
    height: 45px;
  }
  .sec5-txt h3 {
    font-size: 45px;
  }
  #tablet {
    display: none;
  }
  .section3 {
    padding: 50px 0;
  }
  .title h3 {
    font-size: 30px;
  }
  .sec2-txt h3 {
    font-size: 45px;
  }
  .sec3-txt p {
    font-size: 16px;
  }
  .section4 .container {
    max-width: 90%;
  }
  .sec4-txt {
    padding: 50px 40px;
  }
  .vant-row {
    justify-content: center;
  }
  .vant-outer {
    width: 33%;
    align-items: center;
    margin: 30px 0;
  }
  .vants p {
    margin: 0 auto;
  }
  .vants {
    text-align: center;
  }
  .section6 {
    min-height: 180px;
  }
  .section7 .container {
    max-width: 70%;
  }
  .risk-box {
    min-height: 200px;
    background-size: 60%;
  }
}
@media only screen and (max-width: 660px) {
  #phone {
    top: 160px;
  }
  .benif {
    margin: 15px auto;
  }
}
@media only screen and (max-width: 620px) {
  #pc, #phone {
    display: none;
  }
}
@media only screen and (max-width: 550px) {
  .header-txt h1 {
    font-size: 40px;
    max-width: 80%;
    margin: 0 auto 10px auto;
  }
  .header-txt p {
    font-size: 18px;
  }
  .message-box h3 {
    font-size: 30px;
    max-width: 90%;
  }
  .message-box p {
    max-width: 80%;
  }
}
@media only screen and (max-width: 500px) {
  .footer-txt h3 {
    max-width: 80%;
    font-size: 40px;
    margin: 0 auto;
  }
  .section7 .container {
    border-radius: 30px;
  }
  .section4 .container {
    border-radius: 30px;
  }
  .sec4-txt {
    padding: 50px 20px;
  }
  .sec4-txt h3 {
    font-size: 34px;
  }
  .sec5-txt {
    margin-bottom: 30px;
  }
  .form-inputs {
    width: 90%;
  }
  .form-check {
    width: 100%;
    text-align: center;
  }
  .vant-outer {
    width: 60%;
  }
  #contactform {
    padding: 40px 20px;
  }
  .error, #termos-error {
    width: 100%;
  }
  #termos-error {
    text-align: center;
  }
  .vants p {
    max-width: 80%;
  }
}
@media only screen and (max-width: 475px) {
  .header-txt h1 {
    max-width: 100%;
  }
  .header-txt p {
    max-width: 90%;
  }
  .title h3 br {
    display: none;
  }
  .title h3 {
    font-size: 35px;
  }
  .sec4-txt h3 {
    max-width: 90%;
  }
  .risk-box {
    min-height: 150px;
    background-size: 80%;
  }
  .section6 {
    min-height: 120px;
  }
  .risk-txt h6 {
    font-size: 20px;
  }
}
@media only screen and (max-width: 414px) {
  .logo {
    max-width: 220px;
  }
  .header-txt {
    margin: 30px 0 50px 0;
  }
  .title h3 {
    font-size: 28px;
  }
  .prizes-img img, .prizes-img2 img {
    width: 80%;
  }
  .prizes-img2 img:nth-child(2) {
    margin-left: 40px;
  }
  .sec2-txt {
    margin-bottom: 40px;
  }
  .risk-txt {
    padding: 20px;
  }
  .risk-txt h6 {
    font-size: 20px;
  }
  .risk-txt p {
    font-size: 12px;
  }
  .sec3-txt p {
    font-size: 14px;
    max-width: 95%;
  }
  .benif {
    padding: 30px 20px;
    border-radius: 30px;
  }
  .message-box h3 {
    font-size: 28px;
    max-width: 100%;
  }
  .message-box p {
    max-width: 100%;
    font-size: 16px;
  }
}
@media only screen and (max-width: 400px) {
  .header-txt h1 {
    font-size: 35px;
  }
  .footer-txt h3 {
    max-width: 90%;
    font-size: 35px;
  }
  .benif {
    width: 100%;
  }
  .section7 .container {
    max-width: 90%;
  }
}
@media only screen and (max-width: 350px) {
  .header-txt h1 {
    font-size: 32px;
  }
  .footer-txt h3 {
    font-size: 32px;
  }
  .risk-txt h6 {
    font-size: 15px;
  }
  .header-txt p {
    font-size: 16px;
    max-width: 95%;
  }
  .sec4-txt h3 {
    max-width: 100%;
    font-size: 30px;
  }
  .sec5-txt h3 {
    font-size: 33px;
  }
  .risk-txt {
    padding: 20px 10px;
  }
}
@media only screen and (max-width: 335px) {
  .header-txt h1 {
    font-size: 30px;
  }
  .footer-txt h3 {
    font-size: 30px;
  }
  .header-txt p {
    max-width: 100%;
  }
  .title h3 {
    font-size: 26px;
  }
}