@charset "UTF-8";

@import url("https://fonts.googleapis.com/css2?family=Exo+2:wght@100..900&display=swap");

/* ===========================
   Base / Reset
   Cleaned and reorganized — пусті медіа та дублікати видалені,
   схожі правила згруповані по блоках
   =========================== */

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

:focus,
:active,
a:focus,
a:active {
    outline: none;
}

html, body {
    width: 100%;
    height: 100%;
    background: var(--bg);
    color: #242933;
    font-size: 1rem;
    font-family: "Exo 2", sans-serif;
    font-weight: 500;
    line-height: normal;
}

input, button, textarea {
    font-family: inherit;
}

button { cursor: pointer; }
button::-moz-focus-inner { padding: 0; border: 0; }
input::-ms-clear { display: none; }

a { text-decoration: none; }
a:visited, a:hover { text-decoration: none; }

ul, li { list-style: none; }
img { vertical-align: top; }

h1,h2,h3,h4,h5,h6 { margin: 0; font-size: inherit; font-weight: 400; }

sup { color: inherit; }

/* Custom scrollbar (kept as in original) */
* { scrollbar-width:  thin; scrollbar-color: #E9552F #d6d6d6; }
*::-webkit-scrollbar { width: 0.5rem; background-color: #fff; }
*::-webkit-scrollbar-track {
    box-shadow: inset 0 0 0.375rem rgba(0,0,0,0.2);
    border-radius: 0;
    background: rgba(26,27,32,0.8);
}
*::-webkit-scrollbar-thumb {
    border-radius: 0;
    border: 0 none #fff;
    background-color: #ee7b5d;
    transition: all 280ms ease-in-out;
}
*::-webkit-scrollbar-thumb:hover { background-color: #E9552F; }

body.lock { overflow: hidden; touch-action: none; }

/* ===========================
   Layout / Utilities
   =========================== */

[class*=__container] {
    max-width: 97.25rem;
    margin: 0 auto;
    padding: 0 1.25rem;
}

[class*=-ibg] { position: relative; }
[class*=-ibg] img { position: absolute; width: 100%; height: 100%; top: 0; left: 0; object-fit: cover; }
[class*=-ibg_contain] img { object-fit: contain; }

[class*=_overlay-bg] {
    position: fixed;
    top: 0; left: 0; width: 100%; height: 100%;
    opacity: 0; visibility: hidden;
    transition: all 280ms ease-in-out 0ms;
    z-index: 2000; padding: 3.75rem 0.9375rem; overflow-y: auto;
}
[class*=_overlay-bg]._is-open { opacity: 1; visibility: visible; }

main { position: relative; padding-top: 6.25rem; overflow: hidden; }

.wrapper { display: flex; flex-direction: column; min-height: 100%; overflow: clip; }
.page { position: relative; z-index: 2; flex: 1 1 auto; }
.page [data-observ] { position: absolute; top:0; left:0; width:100%; height:0.125rem; background: transparent; pointer-events: none; }

.page_start { padding-top: 6.25rem; }
.page-content { padding: 1.875rem 0; }

.page-title h1 {
    font-size: calc(24px + 2 * (100vw - 320px) / 1600);
    font-style: normal; font-weight: 700; line-height: 1.2; text-transform: uppercase;
}
.fancybox-bg { background: rgba(30,30,30,0.7); }

/* ===========================
   Responsive: grouped and pruned
   - Removed empty or duplicate breakpoints
   - Grouped close breakpoints (<= 991px), (<= 768px), small screens
   =========================== */


@media (max-width: 991.98px) {
    main { padding-top: 3.75rem; }
    .page-content { padding: 1.25rem 0; }
}

@media (max-width: 768.98px) {
    [class*=_overlay-bg]::-webkit-scrollbar { display: none; }
}

@media (max-width: 767.98px) {
    .touch [data-fullscreen] { transition: height 0.2s; }
}


@media (max-width: 475.98px) {
    [class*=__container] { padding: 0 0.625rem; }
}


