
body {
    margin: 0;
    background-color: #ffffff;
    font-family: "Montserrat", sans-serif;
    color: #424242;
  }
  
  a {
    text-decoration: none;
    color: #424242;
  }
  
  a:hover {
    text-decoration: underline;
    color: royalblue;
  }
  
  td {
    min-width: 250px;
    padding-bottom: 10px;
  }
  
  .parent {
    width: 100%;
    height: 100%;
    position: fixed;
    top: 0;
    left: 0;
    display: flex;
    align-items: center;
    align-content: center;
    justify-content: center;
    overflow: auto;
  }
  
  .block {
    display: flexbox;
    width: 850px;
    margin: auto;
    background-color: #ffffff;
    border-radius: 20px;
    padding: 30px;
  }
  
  .title {
    font-size: 42px;
  }
  
  .black {
    font-weight: 700;
  }
  
  .bank {
    display: flex;
    background-color: blanchedalmond;
    border-radius: 10px;
    padding-top: 10px;
  }
  
  .partner {
    width: 87px;
    height: 87px;
    border-radius: 10px;
    padding-right: 20px;
  }
  
  .header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
  }
  
  hr {
    border-top: 2px dashed #f2f5f7;
  }
  
  .block__partner {
    display: flex;
    align-items: center;
    font-size: 12px;
    color: #c1c1c1;
    margin-top: 25px;
  }
  
  .partner__description {
    vertical-align: middle;
    text-align: justify;
  }
  
  @media (max-width: 600px) {
    table {
      width: 100%;
    }
  
    tr {
      display: flex;
      flex-wrap: wrap;
    }
  
    td {
      min-width: 100%;
      padding-bottom: 10px;
    }
  
    .parent {
      width: 100%;
      height: 100%;
      position: fixed;
      top: 0;
      left: 0;
      display: flex;
      align-items: center;
      align-content: center;
      justify-content: center;
      overflow: auto;
    }
  
    .block {
      display: flexbox;
      width: 850px;
      margin: auto;
      background-color: #ffffff;
      border-radius: 20px;
      padding: 30px;
    }
  
    .title {
      font-size: 30px;
    }
  
    .black {
      font-weight: 700;
    }
  
    .bank {
      display: flex;
      background-color: blanchedalmond;
      border-radius: 10px;
      padding-top: 10px;
    }
  
    .partner {
      width: 50px;
      height: 50px;
      border-radius: 10px;
      padding-right: 20px;
    }
  
    .header {
      display: flex;
      justify-content: space-between;
      align-items: center;
      margin-bottom: 20px;
    }
  
    hr {
      border-top: 2px dashed #f2f5f7;
    }
  
    .block__partner {
      display: flex;
      flex-wrap: wrap;
      align-items: center;
      font-size: 12px;
      color: #c1c1c1;
      margin-top: 25px;
    }
  
    .partner__description {
      vertical-align: middle;
      text-align: left;
    }
  }

  /* Style the buttons that are used to open and close the accordion panel */
.accordion {
  background-color: #f2f5f7;
  font-family: "Montserrat", sans-serif;
  color: #424242;
  border-radius: 5px;
  cursor: pointer;
  padding: 18px;
  width: 100%;
  text-align: left;
  border: none;
  outline: none;
  transition: 0.4s;
}

.accordion:after {
  content: "\02795"; /* Unicode character for "plus" sign (+) */
  font-size: 13px;
  color: #fff;
  float: right;
  margin-left: 5px;
}

/* Add a background color to the button if it is clicked on (add the .active class with JS), and when you move the mouse over it (hover) */
.active,
.accordion:hover {
  background-color: #307fe2;
  color: #fff;
  border-radius: 5px;
  transition: 0.5s;
}

.active:after {
  content: "\2796";
  color: #fff; /* Unicode character for "minus" sign (-) */
}

/* Style the accordion panel. Note: hidden by default */
.panel {
  padding: 0 18px;
  background-color: white;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.2s ease-out;
  margin-bottom: 15px;
}

footer {
  display: flex;
  align-items: center;
  background-color: #307fe2;
  height: 100px;
  width: 100%;
  color: #fff;
  margin-top: 50px;
}

/* Style the tab */
.tab {
  overflow: hidden;
  border: 0px;
  background-color: #fff;
  padding: 14px;
  margin-top: 10px;
  margin-bottom: -20px;
}

/* Style the buttons that are used to open the tab content */
.tab button {
  background-color: inherit;
  float: left;
  border: none;
  outline: none;
  cursor: pointer;
  padding: 8px 14px;
  transition: 0.3s;
  margin-right: 20px;
}

/* Change background color of buttons on hover */
.tab button:hover {
  background-color: #fff;
}

/* Create an active/current tablink class */
.tab button.active {
  background-color: #307fe2;
}

/* Style the tab content */
.tabcontent {
  display: none;
  padding: 6px 12px;
  border: 0px;
  border-top: none;
}

@media (max-width: 440px) {
  body {
    font-family: "Montserrat", sans-serif;
    margin: 0;
  }

  