@import url(https://fonts.googleapis.com/css?family=Rubik:300,regular,500,600,700,800,900,300italic,italic,500italic,600italic,700italic,800italic,900italic);



* {
    padding: 0px;
    margin: 0px;
    border: 0px;
}
*,
*::before,
*::after {
    box-sizing: border-box;
}
*::before,
*::after {
    display: inline-block;
}
html,
body {
    height: 100%;
    background: #1f1f2e;
    font-family: 'Rubik', 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;
}





.header {
    background-color: #1f1f2e;
    box-shadow: 0 2px 4px 0 1px 2px rgba(255, 255, 255, 0.04);
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 100;
}

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

.header__logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 19px;
    font-weight: 700;
    color: #f3f4f6;
    text-decoration: none;
}

.header__logo i {
    color: #a78bfa;
    font-size: 26px;
}

.nav__list {
    display: flex;
    gap: 30px;
    list-style: none;
}

.nav__list a {
    color: #d1d5db;
    text-decoration: none;
    font-weight: 500;
    transition: color 150ms ease-in-out;
}

.nav__list a:hover {
    color: #a78bfa;
}

.header__burger {
    display: none;
    background: none;
    border: none;
    font-size: 26px;
    color: #f3f4f6;
    cursor: pointer;
    position: relative;
    z-index: 6;
}




.footer {
    background-color: #2c2c3c;
    padding: 48px 0;
    border-top: 1px solid #3a3a4f;
}

.footer-container {
    max-width: 1160px;
    margin: 0 auto;
    padding: 0 20px;
}

.footer-top {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 48px;
    margin-bottom: 48px;
}

.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #f3f4f6;
    font-weight: 600;
    font-size: 26px;
}

.footer-logo i {
    color: #a78bfa;
    font-size: 34px;
}

.footer-description {
    color: #d1d5db;
    line-height: 1.6;
}

.footer-contact-info {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 20px;
}

.footer-contact-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #d1d5db;
}

.footer-contact-icon {
    color: #a78bfa;
    width: 20px;
    text-align: center;
}

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

.footer-section {
    display: flex;
    flex-direction: column;
}

.footer-section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
    cursor: pointer;
    border-bottom: 1px solid #3a3a4f;
}

.footer-section-title {
    color: #f3f4f6;
    font-weight: 600;
    font-size: 19px;
}

.footer-section-toggle {
    color: #a78bfa;
    transition: transform 300ms ease-in-out;
    display: none;
}

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

.footer-section-links {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-section-link {
    color: #d1d5db;
    transition: all 150ms ease-in-out;
    padding: 4px 0;
    position: relative;
    padding-left: 20px;
}

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

.footer-section-link:hover {
    color: #a78bfa;
    padding-left: 30px;
}

.footer-section-link:hover::before {
    transform: translateY(-50%) scale(1);
}

.footer-newsletter {
    margin-top: 20px;
}

.footer-newsletter-text {
    color: #d1d5db;
    line-height: 1.5;
    margin-bottom: 20px;
}

.footer-form {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-input {
    background-color: #1f1f2e;
    border: 1px solid #3a3a4f;
    padding: 20px;
    border-radius: 5px;
    color: #f3f4f6;
    transition: border-color 150ms ease-in-out;
}

.footer-input:focus {
    outline: none;
    border-color: #a78bfa;
}

.footer-input::placeholder {
    color: #9ca3af;
}

.footer-button {
    background-color: #a78bfa;
    color: #111827;
    padding: 20px;
    border-radius: 5px;
    font-weight: 500;
    transition: background-color 150ms ease-in-out;
}

.footer-button:hover {
    background-color: #f472b6;
}

.footer-bottom {
    padding-top: 20px;
    border-top: 1px solid #3a3a4f;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 20px;
}

.footer-copyright {
    color: #9ca3af;
    font-size: 14px;
}

.footer-policy-links {
    display: flex;
    gap: 30px;
}

.footer-policy-link {
    color: #9ca3af;
    font-size: 14px;
    transition: color 150ms ease-in-out;
}

.footer-policy-link:hover {
    color: #a78bfa;
}






.policy-container {
    max-width: 1160px;
    margin: 0 auto;
    padding: 2rem;
    font-family: 'Rubik', sans-serif;
    color: #f3f4f6;
    background-color: #1f1f2e;
    box-shadow: 0 1px 2px rgba(255, 255, 255, 0.04);
    line-height: 1.6;
    font-size: 16px;
}

.policy-container h1,
.policy-container h2,
.policy-container h3,
.policy-container h4 {
    color: #f3f4f6;
    margin-top: 1.5rem;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.policy-container h1 {
    font-size: 42px;
}

.policy-container h2 {
    font-size: 34px;
}

.policy-container h3 {
    font-size: 26px;
}

.policy-container h4 {
    font-size: 19px;
}

.policy-container p,
.policy-container li {
    color: #d1d5db;
    font-size: 16px;
}

.policy-container ul {
    padding-left: 1.5rem;
    margin-bottom: 1rem;
}

.policy-container ul li {
    margin-bottom: 0.5rem;
}

.policy-container a {
    color: #a78bfa;
    text-decoration: underline;
    transition: color 0.2s ease-in-out;
}

.policy-container a:hover {
    color: #f472b6;
}

.policy-container strong {
    color: #f3f4f6;
    font-weight: 600;
}

.policy-container code {
    background-color: #3a3a4f;
    padding: 0.2em 0.4em;
    border-radius: 4px;
    font-size: 14px;
}

@media (max-width: 768px) {
    .header__burger {
        display: block;
    }

    .header__nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 70%;
        height: 100vh;
        background-color: #1f1f2e;
        box-shadow: -2px 0 8px 0 3px 6px rgba(255, 255, 255, 0.08);
        transition: right 300ms ease-in-out;
        padding: 48px;
        z-index: 5;
    }

    .header__nav.active {
        right: 0;
    }

    .nav__list {
        flex-direction: column;
        margin-top: 64px;
    }
}
@media (max-width: 768px) {
    .footer-top {
        grid-template-columns: 1fr;
    }

    .footer-sections {
        grid-template-columns: 1fr;
    }

    .footer-section-toggle {
        display: block;
    }

    .footer-section-content {
        max-height: 0;
        padding: 0;
    }

    .footer-section.footer-section-active .footer-section-content {
        max-height: 300px;
        padding: 20px 0;
    }

    .footer-section.footer-section-active .footer-section-toggle {
        transform: rotate(180deg);
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }

    .footer-policy-links {
        justify-content: center;
        flex-wrap: wrap;
    }
}
@media (min-width: 769px) {
    .footer-section-content {
        max-height: none !important;
        padding: 20px 0 !important;
    }
}
@media (max-width: 768px) {
    .policy-container {
        padding: 1rem;
        font-size: 14px;
    }

    .policy-container h1 {
        font-size: 34px;
    }

    .policy-container h2 {
        font-size: 26px;
    }

    .policy-container h3 {
        font-size: 19px;
    }
}