:root {
    --bg: #f4f8ff;
    --bg-elevated: #ffffff;
    --surface: rgba(255, 255, 255, 0.72);
    --surface-strong: rgba(255, 255, 255, 0.92);
    --border: rgba(15, 40, 90, 0.09);
    --border-strong: rgba(47, 107, 255, 0.28);
    --ink: #0c1830;
    --muted-ink: #4d5b78;
    --faint-ink: #8b96ad;
    --primary: #2f6bff;
    --primary-bright: #0252fd;
    --primary-dark: #00133b;
    --cyan: #00c2e0;
    --violet: #7c6cff;
    --shadow-3d: 0 1px 0 rgba(255, 255, 255, 0.8) inset, 0 20px 40px -18px rgba(20, 45, 110, 0.22);
    --shadow-3d-hover: 0 1px 0 rgba(255, 255, 255, 0.85) inset, 0 30px 56px -16px rgba(2, 82, 253, 0.32);
    --radius: 14px;
    --radius-lg: 22px;
    --container: 1180px;
    --font-display: "Space Grotesk", "Inter", sans-serif;
    --font-body: "Inter", Arial, Helvetica, sans-serif;
    --font-mono: "JetBrains Mono", "SFMono-Regular", Consolas, monospace;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }
    * {
        animation-duration: 0.001ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.001ms !important;
    }
}

body {
    position: relative;
    margin: 0;
    color: var(--ink);
    background: var(--bg);
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.6;
    overflow-x: hidden;
}

/* Ambient background field: soft moving color blobs + faint cipher grid on a bright canvas */
.bg-field {
    position: fixed;
    inset: 0;
    z-index: 0;
    overflow: hidden;
    pointer-events: none;
}

.bg-glow {
    position: absolute;
    width: 60vw;
    height: 60vw;
    max-width: 900px;
    max-height: 900px;
    border-radius: 50%;
    filter: blur(100px);
    opacity: 0.35;
    animation: drift 26s ease-in-out infinite alternate;
}

.bg-glow-a {
    top: -20%;
    left: -14%;
    background: radial-gradient(circle, #8fb8ff 0%, transparent 70%);
}

.bg-glow-b {
    bottom: -24%;
    right: -16%;
    background: radial-gradient(circle, #b9aeff 0%, transparent 70%);
    animation-delay: -12s;
    animation-direction: alternate-reverse;
}

.bg-grid {
    position: absolute;
    inset: -2px;
    background-image:
        linear-gradient(rgba(47, 107, 255, 0.06) 1px, transparent 1px),
        linear-gradient(90deg, rgba(47, 107, 255, 0.06) 1px, transparent 1px);
    background-size: 46px 46px;
    mask-image: radial-gradient(ellipse 80% 60% at 50% 0%, #000 40%, transparent 85%);
}

@keyframes drift {
    0% { transform: translate3d(0, 0, 0) scale(1); }
    100% { transform: translate3d(3%, 4%, 0) scale(1.08); }
}

img {
    display: block;
    max-width: 100%;
    height: auto;
}

a {
    color: var(--primary-bright);
    text-decoration: none;
    transition: color 0.18s ease;
}

a:hover {
    color: var(--primary-dark);
}

h1, h2, h3 {
    color: var(--ink);
    font-family: var(--font-display);
    line-height: 1.14;
    margin: 0 0 16px;
    letter-spacing: -0.01em;
}

h1 {
    font-size: 3.5rem;
    font-weight: 700;
}

h2 {
    font-size: 2.15rem;
    font-weight: 600;
}

h3 {
    font-size: 1.08rem;
    font-weight: 600;
}

p {
    margin: 0 0 16px;
}

ul, ol {
    margin-top: 0;
}

.container {
    position: relative;
    z-index: 1;
    width: min(100% - 40px, var(--container));
    margin: 0 auto;
}

.narrow {
    width: min(100% - 40px, 820px);
}

.section {
    position: relative;
    padding: 88px 0;
}

.muted {
    background: linear-gradient(180deg, rgba(47, 107, 255, 0.035), transparent);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.skip-link {
    position: absolute;
    left: 16px;
    top: -60px;
    z-index: 1000;
    padding: 10px 14px;
    color: #ffffff;
    background: var(--primary);
    border-radius: var(--radius);
}

.skip-link:focus {
    top: 12px;
}

.screen-reader-text {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* Header */
.site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    background: rgba(255, 255, 255, 0.78);
    border-bottom: 1px solid var(--border);
    backdrop-filter: blur(16px) saturate(140%);
}

.header-inner {
    min-height: 76px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    flex: 0 0 auto;
}

.brand-mark {
    width: 40px;
    height: auto;
    display: block;
    filter: drop-shadow(0 4px 12px rgba(47, 107, 255, 0.35));
}

.brand-word {
    font-family: var(--font-display);
    font-size: 1.2rem;
    font-weight: 600;
    letter-spacing: -0.01em;
    color: var(--ink);
    white-space: nowrap;
}

.brand-word-accent {
    color: var(--primary-bright);
}

.primary-nav {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 6px;
}

.primary-nav a {
    display: inline-flex;
    align-items: center;
    min-height: 42px;
    padding: 8px 14px;
    color: var(--muted-ink);
    font-weight: 600;
    font-size: 0.95rem;
    border-radius: 999px;
    transition: color 0.18s ease, background 0.18s ease;
}

.primary-nav a:hover,
.primary-nav a.is-active {
    color: var(--primary-bright);
    background: rgba(47, 107, 255, 0.08);
}

.primary-nav .nav-cta,
.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 46px;
    padding: 12px 20px;
    border-radius: 999px;
    border: 1px solid transparent;
    font-weight: 700;
    font-size: 0.95rem;
    text-align: center;
    cursor: pointer;
    transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease, border-color 0.18s ease;
}

.primary-nav .nav-cta,
.button.primary {
    color: #ffffff;
    background: linear-gradient(135deg, var(--primary-bright), #1946c9 120%);
    box-shadow: 0 10px 24px rgba(2, 82, 253, 0.32), 0 1px 0 rgba(255, 255, 255, 0.35) inset;
}

.primary-nav .nav-cta:hover,
.button.primary:hover {
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 16px 32px rgba(2, 82, 253, 0.4), 0 1px 0 rgba(255, 255, 255, 0.35) inset;
}

.button.secondary {
    color: var(--ink);
    background: #ffffff;
    border-color: var(--border-strong);
}

.button.secondary:hover {
    color: var(--primary-bright);
    border-color: var(--primary-bright);
    background: rgba(47, 107, 255, 0.06);
    transform: translateY(-2px);
}

.button.light {
    background: #ffffff;
    color: var(--primary-dark);
    box-shadow: none;
}

.button.light:hover {
    color: var(--primary-dark);
    background: #dbeeff;
    transform: translateY(-2px);
}

.button-row {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.nav-toggle {
    display: none;
    width: 44px;
    height: 44px;
    padding: 10px;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    background: #ffffff;
}

.nav-toggle-line {
    display: block;
    width: 100%;
    height: 2px;
    margin: 5px 0;
    background: var(--ink);
}

/* Hero */
.hero {
    position: relative;
    overflow: hidden;
    padding-top: 64px;
}

.hero-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.02fr) minmax(300px, 0.98fr);
    align-items: center;
    gap: 44px;
}

.hero-content {
    max-width: 670px;
}

.hero-copy {
    max-width: 650px;
    color: var(--muted-ink);
    font-size: 1.12rem;
}

.hero-media {
    position: relative;
    padding: 14px;
    background: linear-gradient(160deg, #ffffff, #eef4ff);
    border: 1px solid var(--border-strong);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-3d);
    transform-style: preserve-3d;
    transform: perspective(1200px) rotateY(-6deg) rotateX(3deg);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    will-change: transform;
}

.hero-media:hover {
    box-shadow: var(--shadow-3d-hover);
}

.hero-media img {
    border-radius: 12px;
}

.hero-badge {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 16px;
    background: rgba(255, 255, 255, 0.92);
    border: 1px solid var(--border-strong);
    border-radius: var(--radius);
    box-shadow: var(--shadow-3d);
    backdrop-filter: blur(10px);
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--ink);
    transform: translateZ(60px);
    white-space: nowrap;
}

.hero-badge .dot {
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: var(--cyan);
    box-shadow: 0 0 12px var(--cyan);
}

.hero-badge.badge-top {
    top: -18px;
    left: -18px;
}

.hero-badge.badge-bottom {
    bottom: -18px;
    right: -18px;
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 14px;
    color: var(--primary-bright);
    font-family: var(--font-mono);
    font-size: 0.76rem;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.eyebrow::before {
    content: "";
    width: 16px;
    height: 1px;
    background: var(--primary-bright);
}

.section-heading {
    max-width: 760px;
    margin: 0 auto 34px;
    text-align: center;
}

.section-heading p {
    color: var(--muted-ink);
}

.section-heading.split {
    max-width: none;
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 24px;
    text-align: left;
}

.section-heading.align-left {
    margin-left: 0;
    text-align: left;
}

.text-link {
    display: inline-flex;
    flex: 0 0 auto;
    align-items: center;
    gap: 6px;
    min-height: 42px;
    font-weight: 700;
}

.card-grid {
    display: grid;
    gap: 20px;
}

.card-grid.four {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.card-grid.three {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

/* Glass / 3D cards */
.info-card,
.service-card,
.pricing-grid article,
.content-panel,
.pricing-table,
.registration-card,
.contact-card,
.form-panel,
.confirmation-card {
    background: linear-gradient(165deg, #ffffff, #f4f8ff);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-3d);
    transform-style: preserve-3d;
    transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease;
}

.info-card,
.service-card,
.pricing-grid article {
    transform: perspective(900px);
}

.info-card:hover,
.service-card:hover,
.pricing-grid article:hover {
    border-color: var(--border-strong);
    box-shadow: var(--shadow-3d-hover);
    transform: perspective(900px) translateY(-6px);
}

.info-card,
.service-card,
.pricing-grid article,
.content-panel {
    padding: 26px;
}

.info-card h3,
.service-card h3 {
    display: flex;
    align-items: center;
    gap: 10px;
    padding-top: 0;
}

.info-card h3::before,
.service-card h3::before {
    content: "";
    width: 8px;
    height: 8px;
    flex: none;
    border-radius: 2px;
    background: var(--primary-bright);
    box-shadow: 0 0 10px rgba(2, 82, 253, 0.5);
    transform: rotate(45deg);
}

.service-card:nth-child(2n) h3::before,
.info-card:nth-child(2n) h3::before {
    background: var(--cyan);
    box-shadow: 0 0 10px rgba(0, 194, 224, 0.5);
}

.service-card:nth-child(3n) h3::before,
.info-card:nth-child(3n) h3::before {
    background: var(--violet);
    box-shadow: 0 0 10px rgba(124, 108, 255, 0.5);
}

.info-card p,
.service-card p {
    color: var(--muted-ink);
}

.section-action {
    margin-top: 28px;
    text-align: center;
}

.feature-grid {
    display: grid;
    grid-template-columns: minmax(280px, 0.8fr) minmax(0, 1.2fr);
    gap: 34px;
    align-items: start;
}

.check-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
}

.check-grid span,
.check-list li {
    position: relative;
    padding-left: 30px;
}

.check-grid span {
    display: block;
    padding-top: 14px;
    padding-bottom: 14px;
    color: var(--ink);
    background: #ffffff;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    box-shadow: 0 8px 20px rgba(20, 45, 110, 0.06);
}

.check-grid span::before,
.check-list li::before {
    content: "";
    position: absolute;
    left: 12px;
    top: 1.05em;
    width: 8px;
    height: 8px;
    background: var(--cyan);
    box-shadow: 0 0 8px rgba(0, 194, 224, 0.6);
    border-radius: 50%;
}

.steps {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 18px;
}

.steps article {
    padding: 26px;
    background: #ffffff;
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    box-shadow: 0 10px 24px rgba(20, 45, 110, 0.06);
    transition: transform 0.28s ease, border-color 0.28s ease;
}

.steps article:hover {
    transform: translateY(-6px);
    border-color: var(--border-strong);
}

.steps span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    margin-bottom: 14px;
    color: #ffffff;
    font-family: var(--font-mono);
    font-weight: 600;
    background: linear-gradient(135deg, var(--primary-bright), var(--violet));
    box-shadow: 0 8px 20px rgba(2, 82, 253, 0.35);
    border-radius: 10px;
}

.notice {
    margin: 26px 0 0;
    padding: 16px 18px;
    color: var(--muted-ink);
    background: #ffffff;
    border: 1px solid var(--border);
    border-left: 3px solid var(--cyan);
    border-radius: var(--radius);
    font-family: var(--font-mono);
    font-size: 0.86rem;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
}

.pricing-grid article {
    min-height: 138px;
}

.pricing-grid strong {
    color: var(--primary-bright);
    font-size: 1.1rem;
}

.cta-band {
    color: #ffffff;
    background:
        radial-gradient(circle at 15% 20%, rgba(124, 108, 255, 0.5), transparent 55%),
        radial-gradient(circle at 85% 80%, rgba(0, 194, 224, 0.4), transparent 55%),
        linear-gradient(135deg, var(--primary-dark), #0b2c73);
}

.cta-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.cta-band h2,
.cta-band p {
    color: #ffffff;
}

.cta-band .eyebrow {
    color: #7fe9ff;
}

.cta-band .eyebrow::before {
    background: #7fe9ff;
}

.page-hero {
    padding-top: 64px;
    text-align: center;
}

.page-hero p:not(.eyebrow) {
    color: var(--muted-ink);
    font-size: 1.08rem;
}

.page-hero .eyebrow {
    justify-content: center;
}

.service-list {
    display: grid;
    gap: 22px;
}

.service-detail {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 24px;
    align-items: start;
    padding: 30px;
    background: linear-gradient(165deg, #ffffff, #f4f8ff);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-3d);
    transition: transform 0.28s ease, box-shadow 0.28s ease;
}

.service-detail:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-3d-hover);
}

.check-list {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px 18px;
    padding: 0;
    list-style: none;
}

.pricing-tables {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 22px;
}

.pricing-table {
    padding: 28px;
}

.pricing-table dl,
.detail-list,
.contact-details {
    margin: 0;
}

.pricing-table dl div,
.detail-list div,
.contact-details div {
    display: grid;
    gap: 8px;
    padding: 14px 0;
    border-bottom: 1px solid var(--border);
}

.pricing-table dl div {
    grid-template-columns: minmax(0, 1fr) auto;
}

.pricing-table dl div:last-child,
.detail-list div:last-child,
.contact-details div:last-child {
    border-bottom: 0;
}

dt {
    color: var(--muted-ink);
    font-weight: 600;
}

dd {
    margin: 0;
    color: var(--ink);
    font-weight: 700;
}

.pricing-notice {
    max-width: 980px;
    margin-left: auto;
    margin-right: auto;
}

.content-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 22px;
}

.registration-card {
    padding: 30px;
}

.detail-list div {
    grid-template-columns: minmax(220px, 0.45fr) minmax(0, 1fr);
}

.contact-grid {
    display: grid;
    grid-template-columns: minmax(280px, 0.82fr) minmax(0, 1.18fr);
    gap: 28px;
    align-items: start;
}

.contact-card,
.form-panel {
    padding: 30px;
}

.contact-card {
    position: sticky;
    top: 96px;
}

.contact-details div {
    grid-template-columns: 1fr;
}

.contact-details dd {
    overflow-wrap: anywhere;
}

.contact-form {
    display: grid;
    gap: 18px;
}

.form-row {
    display: grid;
    gap: 8px;
}

.form-row.two {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
}

label {
    color: var(--ink);
    font-weight: 700;
    font-size: 0.94rem;
}

label span {
    color: #d92b3f;
}

input,
select,
textarea {
    width: 100%;
    min-height: 46px;
    padding: 11px 14px;
    color: var(--ink);
    font: inherit;
    background: #ffffff;
    border: 1px solid var(--border-strong);
    border-radius: var(--radius);
}

textarea {
    resize: vertical;
}

input::placeholder,
textarea::placeholder {
    color: var(--faint-ink);
}

input:focus,
select:focus,
textarea:focus {
    outline: 3px solid rgba(47, 107, 255, 0.18);
    border-color: var(--primary-bright);
    background: #fbfdff;
}

.checkbox-row {
    display: grid;
    grid-template-columns: 20px minmax(0, 1fr);
    gap: 10px;
    align-items: start;
    font-weight: 500;
    color: var(--muted-ink);
}

.checkbox-row input {
    width: 18px;
    min-height: 18px;
    margin-top: 4px;
}

.honeypot {
    position: absolute;
    left: -9999px;
    width: 1px;
    height: 1px;
    overflow: hidden;
}

.alert {
    margin-bottom: 22px;
    padding: 16px 18px;
    border-radius: var(--radius);
}

.alert.error {
    color: #7a1420;
    background: #ffeef0;
    border: 1px solid #f4c2c9;
}

.alert ul {
    margin-bottom: 0;
}

.confirmation-section {
    min-height: 58vh;
    display: grid;
    align-items: center;
}

.confirmation-card {
    padding: 40px;
    text-align: center;
}

.confirmation-card .button-row {
    justify-content: center;
}

.policy-content {
    max-width: 920px;
}

.policy-content h2 {
    margin-top: 32px;
    padding-top: 20px;
    border-top: 1px solid var(--border);
    font-size: 1.35rem;
}

.policy-content h2:first-child {
    margin-top: 0;
    padding-top: 0;
    border-top: 0;
}

.policy-content p,
.policy-content li {
    color: var(--muted-ink);
}

/* Footer */
.site-footer {
    position: relative;
    color: rgba(255, 255, 255, 0.75);
    background: linear-gradient(160deg, var(--primary-dark), #071b45);
}

.footer-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.2fr) minmax(260px, 0.9fr) minmax(220px, 0.7fr);
    gap: 36px;
    padding: 60px 0;
}

.site-footer h2 {
    color: #ffffff;
    font-family: var(--font-mono);
    font-size: 0.85rem;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.site-footer a {
    color: rgba(255, 255, 255, 0.75);
}

.site-footer a:hover {
    color: #7fe9ff;
}

.footer-disclaimer,
.footer-details,
.footer-links {
    color: rgba(255, 255, 255, 0.75);
}

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

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

.footer-bottom {
    padding: 20px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.15);
    font-family: var(--font-mono);
    font-size: 0.82rem;
}

.footer-bottom p {
    margin: 0;
}

/* Scroll reveal */
[data-reveal] {
    opacity: 0;
    transform: translateY(18px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

[data-reveal].is-visible {
    opacity: 1;
    transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
    [data-reveal] {
        opacity: 1;
        transform: none;
    }
    .bg-glow {
        animation: none;
    }
}

@media (max-width: 980px) {
    .hero-grid,
    .feature-grid,
    .contact-grid,
    .footer-grid {
        grid-template-columns: 1fr;
    }

    .card-grid.four,
    .card-grid.three,
    .pricing-grid,
    .pricing-tables,
    .content-grid,
    .steps {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .contact-card {
        position: static;
    }

    .service-detail {
        grid-template-columns: 1fr;
    }

    .service-detail .button {
        justify-self: start;
    }

    .hero-media {
        transform: none;
    }

    .hero-badge {
        display: none;
    }
}

@media (max-width: 780px) {
    .section {
        padding: 60px 0;
    }

    h1 {
        font-size: 2.55rem;
    }

    h2 {
        font-size: 1.85rem;
    }

    .header-inner {
        min-height: 68px;
    }

    .nav-toggle {
        display: inline-block;
    }

    .primary-nav {
        position: absolute;
        left: 0;
        right: 0;
        top: 68px;
        display: none;
        flex-direction: column;
        align-items: stretch;
        padding: 14px 20px 20px;
        background: rgba(255, 255, 255, 0.98);
        border-bottom: 1px solid var(--border);
        box-shadow: 0 16px 24px rgba(20, 45, 110, 0.08);
        backdrop-filter: blur(16px);
    }

    .primary-nav.is-open {
        display: flex;
    }

    .primary-nav a {
        justify-content: center;
    }

    .section-heading.split,
    .cta-inner {
        align-items: stretch;
        flex-direction: column;
    }

    .check-grid,
    .check-list,
    .form-row.two,
    .detail-list div,
    .pricing-table dl div {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 620px) {
    .container,
    .narrow {
        width: min(100% - 28px, var(--container));
    }

    h1 {
        font-size: 2.05rem;
    }

    h2 {
        font-size: 1.55rem;
    }

    .card-grid.four,
    .card-grid.three,
    .pricing-grid,
    .pricing-tables,
    .content-grid,
    .steps {
        grid-template-columns: 1fr;
    }

    .button-row,
    .button {
        width: 100%;
    }

    .button-row .button {
        flex: 1 1 100%;
    }
}
