:root {
    --primarycolor: #D2232A;
    --secondaryColor: #2f2f2f;
    --fontFamilyPrimary: "IBM Plex Sans", sans-serif;
    --fontFamilySecondary: "Rubik", sans-serif;
    --fontFamilyCommon: "Roboto", sans-serif;
    --fontsizeDefault: 14px;
    --paddingYdefault: 12px 0;
    --defaultfontweight: 400;
}

body {
    font-family: var(--fontFamilyPrimary);
    font-size: 14px;
    line-height: 1.5;
    font-weight: var(--defaultfontweight);
}

strong {
    font-weight: 700;
}

header .topbar {
    background-color: var(--primarycolor);
    font-size: var(--fontsizeDefault);
    padding: var(--paddingYdefault);
    font-weight: var(--defaultfontweight);
    letter-spacing: 0.2px;
}

header .logo {
    padding: var(--paddingYdefault);
}

header .logo img {
    max-width: 188px;
}

main .page-banner {
    background-color: var(--primarycolor);
    font-size: var(--fontsizeDefault);
    padding: var(--paddingYdefault);
    font-weight: var(--defaultfontweight);
}

main .descriptionTab .desc {
    margin: 30px auto;
    box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.12);
    padding: 30px 70px 55px;
    background-color: #fff;
}

main .descriptionTab .desc .nav-tabs .nav-link.active {
    border-bottom: 2px solid red;
    border-top: 0;
    border-left: 0;
    border-right: 0;
    font-weight: 600;
    font-size: 16px;
}

.tab-pane h5 {
    color: #93202b;
    font-size: 16px;
    margin: 1.8rem 0;
}

.tab-pane h3 {
    font-size: 24px;
    font-weight: bold;
}

p.size-16,
.tab-content ul li {
    font-size: 16px;
    color: #444;
    font-weight: 400;
}

.tab-content ul li {
    padding-bottom: 5px;
    list-style-type: disc;
}

footer {
    font-family: var(--fontFamilySecondary);
}

footer [class*=container] {
    max-width: 1180px;
}

footer .footerTopbar {
    background-color: var(--primarycolor);
    padding: var(--paddingYdefault);
    color: #fff;
    border-bottom: 4px solid #545960;
}

footer .footerTopbar .item {
    display: flex;
    gap: 5px;
}

footer .footerMid {
    padding: var(--paddingYdefault);
}

footer .footerMid .footerlogo img {
    max-width: 188px;
}

footer .footerMid h6 {
    font-family: var(--fontFamilyCommon);
}

footer .footerMid ul {
    list-style-type: none;
    padding: 0;
    margin-top: 10px;
    font-family: var(--fontFamilyCommon);
}

footer .footerMid ul li {
    list-style: none;
}

footer .footerMid ul li:not(:last-child) {
    margin-bottom: 5px;
}

footer .footerMid ul li a {
    text-decoration: none;
    color: rgba(0, 0, 0, 0.79);
    font-weight: 200;
}

footer .footerMid p {
    font-size: 16px;
}

footer .footerMid h5 {
    color: #54595f;
    font-weight: 500;
    font-size: 16px;
}

footer .footerMid .secureIcon img {
    width: 80%;
    max-width: 500px;
}

footer .footerBottom {
    background-color: var(--secondaryColor);
    text-align: center;
    color: #A6A6A6;
    padding: var(--paddingYdefault);
}

footer .footerBottom .disclaimer {
    font-size: 12px;
    font-weight: 200;
}

footer .footerBottom .copyright-txt {
    font-size: 13px;
    color: #fff;
    font-weight: 200;
}

footer .footerBottom p:not(:first-child) {
    margin: 0;
}