.bgBLue {
    position: relative;
    /* background: #fafafa; */
}

.bgShadow {
    background: #fff;
    padding: 40px 50px;
    border-radius: 10px;
    box-shadow: 1px 1px 10px #00000029;
    margin-bottom: 25px;
    position: relative;
}

.bgShadow:after {
    content: '';
    position: absolute;
    width: 0;
    height: 0;
    border-top: 10px solid transparent;
    border-bottom: 10px solid transparent;
    border-left: 10px solid var(--primary);
    left: 0;
    top: 46px;
}

.noLeftArrowDisplay:after {
    display: none;
}

.bgShadow .sectionTitle {
    font-size: 20px;
}

.pageTitle {
    font-size: 30px;
    line-height: 34px;
    font-size: calc(1rem + 0.87vw);
    line-height: calc(0.9rem + 1vw);
    font-weight: normal;
    margin: 0px 0px 12px 0px;
    color: var(--black);
    font-family: var(--font-family-title);
    font-weight: 400;
}

.pageDesc {
    color: #3A3A3A;
    font-size: 16px;
    line-height: 18px;
    font-weight: 400;
    margin: 0px 0px 15px 0px;
}

.infoList {
    margin: 40px 0px 20px;
    padding: 0;
    list-style-type: none;
    display: block;
    width: 68%;
}

.infoList li {
    margin: 0px 0px 15px 0px;
    padding: 0px 0px 15px 0px;
    border-bottom: 1px solid #dee2e6;
    display: flex;
}

.infoList li:last-child {
    margin: 0px 0px 15px 0px;
    padding: 0px 0px 0px 0px;
    border-bottom: 0;
}

.infoList li .imgCont {
    width: 56px;
    margin: 0px 15px 0px 0px;
    padding: 0px 5px;
}

.infoList li .imgCont img {
    width: 100%;
}

.infoList li .textCont {
    margin: 0px;
    padding: 0px;
    font-family: var(--font-family-title);
    color: #3A3A3A;
    font-size: 14px;
    font-weight: normal;
    width: 90%;
}

.infoList li .textCont .title {
    font-size: 20px;
    color: var(--black);
    font-weight: 500;
    margin: 0px 0px 2px 0px;
}

.infoList li .textCont p {
    margin: 0px;
}

.downloadSection {
    background: #F3F3F3;
    border-radius: 10px;
    padding: 20px 40px;
    text-align: center;
    font-family: var(--font-family-title);
    color: var(--black);
    margin: 20px 0px 1px 0px;
}

.downloadSection .secTitle {
    font-size: 22px;
    font-weight: 500;
    margin: 0px 0px 20px 0px;
    line-height: 24px;
}

.downloadSection .secDesc1 {
    font-size: 14px;
    color: #3A3A3A;
    margin: 0px 0px 20px 0px;
    line-height: 18px;
}

.downloadSection .secDesc2 {
    font-size: 16px;
    color: #6C6C6C;
    margin: 0px 0px 20px 0px;
    line-height: 20px;
}

.downloadSection .qrCode {
    background: url(../images/qrCodeBg.png) no-repeat;
    background-size: cover;
    padding: 10px;
    width: 120px;
    height: 120px;
    margin: 0 auto;
}

.downloadSection .qrCode img {
    border-radius: 8px;
}

.downloadSection .downloadBtns {
    width: 100%;
    margin: 10px 0px 10px 0px;
}

.downloadSection .downloadBtns img {
    width: 130px;
    box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
    border: 1px solid #4A4949;
    border-bottom: 4px solid #4A4949;
    border-radius: 10px;
}

.helpinfo {
    font-family: var(--font-family-body);
    font-size: 14px;
    color: #25252C;
    line-height: 20px;
    margin: 20px 15px;
}

.helpinfo ul.hotlinks {
    margin: 0px 0px 0px 15px;
    padding: 0;
    list-style-type: none;
    display: inline-block;
    list-style-type: none;
}

.helpinfo ul.hotlinks li {
    margin: 0px 10px 0px 0px;
    padding: 0;
    display: inline-block;
}

.helpinfo ul.hotlinks li a {
    font-size: 20px;
    color: #A9A9B7;
    transition: all ease-in-out 0.3s;
}

.helpinfo ul.hotlinks li a:hover {
    color: var(--primary);
}

@media screen and (max-width: 767px) {
    .infoList {
        width: 100%;
    }
    .helpinfo {
        text-align: center;
    }
    .helpinfo ul.hotlinks {
        margin: 0px 0px 0px 0px;
    }
}