@import url('https://fonts.googleapis.com/css?family=PT+Sans+Caption|Russo+One&display=swap');
@import url('https://fonts.googleapis.com/css?family=Open+Sans:700&display=swap');
@font-face {
    font-family: Circe-Regular; /* Имя шрифта */
    src: url(../fonts/Circe/Circe-Regular.ttf); /* Путь к файлу со шрифтом */
}
@font-face {
    font-family: Circe-bold; /* Имя шрифта */
    src: url(../fonts/Circe/Circe-Bold.ttf); /* Путь к файлу со шрифтом */
}
*{
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    list-style: none;
    font-family: 'Circe-Regular';
    font-size: 16px;
    color: #1e2223;
    /*font-family: 'Russo One', sans-serif; */
}
html, body {
    height: 100%;
}
::selection {
    background-color: orange;
    color: #fff;
}
/* Рамка фокуса после клика мышью не нужна (заметнее всего на логотипе:
   ссылка растягивается на всю ширину меню). При навигации с клавиатуры
   рамка остаётся — :focus-visible срабатывает только там. */
a:focus:not(:focus-visible) {
    outline: none;
}
.constructor {
    max-width: 1270px;
    margin: 0 auto;
    margin-top: 20px;
    margin-bottom: 20px;
}
.constructor iframe {
    width: 100%;
}
.constructor .blog_video_info {
    margin-bottom: 80px;
}
.constructor h3 {
    margin: 0 auto;
}
.hidden {
    display: none;
}
.img_404 {
        margin: 0 auto;
        display: block;
}
.link_404 {
    margin: 0 auto;
    display: table;
    font-size: 14px;
    text-transform: uppercase;
    padding: 10px 15px;
    color: whitesmoke;
    background-color: black;
    border-radius: 10px;
    text-decoration: none;
    transition: 0.3s ease-out;
}
.link_404:hover {
    opacity: 0.6;
}
.filters {
    max-width: 1270px;
    margin: 0 auto;
    margin-top: 46px;
    margin-bottom: 145px;
}
.filters a {
    text-decoration: none;
    padding: 9px 9px;
    border: 4px solid black;
    margin: 23px 9px;
    text-transform: uppercase;
    font-weight: 600;
    font-size: 24px;
    text-align: center;
    width: 30.8%;
    letter-spacing: 2px;
    transition: 0.3s ease-out;
    display: flex;
    justify-content: center;
    align-items: center;
}
.filters a:hover {
    cursor: pointer;
    border: 4px solid #9278ff;
    background-color: #9278ff;
    color: whitesmoke;
}
.mob_header {
    display: none !important;
}
.flex {
    display: flex;
    justify-content: space-between;
    flex-wrap: nowrap;
    align-items: top;
    -webkit-align-items: top;
    -webkit-box-align: top;
    -ms-flex-align: top;
}
.flex_wrap {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    align-items: top;
    -webkit-align-items: top;
    -webkit-box-align: top;
    -ms-flex-align: top;
}
.justify {
    justify-content: space-between;
}
.align_items {
    align-items: start;
}
.space_around {
    justify-content: space-around;
}
.wrapper {
    width: 100%;
    max-width: 2570px;
    position: relative;
    overflow: hidden;
}
.menu {
    width: 250px;
    height: 100vh;
    position: fixed;
    top: 0;
    z-index: 999;
    left: 0;
    box-shadow: 0 0 10px rgba(0,0,0,0.5);
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-justify-content: space-around;
    -ms-flex-pack: distribute;
    justify-content: space-around;
    -webkit-transition: .5s;
    -o-transition: .5s;
    transition: 0.5s ease-out;
}
.content {
    width: 100%;
    float: right;
    padding-left: 250px;

}
.header_for_img img {
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
    height: 100%;
}
.header_for_img {
    position: relative;
    height: 100%;
    overflow: hidden;
}
.header_for_img h1 {
    display: block;
    text-align: center;
    margin: 0 auto;
    margin-top: 265px;
    max-width: 895px;
    padding: 58px 0;
    letter-spacing: 4px;
    font-size: 74px;
    text-transform: uppercase;
    color: whitesmoke;
    font-weight: 100;
    font-family: 'Circe-bold';
}
.header_for_img h2 {
    display: block;
    text-align: center;
    font-size: 22px;
    letter-spacing: 5px;
    color: whitesmoke;
    padding: 8px 0;
}
.bottom_arrow {
    width: 50px;
    height: 45px;
    display: block;
    position: absolute;
    bottom: 30px;
    left: 50%;
    margin-left: -25px;
    background: url(../images/bottom.svg) no-repeat center center;
    background-size: 44px;
    transition: 0.3s ease-out;
}
.bottom_arrow:hover {
    opacity: 0.8;
    bottom: 25px;
    background-size: 40px;
}
.one_columns {
    margin: 0 auto;
    max-width: 1280px;
    margin-top: 143px;
}
.one_columns p {
    padding: 7px 0;
    font-size: 20px;
}
.one_columns div {
    padding: 7px 0;
    font-size: 20px;
}
/* Правило * в начале файла назначает 16px каждому элементу напрямую, поэтому
   ссылки и выделения внутри абзаца мельчают вместо того, чтобы наследовать его
   размер. Возвращаем размер родителя — иначе в каждом тексте приходится
   прописывать font-size вручную. */
.one_columns p a, .one_columns p b, .one_columns p strong, .one_columns p span,
.two_columns p a, .two_columns p b, .two_columns p strong,
.blog_remark p a, .blog_remark p b {
    font-size: inherit;
}
/* По той же причине текст в двух колонках оставался 16px, хотя описания проектов
   набраны 20px. Приводим к одному размеру — мелкий шрифт в вёрстке сайта
   используется только в подписях под карточками, а не в основном тексте. */
.two_columns p, .two_columns li, .two_columns div > a {
    font-size: 20px;
}
._50 {
    float: left;
    width: 50%;
    padding: 20px;
    margin: 65px 0;
}
._100 {
    width: 100%;
    margin: 90px 0;
}
.blog_video_inside {
    padding: 76px 0 0 0;
    margin-bottom: 52px;
}
.blog_video_inside iframe {
    width: 100%;
}
.contacts_adr {
    max-width: 1280px;
    margin: 0 auto;
    margin-bottom: 20px;
}
.contacts_adr div {
    width: 45%;
}
.contacts_adr div .phone {
    font-size: 34px;
    display: block;
    text-decoration: none;
    font-weight: 700;
    padding: 15px 0 0 0;
}
.contacts_adr div span {
    font-size: 25px;
    display: block;
    padding: 4px 0;
}
.contacts_adr div button {
    padding: 10px 88px;
    width: 390px;
    display: block;
    background-color: white;
    border: 4px solid black;
    margin-top: 100px;
    float: right;
    font-size: 24px;
    letter-spacing: 1px;
    font-weight: 700;
    outline: none;
    transition: 0.3s ease-out;
}
.contacts_adr div button:hover {
    cursor: pointer;
    border: 4px solid #9278ff;
    background-color: #9278ff;
    color: whitesmoke;
}
.menu .logo {
    width: 85px;
    display: block;
    margin-left: 50px;
    vertical-align: middle;
}
.menu ul {
    padding-left: 45px;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    margin-top: 40px;
}
.menu ul li ul {
    margin-top: 14px;
    padding-left: 30px;
}
.menu ul li {
    padding: 15px 0;
}

.menu ul li a {
    font-weight: 600;
    font-size: 20px;
    text-decoration: none;
    transition: 0.3s ease-out;
}
.socials {
    display: flex;
    flex-direction: column;
    gap: 14px;
}
/* Юридические тексты (политика обработки данных). Свой блок, потому что
   заголовок h3 на сайте несёт padding 90px — на двенадцати разделах это
   километр пустоты, а размеры приходится задавать каждому тегу отдельно:
   правило * в начале файла назначает 16px напрямую, наследования нет. */
.legal {
    max-width: 1000px;
    margin: 0 auto;
    padding: 20px 20px 60px;
}
.legal h2 {
    font-family: Circe-bold;
    font-size: 24px;
    padding: 38px 0 6px;
}
.legal p {
    font-size: 18px;
    line-height: 1.55;
    padding: 6px 0;
}
.legal a {
    font-size: inherit;
    color: #9278ff;
}
.legal .legal_meta {
    font-size: 15px;
    opacity: 0.65;
}
/* Согласие на обработку данных под формой. Галочка обязательна: без неё
   браузер не отправит форму, а send.php отвергнет заявку. */
.form_agree {
    /* Ширина и отступ слева повторяют блок полей: галочка встаёт ровно под
       левым краем поля сообщения и плиток с темами.
       Нижний отступ съедает margin-top: -43px у блока с кнопкой — без него
       галочка и «Отправить» слипаются. */
    max-width: 1270px;
    margin: 0 auto;
    padding: 10px 0 45px;
    display: flex;
    align-items: flex-start;
    gap: 10px;
}
/* В форме с темами плитки лежат в контейнере 1280 и центрируются внутри него:
   первая начинается на 26px правее его края (свободное место пополам + свой
   отступ 9px). Галочка живёт в контейнере 1270, поэтому сдвигаем её на столько
   же — иначе она стоит левее плитки «Ролик». */
.form_agree_themes {
    padding-left: 26px;
}
.form_agree input {
    width: 18px;
    height: 18px;
    flex: 0 0 18px;
    margin-top: 3px;
}
.form_agree label, .form_agree a {
    font-size: 15px;
    line-height: 1.45;
}
.form_agree a {
    color: #9278ff;
}
/* Уведомление о cookie. Показывается, пока посетитель не нажал одну из кнопок;
   до этого счётчики Метрики не загружаются. */
.cookie_note {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 9998;
    background-color: #1e2223;
    padding: 18px 20px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 14px;
}
/* Без этого правила атрибут hidden не работает: display: flex выше по
   специфичности, чем [hidden] { display: none } из стилей браузера. */
.cookie_note[hidden] {
    display: none;
}
.cookie_note p, .cookie_note a {
    font-size: 15px;
    line-height: 1.45;
    color: whitesmoke;
    max-width: 720px;
}
.cookie_note a {
    color: #b8a4ff;
}
.cookie_note button {
    font-size: 14px;
    padding: 10px 26px;
    border: 2px solid whitesmoke;
    background: none;
    color: whitesmoke;
    text-transform: uppercase;
    letter-spacing: 2px;
    cursor: pointer;
    transition: 0.3s ease-out;
}
.cookie_note button:hover {
    border-color: #9278ff;
    background-color: #9278ff;
}
/* Реквизиты оператора в подвале: мелкой строкой под остальными колонками. */
/* Ссылка на политику и реквизиты в подвале. Селекторы начинаются с .footer —
   иначе правило .footer div a (иконки соцсетей, 40×40) сплющит ссылку в
   столбик, а .footer div span покрасит реквизиты в белый 19px. */
.footer .footer_content div a.policy_link {
    display: inline-block;
    width: auto;
    height: auto;
    margin: 26px 0 0;
    font-size: 13px;
    line-height: 1.5;
    color: #8a8f90;
    text-decoration: underline;
}
.footer .footer_content div a.policy_link:hover {
    color: #9278ff;
    opacity: 1;
}
.footer .footer_content div span.footer_req {
    margin-top: 14px;
    font-size: 13px;
    line-height: 1.6;
    color: #8a8f90;
}
.Vimeo {
    font-weight: 600;
    font-size: 20px;
    text-decoration: none;
    transition: 0.3s ease-out;
    padding-left: 45px;
}
.Vimeo:hover {
    opacity: 0.8;
    padding-left: 55px;
    color: #9278ff;
}
.menu ul li a:hover {
    opacity: 0.8;
    padding-left: 10px;
    color: #9278ff;
}
.menu ul li ul li a {
    font-size: 20px;
    color: #4c4c4c;
    font-weight: 300;
}
.menu ul li ul li a:nth-child(2) {
    display: none;
}
.menu ul li ul li:hover a:nth-child(1) {
    display: none;
}
.menu ul li ul li:hover a:nth-child(2) {
    display: block;
}
.menu ul li ul li:last-child {
    padding: 6px 0 45px 0;
}
.menu ul li ul li {
    padding: 6px 0;
}
.constructor .blog_video_info span {
    font-weight: 600;
    color: black;
}
.gallery_list_item span {
    font-weight: 600;
    color: black;
}
h3 {
    display: block;
    text-align: center;
    padding: 90px 0;
    font-size: 24px;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
}
/* h1 на внутренних страницах: тот же вид, что у h3, чтобы вёрстка не менялась */
.content > h1 {
    display: block;
    text-align: center;
    padding: 60px 0 20px;
    font-size: 24px;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
}
.live_client_list .w {
    width: 18%;
}
.zatravka_list_item {
    width: 32%;
    padding: 0 6px 20px 0;
    transition: 0.3s ease-out;
    text-decoration: none;
}
.zatravka_list_item a {
    text-decoration: none;
    transition: 0.3s ease-out;
}
.zatravka_list_item a:hover span {
    color: #9278ff;
}

.zatravka_list_item span {
    padding: 7px 0;
    display: block;
}
.zatravka_list_item .tube {
    margin-top: 22px;
}
.zatravka_list_item span:nth-child(1) {
    padding: 38px 0 0px 0;
    display: block;
    font-weight: bold;
    font-size: 36px;
    transition: 0.3s ease-out;
}
.zatravka_list_item span:nth-child(2) {
    display: block;
    font-size: 27px;
    transition: 0.3s ease-out;
}
.zatravka_list_item img{
    width: 100%;
    height: 576px;
    display: none;
}
.zatravka_list_item img.show{
    display: block;
}
.zatravka_list_item video {
    width: 115%;
    display: none;
}
.videoframe {
    width: 100%;
    overflow: hidden;
    height: 640px;
}
.zatravka_list_item video.show {
    display: block;
}
.tube {
    width: 35px;
    height: 35px;
    background: url(../images/multimedia.svg) no-repeat center center;
    background-size: 35px;
}
.zatravka_list {
    max-width: 1280px;
    margin: 0 auto;
    margin-bottom: 95px;
}
.btn_border {
    display: table;
    text-decoration: none;
    padding: 10px 30px;
    text-align: center;
    border: 4px solid black;
    margin: 182px auto 52px; /* 130px сверху к прежним 52 — кнопка отделена от блока вопросов */
    text-transform: uppercase;
    min-width: 385px;
    font-weight: 600;
    font-size: 24px;
    letter-spacing: 3px;
    transition: 0.3s ease-out;
}
.btn_border:hover {
    border: 4px solid #9278ff;
    color: #9278ff;
}
remark {
    max-width: 830px;
    text-align: center;
    display: block;
    margin: 206px auto;
    line-height: 1.58;
    margin-bottom: 84px;
}
.marg_top_125 {
    margin-top: 125px;
}
.live_client_list_form {
    max-width: 1270px;
    margin: 0 auto;
    margin-top: 55px;
    margin-bottom: 25px;
    padding: 25px 0 0 0 !important;
}
remark:before {
    content: "";
    width: 140px;
    height: 4px;
    background-color: #1e2223;
    display: block;
    margin: 20px auto;
    margin-bottom: 60px;
}
remark:after {
    content: "";
    width: 140px;
    height: 4px;
    background-color: #1e2223;
    display: block;
    margin: 20px auto;
    margin-top: 60px;
}
remark p {
    font-size: 52px;
}
.kitchen_list {
    max-width: 1270px;
    margin: 0 auto;
    margin-top: 46px;
    margin-bottom: 17px;
}
.kitchen_list_item {
    width: 48.6%;
    margin-bottom: 50px;
    text-decoration: none;
    transition: 2s ease-out;
}
.kitchen_list_item .zoom {
    overflow: hidden;
}
.kitchen_list_item:hover .zoom img {
    opacity: 0.8;
    transition: 5s ease-out;
    transform: scale(1.5);
}
.kitchen_list_item:hover h4 {
    color: #9278ff;
}
.kitchen_list_item:hover span {
    color: #9278ff;
}
.kitchen_list_item img {
    width: 100%;
    transition: 0.1s ease-out;
}
.kitchen_list_item span {
    font-size: 24px;
    color: #1e2223;
    transition: 0.3s ease-out;
}
.kitchen_list_item h4 {
    font-weight: 600;
    font-size: 29px;
    padding: 25px 0 8px 0;
    transition: 0.3s ease-out;
}
.live_client_list {
    max-width: 1155px;
    margin: 0 auto;
    margin-bottom: 53px;
    padding: 25px 0 0 0 !important;
}
.live_client_list_item {
    width: 129px;
    height: 129px;
    border-radius: 50%;
    background-color: #f2f2f2;
    margin: 0 auto;
    margin-bottom: 82px;
    position: relative;
    transition: 0.3s ease-out;
}
.live_client_list_item img {
    width: 70%;
    padding: 0;
    margin: auto;
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
}
.live_client_list_item:hover .oval {
    transform: scale(1);
    transform-origin: left bottom;
    z-index: 99999999999;
}
.live_client_list_item:hover {
    cursor: pointer;
    z-index: 1;
}
.oval {
    width: 325px;
    height: 243px;
    font-size: 22px;
    padding: 83px 0;
    margin: 0 auto 50px;
    display: block;
    text-align: center;
    position: absolute;
    z-index: 99999;
    top: -158px;
    left: 18px;
    transform: scale(0);
    transform-origin: left bottom;
    color: #565656;
    transition: 0.3s ease-out;
    background: url(../images/sky.png) no-repeat center center;
    background-size: 321px;
}
.live_client_list_form input {
    border-style: none;
    border-bottom: 4px solid black;
    padding: 10px 0;
    display: block;
    width: 32%;
    outline: none;
    font-size: 36px;
}
.live_client_list_form input:focus {
    border-bottom: 4px solid #9278ff;
}
.portfolio_list {
    max-width: 1280px;
    margin: 0 auto;
    margin-top: -43px;
}
.portfolio_list a, .portfolio_list label {
    text-decoration: none;
    padding: 9px 9px;
    border: 4px solid black;
    margin: 23px 9px;
    text-transform: uppercase;
    font-weight: 600;
    font-size: 24px;
    text-align: center;
    width: 30.8%;
    letter-spacing: 2px;
    transition: 0.3s ease-out;
    display: flex;
    justify-content: center;
    align-items: center;
}
.btn_send {
    text-decoration: none;
    padding: 9px 4px;
    border: 4px solid black;
    margin: 46px auto;
    text-transform: uppercase;
    font-weight: 600;
    font-size: 24px;
    text-align: center;
    width: 29.8%;
    letter-spacing: 2px;
    transition: 0.3s ease-out;
    display: flex;
    justify-content: center;
    align-items: center;
}
.btn_send:hover {
    cursor: pointer;
    border: 4px solid #9278ff;
    background-color: #9278ff;
    color: whitesmoke;
}
.portfolio_list a:hover, .portfolio_list label:hover {
    cursor: pointer;
    border: 4px solid #9278ff;
    background-color: #9278ff;
    color: whitesmoke;
}
/* Форма заявки */
.portfolio_list label input {
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0;
}
.portfolio_list label:has(input:checked) {
    border: 4px solid #9278ff;
    background-color: #9278ff;
    color: whitesmoke;
}
.hp_field {
    position: absolute;
    left: -9999px;
    width: 1px;
    height: 1px;
    overflow: hidden;
}
/* Сообщение об отправке — обычный тег remark, но без его 206px отступа,
   шрифта в 52px и декоративных полос: иначе после отправки текст уезжает
   за пределы экрана и человек не понимает, ушла заявка или нет. */
.form_result {
    margin: 25px auto 15px;
}
.form_result:before,
.form_result:after {
    display: none;
}
.form_result p {
    font-weight: 600;
    font-size: 22px;
}
.form_result_ok p {
    color: #9278ff;
}
.form_result_err p {
    color: #d33;
}
.go_cont {
    display: table;
    margin: 0 auto;
    padding: 10px 55px;
    border: 4px solid black;
    text-align: center;
    text-decoration: none;
    text-transform: uppercase;
    font-weight: 600;
    font-size: 22px;
    letter-spacing: 4px;
    transition: 0.3s ease-out;
}
.go_cont:hover {
    background-color: #9278ff;
    border: 4px solid #9278ff;
    color: whitesmoke;
}
.footer {
    background-color: #242424;
    margin-top: 330px;
    padding: 70px 0 104px 0;
}
.footer_content {
    max-width: 1280px;
    margin: 0 auto;
}
.footer .footer_content div {
    width: 30%;
}
.footer div span {
    color: whitesmoke;
    display: block;
    font-size: 19px;
    margin-bottom: 6px;
}
.footer div:nth-child(1) img {
    width: 80px;
    display: block;
    margin-bottom: 30px;
}
.footer div:nth-child(2) img {
    width: 95px;
    display: block;
    margin-bottom: 30px;

}
.footer .footer_content div div {
    width: auto;
    height: 100px;
}
.footer div a {
    width: 40px;
    height: 40px;
    display: inline-block;
    transition: 0.3s ease-out;
    margin-right: 10px;
}
.footer div a.vk-icon {
    background: url(../images/vk.svg) no-repeat center center;
    background-size: 40px;
}
.footer div a.rutube-icon {
    background: url("../images/rutube.svg") no-repeat center center;
    background-size: 40px;
}
.footer div a:hover {
    opacity: 0.8;
}
.bred_crumps {
    padding: 199px 0 110px 0;
    margin: 0 auto;
    display: table;
}
.bred_crumps a {
    text-decoration: none;
    font-size: 24px;
    letter-spacing: 3px;
    text-transform: uppercase;
    padding: 0 0px 0 3px;
    font-weight: 600;
    transition: 0.3s ease-out;
}
.bred_crumps a:hover {
    opacity: 0.6;
    color: #6d4cf7;
}
.bred_crumps a:after {
    content: ">";
    width: 12px;
    display: inline-block;
    height: 12px;
    padding: 0 14px;
}
.bred_crumps a:last-child:after {
    display: none;
}
.blog_title {

}
.history_list {
    max-width: 1280px;
    margin: 70px auto;
}
.history_list_item {
    display: block;
    text-decoration: none;
    width: 48%;
    position: relative;
    margin-bottom: 127px;
    transition: 0.3s ease-out;
}

.history_list_item:hover .history_list_item_img span {
    background-color: black;
    color: whitesmoke;
}
.history_list_item:hover .history_list_item_img span em {
    color: whitesmoke;
}
.history_list_item h3 {
    font-size: 32px;
    text-transform: none;
    letter-spacing: normal;
    text-align: left;
    padding: 10px 0;
    margin-top: 20px;
}
.history_list_item p {
    line-height: 1.93;
    font-size: 24px;
    padding-bottom: 80px;
}
.history_list_item_info {
    width: 70%;
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    overflow: hidden;
    display: block;
}
.history_list_item_info img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 1px solid #efefef;
    float: left;
}
.history_list_item_info span {
    padding: 15px 0px;
    text-align: left;
    padding-left: 70px;
    font-size: 18px;
    display: block;
}
.history_list_item_info span b {
    font-size: 18px;
}
.history_list_item .history_list_item_img {
    position: relative;
}
.history_list_item .history_list_item_img span {
    position: absolute;
    left: 28px;
    top: 27px;
    background-color: white;
    padding: 10px 32px;
    text-align: center;
    font-size: 50px;
    transition: 0.3s ease-out;
}
.history_list_item .history_list_item_img span em {
    display: block;
    font-size: 16px;
    font-style: normal;
    margin-top: -8px;
}
.history_list_item .history_list_item_img img {
    width: 100%;
}
.blockhouse_list {
    max-width: 1280px;
    margin: 0 auto;
    margin-top: 188px;
}
.blockhouse_list_item {
    width: 23%;
    background-color: black;
    color: black;
    padding: 15px 15px 70px 15px;
    position: relative;
    transition: 0.3s ease-out;
    box-sizing: border-box;
}
.blockhouse_list_item:hover {
    background-color: whitesmoke;
}
.blockhouse_list_item:hover p {
    color: black;
    padding-top: 20px;
}
.blockhouse_list_item:hover h3 {
    color: black;
}
.blockhouse_list_item .box {
    width: 80px;
    height: 80px;
    position: absolute;
    right: 15px;
    bottom: 25px;
    border-bottom: 1px solid whitesmoke;
    border-right: 1px solid whitesmoke;
}
.blockhouse_list_item h3 {
    color: whitesmoke;
    padding: 26px 0 0 22px;
    text-align: left;
    letter-spacing: normal;
    text-transform: none;
    font-size: 33px;
    font-weight: 100;
}
.blockhouse_list_item p {
    color: black;
    padding-top: 30px;
    font-size: 18px;
    padding-left: 30px;
    transition: 0.3s ease-out;
}
.icon_list {
    max-width: 1280px;
    margin: 145px auto;
}
.icon_list_item {
    width: 30%;
    padding: 66px 15px 15px 15px;
    background: url(../images/icon.svg) no-repeat center top;
    background-size: 40px;
    margin-bottom: 65px;
    text-align: center;
}
.blog_title h1 {
    text-align: center;
    width: 830px;
    display: block;
    margin: 40px auto;
    font-size: 50px;
    font-weight: 400;
    line-height: 78px;
}
.blog_title h1:before {
    content: "";
    width: 130px;
    height: 4px;
    background-color: #1e2223;
    display: block;
    margin: 20px auto;
    margin-bottom: 65px;
}
.blog_title .tube {
    margin: 60px auto;
}
.blog_video iframe {
    width: 100%;
}
.blog_video {
    padding: 30px 0 0 0;
    width: 100%;
}
.blog_video div div {
    width: 50%;
    max-width: 605px;
}
.blog_video div div img {
    width: 100px;
    float: right;
    margin-top: 15px;
}
.blog_video div div span {
    display: block;
}
.blog_video div div span:nth-child(1) {
    font-size: 30px;
    font-weight: 600;
    padding: 10px 0;
}
.blog_video div div span:nth-child(2) {
    color: #7b7b7b;
    font-size: 24px;
}
.blog_video_info {
    padding: 33px 0 0 0;
    max-width: 1270px;
    margin: 0 auto;
}
.constructor .blog_video_info span {
    font-size: 24px;
    margin-top: 48px;
    display: block;
}
.gallery_list {
    max-width: 1260px;
    margin: 0 auto;
    margin-top: 53px;
    margin-bottom: -25px;
}
.gallery_list_item {
    width: 48%;
    margin-bottom: 128px;
}
.gallery_list_item a {
    text-decoration: none;
    color: #9278ff;
    display: block;
}
.gallery_list_item span {
    font-size: 24px;
    margin-top: 48px;
    display: block;
}
.gallery_list_item.big {
    width: 100%;
    margin-top: -21px;
}
.photobox{
    display: inline-block;
}

.photobox__previewbox{
    position: relative;
    overflow: hidden;
}

.photobox__preview{
    display: block;
    max-width: 100%;
    height: auto;
}

.photobox__previewbox:before{
    content: "";
}

.photobox {
    color: #fff;
    font-weight: 700;
    --photoboxOverlay: rgba(72, 27, 174, .7);
    --photoboxAnimationDuration: .5s;
}
/* type 26 */

.photobox_type26 .photobox__preview{
    -webkit-transition: -webkit-transform var(--photoboxAnimationDuration, .4s) cubic-bezier(0.71, 0.05, 0.29, 0.9);
    transition: -webkit-transform var(--photoboxAnimationDuration, .4s) cubic-bezier(0.71, 0.05, 0.29, 0.9);
    transition: transform var(--photoboxAnimationDuration, .4s) cubic-bezier(0.71, 0.05, 0.29, 0.9);
    transition: transform var(--photoboxAnimationDuration, .4s) cubic-bezier(0.71, 0.05, 0.29, 0.9), -webkit-transform var(--photoboxAnimationDuration, .4s) cubic-bezier(0.71, 0.05, 0.29, 0.9);
    will-change: transform;
    -webkit-transform: scale(1) rotate(0);
    transform: scale(1) rotate(0);
}

.photobox_type26:hover .photobox__preview{
 /*   -webkit-transform: scale(1.2) rotate(5deg);
    transform: scale(1.2) rotate(5deg); */
}

.photobox_type26 .photobox__previewbox:before{
    width: 100%;
    height: 100%;
    opacity: .2;
    background-color: var(--photoboxOverlay, rgba(0, 0, 0, .8));
    -webkit-clip-path: polygon(50% 10%, 15% 90%, 85% 90%);
    clip-path: polygon(50% 10%, 15% 90%, 85% 90%);
    position: absolute;
    top: 50%;
    left: 50%;
    z-index: 2;
    -webkit-transition: opacity calc(var(--photoboxAnimationDuration, .4s) / 2) ease-out, -webkit-transform calc(var(--photoboxAnimationDuration, .4s) / 2) ease-out;
    transition: opacity calc(var(--photoboxAnimationDuration, .4s) / 2) ease-out, -webkit-transform calc(var(--photoboxAnimationDuration, .4s) / 2) ease-out;
    transition: transform calc(var(--photoboxAnimationDuration, .4s) / 2) ease-out, opacity calc(var(--photoboxAnimationDuration, .4s) / 2) ease-out;
    transition: transform calc(var(--photoboxAnimationDuration, .4s) / 2) ease-out, opacity calc(var(--photoboxAnimationDuration, .4s) / 2) ease-out, -webkit-transform calc(var(--photoboxAnimationDuration, .4s) / 2) ease-out;
    will-change: transform;
    -webkit-transform: translate(-50%, -50%) scale(0);
    transform: translate(-50%, -50%) scale(0);
}

.photobox_type26:hover .photobox__previewbox:before{
  /*  opacity: 1;
    -webkit-transform: translate(-50%, -50%) scale(7);
    transform: translate(-50%, -50%) scale(7);
    -webkit-transition-duration: var(--photoboxAnimationDuration, .4s);
    transition-duration: var(--photoboxAnimationDuration, .4s); */
}

.photobox_type26 .photobox__label{
    width: 95%;
    text-align: center;
    opacity: 0;
    -webkit-transition: opacity calc(var(--photoboxAnimationDuration, .4s) / 4) cubic-bezier(0.71, 0.05, 0.29, 0.9), -webkit-transform calc(var(--photoboxAnimationDuration, .4s) / 4) cubic-bezier(0.71, 0.05, 0.29, 0.9);
    transition: opacity calc(var(--photoboxAnimationDuration, .4s) / 4) cubic-bezier(0.71, 0.05, 0.29, 0.9), -webkit-transform calc(var(--photoboxAnimationDuration, .4s) / 4) cubic-bezier(0.71, 0.05, 0.29, 0.9);
    transition: opacity calc(var(--photoboxAnimationDuration, .4s) / 4) cubic-bezier(0.71, 0.05, 0.29, 0.9), transform calc(var(--photoboxAnimationDuration, .4s) / 4) cubic-bezier(0.71, 0.05, 0.29, 0.9);
    transition: opacity calc(var(--photoboxAnimationDuration, .4s) / 4) cubic-bezier(0.71, 0.05, 0.29, 0.9), transform calc(var(--photoboxAnimationDuration, .4s) / 4) cubic-bezier(0.71, 0.05, 0.29, 0.9), -webkit-transform calc(var(--photoboxAnimationDuration, .4s) / 4) cubic-bezier(0.71, 0.05, 0.29, 0.9);
    will-change: opacity, transform;
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-200%, -50%);
    transform: translate(-200%, -50%);
    z-index: 2;
}

.photobox_type26:hover .photobox__label{
   /* opacity: 1;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    -webkit-transition-duration: calc(var(--photoboxAnimationDuration, .3s) / 2);
    transition-duration: calc(var(--photoboxAnimationDuration, .3s) / 2);
    -webkit-transition-delay: calc(var(--photoboxAnimationDuration, .3s) / 2);
    transition-delay: calc(var(--photoboxAnimationDuration, .2s) / 2);
    color: white;
    font-weight: 100;
    letter-spacing: 3px; */
}
.gallery_list_item img {
    width: 100%;
}
.blog_remark {
    -webkit-column-width: 200px;
    -moz-column-width: 200px;
    column-width: 200px;
    -webkit-column-count: 3;
    -moz-column-count: 3;
    column-count: 3;
    -webkit-column-gap: 30px;
    -moz-column-gap: 30px;
    column-gap: 66px;
    max-width: 1258px;
    margin: 0 auto;
    font-size: 22px !important;
    margin-bottom: 72px;
    margin-top: 40px;
    line-height: 1.7;
}
.blog_remark div {
    font-size: 22px;

}
/* Описание работы work.php теперь собирает абзацами (было — сплошная простыня
   без единого разрыва). Размер задаём явно: глобальное * { font-size: 16px }
   бьёт по <p> напрямую, от .blog_remark он ничего не наследует. */
.blog_remark p {
    font-size: 22px;
    margin-bottom: 24px;
}
.blog_remark p:last-child {
    margin-bottom: 0;
}
.blog_remark p b {
    font-family: Circe-bold;
}
/* Сноска под описанием работы: абзац, начинающийся со звёздочки, work.php
   выносит из трёхколоночного блока сюда — маркировку нужно прочесть. */
.case_note {
    /* .constructor — флекс-контейнер, без width сноска занимает строку
       по ширине текста и рядом с ней встаёт первая фотография галереи. */
    width: 100%;
    max-width: 1258px;
    margin: -40px auto 72px;
    line-height: 1.5;
}
.case_note p {
    font-size: 16px;
    color: #767676;
}
.photo_snoska {
    max-width: 1510px;
    margin: 0 auto;
    position: relative;
    margin-bottom: 140px;
}
.photo_snoska img {
    width: 100%;
}
.photo_snoska span {
    background-color: white;
    padding: 36px 40px 32px 40px;
    position: absolute;
    bottom: 33px;
    left: 45px;
    width: 440px;
    font-size: 40px;
    line-height: 1.2;
}
.two_columns {
    max-width: 1280px;
    margin: 0 auto;
    margin-top: 85px;
    margin-bottom: 45px;
}
.awards_list {
    max-width: 1100px;
    margin: 0 auto;
    margin-bottom: 59px;
}
.awards_list a {
    width: 17%;
    transition: 0.3s ease-out;
}
.awards_list a:hover {
    cursor: pointer;
    transform: scale(0.9);
}
.awards_list img {
    width: 100%;
}
.two_columns div {
    width: 47%;
    line-height: 1.5;
    font-size: 24px;
}
.two_columns div h3 {
    text-align: left;
    font-size: 30px;
    margin: 0 0 24px 0;
    letter-spacing: normal;
    text-transform: none;
    padding: 0 0 20px 0;
}
.center_content {
    padding: 0;
}
.header_for_img video {
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    z-index: -1;
}
.oval a {
    display: inline-block;
    padding: 0 5px;
    margin: 0 3px;
    font-size: 18px;
    text-decoration: none;
    border-bottom: 1px solid black;
    transition: 0.3s ease-out;
}
.oval a:hover {
    opacity: 0.7;
}
.about_crumps {
    padding: 199px 0 0px 0;
}
.about_remark {
    margin: 152px auto;
}
.map {
    position: relative;
    overflow: hidden;
}
/* Два режима карты должны быть одного размера: у iframe высота задана в разметке
   из базы (550), а картинка-схема 2:1 тянулась по ширине и была выше. Держим
   одну высоту для обоих — 680, чтобы схема шла от края до края и при сужении
   окна кропилась, а не мельчала. Поля у схемы неравные (в пикселях файла
   2400×1200: сверху ~150, снизу ~115), поэтому кадр смещён вниз — режем сверху.
   На окне шире ~1900 фиксированных 680 уже не хватает и нижняя метка уходит
   под край, поэтому дальше высота растёт вместе с шириной. */
.map iframe,
.map .img_lifehack {
    display: block;
    width: 100%;
    height: max(680px, 37vw);
    transition: 1.3s ease-out;
}
.map .img_lifehack {
    object-fit: cover;
    object-position: center 65%;
}
.map_hidden {
    position: absolute;
    top: -150%;
}
.hov {
    cursor: pointer !important;
    border: 4px solid #9278ff !important;
    background-color: #9278ff !important;
    color: whitesmoke !important;
}
.icon_list .group_5 {
    background: url(../images/icons/group_5.svg) no-repeat center top;
    background-size: 40px;
}
.icon_list .group_2 {
    background: url(../images/icons/group_2.svg) no-repeat center top;
    background-size: 40px;
}
.icon_list .group_3 {
    background: url(../images/icons/group_3.svg) no-repeat center top;
    background-size: 40px;
}
.icon_list .group_4 {
    background: url(../images/icons/group_4.svg) no-repeat center top;
    background-size: 40px;
}
.icon_list .group_6 {
    background: url(../images/icons/group_6.svg) no-repeat center top;
    background-size: 40px;
}
.icon_list .group_7 {
    background: url(../images/icons/group_7.svg) no-repeat center top;
    background-size: 40px;
}
.icon_list_item p span {
    display: block;
}
textarea {
    display: block;
    width: 100%;
    max-width: 1270px;
    margin: 0 auto;
    padding: 10px;
    font-size: 30px;
    min-height: 165px;
    outline: none;
    /* Было 77px: строка согласия висела слишком далеко от поля. */
    margin-bottom: 30px;
    border: 4px solid black;
}
textarea:focus {
    border: 4px solid #9278ff;
}
@media (max-width: 1600px) {
    .center_content {
        padding: 0 20px !important;
    }
    .footer .footer_content div {
        width: 30%;
        padding-left: 20px;
        /* Было 230px: под колонкой теперь ещё ссылка на политику и реквизиты,
           при прежней высоте их срезало. */
        max-height: 330px;
        overflow: hidden;
    }
    .footer .footer_content div div {
        padding-left: 0;
    }
}
@media (max-width: 1510px) {

    .mob_header {
        display: flex !important;
        padding: 10px 15px;
        transition: 0.3s ease-out;
        position: absolute;
        z-index: 9999;
        width: 100%;
        background-color: white;
    }
    .mob_header a:nth-child(1) {
        width: 64px;
        display: block;
    }
    .mob_header a:nth-child(2) {
        width: 30px;
        display: block;
        transition: 0.3s ease-out;
    }
    .mob_header a img {
        width: 100%;
        transition: 0.3s ease-out;
    }
    .mob_header a img.rotate {
        -moz-transform: rotate(360deg); /* Для Firefox */
        -ms-transform: rotate(360deg); /* Для IE */
        -webkit-transform: rotate(360deg); /* Для Safari, Chrome, iOS */
        -o-transform: rotate(360deg); /* Для Opera */
        transform: rotate(360deg);
    }
    .menu {
        left: -100%;
        box-shadow: 0 0 10px rgba(0,0,0,0.5);
    }
    .menu_active {
        left: 0;
        background-color: whitesmoke;
        z-index: 9999;
    }
    .menu ul li {
        padding: 10px 0;
    }
    .menu ul li ul li:last-child {
        padding: 5px 0;
    }
    .menu ul li ul li {
        padding: 5px 0;
    }
    .content {
        width: 100%;
        float: none;
        padding-left: 0px;
        padding-right: 0px;
    }
}
@media (max-width: 1300px) {
    /* Контейнер плиток перестаёт упираться в свои 1280px, свободного места
       внутри становится меньше — и первая плитка стоит ближе к краю. */
    .form_agree_themes {
        padding-left: 8px;
    }
    .header_for_img h1 {
        font-size: 66px;
    }
    h3 {
        padding: 65px 0;
    }
    .live_client_list_item {
        width: 110px;
        height: 110px;
        margin-bottom: 62px;
    }
    .oval {
        width: 260px;
        height: 210px;
        font-size: 20px;
        top: -135px;
        left: 16px;
        background-size: 261px;
    }
}
@media (max-width: 1100px) {
    .portfolio_list a, .portfolio_list label {
        width: 46.8%;
    }
    .portfolio_list {
        max-width: 945px;
    }
    .live_client_list_form input {
        width: 100%;
        margin-bottom: 18px;
    }
    .marg_top_125 {
        margin-top: 65px;
    }
    h3 {
        padding: 55px 0;
    }
    .footer {
        margin-top: 210px;
    }
    .header_for_img video {
        left: -50%;
    }
}
@media (max-width: 980px) {
    .header_for_img h1 {
        font-size: 72px;
        max-width: 687px;
    }
    .filters a {
        width: 47%;
    }
    .live_client_list_item img {
        padding: 0;
        margin: auto;
        position: absolute;
        top: 0;
        left: 0;
        bottom: 0;
        right: 0;
    }
    .live_client_list_item {
        width: 85px;
        height: 85px;
        margin-bottom: 42px;
    }
    .blockhouse_list_item {
        width: 46%;
        margin-bottom: 50px;
    }
    .oval {
        width: 185px;
        height: 185px;
        font-size: 15px;
        top: -102px;
        padding: 60px 0;
        left: 16px;
        background-size: 186px;
        display: none;
    }
    .videoframe {
        height: 448px;
    }
    .blog_title h1 {
        width: 90%;
    }
    .photo_snoska span {
        padding: 30px 34px 26px 34px;
        width: 440px;
        background-color: #F9F9F9;
    }
}
@media (max-width: 740px) {
    .map iframe,
    .map .img_lifehack {
        height: 320px;
    }
    .zatravka_list_item span:nth-child(1) {
        font-size: 26px;
    }
    .icon_list_item {
        width: 48%;
    }
    .contacts_adr div {
        width: 100%;
    }
    .bred_crumps {
        padding: 105px 0 35px 0;
    }
    .blog_video {
        padding: 0;
    }
    .blog_title .tube {
        margin: 15px auto;
    }
    .zatravka_list.center_content {
        padding: 0px !important;
    }
    .contacts_adr div button {
        float: none;
        margin-top: 20px;
    }
    .blockhouse_list_item h3 {
        color: black;
    }
    .blockhouse_list_item {
        width: 100%;
        background-color: #f7f7f7;
    }
    .two_columns div h3 {
        font-size: 26px;
        margin: 0 0 0px 0;
    }
    .two_columns div {
        width: 100%;
        margin-bottom: 40px;
        font-size: 18px;
    }
    .two_columns {
        margin-bottom: 5px;
    }
    .awards_list a {
        width: 41%;
        margin-bottom: 30px;
    }
    .photo_snoska {
        margin-bottom: 35px;
    }
    .photo_snoska span {
        padding: 21px 52px 20px 19px;
        width: 100%;
        font-size: 28px;
        display: block;
        position: initial;
    }
    .blog_title h1 {
        width: 90%;
        font-size: 31px;
        line-height: normal;
    }
    ._50 {
        float: none;
        width: 100%;
        padding: 0;
        margin: 29px 0;
    }
    ._100 {
        margin: 35px 0;
    }
    .history_list_item .history_list_item_img span {
        left: 10px;
        top: 10px;
        padding: 2px 15px;
        font-size: 37px;
    }
    .history_list_item h3 {
        font-size: 18px;
        margin-top: 0px;
    }
    .history_list_item p {
        line-height: 1.5;
        font-size: 16px;
    }
    .kitchen_list_item {
        width: 100%;
        margin-bottom: 55px;
    }
    .blog_video iframe {
        height: 232px;
    }
    .blog_video div div img {
        width: 70px;
    }
    remark {
        margin: 71px auto;
    }
    .blog_video div div {
        padding: 0 15px;
    }
    .blog_video_info {
        max-width: none;
    }
    .blog_video_info.center_content {
        padding: 0px !important;
    }
    .footer .footer_content div {
        width: 30%;
        padding-left: 0px;
    }
    .kitchen_list_item h4 {
        font-size: 26px;
    }
    .kitchen_list_item span {
        font-size: 18px;
    }
    .live_client_list .w {
        width: 33%;
    }

    .mob_hidden {
        display: none;
    }
    h3 {
        padding: 70px 0;
        font-size: 18px;
    }
    .slick-initialized .slick-slide {
        opacity: 0.4;
    }
    .slick-initialized .slick-current {
        opacity: 1;
    }
    .slick-dots {
        display: none;
    }
    .btn_border {
        border: 3px solid black;
        font-size: 18px;
        margin: 52px auto; /* на узких экранах сдвиг вниз не нужен — экран и так листается */
    }
    .portfolio_list a, .portfolio_list label {
        font-size: 18px;
        width: 74%;
        margin: 11px auto;
    }
    .btn_send {
        margin: 61px auto;
        width: 74%;
    }
    remark p {
        font-size: 38px;
    }
    .footer .footer_content div:nth-child(1) {
        width: 50%;
        float: left;
        /* Высота была жёсткой (140px): ссылка на политику из неё вываливалась
           и налезала на иконки соцсетей в колонке ниже. */
        height: auto;
        min-height: 140px;
        padding-bottom: 26px;
    }
    .footer .footer_content div:nth-child(2) {
        width: 50%;
        float: right;
    }
    .footer .footer_content div:nth-child(3) {
        width: 50%;
        float: left;
        /* Без clear третья колонка обтекает выросшую первую и уезжает вправо
           под контакты — вместе с иконками и реквизитами. */
        clear: left;
    }
    .footer .footer_content div:nth-child(1) div {
        height: 62px;
    }
    .footer .footer_content div:nth-child(3) div {
        width: auto;
        height: 60px;
    }
    .footer .footer_content div div {
        float: none !important;
    }
    .footer div span {
        font-size: 18px;
    }
    .footer_content {
        display: block !important;
        overflow: hidden;
        padding: 0 10px;
    }
    .footer {
        overflow: hidden;
    }
    .footer div a.vk-icon {
        background: url(../images/vk.svg) no-repeat center center;
        background-size: 25px;
    }
    .footer div a.rutube-icon {
        background: url(../images/rutube.svg) no-repeat center center;
        background-size: 25px;
    }
    .footer div a {
        width: 25px;
        height: 25px;
    }
    .footer .footer_content div:nth-child(2) div {
        height: 135px;
    }
    .footer {
        margin-top: 120px;
        padding: 41px 0 45px 0;
    }
    .header_for_img h1 {
        font-size: 28px;
        max-width: 485px;
    }
    .header_for_img h2 {
        font-size: 16px;
    }
    .blog_video div div span:nth-child(1) {
        font-size: 18px;
    }
    .blog_video div div span:nth-child(2) {
        font-size: 16px;
    }
    .gallery_list_item span {
        font-size: 18px;
        margin-top: 12px;
        padding: 0 15px;
    }
    .constructor .blog_video_info span {
        font-size: 18px;
        margin-top: 4px;
        padding: 0 15px;
    }
    .gallery_list_item {
        margin-bottom: 50px;
    }
    .gallery_list_item.big {
        margin-top: 0px;
    }
    .blog_remark {
        font-size: 18px;
    }
    remark {
        padding: 0 10px;
    }
    .history_list_item_info {
        width: 100%;
        margin-top: 45px;
    }
    .history_list_item_info span b {
        font-size: 16px;
    }
    .history_list_item_info span  {
        font-size: 16px;
    }
    .history_list {
        margin: 0px auto;
    }
    .filters a {
        font-size: 18px;
        width: 74%;
        margin: 11px auto;
    }
}
@media (max-width: 600px) {
    .footer div span {
        font-size: 14px;
        margin: 0 0 11px;
        padding: 0;
        line-height: 1;
    }
}
@media (max-width: 480px) {
    remark p {
        font-size: 26px;
    }
    .about_remark {
        margin: 65px auto;
    }
    .gallery_list_item a {
        padding-left: 15px;
    }
    .about_crumps {
        padding: 120px 0 0px 0;
    }
    .filters a {
        font-size: 12px;
        border: 2px solid black;
    }
    .filters a:hover {
        border: 2px solid #9278ff;
    }
    textarea {
        padding: 5px;
        font-size: 18px;
        min-height: 111px;
        margin-bottom: 50px;
        border: 2px solid black;
    }
    textarea:focus {
        border: 2px solid #9278ff;
    }
    .live_client_list_form input:focus {
        border-bottom: 2px solid #9278ff;
    }
    .contacts_adr div button {
        font-size: 14px;
        padding: 10px 30px;
        width: 220px;
    }
    .contacts_adr div .phone {
        font-size: 18px;
        padding: 12px 0 0 0;
    }
    .contacts_adr div span {
        font-size: 16px;
        padding: 12px 0;
    }
    .icon_list {
        margin: 30px auto;
    }
    .icon_list_item {
        font-size: 14px;
    }
    .one_columns p {
        font-size: 18px;
    }
    .gallery_list_item {
        width: 100%;
    }
    .history_list_item {
        width: 100%;
        margin-bottom: 70px;
    }
    .header_for_img h1 {
        font-size: 28px;
        max-width: 299px;
        margin-top: 202px;
    }
    .menu ul {
        margin-top: 0px;
    }
    .socials {
        margin-bottom: 30px;
    }
    .bred_crumps a {
        font-size: 12px;
        letter-spacing: 2px;
    }
    .bred_crumps a:after {
        width: 8px;
        height: 8px;
    }
    .header_for_img video {
        left: -100%;
    }
    .live_client_list_form input {
        border-bottom: 2px solid black;
        font-size: 18px;
    }
    .btn_border {
        width: 92%;
        font-size: 14px;
        min-width: 295px;
    }
    .live_client_list_form {
        margin: 0 auto;
        margin-top: 0px;
    }
    h3 {
        padding: 40px 0;
        font-size: 18px;
    }
    .portfolio_list a, .portfolio_list label {
        font-size: 12px;
        border: 2px solid black;
    }
    .portfolio_list {
        margin-top: 0px;
    }
    .btn_send {
        font-size: 14px;
        border: 2px solid black;
    }
    .kitchen_list_item h4 {
        font-size: 18px;
        padding: 4px 0 8px 0;
    }
    .kitchen_list_item span {
        font-size: 16px;
    }
    .zatravka_list_item span:nth-child(1) {
        font-size: 18px;
    }
    .zatravka_list_item span:nth-child(2) {
        font-size: 16px;
    }
    .go_cont {
        padding: 10px 30px;
        font-size: 18px;
    }
    .awards_list {
        margin-top: 36px;
    }
    .legal h2 {
        font-size: 20px;
        padding: 28px 0 4px;
    }
    .legal p {
        font-size: 16px;
    }
    /* На узком экране кнопки согласия встают в столбик во всю ширину: рядом
       они сжимаются до нечитаемого, а промахнуться по ним нельзя. */
    .cookie_note {
        padding: 14px;
        gap: 10px;
    }
    .cookie_note button {
        width: 100%;
    }
}
@media (max-width: 320px) {

}