﻿/* ==============================
   Global Styles & Variables
   ============================== */

:root {
    --primary-color: #383B8C;
    --secondary-color: #85BC20;
    --dark-color: #1E1E1E;
    --light-color: #FFFFFF;
    --text-color: #090F32;
    --font-lora: "Lora", serif;
    --font-plus: "Plus Jakarta Sans", sans-serif;
}


* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    font-size: 62.5%;
    scroll-behavior: smooth;
}

li {
    list-style: none;
}

a {
    text-decoration: none;
}


/* ==============================
   Header Section
   ============================== */

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.5rem 5rem 1.5rem 5rem;
    background-color: white;
}

.hamburger {
    display: none;
}

.bar {
    display: block;
    width: 25px;
    height: 3px;
    margin: 5px auto;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    /* background-color: #101010; */
    background-color: #1E1E1E;
}

.nav-menu {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}

.nav-item {
    /* margin-left: 3rem; */
    display: flex;
    align-items: center;
    /* Ensures vertical alignment */
}

.nav-link {
    font-size: 18px;
    font-weight: 400;
    color: #1E1E1E;
    white-space: nowrap;
    /* Prevents text from wrapping */
    flex-shrink: 0;
    /* Ensures the link doesn't shrink */
}

.dropdown {
    position: relative;
}

/* Style for dropdown menu */
.dropdown-menu {
    position: absolute;
    top: 100% !important;
    left: 0;
    width: 110%;
    display: none;
    gap: 30px;
    height: 3rem;
    align-items: end;
    transition: all 3s ease-in-out;
    padding-left: 1.4rem;
}

/* Style for dropdown items */
.dropdown-menu a {
    display: block;
    color: #383B8C;
    text-decoration: none;
    white-space: nowrap;
    font-family: "Plus Jakarta Sans", serif;
    font-size: 16px;
}

/* Show dropdown on hover */
.dropdown .nav-works:hover .dropdown-menu {
    display: flex;
}

.dropdown .nav-use:hover .dropdown-menu {
    display: flex;
}

.dropdown .nav-blog:hover .dropdown-menu {
    display: flex;
}

.dropdown .nav-price:hover .dropdown-menu {
    display: flex;
}


.nav-link:hover {
    color: #482ff7;
}

.nav-logo {
    width: 120px;
    height: 60px;
}

.nav-logo img {
    width: 100%;
}

.btn {
    border: 1px solid #CCCCCC;
    font-family: "Lora", serif;
    color: #1E1E1E;
    background-color: transparent !important;
    padding: 12px 20px;
    border-radius: 10px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}


/* ==============================
   Utility Classes
   ============================== */

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 25px;
}

/* ==============================
   Hero Section
   ============================== */
.hero-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    /* Default: 3 columns */
    gap: 20px;
    padding: 0 0 0 5rem;
    height: 100%;
    background-color: #85BC20;
    max-width: 100%;
    /* Prevents horizontal overflow */
    overflow: hidden;
    /* height: 80vh; */
}

/* Left column (Text & CTA) */
.hero-content {
    grid-column: span 1;
    max-width: 100%;
    padding: 6rem 0;
}

/* Right column (Image) */
.hero-right {
    grid-column: span 2;
    position: relative;
    /* background-color: red; */
}

.hero-right img {
    max-width: 100%;
    height: auto;
    object-fit: contain;
}


.hero-right .main-hero {
    position: absolute !important;
    bottom: 0;
    left: 40%;
    transform: translateX(-40%);
    z-index: 99;
    opacity: 0;
    /* Hide initially */
    transition: opacity 1s ease-in-out;
}

.hero-right .show {
    opacity: 1;
}

.main-hero-box {
    background-color: white;
    padding: 1.5rem;
    border-radius: 8px;
    max-width: 235px;
}

.main-hero-box.box-1 {
    position: absolute;
    z-index: 120;
    left: 250px;
    bottom: 48px;
}

.main-hero-box.box-2 {
    position: absolute;
    z-index: 120;
    right: 390px;
    bottom: 48px;
}

.main-hero-box p {
    font-weight: 400;
    font-family: "Plus Jakarta Sans", serif;
    font-size: 14px;
    text-align: start;
    color: black;
}

.main-hero-box.box-1 p span {
    color: #383B8C;
    font-weight: 700;
}

.main-hero-box.box-2 p span {
    color: #85BC20;
    font-weight: 700;
}

.blue-card {
    /* background-color: #383B8C; */
    max-width: 300px;
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 10px;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    position: absolute;
    right: 5%;
    z-index: 140;
    top: 30%;
    transform: translateY(-30%);
}

.blue-card p {
    font-family: "Plus Jakarta Sans", serif;
    color: white;
    font-size: 2rem;
}

.white-card {
    background-color: white;
    width: max-content;
    padding: 10px;
    border-radius: 14px;
    position: absolute;
    right: 25%;
    top: 10%;
    z-index: 160;
}

.white-card p {
    color: #090F32;
    font-weight: 400;
    font-family: "Plus Jakarta Sans", serif;
    text-align: start;
}

.white-card h4 {
    color: #090F32;
    font-weight: 500;
    font-family: "Plus Jakarta Sans", serif;
    font-size: 25px;
    margin-top: 0.7rem;
}

.hero-right .abs-img {
    position: absolute !important;
    right: -3rem;
    bottom: 0;
    z-index: -0;
}

/* Headings & Text */
.hero h1 {
    font-size: 55px;
    font-weight: 600;
    color: #fff;
    font-family: "Lora", serif;
    line-height: 60px;
    word-wrap: break-word;
}

.hero p {
    color: white;
    font-family: "Plus Jakarta Sans", sans-serif;
    text-align: start;
    margin-top: 2rem;
    word-wrap: break-word;
    font-size: large;
}

/* Boxed Text */
.box-text {
    background-color: #FFFFFF4D;
    padding: 10px 16px;
    border-radius: 8px;
    width: max-content;
    margin-bottom: 2rem;
}

    .box-text a {
        font-size: 11px;
        font-weight: 400;
        font-family: "Lora", serif;
        color: white;
    }

/* Call-to-Action Button */
.hero-btn {
    background-color: #FFFFFF;
    color: #383B8C;
    font-family: "Plus Jakarta Sans", sans-serif;
    padding: 12px 24px;
    font-size: 1.2rem;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: 0.3s;
    margin-top: 4rem;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    max-width: 100%;
    white-space: nowrap;
}

    .hero-btn span {
        color: #383B8C;
        font-weight: 700;
    }

/* ==============================
   Brands Section
   ============================== */

.slider {
    border-top: 2px solid #D8D8D8;
    border-bottom: 2px solid #D8D8D8;
    padding: 6rem 0 6rem 0;
    margin-top: 7rem;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: var(--height);
    overflow: hidden;
    position: relative;
    mask-image: linear-gradient(to right, transparent, #000, transparent);
}

    .slider .list {
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 50px;
        width: calc(var(--width) * var(--quantity) * 2);
        /* Doubling to allow seamless looping */
        position: absolute;
        animation: autoRun 10s linear infinite;
    }

        /* Individual Brand Items */
        .slider .list .item {
            width: var(--width);
            height: auto;
            flex-shrink: 0;
        }

            .slider .list .item img {
                width: 100%;
                height: 100%;
            }

    /* Pause animation on hover */
    .slider:hover .list {
        animation-play-state: paused;
    }

    /* Pause when user clicks */
    .slider:active .list {
        animation-play-state: paused;
    }

/* Keyframes for Sliding Effect */
@keyframes autoRun {
    from {
        transform: translateX(0%);
    }

    to {
        transform: translateX(calc(var(--width) * -1 * var(--quantity)));
    }
}



/* ==============================
   Why Choose Section
   ============================== */
.whyChoose-wrapper {
    padding-top: 12rem;
}

.heading {
    font-size: 40px;
    font-weight: 500;
    color: #1E1E1E;
    margin-bottom: 5rem;
    font-family: "Lora", serif;
    text-align: center;
}

    .heading span {
        color: #92C238;
    }

.whyChoose-box {
    border: 2px solid #CCCCCC;
    border-radius: 10px;
    padding: 3rem 2rem;
    width: 90%;
    margin: auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    /* Two columns on desktop */
    gap: 2rem;
    margin-top: 2rem;
}

.left-side {
    /*display: flex;*/
    align-items: center;
    gap: 8rem;
    width: 400px;
}

.left-side h1 {
    font-family: "Plus Jakarta Sans", serif;
    /*width: 20%;*/
    font-weight: 500;
    font-size: 20px;
    color: #090F32 !important;
}

.right-side {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width:400px;
}

    .right-side p {
        color: #4F4F4F;
        font-family: "Plus Jakarta Sans", serif;
        font-size: 16px;
        width: 60%;
        text-align: start;
    }

    .right-side a {
        display: inline-flex;
        align-items: center;
        gap: 10px;
        color: #090F32;
    }

.left-side img {
    width: 40px;
}

/* ==============================
   How it works Section
   ============================== */

.howItWorks-wrapper {
    padding-top: 12rem;
}

.services-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    margin: auto;
    width: 85%;
    margin-top: 8rem;
}

.services-box {
    background-color: #F3F7F8;
    color: white;
    width: 260px;
    padding: 30px 20px;
    border-radius: 12px;
    position: relative;
    gap: 10px;
    transition: all 0.3s ease-in-out;
}

    .services-box h3 {
        color: #090F32;
        font-size: 18px;
        font-weight: 500;
        font-family: "Plus Jakarta Sans", serif;
    }

    .services-box p {
        color: #4F4F4F;
        font-size: 14px;
        font-family: "Plus Jakarta Sans", serif;
    }

    /* Centering the icon inside the box */
    .services-box .icon {
        position: absolute;
        top: -30px;
        left: 50%;
        transform: translateX(-50%);
        background-color: #383B8C;
        color: #d2691e;
        width: 60px;
        height: 60px;
        display: flex;
        justify-content: center;
        align-items: center;
        border-radius: 20px;
        box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
    }

    .services-box h3,
    .services-box p {
        margin: 0px;
        padding-top: 20px;
        text-align: center;
        /* Avoid overlap with absolute icon */
    }

.process-arrow {
    width: 100px;
    height: auto;
    display: block;
}


/* ==============================
   Pricing Section
   ============================== */

.pricing-wrapper {
    padding-top: 12rem;
}

.container {
    max-width: 1200px;
    margin: auto;
}

/* Flexbox for Two Columns */
.pricing-content {
    display: flex;
    flex-wrap: wrap;
    /* gap: 2rem; */
}

/* Left Column (Text) */
.pricing-text {
    flex: 1;
    min-width: 300px;
    margin-top: 4rem;
}

    .pricing-text h2 {
        font-size: 45px;
        margin-bottom: 3rem;
        font-family: "Lora", serif;
        font-weight: 500;
    }

    .pricing-text p {
        display: flex;
        align-items: center;
        gap: 10px;
        margin-top: 1.5rem;
    }

        .pricing-text p span {
            color: #4F4F4F;
            font-size: 14px;
            font-family: "Plus Jakarta Sans", serif;
        }

/* Right Column (Image) */
.pricing-image {
    flex: 1;
    display: flex;
    justify-content: center;
    min-width: 300px;
}

    .pricing-image img {
        max-width: 500px;
        height: auto;
    }

/* BLOGS */
.blogs-wrapper {
    padding: 2rem 3rem;
    padding-top: 12rem;
}

    .blogs-wrapper .heading {
        margin-bottom: 1rem;
    }

p {
    color: #4F4F4F;
    font-size: 14px;
    font-family: "Plus Jakarta Sans", serif;
    text-align: center;
    width: 30%;
    margin: auto;
}



.grid-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    grid-gap: 40px;
    margin-top: 8rem;
}

.card-top img {
    display: block;
    width: 100%;
}

.card {
    background: #fff;
    padding: 20px;
    border-radius: 8px;
    /* box-shadow: 0px 0px 10px rgb(0 0 0 / 20%); */
    border: 1px solid #CCCCCC;
}

.card-top {
    border-top-left-radius: 20px;
    border-top-right-radius: 20px;
    overflow: hidden;
}

.card-info h2 {
    font-size: 30px;
    margin: 10px 0 30px 0;
    font-weight: 500;
    font-family: "Plus Jakarta Sans", serif;
    width: 75%;
    color: #090F32;
}

.date {
    margin: 20px 0;
}

.card span,
p {
    font-size: 15px;
    display: block;
    width: 100%;
}

.excerpt {
    color: #aeaeae;
}

.flex-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.card-bottom {
    margin-top: 20px;
}

.blog-btn {
    border: 1px solid #5A76FF;
    border-radius: 5px;
    padding: 1rem 1.5rem;
    display: inline-flex !important;
}


/* ==============================
   Get Started Section
   ============================== */
.getStarted-wrapper {
    padding-top: 12rem;
}

    .getStarted-wrapper .heading {
        margin-bottom: 1rem;
    }

.getStarted-curve {
    position: absolute;
    top: 100%;
    left: 15%;
    transform: translateX(-45%);
}

.image-container {
    background-color: #F3F7F8;
    border-radius: 20px;
    padding: 50px;
    margin-top: 115px;
}

    .image-container img {
        width: 100%;
    }

/* Disable scrolling when menu is open */
.no-scroll {
    overflow: hidden;
}

/* ==============================
   Footer Section
   ============================== */
.site-footer {
    color: #1E1E1E;
    font-size: 14px;
    padding: 5rem 2rem 0rem 2rem;
    margin-top: 10rem;
    font-family: "Plus Jakarta Sans", serif;
    border-top: 1px solid #CCCCCC !important;
}

.footer-container {
    max-width: 1200px;
    margin: auto;
}

/* GRID LAYOUT */
.footer-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr 1fr;
    gap: 2rem;
}

/* Footer About Section */
.footer-about {
    max-width: 70%;
}

    .footer-about h6 {
        font-size: 25px;
        margin-bottom: 2rem;
    }

    .footer-about p {
        color: #1E1E1E;
        text-align: start !important;
        font-weight: 400;
        line-height: 25px;
        margin-bottom: 1rem;
        font-size: 14px;
    }

/* Footer Links */
.footer-links {
    width: 100%;
}

    .footer-links h6 {
        margin-bottom: 2rem;
        font-size: 16px;
        font-weight: 500;
    }

    .footer-links ul {
        list-style: none;
        padding: 0;
    }

        .footer-links ul li {
            margin-bottom: 20px;
        }

            .footer-links ul li a {
                color: #1E1E1E;
                text-decoration: none;
                transition: color 0.3s ease;
                font-weight: 400;
                margin-left: 5px;
            }

                .footer-links ul li a:hover {
                    color: #5A76FF;
                }

/* Bottom Footer */
.footer-bottom {
    display: flex;
    justify-content: space-between;
    border-top: 1px solid #CCCCCC !important;
    padding-top: 3rem;
    padding-bottom: 5rem;
    margin-top: 4rem;
}



    /* Social Icons */
    .footer-bottom .copyright-text {
        font-family: "Plus Jakarta Sans", serif;
        color: #4D4D4D;
        width: max-content;
        margin-left: 0;
    }

.links {
    display: inline-flex;
    gap: 20px;
}

    .links a {
        font-family: "Plus Jakarta Sans", serif;
        color: #ffffffd7;
        font-size: 14px;
        transition: color 0.3s ease;
    }

        .links a:hover {
            color: #5A76FF;
        }

.OnlyAsGood {
    display: flex;
    width: 700px;
    margin-left: 40px;
    outline-color: black;
    outline-style: solid;
    margin-top: 2px;
    padding-left: 0px;
    font-size: 1.3rem;
}

.menu-alert {
    display: none;
}

.deposit {
    margin-top: 20px;
    margin-left: 40px;
    font-size: 40px;
}

.deposit-text {
    margin-left: 40px;
    font-size: 20px;
    margin-top: 5px;
}

.nav-link-mob {
    display:none!important;
}

.nav-item-mob {
    display:none!important
}

.left-side-wide {
    display: inline-block;
    overflow: hidden;
    /*width: 150px !important;*/
    width:40%;
    height: 80px !important;
    justify-content: center;
    align-items: center;
    box-sizing: content-box;
}

.left-side-wide img {
    object-fit: fill;
    width:150px;
    height:80px;
    box-sizing: content-box;
}

.iconCheap {
    display: inline-block;
    width: 10%;
    position:relative;
    top:-5px;
    left:20px;
}

.whyChoose-header {
    display:inline-block;
    width:45%;
    align-content:center;
    position:relative;
    top:-30px;
    left:65px;
}

    /* ==============================
RESPONSIVENESS START
============================== */
@media only screen and (max-width: 1099px) {
    .hero-container {
        grid-template-columns: 1fr;
        /* Single-column for mobile */
        padding: 1rem 1.5rem 0 1.5rem;
        text-align: center;
        justify-content: center;
        max-width: 100%;
        /* height: 110vh; */
    }

    .hero {
        padding: 0px;
    }

    .hero-content {
        grid-column: span 1;
        /* text-align: center; */
        /* max-width: 60%;
            margin: auto; */
    }

    .box-text {
        width: max-content !important;
        margin: auto;
        margin-bottom: 2rem;
    }

    .hero-content h1 {
        max-width: 45%;
        margin: auto;
    }

    .hero-btn {
        width: max-content !important;
    }

    .hero h1 {
        font-size: 30px !important;
        line-height: 38px;
    }

    .blue-card {
        display: none;
    }

    .abs-img {
        display: none;
    }


    .white-card {
        display: none;
    }

    .main-hero-box {
        /* position: relative; */
        max-width: 185px;
        min-height: 60px;
    }

        .main-hero-box.box-1 {
            bottom: 35px;
            left: 0px;
        }

        .main-hero-box.box-2 {
            right: 1px;
            bottom: 30px;
        }

        .main-hero-box p {
            text-align: start;
            font-size: 8px !important;
        }

    .dropdown {
        position: static;
    }

    .dropdown-menu a:hover {
        color: #383B8C;
    }

    .mobile-dropdown {
        position: relative;
    }

    .dropdown-menu {
        display: none;
        flex-direction: column;
        align-items: flex-start;
        justify-content: flex-start;
        gap: 12px !important;
        margin-top: 1rem;
        position: static;
        height: 100%;
        padding-left: 0;
    }

        .dropdown-menu a {
            color: white;
            font-size: 14px;
            width: 100%;
        }

    .mobile-dropdown.mobile-menu .dropdown-menu {
        display: flex;
    }


    .nav-item {
        flex-direction: column;
        justify-content: flex-start;
        align-items: flex-start;
    }



    .hero p {
        font-size: 16px;
        margin-top: 1.5rem;
    }

    .hero-btn {
        width: 100%;
        justify-content: center;
    }

    .hero-right {
        grid-column: span 1;
        height: 290px;
        max-width: 461px;
        width: 100%;
        margin-left: auto;
        margin-right: auto;
    }

    .hero-img {
        max-width: 100%;
        height: auto;
        object-fit: contain;
        bottom: 200px !important;
    }

    .box-text {
        width: 100%;
    }

        .box-text p {
            font-size: 8px;
        }

    .navbar {
        justify-content: end;
    }

    .nav-logo {
        margin: auto;
        margin-top: 1rem;
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 0;
        flex-direction: column;
        justify-content: flex-start;
        /* background-color: #fff; */
        background-color: #222;
        width: 70%;
        height: 100%;
        text-align: start;
        align-items: flex-start;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
        z-index: 999;
        padding: 4rem 2rem;
    }

    .overlay {
        position: fixed;
        background-color: rgba(0, 0, 0, 0.5);
        z-index: -999;
        width: 100%;
        height: 100%;
        top: 0;
        right: 0;
        left: 0;
        display: none;
    }

    .nav-link {
        color: #fff;
        text-align: start;
    }

    .nav-logo {
        font-size: 28px;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-item {
        margin: 0.5rem 0;
        width: 100%;
    }

    .btn {
        display: none;
    }

    .hamburger {
        display: block;
        cursor: pointer;
        z-index: 989;
    }

        .hamburger.active .bar:nth-child(2) {
            opacity: 0;
        }

        .hamburger.active .bar:nth-child(1) {
            transform: translateY(8px) rotate(45deg);
        }

        .hamburger.active .bar:nth-child(3) {
            transform: translateY(-8px) rotate(-45deg);
        }

    .header {
        position: relative;
    }

    /* HERO */
    .hero {
        height: auto;
        max-height: none;
        padding: 3rem 1rem;
    }

        .hero h1 {
            font-size: 2rem;
        }

    .hero-images img {
        width: 140px;
        height: 140px;
    }

    .whyChoose-wrapper {
        scroll-margin-top: -43rem;
    }

    .howItWorks-wrapper {
        scroll-margin-top: -50rem;
    }

    .pricing-wrapper {
        scroll-margin-top: -20rem;
    }

    .blogs-wrapper {
        scroll-margin-top: -35rem;
    }

    .whyChoose-box {
        width: 100%;
    }

    .services-container {
        width: 100%;
        flex-wrap: wrap;
        gap: 6rem;
    }

    .process-arrow {
        display: none !important;
    }

    .services-box {
        width: 100%;
    }

    .pricing-content {
        flex-direction: column;
    }

    .pricing-image {
        order: -1;
        /* Move image above text on mobile */
    }

        .pricing-image img {
            max-width: 90%;
            height: auto;
        }

    .pricing-text h2 {
        font-size: 30px;
    }

    /* why choose */
    /* WHY CHOOSE CSS */
    .whyChoose-box {
        grid-template-columns: 1fr;
        /* Single column on mobile */
    }

    .left-side h1 {
        width: 50%;
    }

    .left-side {
        flex-direction: column;
        gap: 10px;
        align-items: flex-start;
    }

    .right-side {
        flex-direction: column;
        align-items: flex-start !important;
        gap: 10px;
    }

        .right-side p {
            width: 100%;
            text-align: start;
        }

        .right-side a {
            font-size: 14px;
        }

    /* how it works */
    .services-container {
        flex-direction: column;
    }

    .process-arrow {
        display: none !important;
    }

    /* blogs */
    .card-info h2 {
        font-size: 20px;
        width: 100%;
    }

    /* GET STARTED */
    .image-container {
        padding: 20px;
        border-radius: 5px;
    }

    /* FOOTER CSS */
    .footer-grid {
        grid-template-columns: 1fr;
    }

    .footer-about p {
        width: 100%;
    }

    .footer-links ul {
        margin: 0;
        gap: 2px;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 1rem;
    }

    .copyright-text {
        font-size: 8px;
    }

    .links a {
        font-size: 12px;
    }

    .slider {
        mask-image: linear-gradient(to right, white, #000, white);
    }

    .hero-content p {
        text-align: center;
    }

    .OnlyAsGood {
        width: 100%;
        color: white;
        background-color: #85BC20;
        outline-style: none;
        margin-top: 0px;
        margin-left: 0px;
        padding-left: 40px;
        margin-right: 2px;
    }

    .nav-link-hide {
        display: none;
    }

    .nav-link-mob {
        display: inline !important;
    }

    .nav-item-mob {
        display: flex !important
    }

    .left-side {
        margin: auto;
        width: 150px;
        text-align: center;
        justify-content: center;
    }

    .iconCheap {
        margin-left: 50px;
        display: flex;
        position: initial;
        top: 0;
        left: 0;
        border-radius: 50%;
    }

    .whyChoose-header {
        margin: auto;
        width: 300px !important;
        text-align: center;
        margin-left: -75px;
        display: block;
        position: initial;
        top: 0px;
        left: 0px;
    }

    .right-side {
        margin: auto;
        width: 300px;
        text-align: center;
    }

        .right-side p {
            text-align: center
        }

        .right-side a {
            margin: auto;
            width: 120px;
        }

            .right-side a span {
                margin-left: 20px;
            }

    .left-side-wide {
        display: none;
    }

    .left-side h1 {
        width: 20%;
    }

}

    @media (min-width: 360px) and (max-width: 375px) {
        /* .hero-container {
                height: 90vh;
            } */

        .hero-content h1 {
            font-size: 3rem !important;
            max-width: 200% !important;
            margin-right: auto;
        }

        .hero-content p {
            text-align: center;
        }



        .box-text {
            width: 100% !important;
        }
    }

    @media (min-width: 344px) and (max-width: 491px) {
        .hero-right {
            max-width: 350px;
        }

        .hero {
            padding: 0px;
        }

        .main-hero-box {
            max-width: 160px;
            display: flex;
        }

            .main-hero-box p {
                font-size: 10px !important;
            }

            .main-hero-box.box-1 {
                bottom: 35px;
                left: 0px;
            }

            .main-hero-box.box-2 {
                right: 1px;
                bottom: 35px;
            }

        .hero-content h1 {
            font-size: 3rem !important;
            max-width: 200% !important;
            margin-right: auto;
        }

        .hero-content p {
            text-align: center;
        }
    }

    @media (min-width: 491px) and (max-width: 1099px) {
        /* .hero-container {
                height: 115vh;
            } */

        .hero {
            padding-top: 0px;
        }

        .hero-content h1 {
            max-width: 200% !important;
            margin: auto;
        }

        .main-hero-box {
            /* position: relative; */
            max-width: 210px;
            min-height: 70px;
            display: flex;
        }

            .main-hero-box p {
                font-size: 12px !important;
            }

            .main-hero-box.box-1 {
                bottom: 49px;
                left: 0px;
            }

            .main-hero-box.box-2 {
                right: 3px;
                bottom: 49px;
            }
    }

    @media (min-width: 500px) and (max-width: 535px) {
        /* .hero-container {
                height: 116vh;
            } */

        .hero-content h1 {
            max-width: 80% !important;
            margin: auto;
        }
    }

    @media (min-width: 535px) and (max-width: 580px) {
        /* .hero-container {
                height: 116vh;
            } */

        .hero-content h1 {
            max-width: 70% !important;
            margin: auto;
        }
    }

    @media (min-width: 580px) and (max-width: 608px) {
        /* .hero-container {
                height: 116vh;
            } */

        .hero-content h1 {
            max-width: 80% !important;
            margin: auto;
        }
    }

    @media (min-width: 609px) and (max-width: 635px) {
        /* .hero-container {
                height: 116vh;
            } */

        .hero-content h1 {
            max-width: 80% !important;
            margin: auto;
        }
    }

    @media (min-width: 635px) and (max-width: 675px) {
        /* .hero-container {
                height: 116vh;
            } */

        .hero-content h1 {
            max-width: 70% !important;
            margin: auto;
        }
    }

    @media (min-width: 675px) and (max-width: 691px) {
        /* .hero-container {
                height: 114vh;
            } */

        .hero-content h1 {
            max-width: 70% !important;
            margin: auto;
        }
    }

    @media (min-width: 691px) and (max-width: 730px) {
        /* .hero-container {
                height: 114vh;
            } */

        .hero-content h1 {
            max-width: 70% !important;
            margin: auto;
        }
    }

    @media (min-width: 730px) and (max-width: 770px) {
        /* .hero-container {
                height: 80vh;
            } */

        .hero-content h1 {
            max-width: 60% !important;
            margin: auto;
        }
    }

    @media (min-width: 770px) and (max-width: 810px) {
        /* .hero-container {
                height: 114vh;
            } */

        .hero-content h1 {
            max-width: 60% !important;
            margin: auto;
        }
    }



    @media (min-width: 1099px) and (max-width: 1114px) {
        /* .hero-container {
                height: 90vh;
            } */

        .navbar {
            padding: 0.5rem 2rem 1.5rem 2rem;
        }

        .nav-link {
            font-size: 13px;
        }

        .white-card {
            top: 18%;
            left: 45%;
        }

        .hero-content h1 {
            font-size: 50px;
        }

        .hero-right .main-hero {
            left: 30%;
        }

        .main-hero-box {
            max-width: 210px;
        }

            .main-hero-box.box-1 {
                left: 5px;
                bottom: 45px;
            }

            .main-hero-box.box-2 {
                right: 180px;
                bottom: 45px;
            }

        .blue-card {
            right: 3%;
        }
    }

    @media (min-width: 1114px) and (max-width: 1138px) {
        /* .hero-container {
                height: 90vh;
            } */

        .navbar {
            padding: 0.5rem 2rem 1.5rem 2rem;
        }

        .nav-link {
            font-size: 14px;
        }

        .white-card {
            top: 18%;
            left: 47%;
        }

        .hero-content h1 {
            font-size: 50px;
        }

        .hero-right .main-hero {
            left: 30%;
        }

        .main-hero-box {
            max-width: 220px;
        }

            .main-hero-box.box-1 {
                left: 5px;
                bottom: 45px;
            }

            .main-hero-box.box-2 {
                right: 193px;
                bottom: 45px;
            }
    }

    @media (min-width: 1138px) and (max-width: 1174px) {
        /* .hero-container {
                height: 90vh;
            } */

        .navbar {
            padding: 0.5rem 2rem 1.5rem 2rem;
        }

        .nav-link {
            font-size: 14px;
        }

        .white-card {
            top: 18%;
            left: 48%;
        }

        .hero-content h1 {
            font-size: 50px;
        }

        .hero-right .main-hero {
            left: 30%;
        }

        .main-hero-box {
            max-width: 220px;
        }

            .main-hero-box.box-1 {
                left: 8px;
                bottom: 45px;
            }

            .main-hero-box.box-2 {
                right: 210px;
                bottom: 45px;
            }
    }

    @media (min-width: 1174px) and (max-width: 1199px) {
        /* .hero-container {
                height: 90vh;
            } */

        .navbar {
            padding: 0.5rem 2rem 1.5rem 2rem;
        }

        .nav-link {
            font-size: 15px;
        }



        .white-card {
            top: 18%;
            left: 50%;
        }

        .hero-content h1 {
            font-size: 50px;
        }

        .hero-content p {
            text-align: start;
        }

        .hero-right .main-hero {
            left: 30%;
        }

        .main-hero-box {
            max-width: 230px;
        }

            .main-hero-box.box-1 {
                left: 12px;
                bottom: 45px;
            }

            .main-hero-box.box-2 {
                right: 220px;
                bottom: 45px;
            }
    }

    @media (min-width: 1199px) and (max-width: 1244px) {
        /* .hero-container {
                height: 90vh;
            } */

        .navbar {
            padding: 0.5rem 2rem 1.5rem 2rem;
        }

        .nav-link {
            font-size: 15px;
        }

        .hero-content p {
            text-align: start !important;
        }

        .white-card {
            top: 18%;
            left: 51%;
        }

        .hero-content h1 {
            font-size: 50px;
        }

        .hero-right .main-hero {
            left: 30%;
        }

        .main-hero-box {
            max-width: 240px;
        }

            .main-hero-box.box-1 {
                left: 12px;
                bottom: 45px;
            }

            .main-hero-box.box-2 {
                right: 245px;
                bottom: 45px;
            }
    }

    @media (min-width: 768px) and (max-width: 829px) {
        .hero-img {
            bottom: 0px !important;
            right: -200px !important;
        }

        .abs-img {
            display: block;
            bottom: 0px;
        }

        .blue-card {
            display: block;
            right: -40%;
            top: -20%;
        }
    }

    @media (min-width: 829px) and (max-width: 999px) {
        .hero-img {
            bottom: 0px !important;
            right: -210px !important;
        }

        .abs-img {
            display: block;
            bottom: 0px;
        }

        .blue-card {
            display: block;
            right: -40%;
            top: -20%;
        }
    }

    @media (min-width: 999px) and (max-width: 1099px) {
        .hero-img {
            bottom: 0px !important;
            right: -300px !important;
        }

        .abs-img {
            display: block;
            bottom: 0px;
        }

        .blue-card {
            display: block;
            right: -40%;
            top: -20%;
        }
    }

    @media (min-width: 1244px) and (max-width: 1275px) {
        /* .hero-container {
                height: 90vh;
            } */

        .hero p {
            text-align: start !important;
        }

        .navbar {
            padding: 0.5rem 2rem 1.5rem 2rem;
        }

        .nav-link {
            font-size: 15px;
        }

        .white-card {
            top: 18%;
            left: 56%;
        }

        .hero-content h1 {
            font-size: 50px;
        }

        .hero-right .main-hero {
            left: 30%;
        }

        .main-hero-box {
            max-width: 240px;
        }

            .main-hero-box.box-1 {
                left: 18px;
                bottom: 45px;
            }

            .main-hero-box.box-2 {
                right: 260px;
                bottom: 45px;
            }
    }

    @media (min-width: 1275px) and (max-width: 1315px) {
        /* .hero-container {
                height: 90vh;
            } */

        .hero p {
            text-align: start !important;
        }

        .navbar {
            padding: 0.5rem 2rem 1.5rem 2rem;
        }


        .white-card {
            top: 15%;
            left: 60%;
        }

        .hero-content h1 {
            font-size: 50px;
        }

        .hero-right .main-hero {
            left: 30%;
        }

        .main-hero-box {
            max-width: 240px;
        }

            .main-hero-box.box-1 {
                left: 25px;
                bottom: 45px;
            }

            .main-hero-box.box-2 {
                right: 280px;
                bottom: 45px;
            }
    }

    @media (min-width: 1315px) and (max-width: 1385px) {
        /* .hero-container {
                height: 90vh;
            } */


        .white-card {
            top: 17%;
            left: 60%;
        }

        .hero-content h1 {
            font-size: 5.6rem;
        }

        .hero-right .main-hero {
            left: 30%;
        }

        .hero p {
            text-align: start !important;
        }

        .main-hero-box {
            max-width: 240px;
        }

            .main-hero-box.box-1 {
                left: 40px;
                bottom: 45px;
            }

            .main-hero-box.box-2 {
                right: 310px;
                bottom: 45px;
            }
    }

    @media (min-width: 1385px) and (max-width: 1445px) {
        /* .hero-container {
                height: 75vh;
            } */

        .white-card {
            top: 17%;
            left: 63%;
        }

        .hero-content h1 {
            font-size: 50px;
        }

        .hero-right .main-hero {
            left: 30%;
        }

        .hero p {
            text-align: start !important;
        }

        .main-hero-box {
            max-width: 240px;
        }

            .main-hero-box.box-1 {
                left: 55px;
                bottom: 45px;
            }

            .main-hero-box.box-2 {
                right: 340px;
                bottom: 45px;
            }
    }


    @media (min-width: 1445px) and (max-width: 1490px) {
        /* .hero-container {
                height: 80vh;
            } */



        .white-card {
            top: 17%;
            left: 64%;
        }

        .hero-content h1 {
            font-size: 6rem;
        }

        .hero-right .main-hero {
            left: 30%;
        }

        .hero p {
            text-align: start !important;
        }

        .main-hero-box {
            max-width: 235px;
        }

            .main-hero-box.box-1 {
                left: 70px;
                bottom: 45px;
            }

            .main-hero-box.box-2 {
                right: 360px;
                bottom: 45px;
            }
    }

    @media (min-width: 1490px) and (max-width: 1549px) {
        /* .hero-container {
                height: 80vh;
            } */



        .white-card {
            top: 17%;
            left: 66%;
        }

        .hero-content h1 {
            font-size: 7rem;
        }

        .hero-right .main-hero {
            left: 30%;
        }

        .hero p {
            text-align: start !important;
        }


        .main-hero-box {
            max-width: 230px;
        }

            .main-hero-box.box-1 {
                left: 90px;
                bottom: 45px;
            }

            .main-hero-box.box-2 {
                right: 390px;
                bottom: 45px;
            }
    }

    @media (min-width: 1549px) and (max-width: 1649px) {
        /* .hero-container {
                height: 80vh;
            } */



        .white-card {
            top: 17%;
            left: 66%;
        }

        .hero-content h1 {
            font-size: 7rem;
        }

        .hero-right .main-hero {
            left: 30%;
        }

        .hero p {
            text-align: start !important;
        }


        .main-hero-box {
            max-width: 235px;
        }

            .main-hero-box.box-1 {
                left: 90px;
                bottom: 45px;
            }

            .main-hero-box.box-2 {
                right: 410px;
                bottom: 45px;
            }
    }

    @media (min-width: 1649px) and (max-width: 1749px) {
        /* .hero-container {
                height: 80vh;
            } */



        .white-card {
            top: 17%;
            left: 66%;
        }

        .hero-content h1 {
            font-size: 7rem;
        }

        .hero-right .main-hero {
            left: 30%;
        }

        .hero p {
            text-align: start !important;
        }


        .main-hero-box {
            max-width: 235px;
        }

            .main-hero-box.box-1 {
                left: 90px;
                bottom: 45px;
            }

            .main-hero-box.box-2 {
                right: 410px;
                bottom: 45px;
            }
    }

    @media (min-width: 800px) {
        .AllUK {
            width: 600px;
        }
    }

    @media (max-width: 450px) {
        .NarrowPricing {
            font-size: 23px;
        }
    }

    @media (max-width: 550px) {
        .OnlyAsGood {
            padding-left: 2px;
        }

        .deposit {
            font-size: 26px;
            margin-left: 25px;
        }

        .deposit-text {
            font-size: 15px;
            margin-left: 25px;
        }
    }

    @media (min-width: 1100px) {

        .TotalProtect {
            width: 390px;
        }

        .menu-alert {
            display: block;
        }

        .top-btn {
            margin-left: auto;
        }

        .navbar {
            justify-content: flex-start;
            position: relative;
            margin-right: 0px;
            z-index: 60;
        }

        .nav-item {
            justify-content: flex-start;
            list-style: none;
        }

        .nav-menu {
            padding: 0px 0px 0px 40px;
            margin: 0;
            position: relative;
            left: -12px;
            display: block;
        }

            .nav-menu li {
                float: left;
                list-style: none;
                margin-left: 15px;
            }

                .nav-menu li a {
                    float: left;
                    padding: 0 0 0 2px;
                    height: 36px;
                    font: bold 16px arial;
                    color: #4d4d4d;
                    text-decoration: none;
                    margin: auto;
                }

                    .nav-menu li a span {
                        float: left;
                        padding: 10px 2px 0 0;
                        height: 26px;
                        font: bold 16px arial;
                        color: #4d4d4d;
                        text-decoration: none;
                    }


        .navbar:hover li.menu-alert div a {
            display: none;
        }

        .nav-menu li:hover a, .nav-menu li a:hover {
            background: url("/static/images/tab-left.jpg") no-repeat top left;
            color: #ffffff;
        }

            .nav-menu li:hover a span, .nav-menu li a:hover span {
                background: url("/static/images/tab-right.jpg") no-repeat top right;
                color: #ffffff;
                box-sizing: initial;
            }

        .nav-menu li div {
            position: absolute;
            top: 36px;
            left: 0;
            float: left;
            border-top: 1px solid #85BC21;
            padding: 7px 0 0 0;
            width: 740px;
            margin-left: 10px;
        }

        .nav-menu li:hover a, .nav-menu li a:hover {
            color: #4d4d4d;
        }

            .nav-menu li:hover div, .nav-menu li a:hover div {
                visibility: visible;
                height: 24px;
                background: #ffffff;
                display: flex;
                justify-content: flex-start;
                padding-left: 25px;
            }

        li.nav-price:hover div, li.nav-blog:hover div {
            padding-left: 170px;
        }

        .nav-menu li:hover div a, .nav-menu li a:hover div a {
            display: inline-block;
            background: #ffffff;
            color: #4d4d4d;
            font: 14px arial;
            height: auto;
            margin: 0px;
        }

            .nav-menu li:hover div a:hover, .nav-menu li a:hover div a:hover {
                color: #85bc22;
            }
    }

    @media (min-width: 1204px) and (max-width: 1250px) {
        .nav-menu li div {
            width: 695px;
        }
    }

    @media (min-width: 1120px) and (max-width: 1204px) {

        .nav-menu {
            padding-left: 0px;
        }

        .menu-btn {
            padding-left: 8px;
            padding-right: 3px;
        }

        .nav-menu li div {
            width: 650px;
        }
    }

    @media (min-width: 1100px) and (max-width: 1120px) {

        .nav-menu {
            padding-left: 0px;
        }

        .menu-btn {
            padding-left: 1px;
            padding-right: 1px;
        }

        .nav-menu li div {
            width: 650px;
        }
    }