/* ttf */
@font-face {
    font-family: "Exo 2";
    src: url(/wp-content/themes/barvanorexpert/css/fonts/Exo2-VariableFont_wght.ttf);
}

/* variable */
:root {
    --font-family-1: "Exo 2";
}

/* color */
:root {
    --color-white: white;
    --color-transparent: rgba(255, 0, 0, 0);
    --color-black: #2B2A29;
    --color-black-op90: #000000eb;
    --color-yellow: #d6edf5;
    --color-red: #e73d00;
    --color-yellow-35: #b4d8e17a;
    --color-grey-op: #FFFFFF57;
    --color-grey: #3A3A3A;
    --color-grey-2: rgba(0, 0, 0, 0.34);
    --color-grey-3: #a8a8a8;
    --color-trans-4: rgba(43, 42, 41, 0.67);
    --color-grad-1: linear-gradient(90deg, #B8C2C7 0%, #b4d8e1 50%, #B8C2C7 100%);
    --color-grad-1-half-alpha: linear-gradient(90deg, #b4d8e1 6%, rgba(184, 194, 199, 0.00) 56.71%);
    --color-grad-2: linear-gradient(180deg, #9FADB4 0%, rgb(255 255 255 / 77%) 100%);
    --color-grad-3: #4d4a48b0;
    --color-grad-4: linear-gradient(90deg, rgba(255, 255, 255, 0) 0%, rgba(43, 42, 41, 0.4) 100%);
    --color-grad-5: linear-gradient(90deg, rgba(156, 150, 144, 0) 0%, #827E7A 49.48%, rgba(140, 136, 131, 0) 100%);
    --color-grad-6: radial-gradient(117.80% 68.29% at 50.00% 50.07%, #FFF 0%, #707070 100%);
    --color-grad-7: linear-gradient(0deg, rgb(0 0 0 / 37%) 0%, rgb(0 0 0 / 37%) 100%), linear-gradient(90deg, #B9C2C7 0%, #b4d8e1 99.99%, #8D9599 100%);
    --color-grad-8: linear-gradient(180deg, rgba(255, 255, 255, 0.00) 50%, rgba(255, 255, 255, 0.64) 0%);
    --color-grad-9: linear-gradient(180deg, rgba(255, 255, 255, 0.65) 0%, #EFEFEF 100%);
    --color-grad-10: radial-gradient(37.49% 49.85% at 49.93% 50.07%, #000 0%, rgba(0, 0, 0, 0.00) 100%);
    --color-grad-11: linear-gradient(77deg, #d6edf5 54.61%, #2B2A29 55.62%);
    --color-grad-12: linear-gradient(90deg, rgba(140, 136, 131, 0.00) 0%, rgba(71, 69, 67, 0.60) 23.44%, rgba(71, 69, 67, 0.88) 50.52%, rgba(71, 69, 67, 0.60) 76.56%, rgba(140, 136, 131, 0.00) 100%);
    --color-grad-black-supp: linear-gradient(0deg, var( --color-black) 0%, var(--color-black) 78.13%, rgba(255, 255, 255, 0.00) 100%);
}

:root {
    --box-shadow-1: 12px 12px 8px rgba(0, 0, 0, 0.25);
    --box-shadow-2: 0px 4px 4px 0px rgba(0, 0, 0, 0.59);
    --drop-shadow: drop-shadow(8px 8px 4px rgb(0 0 0 / 0.4));
    --border-1: 1px solid;
    --border-product-tr: 4px solid #5b593e30;
    --border-2: 5px solid var(--color-white);
    --mr-1: calc((100vw - var(--width-1))/2);
    --slider-1__img-size: 40%;
    --slider-1__img--active-size: 90%;
    --navbar-height: 50px;
    --margin-100: 100px;
}

/* font root */
:root {
    --font-size-h1: 54px;
}

html {
    scrollbar-width: none;
}

ul {
    margin: 0;
    padding: 0;
    list-style-type: none; 
}

li {
    margin: 0;
    padding: 0;
}

/* Handle */
::-webkit-scrollbar-thumb {
    background: #4f4f4f78;
}

body::-webkit-scrollbar {
    width: 0px;
}

body::-webkit-scrollbar-thumb {
    background-color: hsla(0, 0%, 53%, 0);
}

.rel {
    position: relative;
}


/* scroll-block */
.scroll-block {
    position: fixed;
    width: 15px;
    height: 100%;
    cursor: grab;
    right: 0;
    z-index: 7;
    touch-action: none;
    user-drag: none;
    will-change: transform;
    transform: translateZ(0);
}

.scroll-block-wrap {
    border-radius: 20px;
    box-shadow: 6px 6px 14px 1px;
    background-color: #ffffffb0;
    width: 43%;
    height: 100%;
}

/* font */
.font-text {
    font-style: normal;
    font-weight: 300;
    font-size: 14px;
    line-height: 119%;
}

.font-h1 {
    font-size: var(--font-size-h1);
    font-weight: 200;
}

.font-h2 {
    font-weight: 200;
    font-size: 38px;
}

.font-h3 {
    font-weight: 200;
    font-size: 29px;
}

.font-bold-accent-2 {
    font-style: normal;
    font-weight: 800;
    font-size: 42px;
}

.font-bold-accent {
    font-style: normal;
    font-weight: 800;
    font-size: 34px;
}

.font-bold-text {
    font-style: normal;
    font-weight: 400;
    font-size: 22px;
}

.font-text-700 {
    font-weight: 700;
    font-size: 14px;
}

.font-1 {
    font-weight: 300;
    font-size: 17px;
}

.font-2 {
    font-weight: 700;
    font-size: 18px;
}

svg {
    display: block;
}

/* default */
input, textarea {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    border-radius: 0;
}

* {
    box-sizing: border-box;
}

body {
    margin: 0;
    font-family: var(--font-family-1);
    min-width: 100vw;
    min-height: 100vh;
    padding: 0.1px;
    /* overflow: hidden; */
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.bodywrap {
    background: var(--color-grad-1);
    padding: 0.1px;
}

button {
    border: none;
    font-family: var(--font-family-1);
}

h1, h2, h3, h4 {
    margin: 0;
    padding: 0;
}

a {
    color: var(--color-white);
    text-decoration: none;
    display: block;
}

a:hover {
    color: var(--color-yellow);
}

input, textarea {
    border: 0;
    font-family: var(--font-family-1);
    background-color: var(--color-transparent);
}

input:focus-visible, textarea:focus-visible {
    outline: none;
}

input:focus::placeholder, textarea:focus::placeholder {
    color: var(--color-transparent);
    text-align: center;
}

input::placeholder, textarea::placeholder {
    font-family: var(--font-family-1);
    color: var(--color-black);
}

label {
    cursor: pointer;
}

img {
    display: block;
    height: 100%;
    width: 100%;
    object-fit: cover;
}

body::-webkit-scrollbar {
}

body::-webkit-scrollbar-thumb {
}

.svg-hub {
    display: none;
}

.d-none {
    display: none;
}

/* BEM ----------------------------------> */
/*  */
.container {
    margin: auto;
    padding: 0 10px 0 10px;
}

/* content */
.content {
    background: var(--color-black);
    padding: 20px;
    max-width: 800px;
    display: flex;
    flex-direction: column;
    row-gap: 50px;
}

.content__header {
    color: var(--color-white);
}

/* logo */
.logo {
    margin: auto;
    padding: 20px 0 20px 0;
    margin-bottom: 50px;
    width: 150px;
}

/* header */
.header {
    border: var(--border-1);
    border-width: 0 0 3px 0;
    padding: 0 0 10px 0;
    text-align: center;
}

/* b50-form */
.b50-form {
    margin: auto;
    width: 300px;
}

.b50-form__header {
    color: var(--color-yellow);
    margin: auto;
    text-align: center;
}

.b50-form__b55 {
    max-width: 300px;
    margin-top: 10px;
}

.b50-form__b55>div {
    width: 100%;
}

.b50-form__b55 form {
    display: flex;
    flex-direction: column;
    row-gap: 20px;
}

.b50-form__button {
    margin: auto;
    margin-top: 20px;
}

.b50-form form .cf7sg-response-output {
    color: var(--color-white);
}

/* BEM (draft) ----------------------------------> */
.init-loader {
    position: fixed;
    width: 100vw;
    height: 100vh;
    /* background: #ededed94; */
    background: var(--color-grad-1);
    z-index: 20;
    opacity: 1;
}

.init-loader--hide {
    animation-name: init-loader;
    animation-duration: 1s;
    z-index: -1;
    opacity: 0;
}

.init-loader svg {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation: init-loader-flick 1s linear;
    animation-iteration-count: infinite;
}

@-webkit-keyframes init-loader-flick {
    0% {
        opacity: 1;
    }

    50% {
        opacity: 0.4;
    }

    100% {
        opacity: 1;
    }
}

@-webkit-keyframes init-loader {
    0% {
        opacity: 1;
        z-index: 20;
    }

    98% {
        opacity: 0;
        z-index: 20;
    }

    100% {
        z-index: -1;
    }
}

.b-w {
    margin-top: var(--navbar-height);
}

/* svg-ok */
.svg-ok {
    width: 25px;
    height: 25px;
}

/* svg-x-cross */
.svg-x-cross {
    display: block;
    stroke: var(--color-grey-op);
    stroke-width: 5px;
    width: 50px;
    height: 50px;
}

/* x-cross-plus */
.x-cross-plus {
    display: block;
    stroke-width: 5px;
    width: 20px;
    height: 20px;
}

/* arrow-1 */
.arrow-1 {
    fill: none;
    stroke: var(--color-grey-op);
    stroke-width: 5px;
}

/* star-1 */
.star-1 {
    display: block;
}

/* b53-input */
.b53-input {
}

/*  */
/* b53-input-file-img */
.b53-input-file-img {
}

.b53-input-file-img__b53-head {
    padding-left: 10px;
    color: var(--color-grey-op);
    margin-bottom: 20px;
    margin-top: 15px;
}

.b53-input-file-img label {
    width: 50px;
    height: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    background: var(--color-grey);
}

.b53-input-file-img p {
    display: flex;
    column-gap: 2px;
}

.b53-input-file-img input {
    display: none;
}

.b53-input-file-img__x-cross-plus {
}

.b53-input-file-img__svg-ok {
}

/* b53-input-text */
.b53-input-text {
    width: 100%;
    position: relative;
    padding-top: 15px;
    transition: all 0.3s;
}

.b53-input-text label {
    position: absolute;
    z-index: 1;
    color: var(--color-grey-op);
    left: 10px;
    top: 7px;
}

.b53-input-text input {
    height: 35px;
    border-bottom: 1px solid var(--color-grey-op);
    color: var(--color-white);
    width: 100%;
    padding: 0 10px 0 10px;
}

.b53-input-text label, .b53-input-text input {
    transition: all 0.2s;
}

.b53-input-text--focus label {
    bottom: initial;
    top: -15px;
    color: var(--color-yellow-35);
}

.b53-input-text--focus input {
    border-bottom: 1px solid var(--color-yellow-35);
}

.b53-input-text--area {
}

.b53-input-text--area textarea {
    width: 100%;
    resize: none;
    height: 100px;
    background: var(--color-grey);
    border: none;
    color: var(--color-white);
    padding: 10px;
}

.b53-input-text--area label {
    position: initial;
    display: block;
    text-align: initial;
    padding-left: 10px;
}

.b53-input-text--assess input {
    display: none;
}

/* wordpress .wpcf7 div style */
.wpcf7 form .wpcf7-response-output {
    color: var(--color-white);
    border-color: var(--color-white);
    position: fixed;
    right: 50px;
    bottom: 50px;
    width: 200px;
    background-color: var(--color-black);
    padding: 20px !important;
    box-shadow: var(--box-shadow-1);
}

.wpcf7 form.invalid .wpcf7-response-output {
    border-color: var(--color-red);
}

.wpcf7 form.sent .wpcf7-response-output {
}

.wpcf7 form .wpcf7-not-valid-tip {
    color: var(--color-red);
    position: absolute;
    font-size: 11px;
    right: 0;
    top: -23px;
}

.wpcf7 form p {
    margin: 0;
    text-align: center;
}

/* button */
.button-1 {
    width: fit-content;
    background-color: var(--color-white);
    padding: 20px 30px 20px 30px;
    box-shadow: var(--box-shadow-1);
    transition: all 0.2s;
    border-radius: 0;
    color: var(--color-black);
}

.button-1:hover {
    cursor: pointer;
    background-color: var(--color-yellow);
}

.button-1:active {
    transform: scale(0.9);
}

.bg-red {
    background-color: red;
}

:root {
    --width-1: 1000px;
    --width-2: 450px;
}

/* burger */
.jnav-burger {
}

.burger-data {
}

.jburger-icon {
    width: 30px;
    display: none;
    position: relative;
    margin-right: 20px;
}

.jburger-icon::before, .jburger-icon::after {
    content: "";
    display: block;
    position: absolute;
    background: #706e63;
    width: 100%;
    height: 4px;
    top: 50%;
    transform: translate(0, -50%);
    transition: all 0.5s;
}

.jburger-icon::before {
    top: 60%;
    transform: translate(0, -50%) rotate(180deg);
}

.jburger-icon::after {
    top: 40%;
}

.jnav-burger--open .jburger-icon::before, .jnav-burger--open .jburger-icon::after {
    background: #595953;
    top: 50%;
}

.jnav-burger--open .jburger-icon::before {
    transform: translate(0, -50%) rotate(135deg);
}

.jnav-burger--open .jburger-icon::after {
    transform: translate(0, -50%) rotate(46deg);
}

/* set-blur */
.set-blur {
    /* filter: blur(13px); */
    /* transition: filter 1s; */
}

.no-blur {
    /* filter: blur(0px); */
}

/* b24-nav */
.b24-nav {
    width: 100vw;
    position: fixed;
    background: var(--color-grad-1);
    z-index: 6;
    opacity: 0.96;
    top: 0;
    box-shadow: 0px -7px 7px 5px;
}

.b24-nav__b25 {
    --navbar-height: 50px;
    max-width: var(--width-1);
    width: auto;
    height: var(--navbar-height);
    margin: auto;
    display: flex;
    justify-content: space-between;
    column-gap: 20px;
    position: relative;
}

.b24-nav__b26-logo {
    display: flex;
    align-items: center;
    padding: 10px;
}

.b24-nav__b26-logo>img {
    height: 17px;
}

.b24-nav__logo {
}

.b24-nav__b27 {
    display: flex;
    justify-content: space-between;
    column-gap: 40px;
    text-transform: uppercase;
    position: relative;
    font-weight: 400;
}

.b24-nav__b28 {
    height: 100%;
    display: flex;
    align-items: center;
    padding: 10px;
    transition: all 0.2s;
    position: relative;
    box-sizing: border-box;
    cursor: pointer;
}

/* b24-2 */
.b24-2 {
    position: relative;
}

a.b24-2 {
    color: black;
}

.b24-2--1 a {
    color: var(--color-black);
}

.b24-2::after {
    display: none;
    content: "";
    position: absolute;
    width: 100%;
    height: 2px;
    background: var(--color-black);
    position: absolute;
    bottom: -8px;
}

.b24-nav__b28:hover .b24-2::after {
    display: block;
}

/* b24-3 */
.b24-3 {
    position: absolute;
    z-index: 3;
    background: var(--color-black);
    top: 100%;
    display: none;
    width: max-content;
}

.b24-nav__b28:hover .b24-3 {
    display: block;
}

.b24-3 a {
    padding: 5px 10px 5px 10px;
}

.b24-3 a:first-child {
    padding-top: 10px;
}

.b24-3 a:last-child {
    padding-bottom: 10px;
}

/* b1 */
.b1 {
    width: auto;
    position: relative;
    margin-top: var(--navbar-height);
}

.b1__b2 {
    width: auto;
    height: 460px;
    background: var(--color-grad-2);
}

.b1__b3 {
    height: 88px;
    width: auto;
}

.b1__b4 {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    margin: auto;
}

.b1__b5 {
    max-width: var(--width-1);
    width: auto;
    height: 100%;
    margin: auto;
    padding: 0 10px 0 10px;
    display: flex;
    flex-direction: column;
    justify-content: space-around;
}

.b1__b6 {
    display: flex;
    justify-content: space-between;
    width: auto;
    column-gap: 120px;
    align-items: center;
}

.b1__b7 {
    /* margin-top: 110px; */
    width: auto;
    max-width: 464px;
    flex: 1 1 0;
    padding-left: 30px;
}

.b1__b29-h1 {
    text-align: initial;
    width: auto;
}

.b1__b30 {
    margin-top: 15px;
    width: auto;
}

.b1__slider-1 {
    flex-grow: 1;
    height: 500px;
    /* position: relative; */
    padding-top: 20px;
}

.b1__button-1 {
    margin-top: 60px;
}

.b9 {
    width: auto;
}

.b9__b10 {
    margin: auto;
    display: flex;
    column-gap: 15px;
    width: fit-content;
}

/* slider-dots */
.b10 {
}

.b10__b11-dot {
    width: 10px;
    height: 10px;
    background: var(--color-black);
    border-radius: 50%;
    transition: all 0s 1s;
}

.b10__b11-dot--active {
    background: var(--color-yellow);
}

/* slider-1 */
.slider-1 {
    position: relative;
    flex: 2 1 0;
}

.slider-1__img {
    width: 100%;
    height: 100%;
    top: 50%;
    transform: translateY(-50%) scale(40%) translateX(75%);
    position: absolute;
    right: 0;
    z-index: 2;
    animation-duration: 2s;
    animation-timing-function: ease-out;
    box-shadow: 0 0 0 rgba(0, 0, 0, 0.25);
}

.slider-1__b8 {
    width: 100%;
    height: 100%;
    position: relative;
}

.slider-1__img--active {
    transform: translateY(-50%) scale(90%) translateX(-5%);
    z-index: 5;
    /* display: none; */
    animation-name: slider-1__img--active;
    box-shadow: var(--box-shadow-1);
}

.slider-1__img--right {
    z-index: 3;
}

.slider-1__img--left {
    z-index: 1;
    animation-name: slider-1__img--left;
}

@-webkit-keyframes slider-1__img--left {
    /* from active */
    0% {
        transform: translateY(-50%) scale(90%) translateX(-5%);
        z-index: 5;
        animation-timing-function: ease-in;
        box-shadow: var(--box-shadow-1);
    }

    50% {
        transform: translateY(-50%) scale(40%) translateX(-75%);
        z-index: 5;
        animation-timing-function: ease-out;
        box-shadow: 0 0 0 rgba(0, 0, 0, 0.25);
    }

    51% {
        z-index: 1;
    }

    100% {
        transform: translateY(-50%) scale(40%) translateX(75%);
        z-index: 1;
    }
}

@-webkit-keyframes slider-1__img--active {
    /* from right */
    0% {
        transform: translateY(-50%) scale(40%) translateX(75%);
        z-index: 4;
        box-shadow: 0 0 0 0;
    }

    50% {
        transform: translateY(-50%) scale(40%) translateX(75%);
        z-index: 4;
        box-shadow: 0 0 0 0;
    }

    100% {
        transform: translateY(-50%) scale(90%) translateX(-5%);
        z-index: 5;
        box-shadow: var(--box-shadow-1);
    }
}

.slider-1__img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* b12 */
.b12 {
    width: 100vw;
}

.b12__b23-h2 {
}

.b12__b13 {
    max-width: var(--width-1);
    width: auto;
    margin: auto;
    padding: 0 10px 0 10px;
}

.b12__b14 {
    display: flex;
    justify-content: center;
    width: auto;
    column-gap: 20px;
    margin-bottom: 100px;
}

.b12__b15-card {
    max-width: 400px;
    flex: 1 1 0;
    flex-grow: 1;
    background: var(--color-white);
    box-shadow: var(--box-shadow-1);
}

/* b15-card */
.b15-card__b16 {
    width: auto;
}

.b15-card__b17 {
    height: 150px;
    width: auto;
}

.b15-card__b17 img {
    object-fit: cover;
    width: 100%;
    height: 100%;
}

.b15-card__b18-h3 {
    padding: 15px;
    margin: auto;
    width: fit-content;
    border-bottom: 1px solid var(--color-black);
    text-align: center;
    height: 100px;
    display: flex;
    align-items: center;
}

.b15-card__b19 {
    padding: 30px;
    width: auto;
    display: flex;
    flex-direction: column;
    row-gap: 30px;
}

.b15-card__b20 {
    column-gap: 20px;
    display: flex;
    align-items: center;
}

.b15-card__b21 {
}

.b15-card__b22 {
}

/* b21 */
.b21 img {
    width: 55px;
}

/* b22-upper */
.b22-upper {
    text-transform: uppercase;
}

/* b23-h2 */
.b23-h2 {
    padding: 15px 30px 15px 30px;
    border-bottom: 1px solid;
    margin: auto;
    margin-top: 60px;
    margin-bottom: 40px;
    width: fit-content;
    text-align: center;
}

.b23-h2--dark {
    border-color: var(--color-black);
    color: var(--color-black);
}

.b23-h2--light {
    border-color: var(--color-white);
    color: var(--color-white);
    width: fit-content;
}

/* b31 */
.b31 {
    width: 100vw;
    background: var(--color-black);
    padding: 0.1px;
}

.b31__b32 {
    width: auto;
    max-width: var(--width-1);
    margin: auto;
    padding: 0 10px 0 10px;
}

.b31__b23-h2 {
}

.b31__b33 {
    display: grid;
    width: auto;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: repeat(4, 140px);
    row-gap: 20px;
    column-gap: 20px;
    margin-bottom: 100px;
}

/* b33 */
.b33__b34-prod-group {
    position: relative;
    width: auto;
    cursor: pointer;
    overflow: hidden;
}

.b33__b34-prod-group--gc-1 {
    order: 1;
    grid-row: 1/3;
    grid-column: 1/3;
}

.b33__b34-prod-group--gc-2 {
    order: 2;
    grid-row: 1/3;
}

.b33__b34-prod-group--gc-3 {
    order: 3;
    grid-row: 1/3;
}

.b33__b34-prod-group--gc-4 {
    order: 4;
    grid-row: 3/4;
}

.b33__b34-prod-group--gc-5 {
    order: 5;
    grid-row: 2/4;
}

.b33__b34-prod-group--gc-6 {
    order: 6;
    grid-column: 2/5;
    grid-row: 3/5;
}

.b33__b34-prod-group--gc-7 {
    order: 7;
}

.b33__b34-prod-group--gc-8 {
    order: 8;
}

.b33__b34-prod-group-name {
    position: absolute;
    z-index: 0;
    opacity: 0;
    width: 100%;
    min-height: 30%;
    bottom: 0;
    background: var(--color-grad-3);
    color: var(--color-white);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.5s;
    text-align: center;
    padding: 10px;
}

.b33__b34-prod-group:hover .b33__b34-prod-group-name {
    opacity: 1;
}

.b33__b34-prod-group img {
    transition: all 0.5s;
    transform: scale(1);
}

.b33__b34-prod-group:hover img {
    transform: scale(1.1);
}

/* b35 */
.b35 {
    width: auto;
}

.b35__b36 {
    width: auto;
}

.b35__b23-h2 {
}

.b35__b37 {
    width: auto;
    display: flex;
    flex-direction: column;
    row-gap: 70px;
    margin-bottom: 100px;
}

.b35__b38-line {
    height: auto;
    width: 100%;
    max-width: calc(((100vw - var(--width-1))/2) + var(--width-1));
    margin-left: auto;
}

/* b38 */
.b38-line--light {
    background: var(--color-grad-4);
}

.b38-line__b39 {
    width: auto;
    max-width: var(--width-1);
    padding: 0 10px 0 10px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
    overflow: hidden;
    gap: 30px;
}

.b38-line__b40-text {
    color: var(--color-white);
    margin-left: 10%;
    flex: 1 1 0;
}

.b38-line__b41-image {
    overflow: hidden;
    border-radius: 50%;
    border: var(--border-2);
    width: 390px;
}

.b38-line__b41-image img {
}

.b38-line__b42 {
    width: auto;
    background: var(--color-black);
    border-radius: 20px 0 0 20px;
    width: 100%;
    height: fit-content;
}

.b38-line__b41-image--black {
    --width-3: 250px;
    width: var(--width-3);
    height: var(--width-3);
    position: absolute;
    left: 10%;
}

.b38-line__b39--black {
    height: fit-content;
    position: relative;
    overflow: initial;
    min-height: 130px;
    padding: 18px;
}

.b38-line--dark {
    display: flex;
    align-items: center;
    padding-left: 10px;
}

.b38-line__b40-text-dark {
    column-gap: 20px;
    margin-left: calc(10% + 189px + 10%);
    padding: 20px 0 20px 0;
    display: flex;
}

.b38-line__b43-text {
    min-height: 50px;
    /* border: 1px solid var(--color-white); */
    border-width: 0 0 0 5px;
    padding-left: 10px;
}

/* b44 */
.b44 {
    background: var(--color-black);
    width: auto;
    padding-top: 10px;
}

.b44__b45 {
    width: auto;
    height: 100%;
    max-width: calc(((100vw - var(--width-1))/2) + var(--width-1));
    display: flex;
    justify-content: space-between;
    column-gap: 100px;
    padding-right: 10px;
}

.b44__b46-img {
    flex-grow: 1;
    width: min-content;
    max-height: 1000px;
}

.b44__b46-img>img {
}

.b44__b47 {
    height: 100%;
    width: 600px;
    margin-bottom: 125px;
}

.b44__b48 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    justify-content: space-between;
    width: auto;
    margin-bottom: 40px;
}

.b44__b50-form {
}

.b44__b50-form form {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* b50-form */
.b50-form {
    width: auto;
}

.b50-form form {
}

.b50-form__b51-header {
    color: var(--color-yellow);
}

.b50-form__b52-content {
    width: auto;
    margin-top: 20px;
}

.b50-form__b54-inputs {
    display: flex;
    flex-direction: column;
    row-gap: 32px;
    width: auto;
    max-width: 260px;
}

.b50-form__b56-submit {
}

.b50-form__button-1 {
}

.cf7sg-container {
    width: auto;
}

.cf7sg-container>div {
    width: auto;
}

.wpcf7 {
    width: auto;
}

.wpcf7-spinner {
    transform: translateY(100%);
    position: absolute;
    left: 0;
    margin: auto;
    right: 0;
    bottom: 0;
}

.wpcf7 form p {
    position: relative;
}

/* b49 */
.b49 {
    background: var(--color-grey);
    padding: 10px;
}

.b49--1 {
    grid-column: 1/3;
    text-align: center;
}

.b49--light {
    color: var(--color-white);
}

/* b57 */
.b57 {
    width: auto;
    padding: 0.1px;
    background-image: url(/wp-content/uploads/2023/04/Frame-95.png);
    background-blend-mode: color-dodge;
    display: none;
}

.b57__b74-form {
}

.b57__b58 {
    max-width: var(--width-1);
    margin: auto;
    width: auto;
    padding: 0 10px 0 10px;
    margin-bottom: 100px;
}

.b57__b73 {
    margin-left: auto;
    width: fit-content;
}

.b57__b59 {
    width: auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 700px;
    column-gap: 20px;
}

.b57__b60-reviews {
    width: calc(300px + 40px);
    padding-top: 15px;
    padding-left: 40px;
    display: flex;
    flex-direction: column;
    row-gap: 40px;
    height: 100%;
    overflow-y: auto;
    padding-right: 10px;
    position: relative;
}

.b57__b60-review {
}

/* b69-scroll */
.b69-scroll {
}

.b69-scroll::after, .b69-scroll::before {
    content: "";
    width: 100%;
    height: 182px;
    background: linear-gradient(180deg, #D9D9D9 0%, rgb(217 217 217 / 0%) 100%);
    position: absolute;
    left: 0;
    top: 0;
}

.b69-scroll::after {
}

.b69-scroll::before {
}

/* b61 */
.b61-review {
    cursor: pointer;
    background: var(--color-white);
    padding: 20px;
    padding-left: 40px;
    position: relative;
    max-width: 300px;
    width: auto;
}

.b61-review__b62-avatar {
    width: 80px;
    position: absolute;
    top: -15px;
    left: -40px;
    border-radius: 50%;
    overflow: hidden;
    border: var(--border-2);
}

.b61-review__b63 {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    width: auto;
    column-gap: 20px;
}

.b61-review__b64-name {
}

.b61-review__b65-stars {
}

.b61-review__b62-text {
    width: auto;
    margin-top: 15px;
}

/* b64-name */
.b64-name {
    color: var(--color-grey-2);
    width: auto;
}

/* b65-stars */
.b65-stars {
    display: flex;
    column-gap: 10px;
    width: max-content;
    justify-content: space-between;
}

.b65-stars__b65-star {
}

.b65-stars__star-1 {
    --size: 18px;
    width: var(--size);
    height: var(--size);
    stroke-width: 0.5px;
}

/* b65-star */
.b65-star {
    width: max-content;
    fill: #fdc707;
    transition: fill 0.2s cubic-bezier(1, 0.01, 1, 1);
    cursor: pointer;
}

.b65-star--hide {
    fill: var(--color-transparent);
    stroke: #b8b8b8a1;
}

/* b60-review */
.b60-review {
    max-width: 570px;
    width: -webkit-fill-available;
    padding-left: 80px;
    display: none;
}

.b60-review--active {
    display: block;
}

.b60-review__b67 {
    background: var(--color-white);
    width: auto;
}

.b60-review__b60-images {
}

.b60-review__b63 {
    margin-top: 30px;
    margin-left: auto;
    display: flex;
    flex-direction: column;
    row-gap: 10px;
}

.b60-review__b68 {
}

.b60-review__b66 {
    position: relative;
    min-height: 180px;
    width: auto;
    padding: 20px;
    padding-left: 80px;
}

.b60-review__b60-avatar {
    width: 160px;
    overflow: hidden;
    border-radius: 50%;
    border: var(--border-2);
    position: absolute;
    top: 20px;
    left: -80px;
}

.b60-review__b60-head {
    border-bottom: 1px solid var(--color-grey-3);
    padding-bottom: 10px;
}

.b60-review__b60-text {
    width: auto;
    padding-top: 15px;
}

/* b60-images */
.b60-images {
}

.b60-images__b60-image {
    display: none;
}

.b60-images__b71 {
    height: auto;
    display: flex;
    padding: 5px;
    column-gap: 5px;
}

.b60-images__svg-x-cross {
    width: 50px;
    height: 50px;
}

.b60-images__b71::after {
    content: attr(data-after);
    width: 50%;
    background: #00000094;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 500;
    font-size: 62px;
    color: var(--color-white);
}

.b60-images__b60-exit {
    position: absolute;
    left: 0;
    right: 0;
    top: 20px;
    margin: auto;
    display: none;
}

.b60-images__b71 {
    cursor: pointer;
}

.b60-images__b60-image {
}

.b60-images__b60-image:nth-child(1) {
    width: 50%;
    display: block;
}

.b60-images__b72-arrow {
    display: none;
}

/* box-fullscreen */
.box-fullscreen {
    position: fixed;
    width: 100vw;
    height: 100vh;
    top: 0;
    left: 0;
    display: flex;
    z-index: 2;
    background: var(--color-black-op90);
}

.box-fullscreen .b60-images__b60-image {
    display: none;
}

.box-fullscreen .b60-images__b60-image {
}

.box-fullscreen .b60-images__b71 {
    width: 100%;
    padding: 0;
}

.box-fullscreen .b60-images__b60-image--active {
    display: block;
}

.box-fullscreen .b60-images__b71::after {
    display: none;
}

.box-fullscreen .b60-images__b72-arrow {
    width: 180px;
    /* background: #ff000094; */
    height: 100%;
    position: absolute;
    display: flex;
    justify-content: center;
}

.box-fullscreen .b60-images__b60-image--active {
    width: inherit;
}

.box-fullscreen .b60-images__b60-image--active img {
    object-fit: contain;
}

.box-fullscreen .b60-images__b60-exit {
    display: flex;
    justify-content: center;
    align-items: center;
}

/* b72-arrow */
.b72-arrow {
    cursor: pointer;
}

.b72-arrow__arrow-1 {
    width: 40px;
    height: 100%;
}

.b72-arrow--left {
}

.b72-arrow--right {
    right: 0;
}

.b72-arrow--right .arrow-1 {
    transform: rotate(180deg);
}

/* b60-exit */
.b60-exit {
    cursor: pointer;
    width: 100px;
    height: 100px;
}

/* b73 */
.b73 {
}

.b73__button-1 {
}

/* b74-form */
.b74-form {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    display: none;
    align-items: center;
    justify-content: center;
    background: var(--color-black-op90);
    z-index: 2;
}

.b74-form__b23-h2 {
    margin-top: 0;
}

.b74-form.box-fullscreen.b57__b74-form {
}

.box-fullscreen {
    display: flex;
}

.b74-form__b74-1 {
    background: var(--color-black);
    padding: 30px;
}

.b74-form__b54-inputs {
    display: grid;
    max-width: 600px;
    grid-template-columns: repeat(2, 1fr);
    width: auto;
    position: relative;
    column-gap: 40px;
    row-gap: 20px;
}

.b74-form__b56-submit {
    margin: auto;
    margin-top: 30px;
}

.b74-form__b53-input {
}

.b74-form__b60-exit {
    position: fixed;
    top: 0;
    right: 0;
    padding: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.b74-form__svg-x-cross {
}

/* b75-cards */
.b75-cards {
    width: auto;
    display: flex;
    column-gap: 40px;
    color: var(--color-white);
    justify-content: space-between;
    background: var(--color-grad-5);
    padding: 20px;
}

.b75-cards__b75-card {
}

.b75-cards__b75-item {
}

/* b75-card */
.b75-card {
    display: flex;
    flex: 1 1 0px;
    flex-direction: column;
    max-width: 300px;
}

.b75-card__b75-img {
}

.b75-card__b75-name {
}

.b75-card__b75-desc {
}

/* b75-img */
.b75-img {
    border-radius: 50%;
    overflow: hidden;
    border: var(--border-2);
    box-shadow: var(--box-shadow-1);
}

.b75-img:after {
    content: "";
    /* display: block; */
    padding-bottom: 100%;
}

/* b75-name */
.b75-name {
    height: 115px;
    min-height: 70px;
    border: var(--border-1);
    border-width: 0 0 1px 0;
    padding: 10px;
    display: flex;
    align-items: center;
    text-align: center;
    justify-content: center;
    font-size: 20px;
}

/* b75-desc */
.b75-desc {
    flex-grow: 1;
    padding: 10px;
}

/* b75 */
.b75 {
    width: auto;
    background: var(--color-black);
    padding: 0.1px;
    display: none;
}

.b75__b75-cards {
}

/* b75-1 */
.b75-1 {
    width: auto;
    max-width: var(--width-1);
    margin: auto;
    padding: 0.1px;
    margin-bottom: 100px;
}

.b75-1__b75-1 {
}

/* b75-img-1 */
.b75-img-1 {
    overflow: hidden;
    border-radius: 50%;
}

/* b75-img-2 */
.b75-img-2 {
}

/* b76 */
.b76 {
}

.b76__b13 {
}

.b76__b76-w1 {
}

/* b76-cards */
.b76-cards {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    grid-row-gap: 20px;
    grid-column-gap: 20px;
    color: #dbe9ee;
    padding: 0 10px 0 10px;
}

/* b76-card */
.b76-card {
    box-shadow: var(--box-shadow-1);
    display: grid;
    transition: all 0.2s;
}

.b76-card:hover {
    /* transform: scale(1.03); */
    /* box-shadow: 8px 8px 9px rgba(0, 0, 0, 0.25); */
}

.b76-card--1 {
    grid-row: 1/3;
    background: var(--color-black);
    grid-auto-flow: column;
    grid-template-columns: repeat(2, 1fr);
}

.b76-card--2 {
    grid-row: 1/4;
    background: #d6edf5;
    color: var(--color-black);
}

.b76-card--3 {
    background: var(--color-yellow);
    color: var(--color-black);
}

.b76-card--4 {
    grid-row: 3/5;
    background: var(--color-black);
    padding: 30px;
    display: grid;
    grid-gap: 20px;
}

.b76-card--5 {
    grid-column: 1/3;
    grid-template-columns: 1fr 2fr 6fr;
    overflow: hidden;
    min-height: 200px;
    position: relative;
    color: #dbe9ee;
}

.b76-card--5:hover .b76-card-img--2 {
    transform: scale(1.3);
    background-size: 250px;
    background-position-x: -28px;
}

.b76-card--5:hover .b76-card-arrow {
    opacity: 1;
    right: 30px;
}

.b76-card-b1 {
    background: var(--color-yellow);
}

.b76-card-img--2 {
    background: var(--color-grad-11);
    transform: scale(1.02);
    transition: all 0.7s ease-out;
    background-size: 239px;
    background-position-x: 0px;
    position: relative;
}

.b76-card-img--2 img {
    position: absolute;
    object-fit: contain;
}

.b76-card-text--3 {
    background: var(--color-black);
}

.b76-card-arrow {
    position: absolute;
    width: 100px;
    height: 14px;
    right: 40px;
    bottom: 30px;
    opacity: 0;
    transition: all 0.7s;
    fill: var(--color-yellow);
}

/* b76-w1 */
.b76-w1 {
    max-width: var(--width-1);
    width: auto;
    margin: auto;
    margin-bottom: 100px;
}

/* b76-card-text */
.b76-card-text {
    padding: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.b76-card-text--1 {
    display: block;
}

.b76-card-text--2 {
    padding: 0;
}

.b76-card-text__b76-text-on-circle {
    margin-top: 10px;
}

/* b76-card-text-item */
.b76-card-text-item {
}

.b76-card-text-item--1 {
    color: white;
}

/* b76-card-imgs */
.b76-card-imgs {
    display: flex;
}

.b76-card-imgs--1 {
    display: grid;
    grid-auto-flow: column;
}

.b76-card-imgs--1 img {
    object-fit: contain;
}

/* b76-card-img */
.b76-card-img {
}

/* b76-card-img-1 */
.b76-card-img-1 {
    object-fit: contain;
}

/* b76-text-on-circle */
.b76-text-on-circle {
    position: relative;
}

/* b76-text-on-circle-text */
.b76-text-on-circle-text {
    position: absolute;
    color: var(--color-white);
    top: 0;
    height: 100%;
    width: 100%;
    display: flex;
    align-items: center;
    padding-left: 10px;
}

/* b76-text-on-circle-circle */
.b76-text-on-circle-circle {
    height: 100px;
    width: 100px;
    border-radius: 50%;
    background: var(--color-black);
}

/* circle-1 */
.circle-1 {
}

/* svg-store */
.svg-store {
    display: none;
}

/* ftr-logo */
.ftr-logo {
    width: 350px;
}

/* ftr-cont */
.ftr-cont {
    display: flex;
    flex-direction: column;
    gap: 50px;
    margin-top: 30px;
}

/* ftr-w1 */
.ftr-w1 {
    display: flex;
    gap: 100px;
    justify-content: center;
}

/* ftr-b */
.ftr-b {
    padding: 10px;
}

.ftr-b--1 {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

/* ftr-link */
.ftr-link {
}

/* ftr-b2 */
.ftr-b2 {
    text-align: center;
}

/* ftr-logo-w */
.ftr-logo-w {
    background: var(--color-grad-5);
    display: flex;
    justify-content: center;
    align-items: center;
}

/* footer */
.footer {
    width: auto;
    background: var(--color-black);
    padding: 0.1px;
    color: var(--color-white);
}

.footer__b76-w1 {
    margin-top: 20px;
    margin-bottom: 25px;
}

/* menu */
ul.menu {
    padding: 0;
    margin: 0;
}

ul.menu li {
    display: block;
}

ul.menu>li>a {
    color: var(--color-black);
}

ul.menu .sub-menu {
    position: absolute;
    z-index: 3;
    bottom: -107px;
    padding: 10px;
    left: 0;
    background: var(--color-black);
    display: none;
    opacity: 0;
    transition: all 0.3s;
    flex-direction: column;
    gap: 10px;
}

.b24-nav__b28:hover .sub-menu {
    display: flex;
    opacity: 1;
}

.sub-menu li {
}

.sub-menu a {
}

/* b77-empty-content */
.b77-empty-content {
    margin: auto;
    background: var(--color-grad-2);
    padding: 10px;
    min-height: 423px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.b77-empty-content-1 {
    width: auto;
    max-width: var(--width-1);
    text-align: center;
}

/* b35-1 */
.b35-1 {
    border-left: 5px solid var(--color-white);
    padding-left: 10px;
}

/* b78 */
.b78 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    /* grid-template-rows: max-content min-content; */
    /* grid-gap: 3px; */
    transform: translateY(-2px);
}

.b78-i {
}

.b78-text {
}

.b78-text-1 {
    max-width: calc(var(--width-1)/2);
    padding-left: 10px;
    margin: 140px 0px 80px auto;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.b78-desc {
}

.b78-img {
    background-size: calc(100% + 450px);
    background-position: center;
    z-index: 0;
    position: relative;
}

.b78-img img {
    max-width: 80%;
    height: auto;
    object-fit: contain;
    margin: auto;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    box-shadow: var(--box-shadow-1);
    bottom: 0;
    max-height: 60%;
    width: auto;
}

img.attachment-full.size-full {
}

.b78-img--revers {
    /* transform: scale(-1, 1); */
    perspective: 1000px;
}

.b78-img-bg {
    background: var(--color-grad-1-half-alpha);
    width: 100%;
    height: 100%;
    transform: translateX(-2px);
}

/* b79 */
.b79 {
    background: var(--color-grad-6);
    padding: 0.1px;
    box-shadow: 0px 4px 0px 5px #747474;
}

.b79-1 {
    max-width: var(--width-1);
    margin: auto;
}

.b79-descr {
    padding: 0 10px 0 10px;
}

.b79-img {
    margin: 50px 0 100px 0;
}

.b79-1-video {
    width: 100%;
}

/* slow-opacity */
.slow-opacity {
    opacity: 0;
    transition: opacity 1s;
    /* -webkit-transition: -webkit-opacity 1s; */
}

.slow-opacity--do {
    opacity: 1;
}

/* extend-window */
.extend-window {
    transition: max-height 3s;
    max-height: 200px;
    overflow: hidden;
}

.extend-window--extend {
    max-height: 1000px;
}

/* b79-2 */
.b79-2 {
    display: grid;
    grid-template-columns: 2fr 3fr;
    background: var(--color-grad-8);
}

.b79-2-text-w {
    background: var(--color-grad-7);
    box-shadow: var(--box-shadow-1);
}

.b79-2-text {
    --margin: 79px;
    padding: 0 10px 0 10px;
    margin: var(--margin) 0 var(--margin) 0px;
    margin-left: var(--mr-1);
}

.b79-2-text.font-bold-text {
    color: var(--color-white);
}

.b79-2-img {
    margin-right: var(--mr-1);
    display: flex;
    grid-template-columns: 1fr 1fr;
    align-self: center;
    grid-template-rows: 240px;
    padding: 20px 10px 20px 10px;
    height: fit-content;
}

.b79-2-img-i {
    width: 100%;
    height: 100%;
    align-self: center;
    padding: 0 18px 0 18px;
}

.b79-2-img-i img {
    object-fit: contain;
}

.b79-loader {
    width: 100px;
    margin: auto;
}

/* rotating */
.rotating {
    -webkit-animation: rotating 2s linear infinite;
}

@-webkit-keyframes rotating {
    from {
        -webkit-transform: rotate(0deg);
    }

    to {
        -webkit-transform: rotate(360deg);
    }
}

/* b79-3 */
.b79-3 {
    min-height: 500px;
    background: var(--color-grad-9);
    padding: 0.1px;
}

.b79-3-w {
    max-width: var(--width-1);
    margin: 60px auto 0 auto;
    padding: 0 10px 0 10px;
    display: flex;
    justify-content: center;
    gap: 122px;
    align-items: center;
}

.b79-3-text {
    max-width: 300px;
}

.b79-3-blocks {
    max-width: 362px;
    gap: 54px;
    display: flex;
    flex-direction: column;
    color: var(--color-white);
}

.b79-3-bw {
    position: relative;
}

.b79-3-bw--curve {
    transform: rotate(353deg);
}

.b79-3-b {
    width: 100%;
}

.b79-3-btext {
    position: absolute;
    z-index: 1;
    left: 10px;
    top: 10px;
}

.b79-3-b--molten {
    height: 115px;
    filter: var(--drop-shadow);
}

.b79-3-b--curve {
    height: 80px;
    filter: var(--drop-shadow);
}

.b79-3-b--bzz {
}

/* b79-4 */
.b79-4 {
    display: flex;
    gap: 5px;
    height: 87px;
    align-items: center;
}

.b79-4-i {
}

.b79-4-bzz {
    width: 30px;
    height: 50px;
}

.b79-4-l {
}

.b79-4-text {
    flex: 1 1 0;
    background: var(--color-black);
    box-shadow: var(--box-shadow-1);
    padding: 10px;
}

.b79-4-r {
    transform: scale(-1, 1);
}

/* b80 */
.b80 {
    padding: 0.1px;
    background: var(--color-black);
    color: var(--color-white);
}

.b80__b23-h2 {
    max-width: var(--width-1);
}

.b80-cont {
    display: flex;
    flex-direction: column;
    margin-top: 100px;
    gap: 140px;
    margin-bottom: 100px;
}

/* b80-1 */
.b80-1 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

.b80-1-btext {
    display: flex;
    flex-direction: column;
    gap: 50px;
}

.b80-1-head {
    background: var(--color-grad-7);
    max-width: 598px;
    box-shadow: var(--box-shadow-1);
    height: min-content;
}

.b80-1-htext {
    padding: 23px;
    margin-left: var(--mr-1);
    padding-left: 10px;
    padding-right: 80px;
}

.b80-1-text {
    margin-left: var(--mr-1);
    padding: 0 20px 0 10px;
    grid-column: 1/2;
}

.b80-1-img {
    margin-right: var(--mr-1);
    padding-right: 10px;
    position: relative;
    grid-row: 1/3;
    grid-column: 2/3;
    display: flex;
    align-items: center;
}

.b80-1-img:not(.b80-1-img--full) img {
    object-fit: contain;
}

.b80-1-video {
    width: 100%;
    border-radius: 20px;
    box-shadow: var(--box-shadow-1);
}

.b80-1-img--led-diod::before {
    display: block;
    content: "LED DIOD";
    font-size: 25px;
    font-weight: 800;
    position: absolute;
    right: 25px;
    top: 15px;
}

.b80-1--revers {
    transform: scale(-1, 1);
}

.b80-1--revers span {
    display: block;
}

.b80-1--revers .b80-1-head {
    max-width: none;
}

.b80-1--revers .b80-1-text {
    padding-right: 80px;
}

.b80-1--revers :where(.b80-1-video, span, .b80-1-img--full) {
    transform: scale(-1, 1);
}

.b80-1-img--full {
    margin-right: 0;
    padding-right: 0;
    height: 100%;
    box-shadow: var(--box-shadow-1);
}

.b80-1-img--full img {
}

.b80-1-img--full3 img, .b80-1-img--full2 img {
    object-fit: contain;
}

.b80-1-img--full2 {
    box-shadow: none;
}

.b80-1-img--video-full {
    margin: 0;
    padding: 0;
}

.b80-1-img--video-full video {
    border-radius: 0;
}

.b80-1-img--revers img {
    transform: scale(-1, 1);
}

/* b81 */
.b81 {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.65) 0%, #efefef00 100%);
    padding: 0.1px;
}

.b81-1 {
    max-width: var(--width-1);
    margin: 60px auto 60px auto;
    display: flex;
    justify-content: space-between;
    gap: 20px;
    align-items: center;
    padding: 0 10px 0 10px;
}

.b81-1-text {
    max-width: 420px;
    text-align: center;
    position: relative;
}

.b81-1-text svg {
    width: 119px;
    height: 16px;
    position: absolute;
    bottom: -64px;
    left: 0;
    right: 0;
    margin: auto;
    animation: arrow-move;
    animation-iteration-count: infinite;
    animation-duration: 1s;
    animation-timing-function: linear;
}

@-webkit-keyframes arrow-move {
    0% {
        transform: translateX(0);
    }

    50% {
        transform: translateX(10px);
    }

    100% {
        transform: translateX(0);
    }
}

.b81-1-wform {
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.37) 0%, rgba(0, 0, 0, 0.37) 100%), linear-gradient(90deg, #8D9599 0%, #b4d8e1 0.01%, #B9C2C7 100%);
    /* shadow */
    box-shadow: 8px 8px 4px 0px rgba(0, 0, 0, 0.25);
    box-shadow: var(--box-shadow-1);
    flex: 1 1 0;
    max-width: 401px;
}

.b81-1-wform .b50-form__b54-inputs {
    padding: 0;
    margin: auto;
    margin-bottom: 44px;
    margin-top: 10px;
    padding: 40px 30px 55px 30px;
    box-sizing: content-box;
    background: #3d3c3b;
    box-shadow: var(--box-shadow-1);
}

.b81-1-wform .button-1 {
    width: 100%;
    box-shadow: none;
}

/* b82 */
.b82 {
    padding: 0.1px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.65) 0%, #efefef00 100%);
}

.b82-1 {
    max-width: var(--width-1);
    margin: auto;
    padding: 0 10px 0 10px;
    margin-bottom: 100px;
}

.b82__b23-h2 {
    margin-bottom: 100px;
}

.b82-cont {
    display: flex;
    flex-direction: column;
    gap: 80px;
}

.b82-card {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.b82-card-i {
}

.b82-card-ques {
    border-left: 5px solid var(--color-black);
    padding: 10px;
    padding-left: 40px;
}

.b82-card-answ {
    max-height: 100vh;
    padding: 10px;
    padding-left: 40px;
    transition: max-height 0.5s, padding 0.5s;
}

.b82-card--opened .b82-card-wansw {
}

/* b83 */
.b83 {
    background: var(--color-black);
    color: var(--color-white);
    padding: 0.1px;
}

.b83-w {
    max-width: var(--width-1);
    margin: auto;
    padding: 0 10px 0 10px;
    margin-bottom: 100px;
    margin-top: 50px;
}

.b83-cont {
    margin-top: 50px
}

/* b84 */
.b84 {
    position: fixed;
    z-index: -1;
    background: #000000d9;
    min-width: 100vw;
    min-height: 100vh;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: opacity 0.5s;
}

.b84--open {
    display: flex;
    z-index: 1000;
    opacity: 1;
}

.b84-box {
    display: flex;
    flex: 1 1 0;
    max-width: 700px;
    background: var(--color-grad-2);
    padding: 60px;
    text-align: center;
    box-shadow: var(--box-shadow-1);
    flex-direction: column;
    margin: 0 10px 0 10px;
    gap: 40px;
    position: relative;
}

.b84-text {
    color: var(--color-white);
}

.b84-form {
}

.b84-form input:not(:hover) {
    border-color: var(--color-white);
}

.b84-form label:not(:hover) {
    color: var(--color-white);
}

.b84-form .b50-form__b54-inputs {
    margin: auto;
}

.b84-form .b50-form__b56-submit {
    margin-top: 60px;
}

.b84-close {
    stroke: #ffffff33;
    width: 42px;
    height: 42px;
    right: 20px;
    top: 20px;
    position: absolute;
    stroke-width: 9px;
}

.b84-close:hover {
    cursor: pointer;
}

.b84-wform-head {
    color: var(--color-yellow);
    text-align: center;
    padding: 15px;
    max-width: 280px;
    margin: auto;
    margin-top: 18px;
    width: auto;
    box-sizing: content-box;
}

.b84-form form .cf7sg-response-output {
    color: var(--color-white);
}

.b85 {
    overflow: hidden;
    position: relative;
    height: 550px;
    margin-top: var(--navbar-height);
}

.b85-arrowimg {
    position: absolute;
    max-width: 1218px;
    object-fit: contain;
    left: 0;
    right: 0;
    margin: auto;
    top: 33px;
    height: 175%;
}

.b85-manboxesimg {
    position: absolute;
    max-width: 946px;
    object-fit: contain;
    left: 0;
    right: 0;
    margin: auto;
    /* display: none; */
}

.b85-1 {
    position: absolute;
    width: 100%;
    height: 100%;
    background: var(--color-grad-12);
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 45px;
    align-items: center;
}

.b85-text {
    background: var(--color-trans-4);
    width: 100%;
    text-align: center;
    box-shadow: var(--box-shadow-2);
    padding: 45px 10px 45px 10px;
    color: var(--color-white);
}

.img-objf-content img {
    max-width: 925px;
    margin: auto;
    padding: 0 10px 0 10px;
    object-fit: contain;
}

/* -------------------------------------------------------------------------- */
.a-c1 {
    margin: auto;
    width: fit-content;
    margin-top: 200px;
    margin-bottom: 200px;
}

.a-b1 {
}

@keyframes tilt-shaking {
    0% {
        transform: rotate(0deg);
    }

    25% {
        transform: rotate(0deg);
    }

    33.3% {
        transform: rotate(5deg);
    }

    41.6% {
        transform: rotate(0eg);
    }

    49.9% {
        transform: rotate(-5deg);
    }

    58.2% {
        transform: rotate(0eg);
    }

    66.53% {
        transform: rotate(5deg);
    }

    75% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(0deg);
    }
}

@keyframes shake {
    0% {
    }

    25% {
        background-color: #000000d9;
    }

    45% {
        background-color: #f6fa22d9;
    }

    55% {
        background-color: #ff4949d9;
    }

    75% {
        background-color: #000000d9;
    }
}

.price-list {
    cursor: pointer;
    position: fixed;
    background: #2b2a29;
    padding: 10px;
    box-shadow: var(--box-shadow-1);
    color: white;
    animation: shake 3s ease-in-out infinite, tilt-shaking 3s ease-in-out infinite;
    right: 16px;
    top: 68px;
    z-index: 2;
}

/* products ------------------------------- */
.w-products {
    padding-bottom: 100px;
}

/* # block ---> */
.products-head {
    height: 17px;
    background: #5b593e30;
    max-width: 863px;
    margin: auto;
}

.product-table {
    display: grid;
    justify-content: center;
    max-width: var(--table-width);
}

.product-table__tr {
    display: grid;
    grid-template-columns: minmax(auto, 141px) minmax(auto, 400px) minmax(auto, 108px) minmax(auto, 167px);
    column-gap: 10px;
    word-break: break-word;
    margin-top: 5px;
    grid-row-gap: 15px;
    font-size: var(--font-size-s);
    border-bottom: 17px solid #5b593e30;
}

.product-table__tr.product-table__tr--thead {
    border-bottom: none;
}

.product-table__tr--not-found {
    display: none;
}

.product-table__tr--thead {
}

.product-table__th {
    background: #cdc192;
    font-weight: 400;
    padding: 6px;
    color: var(--color-5);
}

.product-table__td {
    text-align: center;
    margin: auto 0 auto 0;
    padding: 6px 6px 17px 6px;
    min-width: 125px;
}

.product-table__product-name {
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    font-size: large;
    flex-direction: column;
    gap: 10px;
}

.product-table__product-descr {
    text-align: initial;
}

.prd-tbl__decs--row {
    display: flex;
}

@media only screen and (max-width: 820px) {
    .prd-tbl__decs--row {
        padding: 3px;
    }

    .prd-tbl__decs--row:nth-child(2n) {
        background-color: #c0bebe73;
        color: white;
    }
}

.prd-tbl__decs--sep {
    border-bottom: 1px solid;
    flex-grow: 1;
}

@media only screen and (max-width: 820px) {
    .prd-tbl__decs--sep {
        border: none;
    }
}

.product-table__product-price {
    font-weight: bold;
    font-size: 25px;
    position: relative;
}

.product-table__product-price span {
    font-size: 11px;
}

.prd-price-uah {
}

.product-table__product-price .prd-price-usd {
    position: absolute;
    font-size: 18px;
    color: #898989;
    top: 38px;
}

.product-table__product-image {
}

@media only screen and (max-width: 820px) {
    .product-table {
        grid-template-columns: auto auto;
        column-gap: 16px;
        /* margin-top: 10px; */
        row-gap: 16px;
    }

    .product-table__tr--thead {
        display: none;
    }

    .product-table__tr {
        padding: 5px 0 5px 0;
        background: #56515136;
        row-gap: 0;
        border: var(--border-product-tr);
        grid-auto-rows: max-content;
    }

    .product-table__td {
        padding: 5px;
        display: flex;
    }

    .product-table__product-name {
        grid-column: 1/4;
        text-align: initial;
        min-height: 60px;
        gap: 10px;
    }

    .product-table__product-descr {
        order: 1;
        grid-column: 1/5;
        border-top: var(--border-product-tr);
        display: flex;
        flex-direction: column;
    }

    .product-table__product-price {
        justify-content: center;
        min-width: 115px;
        min-height: 70px;
    }

    .product-table__product-image {
        order: -1;
        grid-column: 1/5;
        border-bottom: var(--border-product-tr);
        justify-content: center;
    }
}

@media only screen and (max-width: 540px) {
    .product-table {
        grid-template-columns: auto;
    }
}

/* # block ---> */
.slider {
    cursor: pointer;
}

.slider--fullscreen {
    position: fixed;
    background: #000000bd;
    width: 100vw;
    height: calc(100vh - var(--height-navbar));
    left: 0;
    bottom: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
    top: 51px;
}

.slider--fullscreen .slider__inner {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 80%;
    max-height: 800px;
    width: 95%;
    max-width: 689px;
    position: relative;
    cursor: initial;
}

@media only screen and (max-width: 410px) {
    .slider--fullscreen .slider__inner {
        height: 60%;
    }
}

.slider--fullscreen .slider__arrow {
    width: 100px;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.slider--fullscreen .slider__arrow:hover {
    cursor: pointer;
}

@media only screen and (max-width: 820px) {
    .slider--fullscreen .slider__arrow {
        position: absolute;
    }

    .slider--fullscreen .slider__arrow-left {
        left: 0;
        z-index: 1;
    }

    .slider--fullscreen .slider__arrow-right {
        right: 0;
    }
}

.slider--fullscreen .slider__arrow::after {
    display: block;
    content: "";
    width: 72px;
    height: 72px;
    border: 1px solid #9898985e;
    border-width: 5px 5px 0 0;
    box-sizing: border-box;
    transition: transform 0.2s;
    position: absolute;
}

.slider--fullscreen .slider__arrow-left::after {
    transform: translate(25%, 0px) rotate(225deg);
}

.slider--fullscreen .slider__arrow-left:hover::after {
    transform: translate(5%) rotate(225deg) scale(0.9);
}

.slider--fullscreen .slider__arrow-right::after {
    transform: translate(-25%, 0px) rotate(45deg);
}

.slider--fullscreen .slider__arrow-right:hover::after {
    transform: translate(-5%) rotate(45deg) scale(0.9);
}

@media only screen and (max-width: 410px) {
    .slider--fullscreen .slider__arrow-left:hover::after {
        transform: translate(25%, 0px) rotate(225deg);
    }

    .slider--fullscreen .slider__arrow-right:hover::after {
        transform: translate(-25%, 0px) rotate(45deg);
    }
}

.slider__image-container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2px;
    width: inherit;
}

.slider--fullscreen .slider__image-container {
    height: 100%;
    position: relative;
}

.slider__image-box {
    --wq-image: 70px;
    max-width: var(--wq-image);
    height: var(--wq-image);
    position: relative;
    display: flex;
    justify-content: center;
}

.slider--fullscreen .slider__image-box {
    display: none;
}

.slider--fullscreen .slider__image-box--active {
    display: block;
    width: 100%;
    height: 100%;
    background: transparent;
    max-width: none;
}

.slider__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.slider--fullscreen .slider__image {
    object-fit: contain;
}

.w-product-table {
    padding: 10px;
}

.btn-buy {
    padding: 10px;
    border-radius: 2px;
    background: #8dac85;
    color: white;
    width: -webkit-fill-available;
    font-size: inherit;
    box-shadow: 4px 4px 4px -2px #0000008a;
}

.btn-buy:hover {
    background: #98e983;
    cursor: pointer;
    transition: 0.1s;
}

.btn-buy:active {
    transform: scale(0.98);
    box-shadow: 3px 3px 3px -2px #0000008a;
}
