@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

:root {
  --white: #fff;
  --black: #0A2342;
  --blue: #204de7;
  --darkblue: #093a8b;
  --grey: #EBEEFA;
  --lightgrey: #F4FAFF;
  --inputcolor: rgba(18, 18, 41, 0.50);
}

html, body{
  margin: 0;
  padding: 0 !important;
  font-family: "Poppins", sans-serif;
  font-weight: normal;
  font-style: normal;
  font-size: 16px;
  overflow-x: hidden !important;
}
a:hover {
  color: #000000;
}
/* nav */
.nav {
  padding: 30px 0;
  background: var(--white);
}
.nav-logo img {
  height: 55px;
}
.nav-menu ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-menu ul li img {
  height: 20px;
  margin-left: 5px;
}
.nav-menu ul li {
  font-size: 14px;
  cursor: pointer;
  border-bottom: 2px solid var(--white);
  transition: all 0.5s ease;
  color: var(--black);
}
.nav-menu ul li:hover {
  border-bottom: 2px solid var(--blue);
}
.nav-menu ul li:last-child {
  border: none;
}
.nav-menu ul li:last-child:hover {
  transform: scale(1.1);
} 
.nav-menu ul li:last-child img {
  height: 30px;
  margin: 0;
}
/* google */
.google-review {
  padding: 15px 0;
  background: var(--darkblue);
}
.google-img {
  text-align: left;
}
.google-img img {
  height: 25px;
}
.google-txt {
  text-align: right;
}
.google-txt p {
  margin: 0 auto 0 0;
  font-size: 12px;
  font-weight: 400;
  color: var(--white);
  line-height: 1.1;
}
/* header */
.header {
  background: var(--lightgrey);
}
.selo {
  display: flex;
  justify-content: flex-start;
  align-items: center;
}
.selo img:nth-child(1) {
  height: 30px;
}
.selo img:nth-child(2){
  height: 20px;
  margin: 0 8px;
}
#selo-p {
  margin: 0;
  font-size: 16px;
  color: var(--blue);
}
.header-txt h1 {
  font-weight: 400;
  color: var(--black);
  font-size: 32px;
  line-height: 1.1;
  margin-bottom: 30px;
}
.header-txt h1 span {
  color: var(--blue);
  font-weight: 700;
}
.header-txt p {
  color: var(--black);
  font-size: 18px;
  font-weight: 500;
  line-height: 1.1;
  max-width: 75%;
  margin: 20px 0;
}
.header-txt ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.header-txt ul li {
  background: url(/img/icons/bullet.svg) no-repeat left top;
  background-size: 20px;
  height: 30px;
  padding-left: 30px;
  margin: 8px 0;
  font-size: 16px;
  font-weight: 400;
  color: var(--black);
  max-width: 80%;
  line-height: 1.1;
}
.form-box {
  position: relative;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 500px;
}
.form-img {
  position: absolute;
  z-index: 1;
  width: 450px;
  left: -35%;
  bottom: 0;
}
/* form */
.form-step {
  width: 100%;
  text-align: center;
  display: none;
  text-align: center;
  opacity: 0;
}
.form-step.active {
  display: block;
  opacity: 1;
  animation-name: fadeInUp;
  animation-duration: 1.5s;
  animation-fill-mode: forwards;
}
@keyframes fadeInUp {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}
#contactform {
  position: relative;
  z-index: 99;
  right: 0;
  width: 460px;
  border-radius: 30px;
  background: #FFF;
  box-shadow: 0px 12px 6px 0px rgba(59, 67, 147, 0.15);
  padding: 40px;
  text-align: center;
  margin: 40px 0 40px auto;
  text-wrap: balance;
}
#contactform h3 {
  color: var(--blue);
  font-size: 24px;
  font-weight: 600;
  text-wrap: balance;
  margin: 0 auto;
}
#contactform h6 {
  color: var(--black);
  font-size: 14px;
  font-weight: 400;
  margin: 5px auto 10px auto;
}
#contactform hr {
  width: 100%;
  opacity: 1;
  background: var(--blue);  
  height: 2px;
  border: none;
  border-radius: 10px;
  margin: 15px auto;
}
.input-title {
  margin-bottom: 10px;
}
.input-title h5 {
  color: var(--black);
  font-size: 17px;
  font-weight: 600;
  margin: 0;
  line-height: 1.1;
}
.input-title p {
  color: var(--black);
  font-size: 14px;
  font-weight: 400;
  margin: 5px 0 0 0;
}
.radio-buton input[type="radio"] {
  position: absolute; 
  opacity: 0; 
  width: 0;
  height: 0;
}
.radio-buton {
  padding: 0 5px;
}
.radio-buton label {
  background: var(--white);
  border-radius: 8px;
  border: 1px solid var(--blue);
  cursor: pointer;
  transition: background-color 0.3s, border-color 0.3s;
  width: 100%;
  min-height: 60px;
  display: flex;
  justify-content: center;
  align-items: center;
  color: var(--black);
  font-size: 14px;
  line-height: 1.1;
  text-wrap: balance;
  font-weight: 400;
  margin: 8px 0 0 0;
  padding: 0 10px;
}
.radio-buton label:hover, .radio-buton input[type="radio"]:checked + label {
  background: var(--blue);
  color: var(--white);
  border: 1px solid var(--blue);
}
.age-input {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  text-align: left;
  padding: 10px;
  border-radius: 8px;
  border: 1px solid var(--grey);
  margin-top: 10px;
}
.age-input p {
  width: 40%;
  font-size: 16px;
  font-weight: 400;
  color: var(--black);
  margin: 0;  
}
.age-input input {
  width: 50%;
  text-align: right;
  border: none;
  background: var(--lightgrey);
  height: 40px;
  padding: 0 10px;
  border-radius: 8px;
  color: var(--black);
  font-size: 16px;
}
.form-inputs {
  margin-top: 10px;
}
.form-inputs input {
  font-size: 16px;
  width: 100%;
  height: 40px;
  padding: 0 10px;
  border-radius: 8px;
  color: var(--black);
  border: 1px solid var(--grey);
  margin: 0 0 10px 0;
}
#telefono {
  background: url(/img/icons/spain.svg), #fff;
  background-size: 20px;
  background-position: 10px 9px !important;
  background-repeat: no-repeat !important;
  padding-left: 40px;
}
.form-inputs input.error {
  margin: 0;
}
input:focus-visible {
  outline: none;
}
::-webkit-input-placeholder {
  color: var(--inputcolor);
}
:-moz-placeholder {
  color: var(--inputcolor);
  opacity: 1;
}
::-moz-placeholder {
  color: var(--inputcolor);
  opacity: 1;
}
:-ms-input-placeholder {
  color: var(--inputcolor);
}
::-ms-input-placeholder {
  color: var(--inputcolor);
}
::placeholder {
  color: var(--inputcolor);
}
.form-button, .form-step button {
  width: 275px;
  height: 45px;
  background: var(--blue);
  border: none;
  border-radius: 10px;
  color: var(--white);
  font-size: 20px;
  font-weight: 700;
  text-transform: uppercase;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 20px auto 0 auto;
  transition: all 0.3s ease-in;
}
.form-button:hover, .form-step button:hover {
  transform: scale(1.05);
  background: var(--darkblue);
  color: var(--white);
}
.form-check {
  margin-top: 10px;
  text-align: center;
  padding: 0;
}
.form-check label {
  margin: 0;
  position: relative;
  padding-left: 18px;
  cursor: pointer;
  line-height: 1;
  color: var(--black);
  font-size: 11px;
  font-weight: 200;
}
.form-check input[type=checkbox] {
  position: absolute;
  opacity: 0;
  cursor: pointer;
}
.checkmark {
  position: absolute;
  top: -1px;
  left: 0;
  height: 12px;
  width: 12px;
  background-color: transparent;
  border: 1px solid var(--blue);
  border-radius: 2px;
  padding-right: 5px;
  color: var(--blue);
}
.form-check input[type=checkbox]:checked + .checkmark::after {
  content: "\2713";
  display: block;
  text-align: center;
  line-height: 12px;
  margin-left: -0.5px;
  margin-top: -0.5px;
  font-size: 14px;
}
#politica-link {
  color: var(--black);
  text-decoration: none;
}
#politica-link:hover {
  color: var(--blue);
  text-decoration: underline;
}
.error, #termos-error {
  color: red;
  font-size: 11px;
  width: 100%;
  font-weight: 400;
  margin-top: 5px;
  padding: 0;
}
.edad-error {
  display: none;
}
/* section 1 */
.section1 {
  padding: 60px 0 80px 0;
  text-align: center;
}
.sec1-txt {
  margin-bottom: 40px;
}
.sec1-txt h3 {
  font-size: 32px;
  font-weight: 400;
  color: var(--black);
  text-wrap: balance;
  margin-bottom: 20px;
}
.sec1-txt span {
  font-weight: 700;
   color: var(--blue);
}
.sec1-txt p {
  font-size: 18px;
  line-height: 1.2;
  color: var(--black);
  text-wrap: balance;
  margin: 0;
}
.offer-slider .slick-track {
  padding: 40px 0;
}
.offer {
  width: 90%;
  min-height: 650px;
  margin: 0 auto;
  border-radius: 20px;
  border: 1px solid rgba(32, 77, 231, 0.3);
  position: relative;
  padding: 0 30px;
  transition: all 0.4s ease;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  cursor: pointer;
}
.offer:hover {
  transform: scale(1.02);
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
}
.recommend {
  border: 2px solid var(--blue);
  transform: scale(1.04);
}
.recommend:hover {
  transform: scale(1.06);
}
.offer-selo {
  position: absolute;
  top: -15px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--blue);
  width: 200px;
  height: 30px;
  border-radius: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-weight: 700;
  font-size: 18px;
  text-transform: uppercase;
  color: var(--white);
}
.offer h3 {
  font-size: 22px;
  font-weight: 700;
  color: var(--blue);
  margin-top: 10px;
}
.offer hr {
  width: 100%;
  opacity: 1;
  background: var(--blue);  
  height: 2px;
  border: none;
  border-radius: 10px;
}
.offer hr:last-of-type {
  margin-top: 20px;
}
.offer p {
  font-size: 14px;
  color: var(--black);
  line-height: 1.1;
  margin-bottom: 20px;
  text-wrap: balance;
}
.offer ul {
  list-style: none;
  padding: 0;
  margin: 0;
  text-align: left;
}
.offer ul li {
  font-size: 12px;
  line-height: 1.1;
  margin: 10px 0;
  display: flex;
  justify-content: flex-start;
  align-items: center;
}
.offer ul li img {
  height: 20px;
  margin-right: 10px;
}
.offer h6 {
  font-weight: 700;
  font-size: 18px;
  color: var(--blue);
  font-style: italic;
  margin-bottom: 15px;
}
.offer button {
  width: 90%;
  height: 45px;
  border-radius: 10px;
  background: var(--blue); 
  border: none;
  font-size: 18px;
  font-weight: 700;
  color: var(--white);
  margin: 20px 0 0 0;
  transition: all 0.3s ease-in;
}
.offer button:hover {
  transform: scale(1.05);
  color: var(--white);
  background: var(--darkblue);
}
/* section 2 */
.section2 {
  padding: 40px 0;
  background: var(--lightgrey);
}
.sec2-txt h3 {
  font-size: 32px;
  font-weight: 400;
  color: var(--black);
  max-width: 80%;
}
.sec2-txt span {
  font-weight: 700;
   color: var(--blue);
}
.sec2-txt p {
  font-size: 20px;
  line-height: 1.2;
  color: var(--black);
  max-width: 80%;
  margin: 0;
}
.sec2-txt img {
  margin: 15px 0;
  height: 30px;
}
.sec2-txt button {
  width: 280px;
  height: 45px;
  border-radius: 10px;
  background: var(--blue); 
  border: none;
  font-size: 18px;
  font-weight: 700;
  color: var(--white);
  margin: 40px 0 0 0;
  transition: all 0.3s ease-in;
}
.sec2-txt button:hover {
  transform: scale(1.05);
  color: var(--white);
  background: var(--darkblue);
}
.review-slider-box{
  position: relative;
  overflow: hidden;
}
.review-slider::before, .review-slider::after {
  content: '';
  position: absolute;
  width: 100%;
  height: 50px;
  right: 0;
  left: 0;
  z-index: 4;
}
.review-slider::before {
  top: 0;
  background: linear-gradient(0deg, rgba(255,255,255,0) 8%, rgba(245,247,255,1) 37%, rgba(245,247,255,1) 100%);
}
.review-slider::after {
  bottom: 0;
  background: linear-gradient(180deg, rgba(255,255,255,0) 8%, rgba(245,247,255,1) 37%, rgba(245,247,255,1) 100%);;
}
.review-slider .slick-track {
  padding: 30px 0;
}
.review-outer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 10px auto;
}
.testimonial-box {
  background: var(--white);
  box-shadow: 0px 0px 10px 5px rgba(27, 38, 117, 0.2);
  width: 44%;
  margin: 0 auto;
  padding: 30px;
  border-radius: 15px;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  flex-direction: column;
}
.small-testimonial {
  height: 215px;
}
.large-testimonial {
  height: 285px;
}
.testimonial-box p {
  font-size: 14px;
  line-height: 1.2;
  margin: 0 auto;
}
.persona {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  margin: 30px 0 0 0;
}
.persona img {
  width: 30px;
  border-radius: 50px;
}
.persona h6 {
  margin: 0 0 0 10px;
  font-style: italic;
  font-weight: 700;
  color: var(--blue);
  font-size: 14px;
}
.persona h6 span {
  font-style: normal;
  font-size: 12px;
  font-weight: 400;
  color: var(--black);
}
/* section 3 */
.section3 {
  text-align: center;
  padding: 60px 0 50px 0;
}
.sec3-txt {
  margin-bottom: 20px;
}
.sec3-txt h3 {
  color: var(--black);
  font-size: 30px;
  font-weight: 700;
  margin: 0;
}
.sec3-txt h3 span {
  color: var(--blue);
}
.article-slider .slick-list {
  padding: 35px 0;
}
.article-box {
  width: 90%;
  margin: 0 auto;  
  cursor: pointer;
  transition: all 0.5s ease;
  border-radius: 20px;
}
.article-box:hover {
  transform: scale(1.05);
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
}
.article-box img {
  width: 100%;
  border-radius: 20px 20px 0 0;
}
.article-txt {
  width: 100%;
  min-height: 155px;
  background: var(--lightgrey);
  border-radius: 0 0 20px 20px;
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  flex-direction: column;
  text-align: left;
  padding: 30px;
}
.article-txt p {
  color: var(--black);
  font-size: 15px;
  font-weight: 300;
  margin: 0;
  line-height: 1.2;
}
.article-txt p span {
  font-weight: 700;
}
.article-post {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  margin-top: 20px;
}
.time {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 30%;
}
.time img {
  height: 20px;
  margin-right: 10px;
}
.custom-dots, .custom-dots2 {
  text-align: center;
  margin-top: 0px;
}
.custom-dots .slick-dots, .custom-dots2 .slick-dots {
  display: flex;
  justify-content: center;
  list-style: none;
  padding: 0;
}
.custom-dots .slick-dots li, .custom-dots2 .slick-dots li {
  margin: 0 5px;
}
.custom-dots .slick-dots li button, .custom-dots2 .slick-dots li button {
  background-color: var(--lightgrey); 
  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, .custom-dots2 .slick-dots li.slick-active button {
  background-color: var(--blue);
}
/* footer */
.footer {
  padding: 60px 0 0 0;
  background: var(--lightgrey);
  position: relative;
  padding: 65px 20px;
}
.footer-txt {
  color: var(--black);
}
.footer-txt p {
  font-size: 35px;
  font-weight: 350;
  margin: 0;
  line-height: 1;
}
.footer-txt h3 {
  font-size: 35px;
  font-weight: 700;
  color: var(--blue);
}
.footer-txt button {
  width: 280px;
  height: 45px;
  border-radius: 10px;
  background: var(--blue); 
  border: none;
  font-size: 18px;
  font-weight: 700;
  color: var(--white);
  margin: 40px 0 0 0;
  transition: all 0.3s ease-in;
}
.footer-txt button:hover {
  transform: scale(1.05);
  color: var(--white);
  background: var(--darkblue);
}
.footer-img img {
  position: absolute;
  bottom: 0;
  right: 15%;
}
/* Message */
.message-section {
  min-height: 100vh;
  background: url('/img/simulation.jpg') !important;
  background-position: center 85% !important;
  background-size: cover !important;
  background-repeat: no-repeat !important;
  display: flex;
  justify-content: center;
  align-items: center;
}
.message-error {
  min-height: 85vh;
  align-items: center;
  background: #f0f1fc;
}
.message-page {
  padding: 100px 0 130px 0 !important;
}
.ty-box {
  width: 90%;
  min-height: 400px;
  margin: 0 auto;
  text-align: center;
  border-radius: 30px;
  padding: 50px;
  background: var(--white);
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}
.ty-box img {
  height: 180px;
  margin-bottom: 30px;
}
.ty-box h3 {
  font-size: 40px;
  font-weight: 700;
  color: var(--blue);
  text-wrap: balance;
}
.ty-box p {
  text-wrap: balance;
  font-size: 18px;
  line-height: 1.2;
  margin-top: 10px;
}
.ty-box p span {
  font-weight: 700;
}
/* Adstrategy */
#section-ads {
  text-align: center;
  padding: 30px 0;
}
/* Media Queries */
@media only screen and (max-width: 1600px) {
  .footer-img img {
    right: 10%;
  }
}
@media only screen and (max-width: 1400px) {
  .nav-menu ul li {
    font-size: 11px;
  }
  .header-txt h1 {
    font-size: 30px;
  }
  .form-img img {
    max-width: 380px;
  }
  .header-txt ul {
    max-width: 90%;
  }
  .sec2-txt h3 {
    max-width: 100%;
  }
  .persona-box {
    height: 210px;
  }
  .persona-box img {
    height: 250px;
  }
  .article-txt {
    min-height: 180px;
  }
  .article-txt {
    justify-content: space-between;
  }
}
@media only screen and (max-width: 1300px) {
  .footer-img img {
    right: 5%;
  }
}
@media only screen and (max-width: 1200px) {
  .header-txt h1 {
    font-size: 26px;
  }
  .header-txt p {
    max-width: 100%;
  }
  .header-txt ul li {
    max-width: 85%;
    margin: 0 0 15px 0;
    font-size: 14px;
  }
  .form-img {
    max-width: 415px;
    margin-left: -40px;
  }
  .testimonial-box {
    width: 45%;
    padding: 15px;
  }
  .testimonial-box p {
    font-size: 12px;
  }
  .sec1-txt h3, .sec2-txt h3, .sec3-txt h3 {
    font-size: 28px;
  }
  .sec2-txt p {
    max-width: 100%;
    font-size: 18px;
  }
  .persona-box {
    height: 190px;
  }
  .persona-box img {
    height: 220px;
  }
  .offer h3 {
    text-wrap: balance;
  }
  .article-txt p {
    font-size: 14px;
  }
  .footer-txt h3 {
    font-size: 30px;
  }
  .footer-txt p {
    font-size: 28px;
  }
  .footer-img img {
    right: 0;
  }
}
@media only screen and (max-width: 1080px) {
  #contactform {
    min-width: 420px;
    margin-right: -40px;
  }
  .nav-menu ul li img {
    display: none;
  }
  .nav-menu ul li:last-child img {
    display: flex;
  }
  .footer-img img {
    width: 450px;
  }
}
@media only screen and (max-width: 991px) {
  .nav-menu ul li {
    margin: 0 5px 0 0;
  }
  .nav-menu ul li:last-child img {
    height: 20px;
  }
  .nav-menu ul li {
    font-size: 10px;
  }
  .nav-logo img {
    height: 45px;
  }
  .google-img img {
    height: 20px;
  }
  .form-img {
    display: none;
  }
  .testimonial-box {
    width: 90%;
    margin: 10px auto;
    padding: 20px;
  }
  .review-outer {
    margin: 0 auto;
    flex-direction: column;
  }
  .large-testimonial, .small-testimonial {
    height: auto;
  }
  .sec2-txt h3 {
    font-size: 28px;
  }
  .persona-box img {
    height: 270px;
    left: unset;
    right: unset;
  }
  .footer-txt h3 {
    font-size: 36px;
    text-wrap: balance;
  }
  .footer-txt p {
    font-size: 22px;
  }
  .footer-img img {
    width: 400px;
  }
  .form-check label {
    font-size: 10px;
  }
}
@media only screen and (max-width: 768px) {
  .selo {
    justify-content: center;
  }
  .nav {
    padding: 20px 0;
  }
  .nav-logo {
    text-align: center;
  }
  .nav-logo img {
    height: 70px;
  }
  .nav-menu {
    display: none;
  }
  .google-img, .google-txt {
    text-align: center;
  }
  .google-txt {
    display: none;
  }
  .header {
    text-align: center;
    padding: 30px 0 50px 0;
  }
  .header-txt h1 {
    font-size: 30px;
    margin: 20px auto 30px 0;
    text-wrap: balance;
  }
  .header-txt p {
    font-weight: 700;
    color: var(--blue);
    margin-bottom: 30px;
    margin-top: 10px;
  }
  .header-txt ul {
    margin: 20px auto;
    max-width: 70%;
  }
  .header-txt ul li {
    text-align: left;
  }
  #contactform {
    width: 100%;
    min-width: unset;
    margin: 0px auto 30px auto;
  }
  .radio-buton label {
    height: 45px;
    font-size: 16px;
  }
  .section1 {
    padding: 60px 0;
  }
  .sec1-txt {
    margin-bottom: 20px;
  }
  .sec1-txt p {
    font-size: 14px;
  }
  .section2 .row {
    flex-direction: column-reverse;
  }
  .sec2-txt {
    text-align: center;
    margin-bottom: 30px;
  }
  .sec2-txt h3 {
    margin: 0 auto;
    max-width: 80%;
  }
  .testimonial-box p {
    font-size: 14px;
  }
  .persona-box img {
    height: 240px;
    left: 0;
    right: 0;
  }
  .footer-img img {
    position: relative;
    margin-top: 50px;
    width: 90%;
  }
  .footer {
    text-align: center;
    padding: 60px 0 0 0;
  }
  .form-box {
    min-height: auto;
  }
  .time {
    width: 20%;
  }
  .form-check label {
    font-size: 11px;
  }
}
@media only screen and (max-width: 575px) {
  .nav-logo img {
    height: 60px;
  }
  .header-txt h1 {
    font-size: 28px;
    margin-bottom: 15px;
  } 
  .persona-box img {
    height: 220px;
  }
}
@media only screen and (max-width: 475px) {
  .sec2-txt h3 {
    max-width: 100%;
  }
  .sec1-txt h3, .sec2-txt h3, .sec3-txt h3 {
    font-size: 24px;
  }
  .time {
    width: 20%;
  }
}
@media only screen and (max-width: 445px) {
  .persona-box img {
    height: 190px;
  }
}
@media only screen and (max-width: 414px) {
  .nav-logo img {
    height: 50px;
  }
  .header-txt ul li {
    font-size: 13px;
  }
  .sec2-txt img{
    width: 90%;
    margin: 20px auto;
    height: auto;
  }
  .sec1-txt p {
    font-size: 16px;
  }
  .sec1-txt h3, .sec2-txt h3, .sec3-txt h3 {
    font-size: 22px;
  }
  .persona-box {
    width: 80%;
  }
  .persona-box img {
    height: 250px;
  }
  .radio-buton label, .age-input p {
    font-size: 14px;
  }
  #contactform h3 {
    font-size: 22px;
  }
  .form-check {
    text-align: left;
    padding: 0 10px;
  }
  .error, #termos-error {
    text-align: center;
  }
  .form-button, .form-step button {
    width: 100%;
  }
}
@media only screen and (max-width: 375px) {
  .header-txt h1 {
    font-size: 24px;
    margin-bottom: 30px;
  }
  .footer-txt h3 {
    font-size: 30px;
  }
  .footer-txt p {
    font-size: 18px;
    margin-top: 20px;
  }
}
@media only screen and (max-width: 345px) {
  .accordion-body p {
    font-size: 13px;
  }
  .header-txt ul {
    max-width: 70%;
  }
  .google-img img {
    width: 90%;
    height: auto;
  }
  .message-txt-ty h3 {
    font-size: 22px;
  }
  .mobile-title-offer {
    font-size: 16px;
  }
  .header-txt p {
    text-wrap: balance;
  }
  .sec1-txt p {
    font-size: 14px;
  }
  #contactform {
    padding: 30px 20px;
  }
  .form-button, .form-step button {
    font-size: 18px;
  }
}
@media only screen and (max-width: 320px) {
  .header-txt h1 {
    font-size: 22px;
  }
  .input-title h5 {
    font-size: 17px;
  }
  .radio-buton label {
    font-size: 13px;
  }
}