.banner {
  width: 100%;
}

.banner > img {
  width: 100%;
  display: block;
}

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

.content-container {
  width: 100%;
}

.content {
  width: 100%;
}

.content-container > .content > .top-title {
  background-color: #17314c;
  border-right: 3px solid #dbaf66;
  padding: 2rem 1rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: var(--white);
  font-size: 2rem;
}

.content-container > .content > .top-title > .icon img {
  width: 30px;
  display: block;
}

.content-container > .content > .table {
  width: 100%;
  height: 100vh;
  overflow-y: auto;
}

.table > .tr {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 1%;
  font-size: 1rem;
  padding: 1rem 0;
}

.table > .tr > div {
  text-align: center;
}

.table > .tr:nth-child(even) {
  background-color: #d0d6db;
}

.table > .tr-head {
  background-color: #eff2f5;
  font-weight: 800;
  border-bottom: 2px solid var(--black);
}

.table div > a {
  color: var(--black);
  transition: all .5s ease;
}

.table div > a:hover {
  color: var(--gold);
}

.table > div > div:nth-child(1) {
  width: 2%;
}

.table > div > div:nth-child(2) {
  width: 10%;
}

.table > div > div:nth-child(3) {
  width: 6%;
}

.table > div > div:nth-child(4) {
  width: 6%;
}

.table > div > div:nth-child(5) {
  width: 8%;
}

.table > div > div:nth-child(6) {
  width: 5%;
}

.table > div > div:nth-child(7) {
  width: 25%;
}

.table > div > div:nth-child(8) {
  width: 15%;
}

.table > div > div:nth-child(9) {
  width: 9%;
}

.table > div > div:nth-child(10) {
  width: 5%;
}

@media screen and (max-width: 1600px) {
  .container {
    width: 95%;
  }
}

@media screen and (max-width: 1200px) {
  .table > .tr {
    font-size: 0.9rem;
  }
}

@media screen and (max-width: 1050px) {
  .table > .tr {
    font-size: 0.8rem;
  }

  .table > div > div:nth-child(1) {
    width: 30px;
  }

  .table > div > div:nth-child(2) {
    width: 100px;
  }

  .table > div > div:nth-child(3) {
    width: 50px;
  }

  .table > div > div:nth-child(4) {
    width: 50px;
  }

  .table > div > div:nth-child(5) {
    width: 50px;
  }

  .table > div > div:nth-child(6) {
    width: 200px;
  }

  .table > div > div:nth-child(7) {
    width: 220px;
  }

  .table > div > div:nth-child(8) {
    width: 100px;
  }

  .table > div > div:nth-child(9) {
    width: 100px;
  }

  .table > div > div:nth-child(10) {
    width: 50px;
  }

  .content-container > .content > .table {
    overflow: auto;
  }

  .table > .tr {
    width: fit-content;
  }
}

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

@media screen and (min-width: 1800px) {
  .container {
    width: 1550px;
    margin: 0 auto;
  }
}
