@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=Quattrocento:wght@700&display=swap');

/* colors */
:root {
  --white: #fff;
  --black: #000;
  --blue: #235FB7;
  --lightblue: #628CCA;
  --ctalightblue: #C6DDFE;
  --extralightblue: rgba(35, 95, 183, 0.1);
  --green: #28A745;
  --red: #f44336;
  --box-shadow: 0 4px 8.5px 6px rgba(35, 95, 183, 0.2);
}

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;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-smooth: never;
}
a:hover {
  color: #000000;
}
/* general */
.cta {
  min-width: 160px;
  height: 45px;
  border: none;
  border-radius: 16px;
  padding: 0 30px;
  background: var(--blue);
  color: var(--white);
  font-size: 17px;
  font-weight: 600;
  text-transform: uppercase;
  transition: all 0.4s ease;
}
.cta:hover {
  transform: scale(1.1);
  color: var(--blue);
  background: var(--ctalightblue);
}
/* navbar */
.nav {
  padding: 30px 0;
}
.nav .row {
  width: 100%;
}
.nav-logo {
  text-align: left;
}
.nav-logo img {
  filter: brightness(0) invert(1);
  height: 50px;
}
.nav-menu {
  text-align: right;
}
.nav-menu ul {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  padding: 0;
  margin: 0;
  list-style: none;
  gap: 0 40px;
}
.nav-menu ul li {
  font-size: 18px;
  font-weight: 400;
  line-height: 1.1;
  color: var(--white);
  transition: all 0.4s ease;
  cursor: pointer;
  z-index: 1;
  position: relative;
}
.nav-menu ul li::before {
  content: '';
  position: absolute;
  width: 100%;
  height: 3px;
  bottom: 0;
  left: 0;
  background: var(--white);
  visibility: hidden;
  border-radius: 0px;
  transform: scaleX(0);
  transition: all 0.4s ease;
  z-index: -1;
}
.nav-menu ul li:hover::before  {
  visibility: visible;
  transform: scaleX(1);
}
.nav-menu ul li:last-of-type::before {
  display: none;
}
.nav-menu ul li button {
  width: 180px;
  height: 40px;
  border: none;
  border-radius: 50px;
  background: var(--green);
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  transition: all 0.4s ease;
}
.nav-menu ul li button p {
  margin: 0 0 0 10px;
  font-size: 16px;
  font-weight: 600;
  color: var(--white);
}
.nav-menu ul li button:hover {
  transform: scale(1.1);
}
/* header */
.header {
  background: url('/assets/img/pattern.png'), var(--blue);
  overflow: hidden;
  position: relative;
}
.header::after {
  content: '';
  background: url('/assets/img/subtract.svg');
  background-position: top center;
  background-size: cover;
  background-repeat: no-repeat;
  width: 100%;
  height: 220px;
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: 22;
}
.header-txt {
  color: var(--white);
  margin-top: 100px;
}
.header-txt h1 {
  font-size: 85px;
  font-weight: 700;
  line-height: 1;
  margin: 0;
}
.header-txt h4 {
  font-size: 24px;
  font-weight: 500;
  margin: 20px 0 0 0;
  max-width: 55%;
}
.header-img {
  height: 600px;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: flex-end;
}
.header-img::before {
  content: '';
  background: radial-gradient(circle,rgba(255, 255, 255, 1) 70%, rgba(255, 255, 255, 0) 100%);
  border-radius: 50%;
  width: 670px;
  height: 670px;
  filter: blur(30px);
  opacity: 0.25;
  position: absolute;
  top: 70%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.header-img img {
  height: 570px;
  position: relative;
  z-index: 10;
}
/* section1 */
.section1 {
  text-align: center;
  padding: 40px 0;
  background: linear-gradient(0deg,rgba(255, 255, 255, 0) 0%, rgba(233, 239, 248, 1) 40%);
}
/* form */
#preform {
  margin-top: -150px;
  position: relative;
  z-index: 99;
  padding: 40px 30px;
  border-radius: 16px;
  background: var(--white);
  box-shadow: var(--box-shadow);
  align-content: center;
  position: relative;
}
#preform h3 {
  font-size: 30px;
  line-height: 1.1;
  font-weight: 700;
  color: var(--blue);
}
#preform h5 {
  font-size: 23px;
  line-height: 1.1;
  font-weight: 400;
  color: var(--black);
  margin: 10px 0 20px 0;
}
/* sliders */
.form-slider {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  margin-top: 20px;
}
.value-display {
  font-size: 40px;
  font-weight: 700;
}
.slider {
  width: 100%;
  max-width: 700px;
  margin: 10px 0 !important;
  height: auto !important;
}
input[type=range] {
  -webkit-appearance: none;
  width: 100%;
  margin: 10px 0;
  height: 25px;
  -webkit-appearance: none;
  background: transparent;
}
input[type="range"]::-webkit-slider-runnable-track {
  height: 25px;
  border-radius: 12px;
  background: linear-gradient(to right, var(--blue) 0%, var(--blue) var(--slider-value, 0%), var(--lightblue) var(--slider-value, 0%), var(--lightblue) 100%);
}
input[type="range"]::-moz-range-track {
  height: 25px;
  border-radius: 12px;
  background: linear-gradient(to right, var(--blue) 0%, var(--blue) var(--slider-value, 0%), var(--lightblue) var(--slider-value, 0%), var(--lightblue) 100%);
}
input[type="range"]::-ms-track {
  height: 25px;
  border-radius: 12px;
  background: transparent;
  border: none;
  color: transparent;
}
input[type="range"]::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  border: 4px solid var(--white);
  background: var(--blue);
  cursor: pointer;
  margin-top: -0.5px;
}
input[type="range"]::-moz-range-thumb {
  width: 25px;
  height: 25px;
  background: var(--blue);
  border: none;
  cursor: pointer;
  margin-top: -6px;
}
input[type="range"]::-ms-thumb {
  width: 25px;
  height: 25px;
  background: var(--blue);
  border: none;
  cursor: pointer;
  margin-top: -6px;
}
.slider-values {
  width: 100%;
  max-width: 700px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 20px;
}
.slider-values p {
  margin: 0;
  font-size: 12px;
  font-weight: 300;
  color: var(--black);
  line-height: 1;
}
.time-box {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  margin: 0;
  position: absolute;
  right: 40px;
  bottom: 30px;
}
.time-box h6 {
  font-size: 12px;
  font-weight: 400;
  max-width: 100%;
  line-height: 1.1;
  margin: 0;
  color: var(--black);
}
.time-box svg {
  scale: 0.55;
  animation: upDown 4s ease-in-out infinite;
}
.loader-circle, .loader-pointer, .loader-line {
  fill: none;
  stroke-width: 1.4px;
  stroke: var(--black);
}
.loader-center {
  fill: var(--black);
}
.loader-pointer {
  -webkit-transform-origin: bottom center;
  -moz-transform-origin: bottom center;
  -ms-transform-origin: bottom center;
  transform-origin: bottom center;
  animation: spin 10s linear infinite;
  -moz-animation: spin 10s linear infinite;
  -webkit-animation: spin 10s linear infinite;
}
.loader-line {
  -webkit-transform-origin: bottom center;
  -moz-transform-origin: bottom center;
  -ms-transform-origin: bottom center;
  transform-origin: bottom center;
  animation: spin 60s linear infinite;
  -moz-animation: spin 60s linear infinite;
  -webkit-animation: spin 60s linear infinite;
}
@-moz-keyframes spin {
  from { -moz-transform: rotate(0deg);-moz-transform-origin: 50% 50%; }
  to { -moz-transform: rotate(360deg);-moz-transform-origin: 50% 50%; }
}
@-webkit-keyframes spin {
  from { -webkit-transform: rotate(0deg);-webkit-transform-origin: 50% 50%; }
  to { -webkit-transform: rotate(360deg);-webkit-transform-origin: 50% 50%; }
}
@keyframes spin {
  from {transform:rotate(0deg);transform-origin: 50% 50%;}
  to {transform:rotate(360deg);transform-origin: 50% 50%;}
}
#preform button {
  margin: 20px auto 0 auto;
}
/* partners */
.partner-wrapper {
  margin-top: 80px;
}
.partner-outer {
  align-content: center;
  min-height: 150px;
}
.partner-outer img {
  width: 200px;
  margin: 0 auto;
  transition: all 0.4s ease;
}
.partner-outer img:hover {
  transform: scale(1.15);
}
.section1 button {
  margin: 50px auto 0 auto;
}
/* section2 */
.section2 {
  padding: 70px 0 90px 0;
}
.sec2-txt h3 {
  width: 270px;
  font-size: 36px;
  font-weight: 700;
  color: var(--black);
  line-height: 1;
  margin-bottom: 30px;
}
.sec2-txt h3 span {
  color: var(--blue);
}
.arrows {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 0 20px;
}
.arrows img {
  height: 30px;
  cursor: pointer;
  transition: all 0.4s ease;
}
.next {
  transform: rotate(180deg);
}
.prev:hover {
  transform: scale(1.1);
}
.next:hover {
  transform: scale(1.1) rotate(180deg);
}
.review-slider .slick-track {
  padding: 30px 0;
}
.review {
  margin: 0 0 0 15%;
  width: 360px;
  height: 340px;
  border-radius: 16px;
  padding: 20px;
  background: var(--white);
  box-shadow: var(--box-shadow);
  text-align: center;
  color: var(--black);
}
.persona {
  width: 118px;
  aspect-ratio: 1;
  border-radius: 50%;
  background: var(--blue);
  overflow: hidden;
  margin: -50px auto 60px auto;
}
.persona img {
  width: 100%;
}
.review-text div {
  font-size: 96px;
  font-weight: 700;
  font-family: "Quattrocento", serif;
  color: var(--blue);
  line-height: 0.1;
  margin-bottom: -10px;
}
.review-text h5 {
  font-size: 20px;
  font-weight: 700;
  line-height: 1;
}
.review-text h6 {
  font-size: 18px;
  font-weight: 400;
  line-height: 1;
}
.review-text p {
  font-size: 14px;
  font-weight: 400;
  line-height: 1.2;
  text-wrap: balance;
  margin-top: 15px;
}
.sec2-cta {
  text-align: center;
  margin-top: 50px;
}
/* section3 */
.section3 {
  padding: 10px 0 70px 0;
  text-align: center;
  background: linear-gradient(180deg,rgba(255, 255, 255, 0) 0%, rgba(233, 239, 248, 1) 40%);
}
.sec3-title {
  margin-bottom: 50px;
}
.sec3-title h3 {
  font-size: 36px;
  font-weight: 700;
  color: var(--blue);
  line-height: 1;
  margin: 0;
}
.personas-slider .slick-track {
  padding: 20px 0;
}
.personas {
  width: 95%;
  height: 240px;
  background: var(--blue);
  border-radius: 16px;
  align-content: flex-end;
  overflow: hidden;
  transition: all 0.4s ease;
}
.personas:hover {
  transform: scale(1.05);
  box-shadow: 0 0 8.5px 6px rgba(35, 95, 183, 0.2);;
}
.personas-row:hover .personas:not(:hover) {
  transform: scale(0.95);
  opacity: 0.7;
}
.personas img {
  width: 100%;
}
.sec3-cta {
  text-align: center;
  margin-top: 50px;
}
/* footer */
.footer {
  background: url('/assets/img/pattern.png'), var(--blue);
  overflow: hidden;
  padding: 60px 0;
}
.footer-txt h3 {
  font-size: 36px;
  font-weight: 700;
  color: var(--white);
  line-height: 1.1;
  margin: 0;
}
.footer-cta {
  text-align: right;
}
.footer-cta button {
  background: var(--white);
  color: var(--blue);
  font-size: 20px;
  padding: 0 30px;
  font-weight: 700;
}
/* Media Queries */
@media (max-width: 1400px) {
  .header-txt h1 {
    font-size: 75px;
  }
  .header-txt h4 {
    max-width: 65%;
  }
  .nav-menu ul {
    gap: 0 25px;
  }
  .nav-menu ul li {
    font-size: 16px;
  }
  #preform h3 {
    max-width: 80%;
    margin: 0 auto;
  }
  .footer-cta button {
    font-size: 17.5px;
  }
  .footer-txt h3 {
    text-wrap: balance;
  }
}
@media (max-width: 1200px) {
  .header-txt h1 {
    font-size: 65px;
  }
  .header-txt h4 {
    max-width: 75%;
  }
  .nav-menu ul {
    gap: 0 15px;
  }
  .partner-outer img {
    width: 160px;
  }
  .review {
    width: 92%;
    margin: 0 auto;
  }
  .review-text p {
    font-size: 13px;
  }
  .footer-cta button {
    font-size: 18px;
    min-width: 250px;
  }
}
@media (max-width: 991px) {
  .nav {
    justify-content: center;
  }
  .nav-menu ul li {
    display: none;
  }
  .nav-menu ul li:last-of-type {
    display: flex;
  }
  .header-txt {
    margin-top: 40px;
  }
  .header-txt h1 {
    font-size: 55px;
  }
  .header-txt h4 {
    font-size: 20px;
  }
  .header-img img {
    height: 450px;
    margin-left: -50px;
  }
  .sec3-title h3 {
    text-wrap: balance;
  }
  .footer-txt h3 {
    font-size: 28px;
  } 
}
@media (max-width: 768px) {
  .nav {
    padding: 30px 15px;
  }
  .header {
    text-align: center;
  }
  .header-txt {
    margin-top: 20px;
  }
  .header-txt h4 {
    text-wrap: balance;
    max-width: 100%;
  }
  .header-img {
    height: 500px;
  }
  .header-img img {
    margin-left: 0;
  }
  #preform h3 {
    max-width: 100%;
    font-size: 26px;
  }
  #preform h5 {
    font-size: 18px;
  }
  .time-box {
    right: 20px;
    bottom: 10px;
  }
  .section2 {
    text-align: center;
  }
  .sec2-txt h3 {
    width: 100%;
    text-wrap: balance;
  }
  .arrows {
    justify-content: center;
    margin-bottom: 40px;
  }
  .footer, .footer-cta {
    text-align: center;
  }
  .footer-cta {
    margin-top: 30px;
  }
}
@media (max-width: 500px) {
  .header-txt h1 {
    font-size: 50px;
  }
  .personas {
    height: auto;
  }
}
@media (max-width: 475px) {
  .header-txt h1 {
    font-size: 45px;
  }
  #preform h3 {
    font-size: 24px;
  }
  #preform h5 {
    font-size: 16px;
  }
  #preform {
    padding: 50px 30px;
  }
  .sec3-title h3, .sec2-txt h3 {
    font-size: 30px;
  }
}
@media (max-width: 435px) {
  .header-img img {
    height: auto;
    width: 100%;
  }
  .header-img::before {
    opacity: 0.15;
  }
  .header-txt h1 {
    font-size: 40px;
  }
  .header-txt h4 {
    font-size: 18px;
  }
}
@media (max-width: 390px) {
  .nav-menu {
    display: none;
  }
  .nav-logo {
    text-align: center;
  }
  .nav-logo img {
    height: 45px;
  }
  .header-txt {
    margin: 0;
  }
  .header-img {
    height: 430px;
  }
  #preform {
    padding: 30px 20px 60px 20px;
  }
  #preform h3 {
    font-size: 22px;
  }
  #preform h5 {
    font-size: 14px;
    text-wrap: balance;
  }
  .slider-values {
    margin-top: 10px;
  }
  .cta {
    font-size: 14px;
  }
  .partner-outer {
    min-height: 90px;
  }
  .partner-outer img {
    width: 120px;
  }
  .section1 button {
    margin: 40px auto 0 auto;
  }
  .sec3-title h3, .sec2-txt h3 {
    font-size: 28px;
  }
  .footer-txt h3 {
    font-size: 24px;
  }
}
@media (max-width: 375px) {
  .header-txt h1 {
    font-size: 36px;
  }
}
@media (max-width: 335px) {
  .header-txt h1 {
    font-size: 32px;
  }
  .header-txt h4 {
    font-size: 16px;
  }
  .header-img {
    height: auto;
    margin-top: 20px;
  }
  #preform h3 {
    font-size: 19px;
  }
  .section1 button {
    font-size: 12px;
  }
}