header {
    display: flex;
    flex-direction: column;
    width: 100%;
  }
  .header-top {
    width: 100%;
    padding: 20px 0px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid rgb(196, 196, 196);
  }
  .burger {
    width: 20px;
    height: 16px;
    margin-right: 20px;
    display: none;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
  }
  .burger span {
    width: 100%;
    height: 2px;
    background: #000;
  }
  .header-bottom {
    width: 100%;
    margin: 0;
    display: flex;
    flex-wrap: nowrap;
    justify-content: space-between;
    padding: 0;
  }
  .header-bottom li {
    display: block;
    border-bottom: 2px solid rgb(155, 155, 155);
    display: flex;
    flex: 1 1;
    justify-content: center;
    padding: 10px 5px;
    background: #fff;
  }
  .header-bottom li:hover {
    filter: brightness(95%);
  }
  .header-bottom li a {
    color: #000;
    font-size: 11px;
    text-transform: uppercase;
    font-weight: 600;
    width: max-content;
    height: 26px;
    text-decoration: none;
    vertical-align: middle;
  }
  .header-bottom li img {
    width: 20px;
    height: 20px;
    margin: auto;
  }
  header ol li, 
  header ul li {
    font-size: 20px;
    margin-bottom: 10px;
}
  .header-bottom li:nth-child(1) {
    background: #e4e4e4;
  }
  .header-bottom li:nth-child(2) {
    position: relative;
  }
  /* .header-bottom li:nth-child(2)::before{
    content: url('../images/logo/Screenshot_2.jpg');
    position: relative;
    top: 50%;
    transform: translateY(-50%);
  } */
  .header-bottom li:nth-child(3) {
    border-bottom: 2px solid #e10006;
  }
  .header-bottom li:nth-child(4) {
    border-bottom: 2px solid #ad167b;
  }
  .header-bottom li:nth-child(5) {
    border-bottom: 2px solid #659241;
  }
  .header-bottom li:nth-child(6) {
    border-bottom: 2px solid #373746;
  }
  .header-bottom li:nth-child(8) {
    border-bottom: 2px solid #5a7bcb;
  }
  .header-bottom li:nth-child(9) {
    border-bottom: 2px solid #d05e29;
  }
  .header-bottom li:nth-child(10) {
    background: #323cff;
  }
  .header-bottom li:nth-child(10) a {
    color: #fff;
  }
  .header-bottom li:nth-child(11) {
    border-bottom: 2px solid #155cb9e6;
  }
  .header-bottom li:nth-child(12) {
    background: #01b96d;
    color: #fff;
  }
  .header-bottom li:nth-child(12) a {
    color: #fff;
  }
  .header-bottom li:nth-child(15) a {
    margin: auto;
    padding: 3px;
    border-radius: 20px;
    background: #eee;
  }
  .header-bottom li:nth-child(16) {
    border-bottom: 2px solid #666;
  }
  .header-bottom li:nth-child(16) a {
    margin: auto;
    padding: 3px;
  }
  
  @media (max-width: 1040px) {
    .burger {
      display: flex;
    }
    .header-bottom {
      display: none;
    }
    .header-top img {
      height: 46px;
    }
  }
  @media (max-width: 1020px) {
    header {
      margin-bottom: 20px;
    }
    .burger {
      display: flex;
      margin-right: 0;
    }
    .header-top {
      width: 100%;
      padding: 0px 20px 0px 10px;
    }
  }
  
  footer {
    padding: 0px 20px;
    background: #333;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
  footer a {
    text-decoration: none;
    color: #cfcfcf;
    font-size: 12px;
    text-transform: uppercase;
    font-weight: 600;
  }
  footer a:hover{
    color: #f5f5f5;
  }
  footer div {
    width: 100%;
    height: auto;
    padding: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
  }
  footer div:first-child{
    padding-bottom: 0px;
  }
  footer div:nth-child(2),
  footer div:nth-child(3) {
    border-bottom: 1px solid #4e4e4e;
  }
  footer div:nth-child(3) a {
    font-size: 10px;
  }
  footer div:nth-child(4) a {
    font-size: 12px;
    color: #a1a1a1;
    font-weight: 500;
    text-transform: none;
  }