@font-face {
    font-family: inter;
    font-weight: 400;
    font-style: normal;
    src: url('/fonts-cozyvibe/Inter-Regular-cozyvibe.woff2') format('woff2');
    font-display: swap;
}

@font-face {
    font-family: inter;
    font-weight: 600;
    font-style: normal;
    src: url('/fonts-cozyvibe/Inter-SemiBold-cozyvibe.woff2') format('woff2');
    font-display: swap;
}

@font-face {
    font-family: inter;
    font-weight: 700;
    font-style: normal;
    src: url('/fonts-cozyvibe/Inter-Bold-cozyvibe.woff2') format('woff2');
    font-display: swap;
}

@font-face {
    font-family: cinzel;
    font-weight: 700;
    font-style: normal;
    src: url('/fonts-cozyvibe/Cinzel-Bold-cozyvibe.woff2') format('woff2');
    font-display: swap;
}

:root {
    --font-inter: inter, sans-serif, serif;
    --font-cinzel: cinzel, sans-serif, serif;

    --primary-color: #ffffff;
    --body-bg: #08090B;
    --gray-color: #BCBCBC;
    --legal-text-color: #B1B1B1;
    --footer-text-color: #B0BEC5;
    ;
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

h1,
h2,
h3,
p,
ul,
ol,
button,
body {
    margin: 0;
    padding: 0;
}

li {
    list-style: none;
}

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

a {
    color: var(--primary-color);
    text-decoration: none;
}

input,
textarea,
button {
    background: none;
    border: none;
    outline: none;
}

a,
button,
div[class],
input,
textarea,
select {
    -webkit-tap-highlight-color: transparent;
}

a:focus,
button:focus,
input:focus,
textarea:focus,
select:focus {
    outline: none;
    box-shadow: none;
}

body {
    background-color: var(--body-bg);
    color: var(--primary-color);
    font-family: var(--font-inter);
    font-size: 16px;
    font-weight: 400;
    line-height: normal;
    height: 100vh;
}

/* Контейнер */
.container-cozyvibe {
    width: 100%;
    max-width: 1288px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Заголовок секций */
.main-header-cozyvibe,
.secondary-header-cozyvibe {
    max-width: 622px;
    margin: 0 auto;
    text-align: center;
}

.main-header-cozyvibe {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.secondary-header-cozyvibe>h2 {
    margin-bottom: 16px;
}

/* Внутренние отступы */
.pt-70 {
    padding-top: 70px;
}

.pb-70 {
    padding-bottom: 70px;
}

/* Заголовок */
.h-1,
.h-2,
.h-3 {
    font-family: var(--font-cinzel);
    font-weight: 700;
}

.h-1,
.h-2 {
    text-align: center;
}

.h-1 {
    font-size: 48px;
    line-height: 52px;
}

.h-2 {
    font-size: 34px;
}

.h-3 {
    font-size: 20px;
}

@media screen and (max-width: 359px) {
    .container-cozyvibe {
        padding: 0 16px;
    }

    .h-1 {
        font-size: 30px;
    }
}

@media screen and (max-width: 330px) {
    .h-2 {
        font-size: 25px;
    }
}

/* Визуальное скрытие */
.visually-hidden-cozyvibe {
    position: absolute;
    width: 1px;
    height: 1px;
    margin: -1px;
    padding: 0;
    overflow: hidden;
    border: 0;
    clip: rect(0 0 0 0);
}

/* Градиент */
.gradient-button-cozyvibe {
    display: block;
    padding: 12px;
    border-radius: 8px;
    background: linear-gradient(135deg, #C27C57 0%, #4A35B1 100%);
    color: var(--primary-color);
    font-weight: 600;
    text-align: center;
    cursor: pointer;
    transition: transform 0.15s ease, box-shadow 0.15s ease, filter 0.15s ease;
}

@media (hover: hover) and (pointer: fine) {
    .gradient-button-cozyvibe:hover {
        filter: brightness(1.1);
        transform: translateY(-3px);
        box-shadow: 0 6px 16px rgba(0, 0, 0, .25);
    }
}

.gradient-button-cozyvibe:active {
    transform: scale(0.97);
    filter: brightness(0.95);
}

.gradient-text-cozyvibe {
    background: linear-gradient(180deg, #DEE685 0%, #CC6745 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
}

.gradient-border-cozyvibe {
    position: relative;
    border: 0 !important;
}

.gradient-border-cozyvibe::before {
    content: "";
    position: absolute;
    inset: 0;
    padding: 2px;
    border-radius: inherit;
    background-image: linear-gradient(180deg, #959C45 0%, #8B513E 100%);
    mask: conic-gradient(#000 0 0) content-box exclude, conic-gradient(#000 0 0);
}

.burger-cozyvibe {
    display: none;
    position: relative;
    width: 40px;
    height: 26px;
    z-index: 110000;
    cursor: pointer;
    background: linear-gradient(135deg, #C27C57 0%, #4A35B1 100%) no-repeat center / 100% 2px;
}

.burger-cozyvibe::before,
.burger-cozyvibe::after {
    content: '';
    left: 0;
    position: absolute;
    width: 100%;
    height: 2px;
    border-radius: 8px;
    background: linear-gradient(135deg, #C27C57 0%, #4A35B1 100%);
}

.burger-cozyvibe::before {
    top: 0;
}

.burger-cozyvibe::after {
    bottom: 0;
}

.burger-cozyvibe::before {
    transition: background .3s .15s, top .3s .15s, transform .3s;
}

.burger-cozyvibe::after {
    transition: bottom .3s .15s, transform .3s;
}

.burger-cozyvibe.active {
    background-size: 0;
}

.burger-cozyvibe.active::before {
    top: 11px;
    transform: rotate(45deg);
    transition: background .15s, top .3s, transform .3s .15s;
}

.burger-cozyvibe.active::after {
    bottom: 11px;
    transform: rotate(-45deg);
    transition: bottom .3s, transform .3s .15s;
}

@media screen and (max-width: 1024px) {
    .burger-cozyvibe {
        display: block;
    }

    .burger-cozyvibe {
        margin-left: auto;
    }
}

.header-cozyvibe {
    background-color: #08090B;
    backdrop-filter: blur(10px);
    padding: 23px 0;
    position: sticky;
    top: 0;
    right: 0;
    left: 0;
    z-index: 999;
}

.header-cozyvibe>.container-cozyvibe {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.header__nav-list-cozyvibe {
    display: flex;
    align-items: center;
    gap: 32px;
}

.header__nav-list-cozyvibe a {
    transition: color .2s linear;
}

.header__nav-list-cozyvibe a.active {
    color: #7E57C2;
    font-weight: 600;
}

.header__booking-btn-cozyvibe {
    width: 114.747px;
    height: 52px;
    padding: 11.75px 12.367px 12.25px 21.379px;
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

@media (hover: hover) {
    .header__nav-list-cozyvibe a:hover {
        color: #7E57C2;
    }
}

@media screen and (max-width: 1024px) {
    .header__booking-btn-cozyvibe {
        display: none;
    }

    .header__nav-list-cozyvibe {
        background-color: #000;
        width: 100%;
        height: 100vh;
        display: flex;
        flex-direction: column;
        justify-content: center;
        text-align: center;
        transition: left 200ms ease-in-out;
        position: fixed;
        top: 0;
        right: 0;
        left: -100%;
        z-index: 999;
    }

    .header__nav-list-cozyvibe.active {
        left: 0;
    }

    .header__nav-list-cozyvibe a {
        color: rgba(255, 255, 255, 0.80);
        font-size: 25px;
        font-weight: 500;
        text-align: center;
    }

    .header__nav-list-cozyvibe>ul>li:not(:last-child) {
        margin-bottom: 25px;
    }
}

@media screen and (max-width: 600px) {
    .header-cozyvibe {
        padding: 6px 0;
    }
}

@media screen and (max-width: 375px) {
    .header__nav-list-cozyvibe a {
        font-size: 16px;
    }
}

.form-card-cozyvibe {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 64px;
    border-radius: 35px;
    background: var(--gradient, linear-gradient(90deg, #46104B 0%, #381C7E 51.92%, #2A4295 100%));
    box-shadow: 0 30px 80px rgba(0, 0, 0, .6);
}

.form-wrapper-cozyvibe {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 24px;
    position: relative;
}

.form-title-cozyvibe {
    margin-bottom: 24px;
    font-family: var(--font-cinzel);
    font-size: 20px;
    font-weight: 700;
    text-transform: uppercase;
}

.form-grid-cozyvibe {
    display: grid;
    grid-template-columns: repeat(2, minmax(134px, auto));
    gap: 12px;
}

.field-cozyvibe {
    width: 100%;
}

.field-cozyvibe.full {
    grid-column: 1 / -1;
}

input,
select,
textarea {
    color: #181818;
    width: 100%;
    padding: 15px 24px;
    border-radius: 14px;
    font-size: 14px;
    background-color: #efefef;
}

::placeholder {
    color: #181818;
}

select {
    width: 100%;
    padding: 15px 48px 15px 24px;
    border-radius: 14px;
    font-size: 14px;
    background-color: #efefef;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background-image: url("data:image/svg+xml,<svg width='14' height='8' viewBox='0 0 14 8' fill='none' xmlns='http://www.w3.org/2000/svg'><path d='M1 1L7 7L13 1' stroke='%23434343' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/></svg>");
    background-repeat: no-repeat;
    background-position: right 16px center;
    background-size: 14px 8px;
}

textarea {
    resize: none;
    min-height: 168px;
}

.submit-cozyvibe {
    margin-top: 12px;
    width: 100%;
    padding: 16px;
    border-radius: 16px;
    border: none;
    background-color: #FFB000;
    color: #000;
    font-weight: 600;
    font-size: 15px;
    cursor: pointer;
}

.submit-cozyvibe:hover {
    opacity: .9;
}

.form-aside-cozyvibe {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.form-aside-info-cozyvibe {
    border-radius: 23px;
    background-color: #181B23;
    padding: 24px;
}

.without-bg-cozyvibe {
    background: none;
    padding: 0;
}

.form-aside-info-cozyvibe h3 {
    font-family: var(--font-cinzel);
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 16px;
}

.form-contact-cozyvibe {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.form-contact-cozyvibe>li {
    display: flex;
    align-items: center;
    gap: 12px;
    word-break: break-all;
}

.form-contact-cozyvibe>li>svg {
    flex-shrink: 0;
}

.without-bg-cozyvibe>.form-contact-cozyvibe>li {
    border-radius: 11px;
    background-color: #181B23;
    padding: 12px;
}

.steps-cozyvibe {
    font-size: 14px;
    padding-left: 18px;
}

.steps-cozyvibe>li {
    list-style-type: decimal;
}

@media screen and (max-width: 1000px) {
    .form-wrapper-cozyvibe {
        grid-template-columns: 1fr;
    }
}

@media screen and (max-width: 700px) {
    .form-card-cozyvibe {
        padding: 64px 16px;
    }
}

@media screen and (max-width: 359px) {

    .form-wrapper-cozyvibe,
    .form-grid-cozyvibe {
        display: flex;
        flex-direction: column;
    }
}

/* Form message */
.form-success-overlay-cozyvibe {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.55);
    backdrop-filter: blur(4px);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 999;
}

.form-success-overlay-cozyvibe.active {
    display: flex;
}

.form-success-card-cozyvibe {
    background: linear-gradient(135deg,
            rgba(255, 255, 255, 0.95),
            rgba(240, 240, 240, 0.95));
    border-radius: 24px;
    padding: 40px 32px;
    max-width: 420px;
    width: 90%;
    text-align: center;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.35);
    animation: successPop 0.4s ease forwards;
}

.form-success-icon-cozyvibe {
    width: 64px;
    height: 64px;
    margin: 0 auto 16px;
    border-radius: 50%;
    background: linear-gradient(135deg, #4ade80, #22c55e);
    color: #fff;
    font-size: 32px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
}

.form-success-title-cozyvibe {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 8px;
    color: #111;
}

.form-success-text-cozyvibe {
    font-size: 15px;
    color: #444;
    line-height: 1.5;
}

/* Animation */
@keyframes successPop {
    from {
        opacity: 0;
        transform: scale(0.9) translateY(10px);
    }

    to {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

.quiz__title-cozyvibe {
    font-size: 28px;
    margin-bottom: 10px;
}

.quiz__row-cozyvibe {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 24px;
    opacity: .7;
    margin: 24px 0;
}

.quiz__counter-cozyvibe {
    color: #808080;
}

.quiz__step-cozyvibe {
    display: none;
    max-width: 792px;
    margin: 0 auto;
    animation: fade .3s ease;
}

.quiz__step-cozyvibe.active {
    display: block;
}

@keyframes fade {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.quiz__option-cozyvibe {
    border-radius: 20px;
    border: 1px solid #323550;
    background-color: #181B23;
    padding: 16px 12px;
    display: flex;
    align-items: center;
    margin-bottom: 8px;
    cursor: pointer;
    transition: .2s;
}

@media (hover: hover) {
    .quiz__option-cozyvibe:hover {
        border-color: #6f7cff;
        background-color: #202433;
    }
}

.quiz__option-cozyvibe input {
    display: none;
}

.quiz__radio-cozyvibe {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    border: 2px solid #D9D9D9;
    margin-right: 12px;
    position: relative;
    flex-shrink: 0;
}

.quiz__radio-cozyvibe::before {
    content: "";
    display: block;
    width: 14px;
    height: 14px;
    border-radius: 50%;
    margin: 0 auto;
    position: absolute;
    top: 3px;
    right: 0;
    left: 0;
}

.quiz__radio-cozyvibe.active::before {
    background-color: #D9D9D9;
}

.quiz__optio-cozyvibe input:checked+.radio::after {
    content: "";
    width: 8px;
    height: 8px;
    background: #6f7cff;
    border-radius: 50%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.quiz__result-cozyvibe {
    text-align: center;
}

.quiz__result-cozyvibe>img,
.quiz__result-cozyvibe>h2,
.quiz__result-cozyvibe>p {
    margin-bottom: 24px;
}

.quiz__result-cozyvibe>button {
    width: 100%;
    max-width: 447px;
    margin: 0 auto;
}

.quiz__badge-cozyvibe {
    display: inline-block;
    margin-bottom: 20px;
    padding: 10px 16px;
    background: linear-gradient(135deg, #ffb347, #ffcc33);
    color: #000;
    border-radius: 8px;
    font-weight: bold;
}

@media screen and (max-width: 600px) {
    .quiz__row-cozyvibe {
        flex-direction: column;
        align-items: flex-start;
    }
}

@media screen and (max-width: 359px) {
    .quiz__option-cozyvibe>span {
        font-size: 15px;
    }
}

/* Tabs */
.tabs-cozyvibe {
    max-width: 1200px;
    margin: 0 auto;
}

.tabs-nav-cozyvibe {
    border-radius: 12px;
    box-shadow: 0 2px 4px 0 rgba(126, 87, 194, 0.10);
    display: grid;
    gap: 0 24px;
    background: #14141b;
    margin-bottom: 29px;
}

#tabs-gallery>.tabs-nav-cozyvibe {
    grid-template-columns: repeat(3, 1fr);
}

#tabs-tables>.tabs-nav-cozyvibe {
    grid-template-columns: repeat(6, 1fr);
}

.tabs-tab-cozyvibe {
    white-space: nowrap;
    color: #B0BEC5;
    font-weight: 600;
    padding: 15px;
    cursor: pointer;
    transition: color .3s linear;
}

.tabs-tab-icon-cozyvibe {
    display: none;
    opacity: 0;
    transition: opacity .3s linear;
}

.tabs-tab-cozyvibe.is-active {
    color: #7E57C2;
}

.tabs-tab-cozyvibe.is-active>.tabs-tab-icon-cozyvibe {
    opacity: 1;
}

/* Panels */
.tabs__content-cozyvibe {
    position: relative;
}

.tab-panel-cozyvibe {
    display: none;
    animation: fade .35s ease;
}

.tab-panel-cozyvibe.is-active {
    display: block;
}

/* Animations */
@keyframes fade {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: none;
    }
}

/* Mobile */
@media (max-width: 1024px) {

    #tabs-gallery>.tabs-nav-cozyvibe,
    #tabs-tables>.tabs-nav-cozyvibe {
        grid-template-columns: 1fr;
    }

    .tabs-nav-cozyvibe {
        border-radius: 9px 9px 0 0;
        border: 1px solid #323550;
        background-color: #181B23;
    }

    .tabs-tab-cozyvibe {
        padding: 18px 16px;
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    .tabs-tab-cozyvibe:not(:last-child) {
        border-bottom: 1px solid #323550;
    }

    .tabs-tab-icon-cozyvibe {
        display: block;
    }
}

/* TABLE */
.tables-container {
    overflow-x: scroll;
}

.tables-container {
    scrollbar-width: thin;
    scrollbar-color: #444 #1a1a1a;
}

/* Chrome, Edge, Safari */
.tables-container::-webkit-scrollbar {
    height: 8px;
}

.tables-container::-webkit-scrollbar-track {
    background-color: #1a1a1a;
    border-radius: 4px;
}

.tables-container::-webkit-scrollbar-thumb {
    background-color: #444;
    border-radius: 4px;
}

.tables-container::-webkit-scrollbar-thumb:hover {
    background-color: #666;
}

.leaderboard-table-cozyvibe {
    width: 100%;
    min-width: 900px;
    border-collapse: collapse;
}

@media (max-width: 768px) {
    .table-tabs__nav-cozyvibe {
        display: none;
    }
}

.table-panel-cozyvibe {
    display: none;
    opacity: 0;
    transform: translateY(12px);
}

.table-panel-cozyvibe.is-active {
    display: block;
    animation: tableFade .35s ease forwards;
}

@keyframes tableFade {
    from {
        opacity: 0;
        transform: translateY(12px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.leaderboard-table-cozyvibe thead {
    background-color: #1A2332;
    padding: 0 3px;
}

.leaderboard-table-cozyvibe th {
    text-align: center;
    padding: 16px;
    color: #fff;
}

.leaderboard-table-cozyvibe>tbody>tr {
    background-color: #181B23;
    transition: filter 0.15s ease;
}

@media (hover: hover) and (pointer: fine) {
    .leaderboard-table-cozyvibe>tbody>tr:hover {
        filter: brightness(1.5);
    }
}

.leaderboard-table-cozyvibe>tbody>tr:nth-child(-n+3) {
    background: #1D1823;
}

.leaderboard-table-cozyvibe>tbody>tr:nth-child(-n+3)>td:first-child>img {
    vertical-align: middle;
}

.leaderboard-table-cozyvibe>tbody>tr>td:first-child {
    color: #FFD700;
    font-family: var(--font-cinzel);
    font-size: 20px;
    font-weight: 700;
}

.leaderboard-table-cozyvibe>tbody>tr>td:nth-child(2) {
    color: var(--primary-color);
    font-weight: 600;
}

.leaderboard-table-cozyvibe>tbody>tr>td:nth-child(3) {
    color: #BCBCBC;
}

.leaderboard-table-cozyvibe td {
    text-align: center;
    padding: 18px 16px;
    color: #d1d1d1;
    border-top: 1px solid rgba(255, 255, 255, .08);
}

.pill-cozyvibe {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    padding: 2px 6px;
    border-radius: 16px;
    font-size: 13px;
    font-weight: 500;
}

.pill--purple-cozyvibe {
    border: 1px solid rgba(126, 87, 194, 0.70);
    color: #7E57C2;
}

.pill--green-cozyvibe {
    border: 1px solid rgba(0, 200, 83, 0.70);
    color: #00C853;
}

.pill--blue-cozyvibe {
    width: 72px;
    border-radius: 21px;
    background-color: #42A5F5;
    color: rgba(0, 0, 0, 0.87);
    font-size: 13px;
    padding: 2px 8px;
}

.pill--blue-cozyvibe>img {
    margin-left: 10px;
}

/* Home main */
.home-main-cozyvibe {
    padding-top: 101px;
    background:
        linear-gradient(180deg, rgba(8, 9, 11, 0.00) 0%, rgba(8, 9, 11, 0.12) 57.48%, #08090B 100%),
        url('/images-cozyvibe/home-main-bg-img-cozyvibe.webp') lightgray -8.145px -131.227px / 100% 158.639% no-repeat;

    background-size: cover;
    background-position: top;
}

.home-main__events-count-cozyvibe {
    display: flex;
    gap: 10px;
}

.home-main__events-count-cozyvibe>span {
    color: #E5A44C;
    text-align: center;
    font-weight: 700;
}

.home-main__disclaimer-cozyvibe {
    border-radius: 14px;
    border: 1px solid #6E5325;
    background: rgba(66, 47, 0, 0.37);
    backdrop-filter: blur(12.5px);
    padding: 12px 26px;
    display: flex;
    align-items: center;
    gap: 16px;
}

.home-main__disclaimer-wrapper-cozyvibe {
    text-align: left;
}

.home-main__disclaimer-title-cozyvibe {
    color: #E5A44C;
    font-weight: 700;
    margin-bottom: 4px;
}

.home-main__buttons-cozyvibe {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.home-main__buttons-cozyvibe>a {
    width: 277px;
}

.home-main__statistics-cozyvibe {
    margin-top: 66px;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 24px;
    flex: 1 0 0;
}

.home-main__statistics-item-cozyvibe {
    width: 100%;
    max-width: 292px;
    margin: 0 auto;
    text-align: center;
}

.home-main__statistics-title-cozyvibe {
    color: #FFB300;
    margin-bottom: 8px;
}

@media screen and (max-width: 655px) {
    .home-main__statistics-cozyvibe {
        width: 100%;
        display: grid;
        grid-template-columns: repeat(2, auto);
    }
}

@media screen and (max-width: 600px) {
    .home-main-cozyvibe {
        padding: 0;
    }

    .home-main__events-count-cozyvibe,
    .home-main__disclaimer-cozyvibe {
        display: none;
    }

    .home-main__buttons-cozyvibe>a {
        width: 100%;
        max-width: 100%;
    }

    .home-main__statistics-item-cozyvibe {
        max-width: 144px;
        text-align: left;
    }

    .home-main__statistics-title-cozyvibe {
        color: var(--primary-color);
        text-align: left;
    }
}

@media screen and (max-width: 359px) {
    .home-main__statistics-cozyvibe {
        min-width: 100%;
    }
}

/* Home events */
.home-events__list-cozyvibe {
    margin-top: 24px;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 24px;
    align-self: stretch;
}

.home-events__card-cozyvibe {
    border-radius: 20px;
    background: linear-gradient(90deg, #46104B 0%, #381C7E 51.92%, #2A4295 100%);
    text-align: center;
    display: flex;
    width: 100%;
    max-width: 397px;
    padding: 24px;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 16px;
}

.home-events__card-cozyvibe>img {
    object-fit: cover;
    border-radius: 20px;
}

@media screen and (max-width: 360px) {
    .home-events__card-cozyvibe {
        padding: 24px 15px;
    }
}

/* Home events 2 */
.home-memorable__content-cozyvibe {
    width: 100%;
    max-width: 1240px;
    margin: 24px auto 0;
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
}

.home-memorable__column-cozyvibe {
    width: 100%;
    flex: 1 0 0;
}

.home-memorable__column-cozyvibe>h3 {
    text-align: left;
    margin-bottom: 24px;
}

.home-memorable__list-cozyvibe>li {
    width: 100%;
    min-width: 500px;
    border-radius: 20px;
    border: 1px solid #323550;
    background-color: #181B23;
    display: flex;
    padding: 12px;
    justify-content: space-between;
    align-items: center;
}

.home-memorable__list-cozyvibe>li:not(:last-child) {
    margin-bottom: 8px;
}

.home-memorable__item-number-circle-cozyvibe {
    background: linear-gradient(90deg, #46104B 0%, #381C7E 51.92%, #2A4295 100%);
    border-radius: 50%;
    text-align: center;
    align-content: center;
    width: 34px;
    height: 34px;
    font-size: 20px;
    font-weight: 700;
    flex-shrink: 0;
}

.home-memorable__item-number-cozyvibe {
    color: #FFB300;
    text-align: center;
    font-family: var(--font-cinzel);
    font-size: 20px;
    font-weight: 700;
    margin-right: 8px;
}

.home-memorable__item-info-cozyvibe {
    display: flex;
    align-items: center;
    gap: 8px;
}

.home-memorable__item-title-cozyvibe {
    text-align: left;
    margin-bottom: 8px;
}

.home-memorable__item-text-cozyvibe {
    color: #BCBCBC;
}

.home-memorable__item-label-cozyvibe {
    color: #11370E;
    font-size: 12px;
    font-weight: 700;
    border-radius: 7px;
    padding: 4px 8px;
    background-color: #51B448;
    white-space: nowrap;
}

@media screen and (max-width: 600px) {
    .home-memorable__content-cozyvibe {
        flex-direction: column;
    }

    .home-memorable__list-cozyvibe>li {
        min-width: 100%;
    }

    .home-memorable__item-label-cozyvibe {
        display: none;
    }

    .home-main__buttons-cozyvibe {
        flex-direction: column;
    }
}

@media screen and (max-width: 500px) {
    .home-memorable__item-info-cozyvibe {
        flex-direction: column;
        align-items: flex-start;
    }
}

/* Home some block */
.home-some-block-cozyvibe {
    text-align: center;
    border-radius: 20px;
    background: linear-gradient(90deg, #46104B 0%, #381C7E 51.92%, #2A4295 100%);
    padding: 24px;
}

.home-some-block-cozyvibe>h2 {
    margin-bottom: 16px;
}

/* Leaderboard-main */
.leaderboard-main-cozyvibe {
    padding: 101px 0;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background:
        linear-gradient(180deg, rgba(8, 9, 11, 0) 0%, rgba(8, 9, 11, 0.30) 57.48%),
        url('/images-cozyvibe/leaderboard-main-bg-cozyvibe.webp') lightgray no-repeat;

    background-size: cover;
    background-position: top;
}

.leaderboard-some-cards-cozyvibe {
    display: flex;
    justify-content: space-between;
    gap: 24px;
}

.leaderboard-some-cards-cozyvibe>li {
    text-align: left;
    width: 100%;
    max-width: 349px;
    border-radius: 20px;
    padding: 24px;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.leaderboard-some-cards-cozyvibe>li:first-child {
    background: #3B67AF;
}

.leaderboard-some-cards-cozyvibe>li:nth-child(2) {
    background: #AF7B3B;
}

.leaderboard-some-cards-cozyvibe>li:last-child {
    background: #6B3BAF;
}

.leaderboard-trending__list-cozyvibe {
    margin-top: 32px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 24px;
}

.leaderboard-trending__card-cozyvibe {
    width: 228px;
    border-radius: 20px;
    border: 2px solid #323550;
    background: #181B23;
    box-shadow: 0 2px 4px 0 rgba(126, 87, 194, 0.10);
    text-align: center;
    padding: 12px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 33px;
}

.leaderboard-trending__card-number-cozyvibe {
    background: linear-gradient(90deg, #46104B 0%, #381C7E 51.92%, #2A4295 100%);
    border-radius: 50%;
    text-align: center;
    align-content: center;
    width: 34px;
    height: 34px;
    font-size: 20px;
    font-weight: 700;
    flex-shrink: 0;
}

.leaderboard-trending__card-count-cozyvibe {
    color: #FFB300;
}

.leaderboard-trending__card-text-cozyvibe {
    color: #BCBCBC;
}

.leaderboard-trending__card-label-cozyvibe {
    border-radius: 16px;
    background: #51B448;
    color: rgba(0, 0, 0, 0.87);
    font-size: 12px;
    font-weight: 600;
    padding: 3px 4px;
    width: 64px;
    height: 24px;
    align-content: center;
}

.leaderboard-trending__card-label-cozyvibe>img {
    margin-right: 4px;
}

.leaderboard-some-block-cozyvibe {
    border-radius: 20px;
    background: linear-gradient(90deg, #46104B 0%, #381C7E 51.92%, #2A4295 100%);
    padding: 24px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
}

.leaderboard-some-block-cozyvibe>p:last-child {
    color: #FFB300;
}

@media screen and (max-width: 1142px) {
    .leaderboard-some-cards-cozyvibe {
        justify-content: center;
        flex-wrap: wrap;
    }
}

@media screen and (max-width: 600px) {
    .leaderboard-main-cozyvibe {
        padding: 32px 0;
        background-size: 100% 100%;
        background-position: center;
    }

    .leaderboard-trending__card-cozyvibe {
        width: 100%;
    }
}

/* Events main section */
.events-main-cozyvibe {
    padding: 84px 0;
    height: 321px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background:
        url('/images-cozyvibe/events-main-bg-cozyvibe.webp') lightgray 0px -22.791px / 100% 217.071% no-repeat;

    background-size: 100% 100%;
    background-position: center;
}

/* Events-types section */
.events-types__block-cozyvibe {
    border-radius: 20px;
    background: linear-gradient(90deg, #46104B 0%, #381C7E 51.92%, #2A4295 100%);
    width: 100%;
    max-width: 1240px;
    padding: 24px;
    margin: 0 auto 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 16px;
}

.events-types__block-cozyvibe:last-of-type {
    margin-bottom: 0;
}

.events-types__block-cozyvibe:nth-child(2n) {
    flex-direction: row-reverse;
}

.events-types__block-img-cozyvibe {
    max-width: 588px;
    width: 100%;
    height: 632px;
    flex: 1 0 0;
}

.events-types__block-img-cozyvibe>img {
    width: 100%;
    height: 100%;
    border-radius: 20px;
    object-fit: cover;
    display: block;
}

.events-types__block-content-cozyvibe {
    color: #D5D5D5;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 16px;
    flex: 1 0 0;
}

.wedding-cozyvibe,
.fundraiser-cozyvibe,
.corporate-startup-cozyvibe,
.corporate-team-cozyvibe,
.private-cozyvibe {
    width: 100%;
    max-width: 99px;
    text-align: center;
    padding: 8px 12px;
    border-radius: 10px;
    font-family: var(--font-cinzel);
    font-size: 12px;
    font-weight: 700;
}

.wedding-cozyvibe {
    background-color: #D6539B;
}

.fundraiser-cozyvibe {
    background-color: #5388D6;
}

.corporate-startup-cozyvibe {
    background-color: #D65353;
}

.corporate-team-cozyvibe {
    background-color: #8353D6;
}

.private-cozyvibe {
    background-color: #000000;
}

.events-types__specs-cozyvibe {
    display: grid;
    grid-template-columns: auto 1fr;
    justify-content: space-between;
    column-gap: 107px;
    row-gap: 12px;
}

.events-types__specs-label-cozyvibe {
    font-size: 12px;
    font-weight: 700;
}

.events-types__block-content-cozyvibe>h2 {
    text-align: left;
}

.events-types__block-content-cozyvibe>h2,
.events-types__specs-value-cozyvibe {
    color: var(--primary-color);
}

.events-types__expects-list-cozyvibe>li {
    color: var(--gray-color);
    margin-bottom: 12px;
    list-style-type: none;
    display: flex;
    gap: 8px;
}

.events-types__expects-list-cozyvibe>li:last-child {
    margin-bottom: 0;
}

.events-types__expects-list-cozyvibe>li::before {
    content: "";
    width: 24px;
    height: 24px;
    flex-shrink: 0;
    /* Путь к иконке */
    background-image: url("/icons-cozyvibe/like-icon-cozyvibe.svg");
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
}

@media screen and (max-width: 1024px) {
    .events-types__block-cozyvibe:nth-child(2n) {
        flex-direction: row;
    }

    .events-types__block-cozyvibe,
    .events-types__block-cozyvibe:nth-child(2n) {
        flex-direction: column;
    }

    .events-types__block-img-cozyvibe {
        height: 100%;
    }

    .events-types__block-img-cozyvibe>img {
        object-fit: fill;
    }
}

@media screen and (max-width: 600px) {
    .events-main-cozyvibe {
        background: linear-gradient(180deg, rgba(8, 9, 11, 0.76) 0%, rgba(8, 9, 11, 0.77) 57.48%, #08090B 100%);
    }

    .events-types__block-img-cozyvibe {
        max-width: 100%;
    }
}

@media screen and (max-width: 375px) {

    .events-types__block-img-cozyvibe,
    .events-types__block-img-cozyvibe>img {
        height: 200px;
    }
}

@media screen and (max-width: 359px) {
    .events-types__block-cozyvibe {
        padding: 24px 15px;
    }

    .events-types__specs-cozyvibe {
        column-gap: 30px
    }
}

/* Events-booking section */
.events-booking__block-cozyvibe {
    border-radius: 20px;
    border: 1px solid #323550;
    background-color: #181B23;
    text-align: center;
    padding: 24px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
}

.events-booking__block-cozyvibe>a {
    width: 100%;
    max-width: 398px;
}

/* Packages-main section */
.packages-main-cozyvibe {
    padding: 84px 0;
    height: 321px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background:
        url('/images-cozyvibe/packages-main-bg-cozyvibe.webp') lightgray 0px -22.791px / 100% 217.071% no-repeat;

    background-size: 100% 100%;
    background-position: center;
}

/* Event-packages section */
.event-packages__list-cozyvibe {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 24px;
}

.event-packages__card-cozyvibe {
    border-radius: 20px;
    border: 2px solid #323550;
    background-color: #181B23;
    box-shadow: 0 2px 4px 0 rgba(126, 87, 194, 0.10);
    padding: 24px;
    max-width: 292px;
    min-width: 292px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    align-self: stretch;
}

.event-packages__card-wrapper-cozyvibe {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 33px;
}

.event-packages__card-head-cozyvibe {
    height: 155px;
    border-radius: 20px;
    text-align: center;
    padding: 23px 16px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    align-self: stretch;
    gap: 10px;
}

.event-packages__card-head-cozyvibe>h3 {
    font-family: var(--font-cinzel);
    font-size: 20px;
    font-weight: 700;
}

.event-packages__card-head-cozyvibe>p:last-child {
    font-size: 12px;
    color: #D5D5D5;
}

.event-packages__card-head-cozyvibe>h3,
.event-packages__card-head-cozyvibe>p:last-child {
    max-width: 212px;
}

.event-packages__card-cozyvibe:nth-child(1) .event-packages__card-head-cozyvibe,
.event-packages__card-cozyvibe:nth-child(1)>.event-packages__card-wrapper-cozyvibe>ul>li::before {
    background-color: #87388F;
}

.event-packages__card-cozyvibe:nth-child(2) .event-packages__card-head-cozyvibe,
.event-packages__card-cozyvibe:nth-child(2)>.event-packages__card-wrapper-cozyvibe>ul>li::before {
    background-color: #383B8F;
}

.event-packages__card-cozyvibe:nth-child(3) .event-packages__card-head-cozyvibe,
.event-packages__card-cozyvibe:nth-child(3)>.event-packages__card-wrapper-cozyvibe>ul>li::before {
    background-color: #8F5038;
}

.event-packages__card-cozyvibe:nth-child(4) .event-packages__card-head-cozyvibe,
.event-packages__card-cozyvibe:nth-child(4)>.event-packages__card-wrapper-cozyvibe>ul>li::before {
    background-color: #388F4C;
}

.event-packages__card-label-popular-cozyvibe {
    background-color: #181B23;
    width: 198px;
    margin: 0 auto;
    padding: 6px;
    border-radius: 9px;
    color: #D9D9D9;
    font-family: var(--font-cinzel);
    font-size: 18px;
    font-weight: 700;
    text-align: center;
    position: absolute;
    top: -25px;
    right: 0;
    left: 0;
}

.event-packages__card-wrapper-cozyvibe>p {
    color: var(--gray-color);
}

.event-packages__card-wrapper-cozyvibe>ul {
    height: 100%;
}

.event-packages__card-wrapper-cozyvibe>ul>li {
    color: var(--gray-color);
    margin-bottom: 12px;
    list-style-type: none;
    display: flex;
    gap: 8px;
}

.event-packages__card-wrapper-cozyvibe>ul>li:last-child {
    margin-bottom: 0;
}

.event-packages__card-wrapper-cozyvibe>ul>li::before {
    content: "";
    width: 24px;
    height: 24px;
    flex-shrink: 0;
    /* Стандартный цвет иконки */
    background-color: #ffffff;
    /* Путь к иконке */
    -webkit-mask-image: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none'><path d='M20 6L9 17L4 12' stroke='%2387388F' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/></svg>");
    mask-image: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none'><path d='M20 6L9 17L4 12' stroke='%2387388F' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/></svg>");
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
    -webkit-mask-size: contain;
    mask-size: contain;
}

.event-packages__card-wrapper-cozyvibe>a {
    z-index: 1;
}

/* Provide section */
.provide-cozyvibe .secondary-header-cozyvibe {
    margin-bottom: 40px;
}

.provide__list-cozyvibe {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    align-self: stretch;
    flex-wrap: wrap;
    gap: 24px;
}

.provide__card-cozyvibe {
    min-width: 397px;
    margin: 0 auto;
    border-radius: 20px;
    border: 2px solid #323550;
    background-color: #181B23;
    box-shadow: 0 2px 4px 0 rgba(126, 87, 194, 0.10);
    text-align: center;
    padding: 24px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    align-self: stretch;
    flex: 1 0 0;
}

.provide__card-cozyvibe>h3 {
    margin: 24px 0 12px;
}

.provide__card-cozyvibe>p {
    color: var(--gray-color);
}

@media screen and (max-width: 600px) {
    .provide__card-cozyvibe {
        min-width: 100%;
    }
}

.gallery-main-cozyvibe {
    height: 321px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background:
        url('/images-cozyvibe/gallery-main-bg-cozyvibe.webp') lightgray 0px -22.791px / 100% 217.071% no-repeat;

    background-size: 100% 100%;
    background-position: center;
}

/* Grid with images */
.grid-cozyvibe {
    position: relative;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px;
}

.grid-cozyvibe img {
    border-radius: 20px;
    border: 12px solid transparent;
    background:
        linear-gradient(#000, #000) padding-box,
        linear-gradient(90deg, #46104B 0%, #381C7E 51.92%, #2A4295 100%) border-box;
}

@media (max-width: 767px) {
    .grid-cozyvibe {
        grid-template-columns: 1fr;
    }
}

/* Booking-main */
.booking-main-cozyvibe {
    height: 321px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 56px 0;
    background:
        url('/images-cozyvibe/booking-main-bg-cozyvibe.webp') lightgray 0px -22.791px / 100% 217.071% no-repeat;

    background-size: cover;
    background-position: center;
}

@media (max-width: 600px) {
    .booking-main-cozyvibe {
        height: 100%;
    }
}

/* About Main___________________ */
.about-main-cozyvibe {
    background:
        linear-gradient(180deg, rgba(8, 9, 11, 0) 0%, rgba(8, 9, 11, 0.30) 50.55%, #08090B 100%),
        url('/images-cozyvibe/about-main-bg-cozyvibe.webp') lightgray no-repeat;
    height: 100%;
    padding: 84px 0;
    background-size: cover;
}

.about-main-cozyvibe .main-header-cozyvibe,
.about-events-cozyvibe .secondary-header-cozyvibe,
.about-team-cozyvibe .secondary-header-cozyvibe,
.about-trust-cozyvibe .secondary-header-cozyvibe {
    margin-bottom: 33px;
}

/* About Story___________________ */
.about-story-cozyvibe .container-cozyvibe {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 16px;
}

.about-story__img-cozyvibe {
    min-width: 400px;
    text-align: center;
    flex: 1 0 0;
}

.about-story__story-cozyvibe {
    max-width: 612px;
    flex: 1 0 0;
}

.about-story__story-cozyvibe>h2 {
    text-align: left;
    margin-bottom: 12px;
}

@media screen and (max-width: 1024px) {
    .about-story-cozyvibe .container-cozyvibe {
        flex-direction: column;
        align-items: center;
    }
}

@media screen and (max-width: 600px) {
    .about-main-cozyvibe {
        padding: 13px 0;
        background-position: center bottom;
    }

    .about-story__img-cozyvibe,
    .about-story__img-cozyvibe>img {
        min-width: 100%;
        height: 200px;
    }
}

/* About Events___________________ */
.about-events__cards-cozyvibe {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    align-items: stretch;
    gap: 24px;
}

.about-events__card-cozyvibe {
    border: 2px solid #323550;
    background-color: #181B23;
    box-shadow: 0 2px 4px 0 rgba(126, 87, 194, 0.10);
    border-radius: 20px;
    text-align: center;
    align-content: center;
    padding: 12px;
    width: 186px;
    height: 169px;
}

.about-events__card-cozyvibe>p {
    margin-top: 24px;
}

@media screen and (max-width: 600px) {
    .about-events__card-cozyvibe {
        width: 100%;
    }
}

/* About Team___________________ */
.about-team__cards-cozyvibe {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 24px;
}

.about-team__card-cozyvibe {
    text-align: center;
    border-radius: 20px;
    border: 2px solid #323550;
    background-color: #181B23;
    box-shadow: 0 2px 4px 0 rgba(126, 87, 194, 0.10);
    padding: 12px;
    width: 292px;
}

.about-team__card-cozyvibe>img {
    border-radius: 10px;
    margin-bottom: 24px;
}

.about-team__card-cozyvibe>h3 {
    margin-bottom: 12px;
}

@media screen and (max-width: 600px) {
    .about-team__card-cozyvibe {
        width: 100%;
    }
}

/* About Trust___________________ */
.about-trust-cozyvibe {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 16px;
    align-self: stretch;
}

.about-trust__cards-cozyvibe {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 24px;
}

.about-trust__card-cozyvibe {
    border-radius: 20px;
    border: 2px solid #323550;
    background-color: #181B23;
    color: var(--gray-color);
    box-shadow: 0 2px 4px 0 rgba(126, 87, 194, 0.10);
    padding: 24px;
    width: 397px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 33px;
}

.about-trust__card-number-cozyvibe {
    color: #FFB300;
}

.about-trust__card-title-cozyvibe {
    color: var(--primary-color);
    font-weight: 700;
}

.about-trust__card-group-cozyvibe>ul {
    padding-left: 23px;
}

.about-trust__card-group-cozyvibe>ul>li {
    list-style: disc;
}

/* Contact page______________________ */
.contact-cozyvibe .main-header-cozyvibe {
    margin-bottom: 32px;
}

/* Legal page______________________ */
.legal__header-cozyvibe {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 24px;
    margin-bottom: 24px;
}

.legal__header-cozyvibe>h1 {
    text-align: left;
}

.legal__group-cozyvibe:not(:last-child) {
    margin-bottom: 32px;
}

.legal__group-cozyvibe>h2 {
    color: var(--primary-color);
    font-family: var(--font-cinzel);
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 16px;
}

.legal__group-cozyvibe>p,
.legal__group-cozyvibe>ul {
    color: var(--legal-text-color);
}

.legal__group-cozyvibe>ul {
    padding-left: 23px;
}

.legal__group-cozyvibe>ul>li {
    list-style: disc;
}

@media screen and (max-width: 1024px) {
    .legal__header-cozyvibe {
        flex-direction: column;
        align-items: flex-start;
    }
}

.footer-cozyvibe {
    background: linear-gradient(0deg, #130A28 -0.07%, #08090B 109.57%);
}

.footer-cozyvibe,
.footer__bottom-cozyvibe {
    border-top: 1px solid rgba(176, 190, 197, 0.12);
}

.footer__top-cozyvibe>.container-cozyvibe {
    display: flex;
    flex-wrap: wrap;
    gap: 29px 48px;
}

.footer__top-cozyvibe,
.footer__bottom-cozyvibe {
    padding: 17px 0;
}

.footer__nav-cozyvibe a,
.footer__bottom-nav-cozyvibe a,
.footer__site-policy-cozyvibe>p {
    color: var(--footer-text-color);
}

.footer__site-policy-cozyvibe,
.footer__nav-cozyvibe {
    width: 100%;
    max-width: 324px;
}

.footer__site-policy-cozyvibe {
    padding: 16px 0;
    min-width: 200px;
}

.footer__site-policy-cozyvibe>p {
    margin: 13px 0;
}

.footer__alert-text-cozyvibe {
    display: flex;
    align-items: center;
    gap: 8px;
}

.footer__alert-text-cozyvibe>span {
    color: #FFB300;
    font-size: 12px;
    font-weight: 600;
}

.footer__nav-cozyvibe {
    padding: 13px 0;
}

.footer__nav-cozyvibe>h2 {
    font-family: var(--font-cinzel);
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 15px;
}

.footer__nav-list-cozyvibe>li:not(:last-child) {
    margin-bottom: 11px;
}

.footer__bottom-nav-list-cozyvibe {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 16px;
}

@media screen and (max-width: 1115px) {
    .footer__nav-cozyvibe {
        width: auto;
    }
}

@media screen and (max-width: 600px) {
    .footer__site-policy-cozyvibe {
        min-width: 100%;
    }

    .footer__bottom-nav-list-cozyvibe {
        flex-direction: column;
        align-items: baseline;
        max-width: 154px;
        margin: 0 auto;
    }
}