.feedback {
  background-color: #ff7d00;
}
.feedback__input,
.feedback__textarea {
  background-color: #ff7d00;
}
.feedback__input:focus,
.feedback__textarea:focus {
  background-color: rgba(179, 138, 95, 0.6);
  border-color: rgba(0, 0, 0, 0.1);
}
.feedback__input::-webkit-input-placeholder,
.feedback__textarea::-webkit-input-placeholder {
  color: rgba(0, 0, 0, 0.8);
}
.feedback__input:-ms-input-placeholder,
.feedback__textarea:-ms-input-placeholder {
  color: rgba(0, 0, 0, 0.8);
}
.feedback__input::-ms-input-placeholder,
.feedback__textarea::-ms-input-placeholder {
  color: rgba(0, 0, 0, 0.8);
}
.feedback__input::placeholder,
.feedback__textarea::placeholder {
  color: rgba(0, 0, 0, 0.8);
}
.feedback__more {
  margin-top: 2rem;
}
.feedback__more-area {
  -webkit-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
}
.feedback__textarea {
  min-height: 100%;
}
.feedback__group {
  margin-top: 1rem;
}
.feedback__group:first-child {
  margin-top: 0;
}
.feedback__button {
  width: 100%;
}

/*-- Битрикс-лиды через pop-up-форму -- */
.b24-form input.b24-form-control,
.b24-form textarea.b24-form-control {
  display: block;
  width: 100%;
  border: 2px solid transparent;
  line-height: 1.4;
  background-color: #e5e5e5;
  padding: 12px 16px;
  font-size: 0.9rem;
  font-weight: 500;
  color: #000000;
  border-radius: 0;
  height: auto;
}
.b24-form textarea.b24-form-control {
  height: 8rem;
}
@media (min-width: 1400px) {
  .b24-form input.b24-form-control,
  .b24-form textarea.b24-form-control {
    padding-top: 1vw;
    padding-bottom: 1vw;
  }
}

.b24-form .b24-form-wrapper {
  max-width: 100%;
}
.b24-form .b24-form-padding-side {
  padding: 0;
}
.b24-form .b24-form-control-string .b24-form-control-label,
.b24-form .b24-form-control-list .b24-form-control-label,
.b24-form .b24-form-control-text .b24-form-control-label {
  padding-left: 18px;
  opacity: 1;
}
.b24-form .b24-form-control-select-label,
.b24-form .b24-form-control:focus + .b24-form-control-label,
.b24-form .b24-form-control-not-empty + .b24-form-control-label {
  top: 0px;
  opacity: 0;
}

button.b24-form-btn:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 0;
  opacity: 1;
  background-color: #000000;
}
button.b24-form-btn:hover:after {
  -webkit-animation: button-after 0.6s cubic-bezier(0.19, 1, 0.22, 1) forwards;
  animation: button-after 0.6s cubic-bezier(0.19, 1, 0.22, 1) forwards;
  -webkit-animation-iteration-count: 1;
  animation-iteration-count: 1;
}
button.b24-form-btn {
  font-family: "Zrobym", sans-serif;
  -webkit-transition: 0.25s cubic-bezier(0.5, 0, 0, 1);
  transition: 0.25s cubic-bezier(0.5, 0, 0, 1);
}
button.b24-form-btn {
  position: relative;
  display: inline-block;
  text-align: center;
  color: #000000;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  border: 2px #000000 solid;
  background-color: transparent;
  -webkit-animation: button-text 0.001s linear forwards;
  animation: button-text 0.001s linear forwards;
  -webkit-animation-delay: 1.4s;
  animation-delay: 1.4s;
  cursor: pointer;
  padding: 12px 32px;
  line-height: 1.4;
  height: auto;
  border-radius: 0;
  -webkit-box-shadow: 0 0 0 rgb(0 0 0);
  box-shadow: 0 0 0 rgb(0 0 0);
}
button.b24-form-btn:hover {
  background-color: transparent;
}
@media (min-width: 1400px) {
  button.b24-form-btn {
    padding: 1.2vw 3vw;
  }
}

/*--табы 1 вариант
.tabs {
	display: flex;
	flex-direction: column;
}
.tabs__links {
	display: flex;
	justify-content: space-around;
	width: 100%;
	overflow-x: auto;
	overflow-y: hidden;
	margin-left: auto;
	margin-right: auto;
	margin-bottom: 10px;
	order: 0;
	white-space: nowrap;
	background-color: #080808;
}
.tabs__links>a {
	display: inline-block;
    text-decoration: none;
	
	font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    background-color: transparent;
    -webkit-animation: button-text 0.001s linear forwards;
    animation: button-text 0.001s linear forwards;
    -webkit-animation-delay: 1.4s;
    animation-delay: 1.4s;
    cursor: pointer;
    padding: 12px 12px 14px 12px;
    line-height: 1.4;
	
    text-align: center;
	border-top: 2px solid transparent;
    border-left: 2px solid transparent;
    border-right: 2px solid transparent;
	color: #fff;
	width: 100%;
}
@media (min-width: 1400px){
	.tabs__links>a {
		padding: 1.2vw 0.1vw;
	}
}
.tabs__links>a:hover {
	background-color: #080808;
}
.tabs>#piter:target~.tabs__links>a[href="#piter"],
.tabs>#moskau:target~.tabs__links>a[href="#moskau"],
.tabs>#world:target~.tabs__links>a[href="#world"] {
	background-color: #fff;
	color:#080808;
	cursor: default;
	border-top: 2px solid #080808;
    border-left: 2px solid #080808;
    border-right: 2px solid #080808;
}
.tabs>div:not(.tabs__links) {
	display: none;
	order: 1;
}
.tabs>div:target {
	display: block;
}
табы--*/

/*-- табы 2 вариант --*/
.tabs {
  font-size: 0;
  width: 100%;
}
.tabs > input[type="radio"] {
  display: none;
}
.tabs > div {
  /* скрыть контент по умолчанию */
  display: none;
}
/* отобразить контент, связанный с вабранной радиокнопкой (input type="radio") */
#piter:checked ~ #piter,
#moskau:checked ~ #moskau,
#world:checked ~ #world {
  display: block;
  font-size: 0.9rem;
}
.tabs > label {
  display: inline-block;
  text-decoration: none;

  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  background-color: transparent;
  -webkit-animation: button-text 0.001s linear forwards;
  animation: button-text 0.001s linear forwards;
  -webkit-animation-delay: 1.4s;
  animation-delay: 1.4s;
  cursor: pointer;
  padding: 12px 0 14px 0;
  line-height: 1.4;

  text-align: center;

  color: #1b1b1b;
  width: 33.333%;

  vertical-align: middle;
  user-select: none;
  background-color: #f5f5f5;
  border: 2px solid #e0e0e0;
  transition:
    color 0.15s ease-in-out,
    background-color 0.15s ease-in-out;
  cursor: pointer;
  position: relative;
  top: 2px;
}
@media (min-width: 1400px) {
  .tabs > label {
    padding: 1.2vw 0.1vw;
  }
}
@media (max-width: 960px) {
  .tabs > label {
    height: 54px;
  }
}
@media (max-width: 720px) {
  .tabs > label {
    font-size: 0.56rem;
    letter-spacing: -0.03em;
  }
}
.tabs > label:not(:first-of-type) {
  border-left: none;
}
.tabs > input[type="radio"]:checked + label {
  background-color: #fff;
  border-bottom: 2px solid #fff;
  color: #1b1b1b;
}
/*-- табы --*/

/*-- индивидуальности форм --*/
.modal.feedback .b24-form-field-email {
  display: none;
}
.modal.feedback .b24-form-field-file {
  display: none;
}
.b24-form-control-file .b24-form-control-label {
  display: none;
}
.b24-form-control-label {
  font-size: 0.9rem;
  font-weight: 300;
}
#modal-feedback2.modal.feedback .b24-form-field-email,
#modal-feedback2.modal.feedback .b24-form-field-file {
  display: block;
}
/*-- индивидуальности форм --*/

/*-- стили и работа footer-форм --*/
#form-feedback .tabs {
  font-size: 0;
  width: 100%;
}
#form-feedback .tabs > input[type="radio"] {
  display: none;
}
#form-feedback .tabs > div {
  display: none;
}
/* отобразить контент, связанный с вабранной радиокнопкой (input type="radio") */
#form-feedback #f_piter:checked ~ #f_piter,
#form-feedback #f_moskau:checked ~ #f_moskau,
#form-feedback #f_world:checked ~ #f_world {
  display: block;
  font-size: 0.9rem;
}
#form-feedback .tabs > label {
  display: inline-block;
  text-decoration: none;

  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  background-color: transparent;
  -webkit-animation: button-text 0.001s linear forwards;
  animation: button-text 0.001s linear forwards;
  -webkit-animation-delay: 1.4s;
  animation-delay: 1.4s;
  cursor: pointer;
  padding: 12px 0 14px 0;
  line-height: 1.4;

  text-align: center;

  color: #1b1b1b;
  width: 33.333%;

  vertical-align: middle;
  user-select: none;
  background-color: rgba(179, 138, 95, 0.6);
  border: 2px solid #ff7d00;
  transition:
    color 0.15s ease-in-out,
    background-color 0.15s ease-in-out;
  cursor: pointer;
  position: relative;
  top: 2px;
}
@media (min-width: 1400px) {
  #form-feedback .tabs > label {
    padding: 1.2vw 0.1vw;
  }
}
@media (max-width: 960px) {
  #form-feedback .tabs > label {
    height: 54px;
  }
}
@media (max-width: 720px) {
  #form-feedback .tabs > label {
    font-size: 0.56rem;
    letter-spacing: -0.03em;
  }
}
#form-feedback .tabs > label:not(:first-of-type) {
  border-left: none;
}
#form-feedback .tabs > input[type="radio"]:checked + label {
  background-color: transparent;
  /*border-bottom: 2px solid transparent;*/
  color: #1b1b1b;
}
#form-feedback .tabs > input[type="radio"]#f_piter:checked + label {
  border-bottom: 2px solid transparent;
  border-top: 2px solid transparent;
  border-left: 2px solid transparent;
}
#form-feedback .tabs > input[type="radio"]#f_moskau:checked + label {
  border-bottom: 2px solid transparent;
  border-top: 2px solid transparent;
}
#form-feedback .tabs > input[type="radio"]#f_world:checked + label {
  border-bottom: 2px solid transparent;
  border-top: 2px solid transparent;
  border-right: 2px solid transparent;
}
#form-feedback .b24-form-wrapper {
  background: transparent;
}
#form-feedback .b24-form-wrapper.b24-form-border-bottom {
  border-bottom: 0 none;
}
#form-feedback .b24-form-field-file {
  border-radius: 0;
  border: 0 none;
  padding: 0;
  background: transparent !important;
}
#form-feedback .b24-form input.b24-form-control,
#form-feedback .b24-form textarea.b24-form-control {
  background-color: #ff7d00;
  border: 1px solid black;
}
#form-feedback .b24-form input.b24-form-control:focus,
#form-feedback .b24-form textarea.b24-form-control:focus {
  background-color: rgba(179, 138, 95, 0.6);
  border-color: rgba(0, 0, 0, 0.1);
}

.b24-form-wrapper .b24-form-control-file .b24-form-control {
  margin: 0 10px 0 0;
  border: 2px solid #000;
  line-height: 1.4;
  padding-top: 11px !important;
  padding-bottom: 11px !important;
  border-radius: 0;
  font-size: 0.9rem;
}
.b24-form-wrapper .b24-form-control-file .b24-form-control-file-item {
  border: 0 none;
  border-radius: 0;
  margin-bottom: 0;
}
@media (min-width: 1400px) {
  .b24-form-wrapper .b24-form-control-file .b24-form-control {
    padding-top: 1vw !important;
    padding-bottom: 1vw !important;
    padding-left: 40px !important;
    padding-right: 20px !important;
  }
  .b24-form-control-file .b24-form-control:before {
    left: 25.5px;
  }
  .b24-form-control-file .b24-form-control:after {
    left: 21px;
  }
}
.b24-form-wrapper .b24-form-sign {
  display: none !important;
}
/*-- стили и работа footer-форм --*/
.modal {
  position: fixed;
  z-index: 100;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.75);
  opacity: 0;
  pointer-events: none;
  -webkit-transition: 0.5s cubic-bezier(0.5, 0, 0, 1);
  transition: 0.5s cubic-bezier(0.5, 0, 0, 1);
  overflow: auto;
}
.modal.opened {
  opacity: 1;
  pointer-events: all;
}
.modal__background {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
}
.modal__close {
  position: absolute;
  right: 24px;
  top: 24px;
  padding: 12px;
  margin-right: -12px;
  margin-top: -12px;
  color: #1b1b1b;
  background-color: transparent;
  border: none;
  opacity: 0.5;
  cursor: pointer;
}
@media (min-width: 768px) {
  .modal__close {
    right: 42px;
    top: 42px;
  }
}
.modal__close:hover {
  opacity: 1;
}
.modal__window {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  width: calc(100% - 16px);
  margin: 8px auto;
  padding: 32px;
  background-color: #ffffff;
  border-radius: 1px;
  -webkit-box-shadow: 0 0 32px -12px #000000;
  box-shadow: 0 0 32px -12px #000000;
  -webkit-transition: 0.5s cubic-bezier(0.5, 0, 0, 1);
  transition: 0.5s cubic-bezier(0.5, 0, 0, 1);
  -webkit-transform: scale(0.1);
  transform: scale(0.1);
  opacity: 0;
}
@media (min-width: 768px) {
  .modal__window {
    margin: 3rem auto;
    max-width: 528px;
    padding: 42px;
  }
}
@media (min-width: 992px) {
  .modal__window {
    max-width: 746px;
  }
}
@media (min-width: 768px) {
  .modal--extra .modal__window {
    max-width: 528px;
  }
}
@media (min-width: 992px) {
  .modal--extra .modal__window {
    max-width: 746px;
  }
}
@media (min-width: 1200px) {
  .modal--extra .modal__window {
    max-width: 1084px;
  }
}
@media (min-width: 768px) {
  .modal--large .modal__window {
    max-width: 528px;
  }
}
@media (min-width: 992px) {
  .modal--large .modal__window {
    max-width: 746px;
  }
}
@media (min-width: 1200px) {
  .modal--large .modal__window {
    max-width: 820px;
  }
}
@media (min-width: 768px) {
  .modal--medium .modal__window {
    max-width: 528px;
  }
}
@media (min-width: 992px) {
  .modal--medium .modal__window {
    max-width: 746px;
  }
}
@media (min-width: 768px) {
  .modal--small .modal__window {
    max-width: 528px;
  }
}
.modal__row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin: 0 -16px;
}
.modal__row-col {
  padding: 0 16px 32px;
  -ms-flex-preferred-size: 100%;
  flex-basis: 100%;
  max-width: 100%;
}
@media (min-width: 768px) {
  .modal__row-col {
    -ms-flex-preferred-size: 50%;
    flex-basis: 50%;
    max-width: 50%;
  }
}
.modal__title {
  font-size: 1.5rem;
  font-family: "Zrobym", sans-serif;
  line-height: 1.1;
  padding-right: 24px;
  font-weight: 500;
}
.modal__desc {
  font-size: 0.9rem;
  padding-top: 16px;
}
.modal__header {
  margin-bottom: 32px;
}
.modal.opened .modal__window {
  -webkit-transform: scale(1);
  transform: scale(1);
  opacity: 1;
}
[dir="rtl"] .modal__close {
  right: auto;
  left: 24px;
}
@media (min-width: 768px) {
  [dir="rtl"] .modal__close {
    right: auto;
    left: 42px;
  }
}
.footer {
  background-color: #1b1b1b;
  color: #ffffff;
}
@media (max-width: 767px) {
  .footer {
    padding-bottom: 24px;
  }
}
.footer__title {
  -ms-flex-preferred-size: 100%;
  flex-basis: 100%;
  max-width: 100%;
}
.footer__subtitle {
  font-size: 1.4rem;
  color: #ff7d00;
  line-height: 1.2;
  text-transform: uppercase;
  margin-bottom: 0;
}
.footer__block {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin: 0 -16px;
}
.footer__block-col {
  -ms-flex-preferred-size: 100%;
  flex-basis: 100%;
  max-width: 100%;
  padding: 42px 16px 0;
}
@media (min-width: 768px) and (max-width: 991px) {
  .footer__block-col {
    -ms-flex-preferred-size: 50%;
    flex-basis: 50%;
    max-width: 50%;
  }
}
@media (min-width: 1200px) {
  .footer__block-col {
    -ms-flex-preferred-size: 50%;
    flex-basis: 50%;
    max-width: 50%;
  }
}
.footer__block-col.fullwidth {
  padding-top: 24px;
}
.footer__block-col.fullwidth.fullcol {
  padding: 42px 16px 0;
}
.footer__block-col.fullwidth.fullcol .footer__block-title {
  margin-bottom: 0;
}
@media (min-width: 768px) and (max-width: 991px) {
  .footer__block-col.fullwidth {
    -ms-flex-preferred-size: 100%;
    flex-basis: 100%;
    max-width: 100%;
  }
}
@media (min-width: 1200px) {
  .footer__block-col.fullwidth {
    -ms-flex-preferred-size: 100%;
    flex-basis: 100%;
    max-width: 100%;
  }
}
.footer__block-col--zrobym {
  -webkit-box-ordinal-group: 2;
  -ms-flex-order: 1;
  order: 1;
}
@media (min-width: 768px) and (max-width: 991px) {
  .footer__block-col--zrobym {
    -webkit-box-ordinal-group: initial;
    -ms-flex-order: initial;
    order: initial;
  }
}
@media (min-width: 1200px) {
  .footer__block-col--zrobym {
    -webkit-box-ordinal-group: initial;
    -ms-flex-order: initial;
    order: initial;
  }
}
.footer__block-col--furniture {
  -webkit-box-ordinal-group: 3;
  -ms-flex-order: 2;
  order: 2;
}
@media (min-width: 768px) and (max-width: 991px) {
  .footer__block-col--furniture {
    -webkit-box-ordinal-group: initial;
    -ms-flex-order: initial;
    order: initial;
  }
}
@media (min-width: 1200px) {
  .footer__block-col--furniture {
    -webkit-box-ordinal-group: initial;
    -ms-flex-order: initial;
    order: initial;
  }
}
.footer__block-col--furniture .footer__block-subtitle {
  display: none;
}
@media (min-width: 768px) and (max-width: 991px) {
  .footer__block-col--furniture .footer__block-subtitle {
    display: block;
    opacity: 0;
  }
}
@media (min-width: 1200px) {
  .footer__block-col--furniture .footer__block-subtitle {
    display: block;
    opacity: 0;
  }
}
.footer__block-title {
  font-size: 1.2rem;
  font-weight: 500;
  text-transform: uppercase;
  margin-bottom: 24px;
}
.footer__block-subtitle {
  font-weight: 500;
  text-transform: uppercase;
  margin-bottom: 8px;
  color: #ffffff;
}
.footer__block-content {
  color: #c8c8c8;
  font-size: 0.9rem;
  line-height: 1.6;
}
.footer__block-content + .footer__block-content {
  margin-top: 16px;
}
.footer a {
  color: #c8c8c8;
  text-decoration: none;
}
@media (min-width: 768px) {
  .footer .section__header-title {
    font-size: 3.2rem;
  }
}
.footer-footer {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin: 0 -16px -32px;
}
@media (max-width: 991px) {
  .order-sm-1 {
    order: 1;
  }
  .order-sm-2 {
    order: 2;
  }
  .order-sm-3 {
    order: 3;
  }
  .order-sm-4 {
    order: 4;
  }
  .footer-footer.second {
    margin-top: -32px;
  }
}
.footer-footer__list {
  padding: 0 16px 32px;
  line-height: 1.4;
  -ms-flex-preferred-size: 100%;
  flex-basis: 100%;
  max-width: 100%;
}
@media (min-width: 768px) and (max-width: 991px) {
  .footer-footer__list {
    -ms-flex-preferred-size: 50%;
    flex-basis: 50%;
    max-width: 50%;
  }
}
@media (min-width: 1200px) {
  .footer-footer__list {
    -ms-flex-preferred-size: 50%;
    flex-basis: 50%;
    max-width: 50%;
  }
}
.footer-footer__list-link {
  display: block;
  padding: 8px 0;
  color: #ffffff;
  text-transform: uppercase;
  font-weight: 500;
  line-height: 1.4;
}
@media (min-width: 992px) {
  .footer-footer__list-link {
    font-size: 0.9rem;
  }
}
@media (min-width: 1200px) and (max-width: 1399px) {
  .footer-footer__list-link {
    font-size: 0.8rem;
  }
}
.footer-footer__list-link:hover {
  color: #ff7d00;
}
.footer-footer__list-link.parent {
  padding-bottom: 8px;
}
@media (min-width: 992px) {
  .footer-footer__list-link.parent {
    padding-bottom: 4px;
  }
}
.footer-footer__list-link.active,
.footer-footer__list-link.has {
  color: #ff7d00;
}
.footer-footer__sublist {
  padding-bottom: 0.8rem;
}
.footer-footer__sublist-link {
  display: block;
  padding: 4px 0;
  color: #c8c8c8;
  line-height: 1.4;
}
@media (min-width: 992px) {
  .footer-footer__sublist-link {
    font-size: 0.9rem;
  }
}
@media (min-width: 1200px) and (max-width: 1399px) {
  .footer-footer__sublist-link {
    font-size: 0.8rem;
  }
}
.footer-footer__sublist-link:hover {
  color: #ff7d00;
}
.footer-footer__sublist-link.active,
.footer-footer__sublist-link.has {
  color: #ff7d00;
}
.footer .social__item {
  width: 32px;
  height: 36px;
}
@media (max-width: 767px) {
  .footer .social__item,
  .footer .icon {
    width: 32px;
    height: 32px;
    margin-right: 0;
  }
  a.icon + a:not(.icon) {
    display: block;
  }
  .footer .icon_telegram {
    background-image: url("../icons/white/telegram-trans.svg");
  }
  .footer .icon_viber {
    background-image: url("../icons/white/viber-trans.svg");
  }
  .footer .icon_whatsapp {
    background-image: url("../icons/white/whatsapp-trans.svg");
  }
}
.footer .social__item--telegram {
  background-image: url("../icons/white/telegram-trans.svg");
}
@media (min-width: 1200px) {
  .footer .social__item--telegram:hover {
    background-image: url("../icons/gold/telegram-trans.svg");
  }
}
.footer .social__item--behance {
  background-image: url("../icons/white/behance-trans.svg");
}
@media (min-width: 1200px) {
  .footer .social__item--behance:hover {
    background-image: url("../icons/gold/behance-trans.svg");
  }
}
.footer .social__item--youtube {
  background-image: url("../icons/white/youtube-trans.svg");
}
@media (min-width: 1200px) {
  .footer .social__item--youtube:hover {
    background-image: url("../icons/gold/youtube-trans.svg");
  }
}
.footer .social__item--instagram {
  background-image: url("../icons/white/instagram-trans.svg");
}
@media (min-width: 1200px) {
  .footer .social__item--instagram:hover {
    background-image: url("../icons/gold/instagram-trans.svg");
  }
}
.footer .social__item--facebook {
  background-image: url("../icons/white/facebook-trans.svg");
}
@media (min-width: 1200px) {
  .footer .social__item--facebook:hover {
    background-image: url("../icons/gold/facebook-trans.svg");
  }
}
.footer .social__item--vk {
  background-image: url("../icons/white/vk-trans.svg");
}
@media (min-width: 1200px) {
  .footer .social__item--vk:hover {
    background-image: url("../icons/gold/vk-trans.svg");
  }
}
.footer .social__item--pinterest {
  background-image: url("../icons/white/pinterest-trans.svg");
}
@media (min-width: 1200px) {
  .footer .social__item--pinterest:hover {
    background-image: url("../icons/gold/pinterest-trans.svg");
  }
}
.footer .social__item--linkedin {
  background-image: url("../icons/white/linkedin-trans.svg");
}
@media (min-width: 1200px) {
  .footer .social__item--linkedin:hover {
    background-image: url("../icons/gold/linkedin-trans.svg");
  }
  .footer .social__list-point {
    padding: 0 4px;
  }
  .footer .social__list {
    margin: 0 -12px;
  }
}
