* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: #1a1a1a;
    background-color: #ffffff;
    overflow-x: hidden;
}

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

.zx9k2m-wrapper {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.hx7n3k-header {
    background-color: #ffffff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 15px 0;
}

.df2w9m-header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}

.vk4p8t-header-left {
    display: flex;
    align-items: center;
    gap: 40px;
}

.qw5n7x-logo img {
    display: block;
    height: 50px;
    width: auto;
}

.ln8r4v-nav-desktop {
    display: none;
}

.bp3x6k-nav-list {
    display: flex;
    list-style: none;
    gap: 25px;
}

.mx9t2w-nav-link {
    text-decoration: none;
    color: #1a1a1a;
    font-weight: 500;
    transition: color 0.3s ease;
}

.mx9t2w-nav-link:hover {
    color: #2c5da8;
}

.kg2v5n-header-right {
    display: flex;
    align-items: center;
    gap: 15px;
}

.jw7m3p-online-counter {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 15px;
    background: linear-gradient(135deg, #2c5da8 0%, #1e4078 100%);
    border-radius: 20px;
    color: #ffffff;
    font-size: 14px;
}

.xp4k9r-counter-icon {
    font-size: 18px;
}

.fv6n8k-header-buttons {
    display: flex;
    gap: 10px;
}

.bm3x7w-btn {
    padding: 10px 20px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    display: inline-block;
    text-align: center;
}

.bm3x7w-btn-login {
    background-color: #2c5da8;
    color: #ffffff;
}

.bm3x7w-btn-login:hover {
    background-color: #1e4078;
    transform: translateY(-2px);
}

.bm3x7w-btn-signup {
    background-color: #ffcc01;
    color: #1a1a1a;
}

.bm3x7w-btn-signup:hover {
    background-color: #e6b800;
    transform: translateY(-2px);
}

.pk9w2x-burger {
    display: flex;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.pk9w2x-burger span {
    width: 25px;
    height: 3px;
    background-color: #1a1a1a;
    transition: all 0.3s ease;
    border-radius: 2px;
}

.pk9w2x-burger.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.pk9w2x-burger.active span:nth-child(2) {
    opacity: 0;
}

.pk9w2x-burger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

.xt7n4m-nav-mobile {
    display: none;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.xt7n4m-nav-mobile.active {
    display: block;
    max-height: 500px;
    margin-top: 20px;
}

.cv8p2k-mobile-nav-list {
    list-style: none;
    padding: 20px 0;
}

.cv8p2k-mobile-nav-list li {
    border-bottom: 1px solid #f0f0f0;
}

.wn4k7x-mobile-link {
    display: block;
    padding: 15px 0;
    text-decoration: none;
    color: #1a1a1a;
    font-weight: 500;
}

.px4n7v-hero-section {
    position: relative;
    margin-bottom: 40px;
}

.qm5x8k-hero-slider {
    position: relative;
    overflow: hidden;
    border-radius: 0;
}

.hn7w3p-slider-track {
    display: flex;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.zr4x8m-slide {
    min-width: 100%;
    position: relative;
    display: none;
}

.zr4x8m-slide-active {
    display: block;
}

.zr4x8m-slide img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    display: block;
}

.tx9n4k-slide-content {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    align-items: center;
    background: linear-gradient(90deg, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.3) 100%);
}

.fw7k2m-slide-title {
    font-size: 42px;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 15px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.pm3x7n-slide-text {
    font-size: 20px;
    color: #ffffff;
    margin-bottom: 25px;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.bt5w9k-hero-btn {
    display: inline-block;
    padding: 15px 40px;
    background-color: #ffcc01;
    color: #1a1a1a;
    text-decoration: none;
    border-radius: 30px;
    font-weight: 700;
    font-size: 18px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 204, 1, 0.4);
}

.bt5w9k-hero-btn:hover {
    background-color: #e6b800;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(255, 204, 1, 0.6);
}

.jx6n9w-slider-prev,
.jx6n9w-slider-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(255, 255, 255, 0.9);
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    font-size: 30px;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
    color: #1a1a1a;
    display: flex;
    align-items: center;
    justify-content: center;
}

.jx6n9w-slider-prev {
    left: 20px;
}

.jx6n9w-slider-next {
    right: 20px;
}

.jx6n9w-slider-prev:hover,
.jx6n9w-slider-next:hover {
    background-color: #ffffff;
    transform: translateY(-50%) scale(1.1);
}

.kp4t7x-slider-dots {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 10;
}

.lw8q5t-breadcrumb-container {
    margin: 20px 0;
}

.wr8x4n-breadcrumbs {
    padding: 12px 20px;
    background-color: #f8f9fa;
    border-radius: 8px;
}

.vm2k7p-breadcrumb-list {
    display: flex;
    list-style: none;
    gap: 10px;
    align-items: center;
}

.fx9n3w-breadcrumb-item::after {
    content: '›';
    margin-left: 10px;
    color: #999;
}

.fx9n3w-breadcrumb-item:last-child::after {
    display: none;
}

.tp4k8x-breadcrumb-link {
    color: #2c5da8;
    text-decoration: none;
}

.fx9n3w-breadcrumb-active span {
    color: #666;
}

.ry3k8d-main-content {
    flex: 1;
    padding: 40px 0;
}

.gn7k4p-toc-block {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 30px;
    border-radius: 12px;
    margin-bottom: 40px;
    border-left: 4px solid #2c5da8;
}

.xr3m8w-toc-title {
    font-size: 24px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 20px;
}

.km9v2x-toc-list {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 12px;
}

.pz6n4t-toc-item {
    background-color: #ffffff;
    border-radius: 8px;
    transition: transform 0.3s ease;
}

.pz6n4t-toc-item:hover {
    transform: translateX(5px);
}

.hw8k3v-toc-link {
    display: block;
    padding: 12px 20px;
    color: #2c5da8;
    text-decoration: none;
    font-weight: 500;
}

.mn5p8w-section-title {
    font-size: 32px;
    font-weight: 800;
    color: #1a1a1a;
    margin-bottom: 15px;
    text-align: center;
}

.xz8k4m-section-subtitle {
    text-align: center;
    color: #666;
    margin-bottom: 30px;
    font-size: 18px;
}

.bk7m4w-benefits-section,
.vn2q8r-winners-section,
.qp9t3x-tournaments-section,
.hd6w1z-video-section,
.mk4s7n-review-section,
.fb3x9k-faq-section,
.gm5r2w-author-section {
    margin-bottom: 60px;
}

.qx7n4k-benefits-block,
.pw3n7k-winners-block,
.tk7x3n-tournaments-block,
.yw5k8n-video-block,
.fn8k4x-faq-block,
.gx8k4n-author-block {
    background-color: #ffffff;
    padding: 40px 30px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.kt9v2x-benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
}

.dw4n7m-benefit-card {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    padding: 30px;
    border-radius: 12px;
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

.dw4n7m-benefit-card:hover {
    border-color: #2c5da8;
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(44, 93, 168, 0.15);
}

.vp8k3x-benefit-icon {
    font-size: 36px;
    margin-bottom: 15px;
}

.rk6m2w-benefit-title {
    font-size: 20px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 10px;
}

.xm9n4t-benefit-text {
    color: #666;
    line-height: 1.6;
}

.vn9k2x-table-wrapper {
    overflow-x: auto;
}

.dm4x7w-winners-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 20px;
}

.dm4x7w-winners-table thead {
    background: linear-gradient(135deg, #2c5da8 0%, #1e4078 100%);
    color: #ffffff;
}

.dm4x7w-winners-table th,
.dm4x7w-winners-table td {
    padding: 15px;
    text-align: left;
    border: 1px solid #e0e0e0;
}

.dm4x7w-winners-table tbody tr {
    transition: background-color 0.3s ease;
}

.dm4x7w-winners-table tbody tr:hover {
    background-color: #f8f9fa;
}

.dm4x7w-winners-table tbody tr:nth-child(odd) {
    background-color: #fafafa;
}

.rm2k8w-tournaments-slider {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
    margin-top: 30px;
}

.vx9n4p-tournament-card {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    padding: 30px;
    border-radius: 12px;
    border: 2px solid #e0e0e0;
    transition: all 0.3s ease;
    position: relative;
}

.vx9n4p-tournament-card:hover {
    border-color: #ffcc01;
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(255, 204, 1, 0.2);
}

.km7w3x-tournament-badge {
    display: inline-block;
    padding: 6px 15px;
    background: linear-gradient(135deg, #ffcc01 0%, #e6b800 100%);
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 15px;
    color: #1a1a1a;
}

.nx5k8m-tournament-title {
    font-size: 22px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 12px;
}

.pv2n7k-tournament-desc {
    color: #666;
    line-height: 1.6;
    margin-bottom: 20px;
}

.fw8k4x-tournament-timer {
    display: flex;
    gap: 15px;
    justify-content: center;
    margin: 20px 0;
}

.tm3n9v-timer-block {
    display: flex;
    flex-direction: column;
    align-items: center;
    background-color: #f8f9fa;
    padding: 10px 15px;
    border-radius: 8px;
}

.wk7x2p-timer-value {
    font-size: 24px;
    font-weight: 700;
    color: #2c5da8;
}

.qp4n8m-timer-label {
    font-size: 12px;
    color: #666;
}

.bx9k2n-tournament-prize {
    text-align: center;
    margin: 20px 0;
    padding: 15px;
    background: linear-gradient(135deg, #f0f8ff 0%, #e6f2ff 100%);
    border-radius: 8px;
}

.nr5w8k-prize-label {
    display: block;
    font-size: 14px;
    color: #666;
    margin-bottom: 5px;
}

.mx3k7v-prize-amount {
    display: block;
    font-size: 28px;
    font-weight: 800;
    color: #2c5da8;
}

.zk4n8w-tournament-btn {
    display: block;
    width: 100%;
    padding: 12px;
    background-color: #ffcc01;
    color: #1a1a1a;
    text-decoration: none;
    text-align: center;
    border-radius: 8px;
    font-weight: 700;
    transition: all 0.3s ease;
}

.zk4n8w-tournament-btn:hover {
    background-color: #e6b800;
    transform: translateY(-2px);
}

.km7x3p-video-container {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
    border-radius: 12px;
    margin-top: 30px;
}

.vt9n4k-video-frame {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 12px;
}

.xt8p2v-review-content {
    background-color: #ffffff;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.xt8p2v-review-content h1 {
    font-size: 36px;
    font-weight: 800;
    color: #1a1a1a;
    margin-bottom: 30px;
    line-height: 1.3;
}

.xt8p2v-review-content h2 {
    font-size: 28px;
    font-weight: 700;
    color: #1a1a1a;
    margin-top: 40px;
    margin-bottom: 20px;
}

.xt8p2v-review-content h3 {
    font-size: 22px;
    font-weight: 600;
    color: #2c5da8;
    margin-top: 30px;
    margin-bottom: 15px;
}

.xt8p2v-review-content p {
    line-height: 1.8;
    color: #333;
    margin-bottom: 20px;
}

.xt8p2v-review-content ul,
.xt8p2v-review-content ol {
    margin: 20px 0;
    padding-left: 30px;
}

.xt8p2v-review-content li {
    margin-bottom: 10px;
    line-height: 1.7;
    color: #333;
}

.xt8p2v-review-content table {
    width: 100%;
    border-collapse: collapse;
    margin: 25px 0;
}

.xt8p2v-review-content table th,
.xt8p2v-review-content table td {
    padding: 12px 15px;
    border: 1px solid #e0e0e0;
    text-align: left;
}

.xt8p2v-review-content table th {
    background-color: #f8f9fa;
    font-weight: 600;
    color: #1a1a1a;
}

.xt8p2v-review-content a {
    color: #2c5da8;
    text-decoration: none;
    font-weight: 500;
}

.xt8p2v-review-content a:hover {
    text-decoration: underline;
}

.xm7n2k-faq-list {
    margin-top: 30px;
}

.pw9k4v-faq-item {
    background-color: #ffffff;
    border: 2px solid #e0e0e0;
    border-radius: 12px;
    margin-bottom: 15px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.pw9k4v-faq-item:hover {
    border-color: #2c5da8;
}

.rk3x8n-faq-question {
    width: 100%;
    padding: 20px 25px;
    background-color: transparent;
    border: none;
    text-align: left;
    font-size: 18px;
    font-weight: 600;
    color: #1a1a1a;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background-color 0.3s ease;
}

.rk3x8n-faq-question:hover {
    background-color: #f8f9fa;
}

.vn4k7m-faq-icon {
    font-size: 24px;
    font-weight: 300;
    color: #2c5da8;
    transition: transform 0.3s ease;
}

.pw9k4v-faq-item.active .vn4k7m-faq-icon {
    transform: rotate(45deg);
}

.tm5w9x-faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
}

.pw9k4v-faq-item.active .tm5w9x-faq-answer {
    max-height: 500px;
    padding: 0 25px 20px 25px;
}

.tm5w9x-faq-answer p {
    color: #666;
    line-height: 1.7;
}

.km7x3p-author-card {
    display: flex;
    gap: 30px;
    align-items: flex-start;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    padding: 30px;
    border-radius: 12px;
    margin-top: 30px;
}

.wx5n9k-author-photo {
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid #2c5da8;
}

.rk6m2w-author-name {
    font-size: 24px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 10px;
}

.xm9n4t-author-bio {
    color: #666;
    line-height: 1.7;
    margin-bottom: 15px;
}

.vm8k3x-author-social {
    display: flex;
    gap: 15px;
}

.tn2k9w-social-link {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 15px;
    background-color: #2c5da8;
    color: #ffffff;
    text-decoration: none;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.tn2k9w-social-link:hover {
    background-color: #1e4078;
    transform: translateY(-2px);
}

.kw9x4n-footer {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    color: #ffffff;
    padding: 50px 0 20px;
    margin-top: 80px;
}

.mn7k3p-footer-inner {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.qw5n7x-footer-logo img {
    height: 42px;
    width: auto;
}

.xm9n4t-footer-text {
    color: #999;
    line-height: 1.6;
    margin-top: 15px;
}

.rk6m2w-footer-title {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #ffffff;
}

.bp3x6k-footer-nav {
    list-style: none;
}

.bp3x6k-footer-nav li {
    margin-bottom: 10px;
}

.mx9t2w-footer-link {
    color: #999;
    text-decoration: none;
    transition: color 0.3s ease;
}

.mx9t2w-footer-link:hover {
    color: #ffcc01;
}

.pm8k3x-payment-logos,
.wk9x2v-provider-logos {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 15px;
}

.pm8k3x-payment-logos img,
.wk9x2v-provider-logos img {
    background-color: #ffffff;
    padding: 5px;
    border-radius: 6px;
}

.km4n7x-mt {
    margin-top: 25px;
}

.gn7k4p-footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 30px;
    border-top: 1px solid #444;
    flex-wrap: wrap;
    gap: 20px;
}

.xr3m8w-footer-license {
    display: flex;
    align-items: center;
    gap: 15px;
}

.xm9n4t-license-text {
    font-size: 14px;
    color: #999;
}

.km9v2x-footer-copyright {
    text-align: center;
}

.km9v2x-footer-copyright p {
    color: #999;
    font-size: 14px;
    margin-bottom: 5px;
}

.pz6n4t-legal-text {
    font-size: 12px;
    color: #666;
}

.tk7p2x-age-badge {
    display: inline-block;
    width: 50px;
    height: 50px;
    background-color: #ffcc01;
    color: #1a1a1a;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    font-weight: 800;
}

.pw8k3n-sticky-widget {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, #2c5da8 0%, #1e4078 100%);
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.2);
    z-index: 999;
    padding: 15px 0;
    animation: slideUp 0.5s ease;
}

@keyframes slideUp {
    from {
        transform: translateY(100%);
    }
    to {
        transform: translateY(0);
    }
}

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

.vn2k9x-widget-text {
    display: flex;
    flex-direction: column;
    color: #ffffff;
}

.rx5m8w-widget-title {
    font-size: 20px;
    font-weight: 800;
}

.qp4n7k-widget-subtitle {
    font-size: 14px;
    opacity: 0.9;
}

.bm3x7w-btn-widget {
    background-color: #ffcc01;
    color: #1a1a1a;
    padding: 12px 30px;
    font-size: 16px;
    white-space: nowrap;
}

.bm3x7w-btn-widget:hover {
    background-color: #e6b800;
}

.wp-block-group {
    display: none;
}

.elementor-section {
    opacity: 0;
    position: absolute;
}

@media (min-width: 768px) {
    .ln8r4v-nav-desktop {
        display: block;
    }

    .pk9w2x-burger {
        display: none;
    }

    .zr4x8m-slide img {
        height: 500px;
    }

    .fw7k2m-slide-title {
        font-size: 52px;
    }

    .pm3x7n-slide-text {
        font-size: 22px;
    }

    .jw7m3p-online-counter {
        display: flex;
    }
}

@media (max-width: 767px) {
    .jw7m3p-online-counter {
        display: none;
    }

    .fw7k2m-slide-title {
        font-size: 28px;
    }

    .pm3x7n-slide-text {
        font-size: 16px;
    }

    .bt5w9k-hero-btn {
        padding: 12px 25px;
        font-size: 16px;
    }

    .jx6n9w-slider-prev,
    .jx6n9w-slider-next {
        width: 40px;
        height: 40px;
        font-size: 24px;
    }

    .mn5p8w-section-title {
        font-size: 26px;
    }

    .km7x3p-author-card {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .rm2k8w-tournaments-slider {
        display: flex;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        gap: 15px;
        padding-bottom: 10px;
    }

    .vx9n4p-tournament-card {
        min-width: 280px;
        scroll-snap-align: start;
    }

    .km7x4v-widget-content {
        flex-direction: row;
        justify-content: space-between;
    }

    .vn2k9x-widget-text {
        flex: 1;
    }

    .rx5m8w-widget-title {
        font-size: 16px;
    }

    .qp4n7k-widget-subtitle {
        font-size: 12px;
    }

    .bm3x7w-btn-widget {
        padding: 10px 20px;
        font-size: 14px;
    }
}
/* ===== MOBILE FIXES ===== */

/* Бургер меню */
.xt7n4m-nav-mobile {
    display: block;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, margin-top 0.4s ease;
}

.xt7n4m-nav-mobile.active {
    max-height: 500px;
    margin-top: 20px;
}

/* Баннер на мобильных */
@media (max-width: 767px) {
    .zr4x8m-slide img {
        height: 260px;
        object-position: center center;
    }

    .tx9n4k-slide-content {
        align-items: flex-end;
        padding-bottom: 20px;
        background: linear-gradient(0deg, rgba(0,0,0,0.75) 0%, rgba(0,0,0,0.1) 60%);
    }
}

/* ===== BURGER FIX FINAL ===== */
.xt7n4m-nav-mobile {
    display: block !important;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, margin-top 0.4s ease;
    margin-top: 0;
}

.xt7n4m-nav-mobile.active {
    max-height: 500px !important;
    margin-top: 15px;
}

@media (min-width: 768px) {
    .xt7n4m-nav-mobile {
        max-height: 0 !important;
        margin-top: 0 !important;
    }
}
.qw5n7x-logo img {
    height: 50px !important;
    width: auto !important;
    display: block !important;
}