@font-face {
    font-family: 'Roc Grotesk';
    src: url(rocgrotesk-regular.otf);
    font-weight: 400;
}

@font-face {
    font-family: 'Biosans';
    src: url(BioSans-Regular.otf);
    font-weight: 400;
}

:root {
    --basic-text: rgba(17, 17, 17, 1);
    --light-gray: rgba(238, 238, 238, 1);
    --marian-blue: rgba(17, 66, 137, 1);
}

html {
    scroll-behavior: smooth;
}

* {
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Biosans', sans-serif;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Roc Grotesk', sans-serif;
}


#mobile-burger-button,
#mobile-burger-button:active,
#mobile-burger-button:focus,
#mobile-burger-button:hover {
    border: none;
    outline: none;
    background-color: transparent;
    box-shadow: none;
}

#mobile-burger-button {
    padding: 0;
}

#header-account-button {
    color: var(--basic-text);
    text-decoration: none;
}

#navbar {
    background-color: white;
    box-shadow: 0 24px 48px rgba(0, 0, 0, 0.08);
}

#navbar a {
    color: var(--basic-text);
}

@media screen and (min-width: 992px) {
    .navbar-nav {
        margin-right: 96px;
    }
}

@media screen and (max-width: 991px) {
    .navbar-nav a {
        text-align: center;
    }
}



/* 
    ##########################
    INIZIO CSS SPECIFICO PAGINA 
    ##########################
*/

.line-spacer {
    border-bottom: 1px solid rgba(238, 238, 238, 1);
}

#faq-wrapper {
    max-width: 1100px;
    margin-left: auto;
    margin-right: auto;
}

.accordion-item {
    border: none;
}

.accordion-button {
    font-size: 18px;
    line-height: 24px;
    color: var(--basic-text);
    padding-top: 0;
    padding-bottom: 0;
}

.accordion-button:not(.collapsed) {
    color: var(--basic-text);
    background-color: transparent;
    box-shadow: none;
}

.accordion-body {
    font-size: 14px;
    line-height: 18px;
    color: var(--basic-text);
}

.accordion {
    border-bottom: 1px solid var(--light-gray);
}

.accordion-button::after {
    width: 40px;
    height: 40px;
    background-image: url(assets/icon-plus.svg);
    background-size: cover;
}

.accordion-button:not(.collapsed)::after {
    width: 40px;
    height: 40px;
    background-image: url(assets/icon-less.svg);
    background-size: cover;
}

.accordion-button:focus {
    box-shadow: none;
}
#terms-wrapper {
    border-top: 1px solid var(--light-gray);
}

#terms-sidebar {
    border-right: 1px solid var(--light-gray);
}

.circle-num {
    width: 40px;
    height: 40px;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    font-size: 18px;
    line-height: 24px;
    background-color: var(--light-gray);
    padding: 12px;
    border-radius: 50px;
    margin-right: 14px;
    flex-shrink: 0;
}

#terms-sidebar .circle-num {
    color: var(--marian-blue);
}

#terms-sidebar a {
    display: flex;
    align-items: center;
    font-family: 'Roc Grotesk', sans-serif;
    font-size: 14px;
    text-decoration: none;
    color: var(--marian-blue);
}

#terms-sidebar li {
    padding: 8px 0;
    border-bottom: 1px solid var(--light-gray);
}

.text-spacer {
    border-bottom: 1px solid var(--light-gray);
}

#terms-content h3 {
    font-size: 14px;
}

#terms-content p {
    font-size: 14px;
    line-height: 18px;
}

.back-to-top {
    color: var(--marian-blue);
    text-decoration: none;
    font-family: 'Roc Grotesk', sans-serif;
    font-size: 18px;
    line-height: 40px;
}

#terms-content article {
    border-bottom: 1px solid var(--light-gray);
    margin-bottom: 2em;
}

@media screen and (min-width: 992px) {
    #terms-content>div {
        max-width: 560px;
        margin-left: auto;
        margin-right: auto;
    }
}