@charset "UTF-8";/*--------------------*/
/*  Reset             */
/*--------------------*/
@media (prefers-reduced-motion: no-preference) {
@view-transition {navigation: auto;}
}
@view-transition {navigation: auto;}
::view-transition-group(root) {animation-duration: 0.5s;}
::view-transition-old(root) {animation: move-out 0.1s ease-in-out both;}
::view-transition-new(root) {-webkit-animation: move-in 0.3s ease-in-out both;}
html {height: auto;box-sizing: border-box;font-synthesis: none;-webkit-font-smoothing: antialiased;scroll-behavior: smooth;scroll-padding-top: var(--h-height, 0);interpolate-size: allow-keywords;}
@keyframes move-out {
0% {opacity: 1;transform: scale(1);}
to {opacity: 0;transform: scale(1.1);}
}
@keyframes move-in {
0% {opacity: 0;transform: scale(1.1);}
to {opacity: 1;transform: scale(1);}
}
html:not(.touch-screen)::-webkit-scrollbar {width: 0.5rem;height: 0.5rem;}
html:not(.touch-screen):-webkit-scrollbar-track {background: transparent;}
html:not(.touch-screen)::-webkit-scrollbar-thumb {background: #c2c2c2;border-radius: 0.25rem;}
html:not(.touch-screen)::-webkit-scrollbar-thumb:active {background: var(--clr-white);}
body {height: auto;overflow-y: scroll;background-color: var(--clr-white);}
body:not(.touch-screen) *::-webkit-scrollbar {width: 0.25rem;height: 0.25rem;}
body:not(.touch-screen) *::-webkit-scrollbar-track {background: transparent;border-radius: 0.25rem;}
body:not(.touch-screen) *::-webkit-scrollbar-thumb {background: rgb(39, 39, 42);}
body:not(.touch-screen) *::-webkit-scrollbar-thumb:active {background: var(--clr-white);}
:where(body.touch-screen *::-webkit-scrollbar) {display: none;}
* {border: 0;margin: 0;padding: 0;min-width: 0;font: inherit;font-size: 100%;line-height: inherit;vertical-align: baseline;-webkit-locale: auto;-webkit-text-size-adjust: none;-webkit-tap-highlight-color: transparent;}
:is(*, *:before, *:after) {box-sizing: inherit;}
:is(:focus, :hover, :active, :visited) {outline: none;}
::-moz-selection {color: var(--clr-white);background: var(--clr-black);}
::selection {color: var(--clr-white);background: var(--clr-black);}
a {display: inline-block;text-decoration: none;cursor: pointer;outline: none;color: inherit;transition: var(--transition-1);}
a:hover {text-decoration: none;}
:is(ul, ol) {list-style: none;}
:is(sub, sup) {font-size: 75%;line-height: 0;position: relative;}
sup {top: -0.5em;}
sub {bottom: -0.25em;}
picture {font-size: 0;-webkit-user-select: none;-moz-user-select: none;user-select: none;}
:is(img, svg, iframe) {width: auto;height: auto;max-width: 100%;-webkit-user-select: none;-moz-user-select: none;user-select: none;vertical-align: middle;}
img {position: relative;}
img::before {content: "";position: absolute;inset: 0;background: no-repeat center/min(5rem, 50%) min(5rem, 50%) var(--clr-grey) url(../img/placeholder.svg);}
input {-webkit-appearance: none;-moz-appearance: none;font-size: 1rem;font-weight: 400;color: var(--clr-black);}
::-moz-placeholder {display: none;}
::placeholder {display: none;}
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {-webkit-appearance: none;margin: 0;}
input[type=number] {-moz-appearance: textfield;}
input[type=search]::-webkit-search-cancel-button,
input[type=search]::-webkit-search-results-button,
input[type=search]::-webkit-search-results-decoration {-webkit-appearance: none;height: 0.7em;width: 0.7em;background-size: contain;cursor: pointer;}
:is(input, textarea, select) {border-radius: 0;background: none;border: none;margin: 0;width: 100%;padding: 0;}
textarea {display: block;resize: none;overflow: auto;}
select::-ms-expand {display: none;}
button {background: none;}
/*----------------------*/
/*  Main Global         */
/*----------------------*/
:root {--root-scale: 1rem;--container-width: 100%;--ff-1: "Manrope",sans-serif;--h1: clamp(2.3125rem, 1.5231rem + 2.1965vw, 3.5rem);--h2: clamp(1.75rem, 1.2514rem + 1.3873vw, 2.5rem);--h3: clamp(1.375rem, 1.1257rem + 0.6936vw, 1.75rem);--h4: clamp(1.38rem, calc(0.74rem + 1.32vw), 2.13rem);--h5: clamp(1.25rem, calc(1.04rem + 0.44vw), 1.5rem);--h6: clamp(1rem, calc(0.79rem + 0.44vw), 1.25rem);--text: clamp(1rem, calc(0.79rem + 0.44vw), 1.25rem);--text-sm: clamp(1rem, calc(0.8947rem + 0.2193vw), 1.125rem);--sp-xl: clamp(3.75rem, calc(-0.46rem + 8.77vw), 8.75rem);--sp-lg: clamp(3.75rem, calc(1.64rem + 4.39vw), 6.25rem);--sp-md: clamp(1.88rem, calc(0.3rem + 3.29vw), 3.75rem);--sp-sm: clamp(0.94rem, calc(0.15rem + 1.64vw), 1.88rem);--sp-xs: clamp(0.75rem, 2.1316rem + -1.3158vw, 1.5rem);--clr-title: #fafafa;--clr-text: #8e8e96;--clr-plc: #52525b;--clr-input: #fff;--clr-border: #a1a1aa;--clr-white: #fafafa;--clr-black: #09090b;--clr-grey: #8e8e96;--clr-red: #ff0000;--clr-cyan: #06b6d4;--clr-primary: #09090b;--clr-secondary: #06b6d4;--bg-1: var(--clr-black);--bg-2: var(--clr-secondary);--blur: 5px;--bg-overlay: rgba(0, 0, 0, 0.5);--box-shadow: 0 0 1.5rem 0 rgba(0, 0, 0, 0.03),0 0 0.5rem 0 rgba(0, 0, 0, 0.06);--transition-1: 0.3s ease;--transition-2: 0.6s ease;--cubic-1: 0.5s cubic-bezier(0.65, 0, 0.35, 1);--cubic-2: 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);}
html {font-size: var(--root-scale);}
html.keyboard-focus:focus {outline: auto;}
html.overflow-menu,
html.overflow-hidden {overflow: clip;}
html.overflow-menu body,
html.overflow-hidden body {overflow: clip;}
.overflow-overlay {opacity: 0;visibility: hidden;position: fixed;z-index: 90;inset: 0;background-color: var(--bg-overlay);backdrop-filter: blur(var(--blur));transition: var(--cubic-1);}
#content-block {position: relative;min-height: 100svh;overflow: clip;display: flex;flex-direction: column;}
header {position: relative;opacity: 0;}
main {display: flex;flex-direction: column;}
footer {margin-top: auto;}
:where(.section + .section) {margin-top: var(--sp-xl);}
:where(.section-hero + .section-get) {margin-top: 0;}
@media (min-width: 768px) {
:where(.section-hero + .section-get) {transform: translateY(-7.5rem);}
}
:where(.section:last-child) {margin-bottom: var(--sp-xl);}
.section {will-change: opacity;position: relative;opacity: 0;}
.section.animated {opacity: 1;transition: 0.15s linear opacity;}
.container,
.container-fluid {--bs-gutter-x: 3rem;width: 100%;margin-inline: auto;padding-inline: calc(var(--bs-gutter-x) * 0.5);}
.swiper-container {will-change: opacity;opacity: 0;}
.swiper-container.swiper-initialized {opacity: 1;transition: 0.15s linear opacity;}
.informer,
.cookies-informer,
.popup-wrapper {display: none;}
@media (min-width: 1200px) {
:root {--container-width: 95.604vw;}
.container {width: var(--container-width);}
}
@media (min-width: 1200px) and (max-width: 1380px) {
:root {--root-scale: 0.75rem;}
}
@media (min-width: 1381px) and (max-width: 1680px) {
:root {--root-scale: 0.875rem;}
}
@media (min-width: 2100px) {
html {font-size: 1.375rem;}
}
@media (min-width: 2600px) {
html {font-size: 2rem;}
}
/*--------------------*/
/*  Header            */
/*--------------------*/
:root {--h-height: 6.75rem;--h-logo-width: 9.125rem;}
header {position: absolute;z-index: 100;height: var(--h-height);}
.h-wrap {position: fixed;z-index: 100;top: 0;left: 0;width: 100%;background-color: var(--clr-black);transition: var(--transition-1);opacity: 0;visibility: hidden;}
header.scrolled {position: fixed;}
header.scrolled .h-wrap {box-shadow: 0 0.25rem 0.5rem rgba(0, 0, 0, 0.04);opacity: 1;visibility: visible;}
header.relative {position: relative;}
.h-inner {position: relative;width: 100%;height: var(--h-height);gap: 1rem;display: flex;align-items: center;justify-content: space-between;}
.h-logo {display: block;width: var(--h-logo-width);flex-shrink: 0;}
.h-logo img {display: block;max-width: 100%;}
.h-menu {flex-grow: 1;display: flex;align-items: center;}
.h-links {margin-inline: auto;}
.h-links ul {display: flex;align-items: center;flex-wrap: wrap;gap: 2vw;}
.h-links a {font-size: 1.25rem;line-height: 1em;font-weight: 400;color: var(--clr-text);}
.h-links a.active {color: var(--clr-secondary);}
.h-drop-list,
.h-menu-overlay,
.h-burger {display: none;}
@media (min-width: 1200px) {
.h-links a:hover {color: var(--clr-white);}
}
@media (max-width: 1199px) {
:root {--h-height: 3.75rem;--h-logo-width: 5.5rem;}
.h-wrap {padding-block: 0.75rem;}
.h-inner {justify-content: space-between;background-color: var(--clr-black);}
.h-menu {position: fixed;z-index: -1;top: 0;left: 0;transform: translateX(-100%);transition: var(--transition-1);width: min(100%, 26.25rem);height: 100%;overflow-y: auto;overflow-x: hidden;display: flex;flex-direction: column;align-items: center;justify-content: space-between;background-color: var(--clr-black);opacity: 0;padding: 1rem;padding-top: calc(var(--h-height) + 1rem);}
.h-menu > * + * {margin-top: 2rem;}
.h-menu-overlay {display: block;position: fixed;z-index: 99;inset: 0;opacity: 0;visibility: hidden;background: linear-gradient(180deg, rgba(9, 9, 11, 0.5) 22.6%, #09090b 95.19%);transition: var(--transition-1);}
.h-links {margin-block: auto;}
.h-links ul {gap: 1.25rem;flex-direction: column;}
}
header {opacity: 1;transition: 0.15s linear opacity;}
/*--------------------*/
/*  Typography   Legal*/
.legal-content p strong{
    font-weight: 500;
    color: var(--clr-white);
}
/*--------------------*/
/*--------------------*/
/*  Typography        */
/*--------------------*/
body {font-family: var(--ff-1);font-weight: 400;font-size: var(--h6);line-height: 1.4em;color: var(--clr-text);background-color: var(--bg-1);}
.text {--text-space: 0.5rem;--text-li-padding: 2rem;--text-th-height: 2.75rem;--text-th-padding: 1rem;font-size: var(--text);line-height: 1.4em;font-weight: 400;color: var(--clr-text);}
.text.style2 {--text-th-height: 3.75rem;}
.text-sm {font-size: var(--text-sm);}
.text * + :where(*) {margin-top: calc(var(--text-space) * 3);}
.text * + :is(p, ul, ol, li) {margin-top: var(--text-space);}
.text :is(img, table, iframe, figure, picture, blockquote, .swiper-entry) + *:not(figcaption) {margin-top: calc(var(--text-space) * 3);}
.text .swiper-entry > * * {margin-top: 0;}
.text-space {--text-space: 1.625rem;}
.text b {font-weight: 500;}
.text span {color: var(--clr-white);}
.text strong {font-weight: 700;color: var(--clr-black);}
.text em {font-style: italic;font-weight: 500;}
.text a:not(.btn) {display: inline;font-weight: 400;color: var(--clr-white);}
.text ul li,
.text ol li {position: relative;padding-left: calc(var(--text-li-padding) + 1rem);}
@media (max-width: 767px) {
.text ul li,
.text ol li {padding-left: calc(var(--text-li-padding) + 0.25rem);}
}
.text ul li:before {content: "";position: absolute;left: calc(var(--text-li-padding) / 2 - 0.5em);top: 0.65em;width: 1em;height: 0.0625rem;border-radius: 100%;background-color: var(--clr-text);}
.text ol {counter-reset: number;}
.text ol li:before {counter-increment: number;content: counter(number, decimal-leading-zero) ".";display: inline-block;position: absolute;left: 0;font-weight: 500;line-height: inherit;color: var(--clr-primary);}
.text img {display: block;width: 100%;border-radius: var(--text-rd);}
.text figure {line-height: 0;width: 100%;}
.text figure.aligncenter {text-align: center;}
.text figure.alignright {text-align: right;}
.text figure > img {width: auto;}
.text figure figcaption {font-size: 0.75rem;font-weight: 500;line-height: 1.5em;color: var(--clr-black);margin: 0.25rem;}
.text iframe {display: block;max-width: 100%;width: 100%;height: 100%;aspect-ratio: 16/9;border: 0;border-radius: var(--text-rd);}
.text blockquote {text-align: left;font-weight: 500;padding-block: calc(var(--text-space) * 3);padding-inline: clamp(1rem, -6.54rem + 15.6vw, var(--text-space) * 6);color: var(--clr-black);background-color: var(--clr-grey);border-radius: var(--text-rd);}
.text table {border-collapse: separate;border-spacing: 0;width: auto;}
.text tbody tr {text-align: left;}
.text td,
.text th {vertical-align: middle;height: calc(var(--text-th-height) / 1);padding: calc(var(--text-th-padding) / 3);padding-inline: var(--text-th-padding);font-size: var(--h6);line-height: inherit;font-weight: inherit;color: var(--clr-text);}
.text td:first-child,
.text th:first-child {color: var(--clr-white);}
/* Щоб прибрати подвоєння меж таблиці */
.text table thead tr:first-child th {border-top: 1px solid #3f3f46;}
.text table tbody tr:last-child td {border-bottom: 1px solid #3f3f46;}
.text table tr td {border-top: 1px solid #3f3f46;}
.text table tr td + td {border-left: 1px solid #3f3f46;}
.text table tr td:first-child,
.text table tr th:first-child {border-left: 1px solid #3f3f46;}
.text table tr td:last-child,
.text table tr th:last-child {border-right: 1px solid #3f3f46;}
.text *:first-child img {margin-top: 0;}
:is(h1, .h1, h2, .h2, h3, .h3, h4, .h4, h5, .h5, h6, .h6) {font-weight: 500;color: var(--clr-title);}
h1,
.h1 {font-size: var(--h1);line-height: 1.3em;letter-spacing: -0.74px;}
h2,
.h2 {font-size: var(--h2);line-height: 1.15em;}
h3,
.h3 {font-size: var(--h3);line-height: 1.25em;}
h4,
.h4 {font-size: var(--h4);line-height: 1.25em;}
h5,
.h5 {font-size: var(--h5);line-height: 1.4em;}
h6,
.h6 {font-size: var(--h6);line-height: 1.4em;}
.title-block > * + * {margin-top: 0.5rem;}
.title {color: var(--clr-text) !important;}
.text-balance {text-wrap: balance;}
.text-left {text-align: left;}
.text-center {text-align: center;}
.text-right {text-align: right;}
@media (min-width: 1200px) {
.text a:not(.btn):hover {color: var(--clr-secondary);}
}
@media (max-width: 991px) {
.text {--text-space: 0.5rem;--text-li-padding: 1.5rem;--text-th-height: 2.5rem;--text-th-padding: 0.5rem;}
}
.text-animate {opacity: 0;}
.text-animated {opacity: 1;}
.text-animate-word {position: relative;overflow: hidden;display: inline-flex;line-height: inherit;}
.text-animate-word.animated > * {transform: translateY(0);opacity: 1;}
.text-animate-word > * {display: inline-block;transform: translateY(100%);opacity: 0;transition: 1s;transform-origin: left top;}
.text-animate__word > span {display: inline-block;transform: translateY(100%);opacity: 0;transition: 1s;transform-origin: left top;}
.text-animate__word.animated > span {transform: translateY(0);opacity: 1;}
/* Animation          */
/*====================*/
.slideUp {transform: translateY(40px);opacity: 0;transition: var(--cubic-2),transform var(--cubic-2);}
.slideLeft {transform: translateX(100px);opacity: 0;transition: var(--cubic-2),transform var(--cubic-2);}
.slideRight {transform: translateX(-100px);opacity: 0;transition: var(--cubic-2),transform var(--cubic-2);}
.fadeIn {opacity: 0;transform: scale(0.9);transition: var(--cubic-2);}
.scaleIn {transform: scale(0.8);opacity: 0;transition: var(--cubic-1),transform var(--cubic-1);}
.animated.slideRight,
.animated.slideLeft,
.animated.slideUp,
.animated.fadeIn,
.animated.scaleIn {opacity: 1;transform: none;}
@media (max-width: 575px) {
.slideLeft,
.slideRight {transform: translateY(40px);}
}
.price-digits {display: inline-flex;font-variant-numeric: tabular-nums;}
.digit {display: block;position: relative;width: 0.6em;height: 1em;overflow: hidden;}
.digit span {display: block;position: absolute;left: 0;width: 100%;transition: var(--transition-2);}
@media (max-width: 575px) {
.digit {width: 0.575em;}
}
/*--------------------*/
/*  Buttons           */
/*--------------------*/
.btn {cursor: pointer;-webkit-user-select: none;-moz-user-select: none;user-select: none;overflow: clip;text-decoration: none;flex-shrink: 0;position: relative;z-index: 1;font-size: var(--h6);line-height: 1.4;font-weight: 600;color: var(--clr-black);padding: 1rem;border: none;background-color: var(--clr-white);transition: var(--transition-2);gap: 0.8em;display: inline-flex;align-items: center;justify-content: center;}
.btn::before {content: "";position: absolute;height: 100%;left: 0;width: 0;background-color: var(--clr-secondary);transition: var(--transition-2);}
.btn b {position: relative;z-index: 2;display: inline-block;line-height: inherit;font-weight: inherit;color: currentColor;}
.btn svg {color: currentColor;}
.btn svg *[stroke] {stroke: currentColor;}
.btn svg *[fill] {fill: currentColor;}
.btn-block {width: 100%;}
.btn.disabled {pointer-events: none;background-color: var(--clr-grey);}
.btn:has(svg:only-child) {padding: 0.9em;}
.btn:has(svg:only-child) svg {width: 1.2em;height: 1.2em;}
.btn-primary {border: 1px solid #27272a;}
.btn-primary::before {content: "";position: absolute;height: 100%;left: 0;width: 0;background-color: #27272a;transition: var(--transition-2);}
.btn-secondary {color: var(--clr-white);background-color: #27272a;}
.btn-close {display: inline-block;position: relative;cursor: pointer;--bw: 2.75rem;width: var(--bw);height: var(--bw);color: var(--clr-white);border: 0.0625rem solid var(--clr-white);background-color: var(--clr-black);transition: var(--transition-1);}
.btn-close::before,
.btn-close::after {content: "";position: absolute;top: 50%;left: 50%;width: 50%;height: 0.125rem;transform: translate(-50%, -50%) rotate(45deg);background-color: currentColor;}
.btn-close::after {transform: translate(-50%, -50%) rotate(-45deg);}
.btn-link {gap: 0.5em;display: inline-flex;align-items: center;cursor: pointer;font-size: 1.25rem;line-height: 1.38em;color: var(--clr-title);font-weight: 400;transition: var(--transition-1);}
@media (min-width: 1200px) {
.btn:hover {color: var(--clr-black);}
.btn:hover::before {content: "";position: absolute;width: 100%;}
.btn-primary:hover {color: var(--clr-white);}
.btn-primary:hover::before {content: "";position: absolute;width: 100%;}
.btn-close:hover {color: var(--clr-black);background-color: var(--clr-secondary);border-color: currentColor;}
.btn-link:hover {color: var(--clr-secondary);}
}
@media (max-width: 1199px) {
.btn,
.btn-link {font-size: 1.125rem;}
}
@media (max-width: 991px) {
.btn,
.btn-link {font-size: 1rem;}
.btn-close {--bw: 2rem;}
}