.container {
  width: 90%;
  margin: 0 auto;
}

header {
  width: 100%;
  background: #000;
  height: 180px;
  position: relative;
}
header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 100%;
}
header .header-right {
  display: flex;
  align-items: center;
}
header .header-right a {
  color: #fff;
  display: inline-block;
  margin: 0 10px;
  cursor: pointer;
}
header .header-right a.contact {
  padding: 10px 20px;
  color: rgb(210, 179, 109);
  border: 1px solid rgb(210, 179, 109);
  border-radius: 20px;
}
header .header-right a.contact:hover {
  background: rgb(210, 179, 109);
  color: #000;
}
header .header-menu {
  display: none;
  height: 20px;
  margin: auto;
  width: 22px;
  position: absolute;
  right: 50px;
  top: 30px;
  z-index: 100;
}
header .header-menu.on .line.one {
  transform: translateY(10px) translateY(-50%) rotate(-45deg);
}
header .header-menu.on .line.two {
  opacity: 0;
}
header .header-menu.on .line.three {
  transform: translateY(-10px) translateY(50%) rotate(45deg);
}
header .header-menu .line {
  background-color: #fff;
  border-radius: 2px;
  height: 2px;
  left: 0;
  position: absolute;
  transition: all 0.25s ease-in-out;
  width: 100%;
}
header .header-menu .line.two {
  top: 0;
  bottom: 0;
  margin: auto;
}
header .header-menu .line.three {
  bottom: 0;
}

.menu {
  display: none;
  background: #000;
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  z-index: 99;
}
.menu .menu-nav {
  padding-top: 50px;
  display: flex;
  flex-direction: column;
  text-align: center;
}
.menu .menu-nav a {
  color: #fff;
  display: inline-block;
  margin: 0 10px;
  font-size: 20px;
  margin-bottom: 20px;
}
.menu .menu-nav a.contact {
  width: 120px;
  height: 50px;
  line-height: 50px;
  color: rgb(210, 179, 109);
  border: 1px solid rgb(210, 179, 109);
  border-radius: 40px;
  margin: 0 auto;
  font-size: 16px;
}
.menu .menu-nav a.contact:hover {
  background: rgb(210, 179, 109);
  color: #000;
}

.setcion1 {
  background: #000;
  padding-bottom: 80px;
}
.setcion1 .container {
  display: flex;
  justify-content: flex-end;
  background: url(./6.jpg) no-repeat center left;
  background-size: 50%;
  height: 660px;
}
.setcion1 .container .left {
  width: 50%;
  height: 100%;
  box-shadow: inset 0 0 40px 10px rgba(0, 0, 0, 0.5);
}
.setcion1 .container .right {
  width: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.setcion1 .container .right h2 {
  color: rgb(252, 241, 164);
  font-size: 72px;
  text-align: center;
}
.setcion1 .container .right p {
  font-size: 20px;
  color: #fff;
}

.section2 {
  background: url(./2.jpg) no-repeat center center;
  width: 100%;
  height: 800px;
}
.section2 .container {
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.section2 .container p {
  display: block;
  max-width: 860px;
  color: rgb(252, 241, 164);
  font-size: 40px;
  font-weight: bolder;
  line-height: 54px;
}
.section2 .container a {
  background: rgb(252, 241, 164);
  color: #000;
  padding: 10px 20px;
  border-radius: 10px;
  margin-top: 69px;
}
.section2 .container a:hover {
  background: rgba(252, 241, 164, 0.5);
}

.section3 {
  background: rgb(210, 179, 109);
  padding: 50px 0;
  text-align: center;
}
.section3.releases {
  background: #000;
}
.section3.releases h2 {
  color: rgb(210, 179, 109);
}
.section3.releases .content p {
  background: rgb(22, 22, 22);
}
.section3 h2 {
  display: block;
  font-size: 40px;
  padding: 60px 0 60px 0;
  color: #fff;
}
.section3 .content {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
}
.section3 .content > div {
  margin-top: 40px;
  width: 30%;
  box-sizing: border-box;
}
.section3 .content > div img {
  display: block;
  width: 100%;
}
.section3 .content > div p {
  display: block;
  font-size: 22px;
  background: #000;
  padding: 58px 0;
  color: rgb(210, 179, 109);
}

.section4 {
  background: url(./3.jpg) no-repeat center center;
  width: 100%;
  height: 640px;
  position: relative;
}
.section4 .container {
  height: 100%;
}
.section4 .container .mask {
  position: absolute;
  left: 0;
  top: 0;
  background: rgba(0, 0, 0, 0.6);
  width: 100%;
  height: 100%;
  z-index: 1;
}
.section4 .container .content {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  z-index: 2;
}
.section4 .container h3 {
  font-size: 40px;
  color: rgb(252, 241, 164);
  font-weight: normal;
}
.section4 .container p {
  font-size: 30px;
  color: #fff;
  font-weight: normal;
  margin: 10px 0;
}
.section4 .container a {
  font-size: 25px;
  color: #fff;
  text-decoration: underline;
}

.section5 {
  background: #000;
  padding-top: 80px;
}
.section5 h2 {
  color: rgb(210, 179, 109);
  text-align: center;
  font-size: 55px;
}
.section5 .container > h3 {
  color: rgb(252, 241, 164);
  font-weight: normal;
  font-family: "font4";
  display: block;
  margin: 20px auto 0 auto;
  max-width: 600px;
  width: 100%;
  text-align: center;
  font-size: 18px;
}
.section5.about h2 {
  color: rgb(252, 241, 164);
}
.section5 .dot {
  width: 30px;
  height: 2px;
  margin: 0 auto;
  background: rgb(252, 241, 164);
}
.section5 .artists-search {
  width: 100%;
  max-width: 500px;
  margin: 0 auto;
  display: flex;
  margin-top: 30px;
}
.section5 .artists-search input {
  flex: 1;
}
.section5 .artists-search a {
  width: 150px;
  height: 50px;
  line-height: 50px;
  display: block;
  color: rgb(210, 179, 109);
  border: 1px solid rgb(210, 179, 109);
  text-align: center;
  cursor: pointer;
}
.section5 .content {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-top: 80px;
  padding: 0 12%;
}
.section5 .content .box {
  width: 30%;
  margin-bottom: 40px;
  background: radial-gradient(circle at 3.67513% 6.9401%, rgb(77, 96, 1) 0%, 11.55%, rgba(77, 96, 1, 0) 35%), radial-gradient(circle at 92.9671% 9.55404%, rgb(250, 170, 99) 0%, 17.5%, rgba(250, 170, 99, 0) 35%), radial-gradient(circle at 48.3333% 18.125%, rgba(255, 255, 0, 0.76) 0%, 25%, rgba(255, 255, 0, 0) 50%), radial-gradient(circle at 51.1214% 89.987%, rgb(147, 195, 255) 0%, 42%, rgba(147, 195, 255, 0) 70%), radial-gradient(circle at 48.9014% 49.5215%, rgb(255, 255, 255) 0%, 100%, rgba(255, 255, 255, 0) 100%);
}
.section5 .content .box img {
  width: 100%;
}
.section5 .content .box .box-text {
  padding: 30px;
}
.section5 .content .box h3 {
  font-size: 16px;
  font-weight: normal;
  font-family: "font4";
}
.section5 .content .box h4 {
  font-size: 24px;
  margin: 10px 0 30px;
}
.section5 .content .box p {
  font-size: 16px;
  line-height: 24px;
  font-weight: normal;
  font-family: "font4";
}

.section6 {
  background: rgb(252, 241, 164);
  padding: 80px 12%;
}
.section6 .container {
  display: flex;
}
.section6 .container h2 {
  display: block;
  width: 40%;
  font-size: 72px;
  text-align: right;
  padding-right: 20px;
}
.section6 .container > div {
  width: 60%;
  max-width: 600px;
  font-family: "font4";
  font-size: 15px;
  line-height: 28px;
}

.section7 {
  background: #000;
  padding: 80px 22% 180px 22%;
}
.section7 h2 {
  color: rgb(210, 179, 109);
  font-size: 72px;
  max-width: 820px;
  width: 100%;
  line-height: 90px;
}
.section7 a {
  width: 150px;
  height: 50px;
  line-height: 50px;
  border-radius: 50px;
  display: block;
  color: rgb(210, 179, 109);
  border: 1px solid rgb(210, 179, 109);
  text-align: center;
  margin-top: 80px;
}

.section8 {
  padding: 180px 22%;
  background: rgb(210, 179, 109);
}
.section8 .container h2 {
  font-size: 40px;
  color: rgb(252, 241, 164);
}
.section8 .container h3 {
  font-size: 30px;
  font-family: "font4";
  color: #fff;
}
.section8 .container a {
  font-size: 24px;
  font-family: "font4";
  color: #fff;
}

footer {
  text-align: center;
  background: #000;
  padding: 50px 0;
}
footer h2 {
  color: rgb(210, 179, 109);
}
footer img {
  margin: 40px auto;
}
footer .copyright {
  height: 50px;
  line-height: 50px;
  background: rgb(22, 22, 22);
  color: #fff;
}

.more-btn {
  width: 150px;
  height: 50px;
  line-height: 50px;
  border-radius: 50px;
  display: block;
  color: rgb(210, 179, 109);
  border: 1px solid rgb(210, 179, 109);
  text-align: center;
  margin: 80px auto 0 auto;
  cursor: pointer;
}

@media screen and (max-width: 1200px) {
  .section5 .content .box {
    width: 48%;
  }
  .section6 .container {
    flex-direction: column;
  }
  .section6 .container h2 {
    width: 100%;
    text-align: center;
  }
  .section6 .container > div {
    margin: 0 auto;
    max-width: 100%;
    width: 100%;
  }
}
@media screen and (max-width: 600px) {
  header {
    height: 80px;
    justify-content: center;
  }
  header .container {
    justify-content: center;
  }
  header .header-left {
    text-align: center;
  }
  header .header-left img {
    width: 143px;
  }
  header .header-right {
    display: none;
  }
  header .header-menu {
    display: block;
  }
  .setcion1 {
    padding-bottom: 0;
  }
  .setcion1 .container {
    flex-direction: column-reverse;
    background-size: 100%;
    background-attachment: initial;
    background-position: left bottom;
    height: 650px;
    width: 100%;
  }
  .setcion1 .container .right {
    align-items: flex-start;
    height: 40%;
    width: 100%;
    padding: 0 5%;
    box-sizing: border-box;
  }
  .setcion1 .container .right h2 {
    text-align: left;
    font-size: 32px;
    line-height: 40px;
    margin-bottom: 20px;
  }
  .setcion1 .container .right p {
    font-size: 26px;
    line-height: 34px;
  }
  .setcion1 .container .left {
    height: 50%;
    width: 100%;
    box-shadow: none;
  }
  .section2 {
    height: 474px;
  }
  .section2 .container {
    align-items: flex-start;
  }
  .section2 .container p {
    font-size: 24px;
    line-height: 32px;
    text-align: left;
  }
  .section2 .container a {
    margin-top: 20px;
    padding: 20px 30px;
  }
  .section3 {
    padding-bottom: 0;
  }
  .section3 .container {
    width: 100%;
  }
  .section3 .container h2 {
    padding: 0;
  }
  .section3 .container .content > div {
    width: 100%;
    margin: 0;
    display: flex;
    flex-direction: column-reverse;
  }
  .section3 .container .content > div p {
    background: rgb(210, 179, 109);
    color: #fff;
  }
  .section3.releases {
    background: #000;
  }
  .section3.releases .container h2 {
    color: rgb(210, 179, 109);
  }
  .section3.releases .container .content > div p {
    background: #000;
    color: rgb(210, 179, 109);
  }
  .section4 {
    background-size: 250%;
    height: 330px;
  }
  .section5.about h2 {
    font-size: 36px;
  }
  .section5.about .container > h3 {
    font-size: 22px;
    line-height: 30px;
    padding: 0 20px;
    box-sizing: border-box;
  }
  .section5.about .container .content {
    margin-top: 40px;
  }
  .section5 h2 {
    font-size: 29px;
  }
  .section5 .artists-search {
    width: 90%;
  }
  .section5 .container {
    width: 100%;
  }
  .section5 .container .content {
    padding: 0;
  }
  .section5 .container .content .box {
    width: 100%;
    padding: 20px;
    margin-bottom: 20px;
    box-sizing: border-box;
  }
  .section5 .container .content .box .box-text {
    padding: 20px 0;
  }
  .section6 {
    padding: 20px;
  }
  .section6 .container h2 {
    font-size: 31px;
    text-align: left;
  }
  .section7 {
    padding: 80px 12% 180px 12%;
  }
  .section7 h2 {
    font-size: 30px;
    line-height: 50px;
  }
  .section8 {
    padding: 80px 12%;
  }
  footer {
    padding-top: 30px;
    padding-bottom: 0;
  }
  footer img {
    margin: 10px auto;
  }
}