@font-face {
    font-family: "TT Runs Bold";
    src: url("font/tt-runs-bold.ttf") format("truetype");
    font-weight: 700;
    font-style: normal;
}

@font-face {
    font-family: "Inter";
    src: url("font/Inter/Inter-VariableFont_opsz,wght.ttf") format("truetype-variations");
    font-weight: 100 900;
    font-style: normal;
    font-display: swap;
}

body {
    font-family: "Inter", sans-serif;
    font-size: 18px;
    line-height: 1.6;
}

a {
    color: black;
}

a:hover {
    text-decoration: underline;
    color: #A3C401;
}

.store-badge:hover {
    filter: drop-shadow(0 0 8px rgba(0,0,0, 0.7));
}

/* Navbar link sizing */
.navbar .nav-link {
    font-size: 16px;
    white-space: nowrap;
}

/* FAQ items and links */
#faq .faq-item {
    padding: 16px 0;
    border-bottom: 1px solid #e0e0e0;
}

#faq .faq-item:last-child {
    border-bottom: none;
}

#faq .faq-question {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    padding: 0;
    background: transparent;
    border: 0;
    text-align: left;
}

#faq .faq-question-text {
    font-weight: 700;
}

#faq .faq-link {
    display: inline-block;
    width: 32px;
    height: 32px;
    background-image: url("img/plus.svg");
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    flex-shrink: 0;
}

#faq .faq-question[aria-expanded="true"] .faq-link {
    background-image: url("img/minus.svg");
}

#faq .faq-answer {
    padding-top: 16px;
}

.bold-yellow {
    color: #fbe201;
    font-weight: 600;
    font-family: "TT Runs Bold", sans-serif;
    font-size: 42px;
}

.tt-h5 {
    font-family: "TT Runs Bold", sans-serif;
    font-size: 16px;
}

.tt-h4 {
    font-family: "TT Runs Bold", sans-serif;
    font-size: 18px;
}

.tt-h3 {
    font-family: "TT Runs Bold", sans-serif;
    font-size: 24px;
}

.tt-h31 {
    font-family: "TT Runs Bold", sans-serif;
    font-size: 18px;
}

.small-green {
    color: #2E7964;
    font-size: 14px;
}

.small-gray {
    color: #807794;
    font-size: 16px;
}

#hero-text-0 {
    font-family: "Inter", sans-serif;
    font-weight: 600;
    font-size: 26px;
    color: #fbe201;
}

.hero-subheader {
    font-family: "Inter", sans-serif;
    font-weight: 600;
    font-size: 26px;
    color: #fbe201;
}

.tt-big {
    font-family: "TT Runs Bold", sans-serif;
    font-size: 38px;
    line-height: 1.2;
}

.block-1 {
    background-color: #0d3570;
    padding: 20px;
    border-radius: 32px;
}


.block-1 {
    background-image: url("img/IMG_0938 1.png");
    background-repeat: no-repeat;
    background-position: 666px 60px;
    background-size: auto;
    min-height: 631px;
}

#bg1 {
    background-image: url("img/bg1.png");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    min-height: 141px;
}

#bg2 {
    background-image: url("img/bg2.png");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    min-height: 141px;
}

.block-1 img {
    display: none;
}

.block-2 {
    background-color: #0d3570;
    border-radius: 32px;
    color: #fff;
}

.block-pink {
    background-color: #c595cf;
    border-radius: 32px;
    /* padding: 60px; */
    /* background-image: url("img/img9.png");
    background-repeat: no-repeat;
    background-position: right 20px top 10px;
    background-size: auto; */
    color: white;
}

.block-blue {
    background-color: #1348C8;
    border-radius: 32px;
    padding: 40px;
    color: white;
}



.question-form input,
.question-form button {
    border-radius: 30px;
    padding: 14px 20px;
    font-size: 16px;
    border: 1px solid rgba(0,0,0,0.12);
}

.question-form input {
    background-color: #fff;
}

.question-form button {
    background-color: #0D3570;
    color: #fff;
    border: none;
    cursor: pointer;
    flex: 0 0 auto;
}

.question-form button:hover {
    opacity: 0.95;
}


#contact-form {
    display: flex;
    flex-direction: column;
    gap: 12px;
    align-items: stretch;
    margin-top: 24px;
}

#contact-form input,
#contact-form textarea,
#contact-form button {
    border-radius: 30px;
    padding: 14px 20px;
    font-size: 16px;
    border: 1px solid rgba(0, 0, 0, 0.12);
}

#contact-form button {
    border: none;
    cursor: pointer;
    width: fit-content;
}

.block-3 {
    background-color: #fff;
    padding: 20px 10px;
    border-radius: 24px;
    text-align: center;
    color: #000;
}

.my-btn-green {
    background-color: #a3c401;
    color: white;
    border-radius: 26px;
    padding: 10px 32px;
    text-decoration: none;
    max-width: 100%;
    display: inline-block;
}

.my-btn-green:hover {
    text-decoration: none;
    color: white;
    filter: drop-shadow(0 0 8px #a3c401);
}

.my-btn-pink {
    background-color: #c595cf;
    color: white;
    border-radius: 26px;
    padding: 10px 32px;
    text-decoration: none;
    display: inline-block;
}

.my-btn-pink:hover {
    text-decoration: none;
    color: white;
    filter: drop-shadow(0 0 8px #c595cf);
}

.my-btn-white {
    background-color: white;
    color: #0D3570;
    border-radius: 26px;
    border: 1px solid #0D3570;
    padding: 10px 32px;
    text-decoration: none;
    display: inline-block;
}

.my-btn-white:hover {
    text-decoration: none;
    color: #0D3570;
    filter: drop-shadow(0 0 8px #0D3570);
}

.hero-stats {
    position: absolute;
    top: 60px;
    right: 60px;
    color: #fff;
    text-align: right;
}

.hero-content {
    position: absolute;
    top: 30px;
    left: 30px;
    width: 600px;
}

.dyn-padding {
    padding: 80px 80px;
}

#comparision {
    width: 100%;
    background-color: transparent;
    --bs-table-bg: transparent;
    --bs-table-striped-bg: transparent;
    --bs-table-hover-bg: transparent;
    --bs-table-accent-bg: transparent;
}

#comparision th:first-child,
#comparision td:first-child {
    width: 40%;
    text-align: left;
}

#comparision th,
#comparision td {
    background-color: transparent;
    text-align: center;
}

#comparision th:not(:first-child),
#comparision td:not(:first-child) {
    width: 15%;
}

@media (max-width: 1200px) {

    .hero-stats {
        position: relative;
        right: auto;
        top: auto;
        text-align: left;
        margin-top: 20px;
    }

    .hero-content {
        position: relative;
        left: auto;
        top: auto;
        width: 100%;
    }

    .hero-dot {
        display: none;
    }

    .dyn-padding {
        padding: 20px 10px;
    }
}

.review-card {
    height: 100%;
    border-radius: 24px;
    background: #F3F7FF;
    padding: 28px;
    text-align: center;
}

.review-card img {
      height: 66px;
      width: 66px;
      flex: 0 0 auto;
      align-self: center;
      margin-bottom: 20px;
}

.review-dots {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 24px;
}

.review-dots span {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #cad7ea;
}

.review-dots span.is-active {
    background: var(--victory-navy);
}

.short-review-slider {
    margin: 0 auto;
    width: 100%;
}

.short-review-slider__main {
    display: flex;
    align-items: center;
    gap: 20px;
}

.short-review-slider__viewport {
    flex: 1 1 auto;
}

.short-review-slide {
    min-height: 150px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.short-review-slider__controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-top: 24px;
}

.short-review-slider__arrow {
    border: 0;
    background: transparent;
    color: #0d3570;
    font-size: 32px;
    line-height: 1;
    padding: 0;
}

.short-review-slider__dots {
    margin-top: 0;
}

.short-review-slider__dot {
    width: 10px;
    height: 10px;
    border: 0;
    border-radius: 50%;
    background: #cad7ea;
    padding: 0;
}

.short-review-slider__dot.is-active {
    background: #0d3570;
}

@media (max-width: 767.98px) {
    .short-review-slider__main {
        gap: 12px;
    }

    .short-review-slider__arrow {
        font-size: 24px;
    }
}

.social_links a {
    display: inline-block;
}

.social_links img {
    display: block;
}

.social_links a:hover img {
    filter: drop-shadow(0 0 8px rgba(163, 196, 1, 0.7));
}

.store-badge img {
    height: 44px;
    width: auto;
}


.msg_links a {
    display: inline-block;
}

.msg_links img {
    display: block;
}

.msg_links a:hover img {
    filter: drop-shadow(0 0 8px rgba(130, 133, 115, 0.7));
}

.navbar .nav-link:hover {
    text-decoration: underline;
    color: #A3C401;
}

.dropdown-menu a:hover {
    text-decoration: underline;
    color: #A3C401;
}

.dropdown-item:hover {
    background-color: transparent;
}

.grey-border {
    border: 1px solid #E8E8E8; 
    border-radius: 32px; 
    padding: 20px
}

.disabled {
    pointer-events: none;
    opacity: 0.2;
}

@media (max-width: 991.98px) {
      #reviews-prev-mobile img,
      #reviews-next-mobile img {
          transform: rotate(90deg);
      }
}


#add-review-form {
    display: flex;
    flex-direction: column;
    gap: 12px;
    align-items: stretch;
    margin-top: 24px;
}

#add-review-form input,
#add-review-form textarea,
#add-review-form button {
    border-radius: 30px;
    padding: 14px 20px;
    font-size: 16px;
    border: 1px solid rgba(0, 0, 0, 0.12);
}

#add-review-form button {
    border: none;
    cursor: pointer;
    width: fit-content;
}
