.header__top {
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: space-between; }
  .header__top-address {
    display: flex;
    align-items: center;
    gap: 24px; }
  @media screen and (max-width: 1280px) {
    .header__top {
      display: none; } }
.header__city {
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  transition: color 0.2s ease; }
  .header__city:hover {
    color: #3DA746; }
  @media screen and (max-width: 1280px) {
    .header__city {
      justify-content: center; } }
.header__main {
  height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between; }

@media screen and (max-width: 1280px) {
  .header__nav {
    display: none; } }

.header__nav-list {
  display: flex;
  align-items: center;
  gap: 34px; }

.header__nav-item {
  cursor: pointer;
  transition: color 0.2s ease; }
  .header__nav-item:hover {
    color: #3DA746; }

.header__buttons {
  display: flex;
  align-items: center;
  gap: 24px; }

.header__call {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center; }
  @media screen and (max-width: 1280px) {
    .header__call {
      display: none; } }
  .header__call img {
    width: 24px;
    height: 24px; }

.header__dropdown {
  display: none;
  background-color: white;
  width: 100%;
  overflow: hidden;
  position: absolute;
  z-index: 20;
  height: 100vh; }
  @media screen and (max-width: 1280px) {
    .header__dropdown.open {
      display: block; } }
  .header__dropdown-content {
    padding: 16px; }
  .header__dropdown-nav {
    padding: 32px; }
    .header__dropdown-nav-list {
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 24px; }

.header__logo {
  width: 202px;
  height: auto; }
  @media screen and (max-width: 1280px) {
    .header__logo {
      width: 142px; } }
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0; }

.burger {
  display: none;
  position: relative;
  width: 28px;
  padding: 10px 0;
  background: none;
  border: none;
  cursor: pointer; }
  @media screen and (max-width: 1280px) {
    .burger {
      display: block; } }
  .burger::before, .burger::after {
    content: '';
    position: absolute;
    left: 0;
    width: 28px;
    height: 2px;
    background-color: #000;
    border-radius: 50px;
    transition: transform 0.3s ease; }
  .burger::before {
    top: 3px; }
  .burger::after {
    bottom: 2px; }
  .burger.open::before, .burger.open::after {
    top: 50%;
    margin-top: -1px; }
  .burger.open::before {
    transform: rotate(45deg); }
  .burger.open::after {
    transform: rotate(-45deg); }
  .burger:hover::before, .burger:hover::after {
    background-color: #3DA746; }

.phone-link {
  font-size: 14px;
  line-height: 16px;
  letter-spacing: 0.2px;
  font-weight: 400; }
  .phone-link:hover {
    color: #3DA746;
    text-decoration: underline; }

.button-primary-medium {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  border: 1.5px solid transparent;
  transition: all 0.2s ease;
  height: 44px;
  padding: 12px;
  border-radius: 8px;
  gap: 8px;
  background-color: #3DA746;
  color: #FFFFFF;
  font-size: 16px;
  line-height: 18px;
  letter-spacing: 0;
  font-weight: 500; }
  .button-primary-medium:disabled {
    cursor: not-allowed;
    opacity: 0.5; }
  .button-primary-medium:hover {
    background-color: #5BC564; }
  .button-primary-medium:active {
    background-color: #299332; }
  .button-primary-medium:focus {
    outline: none; }
  .button-primary-medium:disabled {
    cursor: not-allowed;
    background-color: rgba(89, 89, 89, 0.5);
    border-color: rgba(89, 89, 89, 0.5); }
    .button-primary-medium:disabled:hover {
      cursor: not-allowed;
      background-color: rgba(49, 53, 63, 0.8);
      border-color: rgba(49, 53, 63, 0.8); }
