/* ==========================================================================
  RESET
  ========================================================================== */
* {
    box-sizing: border-box;
    outline: none;
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
hr,
menu,
nav,
section {
    display: block
}

a,
hr {
    padding: 0
}

abbr,
address,
article,
aside,
audio,
b,
blockquote,
body,
canvas,
caption,
cite,
code,
dd,
del,
details,
dfn,
div,
dl,
dt,
em,
fieldset,
figcaption,
figure,
footer,
form,
h1,
h2,
h3,
h4,
h5,
h6,
header,
hgroup,
html,
i,
iframe,
img,
ins,
kbd,
label,
legend,
li,
mark,
menu,
nav,
object,
ol,
p,
pre,
q,
samp,
section,
small,
span,
strong,
sub,
summary,
sup,
table,
tbody,
td,
tfoot,
th,
thead,
time,
tr,
ul,
var,
video {
    margin: 0;
    padding: 0;
    border: 0;
    outline: 0;
    font-size: 100%;
    vertical-align: baseline;
    background: 0 0
}

ins,
mark {
    background-color: #ff9;
    color: #000
}

body {
    line-height: 1
}

nav ul {
    list-style: none
}

blockquote,
q {
    quotes: none
}

blockquote:after,
blockquote:before,
q:after,
q:before {
    content: none
}

a {
    margin: 0;
    font-size: 100%;
    vertical-align: baseline;
    background: 0 0
}

ins {
    text-decoration: none
}

mark {
    font-style: italic;
    font-weight: 700
}

del {
    text-decoration: line-through
}

abbr[title],
dfn[title] {
    border-bottom: 1px dotted;
    cursor: help
}

table {
    border-collapse: collapse;
    border-spacing: 0
}

hr {
    height: 1px;
    border: 0;
    border-top: 1px solid #ccc;
    margin: 1em 0
}

input,
select {
    vertical-align: middle
}


/* ==========================================================================
  Base styles
  ========================================================================== */
/* Variables */
:root {
    /* Layout */
    --flex-row-col-mg     : 15px;
    --content-box-width   : 1110px;    
    --content-box-padding : 15px;

    /* Fonts */
    --font-def           : 'Inter', sans-serif;

    /* Colors */
    --c-primary     : #F5E0C1;
    --c-primary-bg  : rgba(245, 224, 193, 0.13);
    --c-gray        : #646464;
    --c-black       : #1C1B17;
    --c-black-light : #333230;
    --c-violet      : #B84F6D;
    --c-brown       : #5B5346;
}

/* Base */
html,
body {
    height: 100%;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-def);
    font-style: normal;
    font-size: 14px;
    font-weight: 400;
    line-height: 1.2;
    color: #000;
    -webkit-text-size-adjust: none;
    text-size-adjust: none;
}

h1,
h2,
h3,
h4,
h5 {
    font-weight: 700;
    font-size: 1.25em;
}

img {
    max-width: 100%;
    height: auto;
}

strong {
    font-weight: 700;
}

/* Layout */
.page-wrapper {
    height: 100%;
    display: flex;
    flex-direction: column;
}

.page-main {
    flex: 1 0 auto;
}

.page-footer {
    flex-shrink: 0;
}

.content-box {
    width: var(--content-box-width);
    max-width: 100%;
    margin: 0 auto;
}

.flex-row {
    display: flex;
    flex-flow: row wrap;
    margin: 0 calc( var(--flex-row-col-mg) * -1 );
}

.flex-row--justify {
    justify-content: space-between;
}

.flex-row--center {
    justify-content: center;
}

.flex-row__col {
    padding-left: var(--flex-row-col-mg);
    padding-right: var(--flex-row-col-mg);
    /* margin-bottom: calc( var(--flex-row-col-mg) * 2 ); */
}

/* Contols */
.control-btn {
    appearance: none;
    -moz-appearance: none;
    -webkit-appearance: none;
    -ms-progress-appearance: none;
    box-shadow: none;
    border: 1px solid var(--c-primary);
    display: inline-block;
    cursor: pointer;
    text-decoration: none;
    font-family: var(--font-def);
    color: var(--c-black);
    text-align: center;
    font-size: 16px;
    font-style: normal;
    font-weight: 600;
    line-height: 1;
    background: var(--c-primary);
    padding: 20px;
    margin: 0;
    transition: .3s ease;
}

.control-btn--secondary {
    background: var(--c-violet);
    border-color: var(--c-violet);
    color: #FFF;
}

.control-btn--transp {
    background: transparent;
    border-color: var(--c-black);
    color: var(--c-black);
}

.control-btn:hover {
    color: var(--c-black);
    border-color: var(--c-black);
    background: transparent;
}

.control-btn--transp:hover {
    background: var(--c-primary);
    border-color: var(--c-primary);
}

.main-navbar-toggle-btn {
    display: flex;
    flex-flow: column wrap;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    text-decoration: none;
    border: 1px solid var(--c-violet);
    padding: 4px;
    margin: 0 0 0 auto;    
}

@media screen  and (min-width:990px){
    .main-navbar-toggle-btn {
        display: none;
    }   
}

.main-navbar-toggle-btn__line {
    width: 100%;
    height: 5px;
    background-color: var(--c-violet);
}

.main-navbar-toggle-btn__line:not(:last-child) {
    margin-bottom: 3px;
}

.main-navbar-toggle-btn--active .main-navbar-toggle-btn__line:nth-child(2) {
    display: none;
}

.main-navbar-toggle-btn--active .main-navbar-toggle-btn__line:first-child {
    transform: rotate(45deg) translate(3px, 3px);
}

.main-navbar-toggle-btn--active .main-navbar-toggle-btn__line:last-child {
    transform: rotate(-45deg) translate(3px, -3px);
}

/* Forms */
input[type="tel"],
input[type="email"],
input[type="text"] {
    display: inline-block;
    width: 100%;
    border: 1px solid rgba(245, 224, 193, 0.56);
    background: #FFF;
    color: var(--c-black);
    font-family: var(--font-def);
    font-weight: 400;
    font-size: 16px;
    line-height: 1;
    padding: 12px 24px;
}

input[type="tel"]:focus,
input[type="email"]:focus,
input[type="text"]:focus {
    border-color: var(--c-black-light);
}

.callback-form__control:not(:last-child) {
    margin-bottom: 15px;
}

.callback-form__control--submit {
    display: block;
    width: 250px;
    max-width: 100%;
    margin: 0 auto;    
}

/* ==========================================================================
  Page Header
  ========================================================================== */
.page-header__top {
    padding: 15px 0;
    background-color: #FFF;
}

.page-header__inner {
    display: flex;
    flex-flow: row wrap;
    justify-content: space-between;
}

.page-header__logo img {
    display: block;
    max-width: 85px;
}

.page-header__contacts {
    display: flex;
    flex-flow: row wrap;
    color: var(--c-gray);
    font-size: 16px;
    line-height: 1;
    padding: 8px 0 0 0;
}

.header-callback {
    margin-right: 165px;
}

.header-callback__tel {
    display: block;
    text-decoration: none;
    color: inherit;
    margin: 0 0 14px 0;
}

.messengers {
    display: flex;
    flex-flow: row wrap;
    align-items: center;
}

.messengers__link {
    width: 28px;
    height: 28px;
    background-image: url('../../upload/image/design/default/messengers.png');
    background-repeat: no-repeat;
    background-size: auto 100%;
    background-position: 0 0;
}

.messengers__link:not(:last-child) {
    margin-right: 16px;
}

.messengers__link--wa {
    background-position: -41px 0;
}

.messengers__link--telegram {
    background-position: -85px 0;
}

.header-contacts__line {
    display: block;
    text-align: right;
    text-decoration: none;
    color: inherit;

}

.header-contacts__line:not(:last-child) {
    margin-bottom: 8px;
}

.page-header__menu {
    background-color: var(--c-primary);
    position: relative;
    z-index: 5;
}

.main-navbar__list {
    list-style: none;
    display: flex;
    flex-flow: row wrap;
    align-items: center;
    justify-content: center;
    padding: 10px 0;
}


.main-navbar__item {
    position: relative;
}

.main-navbar__item > a {
    display: block;
    text-decoration: none;
    color: var(--c-black);
    font-size: 20px;
    font-weight: 600;
    line-height: 1;
    padding: 20px;
    position: relative;
}

.main-navbar__item a:hover {
    color: var(--c-violet);
    transition: .3s ease;
}

.main-navbar__item--current > a {
    background-color: var(--c-violet);
    color: #FFF;
}

.main-navbar__item--current > a:hover {
    color: var(--c-black);
}

.main-navbar__item--parent > a {
    padding-right: 32px;
}

.main-navbar__item--parent > a::after {
    content: '';
    width: 13px;
    height: 8px;
    position: absolute;
    top: 50%;
    right: 10px;
    transform: translate(0,-50%);
    background-image: url('../upload/image/design/default/icon-arrow.png');
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center center;
    transition: .4s linear;
}

.main-navbar__item--current > a::after {
    -webkit-filter: invert(1);
    filter: invert(1);
}

.main-navbar__sub-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background-color: var(--c-primary);
    padding: 20px;
    min-width: 350px;
    z-index: 2;
}

.main-navbar__sub-menu a {
    display: block;
    text-decoration: none;
    padding: 10px 0;
    color: var(--c-black);
    font-size: 18px;
    font-weight: 500;
}

.main-navbar__item--parent:hover > .main-navbar__sub-menu {
    display: block;
}


/* ==========================================================================
  Main sections
  ========================================================================== */
.section-bottom {
    text-align: center;
    margin: 74px 0 0 0;
}

.section-bottom-link {
    width: 160px;
    max-width: 100%;
    padding: 16px;
}

.section-title {
    font-size: 48px;
    font-weight: 900;
    line-height: 1;
    color: var(--c-black-light);
    text-align: center;
    margin: 0 0 70px 0;
}


/* ==========================================================================
  Front Slider
  ========================================================================== */
.front-slider {
    width: 100%;
}

.front-slider-item {
    display: flex;
    flex-flow: column wrap;
    justify-content: center;
    height: 685px;
}

.front-slider-item__inner {
    position: relative;
    padding-left: 5px;
}

.front-slider-item__heading {
    max-width: 600px;
    color: var(--c-black-light);
    margin: 0 0 82px 0;
}

.front-slider-item__title {
    font-weight: 900;
    font-size: 60px;
    position: relative;
}

.front-slider-item__title::before {
    content: '';
    display: block;
    width: 652px;
    height: 191px;
    position: absolute;
    top: -36px;
    left: -50px;
    background-image: url('../upload/image/design/default/slide-title-decor.png');
    background-repeat: no-repeat;
    background-position: center center;
    background-size: contain;
    z-index: -1;
}

.front-slider-item__subtitle {
    font-weight: 300;
    font-size: 25px;
    margin-top: 10px;
}
.front-slider-item__subtitle p {
	margin-bottom: 10px;
}

.front-slider-item__action {
    max-width: 420px;
}

.front-slider-item__action-title {
    color: #000;
    font-weight: 600;
    font-size: 22px;
    margin: 0 0 24px 0;
    position: relative;
}

.front-slider-item__action-title::after {
    content: '';
    display: block;
    width: 128px;
    height: 128px;
    position: absolute;
    top: 0;
    right: -78px;
    background-image: url('../upload/image/design/default/line-decor.png');
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center center;
}

.front-slider-item__action-btn {
    font-size: 24px;
    padding: 30px 74px;
}


.front-slider-item__bg-img {
    display: block;
    position: absolute;
    top: 50%;
    right: -148px;
    transform: translateY(-50%);
    margin-top: 54px;
}


/* ==========================================================================
  Services
  ========================================================================== */
.section-services {
    padding: 185px 0 0 0;
}

.services__item {
    flex: 0 0 50%;
    max-width: 50%;
    margin-bottom: 45px;
}

.service-card {
    border: 1px solid rgba(245, 224, 193, 0.56);
    background: #FFF;
}

.service-card__image {
    height: 254px;
    position: relative;
    overflow: hidden;
}

.service-card__image img {
    display: block;
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
}

.service-card__caption {
    padding: 38px;
}

.service-card__title {
    color: #000;
    font-weight: 600;
    font-size: 24px;
    margin: 0 0 12px 0;
}

.service-card__desc {
    color: var(--c-gray);
    font-size: 16px;
    line-height: 1.65;
    margin: 0 0 25px 0;
}

.service-card__order {
    padding: 15px 35px;
}

/* ==========================================================================
  Products
  ========================================================================== */
.section-examples {
    padding: 125px 0 0 0;
}

@media screen and (min-width: 760px){
    .section-examples .section-title {
        margin-bottom: 84px;
    }
}

.products__item {
    flex: 0 0 25%;   
    max-width: 25%;
}

@media screen and (min-width: 990px){
    .products-cols-3 .products__item {
        flex: 0 0 33.3%;   
        max-width: 33.3%;
    }
}

.product-preview {
    height: 100%;
    border: 1px solid rgba(245, 224, 193, 0.56);
    background: #FFF;
}

.product-preview__thumbnail {
    height: 256px;
    position: relative;
    overflow: hidden;
}

.product-preview__thumbnail img {
    display: block;
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
}

.product-preview__info {
    padding: 32px 24px 24px 24px;
}

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

.product-preview__desc {
    margin: 12px 0 0 0;
    color: var(--c-gray);
    font-size: 16px;
    line-height: 1.6;
}

.product-preview__link {
    display: block;
    width: 100%;
    margin: 14px 0 0 0;
    padding: 15px;
}

/* ==========================================================================
  How print 
  ========================================================================== */
.section-how-print {
    padding: 80px 0 110px 0;
}

@media screen and (min-width: 760px){
    .section-how-print .section-title {
        margin-bottom: 87px;
    }

    .section-how-print .product-preview__thumbnail {
        height: 218px;
    }

    .section-how-print .product-preview__info {
        padding: 24px 16px 24px 24px;
    }
    
    .section-how-print .product-preview__desc {
        line-height: 1.44;
        margin: 14px 0 0 0;
    }
    
    .section-how-print .product-preview__link {
        margin: 20px 0 0 0;
    }
}

/* ==========================================================================
  Portfolio
  ========================================================================== */
.section-portfolio {
    padding: 80px 0;
    background: var(--c-primary-bg);
}

@media screen and (min-width: 760px){
    .section-portfolio .section-title {
        margin: 0 0 76px 0;
    }

    .section-portfolio .section-bottom {
        margin: 32px 0 0 0;
    }
}

.portfolio__main {
    flex: 0 0 41.66666667%;
    max-width: 41.66666667%;
    margin-bottom: 0;
}

.portfolio__thumbs {
    flex: 0 0 58.33333333%;
    max-width: 58.33333333%;
    margin-bottom: 0;
}

.portfolio-image-wrap {
    overflow: hidden;
    height: 533px;
}

.portfolio-image-wrap--thumb {
    height: 233px;
}

.portfolio-image-wrap--thumb-h-large {
    height: 263px;
}

.portfolio-image {
    display: block;
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
}

.portfolio-thumbs__item {
    flex: 0 0 42.8%;
    max-width: 42.8%;
    margin-bottom: 37px;
}

.portfolio-thumbs__item--md {
    flex: 0 0 57.2%;
    max-width: 57.2%;
}

/* ==========================================================================
  About
  ========================================================================== */
.section-about {
    padding: 84px 0 136px 0;
}

@media screen and (min-width: 760px){
    .section-about .section-title {
        margin: 0 0 84px 0;
    }
}

.about-us__image {
    flex: 0 0 41.66666667%;
    max-width: 41.66666667%;
    margin-bottom: 0;
}

.about-us__image img {
    display: block;
    max-width: 100%;
    margin: 0 auto;
}

.about-us__info {
    flex: 0 0 50%;
    max-width: 50%;
    margin-bottom: 0;
}

.about-text {
    padding: 0 0 0 34px;
    font-size: 18px;
    line-height: 2;
}

.about-text p:not(:last-child) {
    margin-bottom: 15px;
}

.about-text p strong {
    font-weight: 700;
    font-size: 21px;
}

/* ==========================================================================
  Contacts
  ========================================================================== */
.section-contacts {
    background: var(--c-primary-bg);
    padding: 106px 0 138px 0;
}

.contacts-block__info {
    flex: 0 0 41.66666667%;
    max-width: 41.66666667%;
}

.contacts-block-info {
    padding: 0 0 0 95px;
}

.contacts-block-info__title {
    text-align: left;
    margin: 0 0 52px 0;
}

.contacts-block-info__location-line {
    color: var(--c-black);
    font-size: 16px;
}

.contacts-block-info__location-line a {
    text-decoration: none;
    color: inherit;
}

.contacts-block-info__location-line:not(:last-child) {
    margin-bottom: 16px;
}

.contacts-block-info__callbacks {
    margin: 50px 0 0 0;
}

.contacts-block-info__callback-title {
    font-weight: 700;
    font-size: 18px;
}

.contacts-block-info__callback-tel {
    display: block;
    text-decoration: none;
    color: #000;
    font-size: 18px;
    margin: 23px 0 13px 0;
}

.contacts-block__map {
    flex: 0 0 58.33333333%;
    max-width: 58.33333333%;
}

.contact-map-wrap iframe {
    display: block;
    max-width: 85%;
    width: 540px;
}


/* ==========================================================================
  Footer
  ========================================================================== */
.page-footer__main {
    background-color: var(--c-primary);
    padding: 75px 0;
}

.page-footer__main-inner {
    display: flex;
    flex-flow: row wrap;
    align-items: center;
    justify-content: space-between;
    padding: 0 0 0 57px;
}

.footer-info {
    display: flex;
    flex-flow: row wrap;
    align-items: center;
}

.footer-info__logo {
    max-width: 132px;
}

.footer-info__text {
    padding: 0 0 0 28px;
    color: var(--c-brown);
    font-weight: 400;
    font-size: 14px;
    line-height: 1.5;
}

.footer-info__text p + p {
    margin-top: 22px;
}

.footer-info__text a {
    text-decoration: none;
    color: #29AF3E;
}

.footer-metrics {
    padding: 20px 0 0 0;
}

.footer-metrics__informer:not(:last-child) {
    margin-bottom: 18px;
}

.informer-placeholder {
    width: 160px;
    height: 50px;
    background-color: #FFF0DB;
}


/* ==========================================================================
  Catalog
  ========================================================================== */
.catalog-main {
    display: flex;
    flex-flow: row wrap;
    padding-top: 45px;
    padding-bottom: 140px;
}

.catalog-main__title {
    flex: 0 0 100%;
    max-width: 100%;
    color: var(--c-black-light);
    font-weight: 900;
    font-size: 48px;
    margin: 0 0 65px 0;
}

.catalog-main__sidebar {
    flex: 0 0 25%;
    max-width: 25%;
    padding-right: 15px;
}

.catalog-main__content {
    flex: 0 0 75%;
    max-width: 75%;
    padding-left: 15px;
}

@media screen and (min-width: 990px){
    .catalog-main__content .products__item {
        margin-bottom: 58px;
    }
}

.sidebar-nav__list {
    list-style: none;
}

.sidebar-nav__item:not(:last-child) {
    margin-bottom: 17px;
}

.sidebar-nav__item > a {
    display: block;
    text-decoration: none;
    color: var(--c-black);
    font-size: 24px;
    padding: 18px 0;
    text-align: center;
    border: 1px solid var(--c-black);
    transition: .3s ease;
}


.sidebar-nav__item--current > a,
.sidebar-nav__item > a:hover {
    color: #FFF;
    border-color: var(--c-violet);   
    background-color: var(--c-violet);
}

.sidebar-menu-toggle {
    display: flex;
    flex-flow: row wrap;
    align-items: center;
    justify-content: space-between;
    text-decoration: none;
    color: var(--c-black);
    font-size: 16px;
    padding: 10px 20px;
    border: 1px solid var(--c-black);
    transition: .3s ease;
}

.sidebar-menu-toggle__icon {
    width: 13px;
    height: 8px;
    background-image: url('../upload/image/design/default/icon-arrow.png');
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center center;
    transition: .4s linear;
}

.sidebar-menu-toggle--active .sidebar-menu-toggle__icon {
    transform: rotate(180deg);
}

@media screen and (min-width: 650px) {
    .sidebar-menu-toggle {
        display: none;
    }
}

/* ==========================================================================
  Entry article
  ========================================================================== */
.entry-article {
    padding: 45px 146px 90px 146px;
    text-align: center;
}

.entry-article__title {
    color: var(--c-black-light);    
    font-weight: 900;
    font-size: 48px;
    text-align: center;
    margin: 0 0 58px 0;
}

.entry-article__content {
    color: var(--c-black);
    font-size: 20px;
    line-height: 2;
}

.entry-article__content p + p {
    margin-top: 20px;
}

.entry-article__content h2,
.entry-article__content h3,
.entry-article__content h4,
.entry-article__content h5 {
    color: #000;
    font-weight: 700;
    margin: 0 0 20px 0;
}

.entry-article__content h2 {
    font-size: 32px;
}

.entry-article__content h3 {
    font-size: 28px;
}

.entry-article__content h3 {
    font-size: 24px;
}
.entry-article__content ul {
	margin: 20px;
}


/* ==========================================================================
  Modals
  ========================================================================== */
@-webkit-keyframes modalbox {
      0% {
          top: -250px;
          opacity: 0
      }

      100% {
          top: 0;
          opacity: 1
      }
  }

  @keyframes modalbox {
      0% {
          top: -250px;
          opacity: 0
      }

      100% {
          top: 0;
          opacity: 1
      }
  }

.page-disable-scroll {
    overflow: hidden;
}

.modal {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    display: flex;
    flex-flow: column wrap;
    align-items: center;
    justify-content: center;
    z-index: 999;
}

.modal:not(.modal--show) {
    display: none;
}

.modal__backdrop {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background: rgba(0,0,0,.5);
}

.modal__content {
    width: 450px;
    max-width: 90%;
    max-height: 90%;
    padding: 56px 30px 30px 30px;
    background-color: #FFF;
    position: relative;
    z-index: 2;
    -webkit-animation-name:modalbox;
    animation-name:modalbox;
    -webkit-animation-duration:.4s;
    animation-duration:.4s;
    -webkit-animation-timing-function:cubic-bezier(0,0,.3,1.6);
    animation-timing-function:cubic-bezier(0,0,.3,1.6)
}

.modal-close {
    display: block;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background-color: #ff8d8d;
    text-decoration: none;
    cursor: pointer;
    position: absolute;
    top: 10px;
    right: 10px;
    transition: .3s ease;
}

.modal-close:hover {
    background-color: #c63c3c;
}

.modal-close::before,
.modal-close::after {
    content: '';
    display: block;
    width: 14px;
    height: 2px;
    position: absolute;
    top: 50%;
    left: 50%;
    background-color: #fff;
}

.modal-close::before {
  transform: translate(-50%,-50%) rotate(45deg);
}

.modal-close::after {
    transform: translate(-50%,-50%) rotate(-45deg);
}


/* ==========================================================================
  Responsive
  ========================================================================== */
@media screen and (max-width: 1200px){
    .content-box {
        padding-left: var(--content-box-padding);
        padding-right: var(--content-box-padding);
    }
}

@media screen and (max-width: 990px){
    .page-header__top,
    .page-header__menu {
        padding: 8px 0; 
    }

    .main-navbar {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        padding: 0 20px;
        background-color: var(--c-primary);
        opacity: 1;
        transition: .5s ease;
        z-index: 3;
    }

    .main-navbar:not(.main-navbar--active) {
        opacity: 0;
        top: -100%;
        z-index: -5;
        visibility: hidden;
    }

    .main-navbar__item {
        width: 100%;
    }

    .main-navbar__item > a {
        padding: 12px 0;
        font-size: 16px;
    }

    .section-title {
        font-size: 42px;
        margin: 0 0 40px 0;
    }

    .section-bottom {
        margin: 20px 0 0 0;
    }

    .front-slider-item {
        height: auto;
        padding: 100px 0 40px 0;
    }

    .front-slider-item__bg-img {
        display: block;
        position: absolute;
        top: 50%;
        right: -60px;
        transform: translateY(-50%);
        margin-top: 0;
        width: 50%;
        z-index: -1;
    }

    .front-slider-item__title,
    .front-slider-item__subtitle {
        font-size: 42px;
    }

    .front-slider-item__title::before {
        width: 600px;
        height: 160px;
        top: -32px;
    }

    .front-slider-item__action-btn {
        padding: 15px 30px;
    }

    .section-how-print,
    .section-portfolio,
    .section-about,
    .section-contacts,
    .page-footer__main {
        padding: 40px 0;
    }

    .section-examples {
        padding-top: 40px;
    }

    .section-services {
        padding-top: 80px;
    }

    .products__item {
        flex: 0 0 33.3%;
        max-width: 33.3%;
        margin-bottom: calc( var(--flex-row-col-mg) * 2 );
    }   

    .products-cols-3 .products__item {
        flex: 0 0 50%;
        max-width: 50%;
    }

    .page-footer__main-inner,
    .footer-metrics {
        padding: 0;
    }

    .entry-article {
        padding: 40px 0;
    }

    .entry-article__title {
        margin: 0 0 40px 0;
    }

    .entry-article__content {
        font-size: 16px;
    }

}

@media screen and (max-width: 850px){
    .contacts-block__info {
        flex: 0 0 40%;
        max-width: 40%;
    }

    .contacts-block__map {
        flex: 0 0 60%;
        max-width: 60%;
    }

    .contact-map-wrap iframe {
        max-width: 100%;
        width: 100%;
    }

    .contacts-block-info {
        padding: 0;
    }
}

@media screen and (max-width: 760px){
    .header-callback {
        margin-right: 10px;
    }

    .page-header__contacts {
        padding: 0;
    }

    .front-slider-item {
        height: auto;
        padding: 40px 0;
    }

    .front-slider-item__title,
    .front-slider-item__subtitle {
        font-size: 26px;
    }

    .front-slider-item__heading {
        max-width: 60%;
        margin: 0 0 40px 0;
    }

    .front-slider-item__title::before {
        width: 425px;
        height: 100px;
        top: -20px;
        left: -55px;
    }

    .front-slider-item__action {
        width: 300px;
        max-width: 300px;
    }

    .front-slider-item__action-title {
        font-size: 18px;
    }

    .front-slider-item__action-title::after {
        width: 85px;
        height: 85px;
        right: -20px;
    }

    .front-slider-item__action-btn {
        font-size: 18px;
    }

    .front-slider-item__bg-img {        
        right: -30px;
        width: 45%;
    }

    .section-title,
    .catalog-main__title,
    .entry-article__title {
        font-size: 38px;
    }

    .products__item,
    .portfolio__main,
    .portfolio__thumbs,
    .portfolio-thumbs__item,
    .portfolio-thumbs__item--md,
    .contacts-block__info,
    .contacts-block__map {
        flex: 0 0 50%;
        max-width: 50%;
    }   

    .portfolio-thumbs__item {
        margin-bottom: 15px;
    }

    .portfolio-image-wrap {
        height: 315px;
    }

    .portfolio-image-wrap--thumb,
    .portfolio-image-wrap--thumb-h-large {
        height: 150px;
    }

    .service-card__image,
    .product-preview__thumbnail {
        height: 180px;
    }

    .service-card__title,
    .product-preview__title {
        font-size: 22px;
    }

    .service-card__caption,
    .product-preview__info {
        padding: 24px;
    }

    .service-card__desc,
    .product-preview__desc {
        font-size: 14px;
    }

    .service-card__order,
    .product-preview__link {
        padding: 15px 7px;
        width: 100%;
    }

    .about-us__image,
    .about-us__info {
        flex: 0 0 100%;
        max-width: 100%;
    }

    .about-text {
        padding: 30px 0 0 0;
        font-size: 14px;
    }

    .about-text p strong {
        font-size: inherit;
    }

    .footer-info__logo {
        max-width: 85px;
    }

    .footer-info__text {
        max-width: calc(100% - 85px);
        padding: 0 0 0 12px;
        font-size: 12px;
    }

    .sidebar-nav__item > a {
        font-size: 18px;
        padding: 15px 5px;
    }

    .entry-article__content {
        font-size: 14px;
    }
}

@media screen and (max-width: 650px){
    .page-header__logo img {
        max-width: 55px;
    }

    .page-header__contacts {
        font-size: 13px;
    }

    .messengers__link:not(:last-child) {
        margin-right: 8px;
    }

    .front-slider-item__title,
    .front-slider-item__subtitle {
        font-size: 22px;
    }

    .front-slider-item__title {
        margin-bottom: 10px;
    }

    .front-slider-item__title::before {
        width: 280px;
        height: 75px;
        top: -15px;
        left: -25px;
    }
    
    .front-slider-item__heading {
        margin: 0 0 30px 0;
        width: 225px;
        max-width: 225px;
    }

    .front-slider-item__action-title {
        font-size: 14px;
    }

    .front-slider-item__action-title::after {
        width: 65px;
        height: 65px;
        right: 0;
    }

    .front-slider-item__action-btn {
        font-size: 16px;
        padding: 15px;
    }

    .section-title {
        font-size: 30px;
    }

    .contacts-block__info,
    .contacts-block__map,
    .footer-metrics,
    .footer-info,
    .catalog-main__sidebar,
    .catalog-main__content {
        flex: 0 0 100%;
        max-width: 100%;
    } 

    .contacts-block__map {
        margin-top: 30px;
    }

    .footer-info {
        justify-content: center;
    }

    .footer-metrics {
        display: flex;
        flex-flow: row wrap;
        align-items: center;
        justify-content: center;
        margin: 30px 0 0 0;
    }

    .informer-placeholder {
        max-width: 100%;
    }

    .footer-metrics__informer {
        max-width: calc(50% - 12px);
    }

    .footer-metrics__informer:not(:last-child) {
        margin-bottom: 0;
        margin-right: 12px;
    }

    .catalog-main {
        padding-top: 40px;
        padding-bottom: 40px;
    }

    .catalog-main__title {
        margin: 0 0 40px 0;
    }
    
    .catalog-main__sidebar,
    .catalog-main__content {
        padding: 0;
    }  
    
    .catalog-main__content {
        margin: 30px 0 0 0;
    }

    .sidebar-nav:not(.sidebar-nav--active) {
        display: none;
    }

    .sidebar-nav {
        margin-top: 15px;
    }
}

@media screen and (max-width: 450px){
    .page-header__contacts {
        font-size: 12px;
    }

    .header-callback {
        margin: 0;
    }

    .header-contacts {
        display: none;
    }

    .header-callback__messengers  {
        justify-content: flex-end;
    }

    .front-slider-item__action {
        width: 200px;
        max-width: 200px;
    }

    .front-slider-item__action-title {
        font-size: 14px;
        margin: 0 0 12px 0;
    }

    .front-slider-item__action-btn {
        font-size: 14px;
        padding: 12px;
    }

    .front-slider-item__bg-img {
        width: 55%;
        margin-top: 0;
        transform: none;
        top: auto;
        bottom: 0;
        right: -30px;
        z-index: -2;
    }

    .service-card__image,
    .product-preview__thumbnail {
        height: auto;
    }

    .service-card__image img,
    .product-preview__thumbnail img {
        width: 100%;
        height: auto;
    }

    .services__item,
    .products__item,
    .products-cols-3 .products__item {
        flex: 0 0 100%;
        max-width: 100%;
        margin-bottom: calc( var(--flex-row-col-mg) * 2 );
    }    

    .portfolio__main,
    .portfolio__thumbs {
        flex: 0 0 100%;
        max-width: 100%;
        margin-bottom: calc( var(--flex-row-col-mg) * 2 );
    }
}
.modal__content p{
	text-align: center;
	font-weight: bold;
	font-size: 110%;
	margin: 10px 0;
}
.modal__content p span {
	color: #B84F6D
}

@media (min-width: 576px) {
    .mobile {
        display: inline !important;
    }
    .desktop {
        display: none !important;
    }
}
@media (min-width: 768px) {
    .mobile {
        display: inline !important;
    }
    .desktop {
        display: none !important;
    }
}
@media (min-width: 992px) {
    .desktop {
        display: inline !important;
    }
    .mobile {
        display: none !important;
    }
}
