*{
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-family: 'Montserrat',sans-serif;
}
a {
    text-decoration: none;
    
}
ul{
    list-style: none;
}

.header{
    position: absolute;
    top: 0;
    left: 0;
    width: 100vw;
    display: flex;
    justify-content: space-between;
    padding: 2vh 10vw;
    text-transform: uppercase;
    background-color: transparent;
    z-index: 2;
    
   
}
.header .header__logo a{
    color: #fff;
}
.header__main_link ul{
 display: flex;
 column-gap: 20px;
}

.header__main_link ul li a{
    font-size: 12px;
    font-weight: 500;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: var(--header-element-color, #000);
    padding: 4px 6px;
    position: relative;
    color: #fff;
   
}
.header__main_link ul li:hover a::after{
    position: absolute;
    content: '';
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 1px;
    background-color: #000;
}
.header__right_info {
    display: flex;
    column-gap: 20px;
}
.header__right_info a {
    color: #fff;
}

.header__right_info a i {
    stroke: #000 !important;
}

.header__right_info .cart {
    position: relative;
}
.header__right_info .cart .cart_count {
    position: absolute;
    display: flex;
    justify-content: center;
    align-items: center;
    top: -5px;
    left: 10px;
    width: 15px;
    height: 15px;
    font-size: 10px;
    color: #fff;
    font-weight: 700;
    border-radius: 50%;
    background-color: #ff0000bf;
}
main{
    position: relative;
    z-index: 1;
    margin-bottom: 560px;
    background-color: #fff;
  }