@import url(https://fonts.googleapis.com/css?family=IBM+Plex+Sans:100,200,300,regular,500,600,700,100italic,200italic,300italic,italic,500italic,600italic,700italic);



* {
    padding: 0px;
    margin: 0px;
    border: 0px;
}
*,
*::before,
*::after {
    box-sizing: border-box;
}
*::before,
*::after {
    display: inline-block;
}
html,
body {
    height: 100%;
    background: #0f172a;
    font-family: 'IBM Plex 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-c673374b {
    background: #1e293b;
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 100;
    color: #f1f5f9;
}

.c-d752f616 {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.c-6e0f276a {
    display: flex;
    align-items: center;
    font-size: 19px;
    font-weight: bold;
    position: relative;
    z-index: 9999;
}

.c-1241022b {
    margin-right: 10px;
    color: #0ea5e9;
}


.c-43351f2a {
    display: flex;
    align-items: center;
}

.c-d4db8090 {
    display: flex;
    margin-right: 48px;
}

.c-9bd0f991 {
    margin-left: 30px;
    position: relative;
}

.c-fe988f12 {
    display: flex;
    align-items: center;
    padding: 10px;
    transition: 150ms ease-in-out;
}

.c-fe988f12:hover {
    color: #0ea5e9;
}

.c-fe988f12 i {
    margin-left: 10px;
}


.header__dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    background: #1e293b;
    border-radius: 12px;
    padding: 10px;
    min-width: 200px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: 300ms ease-in-out;
}

.c-9bd0f991:hover .header__dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.header__dropdown-item {
    padding: 10px;
    border-radius: 6px;
    transition: 150ms ease-in-out;
    white-space: nowrap;
}

.header__dropdown-item:hover {
    background: #334155;
    color: #0ea5e9;
}


.header__search {
    display: flex;
    align-items: center;
    background: #334155;
    border-radius: 24px;
    padding: 10px;
}

.header__search-icon {
    margin-right: 10px;
    color: #cbd5e1;
}

.header__search-input {
    background: none;
    border: none;
    outline: none;
    color: #f1f5f9;
}

.header__search-input::placeholder {
    color: #cbd5e1;
}
.c-4cde6b23 {
    display: none;
    flex-direction: column;
    cursor: pointer;
    padding: 10px;
    z-index: 1001;
    background: none;
    border: none;
}

.c-54898576 {
    width: 24px;
    height: 2px;
    background: #f1f5f9;
    margin: 3px 0;
    transition: 150ms ease-in-out;
    border-radius: 2px;
}

.header__burger--active .c-54898576:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.header__burger--active .c-54898576:nth-child(2) {
    opacity: 0;
}

.header__burger--active .c-54898576:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
}

.c-f270927c {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: #0f172a;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    padding-top: 100px;
    gap: 30px;
    transform: translateX(-100%);
    transition: 300ms ease-in-out;
    z-index: 1000;
    overflow-y: auto;
}

.header__mobile-menu--active {
    transform: translateX(0);
}

.c-462a20d3 {
    width: 90%;
    max-width: 300px;
}

.c-01a3ca2f {
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: #f1f5f9;
    font-size: 19px;
    font-weight: 600;
    padding: 30px;
    border-radius: 18px;
    transition: 150ms ease-in-out;
    opacity: 0;
    transform: translateY(20px);
    width: 100%;
    background: #1e293b;
    margin-bottom: 10px;
}

.header__mobile-menu--active .c-01a3ca2f {
    opacity: 1;
    transform: translateY(0);
}

.c-01a3ca2f:nth-child(1) {
    transition-delay: 0.1s;
}
.c-01a3ca2f:nth-child(2) {
    transition-delay: 0.2s;
}
.c-01a3ca2f:nth-child(3) {
    transition-delay: 0.3s;
}
.c-01a3ca2f:nth-child(4) {
    transition-delay: 0.4s;
}

.c-01a3ca2f:hover {
    color: #0ea5e9;
    background: #0ea5e9;
    color: #0f172a;
    transform: scale(1.02);
}

.header__mobile-submenu {
    max-height: 0;
    overflow: hidden;
    transition: 300ms ease-in-out;
    background: #334155;
    border-radius: 12px;
    margin-top: 10px;
}

.header__mobile-submenu--active {
    max-height: 300px;
}

.header__mobile-submenu-item {
    padding: 20px 30px;
    color: #cbd5e1;
    border-bottom: 1px solid #1e293b;
    transition: 150ms ease-in-out;
}

.header__mobile-submenu-item:last-child {
    border-bottom: none;
}

.header__mobile-submenu-item:hover {
    background: #1e293b;
    color: #0ea5e9;
}

.header__mobile-search {
    width: 90%;
    max-width: 300px;
    display: flex;
    align-items: center;
    background: #1e293b;
    border-radius: 24px;
    padding: 20px;
    margin-top: 30px;
}

.header__mobile-search-input {
    background: transparent;
    border: none;
    outline: none;
    padding: 4px;
    color: #f1f5f9;
    width: 100%;
}

.c-83322cf3 {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(0, 0, 0, 0.5);
    opacity: 0;
    visibility: hidden;
    transition: 300ms ease-in-out;
    z-index: 999;
}

.header__overlay--active {
    opacity: 1;
    visibility: visible;
}




.c-6efaa18f {
    background-color: #1e293b;
    padding: 48px 0;
    border-top: 1px solid #334155;
}

.c-94d7c5d5 {
    max-width: 1180px;
    margin: 0 auto;
    padding: 0 20px;
}

.c-65773fea {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 48px;
    margin-bottom: 48px;
}

.c-0fa14a1e {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.c-5598c8f9 {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #f1f5f9;
    font-weight: 600;
    font-size: 26px;
}

.c-5598c8f9 i {
    color: #0ea5e9;
    font-size: 34px;
}

.c-ed7641e9 {
    color: #cbd5e1;
    line-height: 1.6;
}

.c-5e8b6e04 {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 20px;
}

.c-b7d0c2cb {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #cbd5e1;
}

.c-2047f1ce {
    color: #0ea5e9;
    width: 20px;
    text-align: center;
}

.c-58675f95 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 48px;
}

.c-73f6e95d {
    display: flex;
    flex-direction: column;
}

.c-4be390da {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
    cursor: pointer;
    border-bottom: 1px solid #334155;
}

.c-819e0571 {
    color: #f1f5f9;
    font-weight: 600;
    font-size: 19px;
}

.c-f3e16909 {
    color: #0ea5e9;
    transition: transform 300ms ease-in-out;
    display: none;
}

.c-b0932e99 {
    padding: 20px 0;
    overflow: hidden;
    transition: max-height 300ms ease-in-out;
}

.c-7e7100f8 {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.c-2fa16f1b {
    color: #cbd5e1;
    transition: all 150ms ease-in-out;
    padding: 4px 0;
    position: relative;
    padding-left: 20px;
}

.c-2fa16f1b::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    width: 6px;
    height: 6px;
    background-color: #0ea5e9;
    border-radius: 50%;
    transform: translateY(-50%) scale(0);
    transition: transform 150ms ease-in-out;
}

.c-2fa16f1b:hover {
    color: #0ea5e9;
    padding-left: 30px;
}

.c-2fa16f1b:hover::before {
    transform: translateY(-50%) scale(1);
}

.c-b9d1caab {
    margin-top: 20px;
}

.c-120622ff {
    color: #cbd5e1;
    line-height: 1.5;
    margin-bottom: 20px;
}

.c-dcd70400 {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.c-a8366567 {
    background-color: #0f172a;
    border: 1px solid #334155;
    padding: 20px;
    border-radius: 6px;
    color: #f1f5f9;
    transition: border-color 150ms ease-in-out;
}

.c-a8366567:focus {
    outline: none;
    border-color: #0ea5e9;
}

.c-a8366567::placeholder {
    color: #94a3b8;
}

.c-0824e321 {
    background-color: #0ea5e9;
    color: #0f172a;
    padding: 20px;
    border-radius: 6px;
    font-weight: 500;
    transition: background-color 150ms ease-in-out;
}

.c-0824e321:hover {
    background-color: #38bdf8;
}

.c-3062ac33 {
    padding-top: 20px;
    border-top: 1px solid #334155;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 20px;
}

.c-9d5e4efc {
    color: #94a3b8;
    font-size: 14px;
}

.c-822ad1d4 {
    display: flex;
    gap: 30px;
}

.c-53de4648 {
    color: #94a3b8;
    font-size: 14px;
    transition: color 150ms ease-in-out;
}

.c-53de4648:hover {
    color: #0ea5e9;
}






.c-7fffaa0e {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f1f5f9;
    padding: 30px;
    position: relative;
}

.c-7fffaa0e::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, #f1f5f9, #0ea5e9);
    opacity: 0.1;
}

.c-2146bde4 {
    background: #0f172a;
    padding: 48px;
    border-radius: 24px;
    box-shadow: 0 25px 50px 0 6px 12px rgba(0, 0, 0, 0.15);
    text-align: center;
    max-width: 500px;
    width: 100%;
    position: relative;
    z-index: 1;
    transform: rotateX(10deg) rotateY(5deg);
    transition: transform 500ms ease;
}

.c-2146bde4:hover {
    transform: rotateX(0deg) rotateY(0deg);
}

.c-06064be9 {
    margin-bottom: 48px;
    position: relative;
}

.c-6af615b3 {
    display: inline-block;
    padding: 10px 20px;
    background: linear-gradient(135deg, #38bdf8, #0ea5e9);
    color: #0f172a;
    border-radius: 18px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 20px;
    opacity: 0;
    transform: translateY(-10px);
}

.c-e1d690a6 {
    font-size: 34px;
    font-weight: 700;
    color: #f1f5f9;
    margin-bottom: 10px;
    line-height: 1.2;
    opacity: 0;
    transform: translateX(-20px);
}

.c-3461d89a {
    font-size: 19px;
    color: #cbd5e1;
    opacity: 0;
    transform: translateX(20px);
}

.c-7c50b3d6 {
    margin-bottom: 64px;
}

.c-44d82853 {
    font-size: var(--font-size);
    color: #94a3b8;
    line-height: 1.6;
    margin-bottom: 30px;
    opacity: 0;
    transform: translateY(20px);
}

.c-68e90153 {
    background: #1e293b;
    padding: 20px;
    border-radius: 12px;
    font-size: 14px;
    color: #cbd5e1;
    opacity: 0;
    transform: scale(0.9);
}

.c-8dc2394e {
    display: flex;
    gap: 20px;
    justify-content: center;
}

.c-3e932ff4 {
    flex: 1;
    max-width: 200px;
    padding: 20px 30px;
    border-radius: 12px;
    font-weight: 500;
    text-decoration: none;
    transition: all 300ms ease-in-out;
    text-align: center;
    transform: translateY(20px);
}

.c-e545203d {
    background: #0ea5e9;
    color: #0f172a;
    box-shadow: 0 4px 12px 0 3px 6px rgba(0, 0, 0, 0.1);
}

.c-e545203d:hover {
    background: #38bdf8;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px 0 6px 12px rgba(0, 0, 0, 0.15);
}

.c-180bb164 {
    background: #334155;
    color: #cbd5e1;
}

.c-180bb164:hover {
    background: #f1f5f9;
    color: #0f172a;
}

.thanks-card__badge--animated,
.thanks-card__title--animated,
.thanks-card__subtitle--animated,
.thanks-card__description--animated,
.thanks-card__info--animated,
.thanks-card__button--animated {
    opacity: 1;
    transform: translateY(0) translateX(0) scale(1);
    transition: all 500ms ease;
}

@media (max-width: 768px) {
    .c-43351f2a {
        display: none;
    }

    .c-4cde6b23 {
        display: flex;
    }
}
@media (max-width: 768px) {
    .c-65773fea {
        grid-template-columns: 1fr;
    }

    .c-58675f95 {
        grid-template-columns: 1fr;
    }

    .c-f3e16909 {
        display: block;
    }

    .c-b0932e99 {
        max-height: 0;
        padding: 0;
    }

    .c-73f6e95d.footer-section-active .c-b0932e99 {
        max-height: 300px;
        padding: 20px 0;
    }

    .c-73f6e95d.footer-section-active .c-f3e16909 {
        transform: rotate(180deg);
    }

    .c-3062ac33 {
        flex-direction: column;
        text-align: center;
    }

    .c-822ad1d4 {
        justify-content: center;
        flex-wrap: wrap;
    }
}
@media (min-width: 769px) {
    .c-b0932e99 {
        max-height: none !important;
        padding: 20px 0 !important;
    }
}