.page-header {
  background-color: var(--green-color);
}
.page-header__wrapper {
  display: flex;
  margin-bottom: 1.25rem;
  align-items: center;
  justify-content: space-between;
  padding: 0.625rem 0;
}
.page-header__phone-number {
  display: block;
  position: relative;
  width: 1.875rem;
  height: 1.875rem;
  font-size: 1px;
  color: transparent;
  text-decoration: none;
}
.page-header__phone-number:before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: 100%;
  background-position: center;
  background-repeat: no-repeat;
  background-image: url('../image/page-header/mobile/phone-icon.svg');
}
.page-header__notice {
  display: none;
}
@media (min-width: 960px) {
  .page-header {
    box-shadow: 0 0 0.0625rem 0 rgba(0, 0, 0, 0.25);
    background-color: #FBFBFB;
  }
  .page-header__wrapper {
    padding: 1.01875rem 0;
  }
  .page-header__logo {
    width: 8.125rem;
    height: 2.4375rem;
  }
  .page-header__phone-number {
    width: auto;
    height: auto;
    font-size: 1.375rem;
    font-weight: 700;
    color: #000000;
  }
  .page-header__phone-number:before {
    left: -2.75625rem;
    width: 1.96875rem;
    height: 1.96875rem;
    background-image: url('../image/page-header/tablet/phone-icon.svg');
  }
  .page-header__notice {
    display: block;
    font-size: 0.75rem;
    font-weight: 400;
    color: var(--light-green-color);
  }
}
@media (min-width: 1190px) {
  .page-header__wrapper {
    padding: 1.5625rem 0;
  }
  .page-header__logo {
    width: 10.3125rem;
    height: 3.0625rem;
  }
  .page-header__phone-number {
    font-size: 1.75rem;
  }
  .page-header__phone-number:before {
    left: -3.5rem;
    width: 2.5rem;
    height: 2.5rem;
  }
  .page-header__notice {
    font-size: 0.875rem;
  }
}

/* FOOTER */

.main-footer {
  background-color: #00583a;
}
.main-footer__wrapper {
  padding-top: 1.875rem;
  padding-bottom: 1.88rem;
}
.main-footer__logo-wrap {
  display: flex;
  margin-bottom: 2.02rem;
  align-items: center;
  justify-content: space-between;
}
.main-footer__social-wrap {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.main-footer__social {
  position: relative;
  display: block;
  width: 1.25rem;
  height: 1.25rem;
  text-decoration: none;
  border-radius: 50%;
}
.main-footer__social:before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.main-footer__social--web:before {
  background-image: url('../image/page-footer/mobile/website.png');
}
.main-footer__social--vk:before {
  background-image: url('../image/page-footer/mobile/vk.svg');
}
.main-footer__social--tg:before {
  background-image: url('../image/page-footer/mobile/tg.png');
}
.main-footer__social--dzen:before {
  background-image: url('../image/page-footer/mobile/yandex-zen.png');
}
.main-footer__title {
  margin: 0;
  margin-bottom: 1.13rem;
  font-size: 0.875rem;
  font-weight: 700;
  line-height: 1.1375rem;
  text-transform: uppercase;
  color: #ffffff;
}
.main-footer__contacts-item {
  display: block;
  position: relative;
  margin-bottom: 0.9rem;
  padding-left: 1.62856rem;
  font-size: 0.75rem;
  font-weight: 400;
  line-height: 0.975rem;
  text-decoration: none;
  color: #ffffff;
}
.main-footer__contacts-item:before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 0.98856rem;
  height: 0.98856rem;
  background-position: center;
  background-size: 100% 100%;
  background-repeat: no-repeat;
}
.main-footer__emails {
  margin-bottom: 1.875rem;
}
.main-footer__navigation-item {
  padding-left: 0;
  text-decoration: underline;
}
.main-footer__address:before {
  background-image: url('../image/page-footer/mobile/address-icon.svg');
}
.main-footer__phone:before {
  background-image: url('../image/page-footer/mobile/phone-icon.svg');
}
.main-footer__email:before {
  background-image: url('../image/page-footer/mobile/letter-icon.svg');
}
.main-footer__tg:before {
  background-image: url('../image/page-footer/mobile/simple-tg-icon.svg');
}
.additional-footer {
  background-color: #01774e;
}
.additional-footer__wrapper {
  display: flex;
  padding: 0.625rem 0;
  align-items: center;
  justify-content: space-between;
}
.additional-footer__copyright {
  margin: 0;
  font-size: 0.625rem;
  font-weight: 500;
  line-height: 0.9375rem;
  text-decoration: none;
  color: #ffffff;
}
.additional-footer__link {
  max-width: 9.88563rem;
  width: 100%;
  padding: 0.625rem;
  font-size: 0.75rem;
  font-weight: 400;
  line-height: 1.125rem;
  text-align: center;
  text-decoration: none;
  color: #ffffff;
  border: none;
  border-radius: 0.74144rem;
  background-color: #00583A;
  box-shadow: 0 0.0466875rem 0.0466875rem 0 rgba(0, 0, 0, 0.50);
}
@media (min-width: 960px) {
  .main-footer__wrapper {
    display: flex;
    padding-top: 4.31rem;
    padding-bottom: 2.69rem;
    align-items: flex-start;
    justify-content: space-between;
    gap: 4.04rem;
  }
  .main-footer__title {
    margin: 0;
  }
  .main-footer__logo-wrap {
    margin: 0;
    align-items: flex-start;
    flex-direction: column;
    flex-shrink: 0;
    order: -2;
    gap: 1.29rem;
  }
  .main-footer__logo {
    width: 7.9085rem;
    height: 2.422rem;
  }
  .main-footer__social-wrap {
    gap: 0.48rem;
  }
  .main-footer__contacts,
  .main-footer__navigation,
  .main-footer__emails {
    display: flex;
    flex-direction: column;
    gap: 1rem;
  }
  .main-footer__contacts {
    max-width: 14.5rem;
    flex-shrink: 0;
  }
  .main-footer__contacts-item {
    margin: 0;
    padding-left: 1.58856rem;
  }
  .main-footer__emails {
    max-width: 14.75rem;
    margin-bottom: 0;
    flex-shrink: 0;
  }
  .main-footer__navigation {
    order: -1;
    flex-shrink: 0;
  }
  .main-footer__navigation-item {
    padding-left: 0;
  }
  .additional-footer__wrapper {
    padding: 1.10rem 0;
  }
  .additional-footer__copyright {
    font-size: 0.75rem;
    line-height: 1.125rem;
  }
}
@media (min-width: 1190px) {
  .main-footer__wrapper {
    padding-top: 5.5rem;
    padding-bottom: 3.31rem;
  }
  .main-footer__logo {
    width: 10rem;
    height: 3.0625rem;
  }
  .main-footer__title {
    margin-bottom: 0.3rem;
    font-size: 1rem;
  }
  .main-footer__social-wrap {
    gap: 0.62rem;
  }
  .main-footer__social {
    width: 1.5625rem;
    height: 1.5625rem;
  }
  .main-footer__contacts {
    max-width: 19.375rem;
  }
  .main-footer__contacts-item {
    font-size: 1rem;
  }
  .main-footer__contacts-item {
    padding-left: 2rem;
  }
  .main-footer__contacts-item:before {
    width: 1.25rem;
    height: 1.25rem;
  }
  .main-footer__emails {
    max-width: 19.6875rem;
  }
  .main-footer__contacts-item {
    line-height: 1.3rem;
  }
  .main-footer__navigation-item {
    padding-left: 0;
  }
  .additional-footer__wrapper {
    padding-top: 1.44rem 0;
  }
  .additional-footer__copyright {
    font-size: 0.875rem;
    line-height: 1.3125rem;
  }
  .additional-footer__link {
    max-width: 12.5rem;
    padding: 0.75rem;
    font-size: 0.875rem;
  }
}