.get-rewards-dito-master {
 position: relative;
 padding: 60px 30px;
 background-color: #0038A8;
}

.get-rewards-dito-master .rewards-wrapper {
 display: flex;
 align-items: center;
 justify-content: center;
 gap: 30px;
}

.get-rewards-dito-master .rewards-wrapper .get-more {
 display: flex;
 align-items: center;
 justify-content: center;
 flex-direction: column;
 gap: 10px;
    animation: fadeIn 5s;
  -webkit-animation: fadeIn 5s;
  -moz-animation: fadeIn 5s;
  -o-animation: fadeIn 5s;
  -ms-animation: fadeIn 5s;
}


.get-rewards-dito-master .rewards-wrapper .get-more > h1 {
  text-shadow: 
       1px 0px 0px white,   /* Right shadow */
       -1px 0px 0px white,  /* Left shadow */
       0px 1px 0px white,   /* Bottom shadow */
       0px -1px 0px white;  /* Top shadow */
   color: #CE1126;
   font-size: 54px;
    font-style: normal;
    font-weight: 800;
    line-height: 54px; /* 100% */
  text-align: center;
}

.get-rewards-dito-master .rewards-wrapper .get-more > p {
  color: #FFF;
  text-align: center;
  text-shadow: 2px 2px 3px rgba(0, 0, 0, 0.25);
  font-size: 26px;
  font-style: italic;
  font-weight: 800;
  line-height: 30px; /* 115.385% */ 
  max-width: 690px;
}


.get-rewards-dito-master .rewards-wrapper .get-more > a {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  border-radius: 40px;
  border: 1px solid #FFF;
  background: #CE1126;
  box-shadow: 2px 3px 4px 0px rgba(0, 0, 0, 0.25);
  color: #FFF;
  font-size: 18px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  padding: 12px 30px;
  max-width: 215px;
}

.get-rewards-dito-master .rewards-wrapper .get-more .downloadnow-wrapper {
 display: flex;
 align-items: center;
 justify-content: center;
 flex-direction: column;
 background-color: #FFFFFF;
 padding: 0 20px 25px 20px;
 border-radius: 20px;
 box-shadow: 0px 19px 38px 0px rgba(0,0,0,0.3),
  8px 8px 0px -2px rgba(0,56,168,1),
  11px 13px 0px 0px rgba(255,222,5,1);
  margin-top: 15px;
  
}

.get-rewards-dito-master .rewards-wrapper .get-more .downloadnow-wrapper h1 {
  color: #CE1126;
  font-size: 30px;
  font-style: normal;
  font-weight: 800;
  line-height: 80px; /* 266.667% */
  text-transform: uppercase;
  margin: 0;
}

.get-rewards-dito-master .rewards-wrapper .get-more .downloadnow-wrapper .dl-source-items {
 display: flex;
 align-items: center;
 justify-content: center;
 gap: 20px;
}


@media only screen and (max-width: 1000px) {
  .get-rewards-dito-master .rewards-wrapper {
   flex-direction: column; 
  }
}

.fadein {
 animation-name: slide;
 animation-duration: 2s; 
 animation-fill-mode: forwards; 
}

@-webkit-keyframes slide {
  0%   { transform: translate(0px,100px); }
  100% { transform: translate(0px,0px); }
}
@-moz-keyframes slide {
  0%   { transform: translate(0px,100px); }
  100% { transform: translate(0px,0px); }
}
@-o-keyframes slide {
  0%   { transform: translate(0px,100px); }
  100% { transform: translate(0px,0px); }
}
@keyframes slide {
  0%   { transform: translate(0px,100px); }
  100% { transform: translate(0px,0px); }
}}