@import url('https://fonts.googleapis.com/css2?family=Rethink+Sans:ital,wght@0,400..800;1,400..800&display=swap');

:root {
    --primary-blue: #1e5aa8;
    --dark-blue: #1D334D;
    --secondary-blue: #0265D8;
    --accent-yellow: #FFD000;
    --dark-blue: #1e3a8a;
    --light-gray: #f8fafc;
}

html,
body {
    overflow-x: hidden;
}

body {
    font-family: "Rethink Sans", sans-serif;
    line-height: 1.6;
}

/* width */
body::-webkit-scrollbar {
    width: 10px;
}

body::-webkit-scrollbar-track {
    box-shadow: inset 0 0 5px grey;
    border-radius: 1px;
}

body::-webkit-scrollbar-thumb {
    background: #ffd000;
    border-radius: 1px;
}

body::-webkit-scrollbar-thumb:hover {
    background: #614f00;
}

/* loader styling start  */
.loader-wrapper {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(269deg, rgba(27, 27, 27, 1) 50%, rgba(2, 152, 216, 1) 100%);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

.loader {
    width: 100%;
    height: 100vh;
    display: block;
    margin: 15px auto;
    position: relative;
    color: #ccc;
    box-sizing: border-box;
    animation: rotation 1s linear infinite;
    display: flex;
    justify-content: center;
    align-items: center;
}

.loader-wrapper.loaded {
    display: none;
}

.loader {
    position: relative;
    width: 120px;
    height: 120px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.circle {
    position: absolute;
    width: 100%;
    height: 100%;
    border: 4px solid #e5e7eb;
    border-top: 4px solid #2563eb;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

.loader svg {
    width: 50px;
    height: 50px;
    fill: #2563eb;
    z-index: 2;
    position: absolute;
    top: 34px;
    /* push house a little up */
}


.circle-text {
    position: absolute;
    bottom: -40px;
    font-size: 18px;
    color: #ffffff;
    font-weight: 500;
    letter-spacing: 1px;
}

.dots::after {
    content: '';
    animation: dots 1.5s steps(3, end) infinite;
}

@keyframes dots {
    0% {
        content: '';
    }

    33% {
        content: '.';
    }

    66% {
        content: '..';
    }

    100% {
        content: '...';
    }
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

.airplane-container {
    position: absolute;
    top: 30px;
    left: 0;
    width: 100%;
    height: 60px;
}

.airplane {
    position: absolute;
    left: 0;
    width: 50px;
    height: 50px;
    animation: fly 3s infinite ease-in-out;
    transform-origin: center;
    top: -10px
}

.airplane svg {
    width: 100%;
    height: 100%;
    fill: #4fc3f7;
    filter: drop-shadow(0 0 5px #00b0ff);
    transform: rotate(90deg);
}

.runway {
    position: absolute;
    bottom: 40px;
    left: 0;
    width: 100%;
    height: 2px;
    background: rgba(255, 255, 255, 0.5);
}

.runway::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.6), transparent);
    animation: runway-light 1.5s infinite linear;
}

@keyframes fly {
    0% {
        left: 0;
        transform: translateY(0) rotate(0);
    }

    25% {
        transform: translateY(0px) rotate(-2deg);
    }

    50% {
        transform: translateY(0) rotate(0);
    }

    75% {
        transform: translateY(0px) rotate(2deg);
    }

    100% {
        left: 100%;
        transform: translateY(0) rotate(0);
    }
}

@keyframes runway-light {
    0% {
        transform: translateX(-100%);
    }

    100% {
        transform: translateX(100%);
    }
}

/* loader styling end  */
/* Hero Section */
.hero-section {
    /* background: url(../images/main-banner.png); */
    background-size: cover;
    background-position: center;
    min-height: 100vh;
    color: white;
    display: flex;
    align-items: center;
    padding: 130px 0px 40px 0px;
}

.hero-tagline {
    color: var(--accent-yellow);
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1rem;
}

.yel-hed {
    color: #FFD000;
    font-size: 16px;
    font-weight: bold;
    text-transform: uppercase;
}

.hero-title {
    font-size: 80px;
    font-weight: bold;
    margin-bottom: 2rem;
    line-height: 80px;
    text-transform: lowercase;
}

.hero-subtitle {
    color: #94a3b8;
    font-size: 1.1rem;
}

.btn-primary-custom,
.btn-outline-custom:hover {
    background-color: var(--secondary-blue);
    border: none;
    padding: 12px 30px;
    border-radius: 25px;
    font-weight: 600;
    /* margin: 0 10px; */
    color: #fff;
}

.btn-outline-custom,
.btn-primary-custom:hover {
    color: #000;
    border: none;
    padding: 12px 30px;
    border-radius: 25px;
    font-weight: 600;
    /* margin: 0 10px; */
    background: var(--accent-yellow);
}

.btn-primary-custom:hover span {
    color: #fff;
}

.btn-primary-custom-btn,
.btn-outline-custom-btn:hover {
    background-color: var(--secondary-blue);
    border: none;
    padding: 12px 30px;
    margin-top: 27px;
    width: 103% !important;
    font-weight: 600;
    /* margin: 0 10px; */
    color: #fff;
}

.btn-outline-custom-btn,
.btn-primary-custom-btn:hover {
    background: var(--accent-yellow);
    border: none;
    padding: 12px 30px;
    margin-top: 27px;
    width: 103% !important;
    font-weight: 600;
    /* margin: 0 10px; */
    color: #fff;
}

/* baner style START  */
.services-box {
    background: #ffffff30;
    border-radius: 12px;
    padding: 20px;
    margin: 20px 0;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(4px);
    border: 1px solid #ccc;
    position: absolute;
    bottom: 0;
}

.service-item {
    color: white;
    position: relative;
}

.service-item:not(:last-child)::after {
    content: '';
    position: absolute;
    right: -15px;
    top: 0;
    bottom: 0;
    width: 1px;
    background: rgba(255, 255, 255, 0.2);
}

.service-title {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: white;
}

.service-description {
    font-size: 12px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
}

/* baner style END  */
/* Navigation */
header {
    position: absolute;
    width: 100%;
    background: transparent;
}

.navbar-brand img {
    height: 80px;
}

/*  */
.hero-section {
    position: relative;
    width: 100%;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

.hero-section .background-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.45);
    z-index: 0;
}

/* .hero-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
} */

.hero-section .content {
    position: relative;
    z-index: 2;
    color: #fff;
    text-align: center;
}

/*  */
.navbar {
    z-index: 1000;
}

.navbar-nav .nav-link {
    color: white !important;
    font-weight: 500;
    margin: 0 15px;
}

.btn-quote {
    background-color: var(--accent-yellow);
    color: var(--dark-blue);
    border: none;
    padding: 8px 20px;
    border-radius: 20px;
    font-weight: 600;
    transition: all .5s ease-in-out;
}

/* Rate Calculator Section */
.rate-calculator {
    padding: 80px 0;
    background-color: var(--light-gray);
}

.calculator-image {
    background: url('https://hebbkx1anhila5yf.public.blob.vercel-storage.com/image-kb1VBKt53pSLymvvEH8r94wcPq6L2J.png');
    background-size: cover;
    background-position: center;
    border-radius: 15px;
    min-height: 400px;
}

.faq-btn {
    text-decoration: none !important;
    color: #fff !important;
}

.faq-btn:hover,
.faq-btn:focus {
    text-decoration: none !important;
    color: #fff !important; 
}
.rate-calculator {
    overflow: hidden;
}

.calculator-form {
    /* background: white; */
    padding: 40px;
    border-radius: 15px;
    /* box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1); */
}

section.cta-sec {
    min-height: 550px;
    /* background: url(../images/join-banner.png); */
    display: flex;
    align-items: center;
}

.calculator-form input,
.calculator-form select {
    background: #f2f6fa;
    padding: 12px 15px;
    width: 103% !important;
}

.HiddenTxt {
    font-size: 18rem;
    font-family: Mitchel;
    font-style: italic;
    color: transparent;
    background-clip: text !important;
    background: linear-gradient(178deg, #B7CDE8, transparent);
    opacity: .2;
    margin-top: -170px;
}

.section-tagline {
    color: var(--secondary-blue);
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1rem;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 2rem;
    line-height: 1.3;
}

/* Pricing Section */
.pricing-section {
    padding: 80px 0;
    background: white;
}

.pricing-intro {
    max-width: 600px;
}

/* .pricing-graphic {
    width: 200px;
    height: 200px;
    background: linear-gradient(45deg, var(--accent-yellow), #fcd34d);
    border-radius: 50%;
    margin: 20px 0;
    position: relative;
} */
/* .pricing-graphic::after {
    content: '';
    position: absolute;
    background-image: url(../images/pric-half-cir.png);
    right: -30px;
    top: 50%;
    width: 150px;
    height: 150px;
    border-radius: 50%;
} */
.pricing-card {
    background: white;
    border-radius: 15px;
    padding: 40px 30px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    height: 100%;
}

.pricing-card.premium {
    background: var(--primary-blue);
    color: white;
    position: relative;
    overflow: hidden;
}

/* .pricing-card.premium::before {
    content: '✨';
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 1.5rem;
} */
.price {
    font-size: 2.5rem;
    font-weight: 700;
    margin: 0;
}

.price.free {
    color: #94a3b8;
}

.step-card h4 {
    font-size: 28px;
    min-height: 68px;
    line-height: 37px;
    display: flex;
    align-items: end;
}

.service-arrow i {
    transform: rotate(-55deg);
}

.price.premium {
    color: var(--accent-yellow);
}

/* How It Works Section */
.how-it-works {
    /* background: var(--dark-blue); */
    color: white;
    padding: 80px 0;
    position: relative;
}

.step-card p {
    font-size: 13px;
    opacity: 0.7;
}

.how-it-works button span {
    text-transform: capitalize;
}

.step-number {
    font-size: 10rem;
    font-weight: 900;
    color: transparent;
    position: absolute;
    top: -100px;
    left: 0;
    background-clip: text !important;
    background: linear-gradient(180deg, #ffffff17, transparent);
}

.step-card {
    position: relative;
    padding: 30px 10px;
    /* margin-bottom: 30px; */
}

.step-one {
    border: 1px solid #FFD000;
    font-size: 14px;
    border-radius: 30px;
    padding: 4px 14px;
}

.step-two {
    border: 1px solid #0265D8;
    font-size: 14px;
    border-radius: 30px;
    padding: 4px 14px;
}

.step-badge {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.8rem;
    display: inline-block;
    margin-bottom: 15px;
}

/* Services Section */
.services-section {
    padding: 80px 0;
    background: var(--light-gray);
}

.service-card {
    /* background: white; */
    border-radius: 15px;
    overflow: hidden;
    /* box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1); */
    transition: transform 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
}

.service-image {
    height: 350px;
    background-size: cover;
    background-position: center;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}


.service-arrow {
    /* position: absolute; */
    /* bottom: 15px; */
    /* right: 15px; */
    background: var(--accent-yellow);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--dark-blue);
}
.image-text {
    position: absolute;
    z-index: 2;
    color: #fff;
    font-size: 24px;
    font-weight: 500;
    text-align: center;
    background: rgba(0,0,0,0.45);
    padding: 5px 12px;
    border-radius: 8px;
}

/* Why Choose Us Section */
.why-choose-section {
    padding: 80px 0;
    background: white;
}

.consolidation-card {
    color: white;
    padding: 40px;
    height: 460px;
    border-radius: 15px;
    background: linear-gradient(352deg, rgb(2 101 216 / 96%) 0%, rgba(1, 53, 114, 1) 100%);
    z-index: 9;
    box-shadow: 0px 20px 4px 4px #777777c2;
}

.consolidation-card::before {
    content: '';
    position: absolute;
    box-shadow: 0px 20px 4px 4px #bfc6cd;
    width: 100%;
    height: 30px;
    bottom: -24px;
    left: 0;
    z-index: -1;
    border-radius: 0px 0px 20px 20px;
}

.consolidation-card::after {
    content: '';
    position: absolute;
    box-shadow: 0px 20px 2px 4px #e8ebed;
    bottom: -47px;
    width: 100%;
    left: 0;
    height: 30px;
    z-index: -1;
    border-radius: 0px 0px 20px 20px;
}

.consolidation-graphic {
    position: absolute;
    /* background-image: url(../images/yel-half-cir.png); */
    background-repeat: no-repeat;
    bottom: 22px;
    right: -20px;
    width: 160px;
    height: 200px;
    opacity: 0.8;
}

/* .worker-image {
    background: url('https://hebbkx1anhila5yf.public.blob.vercel-storage.com/image-lOlDJ2QXhU1Z7PGdKIe9s2KLtFx9Oy.png');
    background-size: cover;
    background-position: center;
    border-radius: 15px;
    min-height: 400px;
} */
/* FAQ Section */
.faq-section {
    padding: 80px 0;
    background: var(--light-gray);
}

/* .faq-image {
    background: url('https://hebbkx1anhila5yf.public.blob.vercel-storage.com/image-kk8RfyzUY9CI0D5LnLrxvNAMnIz53T.png');
    background-size: cover;
    background-position: center;
    border-radius: 15px;
    min-height: 400px;
    position: relative;
} */
.faq-cont {
    width: 56%;
}

.faq-image img {
    width: 100%;
    height: 420px;
    object-fit: cover;
    border-radius: 30px;
}

.fq-al .accordion-header {
    background: #b7cde82e !important;
}

.fq-al .accordion-button:not(.collapsed) {
    background: #b7cde82e;
    color: #1D334D;
}

.fq-al .accordion-body {
    background-color: #b7cde82e;
    color: #1D334D;
}

.fq-al button {
    background: #b7cde82e;
}

.fq-al .accordion {
    background-color: #b7cde82e;
}

.faq-btn {
    position: absolute;
    bottom: 30px;
    left: 30px;
    background: var(--secondary-blue);
    color: white;
    border: none;
    padding: 12px 25px;
    border-radius: 25px;
    font-weight: 600;
}

.accordion-button {
    background: white;
    border: none;
    font-weight: 600;
    font-size: 1.1rem;
    padding: 20px;
}

.accordion-button:not(.collapsed) {
    background: var(--light-gray);
    color: var(--primary-blue);
}

.test-bk {
    background-color: #f8fafc;
    padding: 40px 10px;
    margin-bottom: 80px;
    border-radius: 15px;
}

.inrtst-cont {
    background-color: #FFFFFF;
    padding: 26px;
    border-radius: 10px;
}

.inrtst-cont p {
    font-size: 18px;
    color: #1D334D;
    opacity: 0.7;
}

.inrtst-cont h5 {
    font-size: 20px;
    color: #1D334D;
}

.tes-hed a {
    background-color: #0265D8;
    color: #FFFFFF;
    padding: 15px 39px;
    text-decoration: none;
    text-transform: capitalize;
    border-radius: 50px;
}

.testtimonaial-sec .owl-carousel .owl-nav button.owl-prev,
.testtimonaial-sec .owl-carousel .owl-nav button.owl-next,
.testtimonaial-sec .slick-prev,
.testtimonaial-sec .slick-next {
    z-index: 1;
    width: 44px;
    height: 44px;
    line-height: 34px;
    background: transparent;
    box-shadow: 0 1px 4px rgba(38, 50, 56, .2);
    border-radius: 50%;
    position: absolute !important;
    top: 95% !important;
    border: 1px solid #0265D8;
    transform: translatey(-50%);
    color: transparent;
}

.testtimonaial-sec .owl-carousel .owl-nav button.owl-prev:after,
.testtimonaial-sec .slick-prev:after {
    content: '\f060';
    position: absolute;
    font-family: 'FontAwesome';
    color: #1D334D;
    font-size: 18px;
    top: 4px;
    left: 12px;
}

.testtimonaial-sec .owl-carousel .owl-nav button.owl-next:after,
.testtimonaial-sec .slick-next:after {
    content: '\f061';
    position: absolute;
    font-family: 'FontAwesome';
    color: #1D334D;
    font-size: 18px;
    top: 5px;
    left: 14px;
}

.testtimonaial-sec .slick-prev {
    left: 168% !important;
}

.testtimonaial-sec .slick-next {
    right: -400px !important;
}

.ylw-arw {
    background: linear-gradient(352deg, rgba(255, 255, 255, 0.84) 0%, rgba(255, 255, 255, 1) 100%);
    height: 100%;
    border-radius: 11px;
    overflow: hidden;
}

.arw-yl span {
    margin-left: 33px;
    font-size: 22px;
}

.arw-yl {
    background-color: #FFD000;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    line-height: 80px;
    left: -38px;
    text-align: center;
    color: #1D334D;
}

.inrtst-cont h3 {
    font-size: 40px;
    color: #0265D8;
    font-weight: 400;
}

/* Footer */
.footer {
    background: linear-gradient(352deg, rgba(0, 44, 94, 0.97) 0%, rgba(14, 34, 58, 1) 100%);
    color: white;
    padding: 100px 0 30px;
}

.footer-brand {
    font-size: 57px;
    font-weight: 700;
    margin-bottom: 2rem;
    line-height: 67px;
}

.footer-tagline {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.footer-subtitle {
    color: #94a3b8;
    margin-bottom: 2rem;
}

.social-links a {
    display: inline-block;
    width: 40px;
    height: 40px;
    background: #ffffff;
    border-radius: 50%;
    text-align: center;
    line-height: 40px;
    color: #01182C;
    margin-right: 10px;
    transition: background 0.3s ease;
}

.social-links a:hover {
    background: var(--accent-yellow);
    color: var(--dark-blue);
}

.btn-quote:hover {
    color: var(--accent-yellow);
    background: var(--dark-blue);
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: white;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: white;
}

.footer-section h5 {
    color: white;
    font-weight: 600;
    margin-bottom: 20px;
}

.bg-navyBlue {
    background: #1D334D;
    border-radius: 20px;
    padding: 90px 10px 40px !important;
}

.member-sec {
    padding: 80px 0;
}

.member-sec h3 {
    font-size: 45px;
}

.copyright {
    /* border-top: 1px solid rgba(255, 255, 255, 0.1); */
    padding-top: 30px;
    margin-top: 40px;
    text-align: center;
    color: white;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .step-number {
        font-size: 4rem;
    }
}

/* INNER PAGES START */
.pd-t {
    padding-top: 90px;
}

.pd-b {
    padding-bottom: 90px;
}

.inner-banner {
    /* background-image: url(../images/inner-banner.png); */
    background-repeat: no-repeat;
    background-size: cover;
    padding: 160px 0 40px;
}

.ship-cont h3 {
    font-size: 85px;
    line-height: 95px;
    font-weight: bold;
    color: #1D334D;
}

.ship-cont p {
    font-size: 30px;
    color: #1D334D;
    line-height: 22px;
}

.calcut-al input {
    background: #b7cde869;
    height: 50px;
}

.calcut-al select {
    background: #b7cde869 !important;
    height: 50px;
}

.calcut-al label {
    font-size: 18px;
    color: #9BA8B8;
}

.calcut-al p {
    font-size: 12px;
    color: #9BA8B8;
    margin: 0;
}

.calcut-al button {
    width: 100%;
    background: #0265D8;
    border: 1px solid #0265D8;
    padding: 12px 25px;
    border-radius: 51px;
    /* display: flex; */
    align-items: center;
    justify-content: space-between;
    color: #fff;
}

.bootstrap-select>.dropdown-toggle {
    all: unset;
    /* sab global styles hata dega */
    display: block;
    width: 94% !important;
    text-align: right;
    white-space: nowrap;
    padding: 12px;
    padding: .375rem .75rem;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5;
    color: #212529;
    background-clip: padding-box;
    border: 1px solid #ced4da;
    border-radius: .375rem;
}

.bootstrap-select>.dropdown-toggle {
    position: relative;
    width: 94% !important;
    text-align: right;
    white-space: nowrap;
    padding: 12px;
    background: #e1eaf6;
    display: -webkit-inline-box;
    display: -webkit-inline-flex;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

.select-country {
    color: #9BA8B8;
    background: #9BA8B8;
}

.bootstrap-select .dropdown-toggle {
    color: #212529 !important;
    /* selected text dark */
}

.bootstrap-select .dropdown-menu li a {
    color: #212529 !important;
    /* dropdown items dark */
}

.bootstrap-select .dropdown-menu li a {
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}


.calcut-al h3 {
    font-size: 60px;
    line-height: 75px;
}

.ship-cont li a {
    color: #1D334D;
    text-decoration: none;
}

.ship-cont .active {
    color: #1D334D;
}

.inner-banner .breadcrumb-item+.breadcrumb-item::before {
    float: left;
    padding-right: var(--bs-breadcrumb-item-padding-x);
    color: rgb(255 255 255 / 75%);
    padding: 0 20px;
    content: var(--bs-breadcrumb-divider, "/");
}

.sav-cont p {
    color: #1D334D;
    opacity: 0.7;
}

.regs {
    background-color: #0265D8;
    text-decoration: none;
    padding: 15px 35px;
    border-radius: 50px;
    font-weight: 500;
    display: inline-block;
}

.benefits-sec {
    /* background-image: url(../images/benf.png); */
    background-size: cover;
    background-repeat: no-repeat;
    height: 551px;
}

.benf-cont p {
    opacity: 0.6;
}

.why-cont h3 {
    font-size: 48px;
    color: #1D334D;
    line-height: 65px;
}

.why-cont p {
    color: #1D334D;
    opacity: 0.6;
    font-weight: 400;
}

.para {
    color: #1D334D;
    opacity: 0.6;
    font-weight: 500;
}

.mis-bk {
    background-color: #b7cde85c;
    padding: 80px 30px;
    margin-top: 90px;
}

.freq-ans-al .accordion-item {
    background-color: #b7cde852;
}

.freq-ans-al button {
    background: #b7cde852;
}

.freq-ans-al button {
    font-size: 24px;
    font-weight: 500;
    color: #1D334D;
}

.freq-ans-al .accordion-flush .accordion-item .accordion-button,
.freq-ans-al .accordion-flush .accordion-item .accordion-button.collapsed {
    border-radius: 0;
    background-color: #F1F5FA;
    color: #1D334D;
}

.freq-ans-al .accordion-button::after {
    font-family: 'FontAwesome';
    flex-shrink: 0;
    width: 0;
    height: 13px;
    margin-left: auto;
    content: "\2b";
    background-repeat: no-repeat;
    margin-right: 10px;
    font-size: 15px;
}

.trck-cont h3 {
    font-size: 60px;
    text-align: center;
    line-height: 70px;
}

.trck-cont input {
    background: #b7cde869;
    height: 50px;
}

.trck-cont label {
    font-size: 18px;
    color: #9BA8B8;
}

/* INNER PAGES END */

.checklist {
    list-style: none;
    /* remove default bullets */
    padding: 0;
    margin: 0;
}

.checklist li {
    position: relative;
    padding-left: 2rem;
    margin-bottom: 0.5rem;
}

/* Add the check icon using pseudo-element */
.checklist li::before {
    content: "\f00c";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    position: absolute;
    left: 0;
    top: 0;
    color: var(--accent-yellow);
    font-size: 1rem;
}

/* custom */

.para-1 span {
    display: block;
    position: relative;
    padding-left: 20px;
}

.para-1 span::before {
    content: "✔";
    font-weight: bold;
    position: absolute;
    left: 0;
    top: 0;
}

.para-1 strong {
    display: block;
}

/* end */

@media (max-width: 991px) {
    .services-box {
        position: unset;
    }

    .hero-section {
        height: unset;
    }

    div#navbarNav {
        background: #0000003b;
        backdrop-filter: blur(5px);
        padding: 20px;
        border-radius: 10px;
    }

    button.navbar-toggler {
        color: #fff !important;
        z-index: 99 !important;
        border: 1px solid #fff;
        display: flex;
        min-height: 36px;
        justify-content: center;
        align-items: center;
    }

    span.navbar-toggler-icon {
        height: 2px;
        width: 22px;
        background: antiquewhite;
        position: relative;
        margin: 5px;
    }

    span.navbar-toggler-icon::before {
        content: "";
        height: 100%;
        width: 100%;
        position: absolute;
        background: #fff;
        top: -7px;
        left: 0;
    }

    span.navbar-toggler-icon::after {
        content: "";
        height: 100%;
        width: 100%;
        position: absolute;
        background: #fff;
        bottom: -7px;
        left: 0;
    }
}

@media (max-width: 767px) {
    .hero-title {
        font-size: 2.5rem;
        line-height: unset !important;
        margin-bottom: 10px;
    }

    .step-number {
        top: -50px;
    }

    .step-number {
        font-size: 6rem;
    }

    .bg-navyBlue>div:nth-child(1) {
        margin-bottom: 50px;
    }

    .member-sec h3 {
        font-size: 26px;
    }

    .footer-brand {
        font-size: 39px;
        line-height: 42px;
    }

    .copyright {
        padding-top: 30px;
        margin-top: 20px;
    }

    .ship-cont h3, .calcut-al h3, .why-cont h3, .section-title {
        font-size: 38px;
        line-height: 40px;
    }

    .ship-cont p {
        font-size: 16px !important;
    }

}