.header_div {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
}

body {
    font-family: "Lucida Grande";
}

.nav_links {
    color: #ffffff;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    margin-right: 14px;
    font-weight: bold;
}

.nav_links:hover {
    color: rgb(114, 68, 99);
}

.dropdown-menu {
    --bs-dropdown-link-active-color: #959595;
    --bs-dropdown-link-active-bg: #ffffff;
    position: relative;
    z-index: 9999;
}

.logo_info {
    height: 32px;
}

.main_nav_links {
    display: none;
}

.main_heading {
    text-align: center;
    font-weight: bolder;
    font-size: 30px;
    font-family: Arial;
    color: rgb(184, 51, 72);
}

.sub_heading {
    padding: 32px 4%;
    font-size: 37px;
    color: #bc6513;
    font-style: italic;
    text-align: center;
}

.topics_heading {
    margin-bottom: 23px;
    font-size: 23px;
    font-weight: bold;
    text-align: center;
    color: rgb(49, 106, 131);
}

.topics_heading_level_1 {
    margin-top: 18px;
    font-size: 23px;
    font-weight: bold;
    color: rgb(184, 51, 72);
}

.topics_heading_level_4 {
    font-size: 18px;
    margin-top: 18px;
    margin-bottom: 18px;
    color: rgb(64, 62, 62);
}

.success {
    margin: 0px;
}

@media only screen and (min-width: 992px) {
    .logo_info {
        height: 37px;
    }
    .nav_links {
        margin-right: 23px;
    }

    .main_heading {
        margin: 0px 4%;
        font-size: 48px;
    }

    .main_nav_links {
        display: flex;
    }

    .success {
        margin: 0px;
    }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .logo_info {
        height: 37px;
    }

    .main_heading {
        margin: 0px 4%;
        font-size: 36px;
    }

    .success {
        margin: 0px;
    }

    .sub_heading {
        font-size: 32px;
    }
}

@media only screen and (min-width: 471px) and (max-width: 767px) {
    .success {
        padding: 0px 10%;
    }

    .main_heading {
        margin: 14px 4%;
        font-size: 36px;
    }

    .sub_heading {
        padding: 23px 4%;
        font-size: 27px;
    }
}

@media only screen and (max-width: 470px) {
    .success {
        padding: 0px 7%;
    }
    .logo_info {
        height: 26px;
    }

    .main_heading {
        margin: 14px 4%;
    }

    .sub_heading {
        padding: 23px 4%;
        font-size: 23px;
    }

    .topics_heading {
        margin-bottom: 18px;
        font-size: 18px;
    }

    .topics_heading_level_1 {
        font-size: 19px;
    }

    .topics_heading_level_4 {
        font-size: 14px;
    }
}

