/* ═══════════════════════════════════════════════════════
   E-GUIDE TEMPLATE — Modern Dark Premium Styles
   ═══════════════════════════════════════════════════════ */

/* ---------- CSS Variables ---------- */
:root {
    --eg-primary: #1565f2;
    --eg-primary-light: #4a8af5;
    --eg-dark: #0a1e3d;
    --eg-dark-alt: #0d2650;
    --eg-card-bg: linear-gradient(145deg, #0f2a52, #132f5c);
    --eg-card-border: rgba(255, 255, 255, 0.06);
    --eg-text-white: #ffffff;
    --eg-text-muted: rgba(255, 255, 255, 0.7);
    --eg-explore-bg: #e8f0fe;
    --eg-explore-chip: #ffffff;
    --eg-transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    --eg-shadow: 0 8px 32px rgba(0, 0, 0, 0.25);
    --eg-radius: 16px;
}


/* ═══════════════════════════════════════════════════════
   § HERO BANNER
   ═══════════════════════════════════════════════════════ */
.eguide-hero,
.eguide-hero-single {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 200px 0 170px;
    overflow: hidden;
    background-color: var(--eg-primary);
}

.eguide-hero__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg,
            rgba(10, 30, 61, 0.65) 0%,
            rgba(21, 101, 242, 0.3) 100%);
    z-index: 1;
}

.eguide-hero__title {
    color: var(--eg-text-white);
    font-size: clamp(32px, 2.5vw, 38px);
    font-weight: 500;
    line-height: 115%;
    margin-bottom: 18px;
    text-shadow: 0 2px 12px rgba(0, 0, 0, 0.25);
    letter-spacing: -0.02em;
}

.eguide-hero__desc {
    color: rgba(255, 255, 255, 0.88);
    font-size: clamp(16px, 2vw, 19px);
    line-height: 1.7;
    max-width: 680px;
    margin: 0 auto;
}

/* Decorative wave at bottom */
.eguide-hero__wave {
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    line-height: 0;
    z-index: 2;
}

.eguide-hero__wave svg {
    width: 100%;
    height: 60px;
}


/* ═══════════════════════════════════════════════════════
   § LATEST E-GUIDES LISTING SECTION
   ═══════════════════════════════════════════════════════ */
.eguide-listing {
    background-color: var(--eg-dark);
    padding: 60px 0 60px;
    position: relative;
}

/* Subtle texture overlay */
.eguide-listing::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image:
        radial-gradient(circle at 25% 25%, rgba(21, 101, 242, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 75% 75%, rgba(21, 101, 242, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

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

.eguide-listing__title {
    font-size: clamp(26px, 3.5vw, 38px);
    font-weight: 500;
    color: var(--eg-text-white);
    margin: 0;
    line-height: 1.2;
}


/* ── Search Bar ── */
.eguide-search-wrap {
    position: relative;
    max-width: 420px;
    margin-left: auto;
}

.eguide-search-wrap__icon {
    position: absolute;
    left: 18px;
    top: 50%;
    transform: translateY(-50%);
    color: rgba(255, 255, 255, 0.5);
    font-size: 16px;
    z-index: 2;
    pointer-events: none;
}

.eguide-search-wrap__input {
    width: 100%;
    height: 50px;
    padding: 0 48px 0 48px;
    border: 1px solid rgb(255 255 255 / 56%) !important;
    border-radius: 50px;
    background: rgba(255, 255, 255, 0.04);
    color: #fff;
    font-size: 15px;
    outline: none;
    transition: var(--eg-transition);
    backdrop-filter: blur(6px);
}

.eguide-search-wrap__input::placeholder {
    color: rgba(255, 255, 255, 0.45);
}

.eguide-search-wrap__input:focus {
    border-color: var(--eg-primary-light);
    background: rgba(255, 255, 255, 0.1);
    box-shadow: 0 0 0 3px rgba(21, 101, 242, 0.2);
}

/* Search loader */
.eguide-search-loader {
    position: absolute;
    right: 16px;
    top: 50%;
    transform: translateY(-50%);
    display: none;
}

.eguide-search-loader.active {
    display: block;
}


/* ── E-Guide Card ── */
.eguide-card {
    background: #0c2d5a;
    background-image:
        radial-gradient(ellipse at 30% 50%, rgba(21, 101, 242, 0.15) 0%, transparent 70%),
        radial-gradient(ellipse at 70% 80%, rgba(21, 101, 242, 0.10) 0%, transparent 60%);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    overflow: hidden;
    height: 100%;
    display: flex;
    flex-direction: column;
    transition: var(--eg-transition);
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.25);
}

.eguide-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.35);
    border-color: rgba(21, 101, 242, 0.3);
}

/* Card image */
.eguide-card__img-wrap {
    width: 100%;
    height: 260px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(180deg, #0075ff, #0051af);
    border-radius: 20px 20px 0 0;
    position: relative;
    padding: 20px 0;
    z-index: 1;
    overflow: hidden;
}

.eguide-card__img-wrap::before {
    position: absolute;
    background-image: url(/wp-content/uploads/2026/04/e-guidebg.png);
    width: 100%;
    height: 100%;
    inset: 0;
    margin: auto;
    background-size: cover;
    z-index: -1;
    mix-blend-mode: multiply;
    left: 0;
    top: 0;
    content: '';
}

.eguide-card__img {
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    object-fit: contain;
    transition: transform 0.5s ease;
    filter: drop-shadow(0 8px 20px rgba(0, 0, 0, 0.4));
}

.eguide-card:hover .eguide-card__img {
    transform: scale(1.05);
}

.eguide-card__img-placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    color: rgba(255, 255, 255, 0.15);
    font-size: 48px;
}

/* Card body */
.eguide-card__body {
    padding: 20px 24px 24px;
    flex: 1;
    display: flex;
    flex-direction: column;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    background-color: #fff;
}

/* Author name */
.eguide-card__author {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 8px;
    font-weight: 400;
    letter-spacing: 0.02em;
}

.eguide-card__title {
    font-size: 17px;
    font-weight: 500;
    line-height: 1.45;
    margin-bottom: 10px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.eguide-card__desc {
    font-size: 15px;
    line-height: 1.4;
    margin-bottom: 0;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    flex: 1;
}

/* Card footer with arrow button */
.eguide-card__footer {
    display: flex;
    justify-content: flex-end;
    margin-top: 14px;
}

.eguide-card__btn {
    width: 42px;
    height: 42px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: var(--eg-primary);
    color: #fff;
    text-decoration: none;
    transition: var(--eg-transition);
    box-shadow: 0 4px 16px rgba(21, 101, 242, 0.35);
}

.eguide-card__btn:hover {
    background: var(--eg-primary-light);
    transform: translateX(3px);
    color: #fff;
    box-shadow: 0 6px 20px rgba(21, 101, 242, 0.5);
}

.eguide-card__btn svg {
    width: 18px;
    height: 18px;
    transform: rotate(-45deg);
}


/* ── Load More Button ── */
.eguide-loadmore-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 36px;
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 50px;
    background: #0d6efd;
    color: var(--eg-text-white);
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    transition: var(--eg-transition);
    letter-spacing: 0.02em;
}

.eguide-loadmore-btn:hover {
    background: var(--eg-primary);
    border-color: var(--eg-primary);
    box-shadow: 0 6px 24px rgba(21, 101, 242, 0.4);
    transform: translateY(-2px);
}

.eguide-loadmore-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    transform: none;
}

.eguide-loadmore-btn .spinner-border {
    width: 18px;
    height: 18px;
    border-width: 2px;
}


/* ═══════════════════════════════════════════════════════
   § EXPLORE MORE TOPICS
   ═══════════════════════════════════════════════════════ */
.eguide-explore {
    background-color: var(--eg-explore-bg);
    padding: 60px 0 60px;
}

.eguide-explore__header {
    margin-bottom: 48px;
}

.eguide-explore__title {
    font-size: clamp(28px, 3.5vw, 38px);
    font-weight: 500;
    color: #1a1a2e;
    margin-bottom: 14px;
}

.eguide-explore__desc {
    font-size: 17px;
    color: #64748b;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.65;
}

/* Topics tag grid */
.eguide-topics-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 16px;
    max-width: 100%;
    margin: 0 auto;
}

.eguide-topic-chip {
    display: inline-flex;
    align-items: center;
    padding: 12px 28px;
    background: var(--eg-explore-chip);
    color: #1a1a2e;
    font-size: 15px;
    font-weight: 500;
    border-radius: 8px;
    text-decoration: none;
    border: 1px solid #dce3ed;
    transition: var(--eg-transition);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.eguide-topic-chip:hover {
    background: var(--eg-primary);
    color: #fff;
    border-color: var(--eg-primary);
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(21, 101, 242, 0.25);
    text-decoration: none;
}


/* ═══════════════════════════════════════════════════════
   § NO RESULTS
   ═══════════════════════════════════════════════════════ */
.eguide-no-results {
    text-align: center;
    padding: 60px 20px;
    color: var(--eg-text-muted);
}

.eguide-no-results i {
    font-size: 48px;
    display: block;
    margin-bottom: 14px;
    opacity: 0.4;
}

.eguide-no-results p {
    font-size: 17px;
}


/* ═══════════════════════════════════════════════════════
   § ANIMATIONS
   ═══════════════════════════════════════════════════════ */
@keyframes eguide-levitate {
    0% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-18px);
    }

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

.eguide-book-anim {
    animation: eguide-levitate 4s ease-in-out infinite;
    filter: drop-shadow(0 15px 35px rgba(0, 0, 0, 0.4));
    will-change: transform;
}

@keyframes eguide-fadeInUp {
    from {
        opacity: 0;
        transform: translateY(24px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.eguide-card-col {
    animation: eguide-fadeInUp 0.5s ease both;
}

.eguide-card-col:nth-child(2) {
    animation-delay: 0.08s;
}

.eguide-card-col:nth-child(3) {
    animation-delay: 0.16s;
}

.eguide-card-col:nth-child(4) {
    animation-delay: 0.24s;
}

.eguide-card-col:nth-child(5) {
    animation-delay: 0.32s;
}

.eguide-card-col:nth-child(6) {
    animation-delay: 0.40s;
}


/* ═══════════════════════════════════════════════════════
   § RESPONSIVE
   ═══════════════════════════════════════════════════════ */
@media (max-width: 991.98px) {

    .eguide-hero,
    .eguide-hero-single {
        padding: 120px 0 80px;
        min-height: 340px;
    }

    .eguide-listing {
        padding: 50px 0 50px !important;
    }

    .eguide-listing__title {
        margin-bottom: 16px;
    }

    .eguide-search-wrap {
        max-width: 100%;
        margin-left: 0;
    }

    .eguide-card__img-wrap {
        height: 200px;
    }

    .eguide-explore {
        padding: 50px 0 50px;
    }
}

@media (max-width: 767.98px) {

    .eguide-hero,
    .eguide-hero-single {
        padding: 110px 0 70px;
        min-height: 300px;
    }

    .eguide-hero__wave svg {
        height: 40px;
    }

    .eguide-listing__header {
        text-align: center;
    }

    .eguide-listing__title {
        margin-bottom: 20px;
    }

    .eguide-card__img-wrap {
        height: 180px;
    }

    .eguide-card__body {
        padding: 18px 18px 20px;
    }

    .eguide-topics-grid {
        gap: 10px;
    }

    .eguide-topic-chip {
        padding: 10px 20px;
        font-size: 14px;
    }
}

@media (max-width: 575.98px) {

    .eguide-hero,
    .eguide-hero-single {
        padding: 100px 0 60px;
    }

    .eguide-listing {
        padding: 40px 0 50px !important;
    }

    .eguide-explore {
        padding: 40px 0 50px;
    }

    .eguide-loadmore-btn {
        padding: 12px 28px;
        font-size: 15px;
    }
}


/* ═══════════════════════════════════════════════════════
   § SINGLE E-GUIDE PAGE STYLES
   ═══════════════════════════════════════════════════════ */

/* ── Details & Form Section ── */
.single-eguide-details {
    padding: 60px 0;
    background: #e8f0fe;
    /* Matches the wave color exactly */
    color: #1a202c;
    position: relative;
    overflow: hidden;
}

/* Subtle decorative orbs for world-class feel */

.single-eguide-details__content {
    font-size: 18px;
    line-height: 1.8;
    color: #4a5568;
    position: relative;
    z-index: 1;
}

.single-eguide-details__content h2,
.single-eguide-details__content h3 {
    color: #0f172a;
    margin-top: 40px;
    margin-bottom: 25px;
    font-weight: 800;
    letter-spacing: -0.02em;
}

.single-eguide-details__content ul {
    margin-bottom: 35px;
    padding-left: 0;
    list-style: none;
}

.single-eguide-details__content li {
    position: relative;
    padding-left: 32px;
    margin-bottom: 8px;
    color: #334155;
    font-weight: 500;
}

.single-eguide-details__content li::before {
    content: "\F272";
    font-family: "bootstrap-icons";
    position: absolute;
    left: 0;
    top: 3px;
    color: #1565f2;
    font-size: 20px;
    font-weight: 700;
}

/* ── BEST LOOKING LIGHT FORM ── */
.single-eguide-details__form-wrap {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(20px);
    border-radius: 31px;
    padding: 50px 40px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 40px 80px -20px rgba(10, 30, 61, 0.08), 0 15px 40px -10px rgba(0, 0, 0, 0.04);
    position: sticky;
    top: 100px;
    border: 1px solid rgba(255, 255, 255, 0.5);
    z-index: 10;
    border: 3px solid #82adf8;
}

.single-eguide-details__form-header {
    text-align: center;
    margin-bottom: 10px;
}

.single-eguide-details__form-header h3 {
    color: #1565f2 !important;
    font-size: 26px !important;
    font-weight: 500 !important;
    margin-bottom: 12px !important;
    letter-spacing: -0.03em;
}

.single-eguide-details__form-header p {
    color: #5b6472;
    font-size: 16px;
    line-height: 1.5;
    margin: 0;
}

.single-eguide-details__form-body input.wpcf7-form-control.has-spinner.wpcf7-submit.primary {
    width: 100%;
    max-width: 100% !important;
    margin: 0 auto !important;
    margin-top: 20px !important;
}

.single-eguide-details__form-body {
    padding: 0;
}

/* Labels */
.single-eguide-details__form-wrap label {
    display: block;
    text-align: left;
    color: #4a5568 !important;
    font-size: 14px !important;
    font-weight: 600 !important;
    margin-bottom: 8px !important;
    margin-top: 20px;
}

.single-eguide-details__form-wrap .wpcf7-form-control-wrap {
    display: block;
}

.single-eguide-details__form-wrap .wpcf7-form-control-wrap input,
.single-eguide-details__form-wrap .select2-container--default .select2-selection--single {
    width: 100% !important;
    height: 50px !important;
    background: #f8fafc !important;
    border: 1px solid #e2e8f0 !important;
    border-radius: 12px !important;
    padding: 0 20px !important;
    color: #1a202c !important;
    font-size: 15px !important;
    transition: all 0.3s ease !important;
}

.single-eguide-details__form-wrap .select2-container--default .select2-selection--single .select2-selection__rendered,
.single-eguide-details__form-wrap .select2-container--default .select2-selection--single .select2-selection__arrow {
    height: 40px;
}

.single-eguide-details__form-wrap .wpcf7-form-control-wrap input:focus,
.single-eguide-details__form-wrap .select2-container--default .select2-selection--single:focus {
    background: #ffffff !important;
    border-color: #1565f2 !important;
    box-shadow: 0 0 0 4px rgba(21, 101, 242, 0.1) !important;
    outline: none !important;
}

.columns.columns-12.eguide_us_btn {
    position: relative;
}

.columns.columns-12.eguide_us_btn .wpcf7-spinner {
    position: absolute;
    right: 20px;
    top: 36px;
    z-index: 9;
}

.single-eguide-details__form-wrap .wpcf7-form-control-wrap input::placeholder {
    color: #a0aec0;
}

/* PROPER PILL BUTTON (LIGHT THEME) */
.single-eguide-details__form-wrap .wpcf7-submit {
    width: 100% !important;
    height: 60px !important;
    background: #1565f2 !important;
    color: #ffffff !important;
    font-size: 17px !important;
    font-weight: 700 !important;
    border-radius: 50px !important;
    border: none !important;
    margin-top: 35px !important;
    cursor: pointer !important;
    transition: all 0.3s ease !important;
    box-shadow: 0 10px 25px rgba(21, 101, 242, 0.3) !important;
}

.single-eguide-details__form-wrap .wpcf7-submit:hover {
    background: #0045ba !important;
    transform: translateY(-2px);
    box-shadow: 0 15px 30px rgba(21, 101, 242, 0.45) !important;
}

/* Checkbox adjustment */
.single-eguide-details__form-wrap span.wpcf7-list-item {
    margin-left: 0;
}

.single-eguide-details__form-wrap .wpcf7-acceptance label {
    display: flex !important;
    align-items: flex-start !important;
    color: #718096 !important;
    font-size: 13px !important;
    margin-top: 15px !important;
}

.single-eguide-details__form-wrap .wpcf7-acceptance input {
    margin-top: 4px !important;
    margin-right: 10px !important;
}


/* ── CTA Section ── */
.single-eguide-cta {
    position: relative;
    background-image: url('/wp-content/uploads/2026/04/mvp-cta1bg.webp');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 60px 0; /* Padding for top/bottom space */
    color: #fff;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

/* Blue Overlay to match design */
.single-eguide-cta::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgb(0 102 255 / 11%);
    z-index: 1;
}

.single-eguide-cta .container {
    position: relative;
    z-index: 2;
    max-width: 900px;
}

.single-eguide-cta h2 {
    font-size: clamp(28px, 4.5vw, 40px);
    font-weight: 500;
    margin-bottom: 25px;
    color: #fff;
    letter-spacing: -0.01em;
    line-height: 1.2;
}

.single-eguide-cta .cta-content {
    font-size: clamp(16px, 2vw, 20px);
    color: rgba(255, 255, 255, 0.95);
    max-width: 800px;
    margin: 0 auto 40px;
    line-height: 1.6;
    font-weight: 400;
}

.single-eguide-cta .cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: transparent;
    color: #fff;
    border: 2px solid #fff;
    padding: 14px 38px;
    font-size: 18px;
    font-weight: 500;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.single-eguide-cta .cta-btn:hover {
    background: #fff;
    color: #0066ff;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.single-eguide-cta .cta-btn i,
.single-eguide-cta .cta-btn svg {
    font-size: 16px;
    transition: transform 0.3s ease;
}

.single-eguide-cta .cta-btn:hover i,
.single-eguide-cta .cta-btn:hover svg {
    transform: translateX(5px);
}

/* ── Compelling Reasons Section ── */
.single-eguide-reasons {
    padding: 60px 0;
}

.single-eguide-reasons__header {
    text-align: center;
    margin-bottom: 52px;
}

.single-eguide-reasons__subtitle {
    display: block;
    color: var(--eg-primary, #3b82f6);
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 10px;
}

.single-eguide-reasons__title {
    font-size: clamp(26px, 3vw, 36px);
    font-weight: 500;
    color: #0f172a;
    margin: 0;
}

/* ── Card ── */
.single-eguide-reason-item {
    display: flex;
    align-items: center;
    background: #fff;
    padding: 20px 22px;
    border-radius: 16px;
    height: 100%;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
    border: 1px solid #e2e8f0;
    transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.single-eguide-reason-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 28px rgba(0, 0, 0, 0.09);
}

/* ── Icon ── */
.single-eguide-reason-item__icon {
    width: 64px;
    height: 64px;
    min-width: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--accent-color), #2563eb) !important;
    border-radius: 12px;
    margin-right: 16px;
}

.single-eguide-reason-item__icon img {
    width: 40px;
    height: 40px;
    object-fit: contain;
    filter: brightness(0) invert(1);
}

.single-eguide-reason-item__icon .bi {
    font-size: 22px;
    color: #fff;
}

/* ── Text ── */
.single-eguide-reason-item__text {
    font-size: 18px;
    font-weight: 500;
    color: #1e293b;
    margin: 0;
    line-height: 1.4;
    text-transform: capitalize;
}

/* ── Responsive ── */
@media (max-width: 991.98px) {
    .single-eguide-reasons {
        padding: 50px 0;
    }
    .single-eguide-details__content {
    font-size: 15px;
}
.single-eguide-details {
    padding: 45px 0;
}
.single-eguide-details__form-wrap {
    padding: 36px 28px;
    border: 2px solid #82adf8;
}
.single-eguide-details__form-header h3 {
    font-size: 22px !important;
}
.single-eguide-details__form-wrap .wpcf7-form-control-wrap input, .single-eguide-details__form-wrap .select2-container--default .select2-selection--single {
    height: 46px !important;
}
.single-eguide-details__form-wrap label {
    margin-bottom: 6px !important;
    margin-top: 8px;
}
.single-eguide-cta {
    padding: 40px 0;
}
.single-eguide-cta h2 {
    font-size: clamp(24px, 4.5vw, 40px);
    margin-bottom: 12px;
}
.single-eguide-cta .cta-content {

    max-width: 100%;
    margin: 0 auto 26px;
    line-height: 1.6;
    font-weight: 400;
}
.single-eguide-cta .cta-btn {
    padding: 10px 38px;
    font-size: 16px;
}
.single-eguide-details__form-wrap .wpcf7-submit {
    height: 50px !important;
    font-size: 16px !important;
    font-weight: 500 !important;
}
.single-eguide-reason-item__text {
    font-size: 17px;
}
.single-eguide-reason-item__icon {
    width: 56px;
    height: 56px;
    min-width: 56px;
}
}

@media (max-width: 767.98px) {
    .single-eguide-reason-item {
        flex-direction: column;
        text-align: center;
        padding: 30px 20px;
    }

    .single-eguide-reason-item__icon {
        margin-right: 0;
        margin-bottom: 16px;
    }
}
/* CF7 Spinner Adjustment */
.columns.columns-12.eguide_us_btn {
    position: relative;
}
.columns.columns-12.eguide_us_btn .wpcf7-spinner {
    position: absolute;
    right: 20px;
    top: 36px;
    z-index: 9;
}