* {
  box-sizing: border-box;
}

body {
    background-image: url(../../images/2.png);
    margin: 0;
  }
  
  html {
    scroll-behavior: smooth;
  }
  
  header {
    width: 100%;
    height: auto;
  }

  main {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .topic {
    color: rgb(226, 205, 180);
    font-size: 23px;
    text-align: center;
  }
  
  .content {
    font-family: "Arial", sans-serif;
    font-size: 17.4px;
    font-weight: lighter;
    color: rgba(255, 255, 255, 0.774);
    letter-spacing: 1px;
    text-align: left;
    padding-left: 20px;
    padding-right: 20px;
    margin: 25px 0 70px 0;
    line-height: 1.4;
  }
  
  .content a {
    color: #a780cb;
  }


  
  
  /* Меню шапки */
  .menu-main {
    list-style: none;
    margin: 40px 0 15px;
    padding: 23px 0 5px;
    text-align: center;
    background: rgba(255, 255, 255, 0.3);
  }
  
  .menu-main li {
    display: inline-block;
  }
  
  .menu-main li:after {
    content: "|";
    color: black;
    display: inline-block;
    vertical-align: top;
  }
  
  .menu-main li:last-child:after {
    content: none;
  }
  
  .menu-main a {
    text-decoration: none;
    font-family: "Arial", sans-serif;
    letter-spacing: 2px;
    position: relative;
    padding-bottom: 14px;
    margin: 0 34px 0 30px;
    font-size: 16px;
    text-transform: uppercase;
    display: inline-block;
    transition: color 0.2s;
  }
  
  .menu-main a,
  .menu-main a:visited {
    color: black;
  }
  
  .menu-main a.current,
  .menu-main a:hover {
    color: rgb(65, 40, 16);
  }
  
  .menu-main a:before,
  .menu-main a:after {
    content: "";
    position: absolute;
    height: 2.5px;
    top: auto;
    right: 50%;
    bottom: -5px;
    left: 50%;
    background: rgb(65, 40, 16);
    transition: 0.8s;
  }
  
  .menu-main a:hover:before,
  .menu-main .current:before {
    left: 0;
  }
  
  .menu-main a:hover:after,
  .menu-main .current:after {
    right: 0;
  }
  
  @media (max-width: 550px) {
    .menu-main {
      padding-top: 0;
    }
  
    .menu-main li {
      display: block;
    }
  
    .menu-main li:after {
      content: none;
    }
  
    .menu-main a {
      padding: 25px 0 20px;
      margin: 0 30px;
    }
  }
  /* Конец меню шапки */
  

  
  /* Слайд-шоу карусель */
  
  
  /* Slideshow container */
  .slideshow-container {
    max-width: 1000px;
    min-width: 250px;
    position: relative;
    margin: auto;
    margin: 0px 30px 0 30px;
  }
  
  /* Hide the images by default */
  .hide-slide, .hidden-photos {
    display: none;
  }
  
  .foto {
    border-radius: 20px;
    width: 100%;
    border-style: groove;
    border-width: 15px;
    border-color: gray;
  }
  
  /* Next & previous buttons */
  .prev,
  .next {
    cursor: pointer;
    position: absolute;
    top: 45%;
    width: auto;
    margin-top: -16px;
    padding: 10px;
    color: white;
    font-weight: bold;
    font-size: 3.5vw;
    transition: 0.6s ease;
    border-radius: 0 3px 3px 0;
  }
  
  @media (max-width: 572px) {
  .prev,
  .next {
    font-size: 20px;
  }
  }
  
  /* Position the "next button" to the right */
  .next {
    right: 0;
    border-radius: 3px 0 0 3px;
  }
  
  /* On hover, add a black background color with a little bit see-through */
  .prev:hover,
  .next:hover {
    background-color: rgba(0, 0, 0, 0.8);
  }
  
  /* Caption text */
  .text {
    color: #f2f2f2;
    font-size: 15px;
    padding: 8px 12px;
    position: absolute;
    bottom: 8px;
    width: 100%;
    text-align: center;
  }
  
  /* Number text (1/3 etc) */
  .numbertext {
    color: #f2f2f2;
    font-size: 12px;
    padding: 8px 12px;
    position: absolute;
    top: 0;
  }
  
  .active,
  .dot:hover {
    background-color: #717171;
  }
  
  /* Fading animation */
  .fade {
    -webkit-animation-name: fade;
    -webkit-animation-duration: 1.5s;
    animation-name: fade;
    animation-duration: 1.5s;
  }
  
  @-webkit-keyframes fade {
    from {
      opacity: 0.4;
    }
  
    to {
      opacity: 1;
    }
  }
  
  @keyframes fade {
    from {
      opacity: 0.4;
    }
  
    to {
      opacity: 1;
    }
  }
  
  /* Конец слайд-шоу карусель */
  
  /* В наличии */
  
  .images {
    padding: 0;
  }
  
  .images1 img {
    width: 300px;
    border-radius: 10px;
    border-style: solid;
    border-width: 5px;
    border-color: rgba(255, 255, 255, 0.527);
    margin-top: 40px;
  }
  
  .images2 img {
    width: 300px;
    height: 120px;
    border-radius: 10px;
    border-style: solid;
    border-width: 5px;
    border-color: rgba(255, 255, 255, 0.527);
  }
  
  .visible {
    cursor: pointer;
    transition: transform 0.45s ease;
  }
  
  .visible:hover {
    transform: scale(1.03);
  }
  
  li {
    list-style: none;
  }

  
  #available {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-evenly;
    gap: 50px;
  }
  
  #textvnal {
    text-align: center;
    color: rgba(255, 255, 255, 0.877);
    font-family: "Arial", sans-serif;
    font-weight: normal;
    letter-spacing: 1px;
    font-size: 22px;
  }
  
  .textproduct {
    width: 300px;
    text-align: center;
    font-family: "Arial", sans-serif;
    font-size: 17px;
    color: white;
    font-weight: normal;
    background-color: rgba(255, 255, 255, 0.45);
    border-radius: 2px;
    color: black;
    margin-top: 5px;
  }
  
  .video-block {
    margin-top: 100px;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  
  .video-title {
    text-align: center;
    color: rgba(255, 255, 255, 0.877);
    font-family: "Arial", sans-serif;
    letter-spacing: 1px;
    font-weight: normal;
    font-size: 17px;
  }
  
  video {
    width: 300px;
    height: 200px;
    border: rgba(255, 255, 255, 0.527) solid 3px;
    border-radius: 10px;
    background-color: black;
  }
  
  footer {
    display: flex;
    flex-direction: column;
    margin-top: 100px;
    border-top: 3px ridge rgba(255, 255, 255, 0.76);
  }
  
  .footer-block1 {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-evenly;
    gap: 50px;
  }
  
  .footer-date {
    margin-top: 30px;
    text-align: center;
    font-size: 14px;
  }
  
  #contacts {
    padding: 10px;
    width: 300px;
    margin-top: 5px;
    margin-bottom: 10px;
    font-family: "Arial", sans-serif;
    font-weight: normal;
    font-size: 12.5px;
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    align-items: center;
    row-gap: 12px;
    background-color: rgba(255, 255, 255, 0.25);
    border-radius: 15px;
  }
  
  #contactsjump {
    font-size: 18px;
  }
  
  #contacts a {
    font-size: 14.5px;
  }
  
  #contacts h3 {
    margin-top: 5px;
    margin-bottom: 5px;
    display: flex;
    align-items: center;
  }
  
  #contacts h2 {
    margin: 5px;
  }
  
  .center {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: rgba(12, 12, 12, 0.8);
  }
  
  .contacts-icon-img {
    width: 22px;
  }

  .vk-icon-img {
    width: 25px;
  }
  
  .comment {
    width: 300px;
  }
  
  #reviews {
    text-align: center;
    color: rgba(255, 255, 255, 0.877);
    font-family: "Arial", sans-serif;
    font-weight: normal;
    letter-spacing: 1px;
    font-size: 19px;
  }
  
  .text-review {
    width: 300px;
    text-align: center;
    color: rgba(255, 255, 255, 0.877);
    font-family: "Arial", sans-serif;
    font-weight: normal;
    letter-spacing: 0.5px;
    font-size: 16px;
  }
  
  .prodano {
    color: rgb(15, 133, 15);
  }

  .div-language {
    text-align: center;
    color:rgba(255, 255, 255, 0.88);
    margin-top: 15px;
    font-size: 16px;
  }
  
  .div-language a {
    text-decoration: none;
    background-color:rgba(255, 255, 255, 0.88);
    border-radius: 3px;
    color: black;
    font-size: 17px;
    padding: 0px 5px 2px 5px;
    margin-right: 3px;
  }
  
  .div-language a:hover {
    background-color: rgba(196, 234, 171, 0.877);
  }
  
  .span-active-lang {
    text-decoration: none;
    background-color:rgba(196, 234, 171, 0.877);
    border-radius: 3px;
    color: black;
    font-size: 17px;
    padding: 0px 5px 2px 5px;
    margin-right: 3px;
  }
  