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

article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
	display: block;
}
body {
	line-height: 1;
	display: flex;
  	flex-direction: column;
  	height: 100%;
  	font-family: 'Montserrat', sans-serif;
    position: relative;
}
ol, ul {
	list-style: none;
}
::-webkit-input-placeholder, ::-moz-placeholder, :-ms-input-placeholder, :-moz-placeholder {
    color: inherit;
}

input::placeholder {
    color: inherit;
    opacity: 1;
}
input[type=text]::-ms-clear, input[type=text]::-ms-reveal {
    display: none;
    width: 0;
    height: 0;
}
input[type="text"], input[type="search"], input[type="password"], input[type="email"] {
    box-sizing: border-box;
    width: 100%;
    height: 35px;
    color: #313030;
    text-align: left;
    font-size: 16px;
    font-family: inherit;
    line-height: 1;
    border: 0;
    border-bottom: 1px solid #aeaeae;
    background: transparent;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    resize: none;
    outline: none;
}

@font-face {
    font-family: 'Gotham Pro Regular';
    src: url('GothamPro.eot');
    src: url('GothamPro.eot?#iefix') format('embedded-opentype'),
    url('GothamPro.woff') format('woff'),
    url('GothamPro.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}
@font-face {
    font-family: 'Gotham Pro Bold';
    src: url('GothamPro-Bold.eot');
    src: url('GothamPro-Bold.eot?#iefix') format('embedded-opentype'),
    url('GothamPro-Bold.woff') format('woff'),
    url('GothamPro-Bold.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

/* STYLES FROM ART-SHOP */

.callback__form {
    position: fixed;
    width: 480px;
    height: 480px;
    z-index: 3;
    display: flex;
    flex-direction: column;
    top: 90px;
    right: 30px;
    opacity: 0;
    pointer-events: none;
    transition: all 0.2s ease-in-out;
    transform: translateX(40px);
    background: #FFFFFF;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.4);
    align-items: center;
    box-sizing: border-box;
    padding: 100px 30px 114px;
    z-index: 4;
}
.callback__form.active {
    opacity: 0.95;
    pointer-events: inherit;
    transform: translateX(0);
}
.callback__form-close {
    width: 30px;
    height: 30px;
    position: absolute;
    right: 20px;
    top: 10px;
    cursor: pointer;
}
.callback__form-close:hover::after {
    transform: rotate(40deg);
    background: #FF473A;
}
.callback__form-close:hover::before {
    transform: rotate(-40deg);
    background: #FF473A;
}
.callback__form-close::after,
.callback__form-close::before {
    content: '';
    position: absolute;
    width: 20px;
    height: 2px;
    background: #000;
    transition: 0.2s;

}
.callback__form-close::before {
    left: 5px;
    transform: rotate(45deg);
    top: 15px;
}
.callback__form-close::after {
    left: 5px;
    transform: rotate(-45deg);
    top: 15px;
}
.callback__form-header {
    font-style: normal;
    font-weight: bold;
    font-size: 16px;
    line-height: normal;
    color: #000000;
    text-transform: uppercase;
    margin-bottom: 36px;
}
#callback__form {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    height: 100%;
}
#callback__form .wa-field:not(.submit) {
    width: 100%;
    margin-bottom: 16px;
    height: 56px;
}
#callback__form .wa-field:not(.submit).error .form-input{
    color: #FF473A !important;
    border-color: #FF473A;
}
.error__message {
    opacity: 0;
    position: absolute;
    color: #FF473A;
    transition: 0.2s;
    top: 0;
    width: 280px;
    left: 0;
}
#callback__form .error__message {
    display: none;
}
.order-form__form .error__message {
    top: 8px;
    width: 200px;
    left: 12px;
}
.order-form__form .thanks {
    color: #fff;
}
.errors_form .error__message {
    opacity: 1;
}
#callback__form .wa-field.submit {
    margin-top: 41px;
    position: relative;
}
#callback__form .form-input {
    width: 100%;
    background: #E8E8E9;
    border-radius: 2px;
    height: 56px;
    font-weight: 500;
    font-size: 16px;
    line-height: 24px;
    letter-spacing: 0.44px;
    color: #263238 !important;
    box-sizing: border-box;
    padding: 17px 10px;
    border-bottom: 1px solid #333333;
}
#callback__form_submit {
    background: #FBFF3A;
    border-radius: 51px;
    font-style: normal;
    font-weight: bold;
    font-size: 18px;
    line-height: normal;
    color: #2C2C2C;
    text-transform: uppercase;
    padding: 0 32px;
    border: none;
    border-bottom: 3px solid #828282;
    box-sizing: border-box;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease-in-out;
    height: 50px;
    cursor: pointer;
}
#callback__form_submit:hover {
    border-radius: 4px;
}

.call__box {
    display: none;
    width: 280px;
    margin: 40px auto 40px;
    align-items: center;
    justify-content: center;
    position: relative;
}
.call__box-trigger {
    display: flex;
    width: 100%;
    box-sizing: border-box;
    height: 50px;
    align-items: center;
    padding: 0 12px;
    justify-content: space-between;
    background: #FF473A;
    border-radius: 6px;
    color: #fff;
    font-style: normal;
    font-size: 16px;
    line-height: normal;
    font-family: 'Gotham Pro Bold',sans-serif;
    text-transform: uppercase;
    cursor: pointer;
}
.call__box-wrapper {
    position: absolute;
    opacity: 0;
    width: 280px;
    background: #fff;
    height: 200px;
    top: -100%;
    z-index: 5;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    color: #000;
    border-radius: 6px;
    flex-direction: column;
    align-items: center;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.4);
    pointer-events: none;
    transition: all 0.2s ease-in-out;
    box-sizing: border-box;
    padding: 15px;
}
.call__box.active .call__box-wrapper {
    pointer-events: inherit;
    opacity: 0.95;
}
.call__box-wrapper a {
    font-size: 20px;
    font-weight: bold;
    padding: 10px;
    color: #2C2C2C;
    text-decoration: none;
}
.call__box-title {
    font-size: 17px;
    margin-bottom: 20px;
    font-weight: bold;
    margin-left: -40px;
    color: #FF473A;
}
.call__box-close {
    width: 30px;
    height: 30px;
    position: absolute;
    right: 10px;
    top: 10px;
    cursor: pointer;
}
.call__box-close::after, .call__box-close::before {
    content: '';
    position: absolute;
    width: 20px;
    height: 2px;
    background: #000;
    transition: 0.2s;
}
.call__box-close::before {
    left: 5px;
    transform: rotate(45deg);
    top: 15px;
}
.call__box-close::after {
    left: 5px;
    transform: rotate(-45deg);
    top: 15px;
}

.layout__background {
    position: fixed;
    background: #2C2C2C;
    opacity: 0;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 3;
    pointer-events: none;
    transition: all 0.1s ease-in-out;
}
.layout__background.active {
    opacity: 0.9;
    pointer-events: inherit;
}

/* END STYLES ART-SHOP */

.layout__wrapper {
	width: 1300px;
	box-sizing: border-box;
	margin: 0 auto;
}
.footer {
	flex-shrink: 0;
	width: 100%;
	height: 200px;
	background: #eee;
}
.main {
	flex: 1 0 auto;
    overflow:hidden;
}
.white__color {
    color:#FFF;
    text-shadow: #000 1px 0 10px;
    	/* color: #FF473A; */
}
.hero {
    background-image: url(../images/hero_img.webp);
    height: 100vh;
    background-position: bottom;
    background-repeat: no-repeat;
    background-size: cover;
    max-height: 620px;
    position: relative;
    flex: 0 0 auto;
}
.hero__section {
    display: flex;
    align-items: stretch;
    justify-content: space-between;
    width: 100%;
    height: 100%;
    max-height: 620px;
    position: relative;
}
.hero__section-left {
    background-image: url(../images/left_back.jpg);
    background-position: 50% 50%;
    background-repeat: no-repeat;
    background-size: cover;
    display: block;
    flex: 1 1 auto;
    height: 100%;
}
.hero__section-right {
    background-image: url(../images/right_back.jpg);
    background-position: 50% 50%;
    background-repeat: no-repeat;
    background-size: cover;
    display: block;
    flex: 1 1 auto;
    height: 100%;
}
.hero__section-selects {
    position: relative;
    width: 100%;
    height: 140px;
    margin-bottom: -140px;
    top: -140px;
    background: rgba(240,240,240, 0.9);
    padding: 20px;
    box-sizing: border-box;
}
.header {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    width: 100%;
}
.header__wrapper {
    display: flex;
    width: 740px;
    position: relative;
}
.header__logo {
    display: flex;
    flex: 0 0 auto;
    width: 195px;
    height: 84px;
    position: relative;
    z-index: 3;
}
.header__buttons {
    display: flex;
    width: 100%;
    background: rgba(0,0,0, 0.7);
    position: relative;
    z-index: 3;
}
.header__buttons_back {
    position: absolute;
    z-index: 1;
    height: 84px;
    background: rgba(0,0,0, 0.7);
    right: 0;
    width: 0;
    pointer-events: none;
    transition: all .2s linear;
}
.hero__title {
    font-style: normal;
    font-weight: 900;
    font-size: 50px;
    line-height: 61px;
    color: #000000;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    position: absolute;
    left: 51%;
    top: 25%;
}
.hero__add-title {
    font-style: normal;
    font-weight: 900;
    font-size: 26px;
    line-height: 32px;
    color: #000000;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    position: absolute;
    bottom: 35%;
    left: 0;
}
.hero__add-title span {
    background: #FBFF3A;
    box-sizing: border-box;
    padding: 16px 89px 12px 30px;
}
.hero__add-title span:last-child {
	padding: 12px 89px 16px 30px;
}
.header__callback {
	display: flex;
    align-items: center;
    cursor: pointer;
    margin-left: 114px;
}
.header__callback svg {
	fill: #fff;
	margin-right: 13px;
	transition: 0.2s;
}
.header__callback-text {
    font-style: normal;
    font-size: 14px;
    color: #fff;
    display: flex;
    flex-direction: column;
    transition: 0.2s;
    line-height: 17px;
}
.header__menu {
    display: flex;
    align-items: center;
    margin-left: 120px;
    cursor: pointer;
    position: relative;
    transition: 0.2s;
}
.header__menu-btn-icons:after, .header__menu-btn-icons:before {
    content: '';
    position: absolute;
    width: 30px;
    height: 2px;
    background: #fff;
    transition: 0.2s ease-in-out;
}
.header__menu-btn-icons:before {
    top: -5px;
    left: -5px;
}
.header__menu-btn-icons:after {
    top: 5px;
    left: 0px;
}
.active .header__menu-btn-icons:after {
    top: 0px;
    left: 0px;
    width: 20px;
    transform: rotate(45deg);
}
.active .header__menu-btn-icons:before {
    top: 0px;
    left: 0px;
    width: 20px;
    transform: rotate(-45deg);
}
.header__menu-btn-text {
    font-style: normal;
    font-weight: bold;
    font-size: 16px;
    line-height: 20px;
    text-align: center;
    color: #fff;
    text-transform: uppercase;
    transition: 0.2s;
}
.header__menu-btn-icons {
    margin-right: 17px;
    position: relative;
    width: 25px;
    height: 2px;
 	background: #fff;
    transition: 0.2s ease-in-out;
}
.active .header__menu-btn-icons {
    background: transparent;
    width: 20px;
    margin-right: 22px;
}

@keyframes pulse {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(0.95);
  }
  100% {
    transform: scale(1);
  }
}
.main__menu {
    background: #fff;
    position: absolute;
    top: 0;
    z-index: 2;
    right: 0;
    opacity: 0;
    box-shadow: -10px 10px 10px rgba(0, 0, 0, 0.25);
    box-sizing: border-box;
    padding: 115px 68px;
    width: 850px;
    display: flex;
    align-items: flex-start;
    pointer-events: none;
    transition: all 0.2s ease-in-out;
}
.main__menu.active {
    opacity: 1;
    pointer-events: inherit;
    right: 0;
}
.main-menu__block {
    display: flex;
    width: 50%;
    flex: 0 0 auto;
    align-items: flex-start;
    justify-content: space-between;
}
.main-menu__block.main-menu__links {
    justify-content: center;
}
.main-menu__block-inner {
    display: flex;
    flex-direction: column;
}
.main-menu__block-title {
    font-style: normal;
    font-weight: bold;
    font-size: 16px;
    line-height: normal;
    color: #221F1F;
    margin-bottom: 12px;
    text-transform: uppercase;
}
.contact-block {
    font-style: normal;
    font-weight: normal;
    font-size: 14px;
    line-height: 24px;
    color: #221F1F;
    position: relative;
    box-sizing: border-box;
    padding-left: 25px;
}
.contact-block_phones {
    margin-bottom: 36px;
}
.contact-block_email {
    display: flex;
    align-items: center;
    white-space: nowrap;
    margin-bottom: 55px;
}
.contact-block_name {
    margin-bottom: 40px;
}
.contact-block-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    left: 0;
    top: 0;
}
.contact-block__phone {
    display: flex;
    align-items: center;
    white-space: nowrap;
    margin-bottom: 5px;
}
.contact-block-icon svg {
    fill: #221F1F;
}
.contact-block__phone span {
    display: flex;
    margin-right: 10px;
    align-items: center;
    justify-content: center;
}
.contact-block__phone-icon {
    font-size: 20px;
    width: 20px;
}
.contact-block_email .contact-block-icon {
    margin-top: 2px;
}
.contact-block_email span {
    display: block;
    margin-right: 5px;
}
.contact-block__phone span:last-child {
    margin-right: 0;
}
.contact-block_name .contact-block-icon {
    margin-top: 5px;
}
.contact-block_name div {
    width: 157px;
}
.contact-block__link {
    color: #221F1F ;
    text-decoration: none;
}
.main-menu__pages {
    display: flex;
    flex-direction: column;
}
.main-menu__pages a {
    font-style: normal;
    font-weight: normal;
    font-size: 16px;
    line-height: 25px;
    color: #2C2C2C;
    transition: 0.2s;
    text-decoration: none;
}
.main-menu__pages a:hover {
    color: #FF473A;
}
.main-menu__links-inner a {
    font-style: normal;
    font-weight: bold;
    font-size: 26px;
    line-height: 38px;
    color: #000000;
    transition: 0.2s;
    text-decoration: none;
}
.main-menu__links-inner a:first-child {
    line-height: 22px;
    margin-bottom: 10px;
}
.main-menu__links-inner a:hover {
    color: #FF473A;
}
.main-menu__links .main-menu__links-inner {
    display: flex;
    flex-direction: column;
}
.styles_photo {
    display: block;
    box-sizing: border-box;
    padding: 90px 30px 57px;
    background: #2C2C2C;
    position: relative;
    height: auto;
    overflow: hidden;
}
.styles_photo .layout__wrapper {
    position: relative;

}
.styles_photo__title {
    font-style: normal;
    font-weight: 900;
    font-size: 50px;
    line-height: 61px;
    color: #FFFFFF;
    text-transform: uppercase;
    margin-bottom: 30px;
    position: relative;
    z-index: 1;
}
.styles_photo__title span {
    color: #FF473A;
}
.styles_photo__item-box {
    display: block;
    position: relative;
}
.styles_photo__name {
    position: absolute;
    display: flex;
    flex-direction: column;
    bottom: 0;
    left: 0;
    font-style: normal;
    font-weight: 900;
    font-size: 20px;
    line-height: 24px;
    color: #2C2C2C;
    align-items: flex-start;
    white-space: nowrap;
}
.styles_photo__name span {
    background: #FBFF3A;
    box-sizing: border-box;
    padding: 8px 40px 8px 12px;
    white-space: nowrap;
}
.styles_photo__item {
    margin-bottom: 64px;
    width: auto;
    transition: 0.2s;
    cursor: pointer;
    height: auto;
    display: block;
}
.styles_photo__box {
    width: 100%;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    flex-wrap: wrap;
    position: relative;
    z-index: 1;
}
.styles_photo__item:hover {
    box-shadow: 4px 4px 50px rgba(255, 255, 255, 0.9);
}
.styles_photo__btn {
    background: #FBFF3A;
    width: 150px;
    height: 150px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    bottom: -23px;
    right: -23px;
    border-radius: 50%;
    font-style: normal;
    font-weight: 900;
    font-size: 20px;
    line-height: 24px;
    color: #2C2C2C;
    transition: 0.2s;
    transform: scale(0);
}
.styles_photo__item:hover .styles_photo__btn {
    transform: scale(1);
}
.styles_photo__logo {
    position: absolute;
    width: 422px;
    height: 100%;
    background-image: url(../images/Logo_back.png);
    z-index: 0;
    top: -50px;
    left: -20px;
    background-repeat: no-repeat;
    background-size: cover;
}
.styles_photo__shine {
    box-shadow: 0 0 500px 182px white;
    transform: rotate(100deg);
    display: block;
    width: 0px;
    height: 500px;
    position: absolute;
    top: -100px;
    right: -105px;
}
.order-form {
    display: flex;
    width: 100%;
    justify-content: flex-end;
    align-items: flex-start;
    position: relative;
}
.order-form__box {
    width: 70%;
    background: rgba(17,17,17, 0.9);
    display: block;
    height: 100%;
    padding-bottom: 140px;
}
.order-form__back {
    background-image: url(../images/orderImage.jpg);
    background-repeat: no-repeat;
    width: 75%;
    height: 100%;
    position: absolute;
    z-index: -1;
    background-size: initial;
    left: 0;
    top: 0;
}
.order-form__title {
    font-style: normal;
    font-weight: 900;
    font-size: 50px;
    line-height: 61px;
    color: #FFFFFF;
    text-transform: uppercase;
    text-align: right;
    margin: 39px 73px 55px 0;
}
.order-form__title span {
    color: #FF473A;
}
.order-form__block {
    display: flex;
    align-items: center;
    width: 100%;
    height: 100%;
    flex-direction: column;
}
.order-form__style-size {
    display: flex;
    align-items: flex-start;
    width: 62%;
    flex: 0 0 auto;
    justify-content: flex-start;
}
.order-form__style {
    font-style: normal;
    font-weight: 500;
    font-size: 20px;
    line-height: 24px;
    color: #FFFFFF;
    display: flex;
    flex-direction: column;
    margin: 0 110px 0 40px;
}
.order-form__style-item {
    font-weight: 900;
    margin-bottom: 10px;
    cursor: pointer;
}
.order-form__style-item.active {
    color: #FF473A;
}
.order-form__style-title {
    margin-bottom: 30px;
}
.order-form__size {
    display: flex;
    flex-direction: column;
}
.order-form__size-title {
    font-style: normal;
    font-weight: 500;
    font-size: 20px;
    line-height: 24px;
    color: #FFFFFF;
    margin-bottom: 30px;
}
.order-form__size-item {
    font-style: normal;
    font-weight: 900;
    font-size: 20px;
    line-height: 37px;
    color: #BDBDBD;
    cursor: pointer;
}
.order-form__size-item.active {
    color: #FF473A;
}
.murciano {
    display: flex;
    flex-direction: column;
}
.order-form__form {
    width: 100%;
    height: 100%;
    display: block;
    position: relative;
}
#order__form,
#order__form-popap {
    display: flex;
    flex-direction: column;
    box-sizing: border-box;
    width: 100%;
    padding: 20px 30px;
    align-items: center;
}
#order__form .wa-field, .wa-field-custom, #order__form-popap .wa-field {
    width: 100%;
    position: relative;
}
.wa-field-custom {
    border: 2px dashed #fff;
    margin-top: 10px;
}
#order__form .wa-field svg,
#order__form-popap .wa-field svg{
    position: absolute;
    top: 20px;
    right: 12px;
    fill: #EDEDED;
}
#order__form input[type=text],
#order__form-popap input[type=text] {
    border-radius: 2px;
    border-bottom: 1px solid #fff;
    font-style: normal;
    font-weight: normal;
    font-size: 16px;
    line-height: 24px;
    display: flex;
    align-items: center;
    letter-spacing: 0.44px;
    color: #FFFFFF;
    font-family: Gotham Pro Regular;
    height: 56px;
    background: rgba(247,247,247, 0.3);
    padding-left: 11px;
    margin-bottom: 16px;
}
#order__form input[type=submit],
#order__form-popap input[type=submit] {
    width: 184px;
    height: 43px;
    font-family: Gotham Pro Bold;
    font-style: normal;
    font-size: 18px;
    line-height: 17px;
    color: #FFFFFF;
    background: #FF473A;
    border-radius: 51px;
    border: none;
    border-bottom: 3px solid #A80C01;
    text-transform: uppercase;
    margin: 50px auto 0;
    display: block;
    cursor: pointer;
    transition: 0.2s;
}
#order__form input[type=file],
#order__form-popap input[type=file] {
    display: none;
}
.file__input {
    display: flex;
    width: 100%;
    height: 56px;
    align-items: center;
    justify-content: space-between;
    padding: 0 11px;
    box-sizing: border-box;
    background: rgba(247,247,247, 0.3);
    font-family: Gotham Pro Regular;
    font-style: normal;
    font-weight: normal;
    font-size: 16px;
    line-height: 24px;
    letter-spacing: 0.44px;
    color: #FFFFFF;
    cursor: pointer;
    border-radius: 2px;
    position: relative;
    z-index: 1;
}
.file__input svg {
    fill: #EDEDED;
}
.order-form__form--back {
    box-shadow: 0 0 168px 24px white;
    transform: rotate(90deg);
    display: block;
    width: 0;
    height: 100px;
    position: absolute;
    right: 150px;
    bottom: -1px;
    z-index: 0;
}
.ourWorks {
    box-sizing: border-box;
    padding: 58px 0 95px;
}
.ourWorks__header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    margin-bottom: 30px;
    padding-left: 30px;
    box-sizing: border-box;
}
.ourWorks__title {
    font-style: normal;
    font-weight: 900;
    font-size: 50px;
    line-height: 61px;
    color: #000000;
    text-transform: uppercase;
}
.ourWorks__title span {
    color: #FF473A;
}
.ourWorks__link-top {
    background: #FF473A;
    display: flex;
    height: 60px;
    align-items: center;
    justify-content: flex-start;
    width: 278px;
    font-style: normal;
    font-weight: bold;
    font-size: 18px;
    line-height: 22px;
    color: #FFFFFF;
    text-decoration: none;
    margin-top: 9px;
    box-sizing: border-box;
    padding-left: 85px;
}
.ourWorks__link-top svg {
    margin-left: 25px;
}
.ourWorks__box {
    box-sizing: border-box;
    display: block;
    width: 100%;
}
.ourWorks__box-nav {
    display: flex;
    padding: 5px 30px;
    align-items: center;
    flex-wrap: wrap;
    justify-content: flex-start;
}
.ourWorks__box-nav-btn {
    font-weight: 900;
    font-size: 16px;
    line-height: 20px;
    color: #2C2C2C;
    box-sizing: border-box;
    padding: 10px 7px;
    margin: 0 15px 15px 0;
    background: transparent;
    border-radius: 4px;
    transition: all .2s;
    cursor: pointer;
}
.ourWorks__box-nav-btn.active {
    background: #FF473A;
    color: #fff;
}
.ourWorks__item {
    margin: 0 10px 10px;
    display: block;
}
.ourWorks__link-bot {
    width: 258px;
    height: 140px;
    background: #FF473A;
    display: flex;
    position: relative;
    align-items: center;
    justify-content: center;
    font-weight: 900;
    font-size: 18px;
    line-height: 22px;
    color: #FFFFFF;
    text-transform: uppercase;
    text-decoration: none;
    margin-top: 10px;
}
.ourWorks__link-arrow {
    width: 75px;
    height: 75px;
    position: absolute;
    background: #FFFFFF;
    border: 6px solid #FF473A;
    box-sizing: border-box;
    display: flex;
    align-items: center;
    justify-content: center;
    right: -26px;
    bottom: -12px;
}
.photo_in_picture {
    padding-bottom: 25%;
    position: relative;
    height: 485px;
    box-sizing: border-box;
    margin-bottom: -1px;
}
.photo_in_picture__back {
    background-image: url('../images/picture.jpg');
    background-repeat: no-repeat;
    width: 100%;
    height: 100%;
    position: absolute;
    display: block;
	background-position: center;
}
.photo_in_picture__title {
    position: absolute;
    display: flex;
    flex-direction: column;
    font-style: normal;
    font-weight: 900;
    font-size: 50px;
    line-height: 61px;
    color: #2C2C2C;
    text-transform: uppercase;
    left: 30px;
    top: 133px;
}
.photo_in_picture__title span {
    color: #FF473A;
}
.photo_in_picture__btn {
    position: absolute;
    right: 260px;
    bottom: 120px;
    background: url('../images/btn.jpg');
    border-radius: 82px;
    width: 350px;
    height: 90px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 900;
    font-size: 30px;
    line-height: 37px;
    color: #FFFFFF;
    text-transform: uppercase;
    cursor: pointer;
    transition: 0.2s;
    overflow: hidden;
}

.photo_in_picture__btn span{
    position: relative;
    z-index: 1;
}

.footer-info__block-social.mobile {
    display: none;
}
.layout__footer {
    padding: 14px 0px 46px;
    background: #2C2C2C;
    color: #fff;
    width: 100%;
    box-sizing: border-box;
}

.footer-info {
    display: flex;
    flex-flow: row wrap;
    margin: 0 -10px 25px;
}

.footer-info__block {
    flex: 1;
    min-width: 220px;
    margin: 0 10px 10px;
    position: relative;
}
.footer-copy {
    position: absolute;
    width: 600px;
    display: flex;
    flex-direction: column;
    left: 0;
    font-size: 12px;
    line-height: 15px;
    color: #FFFFFF;
}
.footer-info__block p {
    margin-bottom: 10px;
}

.footer-info__block p a {
    color: #999;
}

.footer-info__block p a:hover {
    color: #fff;
}

.footer-info__block-content_payments {
    display: flex;
    flex-flow: row wrap;
    align-items: flex-start;
    width: 200px;
}

.footer-info__block-content_payments .footer-info__block-link {
    width: 100%;
}
.footer-info__block-content .contact-block{
    color: #fff;
}
.footer-info__block-content .contact-block .contact-block-icon svg {
    fill:#fff;
}
.footer-info__block-content .contact-block .icon-fonticon_phone-soc-wa,
.footer-info__block-content .contact-block .icon-fonticon_phone-soc-tg {
    color: #fff;
}
.footer-info__block-content .contact-block .contact-block__link {
    color: #fff !important;
    text-decoration: none;
}
.footer-info__block-payment {
    display: block;
    max-width: 34px;
    max-height: 20px;
    margin: 0 15px 21px 0;
}

.footer-info__block_socials {
    text-align: center;
}

.footer-info__block_socials .socials-icons {
    width: 100%;
    max-width: 150px;
    display: flex;
    flex-flow: row wrap;
    justify-content: flex-start;
    margin: 0 auto;
}

.footer-info__block_socials .socials-icons__icon {
    margin: 0 35px 20px 0;
    width: 25px;
    height: 25px;
}

.footer-info__block_socials .socials-icons__icon:hover {
    cursor: pointer;
	color: #DC4E41;
}
.footer-info__block_socials .socials-icons__icon svg {
    color: #FFFFFF;
    transition: color 0.3s ease;
}

.footer-info__block_socials .socials-icons__icon.socials-icons__icon_instagram:hover svg {
    color: #239AB9;
	cursor: pointer;
}
.footer-info__block_socials .socials-icons__icon.socials-icons__icon_facebook:hover svg {
    color: #3B5998;
	cursor: pointer;
}
.footer-info__block_socials .socials-icons__icon.socials-icons__icon_youtube:hover svg {
    color: #DC4E41;
	cursor: pointer;
}

.footer-info__block_socials .socials-icons__icon:nth-child(3) {
    margin-right: 0;
}   
.footer-info__block-title {
    text-transform: uppercase;
    margin-bottom: 12px;
    font-style: normal;
    font-weight: bold;
    font-size: 16px;
    line-height: normal;
    color: #FFFFFF;
}
.footer-info__block-title.shipping__title {
    margin-top: 26px;
}
.footer-info__block-link {
    display: block;
    margin-bottom: 10px;
    font-style: normal;
    font-weight: normal;
    font-size: 16px;
    line-height: 25px;
    color: #FFFFFF;
    text-decoration: none;
}

.footer-info__block-link:hover {
    color: #FF473A;
}

.footer-info__block-link_icon {
    display: flex;
    align-items: center;
}

.footer-info__block-link_icon .icon {
    font-size: 20px;
    display: block;
    margin-right: 5px;
}
.contact-block__phone {
    display: flex;
    align-items: center;
    white-space: nowrap;
    margin-bottom: 5px;
}
.contact-block__phone span {
    display: block;
    margin-right: 10px;
}
.contact-block__phone span a {
    color: #fff;
    text-decoration: none;
}
.contact-block__phone span:last-child {
    margin-right: 0;
}
.layout_mobile .footer-info,
.layout_mobile .footer-info__block {
    margin-left: 0;
    margin-right: 0;
}
.contact-block_phones {
    margin-bottom: 36px;
}

.contact-block {
    font-style: normal;
    font-weight: normal;
    font-size: 14px;
    line-height: 24px;
    color: #221F1F;
    position: relative;
    box-sizing: border-box;
    padding-left: 25px;
}
.contact-block_email {
    margin-bottom: 55px;
    display: flex;
    align-items: center;
    white-space: nowrap;
}
.contact-block_email span:last-child {
    margin-right: 0;
}
.contact-block_name {
    margin-bottom: 40px;
}
.contact-block_name div {
    width: 157px;
}
.contact-block-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    left: 0;
    top: 0;
}
.contact-block_name .contact-block-icon {
    margin-top: 5px;
}
.contact-block_email .contact-block-icon {
    margin-top: 6px;
    display: block;
    margin-right: 5px;
}
.size_price {
    position: relative;
    display: block;
    padding-bottom: 66%;
}
.size_price__image {
    background-image: url(../images/size__back.webp);
    display: block;
    position: absolute;
    width: 100%;
    height: 100%;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: 50% 50%;
}
.size_price__title {
    position: absolute;
    font-weight: 900;
    font-size: 50px;
    line-height: 61px;
    text-transform: uppercase;
    right: 2%;
    top: 4%;
    color: #000000;
}
.size_price__title span{
    color: #FF473A;
}
/* .size_price__devushka-box { ДЕВУШКА СПЕРЕДИ ДИВАНА
    display: block;
    width: 13%;
    bottom: 0;
    position: absolute;
    height: auto;
    padding-bottom: 45%;
    left: 20%;
}
.size_price__devushka {
    background-image: url(../images/devushka.png);
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: 50% 50%;
} */
.size_price__box {
    position: absolute;
    width: 100%;
    height: 100%;
    display: block;
    left: 0;
    top: 0;

}
.size_price__item {
    display: block;
    position: absolute;
    height: auto;
}
.size_price__item.first {
    width: 27.5%;
    left: 8%;
    top: 4%;
}
.size_price__item-size {
    font-style: normal;
    font-weight: 900;
    font-size: 30px;
    line-height: 37px;
    color: #2C2C2C;
}
.size_price__item.first .size_price__item-size, .size_price__item.second .size_price__item-size{
    font-size: 50px;
    line-height: 61px;
}
.size_price__item-image-box {
    width: 100%;
    position: relative;
    display: block;
    padding-bottom: 112%;
}
.size_price__item-price {
    position: absolute;
    background: #FBFF3A;
    left: 0;
    top: 0;
    font-style: normal;
    font-weight: bold;
    font-size: 18px;
    line-height: 22px;
    color: #2C2C2C;
    box-sizing: border-box;
    padding: 2px 3px;
    z-index: 1;
}
.size_price__item-image {
    background-image: url(../images/styles_photo/photo_holst.webp);
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: 50% 50%;
}
.size_price__item.second {
    width: 19%;
    left: 39%;
    top: 10%;
}
.size_price__item.third {
    width: 14%;
    left: 61%;
    top: 16.5%;
}
.size_price__item.fourth {
    width: 8.5%;
    left: 78%;
    top: 21%;
    display: flex;
    flex-direction: column-reverse;
}
.size_price__item.fourth .size_price__item-price {
    bottom: -63px;
    top: inherit;
}
.size_price__select-box {
    position: relative;
    display: flex;
    height: 140px;
    bottom: 0;
    left: 0;
    background: rgba(240,240,240, 0.9);
    top: -140px;
    margin-bottom: -140px;
    padding: 20px;
    box-sizing: border-box;
}
.size_price__selects {
    display: flex;
    align-items: flex-end;
    justify-content: center;
    width: 100%;
}
.order-form__form .size_price__selects {
    justify-content: center;
    flex-direction: column;
    margin-top: 10px;
    padding: 20px 30px 0;
    box-sizing: border-box;
    align-items: center;
}
.order-form__form .size_price__select-text {
    color: #fff;
}
.order-form__form .size_price__select {
    width: 100%;
}
.order-form__form .size_price__select select {
    width: 100%;
}
.size_price__select {
    display: flex;
    flex-direction: column;
    margin: 0 15px;
    position: relative;
}
.size_price__select svg {
    position: absolute;
    bottom: 22px;
    right: 20px;
    pointer-events: none;
}
.size_price__btn {
    margin-left: 15px;
    -webkit-appearance: none;
    border: none;
    background: #FF473A;
    border-radius: 51px;
    font-style: normal;
    font-weight: bold;
    font-size: 18px;
    line-height: 17px;
    color: #FFFFFF;
    box-sizing: border-box;
    padding: 12px 44px;
    text-transform: uppercase;
    cursor: pointer;
    border-bottom: 3px solid #A80C01;
    transition: all .2s linear;
}
.size_price__select select {
    -webkit-appearance: none;
    position: relative;
    display: block;
    padding-right: 30px;
    padding-left: 10px;
    margin: 0;
    height: 20px;
    border-radius: 0;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    outline: 0;
    box-sizing: border-box;
    cursor: pointer;
    background: #F7F7F7;
    border-radius: 2px;
    border: none;
    border-bottom: 1px solid #313030;
    width: 280px;
    height: 56px;
    font-size: 16px;
    line-height: 24px;
    display: flex;
    align-items: center;
    letter-spacing: 0.44px;
    color: #2C2C2C;
}
.size_price__select-text {
    font-weight: 500;
    font-size: 20px;
    line-height: 24px;
    color: #2C2C2C;
    margin-bottom: 5px;
}
.about_as {
    background: rgba(240,240,240, 0.9);
    display: flex;
    flex-direction: column;
    box-sizing: border-box;
    padding: 30px;
    align-items: flex-start;
}
.about_as-bold {
    font-weight: 900;
}
.yel_back  {
    background: #FBFF3A;
    padding: 5px;
}
.about_as-first,.about_as-second {
    font-size: 30px;
    line-height: 37px;
    color: #2C2C2C;
    margin-bottom: 15px;
}
.about_as-red {
    color: #FF473A;
}
.ml-10px {
    margin-left: 10px;
}
.about_as-second {
    margin-bottom: 30px;
}
.about_as-reg {
    font-weight: 500;
    font-size: 17px;
    line-height: 21px;
    color: #2C2C2C;
}
.about_as-third,.about_as-fourth {
    margin-bottom: 15px;
}
.about_as a {
    text-decoration: none;
}
.about_as-links {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
}
.about_as-links a{
    display: block;
    margin-right: 10px;
    color: #2C2C2C;
}
.main__menu__mobile, .main__menu__mobile.active {
    display: none;
}
@media screen and (max-width: 1240px) {
    .footer-info__block_socials {
        flex: 0;
        box-sizing: border-box;
        width: 100%;
        text-align: left;
        margin: 0;
        padding: 0 10px;
    }
    .footer-info__block_socials .socials-icons {
        max-width: 100%;
        justify-content: flex-start;
    }
    .footer-info__block-title {
        font-weight: normal;
    }
    .footer-info__block-social .socials-icons__icon {
        margin: 0 40px 15px 0;
    }
}
@media screen and (max-width: 600px) {
    .footer-info__block-social .socials-icons__icon {
        margin: 0 20px 15px 0;
    }
}
@media screen and (max-width: 500px) {
    .footer-info__block_socials .socials-wrap {
        margin: 0 -5px;
    }
    .footer-info__block_socials .social-icon {
        margin: 0 5px;
    }
    .footer-info__block-social .socials-icons__icon {
        margin: 0 25px 15px 0;
        width: 25px;
        height: 25px;
    }
    .footer-info__block {
        flex: 0 0 auto;
        min-width: 171px;
        width: 170px;
    }
    .footer-info__block .contact-block__phone {
        flex-wrap: wrap;
    }
}
.order-form__box-popap,.size_price-form__box-popap {
    background: rgba(17,17,17, 0.9);
    width: 1000;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    opacity: 0;
    pointer-events: none;
    z-index: 11;
    transition: 0.2s;
}
.order-form__box-popap.active {
    opacity: 1;
    pointer-events: inherit;
}
.order-form__box-popap.active, .size_price-form__box-popap.active{
    opacity: 1;
    pointer-events: inherit;
}
.size_price-form__box-popap {
    width: calc(100% - 20px);
    max-width: 500px;
    height: 600px;
}
.order-form__box-popap {
    height: auto;
    width: calc(100% - 20px);
    max-width: 500px;
    overflow: auto;
}
.order-form__box-popap .order-form__title {
    text-align: center;
}
.size_price-form__box-popap .order-form__title,.order-form__box-popap .order-form__title {
    font-size: 30px;
    line-height: 40px;
    text-align: center;
    margin: 20px;
}
.size_price-form__box-popap .order-form__box-popap__close {
    top: 60px;
}
.order-form__box-popap__close {
    position: absolute;
    right: 30px;
    top: 58px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 115px;
    color: #fff;
    font-size: 16px;
    line-height: 15px;
    cursor: pointer;
    transition: 0.2s;
    z-index: 10;
}
.order-form__box-popap__close svg {
    fill: #fff;
    transition: 0.2s;
}
.order-form__box-popap__close:hover {
    color: #FF473A;
}
.order-form__box-popap__close:hover svg {
    fill: #FF473A;
}
@media screen and (max-width: 1320px) {
    .layout__wrapper {
        width: 1000px;
    }
    .styles_photo__box {
        justify-content: space-around;
    }
    .ourWorks__box {
        padding: 0;
    }
    .order-form__box-popap .order-form__title {
        font-size: 35px;
        margin: 39px 75px 16px 0;
    }
    .order-form__style {
        font-size: 16px;
        line-height: 17px;
    }
    .order-form__size-item {
        font-size: 17px;
        line-height: 32px;
    }
    .callback__form {
        height: 430px;
    }
    .order-form__style-size {
        width: 58%;
    }
    .order-form__back {
        width: 70%;
    }
    .size_price__title {
        font-size: 40px;
        line-height: 50px;
        top: 0%;
    }
    .size_price__item-size {
        font-size: 25px;
        line-height: 30px;
    }
    .size_price__item.first .size_price__item-size, .size_price__item.second .size_price__item-size {
        font-size: 35px;
        line-height: 40px;
    }
    .size_price__item.fourth .size_price__item-price {
        bottom: -55px;
    }
}
@media screen and (max-width: 1040px) {
    .layout__wrapper {
        width: 100%;
        padding: 0 10px;
    }
    .order-form__back {
        width: 100%;
    }
    .order-form__box {
        width: 100%;
    }
    .photo_in_picture__title {
        top: 45px;
    }
    .photo_in_picture__btn {
        right: 30px;
    }
    .footer-info__block_info {
        display: none;
    }
    .order-form__box-popap {
        max-width: 360px;
        width: 100%;
    }
    .order-form__style-size {
        display: none;
    }
    .order-form__box-popap .order-form__title {
        font-size: 19px;
        margin: 20px 0 60px;
    }
    .order-form__box-popap  #order__form {
        padding: 0 30px 30px;
    }
    .callback__form {
        width: 100%;
        height: 100%;
        max-width: 360px;
        max-height: 420px;
        top: 20px;
        right: 50%;
    }
    .callback__form.active {
        transform: translateX(50%);
    }
    .call__box {
        display: flex;
    }
    .size_price__title {
        font-size: 30px;
        line-height: 40px;
        top: 1%;
    }
    .size_price__item-size {
        font-size: 20px;
        line-height: 25px;
    }
    .size_price__item.first .size_price__item-size, .size_price__item.second .size_price__item-size {
        font-size: 30px;
        line-height: 35px;
    }
    .size_price__item-price {
        font-size: 14px;
        line-height: 16px;
    }
    .size_price__item.fourth .size_price__item-price {
        bottom: -45px;
        white-space: nowrap;
        overflow: hidden;
    }
    .about_as-reg {
        margin-bottom: 15px;
    }
}
.home__link {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: 20px;
    color: #fff;
    text-decoration: none;
}
@media screen and (max-width: 1000px) {
    .size_price__select-box,.hero__section-selects {
        height: auto;
        background: rgba(240,240,240, 0.9);
        top: 0;
        margin: 0;
    }
    .size_price__selects {
        align-items: center;
        flex-direction: column;
    }
    .size_price__select {
        margin: 15px;
    }
    .size_price__btn {
        margin: 15px;
    }
    .order-form__box-popap.active, .size_price-form__box-popap.active {
        overflow: auto;
        height: 400px;
    }
    .order-form__title {
        font-size: 21px;
        line-height: 23px;
        text-align: center;
        margin: 30px 20px 10px;
    }
    .size_price-form__box-popap .order-form__title {
        font-size: 20px;
        line-height: 26px;
    }
    .size_price-form__box-popap .order-form__box-popap__close {
        top: 50px;
    }
    .main__menu,.main__menu.active {
        display: none;
    }
    .main__menu__mobile {
        width: 315px;
        height: 650px;
        display: flex;
        flex-direction: column;
        position: absolute;
        top: 0;
        background: #fff;
        opacity: 0;
        box-shadow: -5px 5px 5px rgba(0, 0, 0, 0.5);
        z-index: 5;
        right: -325px;
        transition: all 0.2s ease-in-out;
        pointer-events: none;
    }
    .layout__background--main {
        position: fixed;
        background: #fff;
        opacity: 0;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        z-index: 4;
        pointer-events: none;
        transition: all 0.1s ease-in-out;
    }
    .layout__background--main.active {
        opacity: 0.6;
        pointer-events: inherit;
    }
    .main__menu__mobile.active {
        right: -10px;
        pointer-events: inherit;
        opacity: 0.98;
        display: flex;
    }
    .main-menu__mobile-logo {
        width: 85px;
        height: 37px;
        margin-left: 10px;
        margin-bottom: 34px;
    }
    .main-menu__mobile-logo img {
        max-width: 100%;
    }
    .main-menu__mobile-close {
        position: absolute;
        top: 0;
        right: 0;
        width: 35px;
        height: 35px;
        cursor: pointer;
    }
    .main-menu__mobile-close::after,
    .main-menu__mobile-close::before {
        content: '';
        position: absolute;
        width: 22px;
        height: 2px;
        background: #454545;
    }
    .main-menu__mobile-close::after {
        transform: rotate(-45deg);
        top: 15px;
        left: 5px;
    }
    .main-menu__mobile-close::before {
        transform: rotate(45deg);
        top: 15px;
        left: 5px;
    }
    .main-menu__mobile-content {
        margin-right: 25px;
        width: 100%;
        height: 100%;
        overflow-y: auto;
        padding-right: 37px;
        box-sizing: border-box;
    }
    .main-menu__mobile-box {
        display: flex;
        flex-direction: column;
        width: 100%;
    }
    
    .main-menu__mobile-box.works_news {
        margin-top: 43px;
        margin-bottom: 44px;
    }
    .main-menu__mobile-box a {
        font-style: normal;
        font-weight: 500;
        font-size: 14px;
        line-height: 22px;
        color: #2C2C2C;
        box-sizing: border-box;
        display: flex;
        align-items: center;
        padding: 10px 0 10px 26px;
        text-decoration: none;
    }
    .main-menu__mobile-box a.mobile-box {
        background: #E7E7E7;
    }
    .main-menu__mobile-box a.work_m {
        font-style: normal;
        font-weight: bold;
        font-size: 16px;
        line-height: normal;
    }
    .main-menu__mobile-box a.catalog_m {
        font-style: normal;
        font-weight: bold;
        font-size: 16px;
        line-height: normal;
        background: #E7E7E7;
    }
    .main-menu__mobile-box a svg {
        margin-right: 23px;
    }
    .main__menu__mobile .call__box {
        margin: 25px 10px 25px;
    }
    .iauth__mobile-box {
        display: flex;
        padding-left: 26px;
        align-items: center;
    }
    .fav_mob_link .main-menu__icon {
        font-size: 20px;
        margin-right: 23px;
    }
    .main-menu__count {
        margin-left: auto;
        padding: 0 3px;
        border-radius: 3px;
        color: #fff;
        display: none;
    }
    .ready .main-menu__count {
        display: block;
    }
    .contact_m {
        border-bottom: 1px solid #263238;
    }
    .category__title,
    .product__title {
        display: flex;
        align-items: center;
        justify-content: space-between;
    }
    .lending__link {
        display: flex;
        width: 207px;
        position: relative;
        margin-right: 21px;
        height: 50px;
        align-items: flex-end;
        background: #BDBDBD;
        border-radius: 4px;
        box-sizing: border-box;
        padding: 10px 0px 10px 7px;
    }
    .lending__link:hover .lending__link-name{
        color: #FF473A;
    }
    .lending__link:hover .photoaparat-svg{
        fill: #FF473A;
    }
    .lending__link-img {
        position: absolute;
        left: 30px;
        top: -4px;
        z-index: 0;
    }
    .lending__link-name {
        font-style: normal;
        font-size: 14px;
        line-height: normal;
        color: #2C2C2C;
        font-family: 'Gotham Pro Bold', san-serif;
        margin-bottom: 8px;
        margin-left: 14px;
        position: relative;
        white-space: nowrap;
        transition: 0.2s;
    }
    
    .photoaparat-svg {
        fill: #fff;
        width: 23px;
        height: 21px;
        transition: 0.2s;
    }
    .triangle {
        position: absolute;
        height: 52px;
        width: 21px;
        overflow: hidden;
        top: -1px;
        right: -21px;
    }
    .triangle__inner {
        position: absolute;
        width: 51px;
        height: 51px;
        left: -39px;
        background: #BDBDBD;
        transform: rotate(45deg);
        border-radius: 4px;
    }
    .call__box {
        display: flex;
        width: 280px;
        margin: 25px auto 55px;
        align-items: center;
        justify-content: center;
        position: relative;
    }
    .main-menu__mobile .call__box {
        width: 260px;
        margin: 25px 0px 25px 10px;
    }
    .main-menu__mobile  .call__box-trigger {
        font-size: 14px;
    }
    .main-menu__mobile .call__box-wrapper {
        top: -140px;
        width: 260px;
    }
    .hero__add-title {
        bottom: 10%;
    }
}
@media screen and (max-width: 800px) {
    .hero {
        margin-top: 40px;
    }
    .header {
        height: 40px;
        position: relative;
        top: -40px;
    }
    .header__wrapper {
        width: 100%;
    }
    .header__logo {
        height: 36px;
        width: auto;
    }
    .header__logo svg {
        height: 36px;
        width: auto;
    }
    .header__buttons {
        background: #fff;
    }
    .header__callback {
        margin-left: auto;
    }
    .header__callback svg {
        fill: #828282;
        margin-right: 0;
    }
    .header__callback-text {
        display: none;
    }
    .header__menu {
        margin-left: 55px;
    }
    .header__menu-btn-text {
        display: none;
    }
    .header__menu-btn-icons { 
        background: #2C2C2C;
    }
    .header__menu-btn-icons:after, .header__menu-btn-icons:before {
        background: #2C2C2C;
    }
    .main__menu__box {
        padding: 70px 10px;
    }
    .main__menu {
        width: 100%;
        right: -100%;
        height: auto;
    }
    .styles_photo {
        padding: 50px 30px 57px;
    }
    .styles_photo__title {
        font-size: 40px;
    }
    .order-form__style-size {
        display: none;
    }
    .order-form__title {
        font-size: 40px;
        line-height: 40px;
        margin: 34px 0px 0px 0;
    }
    .order-form__box {
        padding-bottom: 0;
    }
    .photo_in_picture {
        display: none;
    }
    .footer-info__block_payments {
        display: none;
    }
    .home__link {
        display: none;
    }
    .hero__title {
        left: 3%;
    }
}
@media screen and (max-width: 620px) {
    .layout__wrapper {
        width: 100%;
    }
    .hero {
        min-height: 290px;
        height: 290px;
        background-position: 100% 100%;
    }
    .hero__section {
        height: auto;
    }
    .hero__title {
        font-size: 18px;
        line-height: 22px;
    }
    .hero__add-title {
        font-size: 16px;
        line-height: 20px;
    }
    .hero__add-title span {
        padding: 10px 29px 8px 10px;
    }
    .hero__add-title span:last-child {
        padding: 10px 30px 10px 10px;
    }
    .styles_photo {
        padding: 22px 10px 0px;
    }
    .styles_photo__title {
        font-size: 18px;
        line-height: 22px;
        margin-bottom: 28px;
    }
    .styles_photo__box {
        justify-content: space-between;
    }
    .styles_photo__item {
        margin-bottom: 25px;
        width: 48%;
    }
    .styles_photo__item-box {
        display: flex;
        position: relative;
        align-items: center;
        justify-content: center;
    }
    .styles_photo__item-box img {
        max-width: 100%;
    }
    .styles_photo__btn {
        display: none;
    }
    .styles_photo__logo {
        width: 55%;
        left: 0;
        top: 0;
    }
    .order-form__title {
        margin: 31px 0 0 10px;
        font-size: 18px;
        line-height: 22px;
        text-align: left;
    }
    .ourWorks__link-top {
        display: none;
    }
    .ourWorks {
        box-sizing: border-box;
        padding: 36px 0 30px;
    }
    .ourWorks__header {
        margin-bottom: 14px;
        padding-left: 10px;
    }
    .ourWorks__title {
        font-size: 18px;
        line-height: 22px;
    }
    .ourWorks__item {
        width: 48%
    }
    .styles_photo__name span {
        padding: 8px 10px 8px 7px;
    }
    .styles_photo__name {
        font-size: 13px;
        line-height: 16px;
    }
    .ourWorks__item {
        width: 45%;
    }
    .ourWorks__item img {
        max-width: 100%;
        max-height: 100%;
    }
    .ourWorks__link-bot {
        display: none;
    }
    .layout__footer {
        padding: 14px 10px 46px;
    }
    .footer-info__block-content {
        width: 100%;
    }
    .footer-info__block-content .contact-block__phone .contact-block__phone-icon.phone-icon_wa {
        margin-left: auto;
    }
    .footer-info__block-content .contact-block__phone .contact-block__phone-icon:last-child {
        margin-right: 25px;
        margin-left: auto;
    }
    .footer-info__block .contact-block__phone {
        flex-wrap: wrap;
    }
    .header__logo {
        margin-left: 10px;
    }
    .size_price__title {
        font-size: 20px;
        line-height: 20px;
        top: 2%;
    }
    .size_price__item.first .size_price__item-size, .size_price__item.second .size_price__item-size {
        font-size: 20px;
        line-height: 22px;
    }
    .size_price__item-size {
        font-size: 16px;
        line-height: 20px;
    }
    .size_price__item-price {
        font-size: 11px;
        line-height: 12px;
    }
    .size_price__item.fourth .size_price__item-price {
        bottom: -36px;
    }
    .about_as-first, .about_as-second {
        font-size: 22px;
    }
    .ourWorks__box-nav-btn {
        padding: 5px 7px;
        margin: 0 5px 5px 0;
        font-size: 14px;
    }
}
@media screen and (max-width: 520px) {
    .main__menu__form-box {
        width: 100%;
    }
    #main__menu__form {
        flex-direction: column-reverse;
    }
    .main__menu__form-box .wa-field-custom {
        margin-bottom: 15px;
    }

}
@media screen and (max-width: 400px) {
   .ourWorks__item {
        width: 160px;
    }
    .footer-info__block.footer-info__block_socials {
       padding: 0;
    }
    .size_price__item.first .size_price__item-size, .size_price__item.second .size_price__item-size {
        font-size: 16px;
        line-height: 18px;
    }
    .size_price__item-size {
        font-size: 14px;
        line-height: 16px;
    }
    .size_price__item.fourth .size_price__item-price {
        bottom: -33px;
    }
    .size_price__title {
        font-size: 16px;
    }
}
@media screen and (max-width: 360px) {
    .ourWorks__item {
        width: 140px;
    }
    .footer-info__block-content .contact-block__phone .contact-block__phone-icon.phone-icon_wa {
        margin-left: 0;
    }
    .footer-info__block-content .contact-block__phone .contact-block__phone-icon:last-child {
        margin-right: 0;
        margin-left: 0px;
    }
    .footer-info__block.footer-info__block_socials {
        margin-top: 10px;
        padding: 0 10px;
    }
}
.footer-info__block-content_shipping {
    display: flex;
    flex-flow: row wrap;
    align-items: flex-start;
    width: 200px;
}
.wa-field.error input[type=text]{
    border-bottom-color: #FF473A;
    color: #FF473A;
}
.wa-field.error svg {
    fill: #FF473A;
}
.wa-field-custom.error {
    border-color: #FF473A;
}
.wa-field-custom.error .file__input {
    color: #FF473A;
}
.wa-field-custom.error .file__input svg{
    fill: #FF473A;
}
#order__form .wa-field.error input[type=text],
#order__form-popap .wa-field.error input[type=text]{
    border-bottom-color: #FF473A;
    color: #FF473A;
}
#order__form .wa-field.error svg,
#order__form-popap .wa-field.error svg {
    fill: #FF473A;
}
#order__form .wa-field-custom.error,
#order__form-popap .wa-field-custom.error {
    border-color: #FF473A;
}
#order__form .wa-field-custom.error .file__input,
#order__form-popap .wa-field-custom.error .file__input {
    color: #FF473A;
}
#order__form .wa-field-custom.error .file__input svg,
#order__form-popap .wa-field-custom.error .file__input svg{
    fill: #FF473A;
}
.thanks {
    font-size: 26px;
    text-transform: uppercase;
    font-style: normal;
    font-weight: 900;
    width: 100%;
    display: block;
    color: #000000;
    line-height: 35px;
    padding: 30px;
    box-sizing: border-box;
    text-align: center;
}
.thanks span {
    color: #FF473A;
}
@media screen and (max-width: 520px) {
    .thanks {
        font-size: 16px;
    }
}

.totop-btn {
    display: block;
    width: 40px;
    height: 40px;
    border-radius: 2px;
    text-align: center;
    line-height: 44px;
    opacity: 0.7;
    cursor: pointer;
    position: fixed;
    right: 15px;
    bottom: 15px;
    display: none;
    z-index: 999999;
    background: #2C2C2C;
    border: 1px solid #fff;
    color: #fff;
}
.totop-btn:hover {
    background-color: #FF473A;
}
.totop-btn svg {
    width: 20px;
    height: 40px;
}
input[type=submit] {
    -webkit-appearance: none;
    appearance: none;
}
.link__for-price.about_as-reg {
    color: #FF473A;
    margin-bottom: 10px;
    font-weight: bold;
}
.price_picture_block{
    display: flex;
    flex-direction: column;
    margin: 0 15px;
    position: relative;
}
.price_picture_block_name{
    font-weight: 500;
    font-size: 20px;
    line-height: 24px;
    color: #2C2C2C;
    margin-bottom: 5px;
}
.price_picture_block > div{
    position: relative;
    display: block;
    padding-right: 10px;
    padding-left: 10px;
    margin: 0;
    height: 20px;
    border-radius: 0;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    outline: 0;
    box-sizing: border-box;
    background: #F7F7F7;
    border-radius: 2px;
    border-bottom: 1px solid #313030;
    min-width: 84px;
    height: 56px;
    font-size: 16px;
    line-height: 24px;
    display: flex;
    align-items: center;
    letter-spacing: 0.44px;
    color: #2C2C2C;
}
.order-form__box-popap .price_picture_block_name{
    color: #fff;
}
.contact-block__socials {
	width: 100%;
    margin: 25px auto;
}
.contact-block__socials a {
	display: inline-block;
	margin: auto 10px;
	font-size: 20px;
}
.contact-block__socials_title {
	font-size: 20px;
    font-weight: bold;
}

.contact-block__socials_mobile {
	width: 100%;
    margin: 25px 0 25px 25px;
    font-size: 20px;
    font-weight: bold;
}
.contact-block__socials_mobile  a{
	display: inline-block;
	margin: auto 10px;
}
.about_us_bottom{
	background: rgba(240,240,240, 0.9);
    display: flex;
    flex-direction: column;
    box-sizing: border-box;
    padding: 30px;
    align-items: flex-start;
}
.about_us_bottom strong{
	font-weight: bold;
}
.about_us_bottom p{
	margin-bottom: 10px;
	line-height: 20px;
}

.styles_photo.new-styles_photo * {
    box-sizing: border-box;
}

.styles_photo.new-styles_photo .styles_photo__box{
    flex-wrap: wrap;
    align-items: stretch;
    justify-content: space-between;
}

.styles_photo.new-styles_photo .styles_photo__item-box{
    height: 100%;
}

.styles_photo.new-styles_photo .styles_photo__name span {
    background: #FBFF3A;
    box-sizing: border-box;
    padding: 4px 20px 4px 8px;
}

.styles_photo.new-styles_photo .styles_photo__name span + span{
    padding: 0 20px 4px 8px;
}

.new-styles_photo .styles_photo__item{
    margin-bottom: 40px;
}

.new-styles_photo .styles_photo__item:nth-child(-n + 4){
    width: calc(25% - 30px);
}

.new-styles_photo .styles_photo__item:nth-child(-n + 4) img{
    object-fit: cover;
}

.new-styles_photo .styles_photo__item:nth-child(5){
    width: calc(24% - 30px);
}

.new-styles_photo .styles_photo__item:nth-child(5) img{
    object-fit: cover;
}

.new-styles_photo .styles_photo__item:nth-child(6){
    width: calc(43% - 30px);
}

.new-styles_photo .styles_photo__item:nth-child(7){
    width: calc(33% - 30px);
}

.new-styles_photo .styles_photo__item:nth-child(8){
    width: calc(38% - 30px);
}

.new-styles_photo .styles_photo__item:nth-child(9){
    width: calc(18% - 30px);
}

.new-styles_photo .styles_photo__item:nth-child(10){
    width: calc(44% - 30px);
}

.new-styles_photo .styles_photo__item:nth-child(8) img,
.new-styles_photo .styles_photo__item:nth-child(9) img,
.new-styles_photo .styles_photo__item:nth-child(10) img{
    object-fit: cover;
}

.new-styles_photo .styles_photo__item img{
    width: 100%;
    object-fit: contain;
    height: 100%;
}

@media screen and (max-width: 1000px){
    .new-styles_photo .styles_photo__name{
        font-size: 16px;
        line-height: 20px;
    }

    .styles_photo__name{
        white-space: pre-line;
    }

    .styles_photo__name span {
        white-space: pre-line;
        padding: 4px 20px 2px 8px;
    }

    .styles_photo__name span + span{
        padding: 0 20px 2px 8px;
    }

    .new-styles_photo .styles_photo__item{
        margin-bottom: 25px;
    }

    .new-styles_photo .styles_photo__item:nth-child(-n + 4){
        width: calc(25% - 15px);
    }
    
    .new-styles_photo .styles_photo__item:nth-child(5){
        width: calc(24% - 15px);
    }
    
    .new-styles_photo .styles_photo__item:nth-child(6){
        width: calc(43% - 15px);
    }
    
    .new-styles_photo .styles_photo__item:nth-child(7){
        width: calc(33% - 15px);
    }
    
    .new-styles_photo .styles_photo__item:nth-child(8){
        width: calc(38% - 15px);
    }
    
    .new-styles_photo .styles_photo__item:nth-child(9){
        width: calc(18% - 15px);
    }
    
    .new-styles_photo .styles_photo__item:nth-child(10){
        width: calc(44% - 15px);
    }
}

@media screen and (max-width: 845px){
    .new-styles_photo .styles_photo__item:nth-child(-n + 4){
        width: calc(50% - 15px);
    }

    .new-styles_photo .styles_photo__item:nth-child(5){
        width: calc(36% - 15px);
    }
    
    .new-styles_photo .styles_photo__item:nth-child(6){
        width: calc(64% - 15px);
    }

    .new-styles_photo .styles_photo__item:nth-child(7){
        width: calc(44% - 15px);
    }
    
    .new-styles_photo .styles_photo__item:nth-child(8){
        width: calc(56% - 15px);
    }

    .new-styles_photo .styles_photo__item:nth-child(9){
        width: calc(29% - 15px);
    }
    
    .new-styles_photo .styles_photo__item:nth-child(10){
        width: calc(71% - 15px);
    }
}

@media screen and (max-width: 500px){
    .new-styles_photo .styles_photo__name{
        font-size: 12px;
        line-height: 16px;
    }   

    .new-styles_photo .styles_photo__item:nth-child(-n + 4){
        width: calc(50% - 5px);
    }

    .new-styles_photo .styles_photo__item:nth-child(5){
        width: calc(36% - 5px);
    }
    
    .new-styles_photo .styles_photo__item:nth-child(6){
        width: calc(64% - 5px);
    }

    .new-styles_photo .styles_photo__item:nth-child(7){
        width: calc(44% - 5px);
    }
    
    .new-styles_photo .styles_photo__item:nth-child(8){
        width: calc(56% - 5px);
    }

    .new-styles_photo .styles_photo__item:nth-child(9){
        width: calc(29% - 5px);
    }
    
    .new-styles_photo .styles_photo__item:nth-child(10){
        width: calc(71% - 5px);
    }

    .new-styles_photo .styles_photo__item{
        margin-bottom: 10px;
    }
}