@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&family=Raleway:ital,wght@0,100..900;1,100..900&display=swap');

:root {
  --white: #fff;
  --black: #000;
  --gradient: linear-gradient(0deg, var(--lightgrey) 0%, var(--white) 100%);
  --gradient2: linear-gradient(102deg, var(--lightorange) 0.63%, var(--orange) 49.5%, var(--red) 98.38%);
  --backgradient: linear-gradient(0deg, var(--orange) 14%, rgba(255, 255, 255, 0.0) 10%);
  --lightgrey: #F4F4F4;
  --mediumgrey: #A2A2A2;
  --grey: #747474;
  --lightorange: #FFCC38;
  --orange: #FF6A27;
  --red: #E30613;
}

html,
body {
  margin: 0;
  padding: 0 !important;
  font-family: "Raleway", serif;
  font-weight: normal;
  font-style: normal;
  font-size: 16px;
  overflow-x: hidden !important;
}

a:hover {
  color: #000000;
}

/* header */
.header {
  background: url('/img/header.png');
  background-position: center bottom;
  background-size: cover;
  background-repeat: no-repeat;
  padding: 60px 0 0 0;
}

.divider {
  background: url('/img/over.svg');
  background-position: center bottom;
  background-size: 100%;
  background-repeat: no-repeat;
  min-height: 300px;
  margin-top: -295px;
  position: relative;
  z-index: 22;
}

.header-content {
  display: flex;
  justify-content: space-evenly;
  align-items: center;
}

.header-txt {
  width: 60%;
  margin-bottom: 150px;
}

.logo {
  width: 210px;
  margin-bottom: 60px;
}

.header-txt h1 {
  color: var(--black);
  font-size: 30px;
  font-weight: 700;
  line-height: 1.2;
}

.header-txt h1 span {
  background: var(--backgradient);
}

.header-txt p {
  color: var(--black);
  font-size: 20px;
  font-weight: 400;
  line-height: 1.2;
  margin: 30px 0 0 0;
}

.google {
  margin-top: 50px;
  border-radius: 10px;
  box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.2);
}

.header-img {
  width: 40%;
}

.header-img img {
  height: 600px;
}

/* form */
.form-step {
  display: none;
}

.form-step.active {
  display: block;
}

#contactform {
  width: 460px;
  min-height: 575px;
  margin: 0 0 0 auto;
  padding: 30px;
  background: var(--white);
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  flex-direction: column;
  z-index: 99;
  box-shadow: 0px 15px 20px rgba(0, 0, 0, 0.25);
}

#contactform h3 {
  color: var(--black);
  font-size: 18px;
  font-weight: 700;
  border-bottom: 6px solid var(--orange);
}

#contactform h6 {
  color: var(--grey);
  font-size: 16px;
  font-weight: 700;
  margin: 0 0 10px 0;
  text-wrap: balance;
}

.message-title img {
  width: 16px;
  cursor: pointer;
}

.message-title {
  position: relative;
}


.tooltip-title {
  min-width: 100%;
  background: #e1e1e1;
  padding: 10px 20px;
  border-radius: 10px;
  top: -50px;
  left: 0;
  position: absolute;
  visibility: hidden;
  opacity: 0;
  transition: opacity 0.2s ease-in-out;
}

.tooltip-title p {
  margin: 0;
  font-size: 12px;
  text-align: left;
  font-weight: 500;
  color: var(--black);
}

.smaller-tooltip {
  top: -30px;
}

.message-title img:hover+.tooltip-title {
  visibility: visible;
  opacity: 1;
}

.progress-img {
  margin: 20px auto;
}

.progress-img img {
  max-width: 100%;
}

.form-input,
.form-input-slider {
  margin-bottom: 20px;
}

.form-input .dropdown-toggle,
.form-input input {
  background: var(--white);
  color: var(--mediumgrey);
  width: 100%;
  height: 50px;
  padding: 0 15px;
  font-size: 16px;
  border: 2px solid var(--orange);
  border-radius: 20px;
  text-align: left;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.form-input input {
  color: var(--black);
}

.form-input input:focus-visible {
  outline: none;
}

::-webkit-input-placeholder {
  color: var(--mediumgrey);
}

:-moz-placeholder {
  color: var(--mediumgrey);
  opacity: 1;
}

::-moz-placeholder {
  color: var(--mediumgrey);
  opacity: 1;
}

:-ms-input-placeholder {
  color: var(--mediumgrey);
}

::-ms-input-placeholder {
  color: var(--mediumgrey);
}

::placeholder {
  color: var(--mediumgrey);
}

.dropdown-toggle::after {
  display: none;
}

.form-input .dropdown-toggle:active,
.form-input .dropdown-toggle:focus-visible,
.form-input .dropdown-toggle:focus {
  box-shadow: none;
  background: var(--white);
  color: var(--mediumgrey);
}

.form-input .dropdown-menu {
  width: 100%;
  overflow-y: auto;
  max-height: 200px;
  cursor: pointer;
}

.form-option:hover,
.form-option.selected {
  background: var(--orange);
  color: var(--white);
}

.form-slider {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

.slider {
  width: 100% !important;
  margin: 10px 0 0 0 !important;
  height: auto !important;
}

input[type=range] {
  -webkit-appearance: none;
  width: 80%;
  margin: 10px 0;
  height: 8px;
  border-radius: 0;
  background: linear-gradient(to right, var(--lightorange) 0%, var(--red) var(--slider-value, 0%), rgba(224, 224, 224, 0.80) var(--slider-value, 0%), rgba(224, 224, 224, 0.80) 100%);
}

input[type=range]::-webkit-slider-runnable-track {
  height: 8px;
  border-radius: 12px;
  background: linear-gradient(to right, var(--lightorange) 0%, var(--red) 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: 8px;
  border-radius: 12px;
  background: linear-gradient(to right, var(--lightorange) 0%, var(--red) 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: 8px;
  border-radius: 12px;
  background: transparent;
  border: none;
  color: transparent;
}

input[type=range]::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--orange);
  cursor: pointer;
  margin: -6px 0 0 -1px;
}

input[type=range]::-ms-thumb {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--orange);
  cursor: pointer;
  margin: -6px 0 0 -1px;
}

.value-display {
  width: 100%;
  color: var(--black);
  text-align: center;
  font-size: 25px;
  font-weight: 700;
  display: flex;
  justify-content: center;
  align-items: center;
}

.value-display span:focus-visible {
  outline: none !important;
}

.form-check {
  text-align: center;
  padding: 0;
  margin-bottom: 10px;
}

.form-check label {
  margin: 0 0 0 5px;
  position: relative;
  padding-left: 18px;
  cursor: pointer;
  line-height: 1;
  font-size: 13px;
  font-weight: 400;
}

.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(--orange);
  border-radius: 2px;
  padding-right: 5px;
  color: var(--orange);
}

.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.1px;
  font-size: 12px;
}

#politica-link {
  color: var(--black);
  text-decoration: none;
}

#politica-link:hover {
  color: var(--orange);
  text-decoration: underline;
  font-weight: 700;
}

.form-button {
  color: var(--white);
  font-size: 20px;
  font-weight: 700;
  width: 200px;
  height: 50px;
  border-radius: 20px;
  background: var(--orange);
  border: none;
  margin-top: 10px;
  transition: all 0.4s ease;
}

.form-button:hover {
  background: var(--red);
  color: var(--white);
  transform: scale(1.1);
}

.error,
#termos-error {
  font-size: 11px;
  font-weight: 300;
  color: var(--red);
}

/* section 1 */
.section1 {
  padding: 60px 0;
  background: var(--lightgrey);
  position: relative;
  z-index: 1000;
}

.partner-wrapper {
  position: relative;
  overflow: hidden;
}

.partner-slider .slick-track {
  padding: 30px 0;
}

.partner-slider::before,
.partner-slider::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  width: 80px;
  z-index: 4;
}

.partner-slider::before {
  left: 0;
  background: linear-gradient(to right, var(--lightgrey), rgba(255, 255, 255, 0));
}

.partner-slider::after {
  right: 0;
  background: linear-gradient(to left, var(--lightgrey), rgba(255, 255, 255, 0));
}

.partner-outer img {
  max-width: 100%;
  height: 80px;
  margin: 0 auto;
  transition: all 0.4s ease;
}

.partner-outer img:hover {
  transform: scale(1.15);
  filter: none;
}

/* section2 */
.section2 {
  padding: 80px 0;
  text-align: center;
}

.title h3 {
  color: var(--black);
  font-size: 40px;
  font-weight: 700;
}

.title h3 span {
  background: var(--backgradient);
}

.vant-row {
  margin-top: 50px;
}

.vants img {
  height: 60px;
  margin-bottom: 30px;
  animation: bounceInOut 3s ease-in-out infinite;
}

@keyframes bounceInOut {
  0% {
    transform: scale(1);
    opacity: 1;
  }

  50% {
    transform: scale(1.2);
    opacity: 1;
  }

  100% {
    transform: scale(1);
    opacity: 1;
  }
}

.vants h6 {
  font-size: 22px;
  font-weight: 700;
  line-height: 1.2;
  color: var(--orange);
  max-width: 90%;
  margin: 0 auto 10px auto;
  text-wrap: balance;
}

.vants p {
  color: var(--black);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.1;
  max-width: 85%;
  margin: 0 auto;
  text-wrap: balance;
}

/* section 3 */
.section3 {
  padding: 40px 0;
  text-align: center;
}

.numbers-box {
  background: url('/img/glass-effect.svg'), var(--gradient2);
  background-size: cover, 100%;
  background-repeat: no-repeat, no-repeat;
  background-position: center, center;
  padding: 120px 40px;
  border-radius: 50px;
  color: var(--white);
  overflow: hidden;
}

.numbers-content {
  margin: 0 30px;
}

.numbers-content h6 {
  font-size: 25px;
  font-weight: 700;
  line-height: 1.1;
  margin: 0 auto 20px auto;
}

.numbers-content h3 {
  font-size: 80px;
  font-weight: 700;
  font-family: "Poppins", serif;
  line-height: 1;
  margin: 0 auto;
}

.banco {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 50px;
  text-align: left;
}
.banco img {
  height: 50px;
  margin-right: 20px;
}
.banco p {
  margin: 5px 0 0 0;
  color: var(--black);
  font-size: 13px;
  font-weight: 400;
  line-height: 1.1;
}

/* section 4 */
.section4 {
  padding: 40px 0;
  background: var(--gradient);
}

.section4 .title {
  text-align: center;
  margin-bottom: 50px;
}

.section4 .title p {
  color: var(--black);
  font-size: 20px;
  font-weight: 500;
  margin: 40px auto 0 auto;
  line-height: 1.2;
}

.section4 .title p span {
  font-weight: 700;
}

.sec4-img {
  text-align: right;
}

.sec4-img img {
  max-width: 100%;
  margin-right: 50px;
  transition: all 0.4s ease;
}

.sec4-img img:hover {
  transform: scale(1.1);
}

.bullets {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  margin: 15px 0;
}

.bullet-txt {
  margin-left: 20px;
}

.bullet-txt h6 {
  font-size: 25px;
  font-weight: 700;
  color: var(--orange);
  line-height: 1.1;
  margin: 0 0 10px 0;
}

.bullet-txt p {
  font-size: 16px;
  font-weight: 500;
  line-height: 1.2;
  color: var(--black);
  max-width: 95%;
}

/* section 5 */
.section5 {
  text-align: center;
  padding: 60px 0;
}

.section5 .title {
  margin-bottom: 60px;
}

.review-slider .slick-track {
  padding: 30px 0;
}

.review-box {
  max-width: 95%;
  min-height: 238px;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  flex-direction: column;
  margin: 0 auto;
  padding: 25px;
  border-radius: 16px;
  border: 1px solid var(--lightgrey);
  box-shadow: 0px 2px 12px 0px rgba(0, 0, 0, 0.25);
}

.persona {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  text-align: left;
  margin-bottom: 20px;
}

.person-icon {
  min-width: 60px;
  min-height: 60px;
  border-radius: 100px;
  color: var(--white);
  font-size: 30px;
  font-weight: 700;
  display: flex;
  justify-content: center;
  align-items: center;
}

.persona1,
.persona4 {
  background: #900048;
}

.persona2,
.persona5 {
  background: #00635B;
}

.persona3,
.persona6 {
  background: #0077FF;
}

.persona-name {
  margin-left: 15px;
}

.persona-name h6 {
  color: var(--black);
  font-size: 20px;
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 10px;
}

.persona-name p {
  color: rgba(0, 0, 0, 0.60);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.1;
  margin: 0;
}

.review-txt {
  text-align: left;
}

.review-txt p {
  font-size: 16px;
  font-weight: 400;
  color: var(--black);
  line-height: 1.1;
  margin: 0 0 10px 0;
}

.review-txt button {
  background: transparent;
  border: none;
  color: #07F;
  font-size: 12px;
  font-weight: 400;
  padding: 0;
}

.review-txt button:hover {
  border-bottom: 1px solid #07F;
}

.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(--lightgrey);
  border: none;
  border-radius: 50%;
  width: 16px;
  height: 16px;
  display: block;
  padding: 0;
  cursor: pointer;
  font-size: 0;
  transition: all 0.5s ease;
}

.custom-dots .slick-dots li.slick-active button {
  background-color: var(--orange);
}

.popup-review {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  justify-content: center;
  align-items: center;
  z-index: 1000;
}

.popup-content {
  position: relative;
  background: var(--white);
  max-width: 90%;
  width: 450px;
  min-height: 238px;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  flex-direction: column;
  margin: 0 auto;
  padding: 25px;
  border-radius: 16px;
  border: 1px solid var(--lightgrey);
  box-shadow: 0px 2px 12px 0px rgba(0, 0, 0, 0.25);
}

.close-review {
  position: absolute;
  cursor: pointer;
  color: var(--white);
  background: var(--orange);
  border: none;
  width: 30px;
  height: 30px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50px;
  top: -10px;
  right: -10px;
  transition: all 0.4s ease;
}

.close-review:hover {
  transform: scale(1.1);
  background: var(--red);
}

/* footer */
.footer {
  background: url('/img/footer.png');
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center top;
}

.footer-img {
  text-align: center;
}

.footer-img img {
  height: 470px;
}

.footer-txt {
  margin-top: 110px;
}

.footer-txt h3 {
  color: var(--black);
  font-size: 30px;
  font-weight: 700;
  max-width: 95%;
  line-height: 1.2;
}

.footer-txt h3 span {
  background: var(--backgradient);
}

.footer-txt button {
  width: 300px;
  height: 60px;
  border-radius: 20px;
  border: none;
  background: var(--orange);
  font-size: 20px;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--white);
  margin-top: 40px;
  transition: all 0.4s ease;
}

.footer-txt button:hover {
  transform: scale(1.1);
  background: var(--red);
}

/* Thank you page */
.simulation {
  min-height: 120vh;
  background: url('/img/resumo.png');
  background-position: top center;
  background-size: cover;
  background-repeat: no-repeat;
}

.content-blur {
  filter: blur(10px);
}

.modal-message {
  display: flex;
  justify-content: center;
  align-items: center;
  position: fixed;
  z-index: 9999;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0, 0, 0, 0.4);
}

.message-content {
  margin: 0 auto;
  padding: 20px;
  background: var(--white);
  width: 670px;
  height: 370px;
  text-align: center;
  border-radius: 30px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

.ty-content {
  height: auto;
  padding: 40px 20px;
}

.ty-content.message-content p {
  font-size: 20px;
  margin: 20px auto 0 auto;
}

.message-content h3 {
  color: var(--orange);
  font-size: 40px;
  font-weight: 700;
  margin-bottom: 20px;
}

.message-content p,
.message-content span {
  color: var(--black);
  font-size: 25px;
  font-weight: 400;
  line-height: 1.1;
  max-width: 80%;
  text-wrap: balance;
}

.message-content span {
  margin: 5px auto;
  font-size: 20px;
}

.modal-header {
  display: flex !important;
  justify-content: space-between !important;
}

.thanks-logo {
  margin-top: 25px;
}

.thanks-logo img {
  height: auto;
  width: 45%;
  object-fit: cover;
}


/* Adstrategy */
#section-ads {
  text-align: center;
  padding: 30px 0;
}

/* TY page */

.radio-group {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 15px;
}

.radio-group label {
  display: flex;
  width: 330px;
  justify-content: center;
  align-items: center;
  height: 60px;
  border-radius: 20px;
  font-size: 18px;
  font-weight: 400;
  text-align: center;
  border: 2px solid var(--orange);
  color: #000;
  cursor: pointer;
  transition: all 0.3s ease;
}

.radio-group label:hover {
  background-color: var(--orange);
  color: var(--white);
}

#tyform {
  flex-wrap: wrap;
  margin-top: 25px;
  gap: 10px;
  justify-content: center;
  align-items: center;
  display: flex;
  max-width: 80%;
}

#tyform .radio-group input:checked+label {
  background-color: var(--orange);
  color: var(--white);
}

#tyform .radio-group label {
  width: 45%;
  max-width: 300px;
}

/* Media Queries */
@media only screen and (max-width: 1400px) {
  .header-txt h1 {
    font-size: 26px;
  }

  .header-txt p {
    font-size: 16px;
  }

  .header-img img {
    margin-left: -50px;
  }

  .numbers-content h3 {
    font-size: 70px;
  }

  .numbers-content h6 {
    font-size: 20px;
  }

  .review-txt p {
    font-size: 14px;
  }

  .persona-name h6 {
    font-size: 18px;
  }

  .persona-name p {
    font-size: 13px;
  }

  .footer-txt h3 {
    font-size: 28px;
    max-width: 100%;
  }
}

@media only screen and (max-width: 1200px) {
  .header-txt h1 {
    font-size: 28px;
  }

  .header-txt p {
    font-size: 14px;
  }

  .google {
    max-width: 90%;
  }

  .header-img img {
    margin: 0 0 -80px 0;
    height: 480px;
  }

  .vants h6 {
    font-size: 18px;
    max-width: 90%;
  }

  .vants p {
    max-width: 100%;
    font-size: 14px;
  }

  .numbers-content {
    margin: 0 auto;
  }

  .numbers-content h3 {
    font-size: 60px;
  }

  .numbers-content h6 {
    font-size: 18px;
  }

  .bullet-txt h6 {
    font-size: 20px;
  }

  .bullet-txt p {
    font-size: 14px;
  }

  .footer-txt h3 {
    max-width: 90%;
  }
}

@media only screen and (max-width: 1100px) {
  #contactform {
    width: 420px;
  }

  .header-img img {
    margin: 0 0 -100px 0;
  }
}

@media only screen and (max-width: 991px) {
  #contactform {
    width: 390px;
    margin: 0 auto;
  }

  #contactform h3 {
    font-size: 16px;
  }

  .form-check {
    text-align: center;
  }

  .header-txt {
    width: 100%;
  }

  .header-img {
    display: none;
  }

  .numbers-content h3 {
    font-size: 45px;
  }

  .numbers-content h6 {
    font-size: 15px;
  }

  .title h3 {
    font-size: 30px;
  }

  .footer-txt {
    margin-top: 40px;
  }

  .footer-img img {
    height: 380px;
  }
}

@media only screen and (max-width: 768px) {
  .header {
    text-align: center;
    padding: 40px 0 0 0;
  }

  .logo {
    margin-bottom: 30px;
  }

  .header-txt {
    margin-bottom: 40px;
  }

  .header-txt p {
    font-size: 18px;
    max-width: 80%;
    margin: 20px auto 0px auto;
  }

  .google {
    max-width: 100%;
    margin-top: 30px;
  }

  #contactform {
    width: 440px;
  }

  .form-input input {
    font-size: 16px;
  }

  .form-check {
    text-align: center;
  }

  .vant-row {
    margin-top: 20px;
  }

  .vants {
    margin: 20px 0;
  }

  .vants h6 br {
    display: none;
  }

  .numbers-box {
    padding: 50px;
    background-position: 35%, center;
    max-width: 95%;
    margin: 0 auto;
  }

  .numbers-content {
    margin: 25px auto;
  }

  .numbers-content h3 {
    font-size: 65px;
  }

  .numbers-content h6 {
    font-size: 20px;
  }

  .section4 .title h3 {
    max-width: 95%;
    margin: 0 auto;
  }

  .section5 .title h3 {
    max-width: 80%;
    margin: 0 auto;
  }

  .section5 .title {
    margin-bottom: 30px;
  }

  .section4 .title p {
    font-size: 16px;
  }

  .section4 .title p span {
    font-size: 18px;
  }

  .sec4-img {
    text-align: center;
  }

  .sec4-img img {
    margin: 0 auto;
  }

  .bullets {
    max-width: 80%;
    margin: 15px auto;
  }

  .footer {
    padding: 80px 0 70px 0;
    text-align: center;
    background-position: center right;
  }

  .footer-txt h3 {
    margin: 0px auto;
  }

  .footer-img {
    display: none;
  }

  .message-content {
    max-width: 90%;
    height: auto;
    padding: 50px 0;
  }

  .message-content h3 {
    font-size: 30px;
  }

  .message-content p {
    font-size: 20px;
  }
}

@media only screen and (max-width: 550px) {
  #contactform {
    width: 100%;
  }

  .section4 .title p,
  .section4 .title p span {
    font-size: 18px;
    max-width: 75%;
  }

  .message-content p {
    max-width: 90%;
  }

  .simulation {
    min-height: 90vh;
  }
  .banco p {
    max-width: 60%;
  }
}

@media only screen and (max-width: 475px) {
  .header-txt p {
    max-width: 100%;
  }

  #tyform {
    max-width: 100%;
  }

  .vants h6 {
    font-size: 22px;
  }

  .vants p {
    max-width: 80%;
    font-size: 18px;
  }

  .section5 .title h3 {
    max-width: 100%;
  }

  .footer-txt h3 {
    max-width: 100%;
  }

  .form-input .dropdown-toggle,
  .form-input input {
    font-size: 16px;
  }

  .form-input input {
    overflow: hidden;
  }

  ::-webkit-input-placeholder {
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  :-moz-placeholder {
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  ::-moz-placeholder {
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  :-ms-input-placeholder {
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  ::-ms-input-placeholder {
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  ::placeholder {
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .numbers-box {
    padding: 50px 30px;
  }

  .footer-txt h3 {
    font-size: 26px;
  }

  .thanks-logo img {
    width: 60%;
  }
}

@media only screen and (max-width: 414px) {
  .header-txt h1 {
    font-size: 24px;
  }

  .header-txt p {
    font-size: 16px;
  }

  #contactform {
    padding: 30px 20px;
  }

  #contactform h3 {
    font-size: 18px;
    max-width: 80%;
    margin: 0 auto;
  }

  .numbers-content h3 {
    font-size: 55px;
  }

  .section4 .title p,
  .section4 .title p span {
    max-width: 90%;
  }

  .title h3 {
    font-size: 28px;
  }

  .footer-txt h3 {
    font-size: 22px;
  }

  .message-content {
    padding: 40px 20px;
  }

  .message-content h3 {
    font-size: 24px;
  }

  .message-content p {
    max-width: 100%;
    margin: 0 auto 20px auto;
  }
  .banco {
    max-width: 95%;
    margin: 30px auto 0 auto;
  }
  .banco img {
    height: 40px;
  }
  .banco p {
    max-width: 85%;
    font-size: 12px;
  }
}

@media only screen and (max-width: 375px) {
  .header-txt h1 {
    font-size: 24px;
  }

  .header-txt p {
    font-size: 14px;
  }

  .form-check {
    text-align: left;
  }

  .numbers-content h3 {
    font-size: 45px;
  }

  .message-title br {
    display: none;
  }

  #contactform h3 {
    font-size: 18px;
    max-width: 90%;
  }

  .bullets {
    max-width: 100%;
  }

  .person-icon {
    min-width: 50px;
    min-height: 50px;
    font-size: 26px;
  }

  .footer-txt button {
    max-width: 100%;
  }
}

@media only screen and (max-width: 335px) {
  .numbers-box {
    padding: 40px 0;
  }
}