.no-scroll {
  overflow: hidden;
}

header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  padding: 20px 0;
  z-index: 200;
  background: #E5F2F2;
  transition: box-shadow 0.3s ease;
  transform: translateZ(0);
  border-bottom: 1px solid rgba(238, 238, 238, 0);
}

header.scrolled {
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
}

.header .container {
  position: relative;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: 1210px;
  width: 100%;
  box-sizing: border-box;
  margin: 0 auto;
  padding: 0 10px;
}

.header-inner > * { min-width: 0; }

.header .menu {
  margin: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: 865px;
  list-style: none;
  gap: 31px;
  padding: 0;
}

.header .menu li a {
  position: relative;
  font-size: 19px;
  text-decoration: none;
  color: #000;
  font-weight: 400;
}

.header .menu li a::before {
  content: "";
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 0;
  height: 3px;
  background: #B35A12;
  transition: all 0.5s ease;
}

.header .menu li a:hover::before {
  width: 100%;
  background: #B35A12;
}

.header .menu li a.active::before {
  width: 100%;
  background: #0B7578;
}

.header .contacts {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin: 0;
}

.header .contacts .phone {
  font-size: 20px;
  color: #B35A12;
  font-weight: 500;
  text-decoration: none;
}

.header .contacts .phone:hover {
  color: #0B7578;
}

.color-lk {
  color: #0B7578;
}

.mobile-logo img {
  width: 60px;
  height: auto;
  shape-rendering: geometricPrecision;
  display: block;
  vertical-align: middle;
}

.mmenu-btn {
  display: none;
  justify-content: center;
  align-items: center;
  width: 20px;
  height: 38px;
  cursor: pointer;
  transform: none;
}

.mmenu-btn::before,
.mmenu-btn::after {
  content: '';
  position: absolute;
  left: 0;
  height: 3px;
  background: #B35A12;
}

.mmenu-btn::before {
  top: 10px;
  width: 16px;
  box-shadow: 0 8px 0 #B35A12;
}

.mmenu-btn::after {
  bottom: 10px;
  width: 24px;
}

.mobile-menu {
  position: fixed;
  top: 0;
  right: 0;
  width: 80%;
  height: 100vh;
  background: #fff;
  z-index: 1000;
  transform: translateX(100%);
  transition: transform 0.3s ease, opacity 0.3s ease;
  opacity: 0;
  visibility: hidden;
  overflow-y: auto;
  padding: 10px;
}

.mobile-menu.active {
  transform: translateX(0);
  opacity: 1;
  visibility: visible;
}

.mobile-menu .top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 30px;
}

.mobile-menu .top .button {
  width: 28px;
  height: 28px;
  cursor: pointer;
  margin-left: auto;
  position: relative;
}

.mobile-menu .top .button::before,
.mobile-menu .top .button::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 20px;
  height: 2px;
  background: #000;
}

.mobile-menu .top .button::before {
  transform: translate(-50%, -50%) rotate(45deg);
}

.mobile-menu .top .button::after {
  transform: translate(-50%, -50%) rotate(-45deg);
}

.mobile-menu .list {
  display: flex;
  flex-direction: column;
  gap: 15px;
  list-style: none;
  text-align: center;
  padding: 0;
}

.header-mobile-contact {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin-top: 40px;
  padding-bottom: 20px;
  gap: 10px;
  font-weight: 500;
}

.title-header-small {
  margin-top: 10px;
  font-size: 11px;
  color: #333;
  text-transform: uppercase;
  text-align: center;
}

.header-phone {
  font-size: 20px;
  color: #B35A12;
  display: flex;
  flex-direction: column;
  gap: 15px;
  list-style: none;
  text-align: center;
  padding: 0;
}

.header-phone:hover {
  color: #0B7578;
}

.header-email {
  font-size: 20px;
  color: #B35A12;
  display: flex;
  flex-direction: column;
  gap: 15px;
  list-style: none;
  text-align: center;
  padding: 0;
}

.header-email:hover {
  color: #0B7578;
}

.mobile-menu .list li a {
  font-size: 18px;
  color: #333;
  text-decoration: none;
  padding: 10px 0;
}

.contacts-items {
  display: flex;
  align-items: center;
}

.contacts-item {
  display: flex;
  flex-direction: column-reverse;
  justify-content: center;
}

@media (max-width: 1210px) {
  header {
    padding: 12px 0;
    min-height: 60px;
    width: 100%;
    box-sizing: border-box;
  }
  
  .header-inner {
    padding: 0 20px;
    justify-content: space-between;
    flex-wrap: nowrap;
  }
  
  .mmenu-btn {
    display: flex;
    position: relative;
  }
  
  .header .menu {
    display: none;
  }

  .header .contacts {
    justify-content: center;
    gap: 10px;
  }

  .header .contacts .phone {
    display: none;
  }
  
  .mobile-logo {
    display: block;
    width: 60px;
    margin-left: 0;
    margin-right: auto;
  }

  .mobile-logo img {
    display: block;
    width: 60px;
  }
}

@media (max-width: 600px) {
  header {
    background: #E5F2F2;
  }
  
  .mmenu-btn {
    width: 20px;
    height: 38px;
  }
	
}

@media (max-width: 320px) {
  .mobile-menu {
    width: 100%;
  }
  
  .mmenu-btn {
    width: 20px;
    height: 38px;
  }
}

.social-icon {
  width: 60%;
  height: auto;
  display: block;
  margin: 0 auto;
}

.telegram-icon {
  max-width: 100px;
  max-height: 100px;
}

.social-link {
  display: inline-block;
  vertical-align: middle;
}

@media (max-width: 1210px) { 
  .mmenu-btn {
    order: 3;
  }
  
  .header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
  }
  
  .mobile-telegram .telegram-icon {
    width: 32px;
    height: auto;
  }
}