

/* Start:/bitrix/templates/vse-jalousie.ru/components/bitrix/menu/main_menu/style.min.css?1683825480490*/
ul.left-menu{list-style:none;margin:0;padding:0;margin-bottom:8px;position:relative}ul.left-menu li{padding:10px 16px;background:#f5f5f5 url(/bitrix/templates/vse-jalousie.ru/components/bitrix/menu/main_menu/images/left_menu_bg.gif) top repeat-x}ul.left-menu li a{font-size:100%;color:#bc262c;font-weight:bold;text-decoration:none}ul.left-menu li a:visited{color:#bc262c}ul.left-menu li a:hover{color:#bc262c}ul.left-menu li a.selected:link,ul.left-menu li a.selected:visited,ul.left-menu li a.selected:active,ul.left-menu li a.selected:hover{color:#fc8d3d}
/* End */


/* Start:/bitrix/templates/vse-jalousie.ru/components/bitrix/breadcrumb/nav/style.css?1554498000469*/
.breadcrumb__list {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
}

.breadcrumb__link {
    font-size: 1.2rem;
    font-weight: 400;
    font-family: "Montserrat",sans-serif;
    color: #424242;
}

.breadcrumb__item--active .breadcrumb__link {
    color: #52a318;
}

.breadcrumb__item::after {
    display: inline-block;
    padding: 0 5px;
    content: '/';
}

.breadcrumb__item:last-child::after {
    content: '';
}



/* End */


/* Start:/bitrix/templates/vse-jalousie.ru/template_styles.css?177420179240222*/

:root {
    --c-base: #6F54BE;
    --c-accent: #3fb360;
    --c-blue-grey: #f1f6fb;
    --c-blue: #d1ebed;
    --c-red: #df0d0d;
    --c-dark: #343a40;
    --c-light: #ffffff;
    --c-grey: #C2C2C2;
    --c-grey25: #F0F0F0;

    --side-padding: 15px;
    --max-width: 1330px;

    --shadow: 0 8px 15px rgb(0 0 0 / 7%);

    --br-normal: 8px;
}

/* animations */
@keyframes greenViolet {
    0% {

        background: var(--c-accent);
    }

    50% {
        background: var(--c-base);
    }

    100% {
        background: var(--c-accent);
    }
}

/* end animations */


* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-family: 'Montserrat', sans-serif;
    font-size: 16px;

    -webkit-font-smoothing: antialiased;
    font-smoothing: antialiased;
    text-rendering: optimizeLegibility;

    -webkit-tap-highlight-color: transparent;
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

*:focus {
    outline: none;
}

html {
    height: 100%;
}

body {
    height: 100%;
}

body.nav-open {
    overflow: hidden;
}

main {
    max-width: 100vw;
    overflow: hidden;
}

.main-index {
    display: grid;
    grid-gap: 50px;
    align-content: flex-start;
}

@media (min-width: 1024px) {
    .main-index {
        display: grid;
        grid-gap: 50px;
    }
}

section {
    display: grid;
    grid-gap: 30px;
}

h1,
h2 {
    max-width: calc(100vw - 30px);
    font-size: 30px;
    font-weight: bold;
    overflow: hidden;
}

a {
    text-decoration: none;
    transition: all 0.3s;
}

ul {
    list-style: none;
}

img:not([data-initial]) {
    display: block;
    width: 100%;
    height: auto;
}

.wr {
    min-height: 100%;
    display: grid;
    grid-template-rows: 1fr auto;
    padding-top: 67px;
}

.center {
    width: 100%;
    max-width: var(--max-width);
    padding: 0 15px;
    margin: 0 auto;
}

@media (min-width: 1360px) {
    .center {
        padding: 0;
    }
}

.title {
    width: 100%;
    overflow: hidden;
}

@media (min-width: 1024px) {
    .title br {
        display: none;
    }
}

/* btn */

.btn {
    display: inline-block;
    padding: 12px 24px;
    border: none;
    /*text-transform: uppercase;*/
    text-align: center;
    color: var(--c-light);
    font-size: 18px;
    /*font-weight: bold;*/
    background: var(--c-grey);
    transition: all 0.3s;
    cursor: pointer;
    border-radius: var(--br-normal);
}

.btn:hover {
    filter: brightness(1.1);
    transform: translateY(-3px);
}

.btn--accent {
    background: var(--c-accent);
}

.btn--base {
    background: var(--c-base);
}

.btn--base-outline {
    background: none;
    color: var(--c-base);
    border: 1px solid var(--c-base);
    font-weight: 600;
}

/* btn end */

/* marquee */

.marquee {
    width: 450px;
    margin: 0 auto;
    white-space: nowrap;
    overflow: hidden;
    box-sizing: border-box;
}

.marquee span {
    display: inline-block;
    padding-left: 100%;
    animation: marquee 45s linear infinite;
}

.marquee span:hover {
    animation-play-state: paused
}

@keyframes marquee {
    0% {
        transform: translate(0, 0);
    }
    100% {
        transform: translate(-100%, 0);
    }
}

/*<div class="marquee"><span>Привет, мир!</span></div>*/

/* marquee end */

/* page */

.page {
    display: grid;
    grid-gap: 50px;
}

.page .slogan {
    display: flex;
    align-items: center;
}

.page .slogan img {
    margin-left: 10px;
}

.page.guarantee p,
.page.guarantee h3,
.page.policy p,
.page.policy h3,
.page.delivery p,
.page.delivery h3 {
    max-width: 900px;
}

.page p {
    line-height: 1.5;
    margin-top: 20px;
    margin-bottom: 20px;
}

.page h3 {
    font-size: 20px;
    margin-top: 20px;
    margin-bottom: 20px;
}

h1.page__title {
    margin-bottom: 30px;
    text-transform: uppercase;
}

h2.page__title {
    margin: 20px 0;
    font-size: 25px;
}

h3.page__title {
    margin: 20px 0;
    font-size: 20px;
}

.page ul {
    display: grid;
    grid-gap: 15px;
    padding-left: 30px;
    list-style-image: url("/bitrix/templates/vse-jalousie.ru/./images/icons/icon-check-15.svg");
}

.page ul li {
    padding-left: 5px;
    line-height: 1.5;
    font-size: 15px;
}


/* page end */

/* breadcrumbs*/

.breadcrumb {
    margin-top: 30px;
    margin-bottom: 30px;
}

.breadcrumb__list {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
}

.breadcrumb__link {
    font-size: 15px;
    font-weight: 400;
    font-family: "Montserrat", sans-serif;
    color: #424242;
}

.breadcrumb__link:hover {
    color: var(--c-accent);
}

.breadcrumb__item--active .breadcrumb__link {
    color: var(--c-accent);
}

.breadcrumb__item::after {
    display: inline-block;
    padding: 0 5px;
    content: '|';
}

.breadcrumb__item:last-child::after {
    content: '';
}

/* breadcrumbs end*/

/* index-cat */
.index-cat {
    display: flex;
    justify-content: flex-end;
}

.index-cat__btn {
    display: flex;
    align-items: center;
}

.index-cat__btn-text {
    font-size: 20px;
    color: var(--c-dark);
    font-weight: bold;
}

.index-cat__btn-arrow-wr {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    margin-left: 10px;
    background: var(--c-accent);
    transition: all 0.3s;
    border-radius: var(--br-normal);
}

.index-cat__btn:hover .index-cat__btn-arrow-wr {
    background: var(--c-base);
}

@media (min-width: 1024px) {
    .index-cat-section {
        display: none;
    }
}

/* index-cat end */

/* header */

.header {
    padding: 15px 0;
    z-index: 10;
    padding: 15px 0;
    background: var(--c-light);
    position: fixed;
    top: -2px;
    width: 100%;
    left: 0;
    box-shadow: var(--shadow)
}

.header__center {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.header__area-logo {
    max-width: 200px;
}

.header__hamburger {
    position: relative;
    z-index: 20;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 40px;
    height: 20px;
    cursor: pointer;
}

.header__hamburger div {
    height: 2px;
    background: var(--c-dark);

    transition: 0s;
}

.header__hamburger:hover div {
    background: var(--c-base);
}

body.nav-open .header__hamburger div {
    background: var(--c-base);
}

body.nav-open .header__hamburger div:nth-child(2) {
    opacity: 0;
    transition-delay: 0s;
}

body.nav-open .header__hamburger div:nth-child(1),
body.nav-open .header__hamburger div:nth-child(3) {
    position: absolute;
    top: 10px;
    width: 100%;
    transform: rotate(-45deg);
    transition: all 0.3s;
}

body.nav-open .header__hamburger div:nth-child(1) {
    transform: rotate(45deg);
}

.header__contacts {
    margin-bottom: 25px;
    padding-bottom: 25px;
    border-bottom: 1px solid #818181;
}

.header__contacts-timetable {
    font-size: 12px;
    font-weight: normal;
}

.header__contacts-item {
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--c-light);
}

.header__contacts-item--email {
    margin-left: -25px;
}

.header__contacts-item:not(:last-child) {
    margin-bottom: 15px;
}

.header__contacts-item-icon {
    margin-right: 10px;
}

body.nav-open .header__area-nav {
    opacity: 1;
    pointer-events: initial;
}

.header__area-nav {
    opacity: 0;
    position: fixed;
    top: 0;
    right: 0;
    z-index: 10;
    height: 100vh;
    width: 100%;
    pointer-events: none;
    transition: 0.3s;
}

.header__area-nav:after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: -1;
    background: var(--c-dark);
    opacity: 0.7;
}

.header__nav {
    position: relative;
    z-index: 2;
    height: 100%;
    max-width: 300px;
    background: var(--c-dark);
    margin-left: auto;
    padding: 90px 15px 0;
}

.header__nav-list {
    text-align: center;
}

.header__nav-link {
    display: block;
    margin-bottom: 20px;
    color: var(--c-light);
    font-size: 22px;
}

.header__nav-link.active,
.header__nav-link:hover {
    color: var(--c-accent);
}

@media (min-width: 1024px) {
    .header__area-logo {
        margin-right: 25px;
    }

    .header__area-hamburger {
        display: none;
    }

    .header__area-nav {
        position: initial;
        height: auto;
        opacity: 1;
        pointer-events: initial;
    }

    .header__area-nav:after {
        display: none;
    }

    .header__nav {
        position: initial;
        display: flex;
        align-items: center;
        max-width: initial;
        padding: 0;
        margin-left: 0;
        background: none;
    }

    .header__nav-wr {
        margin-left: auto;
    }

    .header__nav-list {
        display: flex;
        align-items: center;
        margin-left: auto;
    }

    .header__nav-link {
        margin-bottom: 0;
        color: black;
        padding-left: 25px;
        font-size: 18px;
    }

    .header__contacts {
        display: none;
    }
}

@media (min-width: 1330px) {
    .header__area-logo {
        margin-right: 0;
    }

    .header__nav-wr {
        margin: 0 auto;
    }

    .header__contacts {
        display: flex;
        align-items: center;
        margin: 0;
        padding: 0;
        border-bottom: none;
        order: 1;
    }

    .header__contacts-item-text {
        font-size: 20px;
        color: black;
        font-weight: bold;
        transition: all 0.3s;
    }

    .header__contacts-item:not(:last-child) {
        margin-bottom: 0;
    }

    .header__contacts-item:last-child {
        display: none;
    }

    .header__contacts-item:hover .header__contacts-item-text {
        color: var(--c-accent) !important;
    }
}

/* header end */

/* footer */

.footer {
    margin-top: 50px;
    padding: 40px 0 80px 0;
    background: var(--c-dark);
}

.footer a {
    color: var(--c-light);
}

.footer a.active,
.footer a:hover {
    color: var(--c-accent);
}

.footer__area-nav {
    margin-bottom: 40px;
    padding-bottom: 40px;
    border-bottom: 1px solid #818181;
}

.footer__area-contacts {
    margin-bottom: 40px;
    padding-bottom: 40px;
    border-bottom: 1px solid #818181;
}

.footer__area-social {
    margin-bottom: 20px;
}

.footer__nav {
    display: grid;
    grid-gap: 15px;
}

.footer__nav-item-link {
    font-size: 18px;
}

.footer__nav-item-link.active,
.footer__nav-item-link:hover {
    color: var(--c-accent);
}

.footer__contacts {
    display: grid;
    grid-gap: 15px;
}

.footer__contacts-item {
    display: grid;
    grid-template-columns: 20px auto;
    grid-gap: 10px;
}

.footer__social {
    display: grid;
    grid-template-columns: repeat(3, 35px);
    grid-gap: 15px;
    opacity: 0.8;
}

.footer__social-link:hover {
    opacity: 0.7;
}

.footer__policy {
    font-size: 14px;
    color: var(--c-light);
}

.footer__policy-delim {
    color: var(--c-light);
    display: none;
}

.footer__area-policy {
    display: grid;
    gap: 12px;
}

.footer__price-note {
    margin-top: 40px;
    padding-top: 20px;
    border-top: 1px solid #818181;
}

.footer__price-note p {
    font-size: 12px;
    color: var(--c-light);
    opacity: 0.9;
}

.footer__price-note p span {
    color: red;
}

@media (min-width: 600px) {

    .footer__area-policy {
        display: block;
    }

    .footer__policy-delim {
        display: inline-block;
    }


    .footer__center {
        display: grid;
        grid-template-columns: 1fr auto;
    }

    .footer__nav {
        display: flex;
        align-items: center;
        flex-wrap: wrap;
        margin-right: 25px;
        gap: 25px;
    }

    .footer {
        padding: 40px 0 40px 0;
    }
}

@media (min-width: 1200px) {
    .footer__contacts {
        grid-template-columns: repeat(2, auto);
        grid-gap: 25px;
    }
}

/* footer end */

/* hero */

.hero {
    position: relative;
    padding: 70px 0;
    background: url("/bitrix/templates/vse-jalousie.ru/./images/hero/hero.jpg") no-repeat var(--c-grey25);
    background-size: cover;
    background-position-y: 50%;
    color: var(--c-light);
}

.hero:after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
    background: black;
    opacity: 0.4;
}

.hero__center {
    position: relative;
    z-index: 2;
    max-width: calc(100vw - 24px);
    margin: 0 auto;
    padding: 0 15px;
    text-align: center;
}

.hero__list {
    max-width: 375px;
    margin: 32px auto 0;
    display: grid;
    gap: 12px;
    text-align: left;
}

.hero__list-item {
    display: flex;
    align-items: center;
    gap: 8px;
}

.hero__list-item:before {
    flex-shrink: 0;
    content: '';
    display: block;
    width: 18px;
    height: 18px;
    background: url('/bitrix/templates/vse-jalousie.ru/./images/icons/icon-list-2.svg') center center no-repeat;
}

.hero__title {
    margin-top: 32px;
    font-size: 30px;
    font-weight: bold;
    text-shadow: -1px 0 #727272
}

.hero__sub-title2 {
    margin-top: 20px;
    font-size: 24px;
}

.hero__subtitle {
    font-size: 10px;
    line-height: 1.2;
    text-shadow: -1px 0 #727272
}

.hero__actions {
    margin-top: 32px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.hero__btn-secondary {
    background: var(--c-blue-grey);
}

.hero__note {
    display: none;
}

.hero__note span {
    color: red;
}

.hero__slogan {
    font-size: 12px;
    text-shadow: -1px 0 #727272;
}


@media (min-width: 375px) {
    .hero__title {
        font-size: 32px;
    }
}

@media (min-width: 768px) {
    .hero__actions {
        flex-direction: row;
        gap: 16px;
        justify-content: center;
    }
}

@media (min-width: 1200px) {
    .hero {
        padding: 0;
        background: none;
        color: var(--c-dark);
    }

    .hero__list {
        max-width: 100%;
    }

    .hero__center {
        display: flex;
        max-width: var(--max-width);
        padding: 0;
        text-align: left;
        border-radius: var(--br-normal);
        overflow: hidden;
    }

    .hero__area-main {
        background: var(--c-blue-grey);
        padding: 60px 40px 60px 40px;
        max-width: 55%;
    }

    .hero__area-img {
        /*background: url("/bitrix/templates/vse-jalousie.ru/./images/hero/hero-desc.png") no-repeat var(--c-blue-grey);*/
        background: url("/bitrix/templates/vse-jalousie.ru/./images/hero/hero-fade.png") no-repeat var(--c-blue-grey);
        background-size: cover;
    }

    .hero__area-img {
        flex-grow: 1;
    }

    .hero:after {
        display: none;
    }

    .hero__title {
        line-height: 1;
        font-size: 36px;
        color: var(--c-dark);
        text-shadow: none;
    }

    .hero__subtitle {
        color: var(--c-dark);
        text-shadow: none;
    }

    .hero__btn {
        margin-left: 0;
    }

    .hero__note {
        display: block;
        margin-top: 80px;
        font-size: 13px;
    }

    .hero__title {
        font-size: 40px;
    }

    .hero__subtitle {
        font-size: 14px;
    }

    .hero__actions {
        justify-content: flex-start;
    }
}

/* hero end */

/*  action */

.action {
    margin: 0 15px;
    padding: 20px 0 32px;
    background: url("/bitrix/templates/vse-jalousie.ru/./images/action/action-2.png") no-repeat var(--c-blue-grey);
    background-size: cover;
    color: var(--c-light);
    border-radius: var(--br-normal);
}

.action__center {
    display: flex;
    flex-direction: column;
    align-items: center;
    border-radius: var(--br-normal);
}

.action__body {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.action__title {
    font-size: 50px;
    font-weight: bold;
}

.action__text {
    font-size: 20px;
}

.action__btn {
    margin-top: 20px;
}

@media (min-width: 1024px) {
    .action {
        padding: 0;
        background: none;
    }

    .action__btn {
        margin-top: 0;
        margin-left: 40px;
    }

    .action__title {
        margin: 0 20px;
        font-size: 50px;
    }

    .action__text {
        font-size: 24px;
    }

    .action__body {
        flex-direction: row;
        align-items: center;
    }

    .action__center {
        padding: 10px 0;
        background: url("/bitrix/templates/vse-jalousie.ru/./images/action/action--desc-2.png") no-repeat var(--c-blue-grey);
        background-size: cover;
    }
}

/*  action end */

/*top*/

.top {
    display: grid;
    grid-gap: 30px;
}

.top__center {
    display: grid;
    grid-gap: 20px;
}

.top__more {
    display: flex;
    justify-content: center;
}

@media (min-width: 600px) {
    .top__center {
        grid-template-columns: repeat(3, 1fr);
    }
}

/*cat end*/

.cat__center {
    display: grid;
    padding: 0;
    padding-bottom: 20px;
    grid-gap: 20px;
}

@media (min-width: 600px) {
    .cat__center {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* cat end*/

/* badge */
.badge {
    padding: 4px 8px;
    background: var(--c-red);
    color: white;
    font-size: 14px;
    border-radius: var(--br-normal);
    width: fit-content;
    font-weight: bold;
}

/* end badge */


/*  l-card */

.l-card {
    position: relative;
    display: grid;
    grid-template-rows: auto 1fr;
    border: 1px solid var(--c-blue-grey);
    border-radius: var(--br-normal);
    overflow: hidden;
}

.l-card__badge {
    position: absolute;
    z-index: 1;
    top: 12px;
    right: 12px;
}

.l-card__body {
    display: grid;
    grid-gap: 10px;
    grid-template-rows: auto 1fr auto;
    padding: 15px 15px 30px;
}

.l-card__title {
    margin-bottom: 5px;
    font-size: 20px;
    font-weight: bold;
    color: var(--c-dark);
}

.l-card__desc {
    margin: 0;
}

.l-card__title:hover {
    color: var(--c-base);
}

.l-card__btn {
    align-self: end;
    margin-top: 20px;
    margin-left: auto;
    display: flex;
    align-items: center;
    transition: all 0.3s;
}

.l-card__btn-text {
    font-size: 16px;
    font-weight: bold;
    color: var(--c-dark);
}

.l-card__btn-arrow-wr {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    margin-left: 10px;
    background: var(--c-accent);
    transition: all 0.3s;
    border-radius: var(--br-normal);
}

.l-card__btn:hover .l-card__btn-arrow-wr {
    background: var(--c-base);
}

.l-card__btn:hover {
    transform: translateX(3px);
}

/*  l-card end */

/*  feat */

.feat {
    margin-left: 15px;
    overflow: scroll;
    scroll-snap-type: x mandatory;
    -ms-overflow-style: none; /* IE and Edge */
    scrollbar-width: none; /* Firefox */
}

.feat::-webkit-scrollbar {
    display: none;
}

.feat__center {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    grid-gap: 15px;
    scroll-snap-type: x mandatory;
}

.feat__item {
    min-width: 60vw;
    padding: 30px 15px 30%;
    /*border-bottom: 5px solid var(--c-accent);*/
    background: var(--c-grey25);
    background: var(--c-blue-grey);
    scroll-snap-align: start;
    border-radius: var(--br-normal);
}

.feat__item-num {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.feat__item-num-val {
    display: block;
    margin-right: 15px;
    font-size: 25px;
    font-weight: bold;
}

.feat__item-title {
    margin-bottom: 10px;
    font-size: 18px;
    font-weight: bold;
}

@media (min-width: 600px) {
    .feat {
        margin-left: 0;
    }

    .feat__center {
        max-width: var(--max-width);
        margin: 0 auto;
        grid-template-columns: repeat(3, 1fr);
        padding: 0 15px;
    }

    .feat__item {
        min-width: initial;
    }
}

@media (min-width: 1200px) {
    .feat__center {
        grid-template-columns: repeat(6, 1fr);
    }
}

@media (min-width: 1360px) {
    .feat__center {
        padding: 0;
    }
}

/*  feat end */

/* designer */

.designer {
    position: relative;
}

.designer__center {
    position: relative;
    overflow: hidden;
    border-radius: var(--br-normal);
}

.designer__img {
    width: 220px;
    height: auto;
    position: absolute;
    top: -70px;
    right: -70px;
    z-index: -1;
    transform: rotate(-30deg);
    filter: saturate(0.9);
}

.designer__content-text {
    max-width: 50%;
    margin-bottom: 40px;
    font-size: 16px;
}

.designer__title {
    position: relative;
    z-index: 2;
    margin-top: 10px;
    margin-bottom: 10px;
    font-size: 24px;
    font-weight: bold;
}

.designer__btn {
    font-size: 14px;
}

@media (min-width: 375px) {
    .designer__title {
        font-size: 25px;
    }

    .designer__text {
        font-size: 18px;
    }

    .designer__btn {
        font-size: 18px;
    }
}

@media (min-width: 768px) {
    .designer {
        width: 100%;
        max-width: var(--max-width);
        margin: 0 auto;
        position: relative;
    }

    .designer__center {
        padding: 25px 15px;
        max-width: var(--max-width);
        /*box-shadow: var(--shadow);*/
        background: var(--c-blue);
        background: var(--c-blue-grey);
    }

    .designer__content {
        display: flex;
        align-items: center;
        justify-content: space-between;
        width: 100%;
    }

    .designer__content-text {
        margin: 0;
    }

    .designer__title {
        margin-top: 0;
        margin-bottom: 5px;
    }

    .designer__content-text {
        max-width: initial;
        margin-bottom: 0;
    }

    .designer__img {
        width: 150px;
        height: auto;
        position: absolute;
        top: -70px;
        right: 50%;
        z-index: 1;
        transform-origin: center center;
        transform: translateX(50%) rotate(-80deg);
        filter: saturate(0.9);
    }
}

@media (min-width: 1024px) {
    .designer__content {
        justify-content: space-around;
    }
}

@media (min-width: 1200px) {
    .designer__content-text {
        margin-left: -50px;
    }

    .designer__center {
        padding: 20px 15px;
    }

    .designer__img {
        right: 48%;
        top: -155px;
        width: 230px;
    }

    .designer__title {
        margin-bottom: 0;
        font-size: 22px;
    }
}

/* designer end */

/* video */

.video__center {
    position: relative;
}

.video__slider {
    display: none;
}

.video__slider.tns-slider {
    display: block;
}

.video__item {
    display: block;
}

/*.video__img {*/
/*    filter: blur(5px);*/
/*}*/

.video__img-wr {
    position: relative;
    display: block;
    overflow: hidden;
    border-radius: 12px;
}

.video__img-wr:after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
    background: #454545;
    opacity: 0.1;
    transition: all 0.3s;
    filter: blur(2px);
}

.video__img-wr:hover:after {
    opacity: 0;
    filter: blur(0);
}

.video__icon {
    position: absolute;
    z-index: 2;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    transition: all 0.3s;
    background: var(--c-accent);
    border-radius: var(--br-normal);
}

.video__img-wr:hover .video__icon {
    filter: brightness(1.1);
    transform: translate(-50%, -50%) scale(1.1);
}

.video__slider-arrows {
    position: absolute;
    top: -65px;
    right: 15px;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    display: none;
}

.video__slider-arrows .video__slider-prev {
    margin-right: 10px;
}

.video__slider-arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    background: var(--c-base);
    transition: all 0.3s;
    cursor: pointer;
    border-radius: var(--br-normal);
}

.video__slider-arrow:hover {
    filter: brightness(1.1);
    background: var(--c-accent);
}

.video__slider-prev:hover {
    transform: translateX(-3px);
}

.video__slider-next:hover {
    transform: translateX(3px);
}

.video .tns-nav {
    display: grid;
    grid-auto-flow: column;
    justify-content: center;
    grid-gap: 7px;
    margin-top: 25px;
}

.video .tns-nav button {
    border: none;
    width: 10px;
    height: 10px;
    border-radius: 100500px;
    background: var(--c-grey);
}

.video .tns-nav button.tns-nav-active {
    background: var(--c-base);
}

@media (min-width: 370px) {
    .video__slider-arrows {
        display: flex;
    }
}

@media (min-width: 1024px) {
    .video__center {
        padding: 20px 20px 32px 20px;
        background: var(--c-blue-grey);
        /*border-bottom: 5px solid var(--c-accent);*/
        border-radius: 12px;
    }
}

/* video end */

/* work */

.work__more {
    display: none;
}

.work {
    margin-left: 15px;
    overflow: scroll;
    scroll-snap-type: x mandatory;
    -ms-overflow-style: none; /* IE and Edge */
    scrollbar-width: none; /* Firefox */
}

.work::-webkit-scrollbar {
    display: none;
}

.work__center {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-auto-flow: column;
    grid-gap: 15px;
    scroll-snap-type: x mandatory;
}

.work__block {
    display: grid;
    grid-template-columns: repeat(10, 1fr);
    grid-gap: 15px;
}

.work__item {
    position: relative;
    display: block;
    min-width: 60vw;
    /*height: 0;*/
    /*padding-bottom: 100%;*/
    aspect-ratio: 1;
    background: var(--c-grey25);
    scroll-snap-align: start;
    overflow: hidden;
    border-radius: var(--br-normal);
}

.work__item  .work__item-img {
    /*position: absolute;*/
    /*top: 0;*/
    /*left: 0;*/
    /*right: 0;*/
    /*bottom: 0;*/
    /*margin: auto;*/
    /*min-width: 50%;*/
    /*min-height: 50%;*/
    height: 100%;
    object-fit: cover;
}

.work__item-btn {
    position: absolute;
    bottom: -70px;
    right: -70px;
    z-index: 1;
    width: 120px;
    height: 120px;
    background: var(--c-base);
    transform: rotate(45deg);
    transition: all 0.3s;
    cursor: pointer;
}

.work__item:hover .work__item-btn {
    background: var(--c-accent);
    transform: rotate(45deg) scale(1.05);
}

.work__item-btn-icon {
    position: absolute;
    top: 48px;
    left: 8px;
    transform: rotate(-45deg);
}

@media (min-width: 600px) {
    .work__item {
        min-width: 40vw;
    }
}

@media (min-width: 768px) {
    .work__item {
        min-width: 25vw;
    }
}

@media (min-width: 1024px) {
    .work {
        margin-left: 0;
    }

    .work__center {
        grid-template-columns: repeat(1, 1fr);
        grid-auto-flow: row;
    }

    .work__item {
        min-width: initial;
    }

    .work__block {
        display: grid;
        grid-template-columns: repeat(5, 1fr);
        grid-gap: 15px;
    }

    .work__block:not(:nth-child(1)) {
        display: none;
    }

    .work__more {
        display: flex;
        justify-content: center;
    }
}

/* work end */

/* popup and form*/
.popup {
    width: 100%;
}

.is-compact .popup.fancybox__content > .f-button.is-close-btn,
.popup.fancybox__content > .f-button.is-close-btn {
    top: 0;
    right: 0;
    color: var(--c-light);
    border-radius: 0;
    background: var(--c-base);
}

.popup__title {
    margin-bottom: 20px;
}

.popup__errors {
    margin-bottom: 10px;
}

.popup__errors p font {
    font-size: 14px;
    color: red;
}

.form__group {
    margin-bottom: 20px;
}

.form__label {
    display: block;
    margin-bottom: 5px;
    cursor: pointer;
}

.form__label span {
    color: red;
}

.form__btn {
    display: block;
    margin: 0 auto;
    border: none;
}

.form__input {
    width: 100%;
    padding: 10px 10px;
    border: 1px solid var(--c-grey);
    transition: all 0.3s;
    /*box-shadow: var(--shadow);*/
}

.form__input:focus {
    border: 1px solid var(--c-base);
}

.form__note {
    margin-top: 20px;
}

.form__note span {
    color: red;
}

.form__note a,
.form__note {
    font-size: 11px;
}

.form__note a {
    color: var(--c-base);
    text-decoration: underline;
}

.form__radio-group {
    margin-top: 10px;
    display: flex;
    align-items: center;
}

.form__radio {
    display: none !important;
}

.form__radio:checked ~ .form__radio-fake:after {
    content: "";
    background: var(--c-base);
    display: block;
    width: 10px;
    height: 10px;
    border-radius: 100500px;
}

.form__radio-fake {
    display: flex !important;
    align-items: center;
    justify-content: center;
    width: 16px;
    height: 16px;
    border-radius: 100500px;
    border: 1px solid var(--c-grey);
}

.radio__item {
    display: flex;
    align-items: center;
    margin-right: 10px;
}

.form__radio-label {
    margin-left: 5px;
    font-size: 14px;
}

@media (min-width: 600px) {
    .popup {
        max-width: 450px !important;
    }
}

/* popup and form end */

/* select time */
.select-time {
    max-width: 225px;
    margin: 0 auto;
    margin-bottom: 40px;
}

.select-time__body {
    display: flex;
    max-width: 100%;
}

.select-time__value {
    display: block;
    width: 100%;
    margin-bottom: 30px;
    padding: 0 10px;
    border: none;
    background: var(--c-grey25);
    font-size: 40px;
    text-align: center;
}

.select-time__sep {
    margin: 0 15px;
    font-size: 40px;
}

.select-time__btns {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-gap: 10px;
}

.select-time__btn {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px 5px;
    background: var(--c-grey25);
    transition: all 0.3ms;
    cursor: pointer;
}

.select-time__btn span {
    transform: scale(1.5);
}

.select-time__btn:hover {
    background: var(--c-grey);
    color: var(--c-light);
}

/* select time end */

/*cat-detail*/

.cat-detail__materials {
    position: absolute;
    z-index: 7;
    bottom: 47px;
    left: 12px;
    padding: 4px 12px;
    background: #3fb360;
    color: white;
    border-radius: 100px;
    cursor: pointer;
    font-weight: 600;
    font-size: 12px;
    animation: greenViolet 4s ease 0s infinite normal forwards;
}

.cat-detail {
    grid-gap: 50px;
}

.cat-detail__main-col--2,
.cat-detail__main {
    display: grid;
    grid-gap: 50px;
    align-content: flex-start;
}

.cat-detail__heading h1 {
    text-transform: uppercase;
}

.cat-detail__slider-item:not(:first-child) {
    display: none;
}

.cat-detail__slider-wr {
    position: relative;
}

.cat-detail__slider-item {
    border-radius: 12px;
    overflow: hidden;
}

.cat-detail__badge {
    position: absolute;
    z-index: 1;
    top: 12px;
    right: 12px;
}

.cat-detail__slider-arrows {
    position: absolute;
    bottom: 45px;
    right: 15px;
    z-index: 5;
    display: grid;
    grid-gap: 10px;
    grid-template-columns: repeat(2, auto);
    justify-content: end;
    width: 100%;
}

.cat-detail__slider-arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    background: var(--c-base);
    transition: all 0.3s;
    cursor: pointer;
    border-radius: var(--br-normal);
}

.cat-detail__slider-arrow:hover {
    background: var(--c-accent);
}

.cat-detail__slider-wr .tns-nav {
    z-index: 10;
    bottom: 15px;
    display: grid;
    grid-auto-flow: column;
    justify-content: center;
    grid-gap: 7px;
    width: 100%;
    margin-top: 20px;
}

.cat-detail__slider-wr .tns-nav button.tns-nav-active {
    background: var(--c-base);
}

.cat-detail__slider-wr .tns-nav button {
    border: none;
    width: 10px;
    height: 10px;
    border-radius: 100500px;
    background: var(--c-grey);
}

.cat-detail__desc,
.cat-detail__price {
    padding: 0 15px;
}

.cat-detail__price {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.cat-detail__desc-title {
    margin-bottom: 20px;
}

.cat-detail__desc-body p:last-child {
    margin-bottom: 0;
}

.cat-detail__price-value {
    margin-bottom: 30px;
    font-size: 20px;
    display: grid;
    grid-template-columns: repeat(3, auto);
    justify-content: center;
    align-items: center;
    grid-gap: 10px;
}

.cat-detail__price-old,
.cat-detail__price-new {
    font-size: 25px;
}

.cat-detail__price-old {
    text-decoration: line-through;
    text-decoration-color: red;
    padding: 0 5px;
}

.cat-detail__price-title {
    font-size: 20px;
    font-weight: bold;
}

.cat-detail__btn {
    margin: 0 auto;
}

.cat-detail__btn-measure {
    width: 265px;
}

.cat-detail__back {
    display: flex;
    justify-content: center;
}

.cat-detail__back-btn {
    display: flex;
    align-items: center;
    transition: all 0.3s;
}

.cat-detail__back-btn:hover {
    transform: translateX(-5px);
}

.cat-detail__back-btn-img-wr {
    margin-right: 10px;
    border-radius: var(--br-normal);
}

.cat-detail__back-btn-img-wr {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    margin-right: 10px;
    background: var(--c-base);
    transition: all 0.3s;
}

.cat-detail__back-btn:hover .cat-detail__back-btn-img-wr {
    background: var(--c-accent);
}

.cat-detail__back-btn {
    font-size: 20px;
    font-weight: bold;
    color: var(--c-dark);
}

@media (min-width: 1024px) {
    .cat-detail__main {
        max-width: var(--max-width);
        margin: 0 auto;
        padding: 0 15px;
        grid-template-columns: repeat(2, 50%);
        grid-gap: 30px;
    }

    .cat-detail__price {
        display: block;
    }

    .cat-detail__price-value {
        justify-content: flex-start;
    }

    .cat-detail__btn {
        margin: 0 auto 0 0;
    }

    .cat-detail__desc {
        order: -1;
    }
}

@media (min-width: 1330px) {
    .cat-detail__main {
        grid-template-columns: 45% 55%;
    }

    .cat-detail__main {
        padding: 0;
    }
}

/*cat-detail end*/

/* 404 */
.page-404 {
    padding-top: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
}

.page-404__center {
    max-width: 80%
}

.page-404__btn {
    display: block;
    width: max-content;
    margin: 0 auto;
    margin-top: 40px;
}

@media (min-width: 768px) {
    .page-404__center {
        max-width: 600px;
    }
}

/* 404 end */

.float-phone-btn {
    position: fixed;
    z-index: 10;
    bottom: 25px;
    right: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--c-accent);
    /* padding: 10px; */
    box-shadow: var(--shadow);
    border-radius: 100500px;
    width: 58px;
    height: 58px;
}

@media (min-width: 1024px) {
    .float-phone-btn {
        display: none;
    }
}

/* float-phone-btn end */

/* contact page */

.page-contacts .contacts {
    display: grid;
    grid-gap: 10px;
}

.page-contacts .contacts__map {
    border-radius: 12px;
    overflow: hidden;
}

.page-contacts .contacts__item {
    display: grid;
    grid-template-columns: 20px auto;
    grid-gap: 10px;
}

.page-contacts .contacts__item-text {
    color: var(--c-dark);
    transition: all 0.3s;
}

.page-contacts .contacts__item:hover .contacts__item-text {
    color: var(--c-accent);
}

/* contact page end */

/* social */

.social {
    display: grid;
    grid-template-columns: repeat(3, 35px);
    grid-gap: 15px;
}

.social__item:hover {
    opacity: 0.7;
}

/*social end */

/* trust */

.trust {
    margin-left: 15px;
    overflow: scroll;
    scroll-snap-type: x mandatory;
    -ms-overflow-style: none;
    scrollbar-width: none;
}

.trust::-webkit-scrollbar {
    width: 0;
}

.trust__center {
    display: grid;
    grid-template-columns: repeat(var(--trust-count), 1fr);
    grid-gap: 15px;
    padding-bottom: 10px;
}

.trust__item {
    min-width: 35vw;
    overflow: hidden;
    border-radius: var(--br-normal);
    scroll-snap-align: start;
    box-shadow: 0 4px 8px 0 rgb(0 0 0 / 7%);
}

@media (min-width: 767px) {
    .trust__item {
        min-width: 25vw;
    }
}

@media (min-width: 1024px) {
    .trust__item {
        min-width: 20vw;
    }
}

@media (min-width: 1330px) {
    .trust {
        margin-left: 0;
    }

    .trust__center {

        grid-template-columns: repeat(7, 1fr);
    }

    .trust__item {
        min-width: 100%;
    }
}

/* trust end */

/* benefits */

.benefits__center {
    display: grid;
    gap: 12px;
}

.benefits__item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 8px;
    border-radius: var(--br-normal);
    border: 1px solid var(--c-base);
    border: 2px solid var(--c-blue-grey);
}

.benefits__item-content {
    flex-grow: 1;
}

.benefits__item-title {
    font-size: 16px;
    font-weight: bold;
}

.benefits__item-text {
    margin-top: 4px;
    font-size: 14px;
}

.benefits__item-img-wr {
    flex-shrink: 0;
    width: 80px;
    height: 80px;
    border-radius: var(--br-normal);
    overflow: hidden;
}

.benefits__item:nth-child(2n) .benefits__item-img-wr {
    order: 2;
}

@media (min-width: 768px) {
    .benefits__item-img-wr {
        width: 120px;
        height: 120px;
    }

    .benefits__item-title {
        font-size: 18px;
    }

    .benefits__item-text {
        font-size: 16px;
    }

    .benefits__item:nth-child(2n) .benefits__item-img-wr {
        order: initial;
    }
}

@media (min-width: 1024px) {
    .benefits__item-title {
        font-size: 20px;
    }

    .benefits__center {
        grid-template-columns: repeat(3, 1fr);
        grid-auto-flow: row;
    }
}

/* benefits end */

/* helpers */

.mt20 {
    margin-top: 20px;
}

.mt40 {
    margin-top: 40px;
}

/* helpers end */

/* question */

.question {
    width: 100%;
    max-width: var(--max-width);
    margin: 0 auto;
    background: var(--c-blue-grey);
    padding: 20px 15px 40px;
    background: url("/bitrix/templates/vse-jalousie.ru/./images/question/phone-2.png") calc(100vw - 220px / 2) -28% no-repeat;
    background-color: var(--c-blue-grey);
}

.question__title {
    font-size: 24px;
    font-weight: 600;
}

.question__sub-title {
    max-width: 200px;
    margin-top: 8px;
    font-size: 14px;
}

.question__btn {
    margin-top: 20px;
    font-size: 16px;
}

@media (min-width: 425px) {
    .question {
        padding: 40px 15px;
    }

    .question__title br {
        display: none;
    }
}

@media (min-width: 768px) {
    .question {
        padding: 20px 15px;
        background: url("/bitrix/templates/vse-jalousie.ru/./images/question/phone-2.png") center -10% no-repeat;
        background-color: var(--c-blue-grey);
    }

    .question__center {
        display: flex;
        align-items: center;
        justify-content: space-between;
    }

    .question__sub-title {
        font-size: 18px;
        max-width: 270px;
    }

    .question__btn {
        margin-top: 0;
        font-size: 18px;
    }
}

@media (min-width: 1024px) {
    .question {
        border-radius: var(--br-normal);
        overflow: hidden;
    }

    .question__center {
        justify-content: space-around;
    }
}

/* question end */

/* cookie-policy */

.cookie-policy {
    opacity: 0;
    position: fixed;
    bottom: 32px;
    left: 16px;
    z-index: 100;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
    width: 100%;
    max-width: calc(100vw - 32px - 58px - 24px);
    padding: 16px;
    border-radius: 8px;
    background: #fafafa;
    -webkit-box-shadow: 4px 4px 8px 0px rgba(34, 60, 80, 0.1);
    -moz-box-shadow: 4px 4px 8px 0px rgba(34, 60, 80, 0.1);
    box-shadow: 4px 4px 8px 0px rgba(34, 60, 80, 0.1);
    transition: 0.3s;
    pointer-events: none;
}

.cookie-policy.active {
    opacity: 1;
    pointer-events: initial;
}

.cookie-policy__text {
    font-size: 16px;
    color: #323232;
    line-height: 1.5;
}

@media (min-width: 600px) {
    .cookie-policy {
        left: 20px;
        bottom: 40px;
        flex-direction: row;
    }
}

@media (min-width: 1024px) {
    .cookie-policy {
        max-width: 550px;
    }
}

/* end cookie-policy */

#marquiz {
    background: #f1f6fb;
    padding: 40px 0;
}

.video-review-popup .fancybox__content {
    background: #222222;
}


/* Виджет соцсетей */

.ag_chatpanel_wrap {
    z-index: 10 !important;
}

/* костыль меняем иконку инстаграм на макс */
.ag_chatpanel_panel_item_link_bg_user_instagram {
    background: linear-gradient(to right, rgb(37, 99, 235), rgb(124, 58, 237)) !important;
}

.ag_chatpanel_main .ag_chatpanel_link_icon_instagram {
    background-image: url(/bitrix/templates/vse-jalousie.ru/images/social/max.svg) !important;
}

@media (max-width: 767px) {
    .ag_chatpanel_panel_item_hint {
        display: none !important;
    }
}

/* end Виджет соцсетей */
/* End */
/* /bitrix/templates/vse-jalousie.ru/components/bitrix/menu/main_menu/style.min.css?1683825480490 */
/* /bitrix/templates/vse-jalousie.ru/components/bitrix/breadcrumb/nav/style.css?1554498000469 */
/* /bitrix/templates/vse-jalousie.ru/template_styles.css?177420179240222 */
