:root {
    --color-white-100: hsl(220, 10%, 100%);
    --color-white-200: hsl(220, 10%, 95%);
    --color-white-300: hsl(220, 10%, 85%);
    --color-white-400: hsl(220, 10%, 65%);
    --color-white-500: hsl(220, 10%, 50%);
    --color-black-100: hsl(240, 5%, 15%);
    --color-black-200: hsl(240, 5%, 12%);
    --color-black-300: hsl(240, 5%, 09%);
    --color-black-400: hsl(240, 5%, 06%);
    --color-black-500: hsl(240, 5%, 03%);
    --shadow-small: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06);
    --shadow-medium: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-large: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --primary-color: #121e4e;
    --secondary-color: #32aabe;
    --btn-color-1: #e5fdfe;
    --btn-text-color-1: #121e4e;
    --text-color-1: #e5fdfe;
    --text-color-2: #e3dde5;
    --text-color-3: #32aabe;
    --text-color-4: #606062;
}

@font-face {
    font-family: "Futura Now Headline";
    src: url("7c3caf543ed48fcb119d52af1a8e0ebf.eot");
    src: url("7c3caf543ed48fcb119d52af1a8e0ebf.eot?#iefix") format("embedded-opentype"), url("7c3caf543ed48fcb119d52af1a8e0ebf.woff") format("woff"), url("7c3caf543ed48fcb119d52af1a8e0ebf.woff2") format("woff2"),
        url("7c3caf543ed48fcb119d52af1a8e0ebf.ttf") format("truetype"), url("7c3caf543ed48fcb119d52af1a8e0ebf.svg#Futura Now Headline") format("svg");
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

*,
*::before,
*::after {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    list-style: none;
    list-style-type: none;
    text-decoration: none;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
}

html {
    font-size: 100%;
    box-sizing: inherit;
    scroll-behavior: smooth;
    height: -webkit-fill-available;
}

body {
    font-size: 1.125rem;
    font-weight: 400;
    line-height: 1.5;
    transition: all 0.3s ease;
}

main,
section {
    overflow: hidden;
}

a,
button {
    cursor: pointer;
    border: none;
    outline: none;
    background: none;
    box-shadow: none;
    font-family: "Montserrat", sans-serif !important;
    text-decoration: none;
}

p {
    font-family: "Montserrat", sans-serif !important;
}

ol, ul {
    margin-bottom: 0;
}

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

ul {
    padding-left: 0;
}
ul li {
    font-family: "Raleway", sans-serif !important;
}

img,
video {
    display: block;
    max-width: 100%;
    height: auto;
    object-fit: cover;
}

img,
picture {
    image-rendering: -webkit-optimize-contrast;
    image-rendering: -moz-crisp-edges;
    image-rendering: crisp-edges;
}

.btn {
    display: inline-flex;
    font-family: inherit;
    font-size: 16px;
    font-weight: 600;
    line-height: 1.5;
    align-items: center;
    justify-content: center;
    column-gap: 0.35rem;
    white-space: nowrap;
    padding-block: 0.75rem;
    padding-inline: 1.25rem;
    border-radius: 8px;
    transition: all 0.3s ease;
}
.btn-darken {
    color: var(--btn-text-color-1);
    background-color: var(--btn-color-1);
    box-shadow: var(--shadow-medium);
}

.btn:hover {
    background-color: var(--secondary-color) !important;
    color: var(--color-white-100) !important;
}

.btn-neutral {
    color: var(--color-black-500);
    background-color: var(--color-white-100);
    box-shadow: var(--shadow-medium);
}

.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 99;
    width: 100%;
    height: auto;
    transition: transform 0.35s ease;
}
.header.is-sticky {
    top: 0;
    transform: unset;
}

.navbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    column-gap: 2rem;
    max-width: 100%;
    height: 100px;
    background-color: var(--primary-color);
    box-shadow: var(--shadow-medium);
    padding: 0 50px;
}

.brand {
    font-family: inherit;
    font-size: 1.5rem;
    font-weight: 700;
    line-height: 1.25;
    letter-spacing: -1px;
    text-transform: uppercase;
    color: var(--color-black-500);
    width: 230px;
}

.brand img {
    width: 200px;
}

.menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    height: 100%;
    overflow: hidden;
    padding-block: 6rem 2rem;
    background-color: var(--color-white-100);
    box-shadow: var(--shadow-medium);
    transition: all 0.35s ease;
}
.menu.is-active {
    right: 0;
}
.menu-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    row-gap: 1.5rem;
    column-gap: 3rem !important;
}
.menu-link {
    font-family: inherit;
    font-size: 16px !important;
    font-weight: 400;
    line-height: 1.5;
    text-transform: uppercase;
    color: var(--color-white-100);
    transition: all 0.3s ease;
}
.menu-block {
	display:none;
/*     display: flex; */
    align-items: center;
    justify-content: center;
    column-gap: 1rem;
}

.burger {
    position: relative;
    display: block;
    width: 1.5rem;
    height: 1rem;
    z-index: 99;
    visibility: visible;
}

.burger-line {
    position: absolute;
    right: 0;
    opacity: 1;
    width: 100%;
    height: 2px;
    line-height: 1.25;
    background-color: var(--color-black-500);
    transition: all 0.25s ease;
}
.burger-line:nth-child(1) {
    top: 0.25rem;
}
.burger-line:nth-child(2) {
    top: 0.75rem;
}
.burger.is-active .burger-line:nth-child(1) {
    top: 0.5rem;
    transform: rotate(135deg);
}
.burger.is-active .burger-line:nth-child(2) {
    top: 0.5rem;
    transform: rotate(-135deg);
}

/* Banner Section */

.banner-section {
    background-image: url(../img/banner/banner-img.png);
    padding: 100px;
    margin-top: 100px;
    background-repeat: no-repeat;
    background-size: cover;
    height: 90vh;
    position: relative;
    z-index: 0;
}

.banner-section:before {
    position: absolute;
    content: "";
    left: 0;
    top: 0;
    background: #000;
    width: 100%;
    height: 100%;
    opacity: 0.5;
    z-index: -1;
}

.banner-section:after {
    position: absolute;
    content: "";
    right: 0;
    top: 0;
    background-image: url("../img/bg/banner-overlay.svg");
    background-repeat: no-repeat;
    width: 270px;
    height: 270px;
    z-index: 10;
    background-size: auto;
}
.banner-content h1 {
    color: var(--text-color-1);
    font-size: 60px;
    font-weight: 700;
    line-height: 80px;
}
.banner-content p {
    color: var(--text-color-2);
    font-size: 16px;
    font-weight: 500;
}
.banner-list li {
    color: var(--text-color-3);
    padding-left: 10px;
    position: relative;
    font-weight: 700;
}
.banner-list li:before {
    content: "";
    position: absolute;
    left: -20px;
    top: 10px;
    background-image: url(../img/icons/list-icon.svg);
    width: 15px;
    height: 15px;
    background-size: 100%;
}
.banner-list {
    padding-left: 20px;
    line-height: 35px;
    margin-bottom: 0;
}

.banner-button {
    margin: 20px 0 15px;
    display: inline-block;
}

.banner-button a,
.claim-button a {
    background: #121e4e;
    color: #fff;
    padding: 20px 100px 20px 40px;
    border-radius: 8px;
    font-size: 24px;
    font-weight: 600;
    position: relative;
    display: block;
    transition: 0.5s;
}

.banner-button a:hover,
.claim-button a:hover {
    background: var(--secondary-color);
    transition: 0.5s;
}

.banner-button a:after,
.claim-button a:after {
    position: absolute;
    content: "";
    top: 20px;
    right: -15px;
    width: 100px;
    height: 30px;
    background-image: url("../img/icons/arrow-right.svg");
    background-repeat: no-repeat;
    background-position: left;
}
.rating {
    display: flex;
    align-items: center;
}
.rating h5 {
    color: var(--text-color-1);
    font-family: "Montserrat" !important;
    font-size: 24px;
    font-weight: 600;
}
.star-rating {
    margin-left: 40px;
    text-align: center;
}

/* Qualify */

.qualify {
    padding: 100px 0 70px;
    background: rgba(227, 221, 229, 50%);
}
.qualify-content {
    padding-bottom: 60px;
}
.free-claim {
    background: rgb(116, 158, 175, 20%);
    padding: 30px;
    border: 2px solid var(--primary-color);
    box-shadow: 10px 10px 0px 0px #bcbcbc;
    margin: 0 20px 40px;
}
.qualify .col-md-6 {
    padding: 0;
}
.image img {
    text-align: center;
    margin: 0 auto;
    width: 170px;
}
.claim-content h3 {
    color: var(--secondary-color);
    font-weight: 700;
    font-size: 24px;
    padding: 20px 0;
}
.free-claim .image {
    padding-bottom: 40px;
}

.claim-button a {
    font-size: 17px;
    width: 100%;
}

.claim-content p {
    font-size: 20px;
    color: var(--primary-color);
}
.claim-content {
    min-height: 250px;
    max-height: 250px;
}
.qualify-content p {
    color: var(--text-color-4);
    font-size: 24px;
    font-weight: 400;
    padding-top: 20px;
}
.qualify-content h2 {
    color: var(--primary-color);
    font-weight: 700;
    font-size: 40px;
}
.claim-button {
    padding-top: 50px;
}
.qualify-box {
    width: 70%;
    margin: 0 auto;
}
/* Legal */
.timeline-section {
    text-align: center;
    padding: 100px 0px;
    background: #E5FDFE;
    position: relative;
}

.timeline-section:after {
    content: "";
    position: absolute;
    left: 0px;
    bottom: 0;
    background-image: url(../img/bg/simple-steps-bg.svg);
    width: 320px;
    height: 348px;
    background-size: 100%;
}


.timeline-title {
    font-size: 40px;
    font-weight: 700;
    margin-bottom: 10px;
    color: #1a3c60;
}

.timeline-title span {
    color: #00a0b5;
}

.timeline-subtitle {
    margin-bottom: 40px;
    color: #606062;
    font-size: 20px;
    padding: 30px 0 10px;
}
.timeline-subtitle strong {
    color: var(--primary-color);
    font-style: italic;
}
.timeline {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 30px;
    position: relative;
}

.timeline::before {
    content: "";
    position: absolute;
    top: 0;
    left: -24%;
    right: 0;
    height: 2px;
    background: #32aabe;
    z-index: 1;
    width: 1920px;
}

.timeline-content:after {
    content: "";
    position: absolute;
    top: -25px;
    left: 0;
    background: #00a0b5;
    width: 12px;
    height: 12px;
    border-radius: 30px;
}

.timeline-content {
    position: relative;
}

.timeline-step {
    padding: 20px;
    text-align: left;
    z-index: 2;
    position: relative;
    display: flex;
}

.timeline-step .icon {
    margin-bottom: 15px;
}

.timeline-step img {
    width: 200px;
    height: 60px;
    object-fit: contain;
    margin-top: 10px;
}

.timeline-step h3 {
    font-size: 20px;
    font-weight: 600;
    color: #1a3c60;
    margin-bottom: 10px;
    font-family: "Futura Now Headline" !important;
}

.timeline-step p {
    font-size: 14px;
    color: #606062;
    font-weight: 600;
}

.timeline-btn {
    margin-top: 40px;
}

.btn-primary {
    background: #1a3c60;
    color: #fff;
        padding: 20px 60px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    display: inline-block;
}
.btn-primary:hover {
    background: #00a0b5;
}

.timeline-content h3 span {
    color: var(--text-color-3);
}

.time-line-claim-button a {
    font-size: 17px;
    width: 32%;
    margin: 0 auto;
}
/* Trust */
.trust-section {
    background: #000;
    padding: 80px 0 80px 80px;
    position: relative;
}
.trust-section:after {
    position: absolute;
    content: "";
    right: 0;
    bottom: 0;
    background-image: url("../img/bg/trust-bg.svg");
    background-repeat: no-repeat;
    width: 230px;
    height: 265px;
    z-index: 0 !important;
    background-size: auto;
}
.trust-content h2 {
    color: var(--text-color-1);
    font-size: 40px;
    font-weight: 700;
}
.trust-content p {
    color: var(--text-color-3);
    font-size: 14px;
    font-weight: 400;
    padding-top: 15px;
    margin-bottom: 0;
}
.trust-section .rating {
    display: block;
    text-align: left;
}
.trust-section .star-rating ul {
    display: flex;
    padding: 0;
    justify-content: left;
}
.trust-section .star-rating {
    margin-left: 0;
    text-align: left;
}
.trust-section .rating p {
    font-size: 16px;
    font-weight: 500;
    color: var(--text-color-2);
}

.rating-box h5 {
    font-size: 1rem;
    margin-bottom: 0.5rem;
    font-family: "Montserrat" !important;
    color: var(--text-color-1);
}

.review-count {
    font-size: 0.85rem;
    color: #a8b2bd;
}
.trust-claim-button {
    margin-top: 40px;
}
.trust-right {
    position: relative;
}

.btn-claim {
    display: inline-block;
    margin-top: 1.5rem;
    padding: 0.75rem 1.5rem;
    background: #caf0f8;
    color: #000814;
    font-weight: 600;
    border-radius: 6px;
    text-decoration: none;
    transition: all 0.3s ease;
}
.btn-claim:hover {
    background: #90e0ef;
    color: #000;
}

/* Right reviews */
.review-card {
    flex: 0 0 360px;
    color: #fff;
    transition: transform 0.2s ease; /* small hover smoothness */
}
.review-card h4 {
    margin: 0.5rem 0;
    font-size: 1rem;
    font-weight: 700;
    font-family: "Montserrat" !important;
}
.review-card p {
    font-size: 15px;
    color: var(--text-color-3);
    line-height: 1.5;
    font-weight: 600;
    margin-bottom: 0;
}

/* Responsive */
@media (max-width: 992px) {
    .trust-content {
        text-align: center;
        margin-bottom: 2rem;
    }
    .btn-claim {
        margin-left: auto;
        margin-right: auto;
    }
}
.trust-claim-button a:after {
    position: absolute;
    content: "";
    top: 20px;
    right: -15px;
    width: 100px;
    height: 30px;
    background-image: url(../img/icons/arrow-blue.svg);
    background-repeat: no-repeat;
    background-position: left;
}
.trust-claim-button a {
    background: #E5FDFE;
    color: #121E4E;
    padding: 20px 100px 20px 40px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    position: relative;
    display: block;
    transition: 0.5s;
    width: fit-content;
}
.trust-claim-button a:hover {
    background: #32aabe;
    color: #121E4E;
    transition: 0.5s;
}

/* Faq */
.frequently-asked-question {
    padding: 100px 0;
}
.accordion-wrapper {
    position: relative;
    padding: 20px 0;
    border-bottom: 1px solid var(--primary-color);
}
.acc-head {
    position: relative;
}
.acc-head::after {
    content: "\276F";
    position: absolute;
    right: 0;
    top: 0;
    color: grey;
    transform: rotate(0deg);
    transition: 0.4s;
}
.acc-head.active::after {
    content: "\276F";
    position: absolute;
    top: 0;
    right: 0;
    color: grey;
    transform: rotate(90deg);
    transition: 0.4s;
}
.acc-body {
    display: none;
    padding-top: 1rem;
}
.acc-head h6 {
    font-size: 24px;
    color: var(--primary-color);
    font-weight: 700;
}
.frequently-asked-question h3 {
    font-size: 50px;
    font-weight: 700;
    color: var(--primary-color);
    padding-bottom: 50px;
}
.acc-head h6:hover {
    cursor: pointer;
}

/* Footer */
.footer-section {
    background: var(--secondary-color);
    padding: 100px 0 100px;
    position: relative;
    z-index: 9;
}
.footer-section:after {
    position: absolute;
    content: "";
    background-image: url("../img/bg/footer-overlay.svg");
    bottom: 0;
    right: 0;
    width: 365px;
    height: 450px;
    background-repeat: no-repeat;
    z-index: -9;
}
.footer-logo img {
    margin: 0 auto;
}
.footer-list {
    text-align: center;
    line-height: 40px;
    margin-bottom: 0;
}
.footer-list li a {
    color: var(--color-white-100) !important;
    font-size: 24px;
    font-weight: 600;
    font-family: "Nunito Sans", sans-serif !important;
}
.divider-line-footer {
    border-bottom: 1px solid #fff;
    width: 80%;
    margin: 0 auto;
    padding-top: 50px;
}
.footer-content {
    padding: 50px 0 30px;
    color: #fff;
	z-index: 9;
}

.footer-content h4 {
    font-family: "Montserrat" !important;
    font-weight: 400;
    font-size: 24px;
    padding-bottom: 30px;
}
.footer-content p {
    font-size: 16px;
    line-height: 30px;
    font-weight: 300;
}
.footer-content a {
    color: #fff;
}

.swiper-button-next:after, .swiper-button-prev:after {
    font-size: 20px !important;
}
.swiper-button-next, .swiper-button-prev {
    color: #121e4e !important;
    background: #00a0b5 !important;
    padding: 10px !important;
    width: 40px !important;
    height: 40px !important;
    border-radius: 30px !important;
}
.slider-btns {
    position: absolute;
    right: 50%;
    bottom: -75px;
}
.swiper-button-prev, .swiper-rtl .swiper-button-next {
    left: var(--swiper-navigation-sides-offset, -100px) !important;
    right: auto;
}
/* Mobile view - stack one by one */
@media (max-width: 767px) {
  .mySwiper .swiper-wrapper {
    display: block !important;
  }
  .mySwiper .swiper-slide {
    width: 100% !important;
    margin-bottom: 20px;
  }
  .slider-btns {
    display: none; /* hide arrows on mobile */
  }
	iframe {
    	width: 150px !important;
	}
}
.iframe iframe {
    width: 150px;
    height: 90px;
    float: inline-end;
}
.acc-body ul {
    padding-left: 30px;
    padding-bottom: 20px;
}
.acc-body ul li {
    list-style: disc;
    line-height: 35px;
}