@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

:root {
  --red: #FE646F;
  --green: #389274;
  --white: #fff;
  --black: #000;
  --lightblue: #F6F7FF;
  --blue:  #1E2E4B;
  --yellow: #F6B306;
}

html, body{
  margin: 0;
  padding: 0 !important;
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 16px;
  line-height: 1.1;
  color: var(--blue);
  overflow-x: hidden !important;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-smooth: never;
}

a:hover {
  color: #000000;
}
/* general */
.redirect {
  min-width: 300px;
  height: 60px;
  padding: 0 20px;
  border: none;
  border-radius: 50px;
  color: var(--blue);
  background: var(--yellow);
  font-size: 25px;
  font-weight: 700;
  transition: all 0.4s ease;
}
.redirect:hover {
  background: var(--blue);
  color: var(--white);
  transform: scale(1.05);
}
@keyframes shake {
  0% { transform: translate(1px, 1px) rotate(0deg); }
  10% { transform: translate(-1px, -2px) rotate(-1deg); }
  20% { transform: translate(-3px, 0px) rotate(1deg); }
  30% { transform: translate(3px, 2px) rotate(0deg); }
  40% { transform: translate(1px, -1px) rotate(1deg); }
  50% { transform: translate(-1px, 2px) rotate(-1deg); }
  60% { transform: translate(-3px, 1px) rotate(0deg); }
  70% { transform: translate(3px, 1px) rotate(-1deg); }
  80% { transform: translate(-1px, -1px) rotate(1deg); }
  90% { transform: translate(1px, 2px) rotate(0deg); }
  100% { transform: translate(1px, -2px) rotate(-1deg); }
}
/* header */
.header {
  padding: 50px 0;
  text-align: center;
  position: relative;
  min-height: 790px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}
.blob1 {
  width: 750px;
  position: absolute;
  top: 50%;
  left: -10%;
  transform: translateY(-50%);
}
.blob2 {
  width: 680px;
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
}
.header .container {
  position: relative;
  z-index: 11;
}
.logo {
  margin-bottom: 50px;
}
.logo img {
  height: 79px;
  image-rendering: crisp-edges;
}
.header-content {
  text-wrap: balance;
}
.header-content img {
  animation: shake 2.5s infinite;
  height: 120px;
}
.header-content h1 {
  font-size: 45px;
  font-weight: 700;
  line-height: 1.1;
  margin: 40px 0;
}
.header-content h1 span {
  color: var(--yellow);
}
.header-content p {
  font-size: 28px;
  font-weight: 400;
  line-height: 1.1;
}
.header-content .redirect {
  margin-top: 40px;
}
/* sections 1 */
.section1 {
  background: var(--blue);
  padding: 80px 0;
  border-radius: 60px;
  text-align: center;
}
.section1 h3 {
  color: var(--white);
  text-align: center;
  font-size: 40px;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 50px;
}
.section1 h3 span {
  color: var(--yellow);
}
.vant {
  max-width: 90%;
  min-height: 285px;
  margin: 0 auto;
  background: var(--lightblue);
  border-radius: 20px;
  text-align: center;
  color: var(--blue);
  text-wrap: balance;
  padding: 30px 20px;
}
.vant span {
  width: 60px;
  height: 60px;
  aspect-ratio: 1;
  border-radius: 50px;
  background: var(--yellow);
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 auto 20px auto;
}
.vant span img {
  width: 35px;
}
.vant h6 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 10px;
}
.vant p {
  font-size: 15px;
  font-weight: 400;
}
.slider-ctrl {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0 20px;
  margin-top: 50px;
  cursor: pointer;
}
.slider-arrow {
  width: 45px;
  height: 45px;
  aspect-ratio: 1;
  border-radius: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
  background: rgba(255, 255, 255, 0.85);
  transition: all 0.6s ease;
}
.slider-arrow img {
  height: 25px;
}
.next-slider img {
  margin-left: 5px;
}
.prev-slider img {
  transform: rotate(180deg);
  margin-right: 5px;
}
.slider-arrow:hover {
  transform: scale(1.1);
  background: var(--white);
}
.custom-dots ul {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0 15px;
  list-style: none;
  margin: 0;
  padding: 0;
  background: rgba(255, 255, 255, 0.85);
  padding: 0 20px;
  min-width: 180px;
  height: 45px;
  border-radius: 50px;
  transition: all 0.6s ease;
}
.custom-dots ul:hover {
  background: var(--white);
}
.custom-dots ul li button {
  display: none;
}
.custom-dots ul li {
  width: 16px;
  height: 16px;
  aspect-ratio: 1;
  border-radius: 20px;
  background: rgba(0, 0, 0, 0.4);
  transition: all 0.6s ease;
}
.custom-dots .slick-active {
  width: 35px;
  background: var(--blue);
}
.section1 button {
  margin-top: 50px;
}
/* sections 2 */
.section2 {
  padding: 80px 0;
}
.section2 h3 {
  text-align: left;
  font-size: 30px;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 50px;
}
.section2 h3 span {
  color: var(--yellow);
}
/* section 3 */
.section3 {
  padding: 60px 0;
  background: var(--lightgrey);
}
.sec3-txt h3 {
  font-size: 40px;
  font-weight: 700;
  line-height: 1.1;
}
.sec3-txt h3 span {
  color: var(--yellow);
}
.social {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 0 20px;
  margin: 40px 0 50px 0;
}
.social img {
  height: 70px;
}
.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(255,255,255,1) 37%, rgba(255,255,255,1) 100%);
}
.review-slider::after {
  bottom: 0;
  background: linear-gradient(180deg, rgba(255,255,255,0) 8%, rgba(255,255,255,1) 37%, rgba(255,255,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);
  border: 2px solid #CFD0DB;
  width: 44%;
  margin: 0 auto;
  padding: 30px 25px;
  border-radius: 20px;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  flex-direction: column;
}
.small-testimonial {
  height: 175px;
}
.large-testimonial {
  height: 210px;
}
.testimonial-box p {
  font-size: 13px;
  font-weight: 400;
  line-height: 1.2;
  margin: 0 auto;
}
.persona {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  margin: 20px 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 {
  padding: 50px 0;
}
.footer h3 {
  font-size: 34px;
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 40px;
}
.footer h3 span {
  color: var(--yellow);
}
.footer img {
  width: 100%;
}
/* error */
.message-box {
  margin-top: 30px;
}
.message-box h3 {
  font-size: 55px;
  font-weight: 700;
  line-height: 1.1;
}
.message-box h3 span {
  color: var(--yellow);
}
.message-box p {
  font-size: 30px;
  font-weight: 400;
  line-height: 1.1;
  margin-top: 20px;
}
/* Adstrategy */
#section-ads {
  text-align: center;
  padding: 30px 0;
}
/* Media Queries */
@media only screen and (max-width: 1400px) {
  .sec3-txt h3, .footer h3 {
    font-size: 32px;
  }
  .footer img {
    width: 100%;
  }
  .social img {
    height: 55px;
  }
  .testimonial-box p {
    font-size: 12px;
  }
  .vant h6 {
    font-size: 18px;
  }
  .vant p {
    font-size: 14px;
  }
}
@media only screen and (max-width: 1200px) {
  .header-content h1 {
    font-size: 40px;
  }
  .header-content p {
    font-size: 28px;
  }
  .blob1 {
    width: 650px;
    left: -20%;
  }
  .blob2 {
    width: 550px;
    right: -10%;
  }
  .section1 h3 {
    font-size: 32px;
  }
  .testimonial-box {
    padding: 20px;
  }
  .testimonial-box p {
    font-size: 11px;
  }
  .persona img {
    width: 25px;
  }
  .persona h6 {
    font-size: 11px;
  }
  h3 {
    text-wrap: balance;
  }
  .social {
    gap: 0 10px;
  }
  .social img {
    height: 50px;
  }
  .vant {
    padding: 20px;
    min-height: 240px;
  }
  .vant h6 {
    font-size: 17px;
  }
  .vant p {
    font-size: 13px;
  }
  .vant span {
    width: 50px;
    height: 50px;
    margin: 0 auto 10px auto;
  }
  .vant span img {
    width: 25px;
  }
}
@media only screen and (max-width: 991px) {
  .header {
    min-height: 650px;
  }
  .header-content h1 {
    font-size: 40px;
  }
  .header-content p {
    font-size: 20px;
  }
  .blob1 {
    width: 550px;
  }
  .blob2 {
    width: 450px;
  }
  .section1 .container, .section3 .container {
    max-width: 90%;
  }
  .testimonial-box {
    width: 90%;
    margin: 10px auto;
    padding: 20px;
  }
  .review-outer {
    margin: 0 auto;
    flex-direction: column;
  }
  .large-testimonial, .small-testimonial {
    height: auto;
  }
  .persona-box img {
    height: 270px;
    left: unset;
    right: unset;
  }
  .sec3-txt {
    text-align: center;
  }
  .social {
    justify-content: space-between;
  }
  .social img {
    height: auto;
    width: 31%;
  }
  .redirect {
    font-size: 20px;
  }
  .footer img {
    width: 450px;
  }
  .vant span {
    margin: 0 auto 15px auto;
  }
  .vant h6 {
    font-size: 18px;
  }
  .vant p {
    font-size: 14px;
  }
}
@media only screen and (max-width: 880px) {
  .footer img {
    width: 110%;
  }
  .vant p {
    font-size: 12px;
  }
}
@media only screen and (max-width: 768px) {
  .logo img {
    height: 66px;
  }
  .header-content img {
    height: 90px;
  }
  .blob1 {
    width: 530px;
    left: -40%;
  }
  .blob2 {
    width: 400px;
    right: -20%;
  }
  .section2, .section2 h3 {
    text-align: center;
  }
  .section2 img {
    width: 300px;
    margin-top: 30px;
  }
  .section3 {
    padding: 0 0 60px 0;
  }
  .section3 .row {
    flex-direction: column-reverse;
  }
  .sec3-txt {
    margin-bottom: 30px;
  }
  .testimonial-box {
    width: 400px;
  }
  .footer {
    padding: 0 0 50px 0;
    text-align: center;
  }
  .footer img {
    margin-top: 40px;
    width: 90%;
  }
  .vant h6 {
    font-size: 18px;
  }
  .vant p {
    font-size: 15px;
  }
  .header-content h1 {
    font-size: 32px;
  }
}
@media only screen and (max-width: 655px) {
  .blob1 {
    width: 450px;
    left: -45%;
  }
  .blob2 {
    width: 350px;
    right: -30%;
  }
  .vant h6 {
    font-size: 16px;
  }
  .vant p {
    font-size: 13px;
  }
}
@media only screen and (max-width: 550px) {
  .testimonial-box {
    width: 90%;
  }
  .message-box h3 {
    font-size: 35px;
  }
  .message-box p {
    font-size: 18px;
  }
  .vant h6 {
    font-size: 20px;
  }
  .vant p {
    font-size: 16px;
  }
  .vant {
    max-width: 80%;
  }
}
@media only screen and (max-width: 475px) {
  .header {
    min-height: auto;
  }
  .header-content h1 {
    font-size: 30px;
  }
  .header-content p {
    font-size: 17px;
  }
  .header-content img {
    display: none;
  }
  .blob1 {
    width: 350px;
    left: -45%;
  }
  .blob2 {
    width: 350px;
    right: -40%;
  }
  .logo {
    margin-bottom: 0px;
  }
  .section1 h3, .section2 h3, .sec3-txt h3, .footer h3 {
    font-size: 26px;
  }
}
@media only screen and (max-width: 414px) {
  .section1 h3, .section2 h3, .sec3-txt h3, .footer h3 {
    font-size: 22px;
  }
  .social {
    gap: 0 10px;
    margin: 20px auto 30px auto;
  }
  .social img {
    width: 32%;
  }
  .vant h6 {
    font-size: 18px;
  }
  .vant p {
    font-size: 14px;
  }
  .vant {
    max-width: 90%;
  }
  .slider-ctrl {
    transform: scale(0.8);
  }
}
@media only screen and (max-width: 375px) {
  .header-content h1 {
    font-size: 28px;
  }
  .redirect {
    min-width: auto;
    width: 100%;
    font-size: 18px;
  }
  .section2 img {
    width: 80%;
  }
  .blob1 {
    left: -65%;
  }
  .blob2 {
    right: -60%;
  }
  .vant h6 {
    font-size: 16px;
  }
  .vant p {
    font-size: 13px;
  }
}
@media only screen and (max-width: 325px) {
  .header-content h1 {
    font-size: 24px;
  }
  .header-content p {
    font-size: 14px;
  }
  .section1 h3, .section2 h3, .sec3-txt h3, .footer h3 {
    font-size: 20px;
  }
  .blob1 {
    width: 300px;
  }
  .blob2 {
    width: 200px;
    right: -20%;
  }
  .slider-ctrl {
    margin: 15px auto 0 auto;
    transform: scale(0.75);
  }
}