*{
  margin:0;
  padding:0;
  box-sizing:border-box;
}
.no-select {
  -webkit-user-select: none; 
  -moz-user-select: none; 
  -ms-user-select: none; 
  user-select: none; 
  pointer-events: none;
}
header{
  position: sticky;
  width: 100%;
  top:0;
  background-color:#363636;
  color:#fff;
  display:flex;
  align-items:center;
}
header a{
  color:#fff;
  text-decoration:none;
  padding:10px;
}
header img{
  width:50px;
  height:50px;
}
header h1{
  padding: 5px;
}
nav{
  display: none;
}
section, Home, img{
  width:100%;
  height:100%;
}
section, Home{
  background-color:#363636;
  color:#fff;
  align-items: center;
  text-align: center;
  justify-content: center;
  font-size: 30px;
}
section2, Servises{
  text-align: center;
  justify-content: center;
  height: 300px;
  font-size: 30px;
}
section3,Reviews, form{
  color: #ffffff;
  justify-content: center;
  text-align: center;
  background: #363636;
}
section4 {
  padding: 20px;
  text-align: center;
}
.product-container {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 20px;
  max-width: 1200px;
  margin: 0 auto;
}
.photo {
  margin: 0 auto;
  max-width: 70%;
}
.product-card {
  background-color: #ffffff;
  border-radius: 10px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  padding: 20px;
  width: 300px;
  text-align: center;
  font-size: 30px;

}
.product-card img{
  width: 100%;
  height: auto;
  margin-bottom: 10px;
}
a{
  color:#bd0000;
  text-decoration:none;
}
table2{
  color: #000;
  text-align: center;
  font-size: 20px;
}
input{
  color: #000000;
  background: #ffffff;
  font-size: 13px;
  border: none;
  padding: 10px 20px;
  cursor: pointer;
  border-radius: 5px;
  margin-bottom: 10px;
  outline: 2px solid #252a2e;
}
button{
  color: #fff;
  background: #252a2e;
  font-size: 20px;
  border: none;
  padding: 10px 20px;
  cursor: pointer;
  border-radius: 5px;
  margin-bottom: 10px;
}
h1{
  font-size: 30px;
  text-align: center;
}
footer{
  position: relative;
  left: 0;
  width: 100%;
  background: #363636;
  color: #ffffff;
  text-align: center;
  font-size: 30px;
}
footer a {
  color:#ffffff;
  text-decoration: none;
  font-size: 25px;
  display: block;
  margin-bottom: 10px;
}
html {
  scroll-behavior: smooth;
}
.slideshow {
  height: 50vw; 
  overflow: hidden;
  position: relative;
  display: flex;
  justify-content: center;
}
.slide {
  width: 95%;
  height:100%;
  position: absolute;
  animation: slideShow 12s infinite;
  opacity: 0;
}
.slide img {
  width:100%;
  height: auto; 
  object-fit: contain; 
}
.slide:nth-child(1) {
  animation-delay: 0s;
}
.slide:nth-child(2) {
  animation-delay: 4s;
}
.slide:nth-child(3) {
  animation-delay: 8s;
}
body2{
  zoom: 130%;
  background-color: #ffffff;
}
form, label, input{
  text-align: center;
  justify-content: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.player-card {
  display: flex;
  align-items: center;
  max-width: 800px;
  padding: 10px;
  border-radius: 8px;
  background-color: #252a2e;
  box-sizing: border-box;
}
.custom-play-button {
  background-color: #fff;
  border: none;
  outline: none;
  cursor: pointer;
  padding-right: 15px;
  flex-shrink: 0;
}
.custom-play-button img {
  width: 30px;
  height: 30px;
}
.waveform-container {
  flex-grow: 1;
  width: 100%;
  position: relative;
}
.waveform {
  width: 100%;
  height: 80px;
}
@keyframes slideShow {
  0% {opacity: 0;}
  8% {opacity: 1;}
  33% {opacity: 1;}
  41% {opacity: 0;}
  100% {opacity: 0;}
}
@media screen and (max-width: 1400px){
  header{
    position: sticky;
    width: 100%;
    top:0;
    background-color:#363636;
    color:#fff;
    display:flex;
    align-items:center;
    justify-content: space-between;
    zoom: 180%;
    height: var(-- header-height);
  }
  .desktop-menu{
    display: none;
  }
  header h1{
    font-size:25px;
    margin-bottom: 2px;
    text-align: center;
  }
  .nav {
    position: sticky;
    display: flex;
    right: 10px;
  }
  .nav-toggle {
    display: none;
  }
  .nav-toggle-label {
    display: inline-block;
    cursor: pointer;
  }
  .nav-toggle-label span {
    display: block;
    width: 30px;
    height: 4px;
    background-color: #fff;
    margin-bottom: 4px;
    transition: 0.3s;
  }
  .nav-toggle-label span:before,.nav-toggle-label span:after {
    content: "";
    display: block;
    width: 30px;
    height: 4px;
    background-color: #ffffff;
    position: absolute;
    transition: 0.3s;
    text-align: center;
  }
  .nav-toggle-label span:before {
    top: -10px;
  }
  .nav-toggle-label span:after {
    top: 10px;
  }
  .nav-toggle:checked + .nav-toggle-label span {
    background-color: transparent;
  }
  .nav-toggle:checked + .nav-toggle-label span:before {
    transform: rotate(45deg);
    margin-top: 20px;
  }
  .nav-toggle:checked + .nav-toggle-label span:after {
    transform: rotate(-45deg);
  }
  .nav-menu {
    list-style:none;
    display: none;
    flex-direction: column; 
  }
  .nav-menu a {
    color: #ffffff;
    text-decoration: none;
    width: 10px;
    text-align: center;
    position: relative; 
    height: 10px;
  }
  select{
    font-size:25px;
  }
  .nav-toggle:checked ~ .nav-menu {
    display: flex;
  }
  footer{
    position: relative;
    left: 0;
    width: 100%;
    background: #363636;
    color: #ffffff;
    text-align: center;
    font-size: 30px;
  }
  footer a {
    color:#ffffff;
    text-decoration: none;
    font-size: 30px;
    display: block;
    margin-bottom: 10px;
  }
  button{
    zoom: 150%;
  }
  .player-card {
    display: flex;
    align-items: center;
    max-width: 700px;
    padding: 5px;
    border-radius: 8px;
    background-color: #252a2e;
    box-sizing: border-box;
  }
  .custom-play-button {
    background-color: #fff;
    border: none;
    outline: none;
    cursor: pointer;
    padding-right: 15px;
    flex-shrink: 0;
  }
  .custom-play-button img {
    width: 20px;
    height: 20px;
    text-align: center;
    margin: 0 auto;
  }
  .waveform-container {
    flex-grow: 1;
    width: 100%;
    position: relative;
  }
  .waveform {
    width: 90%;
    height: 80px;
  }
}