* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-margin-top: 200px
}

:root {
    --gold: #9c8253;
    --secondaly: #060620;
    --main: #dadceb;
    --second-color: #060620;
    --third: #10113c;
    --background-color: #747898;
    --color: #9176FF;
    --font: 'Poppins', sans-serif;
    --gold-second: #F6DC3B;
    --second-font: sans-serif
}

::-webkit-scrollbar {
    width: 15px
}

::-webkit-scrollbar-thumb {
    background-color: #9c8253
}

::-webkit-scrollbar-track {
    background-color: #fff
}

html {
    scroll-behavior: smooth
}

body {
    font-family: "Abel", sans-serif;
    background-color: #baafaf;
    font-display: swap
}

ul {
    list-style-type: none
}

a {
    text-decoration: none
}

.container {
    padding-left: 15px;
    padding-right: 15px;
    margin-left: auto;
    margin-right: auto
}

@media (min-width:768px) {
    .container {
        width: 750px
    }
}

@media (min-width:992px) {
    .container {
        width: 970px
    }
}

@media (min-width:1200px) {
    .container {
        width: 1170px
    }
}

h1 {
    margin: 0
}

p {
    margin: 0
}

.hidden {
    display: none !important
}

.block {
    display: block
}

.flex {
    display: flex
}

.logInBackground {
    background-color: #000;
    opacity: .2
}

.no-scroll {
    overflow: hidden
}

header {
    padding-top: 15px;
    position: fixed;
    width: 100%;
    z-index: 999;
    transition: 0.2s ease;
    background-image: linear-gradient(45deg, var(--gold), transparent);
    background-color: #060620e0;
    transition: 0.5s
}

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

header:hover,
header.hoverd {
    background-color: var(--third)
}

header .container .logo-image img {
    width: 150px;
    position: relative;
    top: -11px;
    font-size: 20px;
    right: -300px;
    letter-spacing: 2px;
    color: #ffdead
}

@media (max-width:767px) {
    header .container .logo-image img {
        width: 100px;
        right: -100px !important
    }
}

@media (min-width:990px) and (max-width:1200px) {
    header .container .logo-image img {
        width: 150px;
        right: -190px !important
    }
}

@media (max-width:990px) {
    header .container .logo-image img {
        width: 150px;
        right: -130px !important
    }
}

@media (max-width:740px) {
    header .container .logo-image img {
        width: 150px;
        right: -90px !important
    }
}

header .container .burger-links {
    width: 30px;
    height: 20.5px;
    position: absolute;
    cursor: pointer;
    right: 20px
}

@media (max-width:767px) {
    header .container .burger-links {
        right: 20px;
        top: 15px
    }
}

header .container .burger-links span {
    position: absolute;
    background-color: #fff;
    left: 0;
    height: 1.5px;
    width: 100%;
    transition: 0.5s;
    border-radius: 3px
}

header .container span:first-child {
    top: 0
}

header .container span:nth-child(2) {
    top: 10px;
    height: 1.5px
}

header .container span:last-child {
    top: 20px
}

header:hover .burger-links span,
header.hoverd .burger-links span {
    background-color: #fff
}

.burger-links.clicked span:nth-child(2) {
    opacity: 0
}

.burger-links.clicked span:first-child,
.burger-links.clicked span:last-child {
    top: 9px
}

.burger-links.clicked span:first-child {
    transform: rotate(45deg);
    background-color: #fff
}

.burger-links.clicked span:last-child {
    transform: rotate(-45deg);
    background-color: #d9d9d9
}

.hand-pointer-guide {
    position: absolute;
    z-index: 1000;
    right: 11px;
    top: 61px;
    color: #fff;
    font-size: 22px;
    transform: rotate(-16deg);
    pointer-events: none;
    opacity: .95;
    transition: transform 160ms ease, opacity 160ms ease;
    -webkit-user-select: none;
    user-select: none;
    will-change: transform;
    animation: hand-point 1600ms ease-in-out infinite
}

@keyframes hand-point {
    0% {
        transform: translateY(0) rotate(-16deg)
    }

    50% {
        transform: translateY(-6px) rotate(-10deg)
    }

    100% {
        transform: translateY(0) rotate(-16deg)
    }
}

@media (max-width:767px) {
    .hand-pointer-guide {
        right: 48px;
        top: 14px;
        font-size: 20px
    }
}

header .container .logo {
    margin-left: -100px
}

@media (max-width:991px) {
    header .container .logo {
        margin-left: 0
    }
}

header .container .logo .brand-name {
    font-display: swap;
    font-family: "Cairo", sans-serif;
    font-family: "Dancing Script", cursive;
    font-size: 60px;
    color: #f2b863;
    transition: 0.5s
}

header:hover .logo #brand-name,
header.hoverd .logo #brand-name {
    color: #fff
}

@media (max-width:767px) {
    .container .logo .brand-name {
        font-size: 45px !important;
        margin-left: -30px;
        margin-bottom: 10px;
        margin-top: -10px
    }
}

header:hover #brand-text,
header.hoverd #brand-text {
    color: #fff
}

header .container .logo span {
    position: relative;
    top: -11px;
    font-size: 20px;
    right: -50px;
    letter-spacing: 2px;
    color: #ffdead;
    transition: 0.5s
}

@media (max-width:767px) {
    header .container .logo span {
        font-size: 16px;
        right: -28px
    }
}

header .container .icons i {
    color: #fff;
    font-size: 22px;
    cursor: pointer;
    position: relative;
    right: 60px
}

@media (max-width:767px) {
    header .container .icons i {
        display: none
    }
}

header:hover .icons i,
header.hoverd .icons i {
    color: #fff
}

.slide-nav {
    position: fixed;
    left: -500px;
    top: 105px;
    background-color: #fff;
    width: 350px;
    height: 696px;
    transition: 0.5s;
    border-radius: 6px;
    padding: 10px;
    z-index: 999
}

@media (max-width:400px) {
    .slide-nav {
        width: 100%
    }
}

@media (max-width:767px) {
    .slide-nav {
        top: 80px
    }
}

.slide-nav ul li {
    display: block;
    border-bottom: 1px solid #000;
    display: flex;
    justify-content: space-between;
    position: relative;
    border-radius: 6px;
    cursor: pointer;
    width: 100%
}

.slide-nav ul li:hover {
    background-color: #eee
}

.slide-nav ul li a {
    color: #000;
    width: 100%;
    padding: 26px 0
}

.slide-nav button {
    margin-top: 70px;
    border: none;
    background-color: #000;
    color: #fff;
    padding: 10px;
    border-radius: 6px;
    cursor: pointer
}

.landing-sec {
    width: 100%;
    height: 100vh;
    position: relative
}

@media (max-width:767px) {
    .landing-sec {
        height: 70vh
    }
}

.landing-sec .image-container {
    width: 100%;
    height: 100%;
    position: relative
}

.landing-sec .image-container img {
    position: absolute;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: 1s
}

.landing-sec .image-container img.active {
    opacity: 1
}

.navigation-angles i {
    position: absolute;
    top: 50%;
    transform: translateY(-70%);
    color: #08a8ff;
    font-size: 30px;
    cursor: pointer;
    opacity: .4;
    transition: 0.3s
}

.navigation-angles i:hover {
    opacity: 1;
    box-shadow: #08a8ff 5px 5px 6px 1px
}

.navigation-angles i:first-child {
    right: 30px
}

.navigation-angles i:last-child {
    left: 30px
}

.navigation-angles i.disabled {
    cursor: no-drop;
    color: #eee
}

.images-polits {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%)
}

@media (max-width:767px) {
    .images-polits {
        display: none
    }
}

.images-polits ul {
    display: flex;
    gap: 20px
}

.images-polits ul li {
    border-radius: 50%;
    border: #08a8ff 1px solid;
    height: 15px;
    width: 15px;
    transition: 0.5s ease
}

.images-polits ul li.active {
    background-color: #08a8ff
}

.swiper {
    width: 100%;
    height: 600px;
    background-color: #eee;
    display: flex;
    align-items: center
}

.swiper-wrapper {
    width: 100%;
    height: 35em;
    display: flex;
    align-items: center
}

.card {
    width: 20em !important;
    height: 90% !important;
    background-color: #fff;
    border-radius: 2em;
    box-shadow: 0 0 2em rgb(0 0 0 / .2);
    padding: 2em 1em;
    display: flex !important;
    align-items: center;
    flex-direction: column;
    margin: 0 2em
}

.swiper-slide:not(.swiper-slide-active) {
    filter: blur(1px)
}

.card__image {
    width: 10em;
    height: 10em;
    border-radius: 50%;
    border: 5px solid #f2b863;
    padding: 3px;
    margin-bottom: 2em
}

.card__image img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover
}

.card__content {
    display: flex;
    align-items: center;
    flex-direction: column
}

.card__title {
    font-size: 1.5rem;
    font-weight: 500;
    position: relative;
    top: .2em;
    font-family: var(--font);
    font-display: swap;
    margin-bottom: 20px;
    text-align: center
}

.card__name {
    color: #f2b863;
    font-family: var(--font);
    font-display: swap
}

.card__text {
    text-align: center;
    font-size: .9rem;
    margin: 1em 0;
    font-family: var(--font);
    font-display: swap;
    line-height: 1.6
}

.card__phone {
    margin-bottom: 10px
}

.card__btn {
    background-color: #f2b863;
    color: #fff;
    font-size: 1rem;
    text-transform: uppercase;
    font-weight: 600;
    border: none;
    padding: .5em;
    border-radius: .5em;
    margin-top: .5em;
    cursor: pointer;
    font-family: var(--font);
    font-display: swap;
    margin-top: 20px
}

.about-cont>.about-main,
.about-cont>.about-main>.column>.section>i,
.about-cont>.about-main>.column>.section>h1,
.about-cont>.about-main>.column>.section>p {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: row
}

.about-cont,
.about-cont>.about-head,
.about-cont>.about-main>.column,
.about-cont>.about-main>.column>.section,
.about-cont>.about-main>.middel-column,
.about-cont>.about-main>.middel-column>.middel-text {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column
}

body {
    margin: 0;
    padding: 0;
    text-transform: capitalize;
    box-sizing: border-box;
    font-family: sans-serif;
    font-display: swap;
    background-color: #eee
}

.about-cont {
    width: 100%;
    background-color: #f6f6f6
}

.about-cont>.about-head {
    width: 100%
}

@media (max-width:650px) {
    .about-cont>.about-head {
        background-color: #9c8253
    }
}

.about-cont>.about-head>.up-text {
    padding-top: 5px;
    font-family: "Dancing Script", cursive;
    font-display: swap;
    color: #060620;
    font-size: 30px
}

@media (max-width:650px) {
    .about-cont>.about-head>.up-text {
        color: #fff
    }
}

.about-cont>.about-head>.down-text {
    font-family: "Dancing Script", cursive;
    font-display: swap;
    color: #060620;
    font-size: 40px;
    padding-bottom: 20px
}

@media (max-width:650px) {
    .about-cont>.about-head>.down-text {
        color: #fff
    }
}

.about-cont>.about-main {
    width: 100%
}

@media (max-width:800px) {
    .about-cont>.about-main {
        flex-direction: column
    }
}

.about-cont>.about-main>.column {
    height: 100%;
    width: 3333.3333333333%
}

@media (max-width:800px) {
    .about-cont>.about-main>.column {
        width: 100%;
        flex-direction: row;
        flex-wrap: wrap
    }
}

.about-cont>.about-main>.column>.section {
    height: 50%;
    margin-bottom: 90px;
    margin-top: 10px
}

@media (max-width:800px) {
    .about-cont>.about-main>.column>.section {
        min-width: 320px;
        width: 50%;
        margin-bottom: 0
    }
}

@media (max-width:650px) {
    .about-cont>.about-main>.column>.section {
        width: 100%
    }
}

.about-cont>.about-main>.column>.section>i {
    font-size: 25px;
    background-color: #9c8253;
    border-radius: 50%;
    color: #fff;
    width: 40px;
    height: 40px
}

.about-cont>.about-main>.column>.section>h1 {
    color: #000;
    font-weight: 600;
    font-family: "Abel", sans-serif;
    font-display: swap;
    text-align: center
}

@media (max-width:1000px) {
    .about-cont>.about-main>.column>.section>h1 {
        font-size: 23px
    }
}

.about-cont>.about-main>.column>.section>p {
    color: #000;
    font-family: "Abel", sans-serif;
    font-display: swap;
    padding: 10px 25px;
    text-align: center;
    line-height: 1.4
}

@media (max-width:1000px) {
    .about-cont>.about-main>.column>.section>p {
        font-size: 15px
    }
}

.about-cont>.about-main>.middel-column {
    height: 670px;
    width: 3333.3333333333%;
    background-color: #9c8253
}

@media (max-width:800px) {
    .about-cont>.about-main>.middel-column {
        width: 100%;
        height: 300px;
        flex-direction: row
    }
}

@media (max-width:530px) {
    .about-cont>.about-main>.middel-column {
        width: 100%;
        height: 300px;
        flex-direction: row;
        background-image: linear-gradient(45deg, black, transparent), url(https://res.cloudinary.com/dfwi46xp5/image/upload/v1782041499/Seer_Veda_Logo_1-removebg_tyxvdg.ico);
        background-position: center;
        background-size: cover
    }
}

.about-cont>.about-main>.middel-column>.middel-text {
    color: #fff
}

.about-cont>.about-main>.middel-column>.middel-text>h1 {
    font-family: sans-serif;
    font-display: swap;
    font-weight: 700;
    padding-bottom: 20px;
    margin: 0;
    font-size: 30px;
    text-transform: uppercase;
    font-variant: small-caps
}

@media (max-width:1000px) {
    .about-cont>.about-main>.middel-column>.middel-text>h1 {
        font-size: 25px
    }
}

.viewMoreCondButton {
    background: linear-gradient(90deg, var(--gold) 0%, var(--gold-second) 100%);
    color: var(--second-color);
    border: none;
    padding: .6rem 1rem;
    border-radius: 999px;
    box-shadow: 0 6px 18px rgb(0 0 0 / .12);
    font-weight: 600;
    cursor: pointer;
    transition: transform 150ms ease, box-shadow 150ms ease, opacity 150ms ease;
    font-family: var(--font)
}

.viewMoreCondButton:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 28px rgb(0 0 0 / .16)
}

.viewMoreCondButton:focus {
    outline: 3px solid rgb(156 130 83 / .18);
    outline-offset: 3px
}

.conditions-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
    padding: 16px;
    margin: 20px auto
}

.condition-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    background: linear-gradient(180deg, rgb(255 255 255 / .7), rgb(255 255 255 / .45));
    border-radius: 12px;
    padding: 12px 16px;
    box-shadow: 0 4px 14px rgb(16 17 60 / .06)
}

.condition-text {
    font-weight: 600;
    color: var(--third);
    font-family: var(--font)
}

.condition-open-button {
    background: #fff0;
    border: 2px solid var(--color);
    color: var(--color);
    padding: 8px 12px;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 150ms ease
}

.condition-open-button:hover {
    background: var(--color);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 8px 18px rgb(145 118 255 / .18)
}

@media (max-width:600px) {
    .condition-row {
        flex-direction: column;
        align-items: flex-start
    }

    .condition-open-button {
        width: 100%;
        text-align: center;
        margin-top: 8px
    }
}

.about-cont>.about-main>.middel-column>.middel-text>p {
    font-family: sans-serif;
    font-display: swap;
    padding: 0 20px;
    text-align: center;
    font-size: 14px;
    line-height: 1.4
}

@media (max-width:1000px) {
    .about-cont>.about-main>.middel-column>.middel-text>p {
        font-size: 12px
    }
}

.about-cont>.about-main>.middel-column .middel-img img {
    width: 100%
}

.about-cont>.about-main>.middel-column .middel-img {
    display: block
}

.goBackToMoreButton {
    display: inline-block;
    background: linear-gradient(90deg, var(--gold) 0%, #f2b863 100%);
    color: var(--secondaly);
    border: none;
    padding: 10px 18px;
    border-radius: 12px;
    font-family: var(--font);
    font-display: swap;
    font-weight: 600;
    cursor: pointer;
    box-shadow: 0 8px 20px rgb(0 0 0 / .12);
    transition: transform 150ms ease, box-shadow 150ms ease, opacity 150ms ease;
    margin-bottom: 14px
}

.goBackToMoreButton:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgb(0 0 0 / .16);
    opacity: .98
}

@media (max-width:600px) {
    .goBackToMoreButton {
        width: 100%;
        text-align: center;
        padding: 12px 16px;
        border-radius: 10px
    }
}

.discount .discount-form {
    position: relative
}

.discount-form .whatsappContactButton,
.discount-form .whatsappContactButton2 {
    position: absolute;
    top: 12px;
    right: 12px;
    z-index: 30;
    border: none;
    background: #fff0;
    padding: 0;
    max-width: calc(100% - 24px)
}

.discount-form .whatsappContactButton2 {
    top: 68px
}

.discount-form .whatsappContactButton a,
.discount-form .whatsappContactButton2 a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 18px;
    background: linear-gradient(135deg, #25D366 0%, #1ebc5b 100%);
    color: #fff;
    border-radius: 999px;
    text-decoration: none;
    font-family: var(--font);
    font-display: swap;
    font-weight: 600;
    line-height: 1.2;
    box-shadow: 0 10px 24px rgb(37 211 102 / .25);
    transition: transform 180ms ease, box-shadow 180ms ease, filter 180ms ease;
    white-space: nowrap
}

.discount-form .whatsappContactButton a::before,
.discount-form .whatsappContactButton2 a::before {
    content: "💬";
    font-size: 1rem
}

.discount-form .whatsappContactButton a:hover,
.discount-form .whatsappContactButton2 a:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgb(37 211 102 / .35);
    filter: brightness(1.03)
}

@media (max-width:700px) {

    .discount-form .whatsappContactButton,
    .discount-form .whatsappContactButton2 {
        position: static;
        display: block;
        margin-bottom: 12px;
        max-width: 100%
    }

    .discount-form .whatsappContactButton2 {
        top: auto
    }

    .discount-form .whatsappContactButton a,
    .discount-form .whatsappContactButton2 a {
        width: 100%;
        text-align: center;
        padding: 12px 16px;
        border-radius: 999px
    }
}

@media (max-width:530px) {
    .about-cont>.about-main>.middel-column .middel-img {
        display: none
    }
}

.product {
    min-height: 600px;
    background-color: #dadceb;
    padding: 70px 0
}

.section-title {
    width: 100%;
    max-width: 1170px;
    margin: 0 auto 18px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 0 15px
}

.section-title .title {
    font-family: var(--font);
    font-weight: 700;
    color: var(--third);
    font-size: 1.6rem;
    margin: 0
}

.section-title .section-options {
    display: flex;
    align-items: center;
    gap: 12px;
    background: rgb(255 255 255 / .92);
    border: 1px solid rgb(156 130 83 / .18);
    border-radius: 10px;
    padding: 8px 12px;
    box-shadow: 0 14px 30px rgb(0 0 0 / .08)
}

.section-title ul {
    display: flex;
    gap: 10px;
    margin: 0;
    padding: 0;
    align-items: center;
    flex-wrap: wrap
}

.section-title li {
    border-radius: 999px;
    padding: 10px 16px;
    transition: background-color .18s ease, transform .18s ease, color .18s ease;
    cursor: pointer;
    margin: 0;
    background: rgb(255 255 255 / .95);
    border: 1px solid rgb(156 130 83 / .2)
}

.section-title li a {
    color: var(--secondaly);
    font-size: .95rem;
    text-transform: uppercase;
    letter-spacing: .08em;
    font-weight: 700;
    transition: color .18s ease
}

.section-title li:hover,
.section-title li.active {
    background: linear-gradient(90deg, var(--gold) 0%, #f2b863 100%);
    border-color: rgb(156 130 83 / .5)
}

.section-title li:hover a,
.section-title li.active a {
    color: #fff
}

.section-title .product-card-filter {
    cursor: default;
    background: #fff0;
    border-color: #fff0
}

.section-title .product-card-filter a {
    color: #333;
    text-transform: none;
    letter-spacing: normal;
    font-size: .95rem;
    font-weight: 700
}

.product .section-options ul select {
    display: inline-flex;
    min-width: 160px;
    padding: 10px 16px;
    border-radius: 999px;
    border: 1px solid rgb(6 6 32 / .12);
    background-color: #fff;
    color: var(--secondaly);
    cursor: pointer;
    appearance: none;
    font-weight: 700;
    transition: background-color .18s ease, border-color .18s ease, color .18s ease
}

.product .section-options ul select:focus,
.product .section-options ul select:hover {
    outline: 0;
    background-color: #f2b863;
    color: #060620;
    border-color: rgb(156 130 83 / .8)
}

.product .section-options ul select option {
    background-color: #fff;
    color: #060620
}

@media (max-width:900px) {
    .section-title .title {
        font-size: 2rem
    }

    .section-title li a {
        font-size: .92rem
    }
}

@media (max-width:600px) {
    .section-title {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
        padding: 0 12px
    }

    .section-title ul {
        flex-wrap: wrap;
        gap: 8px
    }

    .section-title li {
        padding: 8px 10px
    }
}

.cards {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 40px
}

.product-card {
    overflow: hidden;
    border-radius: 10px;
    background-color: #eee;
    position: relative;
    min-height: 320px;
    transition: 0.5s
}

.product-card:hover {
    transform: scale(1.08);
    box-shadow: rgb(0 0 0 / .5) 2px 2px 25px 2px
}

.product-image img {
    width: 100%;
    height: 200px
}

.product-name div {
    margin: 15px 0 0;
    text-align: center;
    font-size: 25px;
    font-weight: 700
}

.product-text {
    padding: 15px;
    text-align: center;
    font-size: 14px
}

.product-card button {
    margin-bottom: 20px;
    transform: translateX(-50%);
    padding: 10px;
    background-color: #f2b863;
    border: none;
    color: #fff;
    border-radius: 12px;
    font-size: 14px;
    cursor: pointer;
    margin-left: 50%
}

.product-card .new {
    background-color: #2cbfe8;
    color: #fff;
    border-radius: 10px;
    position: absolute;
    right: 10px;
    top: 5px;
    transition: 0.5s
}

.product-card:hover .new {
    background-color: #e82c77
}

.product .section-options ul select {
    display: none;
    transition: 0.3s;
    border-radius: 15px;
    padding: 10px;
    cursor: pointer;
    background-color: #fff0;
    color: #000;
    border: 0
}

.product .section-options ul select:focus {
    background-color: #f2b863;
    outline: 0;
    color: #fff
}

.product .section-options ul select:hover {
    background-color: #f2b863;
    color: #fff
}

.product .section-options ul select option {
    border: 0
}

.moreMainView {
    background-image: linear-gradient(90deg, #9c8253, white);
    transition: 0.6s;
    z-index: 500;
    position: absolute;
    left: -4000px;
    top: 115px;
    min-height: 100%;
    width: 100%;
    padding-bottom: 110px
}

@media (max-width:700px) {
    .moreMainView {
        top: 77px
    }
}

.moreProductName {
    font-family: "Cairo", sans-serif;
    font-family: "Dancing Script", cursive;
    font-display: swap;
    padding: 5px 20px;
    font-size: 40px;
    text-transform: uppercase
}

.moreProductDesc {
    display: flex;
    flex-wrap: wrap;
    flex-direction: row;
    align-content: center;
    justify-content: space-around;
    align-items: center
}

.moreProductDesc img {
    width: 25%
}

.moreProductDesc p {
    width: 70%;
    font-family: sans-serif;
    font-display: swap;
    font-size: 15px;
    word-spacing: 1.2px;
    text-transform: capitalize
}

.outerCondGallery {
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    align-content: center;
    justify-content: center;
    align-items: center
}

.outerCondName1,
.outerCondName2 {
    text-align: center;
    font-family: sans-serif;
    font-display: swap;
    font-size: 24px;
    padding: 10px;
    text-transform: capitalize
}

.outerCond {
    margin: 10px 20px
}

.outerCondImages1 img,
.outerCondImages2 img {
    width: 200px;
    height: 200px;
    margin: 10px
}

.goBackButton {
    padding: 15px;
    font-size: 15px;
    border-radius: 20px;
    border: none;
    box-shadow: 1px 1px 5px 1px #000;
    background-color: #10113c;
    color: #fff;
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 1000
}

@media (max-width:1076px) {
    .moreProductDesc p {
        width: 65%
    }

    .moreProductDesc img {
        width: 30%
    }
}

@media (max-width:800px) {
    .moreProductDesc {
        flex-direction: column
    }

    .moreProductDesc p {
        width: 85%
    }

    .moreProductDesc img {
        height: 300px;
        width: 200px
    }

    .moreProductName {
        font-size: 30px
    }
}

@media (max-width:500px) {
    .moreProductDesc p {
        width: 90%;
        font-size: 15px
    }

    .moreProductDesc img {
        height: 200px;
        width: 150px
    }

    .moreProductName {
        font-size: 20px
    }

    .outerCondName1,
    .outerCondName2 {
        font-size: 25px
    }

    .outerCondImages1 img,
    .outerCondImages2 img {
        width: 75px;
        height: 75px;
        margin: 5px
    }

    .goBackButton {
        padding: 10px;
        font-size: 12px
    }
}

.viewMoreCondButton {
    background: antiquewhite;
    border: none;
    border-radius: 15px;
    box-shadow: 1px 1px 5px 1px #000;
    padding: 10px;
    width: 240px;
    font-size: 16px;
    margin-top: 20px
}

.allConditionsSection {
    background-image: linear-gradient(90deg, #9c8253, white);
    z-index: 500;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-content: center;
    position: absolute;
    width: 100%;
    min-height: 100%;
    top: 115px;
    flex-direction: column
}

@media (max-width:590px) {
    .allConditionsSection {
        top: 77px
    }
}

.allCond {
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    justify-content: center;
    align-content: center;
    padding: 20px
}

.allCond>div {
    display: flex;
    justify-content: space-around;
    align-items: center
}

.allCond h2,
.allCond .allCondDate {
    font-size: 20px;
    font-family: sans-serif;
    font-weight: 700;
    text-transform: uppercase
}

.allCond .allCondImages {
    display: flex;
    flex-wrap: wrap;
    flex-direction: row;
    align-content: center;
    justify-content: center;
    align-items: center
}

.allCond .allCondImages img {
    width: 200px
}

.allCondDesc {
    font-size: 15px;
    font-family: sans-serif;
    word-spacing: 1.2px;
    word-break: keep-all;
    padding: 10px 20px
}

.conditions-header {
    font-size: 30px;
    font-family: "Cairo", sans-serif;
    font-family: "Dancing Script", cursive;
    font-display: swap;
    text-transform: uppercase;
    text-align: center
}

@keyframes move-right {
    100% {
        right: 10px;
        opacity: 1
    }
}

@media (max-width:600px) {
    .container .logo .brand-name {
        font-size: 40px !important;
        margin-left: -10px;
        margin-bottom: 10px;
        margin-top: -10px
    }

    header .container .logo span {
        font-size: 15px;
        right: 25px
    }

    header .container .logo-image img {
        width: 90px;
        right: 0 !important
    }

    header .container .burger-links {
        right: 20px;
        top: 15px
    }
}

.Events-cont {
    display: grid;
    width: 100%;
    background-image: linear-gradient(45deg, transparent, black), url(https://res.cloudinary.com/dfwi46xp5/image/upload/v1769935641/e1_fomeo2.jpg);
    background-size: cover;
    grid-template-columns: minmax(320px, 0.95fr) minmax(0, 1.05fr);
    gap: 24px;
    align-items: start;
    padding: 24px 20px 40px;
    background-position-x: center
}

.old-events-header {
    grid-column: 1 / -1;
    padding: 0 20px 18px
}

.old-events-title {
    display: flex;
    flex-direction: column;
    gap: 10px;
    max-width: 760px;
    background: rgb(255 255 255 / .08);
    border: 1px solid rgb(255 255 255 / .16);
    border-radius: 20px;
    padding: 18px 22px;
    backdrop-filter: blur(10px)
}

.old-events-title h1 {
    margin: 0;
    font-size: clamp(2rem, 3vw, 2.8rem);
    color: var(--gold-second);
    line-height: 1.05
}

.old-events-title p {
    margin: 0;
    color: rgb(255 255 255 / .86);
    font-size: 1rem;
    line-height: 1.6
}

.Events-cont.blur {
    filter: blur(5px) brightness(.5)
}

body.blur {
    overflow-y: hidden !important
}

.left-side {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    gap: 16px;
    margin-top: 20px;
    height: 100%
}

.left-sid-cont {
    width: 100%;
    padding: 18px;
    background-color: #232428a3;
    margin: 0 auto;
    background-image: linear-gradient(24deg, var(--secondaly), transparent);
    min-height: 280px;
    overflow: visible;
    border-radius: 16px
}

.left-sid-cont h1 {
    margin: 10px 0;
    color: var(--gold-second);
    font-size: 30px
}

.left-sid-cont p {
    color: var(--main);
    line-height: 1.5;
    overflow: hidden;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 5;
    text-overflow: ellipsis;
    word-break: break-word;
    overflow-wrap: anywhere
}

.decoration-text {
    width: 100%;
    min-height: 200px;
    height: 50%;
    font-size: 50px;
    color: var(--third);
    background-color: violet;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 10px;
    background-image: linear-gradient(45deg, var(--gold-second), transparent)
}

.event-gallery-grid {
    width: 100%;
    align-self: stretch;
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    grid-template-rows: repeat(2, minmax(70px, 1fr));
    gap: 8px;
    margin-top: 8px
}

@media (max-width:800px) {
    .event-gallery-grid {
        grid-template-rows: repeat(5, minmax(0, 1fr));
        grid-template-columns: repeat(2, minmax(70px, 1fr))
    }
}

.event-gallery-thumb {
    border: none;
    padding: 0;
    background: #fff0;
    cursor: pointer;
    overflow: hidden;
    border-radius: 6px
}

.event-gallery-thumb img {
    display: block;
    width: 100%;
    height: 100%;
    min-height: 70px;
    object-fit: cover;
    border-radius: 6px;
    transition: transform 180ms ease, box-shadow 180ms ease
}

.event-gallery-thumb:hover img {
    transform: scale(1.04);
    box-shadow: 0 8px 18px rgb(0 0 0 / .2)
}

.event-image-lightbox {
    position: fixed;
    inset: 0;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgb(0 0 0 / .86);
    padding: 20px;
    opacity: 0;
    pointer-events: none;
    transition: opacity 180ms ease
}

.event-image-lightbox.show {
    opacity: 1;
    pointer-events: auto
}

.event-image-lightbox__frame {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: min(92vw, 900px);
    max-height: 90vh
}

.event-image-lightbox__frame img {
    display: block;
    width: 100%;
    max-height: 90vh;
    object-fit: contain;
    border-radius: 12px;
    box-shadow: 0 20px 50px rgb(0 0 0 / .35)
}

.event-image-lightbox__close {
    position: absolute;
    top: 16px;
    right: 16px;
    z-index: 10000;
    border: none;
    border-radius: 50%;
    width: 42px;
    height: 42px;
    font-size: 24px;
    line-height: 1;
    color: #fff;
    background: rgb(0 0 0 / .7);
    cursor: pointer
}

body.event-lightbox-open {
    overflow: hidden
}

@media (max-width:1100px) and (min-width:600px) {
    .decoration-text {
        display: none
    }

    .left-sid-cont {
        background-image: linear-gradient(24deg, #f6dc3b96, #ee82ee96)
    }

    .Events-cont {
        min-height: 950px
    }
}

@media (max-width:600px) {
    .left-sid-cont {
        background-image: linear-gradient(24deg, #f6dc3b96, #ee82ee96);
        min-height: 90%
    }

    .Events-cont {
        display: flex;
        flex-direction: column
    }

    .decoration-text {
        display: none
    }
}

@media (max-width:450px) {
    .left-sid-cont {
        background-image: linear-gradient(24deg, #f6dc3b96, #ee82ee96)
    }
}

.cards-container {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    width: 100%;
    background-color: #232428a3;
    justify-content: flex-start;
    background-image: linear-gradient(315deg, var(--secondaly), transparent);
    min-height: 0;
    padding: 20px 0 30px;
    border-radius: 18px
}

.left-sid-cont button a {
    color: var(--third);
    text-decoration: none
}

.cards-container .spans {
    display: flex;
    width: 200px;
    justify-content: space-between;
    align-self: center;
    margin: 10px;
    flex-direction: row;
    color: var(--gold-second)
}

.cards-container .spans i {
    font-size: 30px
}

.cards-container .spans span.choosed {
    background-color: var(--gold-second);
    border-color: var(--second-color)
}

.cards-container .small-cont {
    width: 100%;
    min-height: 340px;
    overflow: hidden;
    transition: height 0.35s ease
}

.cards-container .small-cont__page {
    display: none;
    min-height: 380px;
    inset: 0 auto auto 0;
    width: 100%;
    padding: 0 20px 16px;
    flex-direction: column;
    align-items: center;
    opacity: 0;
    pointer-events: none;
    transform: translateX(100%);
    transition: transform 0.45s ease, opacity 0.25s ease;
    justify-content: center
}

.cards-container .small-cont__page.active {
    opacity: 1;
    pointer-events: auto;
    transform: translateX(0);
    display: flex !important
}

.cards-container .small-cont__page.is-left {
    transform: translateX(-100%)
}

.cards-container .small-cont__page.is-right {
    transform: translateX(100%)
}

.cards-container .spans i {
    cursor: pointer;
    transition: transform 0.2s ease, opacity 0.2s ease
}

.cards-container .spans i:hover {
    transform: translateY(-2px)
}

.cards-container .spans i.disabled {
    opacity: .35;
    pointer-events: none
}

.cards-container .eventCard {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    width: 100%;
    max-width: 450px;
    min-height: 180px;
    background: rgb(255 255 255 / .96);
    border: 1px solid rgb(255 255 255 / .25);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 14px 32px rgb(6 6 32 / .12);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
    margin: 10px
}

.cards-container .eventCard:hover {
    transform: translateY(-3px);
    box-shadow: 0 18px 36px rgb(6 6 32 / .16)
}

.cards-container .eventCard .old-date {
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 16px 12px;
    background: linear-gradient(135deg, var(--gold), var(--gold-second));
    color: var(--secondaly);
    text-align: center
}

.cards-container .eventCard .old-date .day {
    margin: 0;
    font-size: 1.8rem;
    font-weight: 800;
    line-height: 1
}

.cards-container .eventCard .old-date .mounth {
    margin: 6px 0 0;
    font-size: 1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: .06em
}

.cards-container .eventCard div:nth-child(2) {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 10px;
    padding: 16px 18px 16px 16px;
    min-width: 0
}

.cards-container .eventCard .title {
    margin: 0;
    font-size: 1.05rem;
    color: var(--third);
    line-height: 1.3
}

.cards-container .eventCard .event-text {
    margin: 0;
    font-size: .95rem;
    line-height: 1.55;
    color: #4b5563;
    overflow: hidden;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
    line-clamp: 3
}

.cards-container .eventCard .event-button,
.left-sid-cont button {
    align-self: flex-start;
    margin-top: auto;
    border: none;
    border-radius: 999px;
    padding: 10px 16px;
    background: linear-gradient(135deg, rgb(156 130 83 / .95), rgb(145 118 255 / .95));
    color: #fff;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    box-shadow: 0 10px 20px rgb(0 0 0 / .12)
}

.cards-container .eventCard .event-button:hover {
    transform: translateY(-1px);
    box-shadow: 0 12px 24px rgb(0 0 0 / .15)
}

.cards-container .eventCard .event-button a {
    color: inherit;
    text-decoration: none
}

@media (max-width:700px) {
    .cards-container .eventCard {
        min-height: 160px
    }

    .cards-container .eventCard .old-date {
        width: 92px;
        padding: 12px 10px
    }

    .cards-container .eventCard .old-date .day {
        font-size: 1.55rem
    }

    .cards-container .eventCard .old-date .mounth {
        font-size: .88rem
    }

    .cards-container .eventCard div:nth-child(2) {
        padding: 14px 14px 14px 12px;
        gap: 8px
    }

    .cards-container .eventCard .title {
        font-size: .98rem
    }

    .cards-container .eventCard .event-text {
        font-size: .9rem;
        -webkit-line-clamp: 2;
        line-clamp: 2
    }
}

@media (max-width:480px) {
    .cards-container .eventCard {
        flex-direction: column;
        min-height: auto
    }

    .cards-container .eventCard .old-date {
        width: 100%;
        flex-direction: row;
        justify-content: center;
        gap: 10px;
        padding: 12px 10px
    }

    .cards-container .eventCard .old-date .mounth {
        margin: 0
    }

    .cards-container .eventCard div:nth-child(2) {
        padding: 14px
    }
}

.selectCont {
    width: 85%;
    display: flex;
    align-self: center;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
    margin: 10px 0 16px;
    padding: 12px 14px;
    border-radius: 999px;
    background: rgb(255 255 255 / .08);
    border: 1px solid rgb(255 255 255 / .16);
    box-shadow: 0 10px 24px rgb(0 0 0 / .16);
    -webkit-backdrop-filter: blur(8px);
    backdrop-filter: blur(8px)
}

select.select,
select.select2 {
    min-width: 150px;
    padding: 10px 14px;
    border-radius: 999px;
    border: 1px solid rgb(255 255 255 / .2);
    background: linear-gradient(135deg, rgb(255 255 255 / .18), rgb(255 255 255 / .08));
    color: var(--third);
    font-weight: 600;
    outline: none;
    appearance: none;
    cursor: pointer;
    box-shadow: inset 0 1px 0 rgb(255 255 255 / .14)
}

select.select:focus,
select.select2:focus {
    border-color: var(--gold-second);
    box-shadow: 0 0 0 3px rgb(255 214 102 / .2)
}

.selectCont button {
    border: none;
    padding: 10px 16px;
    border-radius: 999px;
    background: linear-gradient(135deg, var(--gold-second), var(--gold));
    color: var(--secondaly);
    font-weight: 700;
    cursor: pointer;
    box-shadow: 0 10px 20px rgb(0 0 0 / .18);
    transition: transform 0.2s ease, box-shadow 0.2s ease
}

.selectCont button:hover {
    transform: translateY(-1px);
    box-shadow: 0 12px 24px rgb(0 0 0 / .22)
}

.popup {
    color: red;
    padding-top: 15px
}

.event {
    width: 100%
}

.event.dis {
    display: none
}

.sectionHeader {
    width: 100%;
    background-color: var(--second-color);
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    padding: 30px 20px
}

.event-title {
    max-width: 640px;
    color: var(--main)
}

.event-title .eventsText {
    font-size: clamp(2rem, 3.2vw, 3rem);
    color: var(--gold);
    font-family: sans-serif;
    font-weight: 900;
    margin-bottom: 10px
}

.event-subtitle {
    color: #d7d2c9;
    font-size: 1rem;
    line-height: 1.6;
    max-width: 520px
}

.daysButton {
    flex: 1 1;
    display: flex;
    justify-content: flex-end;
    flex-wrap: wrap;
    gap: 12px
}

.daysButton button {
    min-width: 90px;
    min-height: 46px;
    height: 46px;
    padding: 0 18px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgb(156 130 83 / .95), rgb(145 118 255 / .95));
    color: #fff;
    font-size: .95rem;
    font-family: sans-serif;
    font-weight: 700;
    letter-spacing: .02em;
    border: none;
    border-radius: 999px;
    cursor: pointer;
    transition: transform 0.25s ease, box-shadow 0.25s ease, opacity 0.25s ease;
    white-space: nowrap
}

.daysButton button:hover,
.daysButton button:focus {
    transform: translateY(-2px);
    box-shadow: 0 14px 30px rgb(0 0 0 / .18);
    opacity: .95
}

.daysButton button.active {
    background: linear-gradient(135deg, var(--gold-second), #f2e064);
    color: var(--second-color)
}

.event-grid {
    display: grid;
    gap: 20px;
    padding: 30px 20px 40px
}

.event-image-cont {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(260px, 1.4fr) minmax(0, 1fr);
    gap: 20px;
    align-items: stretch
}

.event-image-cont .event-main-img {
    grid-column: 2
}

.event-main-card,
.event-ad-card {
    border-radius: 24px;
    overflow: hidden;
    position: relative;
    background: rgb(255 255 255 / .06);
    border: 1px solid rgb(255 255 255 / .12);
    box-shadow: 0 24px 60px rgb(0 0 0 / .14)
}

.event-main-card {
    grid-row: span 2;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 420px
}

.event-main-card img,
.event-ad-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block
}

.event-ad-card {
    min-height: 200px
}

.event-image-cont:first-child .event-ad-card {
    min-height: 260px
}

.event-image-cont:last-child .event-ad-card {
    min-height: 200px
}

.event-image-cont .event-main-card img {
    min-height: 420px
}

@media (max-width:1050px) {
    .event-grid {
        padding: 24px 16px 32px
    }

    .event-image-cont {
        grid-template-columns: minmax(0, 1fr) minmax(260px, 1.35fr);
        gap: 16px
    }

    .event-image-cont .event-main-img {
        grid-column: 2
    }

    .event-image-cont .event-ad-img:first-of-type {
        display: block
    }

    .event-image-cont .event-ad-img:last-of-type {
        display: none
    }

    .event-main-card {
        grid-row: auto;
        min-height: 320px
    }

    .event-ad-card {
        min-height: 200px
    }
}

.event-image-cont img {
    width: 100%;
    display: block
}

.event-ad-img {
    border-radius: 22px;
    object-fit: cover;
    min-height: 240px
}

.event-main-img {
    border-radius: 28px;
    object-fit: cover;
    min-height: 420px
}

@media (max-width:700px) {
    .sectionHeader {
        padding: 24px 16px;
        flex-direction: column;
        align-items: flex-start
    }

    .daysButton {
        justify-content: flex-start;
        width: 100%
    }

    .daysButton button {
        min-height: 42px;
        height: 42px;
        padding: 0 14px;
        font-size: .9rem
    }

    .event-title .eventsText {
        font-size: 2.2rem
    }

    .event-image-cont {
        gap: 14px;
        grid-template-columns: 1fr
    }

    .event-image-cont .event-main-img {
        grid-column: auto
    }

    .event-image-cont .event-ad-img {
        display: none
    }

    .event-main-card {
        min-height: 260px
    }

    .event-main-img {
        min-height: 260px
    }
}

.discount {
    display: flex;
    flex-wrap: wrap;
    min-height: 100vh;
    background-color: #fff
}

.discount>div {
    flex-basis: 50%
}

.contactForm {
    display: flex;
    flex-direction: column
}

.landing-sec {
    padding: 80px 0 0;
    background: linear-gradient(180deg, rgb(6 6 32 / .02), rgb(6 6 32 / .03))
}

.landing-inner {
    display: flex;
    gap: 36px;
    align-items: center;
    justify-content: flex-start
}

.landing-left {
    flex: 0 0 52%
}

.image-card {
    background: linear-gradient(180deg, rgb(255 255 255 / .02), rgb(255 255 255 / .01));
    border-radius: 18px;
    padding: 10px;
    box-shadow: 0 18px 40px rgb(13 18 40 / .08);
    border: 1px solid rgb(255 255 255 / .04)
}

.image-card .image-container {
    overflow: hidden;
    border-radius: 12px
}

.image-card .image-container img {
    width: 100%;
    display: block;
    object-fit: cover
}

.images-polits {
    margin-top: 12px;
    display: flex;
    justify-content: center
}

.images-polits ul {
    display: flex;
    gap: 8px
}

.images-polits li {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #cfcfcf;
    opacity: .9
}

.images-polits li.active {
    background: var(--gold);
    box-shadow: 0 6px 12px rgb(0 0 0 / .12)
}

.landing-right {
    flex: 0 0 36%;
    display: flex;
    align-items: center;
    justify-content: center
}

.brand-panel {
    background: rgb(255 255 255 / .02);
    border-radius: 16px;
    padding: 28px 22px;
    min-width: 260px;
    display: flex;
    gap: 16px;
    align-items: center;
    justify-content: flex-start;
    flex-direction: column;
    text-align: center;
    box-shadow: 0 20px 50px rgb(0 0 0 / .08)
}

.brand-logo img {
    width: 120px;
    height: 120px;
    object-fit: contain
}

.brand-heading {
    font-size: 2rem;
    color: var(--third);
    margin: 8px 0 4px
}

.brand-slogan {
    color: var(--secondaly);
    font-size: 1rem
}

@media (max-width:900px) {
    .landing-inner {
        flex-direction: column-reverse;
        gap: 20px
    }

    .landing-left,
    .landing-right {
        flex: 1 1 100%
    }

    .brand-panel {
        width: 100%
    }

    .image-card .image-container img {
        min-height: 260px
    }
}

@media(max-width:991px) {
    .discount {
        flex-direction: column
    }

    .discount>div:nth-of-type(2) {
        margin-top: 20px
    }
}

.discount .discount-text {
    position: relative;
    min-height: 100%;
    background-image: url(https://res.cloudinary.com/dfwi46xp5/image/upload/f_auto,q_auto/v1782041203/discount_1_ao7h9i.png);
    background-size: cover;
    text-align: center;
    padding: 100px 0;
    color: #fff
}

.discount .discount-text::before {
    content: '';
    position: absolute;
    height: 100%;
    width: 100%;
    top: 0;
    left: 0;
    background-color: rgb(23 135 224 / 97%)
}

.discount .discount-text .content {
    position: relative
}

.discount .discount-text h2 {
    font-size: 40px;
    letter-spacing: -2px
}

.discount .discount-text p {
    margin: 30px auto;
    line-height: 2;
    font-size: 18px;
    max-width: 500px;
    text-align: center
}

.discount .discount-text img {
    width: 300px;
    margin: 0 auto
}

.discount .discount-form {
    display: flex;
    justify-content: center;
    align-items: center;
    padding-bottom: 50px;
    flex-direction: column
}

.discount .discount-form h2 {
    font-size: 35px;
    margin-bottom: 30px
}

.discount .discount-form form input {
    margin: 0 auto;
    display: block;
    width: 300px;
    padding: 15px;
    margin-bottom: 20px;
    background-color: #f9f9f9;
    border: none;
    border-bottom: 1px solid #ccc;
    caret-color: #2196f3
}

.discount .discount-form form textarea {
    width: 300px;
    height: 200px;
    padding: 20px;
    background-color: #f9f9f9;
    border: none;
    border-bottom: 1px solid #ccc;
    margin-bottom: 30px;
    resize: none;
    caret-color: #2196f3
}

.discount .discount-form form input:focus,
.discount .discount-form form textarea:focus {
    outline: none
}

.discount .discount-form form input[type="submit"] {
    background-color: #2196f3;
    color: #fff;
    font-weight: 700;
    font-size: 22px;
    transition: 0.3s
}

.discount .discount-form form input[type="submit"]:hover {
    background-color: #1787e0
}

.discount #submit-button {
    background-color: #1e8be1;
    color: #fff;
    border-radius: 10px;
    border: none;
    padding: 15px
}

footer {
    padding-top: 100px;
    position: relative;
    background-color: #191919
}

@media (max-width:600px) {
    footer {
        padding-bottom: 100px
    }
}

footer .container {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 40px
}

footer .container .col-1 {
    display: flex;
    flex-direction: column;
    justify-content: center
}

@media(max-width:991px) {
    footer .container .col-1 {
        align-items: center
    }
}

footer .container .col-1 h1 img {
    width: 200px
}

footer .container .col-1 .social-icons {
    margin: 20px 0
}

footer .container .col-1 .social-icons i {
    background-color: #313131;
    color: #b9b9b9;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 50px;
    height: 50px;
    font-size: 20px;
    transition: 0.3s;
    margin-right: 10px
}

footer .container .col-1 .social-icons a:first-child i:hover {
    background-color: #1877F2
}

footer .container .col-1 .social-icons a:nth-of-type(2) i:hover {
    background-color: #1DA1F2
}

footer .container .col-1 .social-icons a:last-of-type i:hover {
    background-color: #CD201F
}

footer .container .col-1 p {
    line-height: 2;
    color: #9b9b9b
}

footer .container .col-2 a {
    display: block;
    color: #b9b9b9;
    padding: 15px;
    position: relative;
    transition: 0.3s
}

footer .container .col-2 a:hover {
    color: #fff
}

footer .container .col-2 a:not(:last-child) {
    border-bottom: 1px solid #444
}

footer .container .col-2 a::before {
    font-family: "Font Awesome 5 Free";
    font-display: swap;
    content: "\F101";
    font-weight: 900;
    margin-right: 10px;
    color: #2196f3;
    ;
    transition: 0.3s
}

footer .container .col-2 a:hover,
footer .container .col-2 a::before {
    transform: translateX(10px)
}

footer .col-3 .text {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 30px
}

footer .col-3 .text i {
    font-size: 25px;
    color: #2196f3;
    margin-right: 10px
}

footer .col-3 .text span {
    line-height: 2;
    color: #b9b9b9
}

footer .col-4 img {
    width: 78px;
    border: 3px solid #fff
}

footer p.copyrights {
    margin-top: 30px;
    padding: 20px;
    text-align: center;
    color: #fff;
    border-top: 1px solid #444
}

footer p.copyrights span {
    color: #2196f3;
    ;
    font-weight: 700
}

.login-section-disabled {
    display: none
}

.login-section-active {
    display: flex;
    width: 100%;
    height: 100vh;
    position: fixed;
    top: 0;
    left: 0;
    background-color: rgb(0 0 0 / .8);
    z-index: 9999
}

.overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgb(0 0 0 / .5);
    -webkit-backdrop-filter: blur(8px);
    backdrop-filter: blur(8px)
}

.login-card {
    background: rgb(255 255 255 / .05);
    -webkit-backdrop-filter: blur(12px);
    backdrop-filter: blur(12px);
    border: 1px solid rgb(255 255 255 / .1);
    border-radius: 16px;
    padding: 3rem;
    width: 350px;
    box-shadow: 0 4px 30px rgb(0 0 0 / .5);
    color: #fff;
    position: fixed;
    left: calc(50% - 175px);
    top: calc(50% - 161.5px);
    z-index: 1000
}

.login-card .login-header {
    display: flex;
    justify-content: space-between
}

.login-card .login-header .login-closer {
    font-size: 25px;
    display: flex;
    align-items: center;
    cursor: pointer
}

.login-card input {
    width: 100%;
    padding: 10px;
    margin-top: 5px;
    background: rgb(255 255 255 / .1);
    border: 1px solid rgb(255 255 255 / .2);
    border-radius: 8px;
    color: #fff;
    box-sizing: border-box
}

.login-card input::placeholder {
    color: #fff
}

button#login-button {
    width: 100%;
    padding: 12px;
    margin-top: 20px;
    background: #3b82f6;
    border: none;
    border-radius: 8px;
    color: #fff;
    font-weight: 700;
    cursor: pointer;
    transition: 0.3s
}

button#login-button:hover {
    background: #fff;
    color: #3b82f6
}

.admin-panel {
    padding: 20px;
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    align-content: center;
    justify-content: center;
    align-items: center;
    background-color: #f8f9fa
}

.admin-panel button.adminFinalSaveButton {
    width: 150px;
    padding: 10px;
    margin: 10px 0;
    background-color: #009688;
    border: none;
    border-radius: 8px;
    color: #fff;
    font-weight: 700;
    cursor: pointer;
    transition: 0.3s
}

.admin-panel button.adminFinalSaveButton:hover {
    background: #fff;
    color: #3b82f6
}

#logout-button {
    margin: 10px 30px;
    padding: 10px;
    background-color: #F44336;
    color: #fff;
    border-radius: 5px;
    border: 1px solid red;
    transition: 0.3s;
    cursor: pointer
}

#logout-button:hover {
    background-color: #fff;
    color: red
}

#Footer-json {
    width: 300px;
    padding: 20px;
    height: 250px
}

@media (max-width:600px) {
    .admin-panel {
        padding: 5px
    }
}

.sucess-toast {
    background-color: green;
    width: 300px;
    color: #fff;
    padding: 20px;
    text-align: center;
    font-size: 30px;
    position: fixed;
    top: calc(50% - 50px);
    left: calc(50% - 150px);
    border-radius: 15px;
    z-index: 10000
}

.failure-toast {
    background-color: red;
    color: #fff;
    padding: 20px;
    text-align: center;
    font-size: 30px;
    width: 300px;
    position: fixed;
    top: calc(50% - 50px);
    left: calc(50% - 150px);
    border-radius: 15px;
    z-index: 10000
}

.content-sections {
    padding-bottom: 100px
}

.hidden {
    display: none !important
}

form.addProductForm,
form.conditionAddingForm,
form.addMangementMember,
form.addEventForm,
form.addNewEventForm {
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    align-content: center;
    justify-content: center
}

form.addProductForm input,
form.conditionAddingForm input,
form.addMangementMember input,
form.addEventForm input,
form.addNewEventForm input {
    margin: 10px;
    padding: 10px;
    width: 200px;
    border-radius: 3px;
    border: 1px solid #ccc
}

form.addProductForm input:focus,
form.conditionAddingForm input:focus,
form.addMangementMember input:focus,
form.addEventForm input:focus,
form.addNewEventForm input:focus {
    border-color: #007BFF;
    outline: none
}

form.addProductForm input::placeholder,
form.conditionAddingForm input::placeholder,
form.addMangementMember::placeholder,
form.addEventForm input::placeholder,
form.addNewEventForm input::placeholder {
    color: #999
}

form.addProductForm textarea,
form.conditionAddingForm textarea,
form.addMangementMember textarea,
form.addEventForm textarea,
form.addNewEventForm textarea {
    margin: 10px;
    padding: 10px;
    width: 200px;
    height: 100px;
    border-radius: 3px;
    border: 1px solid #ccc
}

form.addProductForm label,
form.conditionAddingForm label,
form.addMangementMember label,
form.addEventForm label,
form.addNewEventForm label {
    margin: 10px;
    padding: 10px;
    width: 200px;
    text-align: left
}

form.addEventForm label {
    display: flex;
    align-items: center;
    flex-direction: row-reverse
}

form.addEventForm .word-counter,
form.addNewEventForm .word-counter {
    margin: 0 10px 8px;
    padding: 0 10px;
    width: 200px;
    font-size: 13px;
    color: #4b5563;
    text-align: right
}

form.addEventForm .word-counter.over-limit,
form.addNewEventForm .word-counter.over-limit {
    color: #dc2626;
    font-weight: 600
}

form.addProductForm button,
form.conditionAddingForm button,
form.addMangementMember button,
form.addEventForm button,
form.addNewEventForm button {
    margin: 10px;
    padding: 10px;
    width: 100px;
    align-self: center;
    border: .5px solid #3F51B5;
    border-radius: 15px;
    background-color: #2196F3;
    color: #fff;
    cursor: pointer;
    transition: 0.5s
}

form.addProductForm button:hover,
form.conditionAddingForm button:hover,
form.addMangementMember button:hover,
form.addEventForm button:hover,
form.addNewEventForm button:hover {
    background-color: #0056b3
}

form.conditionV2Form {
    display: flex;
    flex-direction: column;
    gap: 10px;
    max-width: 560px;
    padding: 18px;
    border: 1px solid #e5e7eb;
    border-radius: 14px;
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
    box-shadow: 0 8px 24px rgb(15 23 42 / .06)
}

form.conditionV2Form h3 {
    margin: 0 0 4px;
    font-size: 1.1rem;
    color: #111827
}

form.conditionV2Form label {
    margin: 0;
    padding: 0;
    width: auto;
    font-size: .95rem;
    color: #374151
}

form.conditionV2Form input,
form.conditionV2Form textarea {
    margin: 0;
    padding: 10px 12px;
    width: 100%;
    border-radius: 10px;
    border: 1px solid #d1d5db;
    box-sizing: border-box;
    background: #fff
}

form.conditionV2Form input:focus,
form.conditionV2Form textarea:focus {
    border-color: #3b82f6;
    box-shadow: 0 0 0 3px rgb(59 130 246 / .12);
    outline: none
}

form.conditionV2Form textarea {
    min-height: 110px;
    resize: vertical
}

form.conditionV2Form .wordcount {
    font-size: .9rem;
    color: #6b7280;
    align-self: flex-end
}

form.conditionV2Form .condV2Images {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin: 0
}

form.conditionV2Form .condV2ImageRow {
    display: flex;
    gap: 8px;
    align-items: center;
    padding: 10px;
    border: 1px solid #e5e7eb;
    border-radius: 10px;
    background: #f9fafb;
    flex-direction: column
}

form.conditionV2Form .condV2ImageRow input {
    margin: 0
}

form.conditionV2Form .condV2ImageRow input[type="url"] {
    flex: 1 1 auto
}

form.conditionV2Form .condV2ImageRow input[type="text"] {
    flex: 0 0 40px
}

form.conditionV2Form .condV2ImageRow .removeImageButton,
form.conditionV2Form .addImageButton,
form.conditionV2Form .submitConditionV2Button,
form.conditionV2Form .cancelFormButton {
    margin: 0;
    padding: 9px 12px;
    width: auto;
    align-self: center;
    border: none;
    border-radius: 999px;
    cursor: pointer;
    transition: 0.2s ease
}

form.conditionV2Form .addImageButton {
    background: #e0f2fe;
    color: #075985
}

form.conditionV2Form .addImageButton:hover {
    background: #bae6fd
}

form.conditionV2Form .removeImageButton {
    background: #fee2e2;
    color: #b91c1c
}

form.conditionV2Form .removeImageButton:hover {
    background: #fecaca
}

form.conditionV2Form .submitConditionV2Button {
    background: linear-gradient(135deg, #2563eb, #3b82f6);
    color: #fff
}

form.conditionV2Form .submitConditionV2Button:hover {
    background: linear-gradient(135deg, #1d4ed8, #2563eb)
}

form.conditionV2Form .cancelFormButton {
    background: #f3f4f6;
    color: #374151
}

form.conditionV2Form .cancelFormButton:hover {
    background: #e5e7eb
}

@media (max-width:640px) {
    form.conditionV2Form {
        padding: 14px
    }

    form.conditionV2Form .condV2ImageRow {
        flex-direction: column;
        align-items: stretch
    }

    form.conditionV2Form .condV2ImageRow input[type="text"] {
        flex: 1 1 auto
    }
}

.condition-v2-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
    gap: 12px;
    margin-top: 10px
}

.condition-v2-card {
    background: linear-gradient(135deg, #ffffff 0%, #f8fbff 100%);
    border: 1px solid #dbeafe;
    border-radius: 14px;
    padding: 12px;
    box-shadow: 0 8px 24px rgb(37 99 235 / .08);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    width: 900px
}

@media (max-width:1000px) {
    .condition-v2-card {
        width: 100%
    }
}

.condition-v2-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 28px rgb(37 99 235 / .12)
}

.condition-v2-card h2 {
    margin: 0 0 8px;
    font-size: 1rem;
    color: #1d4ed8;
    text-align: left
}

.condition-v2-card p,
.condition-v2-card time {
    margin: 0 0 8px;
    color: #475569;
    font-size: .94rem;
    line-height: 1.5
}

.condition-v2-card img {
    width: 100%;
    height: 240px;
    object-fit: cover;
    display: block;
    border-radius: 10px;
    border: 1px solid #e2e8f0
}

.condition-v2-card figure {
    margin: 8px 0 0
}

.condition-v2-card figcaption {
    font-size: .82rem;
    color: #64748b;
    margin-top: 4px
}

.condition-v2-meta {
    font-size: .95rem;
    color: #334155
}

.nav-bar {
    display: flex;
    justify-content: center;
    background-color: #f8f9fa;
    padding: 10px;
    border-bottom: 1px solid #dee2e6
}

.nav-btn {
    background: none;
    border: none;
    padding: 10px 20px;
    margin: 0 5px;
    cursor: pointer;
    font-size: 16px;
    border-radius: 5px;
    transition: background-color 0.3s
}

.nav-btn:hover {
    background-color: #e9ecef
}

.nav-btn.active {
    background-color: #007bff;
    color: #fff
}

.page-container {
    padding: 20px
}

.page {
    display: none
}

.page.active {
    display: flex;
    flex-direction: column;
    align-items: stretch
}

.forms-container {
    background: #fff;
    border: 1px solid #ccc;
    border-radius: 10px;
    padding: 20px;
    box-shadow: 0 0 10px rgb(0 0 0 / .1);
    width: 300px;
    margin: 10px
}

.management-section,
.event-section,
.new-event-section {
    margin-bottom: 20px
}

.management-list,
.event-list,
.new-event-list {
    list-style: none;
    padding: 0
}

.management-list li,
.event-list li,
.new-event-list li {
    display: flex;
    align-items: center;
    padding: 10px;
    border-bottom: 1px solid #eee
}

.management-list li button,
.event-list li button,
.new-event-list li button {
    margin-left: auto;
    background: #dc3545;
    color: #fff;
    border: none;
    padding: 5px 10px;
    border-radius: 3px;
    cursor: pointer
}

.management-list li button:hover,
.event-list li button:hover,
.new-event-list li button:hover {
    background: #c82333
}

.compCard {
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 15px;
    margin: 10px auto;
    background: #fff;
    box-shadow: 0 2px 4px rgb(0 0 0 / .1);
    display: flex;
    flex-direction: column;
    gap: 12px;
    width: min(100%, 760px);
    align-items: stretch;
    box-sizing: border-box
}

.compCard-content {
    display: flex;
    flex-direction: column;
    gap: 10px
}

.compCard-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 8px
}

.compCard-actions button,
.compCard button {
    margin: 0;
    padding: 8px 12px;
    background: #28a745;
    color: #fff;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    width: auto;
    min-width: 120px;
    text-align: center
}

.compCard-actions button:hover,
.compCard button:hover {
    background: #218838
}

.compCard li>button {
    padding: 5px;
    background: #F44336;
    margin: 5px 10px;
    border: 1px solid red;
    text-align: center;
    border-radius: 5px;
    color: #fff;
    cursor: pointer
}

.compCard li>button:hover {
    background: #c82333
}

.compCard ul {
    list-style: none;
    padding: 0;
    margin: 10px 0
}

.compCard h2 {
    text-align: center;
    padding: 0 10px;
    margin: 0
}

.compCard .conditions-section {
    display: none;
    padding: 12px;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    background: linear-gradient(135deg, #f8fbff 0%, #fefefe 100%);
    box-shadow: inset 0 1px 0 rgb(255 255 255 / .7)
}

.compCard .conditions-section .conditions-list,
.compCard .conditions-section .conditionsV2-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin: 0
}

.compCard .conditions-section li {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
    padding: 10px 12px;
    border-radius: 10px;
    background: #fff;
    border: 1px solid #e2e8f0;
    box-shadow: 0 4px 12px rgb(15 23 42 / .04)
}

.addProductButton {
    background: #007bff;
    color: #fff;
    border: none;
    padding: 10px 20px;
    border-radius: 5px;
    cursor: pointer;
    margin: 10px 0
}

.addProductButton:hover {
    background: #0056b3
}

.management-section button,
.event-section button,
.new-event-section button {
    background: #007bff;
    color: #fff;
    border: none;
    padding: 10px 20px;
    border-radius: 5px;
    cursor: pointer
}

.event-list li strong {
    margin-right: 10px
}

.event-list li button {
    margin-left: 10px
}

@media (max-width:600px) {
    .nav-bar {
        flex-direction: column
    }

    .event-list li {
        flex-direction: column;
        align-items: flex-start
    }

    .event-list li button {
        margin-left: 0;
        margin-top: 10px
    }

    .compCard {
        width: 100%;
        padding: 12px
    }

    .compCard-actions {
        flex-direction: column
    }

    .compCard-actions button,
    .compCard button {
        width: 100%
    }

    .page-container {
        padding: 10px
    }
}

.management-section,
.event-section,
.new-event-section {
    display: flex;
    flex-direction: column;
    align-items: stretch
}

.management-list h2,
.event-section h2,
.new-event-section h2 {
    text-align: center;
    margin: 10px 0
}

.management-filters {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    align-items: center;
    justify-content: center;
    padding: 12px 16px;
    background: linear-gradient(90deg, rgb(145 118 255 / .06), rgb(156 130 83 / .03));
    border-radius: 12px;
    box-shadow: 0 6px 18px rgb(16 17 60 / .06);
    margin: 12px 8px
}

.management-filter-btn {
    -webkit-appearance: none;
    appearance: none;
    border: 1px solid rgb(145 118 255 / .12);
    background: rgb(255 255 255 / .02);
    color: var(--second-color);
    padding: 8px 14px;
    border-radius: 999px;
    font-weight: 600;
    letter-spacing: .2px;
    cursor: pointer;
    transition: transform .18s ease, box-shadow .18s ease, background .18s ease, color .18s ease;
    -webkit-backdrop-filter: blur(4px);
    backdrop-filter: blur(4px);
    box-shadow: 0 2px 6px rgb(16 17 60 / .06)
}

.management-filter-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgb(16 17 60 / .12);
    border-color: rgb(145 118 255 / .22);
    color: var(--color);
    background: rgb(145 118 255 / .08)
}

.management-filter-btn:focus {
    outline: none;
    box-shadow: 0 0 0 4px rgb(145 118 255 / .08)
}

.management-filter-btn.active {
    background: linear-gradient(90deg, var(--color), var(--gold));
    color: #fff;
    border-color: #fff0;
    transform: translateY(-2px);
    box-shadow: 0 10px 28px rgb(145 118 255 / .18)
}

.management-swipe-hint {
    display: none
}

@media (max-width:600px) {
    .management-filters {
        justify-content: flex-start;
        padding: 10px
    }

    .management-filter-btn {
        padding: 7px 12px;
        font-size: .95rem
    }

    .management-swipe-hint {
        display: block !important;
        width: 100%;
        text-align: center;
        margin: 0 auto 12px;
        color: rgb(255 255 255 / .9);
        background: rgb(6 6 32 / .55);
        border: 1px solid rgb(255 255 255 / .18);
        border-radius: 999px;
        padding: 10px 14px;
        font-size: 12px;
        max-width: 380px;
        box-shadow: 0 6px 18px rgb(0 0 0 / .12)
    }
}

.management-section {
    width: 100%;
    padding: 28px 0 16px;
    box-sizing: border-box;
    background-color: #eee
}

.content-sections {
    padding-bottom: 100px
}

.management-header {
    display: flex;
    justify-content: center;
    margin-bottom: 16px
}

.management-title {
    text-align: center;
    max-width: 760px
}

.management-title h1 {
    margin: 0;
    font-size: clamp(2rem, 3vw, 2.6rem);
    color: var(--gold-second);
    line-height: 1.1
}

.management-title p {
    margin: 10px auto 0;
    color: rgb(255 255 255 / .88);
    font-size: 1rem;
    max-width: 520px;
    line-height: 1.6
}

@media (max-width:600px) {
    .management-title h1 {
        font-size: 1.8rem
    }

    .management-title p {
        font-size: .95rem
    }
}

.fixed-social {
    position: fixed;
    right: 20px;
    bottom: 20px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    z-index: 1200;
    pointer-events: none
}

.fixed-social__btn {
    pointer-events: auto;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    color: #fff;
    text-decoration: none;
    font-size: 18px;
    transition: transform .18s ease, box-shadow .18s ease, opacity .18s ease;
    box-shadow: 0 6px 20px rgb(16 17 60 / .12);
    -webkit-backdrop-filter: blur(6px);
    backdrop-filter: blur(6px)
}

.fixed-social__btn--facebook {
    background: linear-gradient(180deg, #3b5998, #2d4373)
}

.fixed-social__btn--instagram {
    background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285AEB 90%)
}

.fixed-social__btn:hover {
    transform: translateY(-4px) scale(1.04);
    box-shadow: 0 12px 34px rgb(16 17 60 / .18);
    opacity: .98
}

#gt_float_wrapper {
    z-index: 900 !important
}

@media (max-width:480px) {
    .fixed-social {
        right: 12px;
        bottom: 12px;
        gap: 10px
    }

    .fixed-social__btn {
        width: 44px;
        height: 44px;
        font-size: 16px
    }
}

@media (max-width:360px) {
    .fixed-social__btn {
        width: 38px;
        height: 38px;
        font-size: 14px
    }
}

@media (prefers-reduced-motion:reduce) {

    .fixed-social__btn,
    .management-filter-btn {
        transition: none
    }
}

/*! normalize.css v8.0.1 | MIT License | github.com/necolas/normalize.css */

html {
    line-height: 1.15
}

body {
    margin: 0
}

main {
    display: block
}

h1 {
    font-size: 2em;
    margin: .67em 0
}

hr {
    box-sizing: content-box;
    height: 0;
    overflow: visible
}

pre {
    font-family: monospace, monospace;
    font-display: swap;
    font-size: 1em
}

a {
    background-color: #fff0
}

abbr[title] {
    border-bottom: none;
    text-decoration: underline;
    text-decoration: underline dotted
}

b,
strong {
    font-weight: bolder
}

code,
kbd,
samp {
    font-family: monospace, monospace;
    font-display: swap;
    font-size: 1em
}

small {
    font-size: 80%
}

sub,
sup {
    font-size: 75%;
    line-height: 0;
    position: relative;
    vertical-align: baseline
}

sub {
    bottom: -.25em
}

sup {
    top: -.5em
}

img {
    border-style: none
}

button,
input,
optgroup,
select,
textarea {
    font-family: inherit;
    font-size: 100%;
    line-height: 1.15;
    margin: 0
}

button,
input {
    overflow: visible
}

button,
select {
    text-transform: none
}

button::-moz-focus-inner,
[type="button"]::-moz-focus-inner,
[type="reset"]::-moz-focus-inner,
[type="submit"]::-moz-focus-inner {
    border-style: none;
    padding: 0
}

button:-moz-focusring,
[type="button"]:-moz-focusring,
[type="reset"]:-moz-focusring,
[type="submit"]:-moz-focusring {
    outline: 1px dotted ButtonText
}

fieldset {
    padding: .35em .75em .625em
}

legend {
    box-sizing: border-box;
    color: inherit;
    display: table;
    max-width: 100%;
    padding: 0;
    white-space: normal
}

progress {
    vertical-align: baseline
}

textarea {
    overflow: auto
}

[type="checkbox"],
[type="radio"] {
    box-sizing: border-box;
    padding: 0
}

[type="number"]::-webkit-inner-spin-button,
[type="number"]::-webkit-outer-spin-button {
    height: auto
}

[type="search"] {
    outline-offset: -2px
}

[type="search"]::-webkit-search-decoration {
    -webkit-appearance: none
}

::-webkit-file-upload-button {
    -webkit-appearance: button;
    font: inherit
}

details {
    display: block
}

summary {
    display: list-item
}

template {
    display: none
}

[hidden] {
    display: none
}

* Swiper 14.0.2 * Most modern mobile touch slider and framework with hardware accelerated transitions * https: //swiperjs.com * * Copyright 2014-2026 Vladimir Kharlampidi * * Released under the MIT License * * Released on:July 7,2026 */:root{--swiper-theme-color:#007aff}:host{display:block;margin-left:auto;margin-right:auto;position:relative;z-index:1}.swiper{display:block;list-style:none;margin-left:auto;margin-right:auto;overflow:hidden;padding:0;position:relative;z-index:1}.swiper-vertical>.swiper-wrapper{flex-direction:column}.swiper-wrapper{box-sizing:initial;display:flex;height:100%;position:relative;transition-property:transform;transition-timing-function:var(--swiper-wrapper-transition-timing-function,initial);width:100%;z-index:1}.swiper-android .swiper-slide,.swiper-ios .swiper-slide,.swiper-wrapper{transform:translateZ(0)}.swiper-horizontal{touch-action:pan-y}.swiper-vertical{touch-action:pan-x}.swiper-slide{display:block;flex-shrink:0;height:100%;position:relative;transition-property:transform;width:100%}.swiper-slide-invisible-blank{visibility:hidden}.swiper-autoheight,.swiper-autoheight .swiper-slide{height:auto}.swiper-autoheight .swiper-wrapper{align-items:flex-start;transition-property:transform,height}.swiper-backface-hidden .swiper-slide{backface-visibility:hidden;transform:translateZ(0)}.swiper-3d.swiper-css-mode .swiper-wrapper{perspective:1200px}.swiper-3d .swiper-wrapper{transform-style:preserve-3d}.swiper-3d{perspective:1200px;.swiper-cube-shadow,.swiper-slide{transform-style:preserve-3d}}.swiper-css-mode{>.swiper-wrapper{overflow:auto;scrollbar-width:none;-ms-overflow-style:none;&::-webkit-scrollbar{display:none}}>.swiper-wrapper>.swiper-slide{scroll-snap-align:start start}&.swiper-horizontal{>.swiper-wrapper{scroll-snap-type:x mandatory}>.swiper-wrapper>.swiper-slide:first-child{margin-inline-start:var(--swiper-slides-offset-before);scroll-margin-inline-start:var(--swiper-slides-offset-before)}>.swiper-wrapper>.swiper-slide:last-child{margin-inline-end:var(--swiper-slides-offset-after)}}&.swiper-vertical{>.swiper-wrapper{scroll-snap-type:y mandatory}>.swiper-wrapper>.swiper-slide:first-child{margin-block-start:var(--swiper-slides-offset-before);scroll-margin-block-start:var(--swiper-slides-offset-before)}>.swiper-wrapper>.swiper-slide:last-child{margin-block-end:var(--swiper-slides-offset-after)}}&.swiper-free-mode{>.swiper-wrapper{scroll-snap-type:none}>.swiper-wrapper>.swiper-slide{scroll-snap-align:none}}&.swiper-centered{>.swiper-wrapper:before{content:"";flex-shrink:0;order:9999}>.swiper-wrapper>.swiper-slide{scroll-snap-align:center center;scroll-snap-stop:always}}&.swiper-centered.swiper-horizontal{>.swiper-wrapper>.swiper-slide:first-child{margin-inline-start:var(--swiper-centered-offset-before)}>.swiper-wrapper:before{height:100%;min-height:1px;width:var(--swiper-centered-offset-after)}}&.swiper-centered.swiper-vertical{>.swiper-wrapper>.swiper-slide:first-child{margin-block-start:var(--swiper-centered-offset-before)}>.swiper-wrapper:before{height:var(--swiper-centered-offset-after);min-width:1px;width:100%}}}.swiper-3d{.swiper-slide-shadow,.swiper-slide-shadow-bottom,.swiper-slide-shadow-left,.swiper-slide-shadow-right,.swiper-slide-shadow-top{height:100%;left:0;pointer-events:none;position:absolute;top:0;width:100%;z-index:10}.swiper-slide-shadow{background:#00000026}.swiper-slide-shadow-left{background-image:linear-gradient(270deg,#00000080,#0000)}.swiper-slide-shadow-right{background-image:linear-gradient(90deg,#00000080,#0000)}.swiper-slide-shadow-top{background-image:linear-gradient(0deg,#00000080,#0000)}.swiper-slide-shadow-bottom{background-image:linear-gradient(180deg,#00000080,#0000)}}.swiper-lazy-preloader{border:4px solid var(--swiper-preloader-color,var(--swiper-theme-color));border-radius:50%;border-top:4px solid #0000;box-sizing:border-box;height:42px;left:50%;margin-left:-21px;margin-top:-21px;position:absolute;top:50%;transform-origin:50%;width:42px;z-index:10}.swiper-watch-progress .swiper-slide-visible,.swiper:not(.swiper-watch-progress){.swiper-lazy-preloader{animation:swiper-preloader-spin 1s linear infinite}}.swiper-lazy-preloader-white{--swiper-preloader-color:#fff}.swiper-lazy-preloader-black{--swiper-preloader-color:#000}@keyframes swiper-preloader-spin{0%{transform:rotate(0deg)}to{transform:rotate(1turn)}}.swiper-virtual .swiper-slide{-webkit-backface-visibility:hidden;transform:translateZ(0)}.swiper-virtual.swiper-css-mode{.swiper-wrapper:after{content:"";left:0;pointer-events:none;position:absolute;top:0}}.swiper-virtual.swiper-css-mode.swiper-horizontal{.swiper-wrapper:after{height:1px;width:var(--swiper-virtual-size)}}.swiper-virtual.swiper-css-mode.swiper-vertical{.swiper-wrapper:after{height:var(--swiper-virtual-size);width:1px}}:root{--swiper-navigation-size:44px}.swiper-button-next,.swiper-button-prev{align-items:center;color:var(--swiper-navigation-color,var(--swiper-theme-color));cursor:pointer;display:flex;height:var(--swiper-navigation-size);justify-content:center;position:absolute;width:var(--swiper-navigation-size);z-index:10;&.swiper-button-disabled{cursor:auto;opacity:.35;pointer-events:none}&.swiper-button-hidden{cursor:auto;opacity:0;pointer-events:none}.swiper-navigation-disabled &{display:none!important}::slotted(svg),svg{height:100%;object-fit:contain;transform-origin:center;width:100%;fill:currentColor;pointer-events:none}}.swiper-button-lock{display:none}.swiper-button-next,.swiper-button-prev{margin-top:calc(0px - var(--swiper-navigation-size)/2);top:var(--swiper-navigation-top-offset,50%)}.swiper-button-prev{left:var(--swiper-navigation-sides-offset,4px);right:auto;.swiper-navigation-icon,::slotted(.swiper-navigation-icon){transform:rotate(180deg)}}.swiper-button-next{left:auto;right:var(--swiper-navigation-sides-offset,4px)}.swiper-horizontal{.swiper-button-next,.swiper-button-prev,~.swiper-button-next,~.swiper-button-prev{margin-left:0;margin-top:calc(0px - var(--swiper-navigation-size)/2);top:var(--swiper-navigation-top-offset,50%)}&.swiper-rtl .swiper-button-next,&.swiper-rtl~.swiper-button-next,&~.swiper-button-prev,.swiper-button-prev{left:var(--swiper-navigation-sides-offset,4px);right:auto}&.swiper-rtl .swiper-button-prev,&.swiper-rtl~.swiper-button-prev,&~.swiper-button-next,.swiper-button-next{left:auto;right:var(--swiper-navigation-sides-offset,4px)}&.swiper-rtl .swiper-button-next,&.swiper-rtl~.swiper-button-next,&~.swiper-button-prev,.swiper-button-prev{.swiper-navigation-icon,::slotted(.swiper-navigation-icon){transform:rotate(180deg)}}&.swiper-rtl .swiper-button-prev,&.swiper-rtl~.swiper-button-prev{.swiper-navigation-icon,::slotted(.swiper-navigation-icon){transform:rotate(0deg)}}}.swiper-vertical{.swiper-button-next,.swiper-button-prev,~.swiper-button-next,~.swiper-button-prev{left:var(--swiper-navigation-top-offset,50%);margin-left:calc(0px - var(--swiper-navigation-size)/2);margin-top:0;right:auto}.swiper-button-prev,~.swiper-button-prev{bottom:auto;top:var(--swiper-navigation-sides-offset,4px);.swiper-navigation-icon,::slotted(.swiper-navigation-icon){transform:rotate(-90deg)}}.swiper-button-next,~.swiper-button-next{bottom:var(--swiper-navigation-sides-offset,4px);top:auto;.swiper-navigation-icon,::slotted(.swiper-navigation-icon){transform:rotate(90deg)}}}.swiper-pagination{position:absolute;text-align:center;transform:translateZ(0);transition:opacity .3s;z-index:10;&.swiper-pagination-hidden{opacity:0}&.swiper-pagination-disabled,.swiper-pagination-disabled>&{display:none!important}}.swiper-horizontal>.swiper-pagination-bullets,.swiper-pagination-bullets.swiper-pagination-horizontal,.swiper-pagination-custom,.swiper-pagination-fraction{bottom:var(--swiper-pagination-bottom,8px);left:0;top:var(--swiper-pagination-top,auto);width:100%}.swiper-pagination-bullets-dynamic{font-size:0;overflow:hidden;.swiper-pagination-bullet{position:relative;transform:scale(.33)}.swiper-pagination-bullet-active,.swiper-pagination-bullet-active-main{transform:scale(1)}.swiper-pagination-bullet-active-prev{transform:scale(.66)}.swiper-pagination-bullet-active-prev-prev{transform:scale(.33)}.swiper-pagination-bullet-active-next{transform:scale(.66)}.swiper-pagination-bullet-active-next-next{transform:scale(.33)}}.swiper-pagination-bullet{background:var(--swiper-pagination-bullet-inactive-color,#000);border-radius:var(--swiper-pagination-bullet-border-radius,50%);display:inline-block;height:var(--swiper-pagination-bullet-height,var(--swiper-pagination-bullet-size,8px));opacity:var(--swiper-pagination-bullet-inactive-opacity,.2);width:var(--swiper-pagination-bullet-width,var(--swiper-pagination-bullet-size,8px));button&{appearance:none;border:none;box-shadow:none;margin:0;padding:0}.swiper-pagination-clickable &{cursor:pointer}&:only-child{display:none!important}}.swiper-pagination-bullet-active{background:var(--swiper-pagination-color,var(--swiper-theme-color));opacity:var(--swiper-pagination-bullet-opacity,1)}.swiper-pagination-vertical.swiper-pagination-bullets,.swiper-vertical>.swiper-pagination-bullets{left:var(--swiper-pagination-left,auto);right:var(--swiper-pagination-right,8px);top:50%;transform:translate3d(0,-50%,0);.swiper-pagination-bullet{display:block;margin:var(--swiper-pagination-bullet-vertical-gap,6px) 0}&.swiper-pagination-bullets-dynamic{top:50%;transform:translateY(-50%);width:8px;.swiper-pagination-bullet{display:inline-block;transition:transform .2s,top .2s}}}.swiper-horizontal>.swiper-pagination-bullets,.swiper-pagination-horizontal.swiper-pagination-bullets{.swiper-pagination-bullet{margin:0 var(--swiper-pagination-bullet-horizontal-gap,4px)}&.swiper-pagination-bullets-dynamic{left:50%;transform:translateX(-50%);white-space:nowrap;.swiper-pagination-bullet{transition:transform .2s,left .2s}}}.swiper-horizontal.swiper-rtl>.swiper-pagination-bullets-dynamic .swiper-pagination-bullet{transition:transform .2s,right .2s}.swiper-pagination-fraction{color:var(--swiper-pagination-fraction-color,inherit)}.swiper-pagination-progressbar{background:var(--swiper-pagination-progressbar-bg-color,#00000040);position:absolute;.swiper-pagination-progressbar-fill{background:var(--swiper-pagination-color,var(--swiper-theme-color));height:100%;left:0;position:absolute;top:0;transform:scale(0);transform-origin:left top;width:100%}.swiper-rtl & .swiper-pagination-progressbar-fill{transform-origin:right top}&.swiper-pagination-horizontal,&.swiper-pagination-vertical.swiper-pagination-progressbar-opposite,.swiper-horizontal>&,.swiper-vertical>&.swiper-pagination-progressbar-opposite{height:var(--swiper-pagination-progressbar-size,4px);left:0;top:0;width:100%}&.swiper-pagination-horizontal.swiper-pagination-progressbar-opposite,&.swiper-pagination-vertical,.swiper-horizontal>&.swiper-pagination-progressbar-opposite,.swiper-vertical>&{height:100%;left:0;top:0;width:var(--swiper-pagination-progressbar-size,4px)}}.swiper-pagination-lock{display:none}.swiper-scrollbar{background:var(--swiper-scrollbar-bg-color,#0000001a);border-radius:var(--swiper-scrollbar-border-radius,10px);position:relative;touch-action:none;&.swiper-scrollbar-disabled,.swiper-scrollbar-disabled>&{display:none!important}&.swiper-scrollbar-horizontal,.swiper-horizontal>&{bottom:var(--swiper-scrollbar-bottom,4px);height:var(--swiper-scrollbar-size,4px);left:var(--swiper-scrollbar-sides-offset,1%);position:absolute;top:var(--swiper-scrollbar-top,auto);width:calc(100% - var(--swiper-scrollbar-sides-offset, 1%)*2);z-index:50}&.swiper-scrollbar-vertical,.swiper-vertical>&{height:calc(100% - var(--swiper-scrollbar-sides-offset, 1%)*2);left:var(--swiper-scrollbar-left,auto);position:absolute;right:var(--swiper-scrollbar-right,4px);top:var(--swiper-scrollbar-sides-offset,1%);width:var(--swiper-scrollbar-size,4px);z-index:50}}.swiper-scrollbar-drag{background:var(--swiper-scrollbar-drag-bg-color,#00000080);border-radius:var(--swiper-scrollbar-border-radius,10px);height:100%;left:0;position:relative;top:0;width:100%}.swiper-scrollbar-cursor-drag{cursor:move}.swiper-scrollbar-lock{display:none}.swiper-zoom-container{align-items:center;display:flex;height:100%;justify-content:center;text-align:center;width:100%;>canvas,>img,>svg{max-height:100%;max-width:100%;object-fit:contain}}.swiper-slide-zoomed{cursor:move;touch-action:none}.swiper .swiper-notification{left:0;opacity:0;pointer-events:none;position:absolute;top:0;z-index:-1000}.swiper-free-mode>.swiper-wrapper{margin:0 auto;transition-timing-function:ease-out}.swiper-grid>.swiper-wrapper{flex-wrap:wrap}.swiper-grid-column>.swiper-wrapper{flex-direction:column;flex-wrap:wrap}.swiper-fade{&.swiper-free-mode{.swiper-slide{transition-timing-function:ease-out}}.swiper-slide{pointer-events:none;transition-property:opacity;.swiper-slide{pointer-events:none}}.swiper-slide-active{pointer-events:auto;& .swiper-slide-active{pointer-events:auto}}}.swiper.swiper-cube{overflow:visible}.swiper-cube{.swiper-slide{backface-visibility:hidden;height:100%;pointer-events:none;transform-origin:0 0;visibility:hidden;width:100%;z-index:1;.swiper-slide{pointer-events:none}}&.swiper-rtl .swiper-slide{transform-origin:100% 0}.swiper-slide-active{&,& .swiper-slide-active{pointer-events:auto}}.swiper-slide-active,.swiper-slide-next,.swiper-slide-prev{pointer-events:auto;visibility:visible}.swiper-cube-shadow{bottom:0;height:100%;left:0;opacity:.6;position:absolute;width:100%;z-index:0;&:before{background:#000;bottom:0;content:"";filter:blur(50px);left:0;position:absolute;right:0;top:0}}}.swiper-cube{.swiper-slide-next+.swiper-slide{pointer-events:auto;visibility:visible}}.swiper-cube{.swiper-slide-shadow-cube.swiper-slide-shadow-bottom,.swiper-slide-shadow-cube.swiper-slide-shadow-left,.swiper-slide-shadow-cube.swiper-slide-shadow-right,.swiper-slide-shadow-cube.swiper-slide-shadow-top{backface-visibility:hidden;z-index:0}}.swiper.swiper-flip{overflow:visible}.swiper-flip{.swiper-slide{backface-visibility:hidden;pointer-events:none;z-index:1;.swiper-slide{pointer-events:none}}.swiper-slide-active{&,& .swiper-slide-active{pointer-events:auto}}}.swiper-flip{.swiper-slide-shadow-flip.swiper-slide-shadow-bottom,.swiper-slide-shadow-flip.swiper-slide-shadow-left,.swiper-slide-shadow-flip.swiper-slide-shadow-right,.swiper-slide-shadow-flip.swiper-slide-shadow-top{backface-visibility:hidden;z-index:0}}.swiper-creative{.swiper-slide{backface-visibility:hidden;overflow:hidden;transition-property:transform,opacity,height}}.swiper.swiper-cards{overflow:visible}.swiper-cards{.swiper-slide{backface-visibility:hidden;overflow:hidden;transform-origin:center bottom}}