@import url('https://fonts.googleapis.com/css2?family=Urbanist:wght@100..900&display=swap');

:root {
  --black: #000;
  --white: #fff;
  --blue: #144083;
  --red: #E30613;
  --border-radius: 100px;
}

body {
  margin: 0;
  padding: 0;
  font-family: 'Urbanist', sans-serif;
  font-weight: normal;
  font-style: normal;
  font-size: 16px;
  overflow-x: hidden !important;
}

a {
  color: inherit;
  text-decoration: none;
}

a:hover {
  color: #000000;
}


::-moz-selection {
  /* Code for Firefox */
  color: #ffffff;
  background: var(--red);
}

::selection {
  color: #ffffff;
  background: var(--red);
}

/* Cookie bar */
.cky-btn {
  border-color: var(--red) !important;
}

.cky-btn-customize,
.cky-btn-reject,
.cky-btn-preferences {
  color: var(--red) !important;
}

.cky-btn-accept {
  background: var(--red) !important;
}

.cky-switch input[type="checkbox"] {
  display: block !important;
}

/* Header */
.header {
  padding: 150px 0;
  position: relative;
  overflow: hidden;
}

#header-txt {
    display: flex;
    flex-direction: column;
    align-items: start;
    justify-content: center;
}

.header-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -1;
}

.header::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.4);
  pointer-events: none;
}

.video-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}

.video-container video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scaleX(-1);
  filter: brightness(0.65);
}

.container {
  position: relative;
  z-index: 1;
}

.logo-text {
  font-size: 28px;
  font-weight: 500;
  color: white;
  line-height: 1.1;
  max-width: 80%;
  margin-bottom: 20px;
  position: relative;
}

.logo-text .highlight {
  display: inline-block;
}

.logo-text .highlight::after {
  content: "";
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 100%;
  height: 4px;
  background-color: var(--red);
}

.header-info-wrapper {
  max-width: 90%;
  /*margin-top: 50px;*/
  border-radius: var(--border-radius);
}

.header-info h3 {
  color: var(--white);
  font-size: 50px;
  font-weight: 600;
  line-height: 1.1;
  margin-bottom: 20px;
  text-wrap: balance;
}

.header-info p {
  font-size: 24px;
  font-weight: 300;
  color: var(--white);
  max-width: 70%;
}

.header-info img {
  max-width: 430px;
  margin-right: -30px;
}

#contactform {
  width: 100%;
  max-width: 480px;
  border-radius: 40px;
  background: rgba(255, 255, 255, 0.95);
  text-align: center;
  padding: 35px;
  margin: 0 0 0 auto;
  border: 1px solid #CECECE;
}

.form-header {
  margin: 0 auto 30px;
}

.form-header h3 {
  color: var(--red);
  font-size: 30px;
  font-weight: 700;
  line-height: 1;
  margin: 0 auto 10px;
  text-wrap: balance;
}

.form-step h2 {
  text-wrap: balance;
  font-size: 30px;
  font-weight: 400;
  line-height: 1;
  margin: 0 auto 10px;
}

.form-step h4 {
  text-wrap: balance;
  font-size: 24px;
  font-weight: 400;
  line-height: 1;
  margin: 0 auto 10px;
}

.form-step h4 span {
  font-weight: 700;
}

.form-header span {
  font-weight: 400;
  line-height: 1;
  display: inline-block;
  text-align: center;
  text-wrap: balance;
}

.form-highlight {
  color: var(--red);
  font-weight: 600;
}

#form-group {
  padding: 0;
}

#form-group input {
  width: 100%;
  height: 50px;
  border-radius: 100px;
  border: 1px solid #CECECE;
  color: #032239;
  font-size: 18px;
  font-weight: 400;
  padding-left: 15px;
  margin-bottom: 15px;
}

#form-group input.error {
  margin-bottom: 0px;
}

#form-group input::placeholder {
  color: #032239;
}

.form-control {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding: 0 1rem;
  cursor: pointer;
  font-size: 18px;
  font-weight: 600;
  width: 100%;
  height: 50px;
  border-radius: var(--border-radius);
  margin: 0 auto;
  background-color: var(--white);
  border: 1px solid #CECECE;
  transition: all 0.3s ease;
}

.form-control:hover {
  border: 2px solid var(--red);
}

.form-control:focus {
  -webkit-box-shadow: none;
  border-color: var(--red);
  box-shadow: none;
}

.form-step {
  display: none;
}

.form-step.active {
  display: block;
}

.form-check label {
  margin: 0 auto 10px;
  position: relative;
  cursor: pointer;
  color: #032239;
  font-size: 12px;
}

.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 #032239;
  border-radius: 2px;
  padding-right: 5px;
  color: #000000;
}

.form-check input[type=checkbox]:checked+.checkmark:after {
  content: "\2713";
  display: block;
  text-align: center;
  line-height: 15px;
  margin-left: 1px;
  margin-top: -2px;
}

#politica-link {
  color: #000000;
}

#politica-link:hover {
  color: #01478D;
}

.form-button {
  margin: 15px auto 0 auto;
  width: 100%;
  height: 50px;
  border-radius: var(--border-radius);
  background: var(--red);
  color: var(--white);
  text-transform: uppercase;
  font-size: 22px;
  font-weight: 700;
  border: none;
}

.form-button:hover {
  background: var(--white);
  color: var(--red);
  box-shadow: 0px 8px 15px rgba(0, 0, 0, 0.1);

}

.error,
#termos-error {
  color: var(--red);
  font-size: 11px;
  width: 100%;
  margin: 5px auto;
}

/*Term animation */
.termContainer {
  text-align: center;
  width: 100%;
  font-size: 12px;
  color: #1E1E1E;
  margin: 20px;
  cursor: pointer;
}

.termContainer a {
  color: #1E1E1E;
}

.termContainer input {
  display: none;
}

.termContainer a:hover {
  color: var(--red) !important;
}

.termContainer svg {
  overflow: visible;
  max-height: 15px;
  max-width: 15px;
  margin-right: 5px;
  margin-top: 1px;
  vertical-align: baseline;
  translate: 0 2px;
}

.path {
  fill: none;
  stroke: var(--red);
  stroke-width: 8px;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: stroke-dasharray 0.5s ease, stroke-dashoffset 0.5s ease;
  stroke-dasharray: 241 9999999;
  stroke-dashoffset: 0;
}

.termContainer input:checked~svg .path {
  stroke-dasharray: 70.5096664428711 9999999;
  stroke-dashoffset: -262.2723388671875;
}

/* radio buttons */
.radio-btn-wrapper {
  display: flex;
  justify-content: space-evenly;
  margin: 30px 0 20px;
}

.radio-button {
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 18px;
  font-weight: 600;
  text-align: center;
  width: 100px;
  height: 70px;
  border-radius: var(--border-radius);
  margin: 0 auto;
  background-color: var(--white);
  border: 1px solid #CECECE;

  transition: all 0.3s ease;
}

.radio-input {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}

.radio-button:hover {
  background-color: var(--red);
  border: 1px solid var(--red);
}

.radio-button:hover span {
  color: var(--white);
}

.radio-input:checked+.radio-button {
  background-color: var(--red);
  color: var(--white);
  border: 1px solid var(--red);
}
.radio-input:checked+.radio-button span {
    color: var(--white);
}
.radio-btn-wrapper.radio-column {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 1rem;
}

.radio-btn-wrapper.radio-column .radio-button {
  width: 100%;
  justify-content: flex-start;
  padding: 0 1rem;
  height: auto;
  min-height: 50px;
}

.radio-btn-wrapper.radio-column .radio-button span {
  flex: 1;
  text-align: left;
}

label.error {
  display: block;
}

.particular-option {
  font-size: 12px;
  color: #999;
}

/* informations points */
.cards {
  display: grid;
  gap: 1.5rem;
  padding: 2rem;
  margin-top: -60px;
  grid-template-columns: repeat(4, minmax(0, 320px));
  justify-content: center;
  align-items: stretch;
}

.card-outer {
  max-width: 320px;
  margin: 0 auto;
}

.card {
  position: relative;
  overflow: hidden;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  border-radius: 15px;
  border: none;
  background: #fff;
  padding: 60px 26px 40px;
  box-shadow: 0 9px 75px rgba(8, 20, 44, 0.09);
  transform: scale(1);
  transform-origin: center;
  transition: opacity .3s ease, transform .3s ease;
  cursor: pointer;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.card-outer {
  opacity: 0;
  animation: fadeIn 0.3s ease-in forwards;
}

.cards .card-outer:nth-child(1) {
  animation-delay: 0.2s;
}

.cards .card-outer:nth-child(2) {
  animation-delay: 0.4s;
}

.cards .card-outer:nth-child(3) {
  animation-delay: 0.6s;
}

.cards .card-outer:nth-child(4) {
  animation-delay: 0.8s;
}


.card-outer:hover .card {
  transform: scale(1.05);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

.card .overlay {
  position: absolute;
  inset: 0;
  background: var(--red);
  border: 1px solid var(--red);
  border-radius: inherit;
  opacity: 0;
  transform: scale(0);
  transform-origin: center;
  transition: transform .5s ease, opacity .5s ease;
  z-index: 0;
}

.card-outer:hover .overlay {
  transform: scale(1.2);
  opacity: 1;
}


.card .content {
  position: relative;
  z-index: 1;
  flex: 1;
  display: flex;
  flex-direction: column;
}

/* grey shape */
.card .content::before {
  content: "";
  position: absolute;
  z-index: 0;
  top: -20px;
  left: 0;
  width: 47px;
  height: 96px;
  background-color: var(--black, rgba(0, 0, 0, 0.1));
  opacity: 0.05;
  border-radius: 35px;
  transform: rotate(-30deg);
  transition: all .3s ease;
}

.badge-inner {
  /* font-size: 60px; */
  width: 65px;
  filter: brightness(0) saturate(100%) invert(17%) sepia(88%) saturate(3922%) hue-rotate(348deg) brightness(84%) contrast(114%);
  margin-bottom: 18px;
  pointer-events: none;
  z-index: 0;
}

.card:hover .badge-inner {
  transition: color .3s ease;
  filter: brightness(0) invert(1);
}

.number-wrap {
  position: absolute;
  top: -28px;
  right: 0;
  display: inline-block;
  z-index: 1;
  font-size: 18px;
}

.number-wrap .num,
.number-wrap .num-hover {
  display: block;
  transition: opacity .3s ease;
}

.number-wrap .num-hover {
  position: absolute;
  top: 0;
  left: 0;
  color: var(--white);
  opacity: 0;
}

.card:hover .number-wrap .num {
  opacity: 0;
}

.card:hover .number-wrap .num-hover {
  opacity: 1;
}

/* Hover and Focus Styles */
.card-outer:hover .badge-inner {
    filter: brightness(0) invert(1);
}

.card-outer:hover h5 {
    color: var(--white);
}

.card-outer:hover .number-wrap .num {
    color: var(--white); 
}

.card-outer:hover .number-wrap .num-hover {
    color: var(--white);
}

.card h5 {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 1rem;
  transition: all .3s linear;
  position: relative;
  padding-bottom: 16px;
  overflow: hidden;
}

.card h5:before {
  content: "";
  width: 100%;
  height: 1px;
  background-color: rgba(225, 225, 225, 0.35);
  position: absolute;
  bottom: 0;
  left: 0;
}

.card h5:after {
  content: "";
  width: 55%;
  height: 1px;
  background-color: var(--white);
  position: absolute;
  bottom: 0;
  left: 0;
  transform: translateX(-100%);
  transition: transform 0.3s linear;
}

.card:hover h5:after {
  transform: translateX(0);
}

.card:hover h5 {
  color: var(--white);
}

.card .desc {
  transition: transform .3s ease, opacity .3s ease;
  transform-origin: top center;
  max-width: 95%;
}

.card .more {
  position: absolute;
  left: 0;
  bottom: 20px;
  background-color: transparent;
  color: var(--white);
  width: 50px;
  height: 50px;
  line-height: 46px;
  text-align: center;
  opacity: 0;
  font-size: 22px;
  border: 2px solid rgba(255, 255, 255, 0.5);
  border-radius: 50%;
  -webkit-transform: scale(.5);
  transform: scale(.5) rotate(0deg);
  -webkit-transition: all .3s linear;
  transition: all .3s linear;
}

.card:hover .desc {
  transform: scale(.5);
  opacity: 0;
}

.card:hover .more {
  opacity: 1;
  transform: scale(1) rotate(-45deg);
}

.card .more:hover {
  transform: scale(1) rotate(0);
  background-color: var(--white);
  color: var(--black);
}
.more-cta {
  width: 230px;
  height: 45px;
  background: var(--white);
  color: var(--black);
  border: 1px solid var(--black);
  border-radius: 50px;
  transition: all 0.4s ease;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: 0;
  opacity: 0;
}
.more-cta:hover {
  color: var(--white);
  background: var(--black);
}
.card:hover .more-cta {
  opacity: 1;
}

/* section 2 */
.section2 {
  background: url(/pos_assets/img/section2-bg.svg);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: left;
  padding: 40px 0;
}

#section2-1 {
  text-align: center;
}

#section2-1 h5 {
  color: #032239;
  font-size: 18px;
  position: relative;
  font-weight: 700;
  margin-left: 90px;
}

#section2-1 h5::before {
  content: "";
  position: absolute;
  top: 5px;
  margin-left: -90px;
  width: 80px;
  height: 10px;
  background: var(--red);
}

#section2-1 h3 {
  color: #032239;
  font-size: 30px;
  font-weight: 800;
  line-height: 1;
  margin: 15px 0 0 0;
}

#icon-row {
  margin-top: 40px;
}

.icon-box {
  width: 195px;
  height: 280px;
  margin: 0 10px;
  border-radius: 20px;
  background: transparent;
  text-align: center;
  transition: transform 0.7s ease;
}

.icon-box:hover {
  background: #ffffff;
  box-shadow: 0px 4px 10px 1px rgba(0, 0, 0, 0.25);
  transform: scale(1.1);
}

.icon-box img {
  max-height: 70px;
  margin: 20px 0;
}

.icon-box h6 {
  color: var(--red);
  font-size: 16px;
  font-weight: 800;
  margin-bottom: 10px;
}

.icon-box p {
  color: #888;
  font-size: 12px;
  font-weight: 400;
  line-height: 1.1;
  width: 160px;
  margin: 0 auto;
}

#section2-2 {
  margin-top: 100px;
}

#sec1-img {
  text-align: center;
}

#sec2-2-video video {
  max-width: 100%;
  height: 320px;
  border-radius: 10px;
  object-fit: cover;
  transition: transform 0.5s ease;
}

#sec2-2-txt {
  margin-left: 30px;
}

#sec2-2-txt h5 {
  color: #032239;
  font-size: 18px;
  position: relative;
  font-weight: 700;
  margin-left: 90px;
}

#sec2-2-txt h5::before {
  content: "";
  position: absolute;
  top: 5px;
  margin-left: -90px;
  width: 80px;
  height: 10px;
  background: var(--red);
}

#sec2-2-txt h3 {
  color: #032239;
  font-size: 30px;
  font-weight: 800;
  line-height: 1;
  margin: 20px 0;
}

#sec2-2-txt p {
  color: #888;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.3;
}



.sec2-list {
  list-style: none;
  padding-left: 3px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin: 10px 0;
  text-align: start;
}

.sec2-list li {
  position: relative;
  padding-left: 1.25rem;
  font-size: .95rem;
  line-height: 1.4;
}

.sec2-list li::before {
  content: "•";
  position: absolute;
  left: 0;
  top: -4px;
  color: var(--red);
  font-size: 1.2rem;
  font-weight: bold;
}/*

.accordion-list summary {
  display: flex;
  justify-content: space-between;
  align-items: center;
  text-align: start;
  cursor: pointer;
  list-style: none;
  padding: 16px 10px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.1);
  font-weight: 600;
  transition: background 0.3s ease;
  position: relative;
}

.accordion-list summary::-webkit-details-marker {
  display: none;
}

.accordion-list summary::after {
  content: " +";
  transition: transform .3s ease;
}

.accordion-list details[open] summary {
  padding: 10px;
  background: var(--red);
  color: var(--white);
  transition: all .3s ease;
}

.accordion-list details[open] summary::after {
  content: " –";
}*/

/* Adstrategy */
#section-ads {
  text-align: center;
  padding: 30px 0;
}

/* footer */
.footer {
  background: url(/qlt_assets/img/footer-bg.svg);
  background-repeat: no-repeat;
  background-size: 100%;
  background-position: center bottom;
  padding: 120px 0 0 0;
}

#footer-img img {
  max-width: 300px;
  margin-top: -68px;
}

#footer-txt h3 {
  color: #FFF;
  font-size: 40px;
  margin-left: 60px;
  font-weight: 800;
  max-width: 75%;
}

.foot-cta {
  width: 300px;
  height: 60px;
  border-radius: 100px;
  background: var(--red);
  border: none;
  margin: 0 auto;
  color: #ffffff;
  font-size: 30px;
  font-weight: 700;
}

.foot-cta:hover {
  background: #ffffff;
  color: var(--red);
}

/* messages */
.message {
    padding: 65px 0;
}
.message h3 {
    color: var(--red);
    font-size: 30px;
    font-weight: 700;
    line-height: 1;
    max-width: 320px;
    margin: 0 auto 16px;
}
.message p {
    font-weight: 600;
    font-size: 20px;
    line-height: 1.2;
    max-width: 70%;
    margin: 0 auto;
    text-wrap: balance;
}

@media (max-width: 992px) {
  .cards {
    grid-template-columns: repeat(2, minmax(0, 320px));
  }
}

@media (max-width: 576px) {
  .cards {
    grid-template-columns: repeat(1, minmax(0, 320px));
  }
}

/** Media Queries **/
@media only screen and (max-width: 1590px) {
  .footer {
    background-size: 120%;
  }
}

@media only screen and (max-width: 1400px) {
    .header-info h3 {
        font-size: 45px;
    }
}

@media only screen and (max-width: 1200px) {
    .logo-text .highlight::after {
        width: 65%;
    }

  .ty,
  #form-group input,
  .form-button,
  .foot-cta {
    width: 100%;
  }

  .header-info img {
    width: 270px;
  }
  .header-info p {
      font-size: 17px;
  }

  .form-header h3 {
    font-size: 25px;
  }

  #sec2-2-txt h3 {
    font-size: 25px;
  }

  .icon-box {
    width: 195px;
  }

  #footer-img img {
    width: 250px;
  }

  #footer-txt h3 {
    font-size: 25px;
  }
}

@media only screen and (max-width: 1180px) {

  .header-info img {
    width: 380px;
  }

  .form-header h3 {
    font-size: 22px;
  }

  .icon-box {
    margin-bottom: 30px;
  }

  .icon-box p {
    width: 95%;
  }
}

@media only screen and (max-width: 1080px) {

  .form-button {
    font-size: 21px;
  }

  .form-header h3 span {
    font-size: 18px;
  }
}

@media only screen and (max-width: 991px) {
    .logo-text .highlight::after {
        width: 95%;
    }
  .logo-text {
    font-size: 25px;
  }

  .header-info {
    display: block;
  }

  .header-info h3 {
    font-size: 40px;
  }

  .header-info p {
    font-size: 19px;
  }

  .header-info img {
    width: 320px;
    margin-top: 10px;
  }
  .form-header span {
    max-width: 100%;
  }

  #sec1-txt,
  #sec2-2-txt {
    margin: 0;
  }

  .card .desc {
    max-width: 100%;
  }

  #footer-img img {
    margin: -70px 0 1px -40px;
    width: 208px;
  }

  #footer-txt h3 {
    font-size: 21px;
    max-width: 100%;
    line-height: 1.1;
    margin-left: 40px;
  }

  #preLastHR {
    margin-left: -450px;
    width: 350%;
  }
}

@media only screen and (max-width: 830px) {
  .footer {
    background-size: 160%;
  }
}

@media only screen and (max-width: 768px) {
    .logo-text .highlight::after {
        width: 100%;
    }
    #header-txt {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }
  .header {
    text-align: center;
    padding: 45px 0;
  }

  .header-info-wrapper {
    margin: 0 auto;
  }

  .header-info {
    margin: 28px auto 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }

  .header-info h3 {
    font-size: 45px;
  }

  .header-info p {
    margin-bottom: 30px;
    max-width: 75%;
  }

  .logo-text {
    margin: 0 auto;
    max-width: 100%;
  }
  .form-header span {
    max-width: 100%;
  }

  #sec2-2-txt h3,
  .sec3-txt h3 {
    font-size: 28px;
  }

  #section2-2 {
    text-align: center;
  }

  .section2 {
    background-size: 300%;
  }

  #section2-2 {
    margin-bottom: 100px;
  }

  #sec2-2-video {
    margin-top: 40px;
  }

  .icon-box {
    width: 200px;
  }

  .footer {
    text-align: center;
    background-size: cover;
    background-position: -470px bottom;
    padding: 50px 0;
  }

  #footer-img {
    display: none;
  }

  #footer-txt {
    margin: 40px 0 30px 0;
  }

  #footer-txt h3 {
    max-width: 75%;
    font-size: 35px;
    margin: 0 auto;
  }

  #footer-img img {
    max-width: 200px;
    margin: -100px auto 0 auto;
  }
}

@media only screen and (max-width: 550px) {
    .header-info h3 {
        font-size: 30px;
    }
}

@media only screen and (max-width: 520px) {
  .header-info h3 {
    width: 100%;
    font-size: 35px;
  }

  .footer {
    background-position: center bottom;
  }

  .foot-cta {
    width: 280px;
  }

  .header-info img {
    width: 100%;
  }
}
@media only screen and (max-width: 500px) {
    .highlight {
        position: relative;
    }
}

@media only screen and (max-width: 414px) {
  .header-info h3 {
    font-size: 30px;
  }

  .form-header h3 span {
    font-size: 15px;
  }

  .form-header h3 {
    font-size: 20px;
  }

  .form-check label {
    font-size: 10px;
    padding-left: 15px;
  }

  .form-button {
    font-size: 18px;
  }
}

@media only screen and (max-width: 375px) {
    .header-info p {
        max-width: 80%;
    }
    .header-info-wrapper {
        max-width: 90%;
    }
  #contactform {
    padding: 35px 20px;
  }

  .radio-button {
    font-size: 16px;
  }

  .header-info h3 {
    font-size: 29px;
  }

  .header-info p {
    font-size: 14px;
  }

  .logo-text {
    font-size: 19px;
    max-width: 80%;
  }

  .form-header h3 {
    font-size: 25px;
  }

  .form-header h3 span {
    font-size: 18px;
  }

  .form-check {
    text-align: left;
  }

  .form-check label {
    font-size: 12px;
    padding-left: 20px;
  }

  .form-button {
    font-size: 16px;
  }
}

@media only screen and (max-width: 325px) {

  .header-info h3 {
    font-size: 25px;
  }

  .form-header h3 {
    font-size: 22px;
  }

  .form-header h3 span {
    font-size: 16px;
  }

  .foot-cta {
    width: 100%;
  }

  .form-button {
    font-size: 14px;
    height: 50px;
  }

  #sec1-txt h3,
  #section2-1 h3,
  #sec2-2-txt h3,
  .sec3-txt h3 {
    font-size: 20px;
  }

  #footer-txt h3 {
    width: 100%;
    font-size: 30px;
  }
}

#section-ads {
  padding: 30px 0;
}