.site-header {
  display: flex;
  justify-content: center;
  position: relative;
}

.header-bg {
  background-color: #ffffff;
  position: absolute;
  height: 120px;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  opacity: 0.5;
}

.nav-container {
  height: 120px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  z-index: 1;
}

.nav-center {
  flex: 1;
  justify-content: center;
}

.nav-left {
  flex: 0 0 auto;
}

.nav-right {
  flex: 0 0 auto;
  gap: 15px;
}

.nav-left,
.nav-center,
.nav-right {
  display: flex;
  align-items: center;
}

.logo {
  display: block;
  width: 162.2px;
  height: 48px;
  background-image: url('/assets/img/logo.svg');
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  text-indent: -9999px;
}


.site-header .main-menu {
  display: flex;
  gap: 20px;
  list-style: none;
}

.main-menu li a {
  font-family: 'Lato', sans-serif;
  font-weight: 500;
  font-size: 16px;
  color: #2C2C2C;
  padding: 0px 16px;
  cursor: pointer;
  text-decoration: none;
}

.main-menu li a:hover,
.main-menu li.active>a {
  color: #FA6030;
}

.btn-contact {
  color: #FFFFFF;
  border: 1px solid #FFFFFF;
  background: linear-gradient(90deg, #FA6030 0%, #FFC876 100%);
  cursor: pointer;
  text-decoration: none;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 10px 16px;
}

.btn-contact:hover {
  color: #FA6030;
  border-color: #2C2C2C33;
  background: none;
}

.burger {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 25px;
  height: 15px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  z-index: 1001;
  transition: transform 0.3s ease;
}

.burger span {
  display: block;
  height: 3px;
  width: 100%;
  background-color: #333;
  border-radius: 2px;
  transition: all 0.3s ease;
  transform-origin: center;
}

.burger.open span:nth-child(1) {
  transform: rotate(45deg) translate(4px, 4px);
}

.burger.open span:nth-child(2) {
  opacity: 0;
}

.burger.open span:nth-child(3) {
  transform: rotate(-45deg) translate(4px, -4px);
}

@media (max-width: 1100px) {
  .burger {
    display: flex;
  }

  .btn-contact {
    font-size: 14px;
  }

  .logo {
    width: 150px;
    height: 40px;
  }

  .nav-container {
    padding: 0;
  }

  #mainMenu {
    display: none;
    flex-direction: column;
    background: #fff;
    position: absolute;
    top: 100%;
    right: 0;
    width: 100%;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    z-index: 1000;
  }

  #mainMenu.active {
    display: flex;
  }

  .site-header .main-menu {
    display: block;
    padding: 0;
  }

  .site-header .main-menu li {
    margin-bottom: 5px;
  }

  .site-header {
    padding: 0 20px;
    position: relative;
    z-index: 1000;
  }

  .footer-top.container {
    padding: 20px 20px 30px 20px;
  }

  h3.company-name {
    margin-top: 0;
  }
}

@media (max-width: 1024px) {
  .site-header .main-menu {
    gap: 10px;
  }
}