* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  a {
    text-decoration: none;
  }
  
  body {
    color: white; /* СОТРИ ПОТОМ ТАК КАК ТЫ ПОСТАВИЛ ЧТОБЫ НА ЧЁРНОМ ФОНЕ ВИДЕТЬ ЧТО ПРОИСХОДИТ */
  }
  
  .home_header {
    position: fixed;
    top: 0vh;
  
    color: red;
    
  
    z-index: 110;
  
  }
  
  .home_header_inner {
    width: 100vw;
    height: 50px;
    padding-top: 0;
  
    /* margin-top: -100px; */
    display: flex;
  
    background: black;
  
    transition: 1s ease all;
  
    /* border: 1px solid white; */
  }
  
  .header_left_side {
    position: relative;
  
    width: 40%;
  
    /* border: 1px solid red; */
  }
  
  .header_middle_side {
    position: relative;
  
    width: 20%;
  
    padding: 20px 0px 30px 0px;
  
    display: flex;
    justify-content: center;
  
    /* border: 1px solid green; */
    
  }
  
  .header_middle_side img {
  
    height: fit-content;
  
    /* border: 1px solid yellow; */
  
   
  }
  
  .header_right_side {
    position: relative;
  
    width: 40%;
  
    padding: 2px 8% 0px 4%;
    margin-left: 0%;
  
    display: flex;
    justify-content: space-around;
  
    align-items: center;
  
  
  
   
  }
  
  .header_right_side div{
    margin-right: 4%;
  }
  
  .header_right_side a{
    text-decoration: none;
    color: white;
  
    font-family: "Averta";
    font-weight: bold;
    font-size:13px ;
    letter-spacing: 2px;
    
  }
  /*-------------------PAGE SLIDER-------------------*/
  
  .slider{
    position: relative;
    top: 0;
    width: 100%;
    height: 300vh;
    overflow: hidden;
  }
  
  .slides{
    width: 500%;
    height: 100vh;
    display: flex;
  }
  
  .slides input{
    display: none;
  }
  
  .slide{
    width: 20%;
    transition: 1s;
 
  
    color: white;
    
  }
  
  /*css for manual slide navigation*/
  
  .navigation-manual{
    position: absolute;
    width: 100%;
    margin-top: 0;
    top: 280vh;
    display: flex;
    justify-content: center;

  
  }
  
  .manual-btn{
    border: 1px solid #FFC20E;
    padding: 5px;
    border-radius: 10px;
    cursor: pointer;
    transition: 1s;
  }
  
  .manual-btn:not(:last-child){
    margin-right: 40px;
  }
  
  .manual-btn:hover{
    background: #FFC20E;
}
  
  #radio1:checked ~ .first{
    margin-left: 0;
  }
  
  #radio2:checked ~ .first{
    margin-left: -20%;
  }
  
  #radio3:checked ~ .first{
    margin-left: -40%;
  }
  
  #radio4:checked ~ .first{
    margin-left: -60%;
  }
  
  /*css for automatic navigation*/
  
  .navigation-auto{
    position: absolute;
    display: flex;
    width: 100%;
    justify-content: center;
    margin-top: 0px;
    top: 280vh;

  }
  
  .navigation-auto div{
    border: 1px solid #FFC20E;
    padding: 5px;
    border-radius: 10px;
    transition: 1s;
  }
  
  .navigation-auto div:not(:last-child){
    margin-right: 40px;
  }
  
  #radio1:checked~.auto-btn1{
    background: #FFC20E;
  }
  
  #radio1:checked ~ .navigation-auto .auto-btn1{
    background: #FFC20E;
}
  
  #radio2:checked ~ .navigation-auto .auto-btn2{
    background: #FFC20E;
}
  
  #radio3:checked ~ .navigation-auto .auto-btn3{
    background: #FFC20E;
}
  
  #radio4:checked ~ .navigation-auto .auto-btn4{
    background: #FFC20E;
}
        
  
  
  
  /*-----------------OUR WINES PAGE------------------*/
  
  .our_wines_block {
    padding: 15vh 0px 0px 0px;
  
    background-color: #120f05;

  }
  
  .our_wines_title {
    display: flex;
    justify-content: center;
  }
  
  .our_wines_title h2 {
    color: #ffc20e;
    padding-bottom: 3vh;
  
    font-size: 45px;
    font-family: "UkranianLazurski";
    letter-spacing: 11px;
  
    border-bottom: 2px solid #ffc20e;
  }
  
  /* PRODUCTS: */
  
  .products_block {
    padding: 20vh 0px 0px 0px;
 
  }
  
  .product_row {
    display: flex;
  
    padding: 0px 0px 20vh 0px;
  }
  
  .left_product {
    width: 35%;
  
    padding: 0px 10vw 0px 0px;
  
    display: flex;
    justify-content: flex-end;
  
    text-align: center;

  }
  
  .left_product img {
    margin: 0px 0px 50px 0px;
  }
  
  .middle_product {
    width: 30%;
  
    display: flex;
    justify-content: center;
  
    text-align: center;
  }
  
  .middle_product img {
    margin: 0px 0px 50px 0px;
  }
  
  .right_product {
    width: 35%;
  
    padding: 0px 0px 0px 10vw;
  
    display: flex;
    justify-content: flex-start;
  
    text-align: center;
  }
  
  .right_product img {
    margin: 0px 0px 50px 0px;
  }
  
  figcaption {
    font-size: 15px;
    font-family: "Averta";
    letter-spacing: 2.5px;
  }
  