@import url('https://fonts.googleapis.com/css2?family=Kumbh+Sans:wght@100..900&display=swap');

:root {
  --white: #ffffff;
  --black: #000000;
  --grey: #F8F9FA;
  --blue: #48C9D3;
  --yellow: #FDF8BF;
  --red: #cc0000;
}
html, body{
  margin: 0;
  padding:0;
  font-family: "Kumbh Sans", sans-serif;
  font-weight: normal;
  font-style: normal;
  font-size: 16px;
  overflow-x: hidden !important;
}
a:hover {
  color: #000000;
}
h3 span {
  color: var(--blue);
  font-weight: 700;
}
/* navbar */
.nav {
  background: var(--blue);
  text-align: center;
  padding: 25px 0;
}
.nav-logo img {
  height: 55px;
}
/* header */
.form-box {
  border-radius: 20px;
  background: linear-gradient(90deg, var(--grey) 0.93%, var(--white) 91.03%);
  height: 425px;
  margin: 50px 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.form-step {
  display: none;
}
.form-step.active {
  display: block;
}
.header-img img {
  width: 620px;
  margin: -45px auto 0 auto;
}
/* form */
.form-content {
  text-align: center;
}
.form-step h3 {
  color: var(--black);
  font-size: 27px;
  font-weight: 700;
}
.form-step h3 span {
  color: var(--blue);
}
.range-container {
  position: relative;
  margin: 20px 0;
  text-align: center;
}
input[type=range] {
  -webkit-appearance: none;
  width: 80%;
  margin: 10px 0;
  height: 12px;
  border-radius: 12px;
  background: linear-gradient(to right, #7FE2C9 0%, #7FE2C9 var(--slider-value, 0%), rgba(224, 224, 224, 0.80) var(--slider-value, 0%), rgba(224, 224, 224, 0.80) 100%); /* Default gradient */
}
input[type=range]::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: var(--blue);
  cursor: pointer;
  margin: -10px 0 0 -1px;
}
input[type=range]::-webkit-slider-runnable-track {
  height: 12px;
  border-radius: 12px;
  background: linear-gradient(to right, #7FE2C9 0%, #7FE2C9 var(--slider-value, 0%), rgba(224, 224, 224, 0.80) var(--slider-value, 0%), rgba(224, 224, 224, 0.80) 100%);
}
input[type=range]::-moz-range-track {
  height: 12px;
  border-radius: 12px;
  background: linear-gradient(to right, #7FE2C9 0%, #7FE2C9 var(--slider-value, 0%), rgba(224, 224, 224, 0.80) var(--slider-value, 0%), rgba(224, 224, 224, 0.80) 100%);
}
input[type=range]::-ms-track {
  height: 12px;
  border-radius: 12px;
  background: transparent;
  border: none;
  color: transparent;
}
input[type=range]::-ms-thumb {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: var(--blue);
  cursor: pointer;
  margin: -10px 0 0 -1px;
}
#rangeValue {
  color: var(--blue);
  font-size: 60px;
  font-weight: 700;
  text-align: center;
  white-space: nowrap;
  display: inline-block;
}
.value-symb {
  color: var(--black);
  font-size: 35px;
  font-weight: 500;
  margin-left: 5px;
}
#range-warn {
  display: none;
}
.options-grid {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}
.radio-option {
  margin-top: 20px;
}
.radio-option input[type="radio"] {
  display: none;
}
.radio-option input[type="radio"] + label {
  width: 170px;
  height: 150px;
  border-radius: 10px;
  background-color: var(--white);
  box-shadow: 0 2px 10px rgba(72, 201, 211, 0.5);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  color: var(--black);
  text-align: center;
  font-size: 16px;
  font-weight: 400;
  cursor: pointer !important;
  line-height: 1.2;
  margin: 0 10px 0 0;
}
.radio-option label:hover {
  background: var(--yellow) !important;
  color: var(--black) !important;
}
.radio-option input[type="radio"]:checked + label {
  background: var(--yellow);
  color: var(--black);
}
.radio-option label img, .radio-option label svg {
  max-height: 35px;
}
#maybe img {
  margin-top: 15px;
}
.form-inputs {
  width: 80% !important;
  height: 50px;
  background-color: var(--white);
  box-shadow: 0 2px 10px rgba(72, 201, 211, 0.5);
  border: none;
  color: var(--black) !important;
  border-radius: 10px;
  cursor: pointer;
  padding-left: 20px !important;
  margin: 20px 0 !important;
  font-size: 16px !important;
  font-weight: 300;
}
::-webkit-input-placeholder {
  color: var(--black);
  font-weight: 300;
}
:-moz-placeholder {
  color: var(--black);
  font-weight: 300;
  opacity: 1;
}
::-moz-placeholder {
  color: var(--black);
  font-weight: 300;
  opacity: 1;
}
:-ms-input-placeholder {
  color: var(--black);
  font-weight: 300;
}
::-ms-input-placeholder {
  color: var(--black);
  font-weight: 300;
}
::placeholder {
  color: var(--black);
  font-weight: 300;
}
.form-check {
  text-align: center;
  margin: 0;
  padding: 0;
}
.form-check label {
  margin: 20px 0 0 0;
  position: relative;
  padding-left: 18px;
  cursor: pointer;
  color: var(--black);
  font-size: 13px;
}
.form-check input[type=checkbox] {
  position: absolute;
  opacity: 0;
  cursor: pointer;
}
.checkmark {
  position: absolute;
  top: 2.5px;
  left: 0;
  height: 12px;
  width: 12px;
  background-color: transparent;
  border: 1px solid var(--black);
  border-radius: 2px;
  padding-right: 5px;
  color: var(--black);
}
.form-check input[type=checkbox]:checked + .checkmark:after {
  content: "\2713";
  display: block;
  text-align: center;
  line-height: 15px;
  margin-left: 0px;
  margin-top: -2px;
  color: var(--blue);
}
#politica-link {
  color: var(--black);
}
#politica-link:hover {
  color: var(--blue);
}
.form-btn {
  width: 305px;
  height: 50px;
  border: none;
  border-radius: 30px;
  background: var(--yellow);
  color: var(--black);
  font-size: 22px;
  line-height: 1;
  font-weight: 700;
  text-transform: uppercase;
  box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
  margin: 20px auto 0 auto;
  cursor: pointer;
}
.form-btn:hover {
  background: var(--blue);
  color: var(--white);
}
.error, #termos-error {
  width: 100%;
  font-size: 11px;
  color: var(--red);
  padding: 0;
  margin: 0;
}
.error-box h3 {
  font-size: 30px;
}
.error-box p {
  font-size: 20px;
}
/* Section 1 */
.section1 {
  padding: 60px 0;
  text-align: center;
}
.sec1-txt {
  margin-bottom: 50px;
}
.sec1-txt h3 {
  color: var(--black);
  font-size: 35px;
  font-weight: 400;
  line-height: 1.2;
  max-width: 70%;
  margin: 0 auto;
}
.flip-card {
  background-color: transparent;
  width: 90%;
  height: 295px;
  perspective: 1000px;
  margin: 0 auto 30px auto;
}
.flip-card-front, .flip-card-back {
  padding: 20px;
}
.flip-card-front img {
  height: 70px;
  margin-bottom: 20px;
}
.card-title {
  color: var(--blue);
  font-size: 25px;
  font-weight: 700;
}
.card-p {
  margin: 10px 0;
  color: var(--black);
  font-size: 20px;
  font-weight: 400;
  line-height: 1.1;
  max-width: 90%;
}
.card-p span {
  font-weight: 700;
}
.flip-card-inner {
  position: relative;
  width: 100%;
  height: 100%;
  text-align: left;
  transition: transform 0.8s;
  transform-style: preserve-3d;
}
.flip-card:hover .flip-card-inner {
  transform: rotateY(180deg);
}
.flip-card-front, .flip-card-back {
  position: absolute;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  width: 100%;
  height: 100%;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  border-radius: 20px;
}
.flip-card-front {
  background: var(--grey);
}
.flip-card-back {
  border: 1px solid var(--blue);
  background: var(--grey);
  transform: rotateY(180deg) scale(1.04);
}
.custom-dots3 {
    text-align: center;
    margin-top: 20px;
}
.custom-dots3 .slick-dots {
    display: flex;
    justify-content: center;
    list-style: none;
    padding: 0;
}
.custom-dots3 .slick-dots li {
    margin: 0 5px;
}
.custom-dots3 .slick-dots li button {
    background-color: var(--grey); 
    border: none;
    border-radius: 50%;
    width: 12px;
    height: 12px;
    display: block;
    padding: 0;
    cursor: pointer;
    font-size: 0;
}
.custom-dots3 .slick-dots li.slick-active button {
    background-color: var(--blue);
}
/* section 2 */
.section2 {
  text-align: center;
  padding: 40px 0;
}
.sec2-txt {
  margin-bottom: 40px;
}
.sec2-txt h3 {
  color: var(--black);
  font-size: 35px;
  font-weight: 400;
  line-height: 1.2;
  max-width: 70%;
  margin: 0 auto;
}
.team-slider-box {
  margin: 0 10px;
}
.persona-outer {
  max-width: 90%;
  height: 505px;
  background: var(--grey);
  border-radius: 20px 20px 0 0;
  padding: 20px;
  border-bottom: 15px solid var(--yellow);
  margin: 0 auto;
}
.persona-inner {
  text-align: center;
}
.persona-inner img {
  height: 350px;
  margin: 0 auto;
}
.persona-inner h6 {
  color: var(--blue);
  font-size: 25px;
  font-weight: 700;
  margin: 20px 0 10px 0;
  line-height: 1.1;
}
.persona-inner p {
  font-size: 20px;
  color: var(--black);
  font-weight: 400;
  line-height: 1.1;
  max-width: 60%;
  margin: 0 auto;
  padding: 0;
}
.custom-dots {
    text-align: center;
    margin-top: 20px;
}
.custom-dots .slick-dots {
    display: flex;
    justify-content: center;
    list-style: none;
    padding: 0;
}
.custom-dots .slick-dots li {
    margin: 0 5px;
}
.custom-dots .slick-dots li button {
    background-color: var(--grey); 
    border: none;
    border-radius: 50%;
    width: 12px;
    height: 12px;
    display: block;
    padding: 0;
    cursor: pointer;
    font-size: 0;
}
.custom-dots .slick-dots li.slick-active button {
    background-color: var(--blue);
}
/* section3 */
.section3 {
  text-align: center;
  padding: 20px 0 60px 0;
}
.sec3-txt {
  margin-bottom: 40px;
}
.sec3-txt h3 {
  color: var(--black);
  font-size: 35px;
  font-weight: 400;
  line-height: 1.2;
  max-width: 50%;
  margin: 0 auto;
}
.sec3-txt p {
  margin: 30px 0 0 0;
  padding: 0;
  line-height: 1.2;
  color: var(--black);
  font-size: 20px;
  font-weight: 400;
}
.bullet-box {
  width: 90%;
  height: 350px;
  border-radius: 20px;
  text-align: left;
  padding: 30px 40px;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  flex-direction: column;
  transition: all 0.6s ease;
  cursor: pointer;
}
#wrong {
  background: var(--white);
  border: 2px solid var(--grey);
}
#right {
  background: var(--grey);
  border: 2px solid var(--blue);
}
.bullet-box:hover {
  transform: scale(1.05);
}
.bullet-box h5 {
  color: var(--blue);
  font-size: 25px;
  font-weight: 500;
  padding: 0;
  margin: 0 0 20px 0;
  line-height: 1.1;
}
.bullet-box ul {
  margin: 0;
  padding: 0;
  list-style-type: none;
  max-width: 95%;
}
.bullet-box ul li {
  padding-left: 30px;
  margin-bottom: 10px;  
  background-size: 20px 20px;
  margin: 0 0 20px 0;
  line-height: 1.2;
  font-size: 16px;
  font-weight: 400;
  color: var(--black)
}
#wrong ul li {
  background: url('/img/wrong.svg');
  background-repeat: no-repeat;
  background-position: left center;
}
#right ul li {
  background: url('/img/right.svg');
  background-repeat: no-repeat;
  background-position: left center;
}
/* section 4 */
.section4 {
  text-align: center;
  padding: 20px 0 50px 0;
}
.sec4-txt {
  margin-bottom: 40px;
}
.sec4-txt h3 {
  color: var(--black);
  font-size: 35px;
  font-weight: 400;
  line-height: 1.2;
  max-width: 30%;
  margin: 0 auto;
}
.sec4-txt p {
  margin: 30px 0 0 0;
  padding: 0;
  line-height: 1.2;
  color: var(--black);
  font-size: 20px;
  font-weight: 400;
}
.testimonial-img img {
  max-width: 98%;
  margin: 0 auto;
}
.custom-dots2 {
    text-align: center;
    margin-top: 20px;
}
.custom-dots2 .slick-dots {
    display: flex;
    justify-content: center;
    list-style: none;
    padding: 0;
}
.custom-dots2 .slick-dots li {
    margin: 0 5px;
}
.custom-dots2 .slick-dots li button {
    background-color: var(--grey); 
    border: none;
    border-radius: 50%;
    width: 12px;
    height: 12px;
    display: block;
    padding: 0;
    cursor: pointer;
    font-size: 0;
}
.custom-dots2 .slick-dots li.slick-active button {
    background-color: var(--blue);
}
/* section5 */
.section5 {
  text-align: center;
  padding: 0 0 80px 0;
}
.section5 .bullet-box {
  padding: 30px 45px;
  justify-content: flex-start;
  height: 330px;
}
.section5 .bullet-box h5 {
  width: 100%;
  text-align: center;
  font-weight: 700;
}
/* footer */
.footer {
  background: var(--blue);
  padding: 50px 0;
}
.footer-txt h3 {
  color: var(--white);
  line-height: 1.1;
  font-size: 35px;
  font-weight: 400;
}
.footer-txt h3 span {
  color: var(--white);
  font-weight: 700;
}
.foot-cta {
  text-align: right;
}
.footer-cta {
  width: 305px;
  height: 50px;
  border: none;
  border-radius: 30px;
  background: var(--yellow);
  color: var(--black);
  font-size: 22px;
  line-height: 1;
  font-weight: 700;
  text-transform: uppercase;
  box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
  margin: 0 auto;
  cursor: pointer;
}
.footer-cta:hover {
  background: var(--white);
  color: var(--blue);
}
/* Thank you page */
.ty-box {
  background: var(--white);
  width: 95%;
  border-radius: 20px;
  margin: 0 auto;
  box-shadow: 0 2px 10px rgba(72, 201, 211, 0.5);
  text-align: center;
}
.box-title {
  background: var(--blue);
  margin: 0;
  padding: 15px 0;
  border-radius: 20px 20px 0 0;
}
.box-title h6 {
  line-height: 1.2;
  margin: 0;
  padding: 0;
  color: var(--white);
  font-weight: 700;
  font-size: 17px;
}
.box-txt {
  padding: 30px 20px;
}
.box-txt img {
  height: 130px;
  margin: 12px 0;
}
.box-txt h3 {
  font-size: 35px;
  color: var(--black);
}
.box-txt p {
  font-size: 16px;
  line-height: 1.2;
}

/* Adstartegy */
#section-ads {
  text-align: center;
  padding: 30px 0;
}
/* Media Queries */
@media only screen and (max-width: 1400px) {
  .form-step h3 {
    font-size: 24px;
  }
  .radio-option input[type="radio"] + label {
    width: 145px;
    height: 130px;
    padding: 0 10px;
  }
  .card-title {
    font-size: 20px;
  }
  .card-p {
    font-size: 17px;
  }
  .persona-inner h6 {
    font-size: 22px;
  }
  .bullet-box ul li {
    font-size: 15px;
  }
  .sec4-txt h3 {
    max-width: 40%;
  }
  .persona-inner p {
    max-width: 80%;
    font-size: 18px;
  }
  .persona-outer {
    height: 460px;
  }
  .persona-inner img {
    width: 100%;
    height: auto;
  }
  .ty-box {
    width: 100%;
  }
  .box-title h6 {
    font-size: 15px;
  }
}
@media only screen and (max-width: 1200px) {
  .header-img img {
    width: 140%;
  }
  .form-step h3 {
    font-size: 28px;
    margin: 0 auto 20px auto;
  }
  #step-1 h3 {
    max-width: 70%;
    margin: 0 auto;
  }
  #step-3 h3{
    max-width: 80%;
  }
  #step-6 h3 {
    max-width: 70%;
  }
  .radio-option input[type="radio"] + label {
    width: 115px;
    height: 115px;
    padding: 0 10px;
    font-size: 12px;
  }
  .sec1-txt h3 {
    max-width: 80%;
  }
  .flip-card {
    width: 100%;
  }
  .card-p {
    max-width: 95%;
  }
  .sec2-txt h3 {
    max-width: 80%;
  }
  .persona-outer {
    height: 400px;
  }
  .sec3-txt p {
    font-size: 16px;
  }
  .bullet-box {
    padding: 30px;
  }
  .bullet-box ul {
    max-width: 100%;
  }
  .bullet-box ul li {
    font-size: 14px;
    margin: 0 0 15px 0;
  }
  .footer-txt h3 {
    font-size: 28px;
  }
}
@media only screen and (max-width: 1080px) {
  .header-img img {
    width: 130%;
  }
  .error-box h3 {
    max-width: 80%;
    margin: 0 auto 10px auto;
  }
  .box-title h6 {
    font-size: 18px;
    max-width: 70%;
    margin: 0 auto;
    line-height: 1.2;
  }
  .section5 .bullet-box {
    height: 310px;
  }
}
@media only screen and (max-width: 991px) {
  .header-img img {
    width: 400px;
    margin: -45px auto 0 -50px;
  }
  .form-step h3 {
    font-size: 26px;
  }
  .persona-outer {
    height: 440px;
  }
  .sec4-txt h3 {
    max-width: 50%;
  }
  .bullet-box {
    width: 100%;
  }
  .sec4-txt p {
    margin: 30px auto 0 auto;
    max-width: 90%;
  }
  .offerwall-txt h3 {
    font-size: 30px;
  }
  .offer-box img {
    margin-bottom: 30px;
  }
  .offer-txt {
    padding: 0;
  }
  .offer-txt {
    width: 90%;
    text-align: center;
    margin: 10px auto 20px auto;
    border: none;
  }
  .offer-txt h3 {
    max-width: 70%;
    font-size: 28px;
    margin: 0 auto 20px auto;
    line-height: 1.2;
  }
  .offer-txt p {
    max-width: 85%;
    margin: 0 auto 20px auto;
  }
  .offer-box {
    flex-direction: column;
  }
}
@media only screen and (max-width: 768px) {
  .form-box {
    text-align: center;
    height: auto;
    background: linear-gradient(-180deg, var(--grey) 0.93%, var(--white) 91.03%);
    padding: 50px 0;
    margin: 0;
  }
  .header-img img {
    margin: 30px auto 0 auto;
  }
  .radio-option input[type="radio"] + label {
    width: 135px;
    height: 120px;
    font-size: 14px;
  }
  #step-3 h3 {
    max-width: 60%;
  }
  #step-6 h3 {
    max-width: 100%;
  }
  .section1 {
    padding: 0 0 60px 0;
  }
  .sec3-txt h3 {
    max-width: 65%;
  }
  .sec3-txt p {
    font-size: 16px;
    max-width: 85%;
    margin: 20px auto 0 auto;
  }
  .section5 .bullet-box h5 {
    font-size: 25px;
  }
  .section2 {
      padding: 0;
  }
  
  .section4 {
      padding: 0 0 50px 0;
  }
  .persona-outer {
    max-width: 65%;
    height: 460px;
  }
  .bullet-box {
    width: 90%;
    margin: 0 auto 30px auto;
  }
  .vant-slider .slick-list {
    padding: 0;
  }
  .flip-card {
    width: 90%;
    margin: 0 auto;
  }
  .flip-card-back {
    transform: rotateY(180deg) scale(1.0);
  }
  .sec4-txt h3 {
    max-width: 60%;
  }
  .footer, .foot-cta {
    text-align: center;
  }
  .footer-cta {
    margin: 30px auto 0 auto;
  }
  .error-box h3 {
    max-width: 70%;
    margin: 0 auto 10px auto;
  }
  .offer-txt {
    text-align: center;
    width: 100%;
    margin: 0 0 20px 0;
  }
  .offer-txt h3 {
    max-width: 80%;
    margin: 0 auto 10px auto;
  }
  .offer-txt p {
    max-width: 90%;
    margin: 0 auto;
  }
  .offer-head-logo {
    text-align: center;
    margin-bottom: 50px;
  }
  .offer-head-logo img {
    max-width: 220px;
  }
  #offer-box-title h6 {
    max-width: 100%;
  }
  .section5 .bullet-box {
    min-height: 230px;
    height: auto;
    padding: 25px 30px;
  }
}
@media only screen and (max-width: 550px) {
  .sec1-txt h3 {
    max-width: 90%;
  }
  .sec3-txt p {
    max-width: 80%;
  }
  .ty-box {
    width: 90%;
  }
  .offer-box img {
    width: 150px;
  }
  .offer-txt p {
    max-width: 95%;
  }
}
@media only screen and (max-width: 500px) {
  .nav-logo img {
    height: 50px;
  }
  .sec3-txt h3 {
    max-width: 90%;
  }
  .sec4-txt h3 {
    max-width: 75%;
  }
  .sec3-txt p {
    max-width: 90%;
  }
  .options-grid {
    flex-direction: column;
  }
  .radio-option input[type="radio"] + label {
    width: 300px;
    height: 65px;
    flex-direction: row;
    font-size: 18px;
    justify-content: flex-start;
    margin: 0 auto;
    text-align: left;
  }
  .radio-option label img, .radio-option label svg {
    padding: 0 15px;
  }
  #maybe img {
    margin-top: 0;
  }
  #step-3 h3 {
    max-width: 65%;
  }
  .persona-outer {
    height: 400px;
    width: 70%;
  }
  .error-box p {
    max-width: 60%;
    line-height: 1.1;
    margin: 10px auto 0px auto;
  }
  #offer-box-title h6 {
    font-size: 16px;
  }
}
@media only screen and (max-width: 450px) {
  .sec1-txt h3, .sec2-txt h3, .sec3-txt h3, .sec4-txt h3 {
    font-size: 28px;
  }
  .sec4-txt p {
    font-size: 18px;
  }
  .bullet-box ul li {
    font-size: 13px;
  }
  .sec3-txt p {
    max-width: 85%;
  }
  .persona-outer {
    width: 80%;
    height: 380px;
  }
  .form-step h3 {
    font-size: 24px;
  }
  #step-3 h3 {
    max-width: 80%;
  }
}
@media only screen and (max-width: 414px) {
  .header-img img {
    max-width: 100%;
  }
  .persona-outer {
    width: 100%;
    height: 350px;
  }
  #step-6 h3, #step-7 h3, #step-8 h3 {
    max-width: 60%;
  }
  .persona-inner h6 {
    font-size: 18px;
  }
  .persona-inner p {
    max-width: 100%;
    font-size: 15px;
  }
  .form-btn {
    width: 75%;
  }
  .footer-cta {
    width: 270px;
  }
  .bullet-box {
    height: auto;
  }
  .offer-txt h3 {
    max-width: 100%;
    font-size: 25px;
  }
  #offer-box-title h6 {
    font-size: 14px;
  }
  .offerwall-txt h3 {
    font-size: 28px;
    max-width: 80%;
    margin: 0 auto 10px auto;
  }
  .offerwall-txt p {
    font-size: 17px;
  }
}
@media only screen and (max-width: 325px) {
  .radio-option input[type="radio"] + label {
    width: 270px;
  }
  input[type=range] {
    width: 75%;
  }
  .form-inputs {
    width: 75% !important;
  }
  #step-3 h3 {
    max-width: 70%;
  }
  #step-6 h3, #step-7 h3, #step-8 h3 {
    max-width: 60%;
  }
  .radio-option label img, .radio-option label svg {
    padding: 0 10px;
  }
  .form-check label {
    max-width: 85%;
    text-align: left;
  }
  #offer-box-title h6 {
    font-size: 15px;
    max-width: 90%;
    margin: 0 auto;
  }
  .box-txt h3 {
    font-size: 25px;
  }
  .box-txt p {
    font-size: 14px;
  }
  .offerwall-txt h3 {
    font-size: 25px;
    max-width: 85%;
  }
  .offer-txt h3 {
    max-width: 85%;
    font-size: 22;
  }
}