@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Fredoka:wght@300..700&family=Roboto:ital,wght@0,100..900;1,100..900&display=swap");
/**
 * A reusable mixin for creating custom-styled scrollbars in WebKit browsers.
 * It accepts parameters to customize the appearance.
 */
body {
  color: #212224;
  font-family: "Roboto", sans-serif;
  box-sizing: border-box;
  background-image: linear-gradient(90deg, rgb(21, 0, 63) 43%, rgb(129, 23, 81) 69%, rgb(129, 23, 81) 100%), url(../assets/img/bg-white.svg);
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Fredoka", sans-serif;
}

p {
  font-size: 16px;
  line-height: 140%;
}

.container {
  max-width: 1420px;
  margin: 0 auto;
  padding: 0 55px;
  box-sizing: border-box;
  position: relative;
}
@media (max-width: 1920px) {
  .container {
    max-width: 1420px;
    padding: 0 55px;
  }
}
@media (max-width: 1420px) {
  .container {
    max-width: 1152px;
    padding: 0 20px;
  }
}
@media (max-width: 767px) {
  .container {
    padding: 0 16px;
  }
}

.page-wrapper {
  overflow: hidden;
  margin: 124px auto 0 auto;
  box-shadow: 0 0 4px 0 rgba(0, 0, 0, 0.04), 0 8px 16px 0 rgba(0, 0, 0, 0.08);
}
@media (max-width: 767px) {
  .page-wrapper {
    margin-top: 100px;
  }
}

@media (min-width: 1921px) {
  #app,
  #isi-drawer,
  .progress-bar {
    max-width: 1420px;
    margin: 0 auto;
  }
  body {
    background-color: #dfdfdf;
  }
  .page-wrapper {
    background-color: #fff;
  }
}
p + ul {
  margin-top: 12px;
}

ul {
  list-style-type: disc;
  margin-left: 33px;
}
ul li::marker {
  color: #15013F;
}
ul li {
  margin-bottom: 10px;
}

main img,
main svg {
  max-width: 100%;
  height: auto;
}

section {
  margin-bottom: 48px;
}

main a,
.isi-layout a {
  color: #15013F;
  text-decoration: underline;
}

::-moz-selection {
  background-color: color-mix(in srgb, #00d1ff, #000 20%);
  color: #000;
}

::selection {
  background-color: color-mix(in srgb, #00d1ff, #000 20%);
  color: #000;
}

/* Firefox-specific syntax */
::-moz-selection {
  background-color: color-mix(in srgb, #00d1ff, #000 20%);
  color: #000;
}

@media (min-width: 1200px) and (max-height: 750px) {
  body,
  html {
    zoom: 0.88;
  }
}
.header {
  color: #fff;
  padding: 16px 0;
  display: flex;
  justify-content: space-between;
}
.header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.header nav a {
  color: #fff;
  margin-left: 16px;
  text-decoration: none;
}
.header nav a:hover {
  text-decoration: underline;
}

.section {
  padding: 60px 0;
  box-sizing: border-box;
  margin: 0 auto;
  background-color: #fff;
}
@media (max-width: 767px) {
  .section {
    padding: 30px 0;
  }
}

/* Row */
.row {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  box-sizing: border-box;
}

/* Column */
.col {
  box-sizing: border-box;
}
@media screen and (max-width: 767px) {
  .col {
    margin-bottom: 50px;
  }
  .col:last-child {
    margin-bottom: 0;
  }
}

.col-full {
  flex: 0 0 100%;
  box-sizing: border-box;
}

/* ===== 2 COLUMN ===== */
.two-col .col {
  flex: 0 0 calc(50% - 7.5px);
  box-sizing: border-box;
}

/* ===== 4 COLUMN ===== */
.four-col .col {
  flex: 0 0 calc(25% - 11.25px);
}

/* ===== RESPONSIVE ===== */
/* Tablet */
@media (max-width: 1024px) {
  .four-col .col {
    flex: 0 0 calc(50% - 7.5px);
  }
}
/* Mobile */
@media (max-width: 767px) {
  .two-col .col,
  .four-col .col {
    flex: 0 0 100%;
  }
}
.data-table {
  width: 100%;
  border-collapse: collapse;
}
.data-table th,
.data-table td {
  padding: 12px;
  border: 1px solid #ddd;
  text-align: left;
}
.data-table th {
  background: #15013F;
  color: #fff;
}
.data-table tr:nth-child(even) {
  background: #fafafa;
}

h1 {
  color: orange;
}

.media-row {
  display: flex;
  align-items: center;
  gap: 32px;
  margin-bottom: 48px;
}
.media-row.reverse {
  flex-direction: row-reverse;
}

.media-image {
  flex: 1;
}
.media-image img {
  width: 100%;
  height: auto;
  border-radius: 6px;
  display: block;
}

.media-content {
  flex: 1;
}
.media-content h3 {
  margin-bottom: 12px;
}
.media-content ul {
  padding-left: 18px;
}
.media-content ul li {
  margin-bottom: 8px;
}

/* Responsive */
@media (max-width: 768px) {
  .media-row,
  .media-row.reverse {
    flex-direction: column;
    text-align: center;
  }
  .media-content ul {
    text-align: left;
  }
}
.owl-dots {
  display: flex;
  justify-content: center;
  gap: 29px;
  margin-top: 60px;
}
.owl-dots .owl-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #fff;
  cursor: pointer;
}
.owl-dots .owl-dot.active {
  position: relative;
  background-color: #AE1478;
}
.owl-dots .owl-dot.active span {
  background-color: #AE1478;
}
.owl-dots .owl-dot.active::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 30px;
  height: 30px;
  border-radius: 50%;
  border: 1px solid #fff;
}
.owl-dots button.owl-dot {
  background-color: #fff !important;
}

.icon-box {
  position: absolute;
  bottom: -5px;
  overflow: hidden;
  z-index: -1;
}
.icon-box.icon-left {
  left: 20px;
}
.icon-box.icon-right {
  right: 20px;
}
.icon-box.icon-right-2 {
  right: 20px;
}

@media (max-width: 767px) {
  .m-hide {
    display: none;
  }
}

html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}

/* HTML5 display-role reset for older browsers */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
}

body {
  line-height: 1;
}

ol,
ul {
  list-style: none;
}

blockquote,
q {
  quotes: none;
}

blockquote:before, blockquote:after {
  content: "";
  content: none;
}

q:before, q:after {
  content: "";
  content: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

body {
  font-family: "Roboto", sans-serif;
}

h1 {
  font-size: 48px;
  line-height: 140%;
  font-weight: 700;
  color: #000;
}

h2 {
  font-size: 42px;
  line-height: 50px;
  font-weight: 600;
}

h3 {
  font-size: 36px;
  line-height: 140%;
  font-weight: 600;
}

h4 {
  font-size: 17px;
  margin-bottom: 12px;
  font-weight: 500;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Fredoka", sans-serif;
  color: #15013F;
}

p,
ul,
h4 {
  font-size: 16px;
  line-height: 140%;
}

.eyebrow {
  font-size: 16px;
  line-height: 140%;
  font-weight: 700;
  text-transform: uppercase;
}

p,
.eyebrow,
h2,
h3,
h4 {
  margin-bottom: 12px;
}

small {
  font-size: 12px;
  line-height: normal;
}

strong,
b {
  font-weight: 700;
}

i,
em {
  font-style: italic;
}

sup {
  position: relative;
  font-size: 70%;
  line-height: 0;
  vertical-align: baseline;
  top: -0.3em;
}

@media (max-width: 767px) {
  h1 {
    font-size: 34px;
  }
  h2 {
    font-size: 30px;
  }
  h3 {
    font-size: 28px;
  }
  p,
  ul,
  h4 {
    font-size: 16px;
  }
  .eyebrow {
    font-size: 14px;
  }
}
.top-banner {
  padding-top: 30px;
}

.hero--home {
  position: relative;
  background-position: top center, top center;
  background-repeat: no-repeat, no-repeat;
  background-size: cover, contain;
  padding-top: 30px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
  padding-top: 30px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}
.hero--home::after {
  position: absolute;
  content: "";
  top: 140px;
  left: 90%;
  right: 0;
  bottom: 0;
  z-index: -1;
  background-image: url("../assets/img/banner-icon.png");
  background-position: 10% 10%;
  background-repeat: no-repeat, no-repeat;
  background-size: auto;
  z-index: 9;
}
@media screen and (max-width: 767px) {
  .hero--home::after {
    display: none;
  }
}
.hero--home::before {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  right: 90%;
  bottom: 0;
  z-index: -1;
  background-image: url("../assets/img/banner-icon.png");
  background-position: 90% 90%;
  background-repeat: no-repeat, no-repeat;
  background-size: auto;
  z-index: 9;
}
@media screen and (max-width: 767px) {
  .hero--home::before {
    display: none;
  }
}
.hero--home .hero-overlay {
  background-image: url(../assets/img/bg-white.svg);
  background-position: 100% 113%;
  background-repeat: no-repeat;
  background-size: 100%;
}
@media screen and (max-width: 767px) {
  .hero--home .hero-overlay {
    background-position: 100%;
  }
}
.hero--home .banner-content-wrapper {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  padding: 60px 0px 40px;
  color: #fff;
}
@media screen and (max-width: 767px) {
  .hero--home .banner-content-wrapper .col {
    margin: 0;
  }
}
@media (max-width: 1024px) {
  .hero--home .banner-content-wrapper .two-col .col {
    flex: 0 0 100%;
  }
}
@media screen and (max-width: 1024px) {
  .hero--home .banner-content-wrapper {
    padding: 100px 0px 40px;
  }
}
.hero--home .banner-content-wrapper .banner-content {
  color: #fff;
}
.hero--home .banner-content-wrapper .banner-content h2 {
  font-size: 45px;
  line-height: 50px;
  margin-bottom: 24px;
  font-family: "Fredoka", sans-serif;
  color: #fff;
  font-weight: 600;
}
@media (max-width: 767px) {
  .hero--home .banner-content-wrapper .banner-content h2 {
    font-size: 32px;
    line-height: 38px;
  }
}
.hero--home .banner-content-wrapper .banner-content ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.hero--home .banner-content-wrapper .banner-content ul li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 16px;
  line-height: 24px;
  margin-bottom: 16px;
}
.hero--home .banner-content-wrapper .banner-content ul li img {
  width: 20px;
  height: auto;
}
.hero--home .banner-content-wrapper .banner-image {
  display: flex;
  height: 100%;
}
.hero--home .banner-content-wrapper .banner-image .banner-image-inner {
  display: flex;
  height: auto;
  align-items: self-end;
}
.hero--home .banner-content-wrapper .banner-image .banner-image-inner img {
  width: 100%;
  height: auto;
  max-width: 100%;
  margin: 0px 0 0 0;
  left: 60%;
  margin-bottom: -120px;
}

.header-buttons {
  gap: 15px;
  display: flex;
}
.header-buttons .quote-btn {
  color: #fff;
  padding: 14px 18px;
  text-decoration: none;
  transition: background-color 0.2s ease;
  border: 1px solid #fff;
}
.header-buttons .quote-btn:hover {
  background-color: rgb(12.6328125, 0.6015625, 37.8984375);
}
@media screen and (max-width: 415px) {
  .header-buttons .quote-btn {
    padding: 6px 10px;
    font-size: 14px;
  }
}
.header-buttons .helpline-btn {
  padding: 14px 18px 14px 38px;
  border: 1px solid #fff;
  text-decoration: none;
  transition: background-color 0.2s ease, color 0.2s ease;
  background-color: #15013F;
}
.header-buttons .helpline-btn span {
  position: relative;
  width: 50px;
  display: inline-block;
}
.header-buttons .helpline-btn span img {
  position: absolute;
  bottom: -18px;
  width: 53px;
  left: -17px;
}
@media screen and (max-width: 415px) {
  .header-buttons .helpline-btn span img {
    width: 40px;
    left: 3px;
    bottom: -11px;
  }
}
.header-buttons .helpline-btn:hover {
  background-color: #fff;
  color: #15013F;
}
@media screen and (max-width: 415px) {
  .header-buttons .helpline-btn {
    padding: 6px 10px;
    font-size: 14px;
  }
}

.footer {
  position: relative;
  background: #15013F;
  background-position: top 0;
  background-repeat: no-repeat, no-repeat;
  background-size: cover;
}
.footer::after {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: -1;
  background-image: url("../assets/img/bg-5-a.svg");
  background-position: 95% 95%;
  background-repeat: no-repeat, no-repeat;
  background-size: 70px;
}
@media screen and (max-width: 1420px) {
  .footer::after {
    background-image: url("../assets/img/bg-5-a.svg");
  }
}
.footer {
  color: #fff;
  position: relative;
  overflow: hidden;
  z-index: -1;
}
@media screen and (max-width: 767px) {
  .footer {
    text-align: center;
  }
}
.footer__top-image {
  position: relative;
}
.footer__top-image img {
  max-width: 400px;
  -o-object-fit: contain;
     object-fit: contain;
  margin-bottom: -24px;
}
.footer__main {
  padding: 40px 0 20px;
}
.footer__grid {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
}
.footer {
  /* Desktop - 4 columns */
}
.footer__grid > * {
  flex: 0 0 calc(19% - 30px);
}
.footer {
  /* Tablet - 2 columns */
}
@media (max-width: 991px) {
  .footer__grid > * {
    flex: 0 0 calc(30% - 20px);
  }
}
.footer {
  /* Mobile - 1 column */
}
@media (max-width: 576px) {
  .footer__grid {
    gap: 30px;
  }
  .footer__grid > * {
    flex: 0 0 100%;
  }
}
.footer__logo {
  max-width: 180px;
}
.footer__title {
  font-size: 24px;
  font-weight: 500;
  margin-bottom: 20px;
  color: #AE1478;
}
.footer__text {
  font-size: 16px;
  line-height: 1.6;
  opacity: 0.85;
}
.footer__list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.footer__list li {
  margin-bottom: 12px;
}
.footer__list li a {
  color: #fff;
  text-decoration: none;
  font-size: 14px;
  transition: all 0.3s ease;
}
.footer__list li a:before {
  content: "+";
  margin-right: 8px;
  color: #AE1478;
}
.footer__list li a:hover {
  color: #AE1478;
}
.footer__contact {
  font-size: 14px;
}
@media (max-width: 767px) {
  .footer__contact {
    flex-direction: column;
    gap: 12px;
  }
}
.footer__divider {
  height: 1px;
  background: rgba(174, 20, 120, 0.5);
  width: 100%;
}
.footer__bottom {
  font-size: 14px;
}
@media (max-width: 767px) {
  .footer__bottom {
    flex-direction: column;
    gap: 20px;
    text-align: center;
  }
}
.footer__social {
  display: flex;
  align-items: center;
  gap: 12px;
}
.footer__social a {
  width: 36px;
  height: 36px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  text-decoration: none;
  font-size: 12px;
  transition: 0.3s;
}
.footer__social a:hover {
  background: #AE1478;
  border-color: #AE1478;
}

.btn {
  padding: 10px 20px;
  color: #fff;
  border-radius: 20px 10px 20px 10px;
  font-size: 16px;
  font-family: "Fredoka", sans-serif;
}
@media screen and (max-width: 415px) {
  .btn {
    padding: 8px 16px;
    font-size: 14px;
    border-radius: 16px 6px 16px 6px;
  }
}

.btn:hover {
  background-color: rgb(12.6328125, 0.6015625, 37.8984375);
}

.card {
  border: 1px solid #ddd;
  padding: 20px;
  background-color: #fff;
  border-radius: 30px;
}
@media screen and (max-width: 1420px) {
  .card {
    padding: 10px;
  }
}

/* ================= NAVBAR ================= */
.navbar {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  z-index: 99;
}

/* ================= HEADER TOP ================= */
.header-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 0;
}
@media (max-width: 767px) {
  .header-top {
    padding: 0;
    flex-direction: column;
    margin: 0 auto 0;
  }
}

/* ================= NAV CONTAINER ================= */
.nav-container {
  display: flex;
  justify-content: flex-end;
  margin-top: 6px;
}
@media (max-width: 767px) {
  .nav-container {
    align-items: center;
    justify-content: center;
    margin: 0 auto;
  }
}

/* ================= LOGO ================= */
.nav-logo img {
  width: 145px;
  display: block;
  position: absolute;
  top: 20px;
  left: 16px;
}
@media (max-width: 1024px) {
  .nav-logo img {
    top: 0px;
  }
}
@media (max-width: 767px) {
  .nav-logo img {
    position: relative;
    top: -39px;
  }
}

/* ================= NAV MENU (COMMON) ================= */
.nav-menu {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 30px;
  list-style: none;
  padding: 15px 0;
  margin: 0;
}
.nav-menu li a {
  text-decoration: none;
  font-size: 16px;
  font-weight: 500;
  color: #fff;
  white-space: nowrap;
  transition: 0.3s;
}
@media screen and (max-width: 1024px) {
  .nav-menu li a {
    font-size: 14px;
  }
}
.nav-menu li a:hover {
  color: #AE1478;
}

/* ================= NAV TOGGLE ================= */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
}
.nav-toggle span {
  width: 26px;
  height: 3px;
  background: #fff;
  transition: all 0.3s ease;
}

/* ================= MOBILE ================= */
@media (max-width: 992px) {
  .nav-toggle {
    display: flex;
    justify-content: flex-end;
  }
  .nav-container {
    position: absolute;
    top: 24px;
    left: 0;
    width: 100%;
    background: #fff;
    overflow: hidden;
    max-height: 0;
    transition: max-height 0.4s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  }
  .nav-container.active {
    max-height: 500px;
  }
  .nav-menu {
    flex-direction: column;
    align-items: flex-start;
    padding: 20px;
    gap: 18px;
    width: 100%;
    border: 11px solid #AE1478;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  }
  .nav-menu li {
    width: 100%;
    border-bottom: 1px dashed #15013F;
  }
  .nav-menu li a {
    color: #15013F;
  }
}
/* ================= HAMBURGER ANIMATION ================= */
.nav-toggle.open span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}
.nav-toggle.open span:nth-child(2) {
  opacity: 0;
}
.nav-toggle.open span:nth-child(3) {
  transform: rotate(-45deg) translate(6px, -6px);
}

.why-choose-us {
  text-align: center;
  margin-bottom: 40px;
  position: relative;
  padding-top: 150px;
}
.why-choose-us::after {
  position: absolute;
  content: "";
  top: 140px;
  left: 90%;
  right: 0;
  bottom: 0;
  z-index: -1;
  background-image: url("../assets/img/icon-why-us-bg-2.svg");
  background-position: 10% 10%;
  background-repeat: no-repeat, no-repeat;
  background-size: auto;
  z-index: 9;
}
@media screen and (max-width: 767px) {
  .why-choose-us::after {
    display: none;
  }
}
.why-choose-us::before {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  right: 90%;
  bottom: 0;
  z-index: -1;
  background-image: url("../assets/img/icon-why-us-bg-1.svg");
  background-position: 90% 90%;
  background-repeat: no-repeat, no-repeat;
  background-size: auto;
  z-index: 9;
}
@media screen and (max-width: 767px) {
  .why-choose-us::before {
    display: none;
  }
}
@media (max-width: 767px) {
  .why-choose-us .col {
    margin-bottom: 0;
  }
}
.why-choose-us h2 {
  font-size: 45px;
  margin-bottom: 16px;
  color: #15013F;
  font-weight: 600;
}
@media (max-width: 767px) {
  .why-choose-us h2 {
    font-size: 32px;
    line-height: normal;
  }
}
.why-choose-us .why-choose-us-image {
  position: relative;
  height: 227px;
}
.why-choose-us .why-choose-us-image img {
  position: absolute;
  top: 20px;
  left: 50%;
  transform: translateX(-50%);
  width: auto;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  border-radius: 23px 23px 0 0;
  z-index: 99;
}
@media (max-width: 767px) {
  .why-choose-us .why-choose-us-image img {
    position: absolute;
    bottom: -12px;
    left: 50%;
    transform: translateX(-50%);
    width: auto;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
    border-radius: 23px 23px 0 0;
    max-width: 100%;
  }
}
.why-choose-us .card {
  background-color: #F4F2F8;
  border-radius: 23px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  margin-bottom: 24px;
  padding: 0;
  border: none;
}
.why-choose-us .card p {
  color: #212224;
  font-size: 16px;
  line-height: 140%;
}
.why-choose-us .card .bottom-section {
  background-color: #fff;
  padding: 23px 27px;
  align-items: center;
  justify-content: center;
  flex-direction: row;
  margin-top: 34px;
  border-radius: 23px;
}
.why-choose-us .card img {
  width: 100%;
  height: auto;
  margin: 40px auto 16px;
  max-width: 79px;
}
.why-choose-us .card a {
  color: #fff;
  background: linear-gradient(90deg, rgb(21, 35, 84) 0%, rgb(138, 57, 113) 100%);
  font-weight: 500;
  text-decoration: none;
  transition: color 0.2s ease;
  display: flex;
  margin-top: 26px;
  width: 100%;
  flex: 0 0 100%;
  justify-content: center;
  box-sizing: border-box;
  cursor: pointer;
}
.why-choose-us .card a:hover {
  background: linear-gradient(90deg, rgb(21, 35, 84) 110%, rgb(138, 57, 113) 0%);
}
.why-choose-us .quote-btn-wrapper {
  border: 1px solid #ddd;
}

.online-quote {
  text-align: center;
  background: linear-gradient(121deg, rgb(21, 0, 63) 43%, rgb(129, 23, 81) 69%, rgb(129, 23, 81) 100%);
}
.online-quote .four-col .col {
  margin-bottom: 50px;
}
.online-quote h3 {
  margin-bottom: 16px;
}
.online-quote p {
  max-width: 820px;
  margin: 0 auto;
}
.online-quote .card {
  padding-top: 80px;
  position: relative;
  min-height: 180px;
}
.online-quote .card h4 {
  min-height: 41px;
  margin-bottom: 27px;
  font-size: 17px;
}
.online-quote .card img {
  position: absolute;
  top: -40px;
  left: 50%;
  transform: translateX(-50%);
  width: auto;
  height: 98px;
}

.covered-uncovered {
  background: linear-gradient(121deg, rgb(13, 23, 48) 43%, rgb(11, 26, 82) 69%, rgb(11, 26, 82) 100%);
  color: #fff;
  position: relative;
}
.covered-uncovered::after {
  position: absolute;
  content: "";
  top: 140px;
  left: 90%;
  right: 0;
  bottom: 0;
  z-index: -1;
  background-image: url("../assets/img/banner-icon.png");
  background-position: 10% 10%;
  background-repeat: no-repeat, no-repeat;
  background-size: auto;
  z-index: 9;
}
@media screen and (max-width: 767px) {
  .covered-uncovered::after {
    display: none;
  }
}
.covered-uncovered .section-header {
  text-align: center;
  margin-bottom: 10px;
}
.covered-uncovered .cover-wrapper {
  display: flex;
  justify-content: space-between;
  gap: 60px;
}
.covered-uncovered .cover-column {
  flex: 1;
}
.covered-uncovered .cover-column img {
  max-width: 100%;
  height: auto;
  display: block;
}
.covered-uncovered .list-toggle-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  cursor: pointer;
  border: none;
  background: none;
  font-weight: 600;
  color: #AE1478;
}
.covered-uncovered .arrow-icon {
  transition: transform 0.3s ease;
}
.covered-uncovered .arrow-icon-outer {
  background: #AE1478;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-left: 20px;
  font-size: 40px;
}
.covered-uncovered .arrow-icon-outer svg {
  font-size: 20px;
}
.covered-uncovered .list-toggle-btn.expanded .arrow-icon {
  transform: rotate(180deg);
}
.covered-uncovered .list {
  list-style: none;
  padding: 0;
  margin: 0 0 15px;
}
.covered-uncovered .list li {
  position: relative;
  padding-left: 30px;
  margin-bottom: 12px;
  line-height: 1.6;
  font-size: 16px;
}
.covered-uncovered .list.green li::before {
  content: "";
  position: absolute;
  left: 0;
  color: #00e676;
  font-weight: bold;
  background-image: url(../assets/img/icon-tick-green.svg);
  width: 20px;
  height: 20px;
  background-position: 0 0;
  background-repeat: no-repeat;
  top: 3px;
}
.covered-uncovered .list.red li::before {
  content: "";
  position: absolute;
  left: 0;
  color: #ff3b3b;
  font-weight: bold;
  background-image: url(../assets/img/icon-cross-red.svg);
  width: 20px;
  height: 20px;
  background-position: 0 0;
  background-repeat: no-repeat;
  top: 5px;
}
.covered-uncovered .more-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}
.covered-uncovered .more-content.active {
  max-height: 500px;
}
.covered-uncovered .load-more-btn {
  background: none;
  border: none;
  color: #AE1478;
  font-weight: 600;
  cursor: pointer;
  margin-bottom: 30px;
  transition: 0.3s;
  text-decoration: none;
}
.covered-uncovered .load-more-btn:hover {
  opacity: 0.8;
}
.covered-uncovered .bottom-cta {
  color: #fff;
  text-align: center;
}
.covered-uncovered .bottom-cta .btn {
  display: inline-block;
  background: #AE1478;
  color: #fff;
  padding: 14px 35px;
  text-decoration: none;
  font-weight: 600;
  transition: 0.3s;
}
.covered-uncovered .bottom-cta .btn:hover {
  background: rgb(151.1288659794, 17.3711340206, 104.2268041237);
}
.covered-uncovered {
  /* ================= RESPONSIVE ================= */
}
@media (max-width: 992px) {
  .covered-uncovered .cover-wrapper {
    flex-direction: column;
    gap: 40px;
  }
  .covered-uncovered .list li {
    font-size: 14px;
  }
}
@media (max-width: 576px) {
  .covered-uncovered {
    padding: 60px 15px;
  }
}

.pre-existing-conditions {
  position: relative;
}
.pre-existing-conditions::after {
  position: absolute;
  content: "";
  top: 0;
  left: 90%;
  right: 0;
  bottom: 30%;
  background-image: url("../assets/img/icon-why-us-bg-2.svg");
  background-position: 10% 10%;
  background-repeat: no-repeat, no-repeat;
  background-size: auto;
}
@media screen and (max-width: 767px) {
  .pre-existing-conditions::after {
    display: none;
  }
}
.pre-existing-conditions::before {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  right: 90%;
  bottom: 0;
  background-image: url("../assets/img/icon-why-us-bg-1.svg");
  background-position: 90% 90%;
  background-repeat: no-repeat, no-repeat;
  background-size: auto;
}
@media screen and (max-width: 767px) {
  .pre-existing-conditions::before {
    display: none;
  }
}
.pre-existing-conditions .two-col .col {
  margin-bottom: 50px;
}
@media (max-width: 1420px) {
  .pre-existing-conditions .two-col .col {
    margin-bottom: 50px;
  }
}
.pre-existing-conditions .gradient-box {
  border-radius: 30px;
  padding: 2px; /* border thickness */
  background: linear-gradient(145deg, rgb(21, 0, 63) 0%, rgb(174, 20, 120) 62%);
}
.pre-existing-conditions .gradient-box-inner {
  background: #F4F2F8;
  border-radius: 28px;
  padding: 20px;
  position: relative;
  padding: 60px 20px 15px;
  min-height: 210px;
}
.pre-existing-conditions .gradient-box-inner img {
  width: 100px;
  height: 100px;
  margin-bottom: 16px;
  position: absolute;
  top: -50px;
  left: 0;
  right: 0;
  margin-left: auto;
  margin-right: auto;
}
.pre-existing-conditions .gradient-box-inner p {
  margin-bottom: 15px;
}
.pre-existing-conditions .gradient-box-inner p:last-child {
  margin-bottom: 0;
}
.pre-existing-conditions .quote-btn-wrapper {
  border: 1px solid #e0e0e0;
}

.pet-compare {
  padding: 48px 0;
  background: linear-gradient(121deg, rgb(21, 0, 63) 43%, rgb(129, 23, 81) 69%, rgb(129, 23, 81) 100%);
  color: #fff;
  position: relative;
  z-index: 1;
}
.pet-compare::before {
  position: absolute;
  content: "";
  top: 45%;
  left: 1%;
  right: 0;
  bottom: 0;
  z-index: -1;
  background-image: url("../assets/img/icon-heart-pink.svg");
  background-position: 10% 10%;
  background-repeat: no-repeat, no-repeat;
  background-size: auto;
}
@media screen and (max-width: 1420px) {
  .pet-compare::before {
    display: none;
  }
}
.pet-compare__title {
  margin-bottom: 16px;
}
.pet-compare__description {
  max-width: 900px;
  margin: 0 auto 48px;
  color: color-mix(in srgb, #15013F, #fff 90%);
}
.pet-compare__table-wrapper {
  overflow-x: auto;
  border-radius: 16px;
}
@media screen and (max-width: 1024px) {
  .pet-compare__table-wrapper {
    padding-bottom: 15px;
    margin-bottom: 20px;
  }
}
.pet-compare__table {
  width: 100%;
  border-collapse: collapse;
  min-width: 900px;
}
.pet-compare__table th,
.pet-compare__table td {
  padding: 20px;
  text-align: center;
  border: 1px solid #e0e0e0;
  font-size: 15px;
  color: #212224;
  background-color: #fff;
}
.pet-compare__table thead {
  background: none !important;
}
.pet-compare__table thead th {
  font-weight: 600;
  color: #333;
  border: none;
}
.pet-compare__table thead th:first-child {
  text-align: left;
  width: 35%;
  background: #fff;
}
.pet-compare__table thead th.highlight {
  background: #AE1478;
  color: #fff;
  border-radius: 20px 0 0 0;
}
.pet-compare__table thead th.light-blue {
  background: #eff7ff;
  border-left: 1px solid #e0e0e0;
}
.pet-compare__table tbody td:first-child {
  text-align: left;
  background: #f5f5f5;
  color: #333;
}
.pet-compare__table tbody td.check {
  color: #AE1478;
  font-size: 20px;
  font-weight: bold;
}
.pet-compare__table tbody td.light-yellow {
  background: #f6f2ed;
}
.pet-compare__note {
  margin-top: 32px;
  font-size: 16px;
  color: color-mix(in srgb, #15013F, #fff 90%);
}
@media (max-width: 1024px) {
  .pet-compare__title {
    font-size: 28px;
  }
  .pet-compare__description {
    font-size: 14px;
  }
  .pet-compare__table th,
  .pet-compare__table td {
    padding: 14px;
    font-size: 14px;
  }
}
@media (max-width: 767px) {
  .pet-compare {
    padding: 40px 0;
  }
  .pet-compare__title {
    font-size: 22px;
  }
  .pet-compare__description {
    font-size: 13px;
  }
}

.quote-steps {
  background: linear-gradient(121deg, rgb(13, 23, 48) 43%, rgb(11, 26, 82) 69%, rgb(11, 26, 82) 100%);
  color: #fff;
  position: relative;
}
.quote-steps::after {
  position: absolute;
  content: "";
  top: 140px;
  left: 90%;
  right: 0;
  bottom: 0;
  z-index: -1;
  background-image: url("../assets/img/banner-icon.png");
  background-position: 10% 10%;
  background-repeat: no-repeat, no-repeat;
  background-size: auto;
}
@media screen and (max-width: 767px) {
  .quote-steps::after {
    display: none;
  }
}
.quote-steps__flow {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}
.quote-steps .step-card {
  text-align: center;
  position: relative;
}
.quote-steps .step-card::before {
  content: "";
  position: absolute;
  background-image: url("../assets/img/icon-arc.svg");
  background-repeat: no-repeat;
  top: 130px;
  left: 64%;
  transform: translateY(-50%);
  width: 100%;
  height: 102px;
  z-index: 1;
  opacity: 0; /* hidden initially */
  animation: showArrow 0.5s ease forwards;
  animation-delay: 3s; /* delay time */
}
@media screen and (max-width: 1024px) {
  .quote-steps .step-card::before {
    display: none;
  }
}
@keyframes showArrow {
  to {
    opacity: 1;
  }
}
.quote-steps .step-card:last-child::before {
  display: none;
}
.quote-steps .step-card__top {
  margin-bottom: 60px;
}
@media screen and (max-width: 1024px) {
  .quote-steps .step-card__top {
    margin-bottom: 30px;
  }
}
.quote-steps .step-card__top h3 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 5px;
}
.quote-steps .step-card__top p {
  font-size: 16px;
}
.quote-steps .step-card__icon {
  width: 120px;
  height: 120px;
  margin: 0 auto -60px;
  position: relative;
  z-index: 2;
  border: 2px dashed #AE1478;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #fff;
}
.quote-steps .step-card__content {
  background: #fff;
  border-radius: 20px;
  padding: 80px 25px 30px;
  color: #333;
  min-height: 140px;
}
@media screen and (max-width: 1420px) {
  .quote-steps .step-card__content {
    min-height: 200px;
  }
}
.quote-steps .step-card__content ul {
  list-style: none;
  padding: 0;
  min-height: 112px;
}
.quote-steps .step-card__content ul li {
  margin-bottom: 8px;
  position: relative;
  padding-left: 14px;
  text-align: left;
}
.quote-steps .step-card__content ul li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: #AE1478;
}
.quote-steps__cta {
  margin-top: 60px;
}
.quote-steps__cta .cta-box {
  background: #fff;
  display: inline-flex;
  align-items: center;
  gap: 20px;
  padding: 15px 25px;
  border-radius: 12px;
  color: #333;
}
.quote-steps__cta .cta-box span {
  font-weight: 500;
}
.quote-steps__cta .btn-primary {
  background: #AE1478;
  color: #fff;
  padding: 12px 22px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  transition: 0.3s ease;
}
.quote-steps__cta .btn-primary:hover {
  background: color-mix(in srgb, #AE1478, #000 40%);
}
@media (max-width: 1024px) {
  .quote-steps__flow {
    grid-template-columns: repeat(2, 1fr);
  }
  .quote-steps h2 {
    font-size: 30px;
  }
}
@media (max-width: 767px) {
  .quote-steps__flow {
    grid-template-columns: 1fr;
  }
  .quote-steps h2 {
    font-size: 22px;
  }
  .quote-steps .step-card__content {
    min-height: auto;
  }
  .quote-steps .cta-box {
    flex-direction: column;
  }
}

.health-advice {
  padding: 48px 0;
  background: #F4F2F8;
}
.health-advice .container {
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 20px;
}
.health-advice__header {
  margin-bottom: 60px;
}
.health-advice__header h2 {
  font-size: 36px;
  font-weight: 700;
  color: #15013F;
  margin-bottom: 15px;
}
.health-advice__header p {
  max-width: 800px;
  margin: 0 auto;
  color: #333;
  font-size: 16px;
  line-height: 1.6;
}
.health-advice__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  margin-bottom: 70px;
}
.health-advice .advice-card-main {
  background: linear-gradient(145deg, rgb(21, 0, 63) 0%, rgb(174, 20, 120) 62%);
  padding: 1px;
  border-radius: 24px;
}
@media screen and (max-width: 1024px) {
  .health-advice .advice-card-main {
    margin-bottom: 30px;
  }
}
.health-advice .advice-card {
  background: #fff;
  border-radius: 24px;
  padding: 10px;
  text-align: center;
  transition: 0.3s ease;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
  padding-bottom: 30px;
}
.health-advice .advice-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}
.health-advice .advice-card__image {
  margin-bottom: 20px;
}
.health-advice .advice-card__image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 20px;
}
.health-advice .advice-card h3 {
  font-size: 18px;
  font-weight: 600;
  color: #15013F;
  margin-bottom: 10px;
}
.health-advice .advice-card p {
  font-size: 14px;
  color: #333;
  margin-bottom: 20px;
  line-height: 1.5;
}
.health-advice .btn-gradient {
  display: inline-block;
  padding: 12px 24px;
  background: linear-gradient(135deg, #1c2657 0%, #bd5786 100%);
  color: #fff;
  font-weight: 600;
  text-decoration: none;
  transition: 0.3s ease;
  left: 0;
  position: absolute;
  width: 110px;
  right: 0;
  margin: 0 auto;
  bottom: -21px;
}
.health-advice .btn-gradient:hover {
  background: linear-gradient(135deg, color-mix(in srgb, #15013F, #000 40%) 0%, color-mix(in srgb, #AE1478, #000 40%) 100%);
}
.health-advice__subscribe h3 {
  font-size: 20px;
  color: #15013F;
  margin-bottom: 25px;
}
.health-advice__subscribe .subscribe-form {
  max-width: 600px;
  margin: 0 auto;
  display: flex;
  border-radius: 14px;
  overflow: hidden;
  background: #fff;
  border: 1px solid #e0e0e0;
}
.health-advice__subscribe .subscribe-form input {
  flex: 1;
  padding: 14px 16px;
  border: none;
  outline: none;
  font-size: 14px;
}
.health-advice__subscribe .subscribe-form button {
  background: #AE1478;
  color: #fff;
  border: none;
  padding: 0 24px;
  font-weight: 600;
  cursor: pointer;
  transition: 0.3s ease;
}
.health-advice__subscribe .subscribe-form button:hover {
  background: color-mix(in srgb, #AE1478, #000 40%);
}
@media (max-width: 1024px) {
  .health-advice__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 767px) {
  .health-advice__grid {
    grid-template-columns: 1fr;
  }
  .health-advice__header h2 {
    font-size: 24px;
  }
  .health-advice .subscribe-form {
    flex-direction: column;
  }
  .health-advice .subscribe-form input {
    border-bottom: 1px solid #e0e0e0;
  }
  .health-advice .subscribe-form button {
    padding: 14px;
  }
}

.customer-feedback {
  background: linear-gradient(121deg, rgb(21, 0, 63) 43%, rgb(129, 23, 81) 69%, rgb(129, 23, 81) 100%);
  color: #fff;
  position: relative;
}
.customer-feedback::before {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  right: 90%;
  bottom: 0;
  z-index: -1;
  background-image: url("../assets/img/icon-customer-feedback.svg");
  background-position: 90% 90%;
  background-repeat: no-repeat, no-repeat;
  background-size: auto;
  z-index: 9;
}
@media screen and (max-width: 767px) {
  .customer-feedback::before {
    display: none;
  }
}
.customer-feedback .testimonial-slider .item {
  padding: 10px;
}
.customer-feedback .testimonial-slider .testimonial-card {
  background: #fff;
  border-radius: 24px;
  padding: 30px;
  color: #333;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.02);
  transition: 0.3s ease;
  height: 100%;
}
.customer-feedback .testimonial-slider .testimonial-card:hover {
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
}
.customer-feedback .testimonial-slider .testimonial-card .stars {
  color: #AE1478;
  font-size: 18px;
  margin-bottom: 15px;
}
.customer-feedback .testimonial-slider .testimonial-card .testimonial-text {
  font-size: 15px;
  line-height: 1.6;
  margin-bottom: 25px;
}
.customer-feedback .testimonial-slider .testimonial-card .testimonial-user {
  display: flex;
  align-items: center;
  gap: 15px;
}
.customer-feedback .testimonial-slider .testimonial-card .testimonial-user img {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  -o-object-fit: cover;
     object-fit: cover;
}
.customer-feedback .testimonial-slider .testimonial-card .testimonial-user h4 {
  font-size: 16px;
  color: #15013F;
}
.customer-feedback .testimonial-slider .testimonial-card .testimonial-user span {
  font-size: 13px;
  opacity: 0.7;
}
.customer-feedback .owl-dots {
  text-align: center;
}
.customer-feedback .owl-dots .owl-dot span {
  width: 10px;
  height: 10px;
  background: #fff;
  opacity: 0.5;
  border-radius: 50%;
  margin: 5px;
}
.customer-feedback .owl-dots .owl-dot.active span {
  opacity: 1;
  transform: scale(1.2);
}
.customer-feedback .owl-nav {
  display: none;
}
.customer-feedback__header {
  margin-bottom: 60px;
}
.customer-feedback__header h2 {
  font-size: 38px;
  font-weight: 700;
}
.customer-feedback__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}
.customer-feedback .testimonial-card {
  background: #fff;
  border-radius: 24px;
  padding: 30px;
  color: #333;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
  transition: 0.3s ease;
}
.customer-feedback .testimonial-card .stars {
  color: #AE1478;
  font-size: 18px;
  margin-bottom: 15px;
}
.customer-feedback .testimonial-card .testimonial-text {
  font-size: 15px;
  line-height: 1.6;
  margin-bottom: 25px;
}
.customer-feedback .testimonial-card .testimonial-user {
  display: flex;
  align-items: center;
  gap: 15px;
}
.customer-feedback .testimonial-card .testimonial-user img {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  -o-object-fit: cover;
     object-fit: cover;
}
.customer-feedback .testimonial-card .testimonial-user h4 {
  font-size: 16px;
  margin-bottom: 2px;
  color: #15013F;
}
.customer-feedback .testimonial-card .testimonial-user span {
  font-size: 13px;
  color: #333;
  opacity: 0.7;
}
.customer-feedback__dots {
  text-align: center;
}
.customer-feedback__dots .dot {
  display: inline-block;
  width: 10px;
  height: 10px;
  background: #fff;
  opacity: 0.5;
  border-radius: 50%;
  margin: 0 15px;
  gap: 28px;
  cursor: pointer;
  transition: 0.3s;
}
.customer-feedback__dots .dot.active {
  opacity: 1;
  background: #fff;
  transform: scale(1.2);
}
@media (max-width: 1024px) {
  .customer-feedback__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 767px) {
  .customer-feedback__grid {
    grid-template-columns: 1fr;
  }
  .customer-feedback__header h2 {
    font-size: 26px;
  }
}

.petCare-solutions {
  position: relative;
}
.petCare-solutions .petCare-solutions__content {
  display: flex;
  justify-content: center;
}
@media screen and (max-width: 1420px) {
  .petCare-solutions .petCare-solutions__content {
    flex-direction: column;
    text-align: center;
  }
}
.petCare-solutions::before {
  position: absolute;
  content: "";
  top: 40px;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: url("../assets/img/icon-heart.svg");
  background-position: 10% 10%;
  background-repeat: no-repeat, no-repeat;
  background-size: auto;
}
@media screen and (max-width: 1420px) {
  .petCare-solutions::before {
    display: none;
  }
}
.petCare-solutions::after {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: url("../assets/img/icon-bowl.svg");
  background-position: 90% 90%;
  background-repeat: no-repeat, no-repeat;
  background-size: auto;
}
.petCare-solutions .quote-btn {
  border: 1px solid #AE1478;
  color: #AE1478;
}
.petCare-solutions .quote-btn:hover {
  background-color: #AE1478;
  color: #fff;
}
.petCare-solutions .helpline-btn {
  background-color: #15013F;
  color: #fff;
}
.petCare-solutions .helpline-btn:hover {
  background-color: #AE1478;
  color: #fff;
}

/**
 * Generates margin (m) and padding (p) utility classes based on the $spacings map.
 * Creates classes for all sides (e.g., `m-4`), top (e.g., `mt-2`), and bottom (e.g., `pb-6`).
 */
.m-0 {
  margin: 0 !important;
}

.mt-0 {
  margin-top: 0 !important;
}

.mb-0 {
  margin-bottom: 0 !important;
}

.m-1 {
  margin: 4px !important;
}

.mt-1 {
  margin-top: 4px !important;
}

.mb-1 {
  margin-bottom: 4px !important;
}

.m-2 {
  margin: 8px !important;
}

.mt-2 {
  margin-top: 8px !important;
}

.mb-2 {
  margin-bottom: 8px !important;
}

.m-3 {
  margin: 12px !important;
}

.mt-3 {
  margin-top: 12px !important;
}

.mb-3 {
  margin-bottom: 12px !important;
}

.m-4 {
  margin: 16px !important;
}

.mt-4 {
  margin-top: 16px !important;
}

.mb-4 {
  margin-bottom: 16px !important;
}

.m-5 {
  margin: 24px !important;
}

.mt-5 {
  margin-top: 24px !important;
}

.mb-5 {
  margin-bottom: 24px !important;
}

.m-6 {
  margin: 32px !important;
}

.mt-6 {
  margin-top: 32px !important;
}

.mb-6 {
  margin-bottom: 32px !important;
}

.m-7 {
  margin: 48px !important;
}

.mt-7 {
  margin-top: 48px !important;
}

.mb-7 {
  margin-bottom: 48px !important;
}

.m-8 {
  margin: 64px !important;
}

.mt-8 {
  margin-top: 64px !important;
}

.mb-8 {
  margin-bottom: 64px !important;
}

.p-0 {
  padding: 0 !important;
}

.pt-0 {
  padding-top: 0 !important;
}

.pb-0 {
  padding-bottom: 0 !important;
}

.p-1 {
  padding: 4px !important;
}

.pt-1 {
  padding-top: 4px !important;
}

.pb-1 {
  padding-bottom: 4px !important;
}

.p-2 {
  padding: 8px !important;
}

.pt-2 {
  padding-top: 8px !important;
}

.pb-2 {
  padding-bottom: 8px !important;
}

.p-3 {
  padding: 12px !important;
}

.pt-3 {
  padding-top: 12px !important;
}

.pb-3 {
  padding-bottom: 12px !important;
}

.p-4 {
  padding: 16px !important;
}

.pt-4 {
  padding-top: 16px !important;
}

.pb-4 {
  padding-bottom: 16px !important;
}

.p-5 {
  padding: 24px !important;
}

.pt-5 {
  padding-top: 24px !important;
}

.pb-5 {
  padding-bottom: 24px !important;
}

.p-6 {
  padding: 32px !important;
}

.pt-6 {
  padding-top: 32px !important;
}

.pb-6 {
  padding-bottom: 32px !important;
}

.p-7 {
  padding: 48px !important;
}

.pt-7 {
  padding-top: 48px !important;
}

.pb-7 {
  padding-bottom: 48px !important;
}

.p-8 {
  padding: 64px !important;
}

.pt-8 {
  padding-top: 64px !important;
}

.pb-8 {
  padding-bottom: 64px !important;
}

.d-flex {
  display: flex !important;
}

.flex-column {
  flex-direction: column !important;
}

.justify-content-between {
  justify-content: space-between !important;
}

.align-items-center {
  align-items: center !important;
}

.w-50 {
  width: 50% !important;
}

.w-100 {
  width: 100% !important;
}

.m-top-10 {
  margin-top: 10px !important;
}

.m-bottom-20 {
  margin-bottom: 20px !important;
}

.m-bottom-30 {
  margin-bottom: 30px !important;
}

.m-bottom-40 {
  margin-bottom: 40px !important;
}

.m-bottom-80 {
  margin-bottom: 80px !important;
}

.m-bottom-100 {
  margin-bottom: 100px !important;
}
@media screen and (max-width: 767px) {
  .m-bottom-100 {
    margin-bottom: 50px !important;
  }
}

.m-bottom-100-mobile {
  margin-bottom: 100px !important;
}

.m-top-10 {
  margin-top: 10px !important;
}

.m-top-20 {
  margin-top: 20px !important;
}

.m-top-30 {
  margin-top: 30px !important;
}

.m-top-40 {
  margin-top: 40px !important;
}

.m-top-50 {
  margin-top: 50px !important;
}

.m-top-80 {
  margin-top: 80px !important;
}
@media screen and (max-width: 1420px) {
  .m-top-80 {
    margin-top: 30px !important;
  }
}

.pp-top-150 {
  padding-top: 150px !important;
}
@media screen and (max-width: 1420px) {
  .pp-top-150 {
    padding-top: 80px !important;
  }
}

.text-center {
  text-align: center !important;
}

.white-text {
  color: #fff !important;
}

.pink-text {
  color: #AE1478 !important;
}

.text-left {
  text-align: left !important;
}

.p-bottom-0 {
  padding-bottom: 0 !important;
}

.mobile-only {
  display: none;
}

@media (max-width: 1024px) {
  .desktop-only {
    display: none;
  }
  .mobile-only {
    display: block;
  }
}
/* Hidden by default (Desktop) */
.swipe-indicator {
  display: none;
}

/* Show only Mobile & Tablet */
@media (max-width: 991px) {
  .swipe-indicator {
    display: flex;
    align-items: center;
    gap: 8px;
    z-index: 20;
    animation: fadeIn 1s ease;
    justify-content: flex-end;
  }
  .swipe-indicator span {
    font-size: 12px;
    letter-spacing: 1px;
    color: #fff;
    opacity: 0.85;
  }
  /* Hand container */
  .hand {
    width: 50px;
    height: 50px;
    position: relative;
    overflow: hidden;
  }
  /* Finger animation */
  .finger {
    width: 30px;
    height: 30px;
    border-radius: 6px;
    position: relative;
    animation: swipeMove 1.5s infinite;
  }
  @keyframes swipeMove {
    0% {
      left: 6px;
      opacity: 1;
    }
    50% {
      left: 18px;
      opacity: 0.7;
    }
    100% {
      left: 6px;
      opacity: 1;
    }
  }
  @keyframes fadeIn {
    from {
      opacity: 0;
      transform: translateY(10px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }
}
.quote-btn-wrapper {
  margin-top: 20px;
  background-color: #fff;
  padding: 5px;
  border-radius: 20px 5px 20px 5px;
  width: auto;
  display: inline-flex;
  align-items: center;
  padding-left: 10px;
  border: 1px solid #15013F;
}
@media (max-width: 767px) {
  .quote-btn-wrapper {
    width: 100%;
    justify-content: center;
    margin-top: 30px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin: 20px 0;
    box-sizing: border-box;
    padding: 15px;
  }
}
.quote-btn-wrapper p {
  margin: 0;
  margin-right: 30px;
  font-size: 16px;
  color: #15013F;
}
@media (max-width: 767px) {
  .quote-btn-wrapper p {
    margin-right: 0;
    font-size: 14px;
  }
}
.quote-btn-wrapper .quoteinput {
  border: none;
  outline: none;
  padding: 10px;
  font-size: 16px;
  border-radius: 20px 5px 20px 5px;
  width: 250px;
  margin-right: 10px;
}
.quote-btn-wrapper .btn {
  font-size: 16px;
  font-weight: 500;
  text-decoration: none;
  letter-spacing: 0.5px;
  border: none;
  cursor: pointer;
  background-color: #AE1478;
  color: #fff;
}
.quote-btn-wrapper .btn:hover {
  background-color: rgb(12.6328125, 0.6015625, 37.8984375);
  cursor: pointer;
}

body {
  font-family: "Roboto", sans-serif;
  font-size: 16px;
  line-height: 20px;
  box-sizing: border-box;
  background-color: #fff;
  background-size: cover;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: "Fredoka", sans-serif;
}

.icon-outer {
  position: relative;
  width: 100%;
  height: 100%;
}