.body {
    display: block;
    margin: 0;
    padding: 0;
    background-color: var(--clr-blue2);
}

.header {
    background-color: var(--clr-green);
    position: sticky;
    top: 0;
    z-index: 1;
}

.block-breadcrumbs{
    width: 1500px;
    margin: 30px auto;
}

.header__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: 0 auto;
    padding: 5px;
    width: 1500px;
}

.header-inner__logo{
    display: flex;
    gap: 35px;
    align-items: center;
}

.header-inner__icons{
    gap: 50px;
    display: flex;
    flex-direction: row-reverse;
    align-items: center;
}

li{
    transition: 0.5s;
}

li:hover{
    background-color: var(--clr-green);
}

.nav {
    background-color: var(--clr-green50);
    justify-content: center;
    display: flex;
}

.nav__menu {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 1500px;
    list-style: none;
    padding-left: 0;
    margin: 0;
}

.nav-menu__item {
    cursor: pointer;
    padding: 16px;
}

.quantity_products{
    position: absolute;
    top: 0;
    right: 0;
}

.logo {
    height: 50px;
}

.logo:hover, .icon70:hover, .icon60:hover, .icon50:hover, .icon40:hover, .icon_burger:hover {
    filter: hue-rotate(320deg);
   }

.icon-search{
    width: 30px;
    height: 30px;
}

.icon60, .icon-top{
    height: 60px;
    width: 60px;
}

.icon50 {
    height: 50px;
    width: 50px;
}

.icon40 {
    height: 40px;
    width: 40px;
}

.header-search{
    position: relative;
}

.search_input{
    padding: 7px 7px 7px 7px;
    border-radius: 10px;
    width: 500px;
    border: 2px solid var(--clr-grey);
    font-size: 20px;
    outline: none;
}

.search-input__main{
    padding: 10px 50px 10px 10px;
    border-radius: 10px;
    width: calc(100% - 100px);
    border: 2px solid var(--clr-grey);
    font-size: 24px;
    outline: none;
    display: none;
}

.search-label{

}

.search_icon{
    width: 35px;
    position: absolute;
    padding: 0;
    margin: 0;
    border: 0;
    height: 45px;
    background: transparent;
    cursor: pointer;
}

.search-icon__main{
    width: 35px;
    position: absolute;
    padding: 0;
    margin: 0;
    border: 0;
    height: 55px;
    background: transparent;
    cursor: pointer;
    right: 30px;
    display: none;
}

.search_icon{
    right: 10px;
}

.search-circle_icon{
    width: 40px;
    position: absolute;
    top: 0;
    right: 0;
}

.search-circle_icon{
    display: none;
    width: auto;
}

.footer {
    background-color: var(--clr-green);
    margin-top: 30px;
    padding: 15px;
}

.footer__inner {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    gap: 15px;
    width: 1500px;
    margin: 0 auto;
}

.footer__nav, .footer__contacts {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.margin20 {
    margin: 20px;
}
 main {
    min-height: 100vh;
 }



 .burger-checkbox {
  position: absolute;
  visibility: hidden;
  background: var(--clr-white);
}
.burger {
  position: relative;
  z-index: 1;
  cursor: pointer;
  border: none;
  background: transparent;
  width: 35px;
  height: 30px;
  display: none;
}
.burger::before,
.burger::after {
  content: '';
  left: 0;
  position: absolute;
  display: block;
  width: 110%;
  height: 4px;
  border-radius: 10px;
  background: var(--clr-darkgreen);
}
.burger::before {
  top: 0;
  box-shadow: 0 13px 0 var(--clr-darkgreen);
  transition: box-shadow .3s .15s, top .3s .15s, transform .3s;
}
.burger::after {
  bottom: 0;
  transition: bottom .3s .15s, transform .3s;
}
.burger-checkbox:checked + .burger::before {
  top: 13px;
  transform: rotate(45deg);
  box-shadow: 0 6px 0 rgba(0,0,0,0);
  transition: box-shadow .15s, top .3s, transform .3s .15s;
  left: -5px;
}
.burger-checkbox:checked + .burger::after {
  bottom: 13px;
  transform: rotate(-45deg);
  transition: bottom .3s, transform .3s .15s;
  left: -5px;
}
.menu-list {
  top: 64px;
  left: 0;
  position: absolute;
  display: none;
  padding:0 10px;
  margin: 0;
  background: var(--clr-green70);
  list-style-type: none;
  transform: translateX(-100%);
  transition: .3s;
  width: calc(100% - 20px);
}
.menu-item {
  display: block;
  padding:20px 8px;
  color: var(--clr-black);
  text-align: center;
  text-decoration: none;
  border-top: 1px solid var(--clr-grey);
}
.menu-item:hover {
  background: rgba(255,255,255,.2)
}
.burger-checkbox:checked ~ .menu-list {
  transform: translateX(0);
}

.back-to-top {
  position: fixed;
  bottom: 20px;
  right: 20px;
}

.icon-top{
}

.icon-top:hover {
    filter: hue-rotate(20deg);
   }

.search-main{
    position: relative;
}

.marquee {
    background: #ffcc00;
    color: #000;
    padding: 10px 0;
    white-space: nowrap;
    overflow: hidden;
    font-family: Arial, sans-serif;
    font-weight: bold;
        }
.marquee span {
    display: inline-block;
    padding-left: 100%; /* Начальное положение за пределами экрана */
    animation: marquee 15s linear infinite;
        }