html {
  scroll-behavior: smooth;
}

*{
  box-sizing: border-box;
}


body {
  display: flex;
  flex-direction: column;
  margin: 0;
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  font-size: 16px;
  background: #fff;
  color: rgba(41, 41, 41, 1); 
  line-height: 27px;
}

@media screen and (width: 1920px) {
  body {
    font-size: 25px;
    line-height: 40px;
  }
}

@media screen and (max-width: 1440px) {
  body {
    font-size: 20px;
    line-height: 35px;
  }
}

@media screen and (max-width: 576px) {
  body {
    font-size: 16px;
    line-height: 35px;
  }
}

/* Header */


.header {
  padding: 64px 120px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background: url('./images/header-bg.png') no-repeat;
  background-position:center;
  background-size: cover;
  height: 100vh;
  width: 100%;
}

@media screen and (max-width: 1024px) {

  .header {
    background: url('./images/header-bg.png') no-repeat;
    background-position: top center;
    padding: 64px 64px 40px;
  }
}

@media screen and (max-width: 576px) {

  .header {
    background: url('./images/header-bg-small.png') no-repeat;
    background-size: cover;
    padding: 32px 20px;
  }
  
}

.logo {
  height: 24px;
}

@media screen and (max-width: 576px) {

  .logo {
    height: 16px;
  }
  
}


.header-top {
  display: flex;
  justify-content: space-between;
}

.header-bottom {
  width: 45%;
}

@media screen and (width: 1920px) {
  .header-bottom {
    width: 40%;
}
}

@media screen and (max-width: 1024px) {
  .header-bottom {
    width: 50%;
}
}

@media screen and (max-width: 576px) {
  .header-bottom {
    width: 100%;
}
  .sound-waves {
    width: 32px;
  }
}

h1 {
  font-weight: 800;
  font-style: italic;
  font-size: 48px;
  margin: 40px 0 0;
  line-height: 48px;
}

@media screen and (width: 1920px) {
  h1 {
    font-size: 60px;
  }
}

@media screen and (max-width: 1024px) {

  h1 {
    font-size: 40px;
    margin: 20px 0 0 ;
  }
}

@media screen and (max-width: 576px) {

  h1 {
    font-size: 29px;
    margin: 20px 0 0 ;
    line-height: 30px;
  }
}

/* Menu */

.menu {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  transform: translateX(-100%);
  transition: transform 500ms;
  display: flex;
  flex-direction: column;
  padding: 64px 120px 30px;
  background: #fff;
  height: 100vh;
}

@media screen and (max-width: 1024px) {

  .menu {
    padding: 64px;
  }
}

@media screen and (max-width: 576px) {

  .menu {
    padding: 32px 20px;
  }
  
}

.menu:target{
  transform: translateX(0%);
}

.menu-top {
  display: flex;
  justify-content: space-between;
  height: 24px;
}


.menu ul {
  padding: 64px 0;
  margin: 0;
}

@media screen and (max-width: 576px) {

  .menu ul {
    padding: 36px 0;
  }
  
}

.menu li {
  list-style: none;
  text-transform: uppercase;
  padding: 15px 0;
  font-size: 22px;
  line-height: 22px;

}

.menu li a {
  text-decoration: none;
  color: rgba(41, 41, 41, 1);
  font-weight: 700;
}

@media screen and (width: 1920px) {
  .menu li a {
    font-size: 27px;
  }
}

.menu li a:hover {
  text-decoration: underline;
}

/* Main */

main {
  margin: 0 auto;
  width: 100%;
  text-align: center;
  background:#fff ;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

main a {
  color: rgba(41, 41, 41, 1);
  font-weight: bold;
  text-decoration: none;
}

main a:hover {
  text-decoration: underline;
}

h2 {
  font-size: 48px;
  font-weight: 700;
  margin: 20px auto;
  line-height: 48px;
  width: 50%;
}

@media screen and (width: 1920px) {
  h2 {
    font-size: 55px;
  
  }
}

@media screen and (max-width: 1440px) {
  h2 {
    width: 45%;
  
  }
}

@media screen and (max-width: 1024px) {
  h2 {
    font-size: 40px;
    width: 75%;
  }
}

@media screen and (max-width: 576px) {
  h2 {
    font-size: 32px;
    width: 85%;
    padding: 0px 0 10px;
    margin: 0 auto;
  }
}


section {
  padding: 60px 0;
  width: 85%;
  margin: 0 auto;

}

@media screen and (max-width: 576px) {
  section {
    padding: 120px 0 0;
  
  }
}

.products {
  display: flex;
  justify-content:space-between;
  align-items: stretch;
  flex-wrap: wrap;
  align-content:center;
  width: 100%;
  margin:40px auto;
}

@media screen and (max-width: 1024px) {
  .products {
    flex-direction: column;
  }
}

@media screen and (max-width: 576px) {
  .products {
    flex-direction: column;
  }

  .products img {
    width: 80%;
  }
}

.product p {
  margin: 7px 0;
  text-align: left;
}

.categories {
  display: flex;
  flex-direction: column;
  margin: 60px auto;
  justify-items: center;
}

@media screen and (max-width: 576px) {
  .categories {
    
    margin: 0px auto;
  }
}


.gallery-content {
  display: flex;
  gap: 3%;
  padding: 30px 0;
}


@media screen and (max-width: 576px) {
  .gallery-content {
    gap: 4%;
    padding: 7px 0;
  }

}

.pic-big {
  width: 65%;
}

@media screen and (max-width: 576px) {
  .pic-big {
    width: 48%;
    object-fit: cover;
  }
}

.pic-small {
  width: 32%;
}

@media screen and (max-width: 576px) {
  .pic-small {
    width: 48%;
    object-fit: cover;
  }
}

h3 {
  text-align: left;
  
}
@media screen and (max-width: 576px) {
  h3 {
    font-size: 16px;
    
  }
}

.container-1 {
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  text-align: left;
  padding: 30px 0px;
}

.container-1 h2 {
  margin: 0;
  width: 40%;
}

.info {
  width: 43%;
}

@media screen and (width: 1920px) {
  .container-1 h2 {
    margin: 0;
    width: 30%;
  }

  .info {
    width: 47%;
  }
}

@media screen and (max-width: 1440px) {
  .container-1 h2 {
    margin: 0;
    width: 30%;
  }

  .info {
    width: 50%;
  }

}

@media screen and (max-width: 1024px) {
  .container-1 h2 {
    margin: 0;
    width: 50%;
  }

  .info {
    width: 47%;
  }

}

@media screen and (max-width: 576px) {

  .container-1 {
    display: block;
  }

  .container-1 h2 {
    margin: 0;
    width: 100%;
  }

  .info {
    width: 100%;
  }

}

.container-1 ul {
  margin: 0;
  padding: 0;
}

.container-1 li {
  list-style: none;
  margin: 0;
  padding: 5px 0;
  font-weight: 700;
}

.container-1 li a {
  color: rgba(41, 41, 41, 1);
  text-decoration: none;
}

.container-1 li a:hover {
  text-decoration:underline;
}


footer {
  position: sticky;
  bottom: 0;
  z-index: -1;
  background: url('./images/pic-7.png') center no-repeat;
  background-size: cover;
  min-height: 460px;
}


