body {
    margin: 0;
    padding: 0;
    font-family: Arial, sans-serif;
    background: #ecf0f1;
}

header {
    background: #5255B7;
    color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;

    height: 8vh;
}


.appInfoHeader {
    text-align: center;
}

.infomationTextContainer {
    margin-top: 50px;
    margin-bottom: 20px;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.appInfoInfomationTextContainer {
    height: 90vh;
    width: 100%;
    margin: 0;
}

.infomationTextWrapper {
    max-width: 60%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.appInfomationTextWrapper {
    align-items: center;
    text-align: center;
}

.infomationTextWrapper  p {
    letter-spacing: .2px;
    font-size: 20px;
    line-height: 140%;
    opacity: 80%;
}

.appInfomationTextWrapper p {
    opacity: 1;
    letter-spacing: 1px;
    line-height: 150%;
}

.privacyPolicySectionContainer {
    width: 60%;
    min-height: 70vh;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    margin-left: 2.5%;
    margin-right: 2.5%;
    text-decoration: none;
    margin-left: auto;
    margin-right: auto;
    
}

.privacyPolicySectionWrapper {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-direction: row;
    margin-bottom: 40px;
}

.privacyPolicySection {
    width: 30%;
    height: 30vh;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 4px 10px #00000040;
    cursor: pointer;
    background: #ffffff;
    border-radius: 5px;
    transition: .2s ease-in-out;
}



.privacyPolicySection:hover {
    transform: scale(1.01);
}
.privacyPolicySection.btvSection {
    background: #004166;
}


.bankIcon {
    width: 60%;
}

.bankIcon.bankIconBks {
    width: 55%;
}

.bankIcon.bankIconObk {
    width: 45%;
}

.bankIcon.bankIconThreeBG {
    width: 75%;
}

.bankIcon.bankIconThreeBVM {
    width: 65%;
}

.bankIcon.bankIconThreeBkl {
    width: 55%;
}


/* media query */
@media screen and (max-width: 768px) {
    .appInfoHeaderContainer {
        height: 20vh;
    }

    .privacyPolicySectionWrapper {
        flex-direction: column;
        margin-bottom: 0;
    }

    .privacyPolicySection  {
        width: 100%;
        margin-bottom: 35px;
    }
}

