@font-face {
    font-family: 'Montserrat';
	src: url('/resource/themes/narnija/assets/fonts/Montserrat-r.woff2');
	font-weight: 400;
	font-style: normal;
	font-display: swap;
}
@font-face {
    font-family: 'Montserrat';
	src: url('/resource/themes/narnija/assets/fonts/Montserrat-m.woff2');
	font-weight: 500;
	font-style: normal;
	font-display: swap;
}
@font-face {
    font-family: 'Montserrat';
	src: url('/resource/themes/narnija/assets/fonts/Montserrat-sb.woff2');
	font-weight: 600;
	font-style: normal;
	font-display: swap;
}
@font-face {
    font-family: 'Montserrat';
	src: url('/resource/themes/narnija/assets/fonts/Montserrat-b.woff2');
	font-weight: 700;
	font-style: normal;
	font-display: swap;
}
@font-face {
    font-family: 'Montserrat';
	src: url('/resource/themes/narnija/assets/fonts/Montserrat-eb.woff2');
	font-weight: 800;
	font-style: normal;
	font-display: swap;
}
@font-face {
	font-family: 'icon';
	src: url('/resource/themes/narnija/assets/fonts/icons/icon.woff2');
	font-style: normal;
	font-display: swap;
}
:root {
    --white: hsl(0, 0%, 100%);
    --grey-100: hsla(0, 0%, 88%, 1);
    --grey-200: hsl(0, 0%, 70%);
    --grey-400:hsl(0, 0%, 78%);
    --grey-300: hsl(0, 0%, 51%);
    --grey-500: hsla(216, 5%, 92%, 1);
    --orange-200: hsl(26, 100%, 63%);
    --orange-300: hsl(33, 100%, 52%);
    --orange-400: hsl(26, 90%, 52%);
    --orange-470: hsla(26, 90%, 52%, 0.7);
    --brown:hsl(0, 15%, 21%);
    --dark-blue-400: hsl(241, 52%, 18%);
    --dark-blue-700: hsl(222, 18%, 14%);
    --dark-blue-800: hsl(240, 9%, 9%);
}
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    outline: 0;
    font-family: 'Montserrat';
    font-size: 16px;
    font-weight: 400;
    color: var(--dark-blue-800);
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
    -webkit-tap-highlight-color: transparent;
}
html {
    -webkit-text-size-adjust: 100%;
    -ms-text-size-adjust: 100%;
}
body {
    min-height: 200vh;
    display: flex;
    flex-direction: column;
}
input[type="search"]::-webkit-search-decoration,
input[type="search"]::-webkit-search-cancel-button,
input[type="search"]::-webkit-search-results-button,
input[type="search"]::-webkit-search-results-decoration {
  --webkit-appearance:none;
  border-radius: 0;
}

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
    --webkit-appearance: none;
    margin: 0;
}
input[type="text"],
input[type="password"],
input[type="email"],
input[type="search"],
input[type="date"],
textarea,
input[type="tel"],
select,
input[type="submit"],
button,
.btn {
  --webkit-appearance: none;
  border-radius: 0;
}
a {
    text-decoration: none;
    transition: 0.2s;
}
p {
    cursor: default;
}
img {
    object-fit: cover;
}
textarea {
    --webkit-appearance: none;
    resize: vertical;
    min-height: 95px;
    max-height: 300px;
}
input[placeholder] {
    text-overflow: ellipsis;
}
.btn{
    background: var(--orange-400);
    border-radius: 5px;
    border: 1px solid var(--orange-400);
    font-weight: 500;
    font-size: 14px;
    line-height: 23px;
    color: var(--white);
    cursor: pointer;
    transition: 0.3s linear;
}
.btn:hover {
    background-color: var(--orange-470);
}
::-webkit-input-placeholder {
    color: hsl(0, 0%, 63%);
    font-family: 'Montserrat';
    font-size: 14px;
    line-height: 17px;
}
:-webkit-autofill {
    -webkit-box-shadow: inset 0 0 0 50px var(--white) !important;
    box-shadow: inset 0 0 0 50px var(--white) !important;
}
:focus::-webkit-input-placeholder {
    color: transparent;
    transition: 0.3s;
}
::selection {
    background-color: hsla(51, 23%, 11%, 0.7);
    color: var(--white);
}
.wrapper {
    width: 100%;
    max-width: 1280px;
    margin-left: auto;
    margin-right: auto;
}
header {
    position: fixed;
    z-index: 100;
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    left: 0;
    transition: top 0.6s;
}
header .top {
    width: 100%;
    border-bottom: 1px solid var(--grey-100);
    background-color: var(--white);
}
header .top .wrapper {
    padding-top: 10px;
    padding-bottom: 5px;
    display: flex;
    align-items: center;
}
header .top .logo {
    width: 100px;
    height: 25px;
    margin-right: 7%;
}
header .top .info div {
    display: flex;
    margin-bottom: 5px;
}
header .top .info h2 {
    font-size: 14px;
    line-height: 17px;
    color: var(--dark-blue-700);
    margin-right: 15px;
}
header .top .info span {
    font-weight: 700;
    font-size: 14px;
    line-height: 17px;
    color: var(--dark-blue-400);
}
header .top .phone {
    margin-left: auto;
}
header .phone {
    font-weight: 500;
    font-size: 12px;
    line-height: 15px;
    color: var(--dark-blue-400);
}
header .phone span {
    font-size: 22px;
    line-height: 29px;
    font-weight: 500;
    color: var(--dark-blue-400);
}
header .top .social-networks {
    display: flex;
}
header .middle .social-networks {
    display: none;
}
header .social-networks a:not(:last-child) {
    margin-right: 15px;
}
header .social-networks a {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 30px;
    height: 30px;
}
header .social-networks a::after {
    font-family: icon;
    font-size: 14px;
}
header .social-networks a.twitter::after {
    content: '\e004';
}
header .social-networks a.facebook::after {
    content: '\e001';
}
header .social-networks a.youtube::after {
    content: '\e003';
}
header .social-networks a.instagram::after {
    content: '\e002';
}
header .top .hamburger {
    display: none;
    align-items: center;
    justify-content: center;
    position: relative;
    width: 48px;
    height: 48px;
    cursor: pointer;
    z-index: 1;
    background-color: var(--white);
    transition: 0.25s;
}
header .top .hamburger span::before {
    content: '';
    top: -5px;
}
header .top .hamburger span::after {
    content: '';
    top: 5px;
}
header .top .hamburger span,
header .top .hamburger span::before,
header .top .hamburger span::after {
    display: block;
    position: absolute;
    width: 20px;
    height: 2px;
    border-radius: 1px;
    background: var(--dark-blue-800);
    transition: 0.25s;
}
header.mobile .hamburger,
header .hamburger.close-window {
    background-color: var(--orange-400);
}
header.mobile .hamburger span,
header .hamburger.close-window span {
    transform: rotate(45deg);
    background-color: var(--white);
}
header.mobile .hamburger span::before,
header .hamburger.close-window span::before {
    top: 0;
    transform: rotate(0);
    background-color: var(--white);
}
header.mobile .hamburger span::after,
header .hamburger.close-window span::after {
    top: 0;
    transform: rotate(90deg);
    background-color: var(--white);
}
header .middle {
    padding: 20px 0px;
    background-color: var(--white);
    z-index: 100;
}
header.scroll .middle {
    padding: 10px 0;
    box-shadow: 0px 2px 4px rgb(182 180 180 / 25%);
    border-bottom: 1px solid var(--grey-100);
}
header .middle .mobile-wrapper {
    display: contents;
}
header .middle .wrapper {
    display: flex;
    position: relative;
    align-items: center;
}
header .middle nav {
    width: 55%;
}
header .middle .ws-menu {
    display: flex;
    align-items: center;
}
header.scroll .middle .ws-menu {
    opacity: 0;
    z-index: -100;
    transition-duration: 0.35s;
}
header .middle .ws-menu > .item:not(:last-child) {
    margin-right: 5%;
}
header .middle .ws-menu > .item > a {
    font-weight: 500;
    font-size: 14px;
    line-height: 17px;
    text-transform: uppercase;
    display: flex;
}
header .middle .ws-menu > .item.catalog {
    position: relative;
}
header .middle .ws-menu > .item.catalog p {
    font-weight: 700;
    color: var(--dark-blue-400);
    font-size: 14px;
    line-height: 17px;
    text-transform: uppercase;
    display: flex;
    cursor: pointer;
} 
header .middle .ws-menu > .item.catalog p::after {
    content: '\e005';
    font-family: 'icon';
    font-size: 10px;
    margin-left: 10px;
    display: flex;
    transition: .3s linear;
}
header .middle .ws-menu > .item.catalog.show p::after {
    transform: rotate(180deg);
}
header .middle .ws-menu > .item.catalog.show .sub-menu {
    max-height: 160px;
}
header .middle .item.catalog .sub-menu {
    display: flex;
    flex-direction: column;
    width: 170px;
    max-height: 0;
    box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
    border-radius: 5px;
    padding-left: 20px;
    background-color: var(--white);
    overflow: hidden;
    transition: .3s;
    position: absolute;
    left: 0;
    top: calc(100% + 15px);
}
header .middle .item.catalog .sub-menu .item:first-child {
    margin-top: 20px;
}
header .middle .item.catalog .sub-menu .item:not(:last-child) {
    margin-bottom: 15px;
}
header .middle .item.catalog .sub-menu .item:last-child {
    margin-bottom: 20px;
}
header .middle .item.catalog .sub-menu a {
    font-size: 14px;
    letter-spacing: 0.02em;
    transition: .3s linear;
}
header .middle .item.catalog .sub-menu a:hover {
    color: var(--grey-300);
}
header .middle button {
    padding: 10px 0;
    width: 225px; 
}
header .middle .consultate-btn {
    margin-left: auto;
    margin-right: 10px;
}
header.scroll .middle .consultate-btn {
    opacity: 0;
}
header.scroll .middle .designer-btn {
    opacity: 0;
}
header .middle .designer-btn {
    background-color: var(--white);
    color: var(--orange-400);
}
header .middle .designer-btn:hover {
    background-color: var(--orange-400);
    color: var(--white);
}
header .scroll-menu {
    transition-duration: 0.35s;
    position: absolute;
    top: 0;
    left: 0;
    display: flex;
    align-items: center;
    opacity: 0;
    z-index: -100;
    width: 100%;
}
header.scroll .scroll-menu {
    opacity: 1;
    z-index: 100;
    padding-bottom: 5px;
}
header .scroll-menu .logo {
    width: 100px;
    height: 25px;
    margin-right: 7%;
}
header .scroll-menu > span {
    display: inline-block;
    font-weight: 600;
    font-size: 12px;
    line-height: 15px;
    text-decoration: underline;
    color: var(--orange-400);
    cursor: pointer;
    transition: .3s linear;
}
header .scroll-menu > span:hover {
    color: var(--orange-470);
}
header .scroll-menu .back-call.consultate-btn {
    margin-left: auto;
    margin-right: 30px;
    opacity: 1;
}
header .scroll-menu .call-worker.designer-btn {
    margin-right: 6%;
    opacity: 1;
}
header .scroll-menu .call-worker.designer-btn:hover {
    color: var(--orange-470);
    background-color: var(--white);
}
header.show .hamburger span {
    transform: rotate(45deg);
}
header.show .hamburger span::before {
    top: 0;
    transform: rotate(0);
}
header.show .hamburger span::after {
    top: 0;
    transform: rotate(90deg);
}
.window-background {
    display: none;
    align-items: flex-start;
    justify-content: center;
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background: #141418b3;;
    z-index: 1000;
    overflow-y: auto;
}
.window-background.open {
    display: flex;
}
.window-background .window-body {
    max-height: 100vh;
    overflow: auto;
    width: 100%;
    max-width: 780px;
    background: var(--white);
    position: absolute;
    padding: 30px 30px 25px 30px;
    max-width: 690px;
    width: 85%;
}
.window-background.consultate-form .window-body {
    animation: show-consultate 0.5s forwards;
}
.window-background.designer .window-body {
    animation: show-designer 0.5s forwards;
}
.window-background.thanks .window-body {
    padding: 40px 30px 25px 30px;
    animation: show-thanks 0.5s forwards;
}
.window-background .window-body .window-title {
    margin-bottom: 25px;
}
.window-background.thanks .window-body .window-title {
    margin-bottom: 30px;
}
.window-background .window-body h2 {
    font-weight: 800;
    font-size: 30px;
    line-height: 33px;
    margin-bottom: 25px;
    text-align: center;
}
.window-background.thanks .window-body h2 {
    margin-bottom: 15px;
}
.window-background.thanks .window-body .btn {
    display: block;
    margin: 0 auto;
    width: 210px;
    font-size: 16px;
    padding: 11px 0;
}
.window-background .window-body .window-title p {
    font-weight: 500;
    line-height: 20px;
    text-align: center;
}
.window-background .window-body form {
    display: flex;
    flex-direction: column;
    margin-bottom: 25px;
}
.window-background .window-body form label {
    font-weight: 600;
    font-size: 12px;
    line-height: 16px;
    margin-bottom: 10px; 
}
.window-background .window-body form input {
    border: 1px solid var(--grey-500);
    padding: 10px 0px 10px 8px;
    margin-bottom: 15px;
    font-size: 16px;
    line-height: 17px;
    letter-spacing: 0.02em;
}
.window-background .window-body form input::placeholder {
    font-size: 14px;
    line-height: 17px;
    letter-spacing: 0.02em;
}
.window-background .window-body form button {
    padding: 20px 0;
    line-height: 18px;
    letter-spacing: 0.03em;
    text-transform: uppercase;
}
.window-background .window-body .window-content p,
.window-background .window-body .window-content p a {
    font-size: 12px;
    line-height: 15px;
}
.window-background .window-body .window-content p a {
    color: var(--orange-400);
}
@keyframes show-consultate {
    0% {
        top: -415px;
    }
    100% {
        top: calc(50% - 210px);
    }
}
@keyframes show-designer {
    0% {
        top: -440px;
    }
    100% {
        top: calc(50% - 220px);
    }
}
@keyframes show-thanks {
    0% {
        top: -200px;
    }
    100% {
        top: calc(50% - 100px);
    }
}
footer {
    margin-top: auto;
    border-top: 1px solid var(--grey-100);
}
footer .top {
    padding-top: 45px;
    padding-bottom: 60px;
    display: grid;
    grid-template-columns: 35% 20% 29%;
    row-gap: 30px;
    grid-template-rows: 170px 45px auto;
    justify-content: space-between;
}
footer .top nav {
    padding-top: 25px;
    grid-area: 1/1/4/2;
}
footer .top nav .ws-menu {
    display: grid;
    grid-template-columns: 165px 165px;
    justify-content: space-between;
}
footer .top nav .ws-menu .item.title {
    margin-bottom: 35px;
}
footer .top nav .ws-menu .item.title p {
    font-weight: 600;
    line-height: 20px;
}
footer .top nav .ws-menu .item {
    margin-bottom: 30px;
}
footer .top .ws-menu .item a {
    font-weight: 400;
    font-size: 14px;
    line-height: 17px;
    transition: .3s linear;
}
footer .top .ws-menu .item a:hover {
    color: var(--grey-300);
}
footer .top .contacts {
    padding-top: 25px;
    grid-area: 1/2/4/3;
    display: flex;
    flex-direction: column;
}
footer .top .contacts h2 {
    font-weight: 600;
    line-height: 20px;
    margin-bottom: 35px;
}
footer .top .contacts .phone {
    margin-bottom: 25px;
    line-height: 20px;
    text-decoration-line: underline;
}
footer .top .contacts .addres {
    font-weight: 500;
    line-height: 20px;
    margin-bottom: 30px;
}
footer .top .contacts .mail {
    font-size: 14px;
    line-height: 17px;
    text-decoration-line: underline;
    margin-bottom: 45px;
}
footer .top .contacts h3 {
    margin-bottom: 20px;
    line-height: 20px;
}
footer .top .contacts .time {
    font-weight: 500;
    line-height: 20px;
}
footer .top .info .logo {
    display: block;
    margin-left: auto;
    width: 160px;
    height: 55px;
}
footer .top .info .logo img {
    width: 100%;
}
footer .top .info p,
footer .top .info p span {
    text-align: right;
    font-size: 14px;
    line-height: 17px;
}
footer .top .social-networks {
    display: flex;
    justify-content: flex-end;
}
footer .top .social-networks a:not(:last-child) {
    margin-right: 15px;
}
footer .top .social-networks a {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
}
footer .top .social-networks a::after {
    font-family: icon;
    font-size: 20px;
    transition: .3s linear;
}
footer .top .social-networks a:hover:after {
    color: var(--grey-300);
}
footer .top .social-networks a.twitter::after {
    content: '\e004';
}
footer .top .social-networks a.facebook::after {
    content: '\e001';
}
footer .top .social-networks a.youtube::after {
    content: '\e003';
}
footer .top .social-networks a.instagram::after {
    content: '\e002';
}
footer .wr-development {
    display: flex;
    justify-content: flex-end;
}
footer .wr-development a {
    display: flex;
    align-items: center;
    transition: .3s linear;
}
footer .wr-development a > * {
    transition: .3s linear;
}
footer .wr-development a:hover > * {
    opacity: 0.6;
}
footer .wr-development span {
    display: inline-block;
    font-size: 12px;
    line-height: 15px;
    margin-right: 10px;
}
footer .bottom {
    border-top: 1px solid var(--grey-500);
    padding: 10px 0;
    display: flex;
    justify-content: center;
}
footer .bottom p {
    font-size: 12px;
    line-height: 15px;
    color: var(--grey-200);
}
@media screen and (max-width: 1330px) {
    .wrapper {
        padding-left: 15px;
        padding-right: 15px;
    }
    header .scroll-menu {
        left: 15px;
        width: calc(100% - 30px);
    }
    header .middle .ws-menu > .item:not(:last-child) {
        margin-right: 2%;
    }
}
@media screen and (max-width: 1056px) {
    header .top .hamburger {
        display: flex;
    }
    header .top .social-networks,
    header .top .info {
        display: none;
    }
    header .middle {
        padding: 0;
    }
    header .middle {
        display: flex;
        flex-direction: column;
        height: calc(100vh - 66px);
        width: 320px;
        position: absolute;
        top: 66px;
        right: -320px;
        padding: 20px 15px;
        background-color: var(--white);
        transition: .25s linear;
    }
    header.mobile .middle {
        right: 0;
    }
    header .middle .wrapper {
        display: contents;
    }
    header .middle nav {
        width: 100%;
        margin-bottom: 10px;
        order: 2;
    }
    header .middle .ws-menu {
        flex-direction: column;
        width: 100%;
    }
    header .scroll-menu {
        position: relative;
        display: flex;
        justify-content: space-between;
        order: 1;
        width: 100%;
        opacity: 1;
        left: 0;
        margin-bottom: 35px;
    }
    header .middle .ws-menu > .item:not(:last-child) {
        margin-right: 0;
    }
    header .middle .ws-menu > .item {
        width: 100%;
        padding: 10px 0px;
        border-bottom: 1px solid var(--grey-500);
    }
    header .middle .ws-menu > .item.catalog p {
        flex-direction: row-reverse;
        text-transform: none;
        justify-content: start;
        color: var(--dark-blue-800);
        font-weight: 600;
    }
    header .middle .ws-menu > .item.catalog p::after {
        margin-left: 0;
        margin-right: 15px;
    }
    header .middle .ws-menu > .item > a {
        text-transform: none;
        color: var(--dark-blue-800);
        font-weight: 600;
        margin-left: 25px;
    }
    header .middle .item.catalog .sub-menu {
        position: relative;
    }
    header .middle .ws-menu > .item.catalog .sub-menu {
        width: 100%;
        box-shadow: none;
        border-radius: 0px;
        padding-left: 25px;
    }
    header .middle .item.catalog .sub-menu .item:first-child {
        margin-top: 15px;
    }
    header .middle .consultate-btn {
        margin-left: 0;
        margin-right: 0;
        width: 100%;
        margin-bottom: 10px;
        order: 3;
    }
    header .middle .designer-btn {
        width: 100%;
        margin-bottom: 20px;
        order: 4;
    }
    header .scroll-menu .logo,
    header .scroll-menu .phone {
        display: none;
    }
    header .scroll-menu .call-worker.designer-btn,
    header .scroll-menu .back-call.consultate-btn {
        margin-right: 0;
        margin-left: 0;
        margin-bottom: 0;
    }
    header .middle .social-networks {
        display: flex;
        order: 5;
        justify-content: center;
    }
    footer .top {
        justify-content: center;
        grid-template-columns: 65% 35%;
        grid-template-rows:auto;
    }
    footer .top nav .ws-menu {
        max-width: 350px;
    }
    footer .top .contacts {
        grid-area: 1/2/2/3;
    }
    footer .top .info {
        grid-area: 2/1/3/2;
        max-width: 350px;
    }
    footer .top .info .logo {
        margin-left: 0;
    }
    footer .top .info p {
        text-align: left;
    }
    footer .top .social-networks {
        justify-content: start;
    }
    footer .wr-development {
        grid-area: 3/1/4/3;
        justify-content: center;
    }
}
@media screen and (max-width: 578px) {
    header .top .wrapper {
        padding-top: 5px;
        padding-bottom: 5px;
    }
    header .top .logo {
        width: 75px;
        height: 20px;
        margin-right: 4%;
    }
    header .top .logo img {
        width: 100%;
        height: 100%;
    }
    header .top .phone {
        margin-right: 2%;
    }
    header .phone span {
        font-size: 20px;
        line-height: 24px;
    }
    header .middle {
        height: calc(100vh - 58px);
        top: 58px;
    }
    .window-background {
        top: 58px;
    }
    .window-background .window-body {
        position: static;
        width: 100%;
        height: 100%;
        padding: 20px 15px;
    }
    .window-background .window-body .window-title {
        margin-bottom: 20px;
    }
    .window-background .window-body h2 {
        text-align: left;
        font-weight: 700;
        font-size: 20px;
        line-height: 22px;
        margin-bottom: 10px;
    }
    .window-background.thanks .window-body {
        padding: 100px 15px;
    }
    .window-background.thanks .window-body h2 {
        text-align: center;
        font-size: 18px;
        margin-bottom: 20px;
    }
    .window-background.thanks .window-body .window-title p {
        text-align: center;
    }
    .window-background.thanks .window-body .btn {
        width: 100%;
        font-size: 14px;
    }
    .window-background .window-body .window-title p {
        text-align: left;
        font-size: 12px;
        line-height: 15px;
        font-weight: 400;
    }
    .window-background .window-body .window-content p a {
        text-decoration: underline
    }
    .window-background .window-body form {
        margin-bottom: 15px;
    }
    .window-background .window-body form button {
        padding: 15px 0;
    }
    footer .top {
        display: flex;
        flex-direction: column;
        padding-top: 90px;
        padding-bottom: 15px;
        row-gap: 0;
    }
    footer .top .info p {
        margin-bottom: 25px;
    }
    footer .top nav .ws-menu {
       display: flex;
       flex-direction: column;
    }
    footer .top nav .ws-menu .item.title {
        margin-bottom: 15px;
    }
    footer .top nav .ws-menu .item.title p {
        font-size: 14px;
        line-height: 17px;
    }
    footer .top nav .ws-menu .item {
        margin-bottom: 15px;
    }
    footer .top nav .ws-menu .item:nth-child(1) {
        order: 1;
    }
    footer .top nav .ws-menu .item:nth-child(2) {
        order: 6;
    }
    footer .top nav .ws-menu .item:nth-child(3) {
        order: 2;
    }
    footer .top nav .ws-menu .item:nth-child(4) {
        order: 7;
    }
    footer .top nav .ws-menu .item:nth-child(5) {
        order: 3;
    }
    footer .top nav .ws-menu .item:nth-child(6) {
        order: 8;
    }
    footer .top nav .ws-menu .item:nth-child(7) {
        order: 4;
    }
    footer .top nav .ws-menu .item:nth-child(8) {
        order: 9;
    }
    footer .top nav .ws-menu .item:nth-child(9) {
        order: 5;
        margin-bottom: 30px;
    }
    footer .top nav .ws-menu .item:nth-child(10) {
        order: 10;
        margin-bottom: 30px;
    }
    footer .top .info {
        order: 1;
    }
    footer .top nav {
        order: 2;
    }
    footer .top .contacts {
        order: 3;
        padding-top: 0;
        margin-bottom: 30px;
    }
    footer .top .contacts h2 {
        font-size: 14px;
        line-height: 17px;
        margin-bottom: 15px;
    }
    footer .top .contacts .phone {
        margin-bottom: 15px;
    }
    footer .top .contacts .addres {
        font-size: 14px;
        line-height: 17px;
        font-weight: 400;
    }
    footer .top .contacts .mail {
        margin-bottom: 30px;
    }
    footer .top .contacts h3 {
        font-size: 14px;
        line-height: 17px;
        margin-bottom: 15px;
    }
    footer .top .social-networks {
        order: 4;
        margin-bottom: 30px;
    }
    footer .top .social-networks a {
        width: 30px;
        height: 30px;
    }
    footer .top .social-networks a::after {
        font-size: 15px;
    }
    footer .wr-development {
        order: 5;
        justify-content: start;
    }
    footer .wr-development span {
        color: var(--grey-300);
    }
    footer .bottom {
        justify-content: start;
        padding-left: 20px;
    }
}