@import url(https://fonts.googleapis.com/css?family=Work+Sans:100,200,300,regular,500,600,700,800,900,100italic,200italic,300italic,italic,500italic,600italic,700italic,800italic,900italic);

:root {
    --container-width: 1240px;

    --text-primary: #ffffff;
    --text-secondary: #e0d4df;
    --text-muted: #a89ca9;
    --text-inverse: #000000;

    --bg-primary: #121212;
    --bg-secondary: #1e1e1e;
    --bg-tertiary: #2c2c2c;
    --bg-dark: #ffffff;

    --accent-primary: #e879f9;
    --accent-secondary: #f472b6;
    --accent-success: #34d399;
    --accent-warning: #fde047;
    --accent-danger: #f87171;

    --shadow-light: 0 1px 1px rgba(255, 255, 255, 0.04);
    --shadow-medium: 0 2px 4px rgba(255, 255, 255, 0.08);
    --shadow-strong: 0 6px 10px rgba(255, 255, 255, 0.12);

    --font-family: 'Work Sans', sans-serif;
    --font-size-xs: 13px;
    --font-size-sm: 15px;
    --font-size-base: 17px;
    --font-size-lg: 21px;
    --font-size-xl: 28px;
    --font-size-2xl: 36px;
    --font-size-3xl: 48px;

    --gap-xs: 4px;
    --gap-sm: 10px;
    --gap-md: 20px;
    --gap-lg: 30px;
    --gap-xl: 48px;
    --gap-2xl: 64px;

    --padding-xs: 4px;
    --padding-sm: 10px;
    --padding-md: 20px;
    --padding-lg: 30px;
    --padding-xl: 48px;

    --radius-sm: 6px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-xl: 32px;
    --radius-full: 9999px;

    --transition-fast: 160ms ease;
    --transition-normal: 300ms ease-in;
    --transition-slow: 500ms ease-out;
}

* {
    padding: 0px;
    margin: 0px;
    border: 0px;
}
*,
*::before,
*::after {
    box-sizing: border-box;
}
*::before,
*::after {
    display: inline-block;
}
html,
body {
    height: 100%;
    background: #121212;
    font-family: 'Work Sans', sans-serif;
    font-size: var(--font-size);
}
body {
    line-height: 1;
    scrollbar-gutter: stable;
    -ms-text-size-adjust: 100%;
    -moz-text-size-adjust: 100%;
    -webkit-text-size-adjust: 100%;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}
input,
button,
textarea {
    font-family: inherit;
    font-size: inherit;
    line-height: inherit;
    color: inherit;
    background-color: transparent;
}
input,
textarea {
    width: 100%;
}
label {
    display: inline-block;
}
button,
select,
option {
    cursor: pointer;
}
a {
    display: inline-block;
    color: inherit;
    text-decoration: none;
}
ul li {
    list-style: none;
}
img {
    max-width: 100%;
    height: auto;
    vertical-align: middle;
}
h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: inherit;
    font-size: inherit;
}

main {
    overflow-x: hidden;
}

.c-713ed2de {
    background: #121212;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    transition: 300ms ease-in;
}

.header--scrolled {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(226, 232, 240, 0.5);
}

.c-32ab34ea {
    max-width: 1240px;
    margin: 0 auto;
    padding: 30px 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.c-04d55b08 {
    position: absolute;
    left: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
    color: #ffffff;
    font-weight: 600;
    font-size: 21px;
    transition: 160ms ease;
    z-index: 9999;
}

.c-04d55b08:hover {
    transform: scale(1.05);
}

.c-e110e023 {
    font-size: 28px;
    background: linear-gradient(45deg, #e879f9, #f472b6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.c-e3e11842 {
    display: flex;
    align-items: center;
}

.c-9d432e4d {
    display: flex;
    align-items: center;
    gap: 48px;
    background: #1e1e1e;
    padding: 10px 30px;
    border-radius: 32px;
    border: 1px solid #2c2c2c;
}

.c-4eb35bbb {
    color: #e0d4df;
    font-weight: 500;
    padding: 10px 20px;
    border-radius: 12px;
    transition: 160ms ease;
    position: relative;
    overflow: hidden;
}

.c-4eb35bbb::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(59, 130, 246, 0.1), transparent);
    transition: 300ms ease-in;
}

.c-4eb35bbb:hover::before {
    left: 100%;
}

.c-4eb35bbb:hover {
    color: #e879f9;
    background: rgba(59, 130, 246, 0.05);
}

.header__menu-link--active {
    color: #e879f9;
    background: rgba(59, 130, 246, 0.1);
}

.header__theme-toggle {
    position: absolute;
    right: 20px;
    background: #1e1e1e;
    border: 1px solid #2c2c2c;
    border-radius: 50%;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: 160ms ease;
}

.header__theme-toggle:hover {
    background: #e879f9;
    color: #000000;
    transform: rotate(180deg);
}

.c-b103805b {
    display: none;
    flex-direction: column;
    cursor: pointer;
    padding: 10px;
    z-index: 1001;
    background: #1e1e1e;
    border: 1px solid #2c2c2c;
    border-radius: 50%;
    width: 44px;
    height: 44px;
    align-items: center;
    justify-content: center;
    transition: 160ms ease;
    position: absolute;
    right: 20px;
}

.c-b103805b:hover {
    background: #e879f9;
    transform: scale(1.05);
}

.c-1a8f1731 {
    width: 18px;
    height: 2px;
    background: #ffffff;
    margin: 2px 0;
    transition: 160ms ease;
    border-radius: 2px;
}

.c-b103805b:hover .c-1a8f1731 {
    background: #000000;
}

.header__burger--active {
    background: #e879f9;
}

.header__burger--active .c-1a8f1731 {
    background: #000000;
}

.header__burger--active .c-1a8f1731:nth-child(1) {
    transform: rotate(45deg) translate(4px, 4px);
}

.header__burger--active .c-1a8f1731:nth-child(2) {
    opacity: 0;
}

.header__burger--active .c-1a8f1731:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

.c-e46dd2ac {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(10px);
    opacity: 0;
    visibility: hidden;
    transition: 300ms ease-in;
    z-index: 999;
}

.header__overlay--active {
    opacity: 1;
    visibility: visible;
}

.c-c28f3759 {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: #121212;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 48px;
    transform: scale(0.9) translateY(-20px);
    opacity: 0;
    visibility: hidden;
    transition: 300ms ease-in;
    z-index: 1000;
    overflow-y: auto;
    padding: 48px 20px;
}

.header__mobile-menu--active {
    transform: scale(1) translateY(0);
    opacity: 1;
    visibility: visible;
}

.c-7278ebc7 {
    color: #ffffff;
    font-size: 36px;
    font-weight: 600;
    padding: 30px 48px;
    border-radius: 32px;
    transition: 160ms ease;
    opacity: 0;
    transform: translateY(30px);
    text-align: center;
    min-width: 250px;
    background: #1e1e1e;
    border: 1px solid #2c2c2c;
    position: relative;
    overflow: hidden;
    text-decoration: none;
    display: block;
}

.header__mobile-menu--active .c-7278ebc7 {
    opacity: 1;
    transform: translateY(0);
}

.c-7278ebc7:nth-child(1) {
    transition-delay: 0.1s;
}
.c-7278ebc7:nth-child(2) {
    transition-delay: 0.2s;
}
.c-7278ebc7:nth-child(3) {
    transition-delay: 0.3s;
}
.c-7278ebc7:nth-child(4) {
    transition-delay: 0.4s;
}
.c-7278ebc7:nth-child(5) {
    transition-delay: 0.5s;
}

.c-7278ebc7::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(59, 130, 246, 0.1), transparent);
    transition: 300ms ease-in;
}

.c-7278ebc7:hover::before {
    left: 100%;
}

.c-7278ebc7:hover {
    color: #e879f9;
    background: rgba(59, 130, 246, 0.05);
    transform: scale(1.05);
    border-color: #e879f9;
}

.header__mobile-menu-link--active {
    color: #e879f9;
    background: rgba(59, 130, 246, 0.1);
    border-color: #e879f9;
}

@keyframes slideInFromRight {
    from {
        transform: translateX(100%);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes slideOutToRight {
    from {
        transform: translateX(0);
        opacity: 1;
    }
    to {
        transform: translateX(100%);
        opacity: 0;
    }
}

.c-353e8e32 {
    background-color: #ffffff;
    color: #000000;
    padding: 48px 0;
}

.c-7b98104d {
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 20px;
}

.c-d0c33a5e {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 48px;
    margin-bottom: 48px;
}

.c-76e267b3 {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.c-6d7e14a0 {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
    font-size: 21px;
    margin-bottom: 10px;
}

.c-6d7e14a0 i {
    color: #e879f9;
    font-size: 28px;
}

.c-fdcb2897 {
    color: #a89ca9;
    line-height: 1.5;
    margin-bottom: 20px;
}

.c-23aaab3f {
    font-size: 21px;
    font-weight: 600;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
}

.c-23aaab3f::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background-color: #e879f9;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-link {
    color: #a89ca9;
    transition: color 160ms ease;
    display: flex;
    align-items: center;
    gap: 4px;
}

.footer-link:hover {
    color: #e879f9;
    transform: translateX(5px);
}

.footer-link i {
    font-size: 10px;
}

.c-09b522b7 {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 10px;
}

.c-9792b40e {
    color: #e879f9;
    margin-top: 3px;
}

.c-e943c85b {
    color: #a89ca9;
    line-height: 1.5;
}

.c-514ca948 {
    margin-top: 10px;
}

.c-18df2a8c {
    color: #a89ca9;
    line-height: 1.5;
    margin-bottom: 20px;
}

.c-13e70161 {
    display: flex;
    gap: 10px;
}

.c-36b5d07a {
    flex: 1;
    background-color: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 10px 20px;
    border-radius: 6px;
    color: #000000;
}

.c-36b5d07a::placeholder {
    color: #a89ca9;
}

.c-b5954502 {
    background-color: #e879f9;
    color: #000000;
    padding: 10px 20px;
    border-radius: 6px;
    transition: background-color 160ms ease;
}

.c-b5954502:hover {
    background-color: #f472b6;
}

.c-b4fdf427 {
    display: flex;
    gap: 20px;
    margin-top: 20px;
}

.c-89b46b1a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.1);
    color: #a89ca9;
    transition: all 160ms ease;
}

.c-89b46b1a:hover {
    background-color: #e879f9;
    color: #000000;
    transform: translateY(-3px);
}

.c-6a34631b {
    margin-top: 48px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 20px;
}

.c-70cafbc9 {
    color: #a89ca9;
    font-size: 15px;
}

.c-f165f19a {
    display: flex;
    gap: 30px;
}

.c-c6cc9740 {
    color: #a89ca9;
    font-size: 15px;
    transition: color 160ms ease;
}

.c-c6cc9740:hover {
    color: #e879f9;
}

.c-51e916a6 {
    min-height: 100vh;
    background: linear-gradient(135deg, #e879f9 0%, #f472b6 100%);
    padding: 140px 20px 64px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.c-3824d956 {
    max-width: 600px;
    width: 100%;
    background: #121212;
    border-radius: 32px;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.2);
    overflow: hidden;
}

.c-0ff26454 {
    background: linear-gradient(135deg, #ffffff 0%, #ffffff 100%);
    color: #000000;
    padding: 48px;
    text-align: center;
}

.c-a5e1226a {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 10px;
}

.c-97441bda {
    font-size: var(--font-size);
    opacity: 0.9;
    font-weight: 300;
}

.c-aae7141c {
    padding: 48px;
}

.c-9041e324 {
    display: flex;
    flex-direction: column;
    gap: 48px;
}

.c-f8d189a7 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.c-a011ecf2 {
    position: relative;
}

.contacts-v2__field--full {
    grid-column: 1 / -1;
}

.c-a2bd7925 {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: 20px;
    font-size: 15px;
    color: #a89ca9;
    transition: all 300ms ease-in;
    pointer-events: none;
    background: #121212;
    padding: 0 4px;
}

.c-2c54f147 {
    top: 20px;
}

.c-6e56c6a5,
.c-55210a4f {
    width: 100%;
    padding: 10px 20px;
    border: 2px solid #2c2c2c;
    border-radius: 12px;
    font-size: var(--font-size);
    color: #ffffff;
    background: #121212;
    transition: all 300ms ease-in;
    outline: none;
}

.c-6e56c6a5:focus,
.c-55210a4f:focus,
.c-6e56c6a5:not(:placeholder-shown),
.c-55210a4f:not(:placeholder-shown) {
    border-color: #e879f9;
}

.c-6e56c6a5:focus + .c-a2bd7925,
.c-55210a4f:focus + .c-a2bd7925,
.c-6e56c6a5:not(:placeholder-shown) + .c-a2bd7925,
.c-55210a4f:not(:placeholder-shown) + .c-a2bd7925,
.c-e298e14b:has(.c-6e56c6a5:focus) .c-a2bd7925,
.c-e298e14b:has(.c-6e56c6a5:not(:placeholder-shown)) .c-a2bd7925 {
    top: 0px;
    left: 12px;
    font-size: 12px;
    color: #e879f9;
    font-weight: 500;
}

.c-55210a4f {
    min-height: 120px;
    resize: vertical;
    font-family: inherit;
    line-height: 1.5;
}

.c-e298e14b {
    position: relative;
}

.c-6291f888 {
    padding: 30px 48px;
    background: linear-gradient(135deg, #e879f9 0%, #f472b6 100%);
    color: #000000;
    border: none;
    border-radius: 12px;
    font-size: 21px;
    font-weight: 600;
    cursor: pointer;
    transition: all 300ms ease-in;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 4px 15px rgba(59, 130, 246, 0.3);
}

.c-6291f888:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(59, 130, 246, 0.4);
}

.c-6291f888:active {
    transform: translateY(0);
}

.c-37cb2c8d {
    left: 64px;
}

.c-496e786a {
    padding-left: 64px !important;
}

.c-51e916a6 .iti {
    width: 100%;
}

.c-51e916a6 .iti__flag-container {
    border-right: 2px solid #2c2c2c;
}

.c-51e916a6 .iti__selected-flag {
    padding: 0 20px;
}

.c-51e916a6 .iti__country-list {
    border-radius: 12px;
    box-shadow: 0 10px 30px 0 6px 10px rgba(255, 255, 255, 0.12);
    background: #121212;
    color: #ffffff;
}

.c-51e916a6 .iti__country:hover {
    background: #1e1e1e;
}

.c-51e916a6 .iti__active {
    background: #e879f9;
}

input.error {
    border: 1px solid #f87171 !important;
}

.c-18fe3918 {
    color: #a89ca9;
    opacity: 0.8;
    line-height: 1.4;
}

.c-cb324ca3 {
    width: 100vw;
    height: 100vh;
    background: #121212;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.c-f416faeb {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.c-c83c2341 {
    text-align: center;
    z-index: 10;
    position: relative;
    animation: cta-content-float 6s ease-in-out infinite;
}

.c-14150b48 {
    font-size: clamp(2.5rem, 10vw, 5rem);
    font-weight: 900;
    color: #ffffff;
    margin-bottom: 30px;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
    line-height: 1;
    position: relative;
}

.c-14150b48::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, #e879f9, #f472b6);
    border-radius: 2px;
    animation: cta-underline-wave 3s ease-in-out infinite;
}

.c-3c3fd226 {
    font-size: clamp(1rem, 3vw, 1.5rem);
    color: #ffffff;
    margin-bottom: 64px;
    opacity: 0.9;
    line-height: 1.4;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.c-6138fc5a {
    display: inline-block;
    background: linear-gradient(45deg, #e879f9, #f472b6);
    color: #ffffff;
    padding: 30px 48px;
    border-radius: 50px;
    font-size: 21px;
    font-weight: 700;
    text-decoration: none;
    position: relative;
    overflow: hidden;
    transition: all 300ms ease-in;
    box-shadow: 0 8px 25px rgba(59, 130, 246, 0.3);
}

.c-6138fc5a::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, #f472b6, #e879f9);
    opacity: 0;
    transition: opacity 300ms ease-in;
}

.c-6138fc5a:hover::before {
    opacity: 1;
}

.c-6138fc5a:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 15px 35px rgba(59, 130, 246, 0.4);
}

.c-6138fc5a span {
    position: relative;
    z-index: 1;
}

@keyframes cta-content-float {
    0%,
    100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-10px);
    }
}

@keyframes cta-underline-wave {
    0%,
    100% {
        width: 100px;
        transform: translateX(-50%) scaleX(1);
    }
    50% {
        width: 200px;
        transform: translateX(-50%) scaleX(1.2);
    }
}

.c-920cff58 {
    position: fixed;
    top: 0;
    right: 0;
    width: 400px;
    height: 100vh;
    background: #ffffff;
    color: #000000;
    z-index: 1000;
    transform: translateX(100%);
    transition: transform 300ms ease-in;
    display: flex;
    flex-direction: column;
    box-shadow: -10px 0 30px 0 6px 10px rgba(255, 255, 255, 0.12);
}

.c-920cff58.policy-sidebar--visible {
    transform: translateX(0);
}

.c-51ef019b {
    padding: 48px;
    background: linear-gradient(135deg, #ffffff, #e879f9);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.c-752c336c {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 20px;
}

.c-27152d54 {
    opacity: 0.8;
    font-size: 15px;
}

.c-97d16cea {
    flex: 1;
    padding: 48px;
    overflow-y: auto;
}

.c-3ceecfe1 {
    margin-bottom: 48px;
    line-height: 1.6;
    opacity: 0.9;
}

.c-9df636a5 {
    margin-bottom: 48px;
}

.c-456145da {
    font-size: 21px;
    font-weight: 600;
    margin-bottom: 30px;
    color: #000000;
}

.c-912ad778 {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.c-eb52df30 {
    display: flex;
    align-items: center;
    padding: 20px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    color: #000000;
    text-decoration: none;
    transition: all 160ms ease;
    border: 1px solid transparent;
}

.c-eb52df30:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: #e879f9;
    transform: translateX(-4px);
}

.c-e4022948 {
    font-size: 20px;
    margin-right: 20px;
    width: 24px;
    text-align: center;
}

.c-c06c119b {
    flex: 1;
}

.c-3924ba4f {
    font-weight: 600;
    margin-bottom: 2px;
}

.c-3203fa9c {
    font-size: 15px;
    opacity: 0.7;
}

.c-8449dfa7 {
    padding: 48px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(0, 0, 0, 0.2);
}

.c-d6d30769 {
    display: flex;
    gap: 20px;
}

.c-e4190d74 {
    flex: 1;
    padding: 20px;
    border-radius: 12px;
    font-size: var(--font-size);
    font-weight: 600;
    cursor: pointer;
    transition: all 160ms ease;
    border: 2px solid transparent;
}

.c-3f88f26e {
    background: #e879f9;
    color: #000000;
}

.c-3f88f26e:hover {
    background: #f472b6;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.c-063ea94c {
    background: transparent;
    color: #000000;
    border-color: rgba(255, 255, 255, 0.3);
}

.c-063ea94c:hover {
    border-color: #000000;
    background: rgba(255, 255, 255, 0.1);
}

.c-d9c2a069 {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: all 300ms ease-in;
}

.c-d9c2a069.policy-sidebar__overlay--visible {
    opacity: 1;
    visibility: visible;
}

@media (max-width: 768px) {
    .c-9d432e4d {
        gap: 20px;
        padding: 4px 20px;
    }

    .c-4eb35bbb {
        padding: 4px 10px;
        font-size: 15px;
    }

    .c-04d55b08 {
        position: static;
    }

    .header__theme-toggle {
        position: static;
        margin-left: 20px;
    }

    .c-32ab34ea {
        justify-content: space-between;
    }
    .c-e3e11842,
    .header__theme-toggle {
        display: none;
    }

    .c-b103805b {
        display: flex;
    }

    .c-32ab34ea {
        justify-content: space-between;
        padding: 20px;
    }

    .c-04d55b08 {
        position: static;
        transform: translateX(0);
    }

    .c-9d432e4d {
        display: none;
    }
}
@media (max-width: 480px) {
    .c-7278ebc7 {
        font-size: 28px;
        min-width: 200px;
        padding: 20px 30px;
    }

    .c-c28f3759 {
        gap: 30px;
        padding: 30px 10px;
    }
}
@media (max-width: 768px) {
    .c-6a34631b {
        flex-direction: column;
    }

    .c-f165f19a {
        flex-direction: column;
        gap: 10px;
    }
}
@media (max-width: 768px) {
    .c-f8d189a7 {
        grid-template-columns: 1fr;
    }

    .c-0ff26454,
    .c-aae7141c {
        padding: 30px;
    }
}
@media (max-width: 480px) {
    .c-920cff58 {
        width: 100%;
    }
}
