@import url('https://fonts.googleapis.com/css2?family=Montserrat+Alternates:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Roboto+Condensed:ital,wght@0,100..900;1,100..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Work+Sans:ital,wght@0,100..900;1,100..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Cherish&display=swap');

*{
    padding: 0;
    margin: 0;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

:root{
    --poppins-font: 'Montserrat', sans-serif;
    --transition: all 300ms ease-in-out;
    --brown-color: #464646;
    --gray-color: #e6e6e6;
    --dark-color: #000000;
    --white-color: #fff;
    /* --birch-color: #30fdff; */
    --birch-color: #bd3fce;
    --purple-color: #ad69fa;
    /* --glow-color: hsl(186 100% 69%); */
    --glow-color: #bd3fce;

    --family-cherish: "Cherish", cursive;
    /* --family-worksans:  "Work Sans", sans-serif; */
    --family-montserrat:  "Montserrat", Sans-serif;
    --family-montserrat2:  "Montserrat Alternates", Sans-serif;
}

.cherish{
    font-family: var(--family-cherish);
    font-weight: 500;
}
.montserrat{
    font-family: var(--family-montserrat);
}
.montserratAlternates{
    font-family: var(--family-montserrat2);
    font-weight: 500;
}
.worksans{
    font-family: var(--family-worksans);
}

html, body {
    scroll-behavior: smooth;
}

body {
    font-family: var(--poppins-font);
    font-size: 1.3rem;
    color: var(--white-color);
    background-color: var(--dark-color);
    font-family: "Roboto Condensed", sans-serif;
    font-optical-sizing: auto;
    height: auto;
    position: relative;
    overflow-x: hidden;
}

.isBlock {
    display: flex;
}

body:has(#rentWindow.isBlock) {
    overflow: hidden;
}

body:has(#cateWindow.isBlock) {
    overflow: hidden;
}

.no-scroll {
    overflow: hidden; /* Блокирует прокрутку */
    position: fixed; /* Фиксирует положение страницы */
    width: 100%; /* Убирает возможные горизонтальные смещения */
    height: 100vh; /* Устанавливает фиксированную высоту */
}


/* Global */

a{
    text-decoration: none;
    color: var(--birch-color);
}

ul{
    padding: 0;
    height: 0;
    list-style: none;
}

iframe.frameMap {
    filter: grayscale(100%);
}

*::-webkit-scrollbar {
    width: 12px;
}

*::-webkit-scrollbar-thumb {
    background-color: #8f35b6;
    border-left: 6px solid #742c8c;
    border-radius: 15px;
}

/* Fonts */

.fs-14{
    font-size: 14px;
}


.fs-16{
    font-size: 16px;
}

.fs-18{
    font-size: 18px;
}

.fs-20{
    font-size: 20px;
}

.fs-30{
    font-size: 30px;
}

.fs-40{
    font-size: 40px;
}

.fs-50{
    font-size: 50px;
}

.fs-60{
    font-size: 60px;
}

.fs-70{
    font-size: 70px;
}

.l-s-5{
    letter-spacing: 5px;
}


/* Another */

.p-r{
    position: relative;
}

.p-a{
    position: absolute;
}

.p-f{
    position: fixed;
}

.c-p{
    cursor: pointer;
}

/* Colors */

.birch{
    color: var(--birch-color);
}

.gray{
    color: var(--gray-color);
}

/* Margins */

.mt5{
    margin-top: 5px;
}

.mt10{
    margin-top: 10px;
}

.mt20{
    margin-top: 20px;
}

.mt25{
    margin-top: 25px;
}

.mt30{
    margin-top: 30px;
}

.mt50{
    margin-top: 50px;
}

.mt100{
    margin-top: 100px;
}

.mt150{
    margin-top: 150px;
}

.mt200{
    margin-top: 200px;
}

.t-20{
    top: 20px !important;
}

.mb20{
    margin-bottom: 20px;
}

.mr15{
    margin-right: 15px;
}

.mr10{
    margin-right: 10px;
}

.ml10{
    margin-left: 10px;
}

.ml20{
    margin-left: 20px;
}

.ml30{
    margin-left: 30px;
}

.mr30{
    margin-right: 30px;
}


.pb20{
    padding-bottom: 20px;
}

.t0{
    top: 0;
}

/* Flexbox */
.d-flx{
    display: flex;
}

.f-w-w{
    flex-wrap: wrap;
}

.f-d-r{
    flex-direction: row;
}

.f-d-c{
    flex-direction: column;
}

.j-c-c{
    justify-content: center;
}

.j-c-s-b{
    justify-content: space-between;
}

.j-c-s-a{
    justify-content: space-around;
}

.j-c-f-e{
    justify-content: flex-end;
}

.j-c-f-s{
    justify-content: flex-start;
}

.a-i-c{
    align-items: center;
}

.t-a-c{
    text-align: center;
}

.a-i-f-e{
    align-items: flex-end;
}

.a-i-f-s{
    align-items: flex-start;
}

/* Width & height */

.w-100{
    width: 100%;
}

.w-90{
    width: 90%;
}

.w-80{
    width: 80%;
}

.w-70{
    width: 70%;
}

.w-60{
    width: 60%;
}

.w-55{
    width: 55%;
}

.w-50{
    width: 50%;
}

.w-49{
    width: 49%;
}

.w-48{
    width: 48%;
}

.w-45{
    width: 45%;
}

.w-40{
    width: 40%;
}

.w-35{
    width: 35%;
}

.w-33{
    width: 33%;
}

.w-30{
    width: 30%;
}

.w-20{
    width: 20%;
}

.w-10{
    width: 10%;
}

.vw-10{
    width: 10vw !important;
}

.h-100{
    height: 100%;
}

/* Header */
header#header {
    z-index: 100;
    padding-top: 1.5rem;
    position: absolute;
    padding-bottom: 1.5rem;
    top: 0;
    width: 100%;
}

.logo_mains{
    text-align: center;
}

img.logo_main {
    width: 180px;
    position: relative;
    top: 15px;
}


span.cherish.fs-70.fw {
    /* box-shadow: 0px 14px 0px 0px #30fdffb0; */
    padding-bottom: 17px;
}

span.sw {
    color: #ffffff;
}

.item_language {
    cursor: pointer;
    border: 1px solid #fff;
    display: flex;
    justify-content: center;
    margin-right: 7px;
    width: 62px;
    height: 50px;
    align-items: center;
    transition: all 0.5s ease;
}

.item_language:hover{
    background-color: #fff;
    color: #000;
}

.item_language.activeLng {
    background-color: #0000003b;
    border: 1px solid #dd99e7;
}

.item_language.activeLng:hover{
    background-color: #fff;
    color: #000;
}

.glowing-btn {
    position: relative;
    color: var(--glow-color);
    cursor: pointer;
    padding: 0.35em 1em;
    border: 0.15em solid var(--glow-color);
    border-radius: 0.45em;
    background: none;
    perspective: 2em;
    font-family: "Raleway", sans-serif;
    font-size: 0.8em;
    font-weight: 900;
    letter-spacing: 0.8em;
  
    -webkit-box-shadow: inset 0px 0px 0.5em 0px var(--glow-color),
      0px 0px 0.5em 0px var(--glow-color);
    -moz-box-shadow: inset 0px 0px 0.5em 0px var(--glow-color),
      0px 0px 0.5em 0px var(--glow-color);
    box-shadow: inset 0px 0px 0.5em 0px var(--glow-color),
      0px 0px 0.5em 0px var(--glow-color);
    animation: border-flicker 2s linear infinite;
  }
  
  .glowing-txt {
    float: left;
    margin-right: -0.8em;
    -webkit-text-shadow: 0 0 0.125em hsl(0 0% 100% / 0.3),
      0 0 0.45em var(--glow-color);
    -moz-text-shadow: 0 0 0.125em hsl(0 0% 100% / 0.3),
      0 0 0.45em var(--glow-color);
    text-shadow: 0 0 0.125em hsl(0 0% 100% / 0.3), 0 0 0.45em var(--glow-color);
    animation: text-flicker 3s linear infinite;
  }
  
  .faulty-letter {
    opacity: 0.5;
    animation: faulty-flicker 2s linear infinite;
  }
  
  .glowing-btn::before {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    opacity: 0.7;
    filter: blur(1em);
    transform: translateY(120%) rotateX(95deg) scale(1, 0.35);
    background: var(--birch-color);
    pointer-events: none;
}
  
  .glowing-btn::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    opacity: 0;
    z-index: -1;
    background-color: var(--glow-color);
    box-shadow: 0 0 2em 0.2em var(--glow-color);
    transition: opacity 100ms linear;
  }
  
  .glowing-btn:hover {
    color: rgba(0, 0, 0, 0.8);
    text-shadow: none;
    animation: none;
  }
  
  .glowing-btn:hover .glowing-txt {
    animation: none;
  }
  
  .glowing-btn:hover .faulty-letter {
    animation: none;
    text-shadow: none;
    opacity: 1;
  }
  
  .glowing-btn:hover:before {
    filter: blur(1.5em);
    opacity: 1;
  }
  
  .glowing-btn:hover:after {
    opacity: 1;
  }
  
  @keyframes faulty-flicker {
    0% {
      opacity: 0.1;
    }
    2% {
      opacity: 0.1;
    }
    4% {
      opacity: 0.1;
    }
    19% {
      opacity: 0.5;
    }
    21% {
      opacity: 0.1;
    }
    23% {
      opacity: 1;
    }
    80% {
      opacity: 0.5;
    }
    83% {
      opacity: 0.4;
    }
  
    87% {
      opacity: 1;
    }
  }
  
  @keyframes text-flicker {
    0% {
      opacity: 0.1;
    }
  
    2% {
      opacity: 1;
    }
  
    8% {
      opacity: 0.1;
    }
  
    9% {
      opacity: 1;
    }
  
    12% {
      opacity: 0.1;
    }
    20% {
      opacity: 1;
    }
    25% {
      opacity: 0.3;
    }
    30% {
      opacity: 1;
    }
  
    70% {
      opacity: 0.7;
    }
    72% {
      opacity: 0.2;
    }
  
    77% {
      opacity: 0.9;
    }
    100% {
      opacity: 0.9;
    }
  }
  
  @keyframes border-flicker {
    0% {
      opacity: 0.1;
    }
    2% {
      opacity: 1;
    }
    4% {
      opacity: 0.1;
    }
  
    8% {
      opacity: 1;
    }
    70% {
      opacity: 0.7;
    }
    100% {
      opacity: 1;
    }
  }
  
  @media only screen and (max-width: 600px) {
    .glowing-btn{
      font-size: 1em;
    }
  }

/* MainSection */

main#main {
    width: 100%;
    top: 0;
    z-index: 99;
}

.video-bg {
    padding: 0;
    margin: 0;
    border: none;
    outline: 0;
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background-color: black;
    overflow: hidden;
}

.video-bg>video {
    object-fit: cover;
    object-position: center;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

ul.d-flx.a-i-c {
    height: auto;
}

.a-menu {
    position: relative;
    display: inline-flex;
    width: 171px;
    height: 50px;
    margin: 0 25px;
    perspective: 1000px;
    justify-content: center;
    border: 1px solid #ffffff;
    transition: all 0.5s ease;
    color: #fff;
    backdrop-filter: blur(35px);
    top: 0;
}

.a-menu:hover {
    border: 1px solid #ddd;
    background-color: #fff;
    color: #000;
    top: 5px; /* Плавный сдвиг вверх */
}


.social {
    position: absolute;
    bottom: 0;
    margin-left: 3px;
    font-size: 2.2rem;
}

.bx{
    transition: all 0.5s ease;
}



.bxl-instagram:hover {
    background-image: linear-gradient(45deg, 
          #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, 
          #bc1888 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent; /* Прозрачный цвет для включения градиента */
}


/* Main */

/* 1 Section */

section.mainSection {
    height: 100vh;
    position: relative;
}

img.hookah {
    position: absolute;
}

figure.video-overlay {
    z-index: 4455;
    position: absolute;
}

.main-text {
    width: auto;
    position: absolute;
    top: 29vh;
    display: flex;
    justify-content: center;
    text-align: center;
    z-index: 1;
    mix-blend-mode: overlay;
    font-size: 3.2rem;
    letter-spacing: 15px;
    left: 35px;
    right: 0;
    margin: 0 auto;
    font-weight: bold;
    align-items: center;
    font-family: 'swiper-icons';
}

.main-text.d-flx.f-d-c.a-i-c.j-c-c.cstmtop {
    top: 90vh;
    color: #ecececbd !important;
    mix-blend-mode: color-dodge;
    font-family: var(--family-worksans);
}

img.hookah {
    position: absolute;
    width: 50vh;
    top: 54%;
    left: 50%;
    transform: translate(-48%, -50%);
    z-index: 2;
    mix-blend-mode: soft-light;
}

img.hookah2 {
    position: absolute;
    width: 47vh;
    top: 62%;
    left: 50%;
    transform: translate(-49.8%, -50%);
    z-index: 3;
    mix-blend-mode: overlay;
}

.d-flx.f-d-c.bothBtn {
    position: absolute;
    display: flex;
    top: 60%;
    left: 50%;
    transform: translate(-49.8%, -50%);
    z-index: 3;
}

button.checkH {
    width: 300px;
    height: auto;
    font-size: 22px;
    padding: 15px 10px;
    border-radius: 4px;
    background-color: transparent;
    color: #ffffff;
    border: 3px solid #ffffff45;
    backdrop-filter: blur(35px);
    margin-top: 25px;
    cursor: pointer;
    box-shadow: 5px 6px 8px 3px #fafafa1f;
    position: relative;
    top: 0;
    transition: top 0.8s ease, box-shadow 0.8s ease, border 0.8s ease, background-color 0.8s ease, color 0.8s ease;
}

.checkH:hover {
    background-color: #17071b8a;
    color: #c0fef6;
    border: 3px solid transparent;
    box-shadow: 8px 8px 6px 2px #1e0f39c2;
}

.overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: linear-gradient(135deg, rgb(199 71 241 / 20%), rgb(44 180 187 / 40%));
    opacity: 0;
    transition: opacity 15s ease-in-out;
}

.overlay.active {
    opacity: 0.5;
}

.video-bg::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: linear-gradient(to bottom, transparent 50%, var(--dark-color) 96%);
    z-index: 1;
}

.spark-container {
    position: absolute;
    top: 31.5%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 50px;
    height: 50px;
}

.coal {
    width: 7px;
    height: 7px;
    background-color: darkgray; 
    border-radius: 20%;
    position: absolute;
    box-shadow: 0 0 5px 2px rgba(255, 0, 0, 0.7);
    animation: heatUp 20s forwards; 
}

.coal1 {
    top: 50%;
    left: 55%;
    transform: translate(-50%, -50%);
    height: 4px;
}

.coal2 {
    top: 50%;
    left: 73%;
    transform: translate(-50%, -50%);
    height: 4px;
}

.coal3 {
    top: 37%;
    left: 63.2%;
    transform: translate(-50%, -50%);
}


.coal::before, .coal::after {
    content: '';
    position: absolute;
    width: 3px;
    height: 3px;
    background-color: orange;
    border-radius: 50%;
    opacity: 0;
    animation: spark 1.5s infinite;
}

.coal::before {
    top: -10px;
    left: -3px;
    animation-delay: 0s;
}

.coal::after {
    top: -10px;
    left: 10px;
    animation-delay: 0.5s;
}


@keyframes heatUp {
    0% {
        opacity: 0;
        background-color: darkgray; /* Начальный цвет */
        box-shadow: 0 0 2px 1px rgba(50, 50, 50, 0.7); /* Тусклый уголь */
    }
    100% {
        opacity: 1;
        background-color: red; /* Финальный цвет */
        box-shadow: 0 0 5px 2px rgba(255, 0, 0, 0.7); /* Яркий уголь */
    }
}


@keyframes spark {
    0% {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
    100% {
        opacity: 0;
        transform: translateY(-20px) scale(0.5); /* Искорки летят вверх и уменьшаются */
    }
}




/* RentWindow */

.flip-out {
    transform: rotateY(90deg); /* Анимация поворота для скрытия */
    opacity: 0;
}

.flip-in {
    transform: rotateY(90deg);
    opacity: 0;
}

.show {
    transform: rotateY(0); /* Анимация появления */
    opacity: 1;
}
/* RentWindow */
.window {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    backface-visibility: hidden;
    transition: transform 0.8s ease, opacity 0.8s ease;
}

#rentWindow {
    display: none;
    z-index: 101;
    position: fixed;
    background-color: #000000e0;
}

.modifyTxt {
    width: 100%;
    text-align: center;
    font-size: 12px;
    color: #ddddddb0;
    font-family: sans-serif;
}

div#cateWindow{
    z-index: 101;
    position: fixed;
    background-color: #000000e8;
}

div#CheckOut{
    z-index: 101;
    position: fixed;
    background-color: #000000db;
}

.windowNew {
    position: relative;
    height: 75vh;
    padding: 25px 50px;
    border: 2px solid #ffffff;
    backdrop-filter: blur(20px);
    background-color: #000000db;
    border-radius: 7px;
    box-shadow: inset 0px 0px 16px 16px #f7baff1a;
    display: flex;
    flex-direction: row;
    overflow-y: auto;
    flex-wrap: wrap;
    align-content: flex-start;
    align-items: flex-start;
}

#btnCloud{
    display: none;
}

#btnCloud2{
    display: none;
}

.itemDelivery {
    color: #fff;
    background-color: #000;
    border: none;
    border-bottom: 2px solid #ddd;
    height: 40px;
    padding: 5px 10px;
    font-size: 18px;
    font-family: var(--family-montserrat);
    position: relative;
    width: 100%;
    appearance: none;
    cursor: pointer;
}

input[type="date"]::-webkit-calendar-picker-indicator {
    background: transparent;
    bottom: 0;
    color: transparent;
    cursor: pointer;
    height: auto;
    left: 0;
    position: absolute;
    right: 0;
    top: 0;
    width: auto;
}

input[type="time"]::-webkit-calendar-picker-indicator {
    display: block;
    top: 0;
    right: 0;
    height: 100%;
    width: 100%;
    position: absolute;
    background: transparent;
}

p#deliveryCost,#deliveryCost2 {
    font-size: 14px;
    color: #8b8b8b;
    position: relative;
    top: 3px;
}


input.submitCSTM {
    height: 40px;
    border: 1px solid #fff;
    background-color: #000;
    color: #fff;
    font-size: 18px;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    z-index: 1;
    text-align: center;
    border-bottom: 4px solid #f4a6ffb8;
}

button.submitCSTM {
    height: 40px;
    border: 1px solid #fff;
    background-color: #000;
    color: #fff;
    font-size: 18px;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    z-index: 1;
}


.afterDark::before {
    content: '';
    width: 100%;
    position: absolute;
    bottom: 0;
    left: 0;
    height: 0;
    background-color: var(--birch-color);
    opacity: 0.9; 
    z-index: -1;
    transition: height 0.5s ease;
}

.afterDark::after {
    content: '';
    width: 100%;
    position: absolute;
    bottom: 0;
    left: 0;
    height: 3px;
    background-color: var(--birch-color);
    z-index: 1;
    transition: bottom 0.3s ease;
}

.afterDark:hover::after {
    bottom: 100%;
}

.afterDark:hover::before {
    height: 100%;
}

.afterDark:hover {
    color: #fff;
}

button.decrement,.increment ,.decrement2,.increment2 ,.decrement3,.increment3{
    color: #fff;
    border: none;
    background-color: #bd3fce1a;
    cursor: pointer;
    border-radius: 20px;
}

span.centred {
    height: 40px;
    border: 1px solid #fff;
    background-color: #000;
    color: #fff;
    font-size: 18px;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

span.centred::before {
    content: '';
    width: 100%;
    position: absolute;
    bottom: 0;
    left: 0;
    height: 0;
    background-color: var(--birch-color);
    opacity: 0.9; 
    z-index: -1;
    transition: height 0.5s ease;
}

span.centred::after {
    content: '';
    width: 100%;
    position: absolute;
    bottom: 0;
    left: 0;
    height: 3px;
    background-color: var(--birch-color);
    z-index: 1;
    transition: bottom 0.3s ease;
}

span.centred:hover::after {
    bottom: 100%;
}

span.centred:hover::before {
    height: 100%;
}

span.centred:hover {
    color: #fff;
}

div .btn-crypto:focus, div .btn-crypto:focus>.centred, div .btn-crypto:hover, div .btn-crypto:hover>.centred {
    border-radius: 0!important;
}

span.centred > img {
    display: none;
}


.range-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 20px;
}

.labels {
    display: flex;
    justify-content: space-between;
    width: 100%;
}

input[type="range"] {
    -webkit-appearance: none;
    width: 100%;
    background: #ffffff;
    border-radius: 5px;
}

/* Стили для дорожки ползунка */
input[type="range"]::-webkit-slider-runnable-track {
    height: 8px; /* Высота дорожки */
    background: #e0e0e0; /* Цвет дорожки */
    border-radius: 4px; /* Скругление углов */
}

/* Стили для выбранной части ползунка */
input[type="range"]::-webkit-slider-runnable-track {
    background: linear-gradient(to right, #bd3fce 0%, #bd3fce calc((var(--value) - 1) * 50%), #e0e0e0 calc((var(--value) - 1) * 50%), #e0e0e0 100%);
}

/* Стили для ползунка */
input[type="range"]::-webkit-slider-thumb {
    -webkit-appearance: none; /* Убирает стандартный вид */
    appearance: none; /* Убирает стандартный вид */
    width: 20px; /* Ширина ползунка */
    height: 20px; /* Высота ползунка */
    background: #bd3fce; /* Цвет ползунка */
    border-radius: 50%; /* Скругление ползунка */
    cursor: pointer; /* Курсор при наведении */
    margin-top: -6px; /* Центрирование ползунка по вертикали */
}

/* Дополнительные стили для Firefox */
input[type="range"]::-moz-range-thumb {
    width: 20px;
    height: 20px;
    background: #bd3fce;
    border-radius: 50%;
    cursor: pointer;
}

input[type="range"]::-moz-range-track {
    height: 8px; /* Высота дорожки */
    background: #e0e0e0; /* Цвет дорожки */
    border-radius: 4px; /* Скругление углов */
}

/* Дополнительные стили для Internet Explorer */
input[type="range"]::-ms-thumb {
    width: 20px;
    height: 20px;
    background: #bd3fce;
    border-radius: 50%;
    cursor: pointer;
}

input[type="range"]::-ms-track {
    height: 8px; /* Высота дорожки */
    background: #e0e0e0; /* Цвет дорожки */
    border-radius: 4px; /* Скругление углов */
    border: none;
    color: transparent; /* Убирает цвет дорожки */
}

/* Скрываем стандартную радио-кнопку */
.hidden-radio {
    position: absolute;
    opacity: 0;
    cursor: pointer;
}

/* Стиль для кастомного радио-кнопки */
.radio-label {
    display: inline-block;
    width: 24px;
    height: 24px;
    background-color: #000; /* Черный фон */
    border-radius: 4px;
    position: relative;
    cursor: pointer;
    border: 1px solid #fff;
}

/* Галочка */
.radio-label::after {
    content: "";
    position: absolute;
    width: 6px;
    height: 12px;
    border: solid #fff; /* Белая галочка */
    border-width: 0 3px 3px 0;
    transform: rotate(45deg);
    top: 4px;
    left: 8px;
    opacity: 0; /* Скрываем галочку по умолчанию */
    transition: opacity 0.2s ease;
}

/* Когда радио-кнопка выбрана, показываем галочку */
.hidden-radio:checked + .radio-label::after {
    opacity: 1;
}

/* Добавляем эффект нажатия */
.radio-label:hover {
    background-color: #333; /* Легкое затемнение при наведении */
}


.msa{
    margin-left: 10px;
}

#number {
    -moz-appearance: textfield;
    -webkit-appearance: none;
    appearance: none; 
}

#number::-webkit-inner-spin-button, 
#number::-webkit-outer-spin-button {
    -webkit-appearance: none;
    margin: 0;
}


@media (min-width: 1024px) and (max-width: 1540px) {
    .cherish.fs-40.wordRent {
        display: none; /* Скрывает элемент */
    }
}

.closeWindow, .closeCheckOut {
    position: absolute;
    left: 10px;
    top: 10px;
    opacity: 0.5;
    background-color: #ffffff;
    padding: 3px;
    padding-bottom: 0px;
    border-radius: 5px;
    cursor: pointer;
}

i.bx.bx-arrow-back {
    color: #000000;
}
i.bx.bx-arrow-back:hover {
    color: #8e329a;
}

/* 2 Section */

section.secondSection {
    position: relative;
    height: 100%;
    margin-top: 120px;
    margin-bottom: 120px;
}

canvas{ 
    display: block; 
    vertical-align: bottom;
}
  
/* ---- particles.js container ---- */ 
#particles-js{ 
    position:absolute; 
    width: 100%; 
    height: 98%; 
} 

img.imgv2 {
    z-index: 1;
    width: 24vw;
    border: 2px solid #ffffff;
    box-shadow: 0px 0px 13px 1px #30fdff94;
}

h5.worksans {
    letter-spacing: 2px;
    /* font-variant: all-petite-caps; */
    background-color: #00000070;
    padding: 10px;
}

img.smokeLeft {
    z-index: -1;
    position: absolute;
    top: -90px;
    left: 0;
    width: 17vw;
}

img.smokeRight {
    z-index: -1;
    position: absolute;
    bottom: 150px;
    right: 0;
    width: 17vw;
}

.cla.aos-init.aos-animate {
    display: flex;
}

.bannerCntr {
    align-items: flex-start;
    padding-left: 50px;
    width: 90%;
    margin-top: 150px;
    background-image: url('../img/BannerHook.png');
    height: 300px;
    background-position: top center;
    background-repeat: no-repeat;
    background-size: cover;
    border: 2px solid #ffffff;
    box-shadow: 0px 0px 13px 1px #30fdff94;
}

/* 3 Section */

section#price {
    position: relative;
    padding-top: 100px;
    padding-bottom: 100px;
    background-image: url("../img/thirdSection.png");
    background-attachment: fixed;
    background-size: cover; 
    background-position: center;
    z-index: 1; 
}

section#price::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.704); 
    z-index: -1; 
}

.sdf {
    border: 2px solid var(--birch-color);
    padding: 35px 45px;
    margin: 10px;
    background-color: #000;
}

.line-birch {
    max-width: 45px;
    margin-right: 0;
    border: 1px solid var(--birch-color);
    height: 1px;
}


.bottom-item.mt20.t-a-c {
    color: #ddddddc7;
    font-size: 16px;
}

.item.ml10.w-33 {
    display: flex;
    justify-content: flex-end;
}

.item.ml30.w-33 {
    display: flex;
    justify-content: flex-end;
}


.pimg:hover {
    box-shadow: 5px 4px 7px 0px #218c8d;
    transition: all 0.5s ease-in;
}

/* 4 Section */

.four {
    position: relative;
    height: 100%;
    padding-top: 4rem;
    padding-bottom: 6rem;
    background: linear-gradient(135deg, rgb(1 13 13), rgb(18 4 19));
}

.swiper-button-next, .swiper-button-prev {
    top: var(--swiper-navigation-top-offset,94%) !important;
    color: #fff !important;
}

.swiper-pagination-bullet{
    background: #ffffff !important;
}

.swiper-button-next ,.swiper-button-prev{
    color: var(--birch-color) !important;
}

.container {
    /* max-width: 1400px; */
    max-width: 90%;
    margin: 0 auto;
}

.testimonial-group h2 {
    text-align: center;
    margin-bottom: 50px;
}

.testimonial-group .slider-wraapper {
    border-radius: 16px;
    padding: 30px 25px;
    border: 1px solid gray;
    backdrop-filter: blur(15px);
}

.testimonial-group .slider-wraapper h5 {
    font-size: 20px;
    text-align: end;
}

.testimonial-group .mySwiper {
    padding-bottom: 90px;
}

.testimonial-group .mySwiper .swiper-button-next:after,
.testimonial-group .mySwiper .swiper-button-prev:after {
    font-size: 25px;
    line-height: 1;
}

.swiper-button-next,
.swiper-button-prev {
    bottom: -7px;
    top: auto;
    color: gray;
}

.testimonial-group .mySwiper .swiper-button-next {
    right: 40%;
}

.testimonial-group .mySwiper .swiper-button-prev {
    left: 40%;
}
  
@media only screen and (max-width: 991.98px) {
    .testimonial-group .mySwiper .swiper-button-next {
      right: 20%;
    }
    .testimonial-group .mySwiper .swiper-button-prev {
      left: 20%;
    }
}
  
.nameFeedback{
    color: var(--birch-color);
}


/* 5 Section */

section#five {
    background-color: #000000;
}

img.xFive.w-33 {
    height: 300px;
    object-fit: cover;
    filter: brightness(0.8);
    margin-top: 5px;
    opacity: 0.8;
    transition: all 0.5s ease-in;
}

img.xFive.w-33:hover{
    opacity: 1;
}

/* Footer */

footer#footer {
    height: 80px;
    border-top: 1px solid var(--birch-color);
    background: linear-gradient(135deg, rgb(1 13 13), rgb(18 4 19));
}

/* 6 Section */

.six{
    padding-top: 100px;
    padding-bottom: 100px;
}

.item.info.w-50 {
    height: 10vh;
    display: flex;
    align-items: center;
    cursor: pointer;
}

i.bx.bxs-phone,.bxs-message-rounded,.bxl-instagram-alt,.bxl-telegram.custombxtg {
    font-size: 2.2rem;
    background-color: #bd3fce;
    padding: 10px 10px;
    border-radius: 50%;
    color: #e2acf7;
}

/* Another */

h1.cherish.birch.fs-50.l-s-5.dxf3e {
    font-family: 'Montserrat Alternates';
}

.mcui-checkbox, .mcui-radio {
    display: flex;
    align-items: center;
    user-select: none;
    padding: 0.6em 0;
    box-sizing: border-box;
}
.mcui-checkbox input[type="checkbox"], .mcui-radio input[type="checkbox"], .mcui-checkbox input[type="radio"], .mcui-radio input[type="radio"] {
    position: absolute !important;
    height: 1px;
    width: 1px;
    overflow: hidden;
    clip: rect(1px, 1px, 1px, 1px);
}
.mcui-checkbox input[type="checkbox"] + div, .mcui-radio input[type="checkbox"] + div, .mcui-checkbox input[type="radio"] + div, .mcui-radio input[type="radio"] + div {
    border: 2px solid #8d9aa9;
    height: 1.5em;
    width: 1.5em;
    box-sizing: border-box;
    border-radius: 2px;
    position: relative;
}
.mcui-checkbox input[type="checkbox"] ~ div:last-child, .mcui-radio input[type="checkbox"] ~ div:last-child, .mcui-checkbox input[type="radio"] ~ div:last-child, .mcui-radio input[type="radio"] ~ div:last-child {
    padding-left: 0.5em;
}
.mcui-checkbox input[type="radio"] + div, .mcui-radio input[type="radio"] + div {
    border-radius: 50%;
}
.mcui-checkbox input[type="radio"] + div::after, .mcui-radio input[type="radio"] + div::after {
    content: "";
    position: absolute;
    left: 25%;
    top: 25%;
    width: 50%;
    height: 50%;
    border-radius: 50%;
    transform: scale(0.5);
    opacity: 0;
    background: black;
    transition: all 107ms cubic-bezier(0.65, 0.25, 0.56, 0.96);
}
.mcui-checkbox input[type="checkbox"]:focus + div, .mcui-radio input[type="checkbox"]:focus + div, .mcui-checkbox input[type="radio"]:focus + div, .mcui-radio input[type="radio"]:focus + div, .mcui-checkbox input[type="checkbox"]:active + div, .mcui-radio input[type="checkbox"]:active + div, .mcui-checkbox input[type="radio"]:active + div, .mcui-radio input[type="radio"]:active + div {
    outline: 2px dashed #8d9aa9;
    outline-offset: 2px;
}
.mcui-checkbox input[type="checkbox"]:checked + div, .mcui-radio input[type="checkbox"]:checked + div {
    border-color: black;
    transition: border-color 107ms cubic-bezier(0.65, 0.25, 0.56, 0.96);
}
.mcui-checkbox input[type="checkbox"]:checked + div .mcui-check, .mcui-radio input[type="checkbox"]:checked + div .mcui-check {
    opacity: 1;
    transition: opacity 107ms cubic-bezier(0.65, 0.25, 0.56, 0.96);
}
.mcui-checkbox input[type="checkbox"]:checked + div .mcui-check polyline, .mcui-radio input[type="checkbox"]:checked + div .mcui-check polyline {
    animation: dash-check 107ms cubic-bezier(0.65, 0.25, 0.56, 0.96) forwards;
}
.mcui-checkbox input[type="radio"]:checked + div, .mcui-radio input[type="radio"]:checked + div {
    border-color: black;
}
.mcui-checkbox input[type="radio"]:checked + div::after, .mcui-radio input[type="radio"]:checked + div::after {
    opacity: 1;
    transform: scale(1);
}
.mcui-checkbox input[type="checkbox"]:indeterminate + div::after, .mcui-radio input[type="checkbox"]:indeterminate + div::after {
    content: "";
    height: 4px;
    width: 60%;
    left: 20%;
    top: calc(50% - 2px);
    position: absolute;
    background: #8d9aa9;
    border-radius: 1px;
}
.mcui-checkbox input[type="checkbox"]:disabled ~ div, .mcui-radio input[type="checkbox"]:disabled ~ div, .mcui-checkbox input[type="radio"]:disabled ~ div, .mcui-radio input[type="radio"]:disabled ~ div {
    color: #8d9aa9;
    cursor: not-allowed;
}
.mcui-checkbox input[type="checkbox"]:enabled ~ div, .mcui-radio input[type="checkbox"]:enabled ~ div, .mcui-checkbox input[type="radio"]:enabled ~ div, .mcui-radio input[type="radio"]:enabled ~ div {
    cursor: default;
}
.mcui-check {
    height: 100%;
    width: 100%;
    transform: scale(1);
    color: #fff;
    opacity: 0;
}
.mcui-check polyline {
    fill: none;
    transform-origin: 50% 50%;
    stroke-width: 5px;
    stroke-dasharray: 22.7713679002;
    stroke: currentcolor;
}
@supports (display: grid) {
    .mcui-check polyline {
        stroke-dashoffset: 22.7713679002;
   }
}
@keyframes dash-check {
    to {
        stroke-dashoffset: 0;
   }
}

#newCheck{
    display: none;
}



.d-flx.f-d-c.j-c-c.pizda {
    margin-bottom: 35px;
    border: 1px solid #b23bc2ba;
    padding: 25px;
    box-shadow: 8px 6px 3px 1px #8d34b338;
}


/* Mobile */

/* @media (min-width: 600px) and (max-width: 1000px) {
    .ddn{
        display: none !important;
    }
    iframe.frameMap{
        display: none;
    }
} */

@media (max-width: 1000px) {
    

    .ddn{
        display: none !important;
    }

    .l5{
        left: 5px;
    }

    .social {
        display: none;
    }

    .w-35 {
        width: 95%;
    }

    .d-flx.f-d-r.j-c-c {
        flex-direction: column;
        display: flex;
        align-items: center;
    }

    .social {
        position: relative;
        margin-top: 40px;
    }
    
    img.imgv2 {
        z-index: 1;
        width: 50vw;
        border: 2px solid #ffffff;
        box-shadow: 0px 0px 13px 1px #30fdff94;
        margin-bottom: 50px;
        margin-top: 50px;
    }

    button.checkH.mch {
        position: relative;
        padding-left: 0;
        left: 0;
        width: 96%;
    }

    .bannerCntr {
        align-items: flex-start;
        padding-left: 20px;
        width: 90%;
        margin-top: 80px;
        background-image: url('../img/BannerHook.png');
        height: 100%;
        padding-bottom: 50px;
        padding-top: 50px;
        background-position: top center;
        background-repeat: no-repeat;
        background-size: cover;
        border: 2px solid #ffffff;
        box-shadow: 0px 0px 13px 1px #30fdff94;
    }

    .d-flx.j-c-s-a.f-d-r.a-i-c.w-80.mt50 {
        display: flex;
        flex-direction: column;
    }

    .d-flx.f-d-r.f-w-w.j-c-s-b {
        display: flex;
        flex-direction: column;
    }

    .d-flx.j-c-s-b {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
    }

    .right-item.w-45.sdf {
        margin-top: 30px;
    }

    .top-item.d-flx.j-c-s-b.a-i-c.mt25 {
        display: flex;
        align-items: flex-start;
    }

    footer#footer {
        height: 130px;
        border-top: 1px solid var(--birch-color);
        background: linear-gradient(135deg, rgb(1 13 13), rgb(18 4 19));
    }

    img.smokeLeft {
        z-index: -1;
        position: absolute;
        top: -90px;
        left: 0;
        width: 27vw;
    }

    section.secondSection {
        position: relative;
        height: 100%;
        margin-top: 85px;
        margin-bottom: 85px;
    }

    .d-flx.f-d-r.j-c-s-b.itemDelivery.mt10 {
        display: flex;
        flex-direction: row;
        align-items: center;
    }

    form.inner-wrapper.d-flx.j-c-s-b.a-i-c.w-50.f-d-r.f-w-w.windowNew {
        display: flex;
        flex-direction: row-reverse;
        background-color: #000;
    }

    button.increment.w-20,button.decrement.w-20 {
        font-size: 22px;
    }

    .mt200 {
        margin-top: 85px;
    }

    .item.d-flx.w-45.f-d-c.j-c-s-b.minecraft {
        display: flex;
        align-items: flex-start;
        width: 90%;
    }

    .d-flx.f-d-r.f-w-w.j-c-s-b {
        display: flex;
        flex-direction: row-reverse;
    }

    .email{
        display: none;
    }

    .top-item.d-flx.j-c-s-b.a-i-c {
        display: flex;
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
    }

    .inner-wrapper.d-flx.j-c-s-b.a-i-c.w-50.f-d-r.f-w-w.windowNew {
        padding-top: 35px;
        padding-bottom: 35px;
    }

    .item {
        margin-left: 10px;
    }

    .d-flx.j-c-s-b.a-i-c.mt25 {
        margin-bottom: 10px;
    }

    .main-text.d-flx.f-d-c.a-i-c.j-c-c.cstmtop {
        top: 88.3vh;
    }

    .montserrat {
        font-family: var(--family-montserrat);
        text-align: center;
    }

    .montserrat.fs-16{
        font-family: var(--family-montserrat);
        text-align: center;
        font-size: 22px;
        font-family: 'Roboto Condensed';
        margin-top: 10px;
    }

    button.submitCSTM {
        height: 50px;
        border: 1px solid #fff;
        background-color: #000;
        color: #fff;
        font-size: 22px;
        padding: 10px;
        cursor: pointer;
        position: relative;
        overflow: hidden;
        z-index: 1;
    }

    .d-flx.a-i-c.j-c-s-b.w-80.montserrat.fs-18.sdfas {
        display: flex;
        align-items: center;
    }

    .spark-container {
        position: absolute;
        top: 34%;
        left: 49.8%;
        transform: translate(-50%, -50%);
        width: 50px;
        height: 50px;
    }

    .cla {
        position: absolute;
        top: 7px;
        right: 7px;
        display: flex;
        flex-direction: column;
    }

    .item_language {
        margin-top: 9px;
    }

    .item_language {
        margin-top: 9px;
        height: 35px;
        width: 40px;
        font-size: 14px;
    }

    i.bx.bxl-telegram.fs-normal.c-p ,i.bx.bxl-whatsapp.c-p,i.bx.bxl-instagram.c-p{
        color: #f7c6ffde;
    }

    /* .cstmWind{
        display: flex;
        align-content: center;
        padding-bottom: 35px;
    } */

    img.hookah {
        position: absolute;
        width: 45vh;
        top: 54%;
        left: 50%;
        transform: translate(-48%, -50%);
        z-index: 2;
        mix-blend-mode: soft-light;
    }

    h1.cherish.fs-40.wordRent {
        position: relative;
        bottom: -5px;
    }

    #rentWindow {
        display: none;
        z-index: 101;
        position: relative;
        background-color: #000000;
        height: 100%;
        position: relative;
    }

    .containerQ{
        width: 90% !important;
    }
    

    .windowNew {
        position: relative;
        top: 15px;
        height: 10%;
        padding: 15px 50px;
        border: 2px solid #ffffff;
        backdrop-filter: blur(20px);
        background-color: #49117542;
        border-radius: 7px;
        box-shadow: inset 0px 0px 16px 16px #f7baff1a;
        display: flex;
        flex-direction: row;
        overflow-y: auto;
        flex-wrap: wrap;
        align-content: flex-start;
        align-items: flex-start;
    }

    div#CheckOut {
        z-index: 101;
        position: relative;
    }

    div#cateWindow {
        z-index: 101;
        position: fixed;
        background-color: #000000f8;
    }
    h1.cherish.fs-40.wordRent {
        position: relative;
        bottom: 0px;
    }


    .d-flx.f-d-c.mt30 {
        padding-bottom: 50px;
    }

    .windowNew {
        position: fixed;
        top: 35px;
        height: 83vh;
        padding: 15px 50px;
        border: 2px solid #ffffff;
        backdrop-filter: blur(20px);
        background-color: #040404f0;
        border-radius: 7px;
        box-shadow: inset 0px 0px 16px 16px #f7baff1a;
        display: flex;
        flex-direction: row;
        overflow-y: auto;
        flex-wrap: wrap;
        align-content: flex-start;
        align-items: flex-start;
    }

    img.pimg.w-48 {
        display: none;
    }

    .w-80.d-flx.a-i-c.j-c-s-b.dsfd {
        display: flex;
        align-items: center;
    }

    iframe {
        width: 95%;
    }

    h5.worksans.fs-18 {
        text-align: center;
    }

    .line-birch {
        width: 8%;
        margin-right: 12px;
    }

    .sdf {
        border: 2px solid var(--birch-color);
        padding: 31px 22px;
        margin: 10px;
        background-color: #000;
    }
    
    .vw-10 {
        width: 16vw !important;
    }

    .w-48 {
        width: 100%;
    }

    .w-80 {
        width: 90%;
    }

    .w-60 {
        width: 90%;
    }

    .w-50{
        width: 95%;
    }

    .w-45 {
        width: 108%;
    }

    .w-40{
        width: 95%;
    }
}





















/* voprosi */
/* only for presentation purposes */


  
  .containerQ{
    max-width: 40em;
    margin: 100px auto;
  }
  
  /* main level */
  .ac-label {
    font-weight: 700;
    position: relative;
    padding: 0.5em 1em;
    margin-bottom: 0.5em;
    display: block;
    cursor: pointer;
    background-color: #6a267687;
    transition: background-color 0.15s ease-in-out;
}
  
  .ac-input:checked + label,
  .ac-label:hover {
    background-color: #999;
  }
  
  .ac-label:after, .ac-input:checked + .ac-label:after {
    content: "+";
    position: absolute;
    display: block;
    right: 0;
    top: 0;
    width: 2em;
    height: 100%;
    line-height: 2.25em;
    text-align: center;
    background-color: #f7f7f7;
    transition: background-color 0.15s ease-in-out;
    color: #000;
    display: flex;
    align-items: center;
    justify-content: center;
}
  
  .ac-label:hover:after,
  .ac-input:checked + .ac-label:after {
    background-color: #b5b5b5;
  }
  
  .ac-input:checked + .ac-label:after {
    content: "-";
  }
  
  .ac-input {
    display: none;
  }
  
  /* the magic */
  .ac-text,
  .ac-sub-text {
    opacity: 0;
    height: 0;
    margin-bottom: 0.5em;
    transition: opacity 0.5s ease-in-out;
    overflow: hidden;
  }
  
  .ac-input:checked ~ .ac-text, .ac-sub .ac-input:checked ~ .ac-sub-text {
    opacity: 1;
    height: auto;
    padding: 0 20px;
}
  
  /* sub-level */
  .ac-sub .ac-label {
    background: none;
    font-weight: 600;
    padding: 0.5em 2em;
    margin-bottom: 0;
  }
  
  .ac-sub .ac-label:checked {
    background: none;
    border-bottom: 1px solid whitesmoke;
  }
  
  .ac-sub .ac-label:after, .ac-sub .ac-input:checked + .ac-label:after {
    left: 0;
    background: none;
    color: #fff;
}
  
  .ac-sub .ac-input:checked + label,
  .ac-sub .ac-label:hover {
    background: none;
  }
  
  .ac-sub-text {
    padding: 0 1em 0 2em;
  }
  