.goldColor {
    color: #daa74b;
}
.red {
    color: red;
}
.goldcolorUnderline {
    color: #daa74b;
    text-decoration: underline;
}
.scrollNavigation {
    all: unset;
    display: flex;
    flex-direction: row !important;
    align-items: center;
    padding: 10px;
    font-size: 13px;
    max-width: fit-content;
    gap: 5px;
    border-radius: 12px;

    position: absolute; /* position relative to parent */
    top: 0; /* stick to top */
    left: 0; /* stick to left */
}

.scrollNavigation p{
    margin: 0;
}
.scroll {
    width: 700px;
    border: 2px solid #daa74b;
    height: auto;
    padding: 10px;
    font-size: 13px;
    position: relative;
}
.scroll div{
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
.scrollLogo img{
    height: 45px;
}
.scrollContent {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start !important;
}
.scrollContent p{
    margin: 0;
}
.footerDetails, .footercompany {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}
/* [SECTION: mobile] */
@media (max-width: 768px){
    .scroll {
        width: 100%;
    }
    .content {
        padding: 0px;
    }
}