.page-banner{
    height:250px;
}
.page-banner img{
    width:100%;
    height:100%;
    object-fit:cover;
}

.page-container{
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

.breadcrumb {
    color: var(--font-color);
    text-align: left;
    margin: 3rem 0 20px 0;
}

.breadcrumb-item {
    display: inline-block;
}

.breadcrumb-item:not(:last-child)::after {
    content: "/";
    margin: 0 8px;
    color: #DAC078;
}

.content-title {
    display: block;
    margin: 16px 0;
    letter-spacing: 2px;
}

.content-title h1 {
    position: relative;
    font-size: 2.5rem;
    padding: 0 8px 6px 0;
    display:inline-block;
    margin:0;
    line-height: 1;
}

.content-title h1:after {
    content: "";
    position: absolute;
    z-index: -1;
    bottom: 0;
    right: 0;
    display: block;
    width: 20px;
    height: 20px;
    background: #DAC078;
}

.page-content{
    padding: 1rem 0 5rem 5vw;
}

@media (max-width: 768px) {
    .page-content {
        padding: 1rem 0 4rem 0;
    }
}




h3{
    color: var(--primary-color);
    font-size:2rem;
    font-weight: bold;
    margin: 20px 0;
}
h4{
    color: var(--primary-color);
    font-size:1.5rem;
    font-weight: bold;
    margin: 20px 0;
}

.disclaimer h2{
    font-size:2rem;
    line-height: 1;
    font-weight: 900;
    color:var(--primary-color-darker);
}


.disclaimer h3{
    font-size:1.5rem;
    line-height: 1;
    font-weight: 900;
    color:#222;
}

.disclaimer h4{
    font-size:1.25rem;
    line-height: 1;
    font-weight: 900;
    color:#222;
}

.disclaimer .block-grid-col > div{
    margin-bottom:2.5rem;
}


iframe {
  height: auto;
  width: 100% !important;
  aspect-ratio: 16 / 9;
}


/* Account Opening Step Table */
.account-opening-step{
    counter-reset: section;
    margin-bottom:2rem;
}
.account-opening-step .list-item{
    position: relative;
    padding: 24px 5px;
    padding-left: 95px;
    border-bottom: 1px solid #eeeeee;
}
.account-opening-step .list-item:first-child{
    border-top: 1px solid #eeeeee;
}
.account-opening-step .list-item:before{
    counter-increment: section;
    content: counter(section);
    position: absolute;
    top: 0;
    left: 0;
    width: 90px;
    height: 100%;
    padding: 24px 5px;
    font-size:72px;
    font-weight: bold;
    color: #ac936e;
}

.account-opening-step .list-item-title{
    font-size: 1.5rem;
    font-weight: bold;
    color: rgb(102, 102, 102);
    margin-bottom:1.5rem;
}

.account-opening-step table {
    width: 100%;
    border-collapse: collapse;
}
.account-opening-step table td {
    border-style:none;
    padding: 0;
}

.account-opening-step ul {
    margin-block-start: 0;
    margin-block-end: 0;
}

.account-opening-step .fa-download{
    font-size:1.75rem;
    color:var(--primary-color-darkest);
}




/*Common */
hr{
    height: 0;
    margin: 20px 0;
    border: 0;
    border-top: 1px solid #e5e5e5;
}
p:first-child{
    margin-block-start: 0;
}
p:last-child{
    margin-block-end: 0;
}

main table td{
    border: 1px solid #f0f0f0;
    padding: 0.5rem;
    vertical-align: top;
}

main table.table-divider{
    width:100%;
    border-collapse: collapse;
}

main table.table-divider td {
    border: 0 solid #f0f0f0;
    border-bottom: 1px solid #f0f0f0;
}

