html, body {
    margin: 0;
    background: white;
    color: white;
    font-family: 'Karla';
}

header {
    background: #212E4E;
    /* background: linear-gradient(135deg, #30315E 0%, #124F6F 100%); */
    /* padding: 0 40px; */

}

.container {
  padding-left: 10%;
  padding-right: 10%;
}

.app-header {
    /* max-width: 600px; */
    display: flex;
    flex-direction: row;
    align-items: center;
    /* justify-content: space-around; */
    height: 60px;
}

.app-header__logo {
  // height: auto;
  // height: 80px;
  width: 150px;
  overflow: hidden;
  margin-left: 20px
}

.logo-img {
    height: 50px;
    width: 50px;
    margin-right: 10px;
}

.tagline {
    font-size: 20px;
    /* padding: 0 20px; */
}

section {
    min-height: calc(100vh - 100px);
    /* background-image: linear-gradient(135deg,rgba(38,38,72,1), rgba(29,72,91,1)); */
    background-image: linear-gradient(135deg, #30315E 0%, #124F6F 100%);
    padding: 20px 40px;
}

.flex-cards-row {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
}

.card {
    background: rgba(33, 46, 78, 0.33);
    max-width: 480px;
    border-radius: 25px;
    text-align: center;
    /* min-height: 320px; */
    margin: 10px;
    padding: 10px;
    font-size: 24px;
}

.bc-card-row {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    margin-top: 12px;

}

.bc-card {
    width: 200px;
    background: linear-gradient(135deg, #F89A26 0%, #9D5905 100%);
    box-shadow: 3px 3px 11px 2px rgba(2,2,2,0.11), -10px 0 20px 2px rgba(9,9,9,0.11);
    border-radius: 16px;
    height: 80px;
    margin: 10px;
    color: white;
    text-align: left;
    display: flex;
    align-items: center;
    padding-left: 10px;
    font-size: 42px;
    font-weight: bold;
    justify-content: space-between;
    overflow: hidden;
    text-decoration: none;
    border: 0.5px solid rgba(244,192,54,1);
}

.card-header {
    font-size: 32px;
    font-weight: bold;
}

.amount {
    font-size: 18px;
}

.amount-btns {
    background-color: rgba(33, 77, 102, 1);
    border: none;
    color: rgba(244,192,54,1);
    border-radius: 4px;
    outline: none;
}

.bc-logo {
    height: 100px;
    width: 100px;
    margin-right: -13px;
}

.sec-para {
    text-align: center;
    font-size: 30px;
    margin: 2rem 0px;
}

.third-para{
    text-align: center;
    font-size: 24px;
    margin-top: 10px;
}

.yellow-text {
    color: #FFC800;
}

.divider {
    border: solid 0.4px #D8D8D8;
    min-height: 50px;
    width: 0;
    opacity: 50%;
    margin: 0 20px;
}

.banner {
    font-size: 30px;
    text-align: center;
    /* padding: 40px 0; */
}

.brands {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 12px;
}

.brand-img {
    height: 90px;
    width: 150px;
    margin: 0px 20px;
}

.brand-img-llyods {
   height: 50px;
   margin: 20px;
}

.copyright {
    font-size: 12px;
    text-align: center;
}

@media only screen and (max-width: 540px) {
    .brands {
        flex-direction: column;
        align-items: center;
    }
  }
