:root {
    --ui-color: #3e567c;
    --lightgray: #f2f2f2;
    --darkgray: #a9a9aa;
    --headergray: #e4e4e4;
    --high-color: #218559;
    --med-color: #ebb035;
    --low-color: #dd1e2f;
}
.noselect {
    user-select: none;
    -moz-user-select: none;
    -webkit-user-select: none;
}
.invisible {
    display: none !important;
}
body {
    position: absolute;
    margin: 0;
    overflow-x: hidden;
    background-color: #ffffff;
    width: 100%;
}
header {
    position: fixed;
    width: 100%;
    height: 10vh;
    z-index: 9999;
}
main {
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    width: 100%;
    margin-top: 12vh;
}
footer {
    position: relative;
    width: calc(100% - 6em);
    padding: 20px 3em 0 3em;
    height: max-content;
    background-color: #cfcfcf;
}
#footerlinkscont {
    position: relative;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;
    width: 100%;
    height: max-content;
    padding-bottom: 30px;
    border-bottom: 1px solid black;
}
#footerexplorecont {
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;
    flex-direction: column;
    align-items: baseline;
    justify-content: center;
    font-family: Helvetica, sans-serif;
}
#footerexplorecont a, #footerlegal a {
    text-decoration: none;
    transition: color 0.2s ease-in-out;
    line-height: 28px;
    font-weight: 300;
    color: #000000;
}
#footerexplorecont a:hover, #footerlegal a:hover {
    color: var(--darkgray);
}
#exploreheader {
    margin: 0;
    line-height: 45px;
    font-size: 20px;
    font-weight: 700;
}
#footerlegal {
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;
    align-items: center;
    font-family: Helvetica, sans-serif;
}
#copyrightlabel {
    margin-right: 40px;
}
#privacypolicylink {
    margin-right: 20px;
}
@font-face {
    font-family: "Open Sans";
    src: url(../../assets/fonts/Open\ Sans/OpenSans-Regular.ttf);
}
@font-face {
    font-family: "Libre Franklin";
    src: url(../../assets/fonts/Libre\ Franklin/LibreFranklin-Regular.ttf);
}
@font-face {
    font-family: "Agbalumo";
    src: url(../../assets/fonts/Agbalumo/Agbalumo-Regular.ttf);
}
@font-face {
    font-family: "Roboto";
    src: url(../../assets/fonts/Roboto/Roboto-Regular.ttf);
}
@font-face {
    font-family: "RobotoBold";
    src: url(../../assets/fonts/Roboto/Roboto-Bold.ttf);
}
@font-face {
    font-family: "ITCAvantGardeGothicBold";
    src: url("../../assets/fonts/ITC Avant Garde Gothic/ITC Avant Garde Gothic Bold.otf");
}
#topnav {
    position: relative;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 3em;
    width: calc(100% - 6em);
    height: 8vh;
    background-color: var(--headergray);
    z-index: 999;
}
#signaturecont, #footersignaturecont {
    position: relative;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: #000000;
    text-decoration: none;
    width: 185px;
    transition: opacity 0.2s ease-in-out;
}
#footersignaturecont {
    width: 165px;
    height: fit-content;
    margin-right: 40px;
}
#signaturecont:hover {
    opacity: 0.6;
}
#signaturetext, #footersignaturetext {
    display: inline-block;
    font-family: "Agbalumo", Arial, serif;
    font-weight: 500;
    font-size: 27px;
    line-height: 40px;
    font-style: normal;
    margin: 0;
}
#footersignaturetext {
    font-size: 24px;
}
#logocont, #footerlogocont {
    display: inline-block;
    background-image: url(../../assets/images/almamentor_logo.png);
    background-repeat: no-repeat;
    background-size: contain;
    height: 30px;
    width: calc(878 / 911 * 30px);
}
#footerlogocont {
    height: 20px;
    width: calc(878 / 911 * 20px);
}
#loginlinkwrapper {
    font-family: "Open Sans", Helvetica, sans-serif;
    font-weight: 700;
    font-size: 17px;
}
#headeraccountcont {
    position: relative;
    width: 35px;
    height: 35px;
}
#headeraccounticon {
    position: relative;
    height: 35px;
    width: 35px;
    border-radius: 50%;
    cursor: pointer;
    opacity: 1;
    transition: 0.2s opacity ease-in-out;
}
#headeraccounticon:hover {
    opacity: 0.6;
}
#headeraccounticonimg {
    position: relative;
    height: 100%;
    width: 100%;
    border-radius: 50%;
    background-repeat: no-repeat;
    background-image: url(../assets/images/profile_default.svg);
    background-size: contain;
}
#headeraccountmenu {
    display: none;
    position: absolute;
    top: calc(100% + 12.5px);
    right: 10px;
    width: max-content;
    height: max-content;
    font-family: "Open Sans", Helvetica, sans-serif;
    font-size: 14px;
    font-weight: 600;
    border: 1px solid #dadada;
    border-radius: 5px 0 5px 5px;
    opacity: 0;
    transition: opacity 0.2s ease-in-out;
}
#headeraccountlinkcont {
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;
    flex-direction: column;
}
.headeraccountlinks {
    padding: 12px 25px;
    cursor: pointer;
    color: #000000;
    text-align: center;
    background-color: #ffffff;
    text-decoration: none;
    transition: background-color 0.2s ease-in-out, color 0.2s ease-in-out;
    border-bottom: 1px solid #e9e9e9;
}
.headeraccountlinks:first-child {
    border-radius: 5px 0 0 0;
}
.headeraccountlinks:last-child {
    border-radius: 0 0 5px 5px;
    border-bottom: 0;
}
.headeraccountlinks:hover {
    background-color: rgb(218, 218, 218);
    color: #4b4b4b;
}
#logoutbutton {
    margin: 0;
}
#headeraccountmenu > svg {
    position: absolute;
    height: 8px;
    width: 15px;
    padding: 0;
    bottom: 100%;
    right: -1px;
    fill: #ffffff;
}
#headeraccountmenu > svg > line {
    stroke: #dadada;
}
.navbutton {
    margin: 0;
    color: #000000;
    text-decoration: none;
    transition: color 0.3s ease-in-out;
}
.navbutton:last-child {
    margin: 0;
}
.navbutton:hover {
    color: var(--darkgray) !important;
}
h1, h2, h3 {
    font-family: "RobotoBold", Helvetica, sans-serif;
    margin: 15px 0 0 0;
}
#mainwrapper {
    font-family: "Roboto", Arial, sans-serif;
    width: 80%;
    padding: 0 10%;
    margin-bottom: 50px;
}
h1, h2, h3 {
    font-family: "RobotoBold", Helvetica, sans-serif;
    margin: 15px 0 0 0;
}
#mainwrapper {
    font-family: "Roboto", Arial, sans-serif;
    width: 80%;
    padding: 0 10%;
}
#queriesheader {
    margin: 0 0 15px 0;
    font-size: 25pt;
}
#takedownquestion {
    font-size: 16pt;
    margin: 5px 0 10px 0;
    font-weight: 600;
    color: #000000;
}
#takedowndesc {
    margin: 0 0 30px 0;
}
.maintext {
    margin: 10px 0 0 0;
}
ol, ul {
    margin: 0 0 40px 0;
}
ol ul {
    margin: 0;
}
a {
    color: #000000;
    font-weight: 700;
}
@media only screen and (max-width: 500px) {
    #topnav {
        padding: 0 10px;
        width: calc(100% - 20px);
    }
    footer {
        padding: 20px 10px 0 10px;
        width: calc(100% - 20px);
    }
    .questionrow {
        padding: 15px 10px;
        width: calc(100% - 20px);
    }
}
@media only screen and (max-width: 780px) {
    #signaturecont {
        width: max-content;
    }
    #signaturetext {
        font-size: 24px;
    }
    #logocont {
        height: 25px;
        width: calc(878 / 911 * 25px);
    }
}