@import url('https://fonts.googleapis.com/css2?family=Raleway:ital,wght@0,100..900;1,100..900&display=swap');

:root {
  --white: #fff;
  --black: #000;
  --blue: #003187;
  --green: #25d366;
  --grey: #EBEEFA;
  --lightgrey: #F5F7FF;
  --gradient: linear-gradient(90deg, var(--blue) 0%, var(--green) 100%);
  --backgradient: linear-gradient(0deg, var(--green) 14%, rgba(255, 255, 255, 0.0) 10%);
}

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;
}
/* 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(--green);
}
.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(--blue);
}
.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);
}
/* header */
.header {
  background: var(--white);
  min-height: 525px;
  padding: 50px 0;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}
.step-menu {
  padding: 0;
  margin: 0;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  margin-bottom: 20px;
}
.step-menu p {
  margin: 0 5px 0 0;
  font-size: 13px;
  color: var(--black);
  font-weight: 400;
}
.step-menu img {
  height: 20px;
  margin: 0 5px 0 0;
}
.step-menu img:nth-child(2), .step-menu img:nth-child(4) {
  transform: rotate(-90deg);
  height: 15px;
}
.header-content {
  display: flex;
  align-items: center;
}
.header-txt {
  width: 55%;
  padding-right: 30px;
}
.header-txt ul {
  padding: 0;
  margin: 20px 0;
  list-style-type: none;
}
.header-txt ul li {
  background: url('/img/icons/check.svg') no-repeat left top;
  height: 30px;
  padding-left: 35px;
  margin: 10px 0 20px 0;
  font-size: 16px;
  font-weight: 400;
  color: var(--black);
  line-height: 1.1;
  display: flex;
  justify-content: flex-start;
  align-items: center;
}
.header-txt h6 {
  font-size: 20px;
  font-weight: 600;
  color: var(--black);
  margin: 0 0 15px 0;
}
.header-txt h1 {
  font-size: 32px;
  font-weight: 800;
  color: var(--blue);
}
.header-txt h1 span {
  background: var(--backgradient);
}
.header-img {
  width: 45%;
}
.header-img img {
  position: absolute;
  max-width: 430px;
  margin-left: -20px;
  bottom: 0;
}
/* form */
#contactform {
  width: 450px;
  min-height: 300px;
  padding: 40px 20px;
  margin: 0 0 0 auto;
  border-radius: 20px;
  box-shadow: 0px 0px 20px 5px #EBEEFA;
  background: var(--white);
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  text-align: center;
  position: relative;
  z-index: 99;
}
#contactform h3 {
  font-size: 28px;
  font-weight: 700;
  color: var(--blue);
}
#contactform h6 {
  font-size: 18px;
  color: var(--black);
  font-weight: 400;
  background: var(--backgradient);
  margin-bottom: 25px;
}
.form-step {
  display: none;
  width: 100%;
}
.form-step.active {
  display: block;
}
.form-step h2 {
  font-size: 18px;
  font-weight: 700;
  color: var(--blue);
  margin: 0 0 5px 0;
}
#step-8 h2 {
  max-width: 80%;
  margin: 0 auto 5px auto;
}
.form-step p {
  font-size: 14px;
  font-weight: 400;
  line-height: 1.2;
  margin: 0 auto 10px auto;
}
#step-6 p {
  max-width: 80%;
}
.opt-row {
  margin-top: 20px;
}
.radio-buton input[type="radio"] {
  position: absolute; 
  opacity: 0; 
  width: 0;
  height: 0;
}
.radio-buton label {
  background: var(--white);
  border: 1px solid var(--blue);
  border-radius: 3px;
  cursor: pointer;
  transition: background-color 0.3s, border-color 0.3s;
  width: 100%;
  height: 65px;
  display: flex;
  justify-content: center;
  align-items: center;
  color: var(--blue);
  font-size: 16px;
  font-weight: 500;
  line-height: 1.1;
  padding: 0 10px;
  transition: all 0.5s ease;
  margin: 5px auto;
}
.radio-buton label img {
  height: 15px;
  margin: -1px 10px 0 0;
}
.radio-buton label:hover {
  background: var(--grey);
}
.radio-buton input[type="radio"]:checked + label {
    background: var(--blue);
    color: var(--white);
}
.dropdown-toggle {
  width: 100%;
  height: 45px;
  margin: 0 auto;
  font-size: 16px;
  border-radius: 5px;
  border: 1px solid var(--blue);
  padding: 0 15px;
  color: var(--blue);
  -webkit-appearance: none;
  background: var(--white);
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.dropdown-toggle::after {
  border: none;
  background: url('/img/icons/down.svg');
  background-repeat: no-repeat;
  background-size: 20px;
  width: 20px;
  height: 20px;
}
.dropdown-toggle:hover {
  background: var(--blue);
  color: var(--white);
}
.dropdown-toggle:hover::after {
  filter: brightness(0) invert(1);
}
.dropdown-menu {
  width: 100%;
  height: 300px;
  padding: 0;
  overflow-y: scroll;
  cursor: pointer;
}
.dropdown-menu li {
  font-size: 16px;
  color: var(--blue);
  padding: 6px 15px;
}
.dropdown-menu li:hover {
  color: var(--white);
  background: var(--blue);
}
.form-slider {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}
.slider {
  width: 100% !important;
  margin: 10px 0 !important;
  height: auto !important;
}
input[type=range] {
  -webkit-appearance: none;
  width: 80%;
  margin: 10px 0;
  height: 8px;
  border-radius: 12px;
  background: linear-gradient(to right, var(--green) 0%,  var(--green) 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(--green) 0%,  var(--green) 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(--green) 0%,  var(--green) 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(--blue);
  cursor: pointer;
  margin: -6px 0 0 -1px;
}
input[type=range]::-ms-thumb {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--blue);
  cursor: pointer;
  margin: -6px 0 0 -1px;
}
.value-display {
  width: 100%;
  height: 45px;
  border-radius: 10px;
  border: 1px solid var(--blue);
  color: var(--blue);
  text-align: center;
  font-size: 25px;
  font-weight: 700;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 15px;
}
.value-display span:focus-visible {
  outline: none !important;
}
#final-step-title {
  max-width: 85%;
  margin: 0 auto;
}
.form-input {
  margin: 0 auto 10px auto;
}
.form-input input {
  width: 100%;
  height: 45px;
  border-radius: 5px;
  border: 1px solid var(--blue);
  padding: 0 0 0 15px;
  text-align: left !important;
  margin: 0 auto !important;
  font-size: 16px !important;
  color: var(--blue) !important;
}
::-webkit-input-placeholder {
  color: #72858f;
}
:-moz-placeholder {
  color: #72858f;
  opacity: 1;
}
::-moz-placeholder {
  color: #72858f;
  opacity: 1;
}
:-ms-input-placeholder {
  color: #72858f;
}
::-ms-input-placeholder {
  color: #72858f;
}
::placeholder {
  color: #72858f;
}
.form-input input:focus-visible, .form-input select:focus-visible {
  outline: none !important;
}
.form-check {
  text-align: left;
  padding: 0;
}
.form-check label {
  margin: 0 0 0 12px;
  position: relative;
  padding-left: 18px;
  cursor: pointer;
  line-height: 1;
  color: var(--blue);
  font-size: 11px;
  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(--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.1px;
  font-size: 12px;
}
#politica-link {
  color: var(--blue);
  text-decoration: none;
}
#politica-link:hover {
  color: var(--green);
  text-decoration: underline;
}
.form-btn {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 20px;
}
.form-button {
  background: var(--white);
  border: 1px solid var(--blue);
  border-radius: 3px;
  width: 70px;
  height: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.3s ease;
}
.form-button img {
  height: 20px;
}
.prev img {
  transform: rotate(180deg);
}
.prev:hover {
  background: var(--grey);
}
.next {
  background: var(--blue);
}
.next img {
  filter: brightness(0) invert(1);
}
.next:hover {
  background: var(--green);
  border: 1px solid var(--green);
}
.final-button {
  width: 220px;
  height: 45px;
  border-radius: 10px;
  background: var(--green); 
  border: none;
  font-size: 18px;
  font-weight: 700;
  color: var(--white);
  margin: 20px auto 0 auto;
  transition: all 0.3s ease-in;
}
.final-button:hover {
  transform: scale(1.05);
  color: var(--white);
  background: var(--gradient);
}
.error, #termos-error{
  text-align: center;
  font-size: 11px;
  font-weight: 400;
  color: red;
  margin: 5px auto -10px auto;
  width: 100%;
}
/* section 1 */
.section1 {
  background: var(--lightgrey);
  padding: 50px 0 70px 0;
  text-align: center;
}
.sec1-txt {
  margin-bottom: 50px;
}
.sec1-txt h3 {
  color: var(--blue);
  font-weight: 400;
  font-size: 32px;
}
.sec1-txt h3 span {
  font-weight: 700;
}
.sec1-txt p {
  font-size: 20px;
  line-height: 1.2;
  margin: 0 auto;
}
.partners-wrapper {
  position: relative;
  overflow: hidden;
}
.partners::before, .partners::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  width: 70px;
  z-index: 4;
}
.partners::before {
  left: 0;
  background: linear-gradient(to right, rgba(245, 247, 255,1), rgba(245, 247, 255,0));
}
.partners::after {
  right: 0;
  background: linear-gradient(to left, rgba(245, 247, 255,1), rgba(245, 247, 255,0));
}
.parnter-box {
  background: var(--white);
  border-radius: 10px;
  max-width: 90%;
  height: 90px;
  padding: 25px 15px;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  align-items: center;
}
.parnter-box img {
  width: 90%;
  margin: 0 auto;
}
/* section 2 */
.section2 {
  background: var(--white);
  padding: 60px 0 70px 0;
  text-align: center;
}
.sec2-txt {
  margin-bottom: 50px;
}
.sec2-txt h3 {
  color: var(--blue);
  font-weight: 700;
  font-size: 32px;
}
.sec2-txt h3 span {
  background: var(--backgradient);
}
.vants {
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 20px;
  transition: all 0.4s ease;
  padding: 20px 0px 20px 20px;
  cursor: pointer;
}
.vants:hover {
  transform: scale(1.02);
  box-shadow: 0px 0px 20px 5px rgba(27, 38, 117, 0.2);
}
.vants img {
  height: 50px;
}
.vant-txt {
  text-align: left;
  margin-left: 10px;
}
.vant-txt h6 {
  font-size: 16px;
  font-weight: 700;
  color: var(--blue);
  margin: 0;
}
.vant-txt p {
  font-size: 13px;
  line-height: 1.1;
  margin: 5px auto 0 0;
  max-width: 95%;
}
.sec2-btn {
  margin-top: 60px;
}
.sec2-btn button {
  width: 280px;
  height: 45px;
  border-radius: 10px;
  background: var(--green); 
  border: none;
  font-size: 18px;
  font-weight: 700;
  color: var(--white);
  margin: 0 10px;
  transition: all 0.3s ease-in;
}
.sec2-btn button:hover {
  transform: scale(1.05);
  color: var(--white);
  background: var(--gradient);
}
/* section 3 */
.section3 {
  text-align: center;
  padding: 60px 0 50px 0;
  background: var(--lightgrey);
}
.sec3-txt {
  margin-bottom: 50px;
}
.sec3-txt h3 {
  color: var(--blue);
  font-weight: 400;
  font-size: 32px;
}
.sec3-txt h3 span {
  font-weight: 700;
}
.sec3-txt p {
  font-size: 20px;
  margin: 0 auto;
  line-height: 1.2;
}
.accordion, .accordion-item, .accordion-button {
  border: none;
  border-radius: 0;
  background: transparent;
}
.accordion-button:not(.collapsed) {
  background: transparent;
  padding: 13px 20px !important;
  border-radius: 20px !important;
  box-shadow: 0px 0px 20px 5px rgba(27, 38, 117, 0.2) !important;
  font-size: 20px;
  font-weight: 700;
  color: var(--blue);
  line-height: 1.2;
}
.accordion-button:focus {
  box-shadow: none;
}
.accordion-button {
  font-size: 16px;
  font-weight: 700;
  color: var(--blue);
  transition: all 0.3s ease;
}
.accordion-button span {
  background: var(--green);
  min-width: 30px;
  min-height: 30px;
  width: 30px;
  height: 30px;
  border-radius: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-right: 20px;
}
.accordion-button span p {
  font-size: 19px;
  font-weight: 700;
  line-height: 1;
  color: var(--white);
  padding: 0;
  margin: -3px auto 0 auto;
}
.accordion-body {
  border-left: 1px solid var(--green);
}
.accordion-body p {
  text-align: left;
  color: var(--black);
  font-weight: 400;
  font-size: 14px;
  margin: 0;
  line-height: 1.2;
}
.accordion-img {
  position: relative;
  overflow: hidden;
}
.accordion-img-box::after {
  content: '';
  position: absolute;
  width: 100%;
  height: 40px;
  right: 0;
  left: 0;
  z-index: 4;
}
.accordion-img-box::after {
  bottom: 0;
  background: linear-gradient(180deg, rgba(255,255,255,0) 10%, rgba(245,247,255,1) 30%, rgba(245,247,255,1) 100%);;
}
.accordion-img img {
  width: 290px;
  margin: 0 auto;
  opacity: 0;
  transition: opacity 1.2s ease-in-out;
}
#simu1, #simu2, #simu3, #simu4, #simu5 {
  display: none;
}
#simu1.fade-in, #simu2.fade-in, #simu3.fade-in, #simu4.fade-in,  #simu5.fade-in {
  display: block;
  opacity: 1;
}
/* section4 */
.section4 {
  padding: 40px 0 60px 0;
}
.team-slider-wrapper {
  position: relative;
  overflow: hidden;
}
.team-slider::before, .team-slider::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  width: 70px;
  z-index: 4;
}
.team-slider::before {
  left: 0;
  background: linear-gradient(to right, rgba(255, 255, 255,1), rgba(255, 255, 255,0));
}
.team-slider::after {
  right: 0;
  background: linear-gradient(to left, rgba(255, 255, 255,1), rgba(255, 255, 255,0));
}
.team-slider .slick-track {
  padding-top: 80px;
}
.persona-outer {
  text-align: center;
}
.persona-box {
  background: var(--grey);
  width: 85%;
  height: 230px;
  margin: 0 auto;
  border-radius: 15px;
  position: relative;
}
.persona-box img {
  height: 280px;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
}
.sec4-txt h3 {
  font-size: 32px;
  font-weight: 700;
  color: var(--blue);
  margin-bottom: 30px;
}
.persona-title {
  text-align: center;
  margin-top: 15px;
}
.persona-title h6 {
  width: 150px;
  font-size: 20px;
  font-weight: 700;
  color: var(--blue);
  line-height: 1.1;
  margin: 0 auto;
  background: var(--backgradient);
}
.persona-title p {
  font-size: 14px;
  line-height: 1.1;
  font-weight: 400;
  margin: 5px auto 0 auto;
}
.sec4-txt span {
  background: var(--backgradient);
}
.sec4-txt p {
  font-size: 16px;
  line-height: 1.2;
  color: var(--black);
}
.sec4-txt button {
  width: 250px;
  height: 45px;
  border-radius: 10px;
  background: var(--green); 
  border: none;
  font-size: 18px;
  font-weight: 700;
  color: var(--white);
  margin: 30px 0 0 0;
  transition: all 0.3s ease-in;
}
.sec4-txt button:hover {
  transform: scale(1.05);
  color: var(--white);
  background: var(--gradient);
}
/* section5 */
.section5 {
  padding: 60px 0 70px 0;
  text-align: center;
  background: var(--lightgrey);
}
.sec5-txt {
  margin-bottom: 30px;
}
.sec5-txt h3 {
  font-size: 32px;
  font-weight: 400;
  color: var(--blue);
  margin-bottom: 30px;
}
.sec5-txt span {
  font-weight: 700;
}
.invest-box {
  width: 95%;
  background: var(--white);
  border-radius: 10px;
  box-shadow: 0px 0px 20px 5px rgba(27, 38, 117, 0.2);
  text-align: left;
  padding: 30px;
  cursor: pointer;
  transition: all 0.5s ease;
}
.invest-box:hover {
  transform: scale(1.05);
}
.invest-box img {
  height: 30px;
  margin-bottom: 20px;
}
.invest-box h4 {
  font-size: 20px;
  font-weight: 700;
  color: var(--blue);
}
.invest-box p {
  font-size: 16px;
  font-weight: 400;
  color: var(--black);
  line-height: 1.2;
}
.invest-box button {
  background: transparent;
  border: none;
  font-size: 18px;
  font-weight: 700;
  text-decoration: none;
  color: var(--green);
  padding-bottom: 5px;
  border-bottom: 2px solid var(--white);
  transition: all 0.7s ease-in;
}
.invest-box button:hover {
  color: var(--blue);
  border-bottom: 2px solid var(--blue);
}
/* section6 */
.section6 {
  padding: 70px 0 80px 0;
  text-align: center;
}
.sec6-txt {
  margin-bottom: 30px;
}
.sec6-txt h3 {
  font-size: 32px;
  font-weight: 700;
  color: var(--blue);
}
.sec6-txt span {
  background: var(--backgradient);
}
.sec6-txt p {
  font-size: 20px;
  line-height: 1.2;
  color: var(--black);
  margin: 0 auto;
}
.caption {
  width: 180px;
  padding: 5px;
  border-radius: 10px;
  margin: 20px auto;
  background: var(--grey);
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.caption p {
  margin: 0;
  font-size: 14px;
  cursor: pointer;
}
.caption p:nth-child(1) {
  margin-left: 8px;
}
.caption p:nth-child(2) {
  padding: 5px 10px;
  border-radius: 5px;
  background: var(--white);
}
.caption:has(p:nth-child(2):hover) ~ .list-compare .right-compare, .caption p:nth-child(2):hover {
  font-weight: 700;
  background: var(--green);
  color: var(--white);
  transform: scale(1.01);
  box-shadow: 0px 0px 20px 5px rgba(27, 38, 117, 0.2);
}
.caption:has(p:nth-child(2):hover) ~ .list-compare .left-compare {
  opacity: 0.3;
  transform: scale(0.95);
}
.caption:has(p:nth-child(1):hover) ~ .list-compare .left-compare, .caption p:nth-child(1):hover {
  font-weight: 700;
  transform: scale(1.01);
}
.caption:has(p:nth-child(1):hover) ~ .list-compare .right-compare {
  opacity: 0.3;
  transform: scale(0.95);
}
.list-compare {
  width: 90%;
  padding: 6px 8px;
  border-radius: 10px;
  margin: 15px auto;
  background: var(--grey);
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.3);
  transition: all 0.4s ease;
}
.left-compare, .right-compare {
  font-size: 14px;
  transition: all 0.4s ease;
}
.left-compare {
  width: 45%;
  text-align: center;
}
.right-compare {
  font-weight: 500;
  width: 54%;
  padding: 7px 5px;
  border-radius: 5px;
  background: var(--white);
}
.right-compare:hover {
  font-weight: 700;
  background: var(--green);
  color: var(--white);
  transform: scale(1.01);
  box-shadow: 0px 0px 20px 5px rgba(27, 38, 117, 0.2);
}
.list-compare:has(.right-compare:hover), .list-compare:has(.left-compare:hover) {
  transform: scale(1.05);
  box-shadow: 0px 0px 10px 0px rgba(27, 38, 117, 0.4);
}
.list-compare:has(.right-compare:hover) .left-compare {
  opacity: 0.3;
  transform: scale(0.95);
}
.left-compare:hover {
  font-weight: 700;
  transform: scale(1.01);
}
.list-compare:has(.left-compare:hover) .right-compare {
  opacity: 0.3;
  transform: scale(0.95);
}
/* section 7 */
.section7{
  padding: 40px 0;
  background: var(--lightgrey);
}
.sec7-txt h3 {
  font-size: 32px;
  font-weight: 400;
  color: var(--blue);
  max-width: 80%;
}
.sec7-txt span {
  font-weight: 700;
}
.sec7-txt p {
  font-size: 20px;
  line-height: 1.2;
  color: var(--black);
  max-width: 80%;
  margin: 0;
}
.sec7-txt img {
  margin: 15px 0;
  height: 30px;
}
.sec7-txt button {
  width: 280px;
  height: 45px;
  border-radius: 10px;
  background: var(--green); 
  border: none;
  font-size: 18px;
  font-weight: 700;
  color: var(--white);
  margin: 40px 0 0 0;
  transition: all 0.3s ease-in;
}
.sec7-txt button:hover {
  transform: scale(1.05);
  color: var(--white);
  background: var(--gradient);
}
.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);
}
/* footer */
.footer {
  background: var(--blue);
  padding: 50px 0;
}
.footer-txt {
  color: var(--white);
}
.footer-txt h3 {
  font-size: 35px;
  font-weight: 700;
  max-width: 80%;
  line-height: 1.2;
}
.footer-txt h3 span {
  background: var(--backgradient);
}
.footer-cta button {
  width: 250px;
  height: 45px;
  border-radius: 10px;
  background: var(--green); 
  border: none;
  font-size: 18px;
  font-weight: 700;
  color: var(--white);
  margin: 0 auto;
  transition: all 0.3s ease-in;
}
.footer-cta button:hover {
  transform: scale(1.05);
  color: var(--blue);
  background: var(--white);
}
/* Thank you page */
.message-section {
  padding: 80px 0 40px 0;
}
.message-section .row {
  padding: 40px 10px;
  border-radius: 20px;
  background: var(--white);
  box-shadow: 0px 0px 20px 5px #EBEEFA;
}
.graphic-img {
  text-align: center;
}
.graphic-img img {
  width: 180px;
}
.thank-message {
  display: flex;
  justify-content: center;
  align-items: center;
}
.message-txt-ty {
  width: 75%;
}
.message-txt-ty h3 {
  font-size: 30px;
  font-weight: 700;
  color: var(--blue);
}
.message-txt-ty p {
  color: var(--black);
  font-size: 20px;
  line-height: 1.2;
  max-width: 90%;
}
.call-cta {
  width: 25%;
}
.call-cta button {
  width: 185px;
  height: 45px;
  border-radius: 10px;
  background: var(--green); 
  border: none;
  font-size: 18px;
  font-weight: 700;
  color: var(--white);
  margin: 0 auto;
  transition: all 0.3s ease-in;
}
.call-cta button img {
  transition: all 0.3s ease-in;
  margin-right: 3px;
}
.call-cta button:hover {
  transform: scale(1.05);
  color: var(--white);
  background: var(--gradient);
}
.call-cta button:hover img {
  filter: brightness(0) invert(1);
}
.offerwall {
  padding: 50px 0;
}
.offerwall .row {
  background: var(--lightgrey);
  border-radius: 20px;
  overflow: hidden;
  padding-bottom: 20px;
}
.offerwall .row .col-12 {
  padding: 0;
}
.offer-title {
  padding: 30px;
  background: var(--grey);
  border-radius: 20px;
}
.offer-title-box {
  width: 95%;
  margin: 0 auto;
  display: flex;
  justify-content: flex-start;
  align-items: center;
}
.logo-title {
  width: 20%;
}
.interest, .payment {
  width: 20%;
}
.vant {
  width: 35%;
  padding-left: 20px;
}
.offer-cta {
  width: 15%;
}
.offers {
  width: 95%;
  margin: 0 auto;
  padding: 30px;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  border-bottom: 1px solid var(--blue);
}
.offerwall-box .offers:last-child {
  border-bottom: none;
}
.offer-title-box {
  font-weight: 700;
  font-size: 20px;
  color: var(--blue);
}
.logo-title img {
  width: 100px;
}
.offers .interest:nth-child(2) {
  font-size: 14px;
  color: var(--black);
  font-weight: 400;
  filter: blur(5px);
}
.offers .payment:nth-child(3) {
  font-size: 18px;
  color: var(--black);
  font-weight: 700;
  filter: blur(5px);
  line-height: 1.1;
  padding: 0 10px 0 0;
}
.offers .payment span {
  font-size: 12px;
}
.offers .vant:nth-child(4) {
  font-size: 16px;
  color: var(--black);
  font-weight: 700;
}
.offers .vant span {
  font-size: 400;
  font-size: 14px;
}
.offer-cta button {
  width: 100%;
  height: 45px;
  border-radius: 10px;
  background: var(--green); 
  border: none;
  font-size: 18px;
  font-weight: 700;
  color: var(--white);
  margin: 0 auto;
  transition: all 0.3s ease-in;
}
.offer-cta button:hover {
  transform: scale(1.05);
  color: var(--white);
  background: var(--gradient);
}
.mobile-title-offer {
  font-size: 20px;
  color: var(--blue);
  font-weight: 700;
}
.over {
  position: fixed;
  z-index: 1;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.1);
  justify-content: center;
  align-items: center;
}
.particular {
  position: relative;
  z-index: 99;
}
.particular .row {
  box-shadow: none;
}
/* Error */
.message-box {
  width: 450px;
  min-height: 300px;
  padding: 40px 20px;
  margin: 0 0 0 auto;
  border-radius: 20px;
  box-shadow: 0px 0px 20px 5px #EBEEFA;
  background: var(--white);
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  text-align: center;
  position: relative;
  z-index: 99;
}
.message-box h3 {
  font-size: 30px;
  font-weight: 700;
  color: var(--blue);
}
.message-box p {
  font-size: 16px;
  font-weight: 400;
  color: var(--black);
}
/* Adstrategy */
#section-ads {
  padding: 30px 0;
  text-align: center;
}
/* Media Queries */
@media only screen and (max-width: 1400px) {
  .nav-menu ul li {
    font-size: 11px;
  }
  .header-txt {
    width: 65%;
    padding-right: 10px;
  }
  .header-txt h1 {
    font-size: 30px;
  }
  .header-img img {
    max-width: 380px;
  }
  .header-txt ul {
    max-width: 90%;
  }
  .sec7-txt h3 {
    max-width: 100%;
  }
  .sec4-txt h3 {
    font-size: 30px;
  }
  .invest-box h4 {
    max-width: 90%;
  }
  .list-compare {
    width: 100%;
  }
  .left-compare, .right-compare {
    font-size: 13px;
  }
  .footer-txt h3 {
    max-width: 90%;
  }
  .persona-box {
    height: 210px;
  }
  .persona-box img {
    height: 250px;
  }
}
@media only screen and (max-width: 1200px) {
  .header-txt h1 {
    font-size: 28px;
  }
  .header-img {
    width: 25%;
  }
  .header-img img {
    max-width: 315px;
    margin-left: -70px;
  }
  .testimonial-box {
    width: 45%;
    padding: 15px;
  }
  .testimonial-box p {
    font-size: 12px;
  }
  .invest-box {
    padding: 20px;
  }
  .invest-box p {
    font-size: 14px;
  }
  .sec4-txt h3 {
    font-size: 26px;
  }
  .sec6-txt p {
    font-size: 18px;
  }
  .right-compare {
    padding: 7px 15px;
  }
  .sec1-txt h3, .sec2-txt h3, .sec3-txt h3, .sec5-txt h3, .sec6-txt h3 {
    font-size: 28px;
  }
  .sec7-txt p {
    max-width: 100%;
    font-size: 18px;
  }
  .vants {
    padding: 20px 0;
    flex-direction: column;
  }
  .vant-txt {
    text-align: center;
    margin-top: 20px;
  }
  .vant-txt h6 {
    max-width: 95%;
  }
  .vant-txt p {
    max-width: 100%;
    font-size: 12px;
  }
  .footer-txt h3 {
    max-width: 95%;
    font-size: 30px;
  }
  .message-txt-ty {
    width: 65%;
  }
  .persona-box {
    height: 190px;
  }
  .persona-box img {
    height: 220px;
  }
}
@media only screen and (max-width: 1080px) {
  #contactform, .message-box {
    width: 100%;
  }
  .form-step h2 {
    font-size: 16px;
  }
  #contactform h3 {
    font-size: 24px;
  }
  .nav-menu ul li img {
    display: none;
  }
  .nav-menu ul li:last-child img {
    display: flex;
  }
}
@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;
  }
  .header-img {
    display: none;
  }
  .header-txt {
    width: 100%;
    padding-right: 0;
  }
  #contactform, .message-box {
    width: 400px;
  }
  .sec2-btn {
    width: 100%;
  }
  .accordion-button:not(.collapsed) {
    font-size: 18px;
  }
  .accordion-img img {
    width: 250px;
  }
  .invest-box {
    margin: 15px 0;
  }
  .right-compare {
    padding: 7px;
  }
  .testimonial-box {
    width: 90%;
    margin: 10px auto;
    padding: 20px;
  }
  .review-outer {
    margin: 0 auto;
    flex-direction: column;
  }
  .large-testimonial, .small-testimonial {
    height: auto;
  }
  .sec7-txt h3 {
    font-size: 28px;
  }
  .footer-txt h3 {
    font-size: 27px;
    max-width: 100%;
  }
  .thank-message {
    flex-direction: column;
    justify-content: flex-start;
  }
  .message-txt-ty, .call-cta{
    width: 80%;
  }
  .offer-title-box {
    font-size: 16px;
  }
  .offers .payment span {
    font-size: 8px;
  }
  .logo-title img {
    width: 80px;
  }
  .offer-cta button {
    width: 110px;
  }
  .offers .vant:nth-child(4) {
    font-size: 14px;
  }
  .persona-box img {
    height: 270px;
    left: unset;
    right: unset;
  }
}
@media only screen and (max-width: 768px) {
  .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;
  }
  .step-menu {
    justify-content: center;
  }
  .header-txt h1 {
    font-size: 30px;
    margin-bottom: 30px;
  }
  .header-txt ul {
    margin: 20px auto;
    max-width: 80%;
  }
  .header-txt ul li {
    text-align: left;
  }
  #contactform, .message-box {
    width: 100%;
    margin: 20px auto 0 auto;
  }
  .sec1-txt h3 {
    max-width: 80%;
    margin: 0 auto 20px auto;
  }
  .sec2-txt h3 {
    max-width: 80%;
    margin: 0 auto;
  }
  .sec2-txt {
    margin-bottom: 30px;
  }
  .vants {
    justify-content: flex-start;
    margin: 20px auto;
    max-width: 80%;
  }
  .vant-txt h6 {
    max-width: 100%;
    font-size: 20px;
  }
  .vant-txt p {
    font-size: 15px;
    margin: 0 auto;
    max-width: 85%;
  }
  .sec2-btn {
    margin-top: 20px;
  }
  .sec2-btn button {
    margin: 10px auto;
  }
  .sec3-txt h3 {
    max-width: 85%;
    margin: 0 auto 20px auto;
  }
  .sec3-txt p {
    font-size: 18px;
  }
  .accordion-img img {
    width: 80%;
    margin: 20px auto 0 auto;
  }
  .section4 .row {
    flex-direction: column-reverse;
  }
  .sec4-txt {
    text-align: center;
    margin-bottom: 60px;
  }
  .sec4-img img {
    max-width: 100%;
  }
  .left-compare, .right-compare {
    line-height: 1.2;
    padding: 7px 30px;
    font-size: 14px;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  .right-compare {
    min-height: 48px;
  }
  .section7 .row {
    flex-direction: column-reverse;
  }
  .sec7-txt {
    text-align: center;
    margin-bottom: 30px;
  }
  .sec7-txt h3 {
    margin: 0 auto;
    max-width: 80%;
  }
  .footer {
    text-align: center;
  }
  .footer-cta {
    margin-top: 30px;
  }
  .footer-txt h3 {
    font-size: 30px;
  }
  .offers {
    flex-wrap: wrap;
    justify-content: center;
  }
  .logo-title, .interest, .payment {
    width: 33%;
    margin: 0 auto 40px auto;
  }
  .vant, .offer-cta{
    width: 50%;
  }
  .vant {
    padding-left: 0;
  }
  .offer-cta {
    text-align: center;
  }
  .offer-cta button {
    width: 80%;
  }
  .logo-title img {
    width: 80%;
  }
  .thank-message {
    margin-top: 30px;
    text-align: center;
  }
  .message-txt-ty, .call-cta {
    width: 100%;
  }
  .message-txt-ty p {
    max-width: 100%;
    margin-bottom: 30px;
  }
  .call-cta button {
    width: 200px;
  }
  .offer-title {
    text-align: center;
  }
  .testimonial-box p {
    font-size: 14px;
  }
  .persona-box img {
    height: 240px;
    left: 0;
    right: 0;
  }
  .invest-box {
    margin: 15px auto;
  }
}
@media only screen and (max-width: 575px) {
  .nav-logo img {
    height: 60px;
  }
  .header-txt h1 {
    font-size: 28px;
    margin-top: 40px;
  } 
  .vants {
    max-width: 100%;
  }
  .sec3-txt p {
    max-width: 80%;
    margin: 0 auto;
  }
  .left-compare, .right-compare {
    padding: 7px 10px;
  }
  .footer-txt h3 {
    font-size: 26px;
  }
  .persona-box img {
    height: 220px;
  }
}
@media only screen and (max-width: 500px) {
  .header-txt h1 {
    font-size: 25px;
  } 
  #final-step-title {
    max-width: 100%;
  }
}
@media only screen and (max-width: 475px) {
  .sec7-txt h3 {
    max-width: 100%;
  }
  .footer-txt h5 {
    font-size: 23px;
  }
  .vants {
    flex-direction: column;
  }
  .vant-txt {
    margin-top: 15px;
    text-align: center;
  }
  .vant-txt p {
    max-width: 80%;
    margin: 10px auto 0 auto;
  }
  .footer-txt h3 {
    font-size: 25px;
  }
  #contactform h6 {
    font-size: 16px;
  }
  .sec1-txt h3, .sec2-txt h3, .sec3-txt h3, .sec5-txt h3, .sec6-txt h3 {
    font-size: 24px;
  }
}
@media only screen and (max-width: 445px) {
  .sec1-txt p {
    font-size: 18px;
  }
  .sec4-txt h3 {
    font-size: 24px;
  }
  .sec4-txt p {
    font-size: 15px;
  }
  #contactform h3 {
    font-size: 22px;
  }
  .form-step h2 {
    font-size: 18px;
    max-width: 80%;
    margin: 0 auto 15px auto;
  }
  .form-step p {
    font-size: 13px;
    max-width: 85%;
    line-height: 1.2;
    margin: 0 auto;
  }
  .left-compare, .right-compare {
    font-size: 12px;
  }
  .offers {
    text-align: center;
  }
  .logo-title, .interest, .payment, .vant, .offer-cta{
    width: 80%;
  }
  .logo-title img {
    width: 150px;
  }
  .offer-cta {
    margin-top: 30px;
  }
  .persona-box img {
    height: 190px;
  }
}
@media only screen and (max-width: 415px) {
  .nav-logo img {
    height: 50px;
  }
  .header-txt ul li {
    font-size: 13px;
  }
  #contactform h6 {
    font-size: 14px;
  }
  .form-step h2 {
    max-width: 100%;
  }
  .sec1-txt h3 {
    max-width: 100%;
  }
  .sec6-txt p {
    font-size: 15px;
  }
  .footer-txt h3 {
    font-size: 23px;
  }
  .sec7-txt img{
    width: 90%;
    margin: 20px auto;
    height: auto;
  }
  .sec4-txt p {
    font-size: 14px;
  }
  .sec4-txt h3 {
    font-size: 22px;
  }
  .sec5-txt h3 {
    margin-bottom: 0;
  }
  #contactform h3 {
    font-size: 20px;
  }
  .vant-txt p {
    max-width: 90%;
  }
  .sec1-txt p {
    font-size: 16px;
  }
  .sec1-txt h3, .sec2-txt h3, .sec3-txt h3, .sec5-txt h3, .sec6-txt h3, .sec7-txt h3 {
    font-size: 22px;
  }
  .message-txt-ty h3 {
    font-size: 25px;
  }
  .message-txt-ty p {
    font-size: 14px;
  }
  .persona-box {
    width: 80%;
  }
  .persona-box img {
    height: 250px;
  }
}
@media only screen and (max-width: 375px) {
  .header-txt h1 {
    font-size: 23px;
  }
  .radio-buton label {
    font-size: 15px;
  }
  #contactform h3 {
    font-size: 18px;
  }
  #contactform h6 {
    font-size: 13px;
  }
  .sec3-txt p {
    max-width: 90%;
  }
  .footer-txt h3 {
    font-size: 20px;
  }
}
@media only screen and (max-width: 365px) {
  .step-menu {
    display: none;
  }
  .header-txt h6 {
    font-size: 17px;
  }
  .list-compare {
    flex-direction: column;
  }
  .left-compare, .right-compare {
    width: 100%;
    padding: 10px 15px;
  }
  .caption p:nth-child(2) {
    font-weight: 600;
  }
  .right-compare {
    font-size: 14px;
    font-weight: 600;
  }
}
@media only screen and (max-width: 345px) {
  #contactform h3 {
    font-size: 16px;
  }
  #contactform h6 {
    font-size: 11px;
  }
  #contactform {
    padding: 30px 15px;
  }
  .opt-row .col-6 {
    width: 90%;
  }
  .dropdown-toggle {
    font-size: 15px;
  }
  .accordion-button:not(.collapsed) {
    font-size: 16px;
  }
  .accordion-body p {
    font-size: 13px;
  }
  .sec3-txt h3 {
    max-width: 100%;
  }
  .sec3-txt p {
    font-size: 16px;
  }
  .header-txt ul {
    max-width: 90%;
  }
  .google-img img {
    width: 90%;
    height: auto;
  }
  .message-txt-ty h3 {
    font-size: 22px;
  }
  .mobile-title-offer {
    font-size: 16px;
  }
}
@media only screen and (max-width: 320px) {
  .header-txt h1 {
    font-size: 22px;
  }
}