@font-face {
    font-family: "Raleway Regular";
    src: url("/assets/fonts/Raleway-Regular.eot");
    src: url("/assets/fonts/Raleway-Regular.eot?#iefix")format("embedded-opentype"),
    url("/assets/fonts/Raleway-Regular.woff2")format("woff2"),
    url("/assets/fonts/Raleway-Regular.woff")format("woff"),
    url("/assets/fonts/Raleway-Regular.ttf")format("truetype"),
    url("/assets/fonts/Raleway-Regular.svg#Raleway Medium")format("svg");
}
@font-face {
    font-family: "Raleway Medium";
    src: url("/assets/fonts/Raleway-Medium.eot");
    src: url("/assets/fonts/Raleway-Medium.eot?#iefix")format("embedded-opentype"),
    url("/assets/fonts/Raleway-Medium.woff")format("woff"),
    url("/assets/fonts/Raleway-Medium.ttf")format("truetype"),
    url("/assets/fonts/Raleway-Medium.svg#Raleway Medium")format("svg");
}


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

ul[class],
ol[class] {
    padding: 0;
}

body,
h1,
h2,
h3,
h4,
p,
ul[class],
ol[class],
li,
figure,
figcaption,
blockquote,
dl,
dd {
    margin: 0;
}

body {
    min-height: 100vh;
    scroll-behavior: smooth;
    text-rendering: optimizeSpeed;
    line-height: 1.5;
}

ul[class],
ol[class] {
    list-style: none;
}

a {
    text-decoration: none;
}

a:not([class]) {
    text-decoration-skip-ink: auto;
}

img {
    width: 100%;
    display: block;
}

article > * + * {
    margin-top: 1em;
}

input,
button,
textarea,
select {
    font: inherit;
}

@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
}


:root {
    --white: #fff;
    --grey-txt: rgba(126, 129, 169, 1);
    --black: rgba(36, 36, 36, 1);
    --acsent: linear-gradient(180deg, #E055FA 0%, #7E2DE3 100%);
    --bg-elements: linear-gradient(180deg, #D4D2FE 0%, #D7D2FD 100%);
    --bg-elements-dark: rgba(30, 30, 30, 1);
    --bg-link: rgba(18, 27, 56, 1);
    --bg: rgba(255, 255, 255, 1);
    --btn-elements: #1E1E1E;
    --font-family: "Raleway", sans-serif;
    --second-family: "Raleway Medium", sans-serif;
}

.light-text {
    color: var(--white) !important;
}

.dark-text {
    color: var(--bg-elements) !important;
}

.belladrake-body {
    background: var(--bg);
}

.banner-section {
    display: flex;
    flex-direction: column;
    width: 100%;
}

.belladrake-container {
    max-width: 1290px;
    width: 100%;
    margin: 0 auto;
}

.belladrake-banner-container {
    position: relative;
    border-radius: 20px;
    margin: 20px auto 100px auto;
}

.toggle-menu {
    display: none;
    justify-content: center;
    align-items: center;
    width: 50px;
    height: 50px;
    border-radius: 10px;
    background: #fff;
    position: relative;
    border: none;
}

.toggle-menu::before {
   content: "";
    position: absolute;
    inset: 0;
    border-radius: 10px;
    padding: 2px;
    background: linear-gradient(180deg, #D4D2FE 0%, #D7D2FD 100%);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
    z-index: 0;
}
.toggle-menu img {
    width: 24px;
    height: 24px;
}

.belladrake-header {
    position: relative;
    z-index: 9999;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    margin-top: 20px;

}

.belladrake-nav_container {
    display: flex;
    flex-direction: row;
    gap: 20px;
}

.belladrake-nav_item {
}

.belladrake-nav_link {
    font-family: var(--font-family);
    font-weight: 400;
    font-size: 18px;
    line-height: 22px;
    color: var(--black);
}

.belladrake-logo {
    border-radius: 50%;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--btn-elements);
}

.belladrake-logo_text {
    font-family: var(--second-family);
    font-weight: 500;
    font-size: 20px;
    color: var(--black);
}

.lang {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    width: auto;
    height: 50px;
    border: 2px solid transparent;
    border-radius: 8px;
    background:
            linear-gradient(#fff, #fff) padding-box,
            linear-gradient(180deg, #D4D2FE 0%, #D7D2FD 100%) border-box;
    padding: 15px;
}

.lang .arrow {

}

.lang-value {
    font-family: var(--font-family);
    font-weight: 400;
    font-style: normal;
    font-size: 20px;
    line-height: 25px;
    letter-spacing: 0;
    color: var(--black);
}

.belladrake-banner {
    position: absolute;
    z-index: -1;
    top: 0;
    max-width: 100%;
    width: 100%;
    height: 100%;
    background: url('/assets/img/banner.webp');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    left: 50%;
    transform: translate(-50%);
    border-radius: 20px;
}
.belladrake-banner::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0,0,0, 0.54);
    overflow: hidden;
    border-radius: 20px;
}
.belladrake-content {
    max-width: 100%;
    width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: flex-end;
    gap: 100px;
    padding: 416px 100px 100px 100px;
}

.belladrake-content .belladrake-wrapper-title {
    flex: 0 0 auto;
    width: 100%;
    max-width: 439px;
}

.belladrake-title {
    font-family: var(--second-family);
    font-weight: 500;
    font-size: 100px;
    line-height: 120px;
    color: var(--white);
}

.belladrake-description {
    font-family: var(--font-family);
    font-weight: 400;
    font-size: 20px;
    line-height: 200%;
    color: var(--white);
    flex: 1;
}

.belladrake-wrapper-btn {
    border-radius: 50px;
    padding: 13px 24px;
    background: var(--acsent);
    width: max-content;
    box-shadow: 0px 10px 22.4px 0px rgba(38, 33, 246, 0.34);;
}

.belladrake-btn {
    font-family: var(--second-family);
    font-weight: 400;
    font-size: 24px;
    line-height: 30px;
    color: var(--white);
    width: max-content;
    padding: 0;
}

.belladrake-section_title {
    font-family: var(--second-family);
    font-weight: 500;
    font-size: 82px;
    line-height: 103px;
    color: var(--black);
}

#contact .belladrake-section_title {
    color: var(--black);
}

.belladrake-section_text {
    font-family: var(--font-family);
    font-weight: 400;
    font-size: 18px;
    line-height: 36px;
    color: var(--black);
}

#contact .belladrake-section_text {
    color: var(--black);
}

.belladrake-socia_wrapper {
    border-radius: 50%;
    padding: 35px;
    width: 120px;
    height: 120px;
    box-shadow: 0px 10px 22.4px 0px rgba(38, 33, 246, 0.34);;
    background: var(--acsent);
    display: flex;
    justify-content: center;
    align-items: center;
}

.belladrake-text {
    font-family: var(--second-family);
    font-weight: 500;
    font-size: 32px;
    text-align: center;
    color: var(--white);
}

.belladrake-about_content {
    flex: 1;
    max-width: 665px;
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 20px;

}

.about-container {
    height: 100%;
    border: 2px solid rgba(44, 45, 61, 1);
    border-radius: 20px;
    padding: 50px;
}

.belladrake-about_section {
    display: flex;
    flex-direction: row;
    gap: 85px;
    position: relative;
}

.belladrake-about_social {
    display: flex;
    gap: 100px;
    justify-content: center;
}

.belladrake-about_social_item {
    flex: 0 0 232px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-items: center;
}

.belladrake-banner_wrapper {
    position: relative;
    width: 100%;
    max-width: 495px;
    z-index: -1;
    height: 100%;
}

.belladrake-galery {
    display: flex;
    flex-direction: column;
    gap: 50px;
    margin-top: 120px;
}

.belladrake-galery_content {
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.belladrake-galery_content .belladrake-section_text {
    max-width: 665px;
    margin: 0 auto;
}

.belladrake-galery_models {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 30px;
}

.belladrake-card {
    position: relative;
    flex: 0 0 calc(25% - 22.5px);
    border-radius: 30px;
    overflow: hidden;
}

.belladrake-card-info {
    position: relative;
    background: var(--bg-elements);
    border-radius: 0 0 20px 20px;
    max-width: 100%;
    width: 100%;
    padding: 10px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-top: 5px;
}

.belladrake-card-info_text {
    background: var(--bg-elements);
    border-radius: 20px 20px 0 0;
    padding: 15.5px 30px;
    margin-bottom: 5px;
}

.belladrake-card-info_text,
.belladrake-card-info_btns {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
}

.belladrake-card_img_wrapper {
    height: 100%;
    max-height: 450px;
    overflow: hidden;
}

.belladrake-card_img {
    object-fit: cover;
}

.belladrake-card_name {
    font-family: var(--second-family);
    font-weight: 500;
    font-size: 30px;
    line-height: 38px;
    color: var(--black);
}

.belladrake-card_price {
    font-family: var(--second-family);
    font-weight: 500;
    font-size: 30px;
    line-height: 38px;
    color: var(--black);
}

.belladrake-currency {
    font-size: 30px;
    margin-right: 2px;
}

.belladrake-card-info_btn {
    border-radius: 50px;
    padding: 10px 30px;
    cursor: pointer;
    height: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.belladrake-card-info_btn.info {
    border: 2px solid var(--black);
    border-radius: 10px;
    padding: 0;
    width: 50px;
    height: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.belladrake-card-info_btn.info img {
    width: 24px;
    height: 24px;
    filter: brightness(0) saturate(100%) invert(10%) sepia(40%) saturate(0%) hue-rotate(196deg) brightness(99%) contrast(91%);
}

.belladrake-card-info_btn.booking {
    position: relative;
    display: inline-block;
    padding: 12px 24px;
    border-radius: 12px;
    border: 2px solid transparent;
    background: var(--bg-elements); /* фон усередині */
    cursor: pointer;

    /* текст з градієнтом */
    background-image: linear-gradient(180deg, #E055FA 0%, #7E2DE3 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
    z-index: 1;
}

/* градієнтна рамка */
.belladrake-card-info_btn.booking::before,
.belladrake-model_tel::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;
    padding: 2px; /* товщина рамки */
    background: linear-gradient(180deg, #E055FA 0%, #7E2DE3 100%);
    -webkit-mask: linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
    z-index: 0;
}

.belladrake-card-info_btn.booking .belladrake-card-info_btn_text {
    color: var(--white);
    font-family: var(--font-family);
    font-size: 18px;
    line-height: 22px;
}

.belladrake-model_info_price .belladrake-card-info_btn {
}


.belladrake-model_info_price
.belladrake-card-info_btn_text {
    font-family: var(--second-family);
    font-weight: 500;
    font-size: 18px;
    color: var(--bg-elements);
}

.belladrake-section_text.white {
    color: var(--black);
    text-align: center;
}

.belladrake-booking {
    width: 100%;
    display: flex;
    flex-direction: row;
    gap: 30px;
    margin-top: 120px;
}

.belladrake-booking_text {
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-items: flex-start;
    flex: 0 0 calc(50% - 15px);
}

.belladrake-booking_text .belladrake-section_text {
    max-width: 100%;
    text-align: left;
}

.belladrake-booking_contacts {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 30px;
    background: var(--acsent);
    width: 100%;
    flex: 0 0 calc(50% - 15px);
    border-radius: 20px;
    height: 100%;
    padding: 50px;
    margin: 8px 0;
}

.belladrake-booking_btn {
    display: flex;
    flex-direction: column;
    gap: 30px;
    flex: 0 0 232px;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.belladrake-booking_icon {
    border-radius: 10px;
    padding: 20px;
    width: 120px;
    height: 120px;
    background: transparent;
    border: 2px solid rgba(255, 255, 255, 1);
    display: flex;
    justify-content: center;
    align-items: center;
}

.belladrake-booking_icon img {
    width: auto;
    min-width: 40px;
    max-width: 50px;
    height: auto;
    min-height: 40px;
    max-height: 50px;
    filter: brightness(0) saturate(100%) invert(100%) sepia(100%) saturate(0%) hue-rotate(162deg) brightness(101%) contrast(104%);
}

.belladrake-booking_btn_text {
    font-family: var(--second-family);
    font-weight: 500;
    font-size: 28px;
    line-height: 34px;
    text-align: center;
    color: var(--bg);
}

.belladrake-services {
    margin-top: 120px;
    display: flex;
    flex-direction: column;
    gap: 50px;
    justify-content: center;
    align-items: center;
    margin-bottom: 50px;
    background: var(--bg-elements);
    padding: 50px;
    border-radius: 20px;
}

.belladrake-services_wrapper {
    display: flex;
    flex-direction: column;
    gap: 20px;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.belladrake-services_list {
    display: flex;
    gap: 30px;
}

.belladrake-services_item {
    width: 100%;
    flex: 0 0 calc(33% - 25px);
    display: flex;
    flex-direction: row;
    gap: 20px;
    align-items: flex-start;
    justify-content: flex-start;
}

.belladrake-services_item_icon {
    width: 50px;
    height: auto;
    flex: 0 0 50px;
}

.belladrake-services_item_content {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 10px;
    justify-content: center;
    align-items: flex-start;
}

.belladrake-services_item_title {
    font-family: var(--second-family);
    font-weight: 500;
    font-size: 28px;
    line-height: 34px;
    color: var(--black);
}

.belladrake-services_item_text {
    font-family: var(--font-family);
    font-weight: 400;
    font-size: 16px;
    line-height: 28px;
    text-align: left;
    color: var(--black);
}

.belladrake-services_info {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 30px;
}

.belladrake-services_info_advent {
    display: flex;
    flex-direction: row;
    gap: 50px;
    justify-content: center;
    width: 100%;
}
.belladrake-services_info_advent_cont {
    width: 100%;
    max-width: 900px;
    margin: 0 auto;
}
.belladrake-services_info_advent_cont p{
    text-align: center;
}
.belladrake-services_info_advent_item {
    width: max-content;
    display: flex;
    flex-direction: column;
    gap: 10px;
    flex: 0 0 auto;
    position: relative;
    padding: 30px 50px;
}

.belladrake-services_info_advent_item::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 20px;
    padding: 2px;
    background: linear-gradient(180deg, #E055FA 0%, #7E2DE3 100%);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
    z-index: 0;
}

.belladrake-services_info_advent_item .belladrake-section_text {
    color: var(--black);
    text-align: center;
}

.belladrake-services_info_advent_title {
    font-family: var(--second-family);
    font-weight: 500;
    font-size: 62px;
    line-height: 72px;
    background: var(--acsent);
    -webkit-background-clip: text; /* для Safari/Chrome */
    -webkit-text-fill-color: transparent;
    background-clip: text; /* для Firefox */
    color: transparent; /* fallback */
    display: flex;
    align-items: flex-start;
    gap: 5px;
}

.belladrake-services_info_advent_title sup {
    font-size: 32px;
}

.belladrake-contacts {
    margin-top: 100px;
    display: flex;
    flex-direction: column;
    gap: 30px;
    border-radius: 50px;
    padding: 50px;
    align-items: center;
    flex-direction: column;
    background: var(--bg-elements);
}

.belladrake-contacts_list {
    display: flex;
    flex-direction: row;
    gap: 40px;
    flex-wrap: wrap;
    justify-content: center;
}

.belladrake-contacts_item {
    flex: 0 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 20px;
    cursor: pointer;
}

.belladrake-contacts .belladrake-services_wrapper .belladrake-section_text {
    max-width: 900px;
}

.belladrake-contacts_item_icon {
    border-radius: 50%;
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}
header .contacts{
    display: flex;
    flex-flow: row;
    justify-content: flex-start;
    align-items: center;
    gap: 15px;
}
header .contacts .belladrake-booking_icon{
    position: relative;
    width: 50px;
    height: 50px;
    border-radius: 10px;
}
header .contacts .belladrake-booking_btn{
        flex: 0 0 50px;

}
header .contacts .belladrake-booking_icon img{
    width: auto;
    max-width: 24px;
    min-width: 24px;
    min-height: 24px;
    height: auto;
}
.belladrake-contacts_item_icon img {
    width: 40px;
    height: 40px;
}
header .contacts .belladrake-booking_icon img{
    filter: none;
}

.belladrake-contacts_item_icon::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 20px;
    padding: 2px;
    background: linear-gradient(180deg, #E055FA 0%, #7E2DE3 100%);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
    z-index: 0;
}
header .contacts .belladrake-booking_icon::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 10px;
    padding: 2px;
    background: linear-gradient(180deg, #E055FA 0%, #7E2DE3 100%);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
    z-index: 0;
}

.belladrake-contacts_item_text {
    font-family: var(--second-family);
    font-weight: 500;
    font-size: 20px;
    line-height: 24px;
    text-align: center;
    color: var(--black);
}

.belladrake-seo_text {
    max-width: 100%;
    width: 100%;
    margin: 100px auto;
    display: flex;
    flex-direction: column;
    gap: 70px 10px;
}

.belladrake-section_text-content {
    flex: 1;
    width: 100%;
}

.belladrake-seo_text__item {
    display: flex;
    flex-flow: row;
    gap: 30px;
    align-items: flex-start;
}

.belladrake-seo_text__item .belladrake-section_title {
    flex: 0 0 calc(50% - 15px);
    width: 100%;
}

.belladrake-footer {
    width: 100%;
    padding: 50px 0 50px 0;
    background: var(--bg-elements);
}

.belladrake-footer_contetn {
    max-width: 1290px;
    width: 100%;
    margin: 0 auto;
    display: flex;
    flex-direction: row-reverse;
    justify-content: space-between;
    gap: 40px;
    align-items: center;
}

.belladrake-nav_container {
    display: flex;
    flex-direction: row;
    gap: 60px;
}

.belladrake-footer_privacy {
    font-family: var(--font-family);
    font-weight: 400;
    font-size: 16px;
    line-height: 26px;
    text-align: center;
    color: var(--grey-txt);
}

.belladrake-modal {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
}

.belladrake-modal-content {
    margin: 0 auto;
    position: absolute;
    border-radius: 20px;
    padding: 50px;
    max-width: 1250px;
    width: 100%;
    background: var(--bg-elements);
    height: max-content;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    max-height: 95vh;
}

.belladrake_model_content_wrapper {
    display: flex;
    flex-direction: row;
    gap: 30px;
}

.belladrake-close {
    position: absolute;
    right: 20px;
    top: 20px;
    width: 32px;
    height: 32px;
    border-radius: 5px;
    cursor: pointer;
    background: transparent;
    z-index: 9;
}
.belladrake-close img{
    width: 32px;
    height: 32px;
}
.belladrake_model_meadia_wrapper {
    display: flex;
    flex-direction: row;
    gap: 30px;
    flex: 0 0 auto;
    max-width: 476px;
    width: 100%;
    position: relative;
    overflow: hidden;
}

.belladrake_main_img {
    max-width: 476px;
    width: 100%;
    border-radius: 20px;
    overflow: hidden;
}

.belladrake_main_img img {
    object-fit: cover;
    height: 100%;
}
.thumbnails-grid{
    position: absolute;
    bottom: 10px;
    left: 10px;
    width: 476px;
}
.belladrake_trumnail_wrapper {
    display: flex;
    flex-direction: row;
    gap: 10px;
    width :100%;
    overflow-x: scroll;
}
/* ширина доріжки */
.thumbnails-grid::-webkit-scrollbar,
.belladrake-modal-content::-webkit-scrollbar {
    width: 10px;
}

/* фон доріжки */
.thumbnails-grid::-webkit-scrollbar-track,
.belladrake-modal-content::-webkit-scrollbar-track {
    background: rgba(44, 45, 61, 1);
    border-radius: 6px;
}

/* стилі для Firefox */
.thumbnails-grid,
.belladrake-modal-content {
    scrollbar-width: thin;
    scrollbar-color: #E055FA rgba(44, 45, 61, 1); /* thumb / track */
}

/* "повзунок" */
.thumbnails-grid::-webkit-scrollbar-thumb,
.belladrake-modal-content::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, #E055FA 0%, #7E2DE3 100%);
    border-radius: 6px;
}

/* ефект при наведенні */
.thumbnails-grid::-webkit-scrollbar-thumb:hover,
.belladrake-modal-content::-webkit-scrollbar-thumb:hover {
    opacity: 0.9;
}

.belladrake_trumnail {
    border-radius: 20px;
    width: 100px;
    height: 100px;
    background-color: var(--bg-elements);
    filter: brightness(26%);
    overflow: hidden;
    cursor: pointer;
    flex: 0 0 100px;
}

.belladrake_trumnail.active {
    filter: brightness(100%);
}

.belladrake-model_info {
    display: flex;
    flex-direction: column;
    gap: 40px;
    flex: 1;
}

.belladrake-model_info_name {
    font-family: var(--second-family);
    font-weight: 500;
    font-size: 32px;
    color: var(--black);
}
.belladrake-model_info_name_wprapper{
    display: flex;
    flex-direction: row;
    gap: 10px;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 40px;
    margin-top: 40px;
}
.belladrake-model_info_price {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
}

.belladrake-model_tel_wrapper {
    display: flex;
    flex-direction: row;
    gap: 15px;
    align-items: center;
    cursor: pointer;
}

.belladrake-model_tel {
    border-radius: 10px;
    width: 50px;
    height: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    position: relative;
}

.belladrake-model_tel img {
    width: 24px;
    height: 24px;
}

.belladrake-model_tel_text {
    font-family: var(--second-family);
    font-weight: 500;
    font-size: 20px;
    text-align: center;
    color: var(--black);
}

.belladrake-model_params {
    display: flex;
    flex-direction: row;
    gap: 20px;
    border-radius: 20px;
    padding: 15px;
    justify-content: space-evenly;
    align-items: center;
    background: var(--bg-elements);
    border: 2px solid rgba(255,255,255, 1)
}

.belladrake-model_param_item {
    flex: 0 0 auto;
    display: flex;
    flex-direction: column;
    gap: 10px;
    text-align: center;
}

.belladrake-model_param_title {
    font-family: var(--font-family);
    font-weight: 400;
    font-size: 15px;
    line-height: 18px;
    text-align: center;
    color: var(--black);
}

.belladrake-model_param_value {
    font-family: var(--second-family);
    font-weight: 400;
    font-size: 20px;
    line-height: 24px;
    text-align: center;
    color: var(--black);
}

.belladrake-model_price_wprapper {
    display: flex;
    flex-direction: row;
    gap: 20px;
    border-radius: 20px;
    padding: 0;
    justify-content: center;
    align-items: center;
    background: var(--bg-elements);
}

.belladrake-model_price_container {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 15px;
    justify-content: center;
    align-items: center;
    border: 2px solid rgba(255,255,255, 1);
    border-radius: 20px;
    padding: 20px 15px;
}

.belladrake-model_price_list {
    width: max-content;
    display: flex;
    flex-direction: row;
    gap: 30px;
}

.belladrake-currency.small {
    font-family: var(--second-family);
    font-weight: 400;
    font-size: 20px;
    text-align: center;
    color: var(--black);
}

.belladrake-model_price_title {
    font-family: var(--second-family);
    font-weight: 400;
    font-size: 20px;
    text-align: center;
    color: var(--black);
}

.belladrake-model_price_value {
    font-family: var(--second-family);
    font-weight: 400;
    font-size: 20px;
    text-align: center;
    color: var(--black);
}

.belladrake-model_price_item {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

@media screen and (max-width: 1290px) {
    .belladrake-container {
        max-width: calc(100% - 40px);
    }

    .about-container, .belladrake-footer_contetn {
        max-width: calc(100% - 40px);
    }
    .belladrake-model_price_wprapper{
        flex-wrap: wrap;
    }
    .belladrake-card-info_text {
        gap: 10px;
    }

    .belladrake-modal-content {
        max-width: calc(100vw - 20px);
    }
    .belladrake-card {
        flex: 0 0 calc(33% - 20px);
    }

}

@media screen and (max-width: 1100px) {
    .belladrake-nav_container {
        gap: 40px;
    }
    .belladrake-model_info-header{
        flex-flow: column;
    }
}

@media screen and (max-width: 1024px) {
    .belladrake-services {
        padding: 50px 30px;
        align-items: flex-start;
        gap: 40px;
        margin-top: 100px;
    }
    .belladrake-content{
        padding: 416px 50px 100px 50px;
        gap: 50px;
        margin-bottom: 70px;
    }
    .belladrake-services .belladrake-services_wrapper {
        align-items: flex-start;
    }

    .belladrake-services_list {
        gap: 30px;
        flex-flow: column;
    }
    .belladrake-card_name,.belladrake-card_price,.belladrake-currency{
        font-size: 24px;
        line-height: 29px;
    }
    .belladrake_main_img img {
        border-radius: 50px;
    }
    .about-container{
        padding: 50px 30px;
    }
    .belladrake-about_section{
        flex-flow: column;
        gap: 30px;
    }
    .belladrake-about_content{
        flex: 0 0 100%;
        max-width: 100%;
    }
    #about .belladrake-banner_wrapper{
        margin: 0 auto;
    }

    .belladrake-contacts {
        padding: 50px 30px;
    }
    .belladrake-galery{
        margin-top: 70px;
    }
    .belladrake-seo_text, .belladrake-contacts {
        margin: 70px auto;
    }
    .belladrake-booking_contacts{
        justify-content: space-between;
        padding: 50px 30px;
    }
    .belladrake-booking_btn{
        flex: 0 0 auto;
    }
}

@media all and (max-width: 920px) {
    .belladrake_model_content_wrapper {
        flex-direction: column;
        gap: 20px;
        align-items: center;
        overflow-y: auto;
    }

    .belladrake-model_info {
        width: 100%;
        gap: 20px;
        flex-flow: row wrap;
        justify-content: center;
    }

    .belladrake-model_params, .belladrake-model_price_wprapper {
        width: 100%;
        flex: 0 0 100%;
    }
    .belladrake-model_info_name_wprapper{
        margin: 30px 0 20px 0;
    }
    .belladrake-model_header {
        display: flex;
        flex-direction: row;
        gap: 30px;
        align-items: center;
        justify-content: center;
    }
    .belladrake-services_info_advent_item{
        padding: 30px 40px;
    }
    .belladrake-services_info_advent_title{
        font-size: 52px;
    }
    .belladrake-model_price_wprapper {
        flex-direction: row;
    }

    .belladrake-model_tel_wrapper {
        justify-content: center;
    }

    .belladrake-modal-content {
        padding: 20px;
    }
    .belladrake-card {
        flex: 0 0 calc(49% - 10px);
    }
    .belladrake_model_meadia_wrapper {
        gap: 20px;
    }
}

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

    .belladrake-modal-content {
        overflow-y: auto;
    }

    .belladrake-banner {
        background-position: right bottom;
    }

    .banner-section {
        max-width: 100%;
        background: url(/assets/img/banner.webp);
        background-size: cover;
        background-position: center;
        background-repeat: no-repeat;
        margin-bottom: 50px;
    }

    .belladrake-services_info {
        flex-direction: column;
        gap: 50px;
    }

    .belladrake-banner {
        height: 100%;
    }

    .belladrake-services_info_advent {
        justify-content: flex-start;
        gap: 50px;
    }

    .belladrake-services_list {
        flex-flow: column;
    }

    .belladrake-services_item {
        flex-flow: row;
        flex: 0 0 auto;
    }

    .belladrake-services_item_content {
        flex: 1;
    }

    .belladrake-services_item_text {
        text-align: left;
    }

    .belladrake-contacts,
    .belladrake-galery,
    .belladrake-booking,
    .belladrake-services {
        margin-top: 70px;
    }

    .belladrake-model_price_wprapper {
        flex-wrap: wrap;
    }
    .belladrake-booking_text{
        flex: 1;
    }
    .belladrake-booking_contacts{
        flex: 0 0 auto;
        width: max-content;
    }
    .belladrake-seo_text__item .belladrake-section_title{
        font-size: 52px;
        line-height: 63px;
    }
    .belladrake-footer_contetn{
        flex-flow: column-reverse;
        align-items: flex-start;
        gap: 20px;
    }
}
@media screen and (max-width: 800px) {
    .belladrake-services_info_advent{
        flex-wrap: wrap;
        justify-content: space-evenly;
        gap: 20px;
    }
    .belladrake-services_info_advent_item{
        flex: 0 0 32%;
    }
}
@media screen and (max-width: 768px) {
    .belladrake-content {
        gap: 20px;
        flex-flow: column;
        padding: 424px 30px 30px 30px;
        margin-bottom: 0;
    }
    .belladrake-content .belladrake-wrapper-title{
        max-width: 100%;
        text-align: center;
    }
    .belladrake-description{
        font-size: 17px;
        line-height: 32px;
    }
    .belladrake-banner-container{
        margin-bottom: 50px;
    }
    .about-container {
        height: 100%;
    }
    .belladrake-contacts, .belladrake-galery, .belladrake-booking, .belladrake-services{
        margin-top: 50px;
    }
    .belladrake-banner_wrapper {
        position: relative;
        top: auto;
        right: auto;
        order: 1;
        width: 100%;
    }

    .belladrake-services_item {
        flex-direction: row;
        gap: 20px;
    }

    .belladrake-section_title {
        font-size: 62px;
        line-height: 76px;
    }

    .belladrake-title {
        font-size: 82px;
        line-height: 103px;
    }

    .belladrake-contacts_item {
        flex: 0 0 auto;
    }
    .belladrake-booking{
        flex-flow: column;
        gap: 30px;
    }
    .belladrake-booking_contacts{
        flex: 0 0 100%;
        width: 100%;
        max-width: 100%;
    }
    .belladrake-booking_btn {
        flex: 0 0 49%;
    }

    .belladrake-footer {
        padding: 50px 15px 30px 15px;
    }
    .belladrake-contacts{
        margin-bottom: 50px;
        padding: 30px;
    }
    .belladrake-services_info_advent_item{
        flex: 0 0 49%;
        width: 100%;
        max-width: 100%;
        align-items: center;
    }
    .belladrake-nav_container {
        flex-flow: row wrap;
        justify-content: center;
    }
    .belladrake-seo_text{
        margin: 50px auto;
    }
    .belladrake-seo_text__item{
        flex-flow: column;
        align-items: flex-start;
    }
    .belladrake-footer{
        padding: 30px 0 30px 0;
    }
}

@media screen and (max-width: 650px) {
    .toggle-menu {
        display: flex;
    }
    .belladrake-content{
        padding: 200px 30px 30px 30px;
    }
    .belladrake-nav {
        display: none;
    }
    .belladrake-nav ul {
        flex-flow: column;
        align-items: center;
        justify-content: center;
        gap: 30px;
    }

    .belladrake-card {
        flex: 0 0 100%;
    }

    .belladrake-nav.show {
        display: flex;
        flex-flow: column;
        align-items: center;
        justify-content: center;
        position: absolute;
        left: -15px;
        top: 100%;
        width: 100vw;
        background: var(--bg);
        height: calc(100vh - 65px);
    }

    .belladrake-header {
        margin-top: 0;
        padding-top: 15px;
    }

    .header-container.open {
        background: var(--bg);
    }
    .belladrake-services_info_advent{
        flex-direction: column;
    }
    .belladrake-services_info_advent_item{
        flex: 0 0 100%;
        width: 100%;
        max-width: 100%;
        align-items: center;
    }
}

@media screen and (max-width: 560px) {
    .banner-section {
        margin-bottom: 10px;
        background: transparent;
    }
    .belladrake-container{
        max-width: calc(100% - 30px);
    }
    .belladrake-banner-container{
        max-width: 100%;
        display: flex;
        flex-flow: column-reverse;
        border-radius: 0;
    }
    .belladrake-content{
        padding: 20px 15px 0 15px;
    }
    .belladrake-banner {
        display: block;
        height: 100vw;
        position: relative;
        border-radius: 0;
    }
    .belladrake-seo_text__item .belladrake-section_title,
    .belladrake-section_title{
        font-size: 36px;
        line-height: 44px;
    }
    .belladrake-title {
        color: var(--black);
        font-size: 44px;
        line-height: 55px;
        margin-bottom: 0;
    }
    #services.belladrake-container,
    #contact.belladrake-container{
        max-width: 100%;
    }
    #about .belladrake-banner_wrapper {
        border-radius: 0;
        height: 100%;
        margin: 0 auto 20px auto;
        padding: 0 10px;
    }
    .belladrake-banner-container{
        margin-bottom: 40px;
    }
    .belladrake-content {
        gap: 10px;
    }

    .about-container {
        padding: 0 !important;
    }
    .belladrake-model_info_price{
        flex-wrap: wrap;
    }
    .belladrake-description {
        margin-bottom: 10px;
        color: var(--black);
        text-align: center;
    }

    .belladrake-about_content {
        padding: 20px 15px 15px 15px;
    }

    .belladrake-seo_text {
        margin: 40px auto;
    }

    .belladrake-section_title {
        font-size: 38px;
        line-height: 48px;
    }

    .belladrake_model_meadia_wrapper {
        flex-direction: column-reverse;
    }

    .belladrake-galery_content {
        gap: 10px;
    }

    .belladrake-galery,
    .belladrake-about_section {
        gap: 20px;
    }

    .belladrake-galery_models {
        gap: 10px;
    }

    .belladrake-contacts,
    .belladrake-galery,
    .belladrake-booking,
    .belladrake-services {
        margin-top: 40px;
    }

    .belladrake-contacts {
        padding: 20px 15px;
    }

    .belladrake-contacts_item {
        flex: 0 0 100%;
        flex-direction: row;
        justify-content: flex-start;
        align-items: center;
        gap: 15px;
    }

    .belladrake-contacts_item_text {
        font-size: 20px;
        line-height: 25px;
    }

    .belladrake-services_info {
        gap: 30px;
        padding: 0 15px;
    }

    .belladrake-services_info_advent,
    .belladrake-contacts
    {
        flex-direction: column;
        gap: 15px;
    }
    .belladrake-services_item {
        flex-direction: column;
        gap: 10px;
    }
    .belladrake-services_info_advent_item {
        align-items: center;
        gap: 15px;
    }
    .belladrake-services_list{
        gap: 20px;
    }
    .belladrake-services_wrapper {
        gap: 10px;
    }

    .belladrake-services {
        gap: 20px;
        padding: 20px 15px;
    }

    .belladrake-section_text {
        font-size: 15px;
        line-height: 24px;
    }
    .belladrake-booking_contacts{
        flex-flow: column;
        align-items: flex-start;
        gap: 15px;
        padding: 15px;
        margin-top: 0;
    }
    .belladrake-contacts_item_icon {
        width: 50px;
        height: 50px;
    }

    .belladrake-contacts_item_icon img {
        width: 24px;
        height: 24px;
    }

    #contact, #booking {
        padding: 0;
    }
    .belladrake-booking_btn {
        gap: 15px;
        flex-flow: row;
    }

    .belladrake-booking_icon {
        width: 50px;
        height: 50px;
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .belladrake-booking_icon img {
        width: 24px;
        min-width: 24px;
        height: 24px;
        min-height: 24px;
    }

    .belladrake-booking_btn_text, .belladrake-model_info_name {
        font-size: 24px;
        line-height: 30px;
    }

    .belladrake-contacts, .belladrake-booking {
        border-radius: 0;
    }

    .belladrake-services_info_advent_title {
        font-size: 32px;
        line-height: 40px;
    }

    .belladrake-services_info_advent_title sup {
        font-size: 22px;
        line-height: 32px;
    }

    .belladrake-footer {
        padding: 20px 15px;
    }
    .belladrake-contacts{
        margin-bottom: 40px;
    }
    .belladrake-footer_contetn {
        gap: 20px;
        margin: 0;
    }
    .belladrake-nav_container{
        justify-content: flex-start;
        gap: 15px 30px;
    }
}

@media screen and (max-width: 475px) {
    .belladrake-contacts_list {
        gap: 20px;
    }

    .belladrake-card-info {
        padding: 15px;
    }

    .belladrake-card_name, .belladrake-card_price {
        font-size: 22px;
        line-height: 28px;
    }
    .belladrake-model_info_price .belladrake-card-info_btn{
        width: 100%;
        max-width: 100%;
    }
    .belladrake-model_price_list {
        flex-wrap: wrap;
        width: 100%;
        justify-content: center;
        gap: 16px;
    }
    .belladrake-model_info_price{
        gap: 15px;
    }
    .belladrake-model_params {
        flex-wrap: wrap;
        gap: 10px;
    }

    .belladrake-model_param_item {
        flex: 0 0 auto;
        width: 45%;
    }

    .belladrake-nav_link {
        font-size: 18px;
        line-height: 21px;
    }

    .belladrake-nav_item.footer {
        padding: 0;
    }
}

@media screen and (max-width: 375px) {
    .belladrake-contacts_item_text {
        font-size: 17px;
    }
}