* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --font-Ubuntu: 'Ubuntu', sans-serif;
    --font-Adlam: 'Adlam';
    --clr-primary: #008FBE;
    --clr-success: #28A745;
    --clr-warning: #FFC100;
    --clr-danger: #FF0000;
    --clr-white: #fff;
    --clr-black: #000;
    --clr-dark: #212529;
    --clr-border: #DFE6ED;
    --clr-grey: #F9FAFF;
    --clr-paragraph: #68717A;
    --clr-title-landing: #384A59;
    --card-steps-height: 40vw;
    --card-steps-margin: 4vw;
    --card-steps-top-offset: 1em;
    --accordion-icon: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' stroke='%23000' fill='%23212529'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
    --accordion-icon-active: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' stroke='%23000' fill='%23212529'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}

@font-face {
    font-family: 'Adlam';
    src: url('../fonts/ADLaMDisplay-Regular.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
    font-display: block;
}

@font-face {
    font-family: 'Ubuntu';
    src: url('../fonts/Ubuntu-Bold.woff2') format('woff2');
    font-weight: 600;
    font-style: normal;
    font-display: block;
}

@font-face {
    font-family: 'Ubuntu';
    src: url('../fonts/Ubuntu-BoldItalic.woff2') format('woff2');
    font-weight: 600;
    font-style: italic;
    font-display: block;
}

@font-face {
    font-family: 'Ubuntu';
    src: url('../fonts/Ubuntu-Italic.woff2') format('woff2');
    font-weight: 400;
    font-style: italic;
    font-display: block;
}

@font-face {
    font-family: 'Ubuntu';
    src: url('../fonts/Ubuntu-Light.woff2') format('woff2');
    font-weight: 300;
    font-style: normal;
    font-display: block;
}

@font-face {
    font-family: 'Ubuntu';
    src: url('../fonts/Ubuntu-LightItalic.woff2') format('woff2');
    font-weight: 300;
    font-style: italic;
    font-display: block;
}

@font-face {
    font-family: 'Ubuntu';
    src: url('../fonts/Ubuntu-Medium.woff2') format('woff2');
    font-weight: 500;
    font-style: normal;
    font-display: block;
}

@font-face {
    font-family: 'Ubuntu';
    src: url('../fonts/Ubuntu-MediumItalic.woff2') format('woff2');
    font-weight: 500;
    font-style: italic;
    font-display: block;
}

@font-face {
    font-family: 'Ubuntu';
    src: url('../fonts/Ubuntu-Regular.woff2') format('woff2');
    font-weight: 400;
    font-style: normal;
    font-display: block;
}

@font-face {
    font-family: 'Blisspro';
    src: url('../fonts/BlissPro-Medium.woff2') format('woff2');
    font-weight: 500;
    font-style: normal;
    font-display: block;
}

html {
    height: 100%;
    overflow: hidden;
}

body {
    display: flex;
    flex-direction: column;
    height: 100%;
    font-family: var(--font-Ubuntu);
    background-color: var(--clr-white);
}

/* LAYOUT */

.layout {
    display: grid;
    grid-template-columns: 19rem 1fr;
    grid-template-rows: auto 1fr;
    height: 100vh;
}

@media (width > 1850px) {
    .layout {
        grid-template-columns: 22rem 1fr;
    }
}

.layout > header {
    grid-column: 1 / -1;
    margin-bottom: .5rem;
}

.layout > aside {
    --bs-gutter-x: 1.5rem;
    --bs-gutter-y: 0;
    width: 100%;
    padding-inline: calc(var(--bs-gutter-x) * .5);
    padding-block: 0 1.5rem;
    margin-inline: auto;
    display: flex;
    flex-direction: column;
    gap: 1.5rem
}

.layout main {
    height: 100%;
    overflow-y: auto;
    scroll-behavior: smooth;
    scrollbar-gutter: stable;
    padding-bottom: 1.5rem;
}

@media (width > 992px) and (height < 992px) {
    .layout > aside .card.data-classroom {
        flex-grow: 1;
        height: 5rem;
    }
}

@media (width > 992px) and (height < 700px) {
    html {
        overflow: auto;
    }

    .layout {
        height: auto;
    }

        .layout > aside .card.data-classroom {
            flex: 0 0 auto;
            height: auto;
        }
}

@media (width < 992px) {
    html:not(:has(header .navbar-collapse.show)) {
        overflow: auto;
    }

    .layout {
        display: flex;
        flex-direction: column;
        height: initial;
    }

        .layout main {
            overflow: initial;
            order: 1;
            padding-top: 5.5rem;
        }

        .layout aside {
            order: 2;
        }

    .data-classroom .img-container {
        padding: 1.5rem 1.5rem 0 1.5rem;
    }

        .data-classroom .img-container img {
            width: 100%;
            border-radius: .5rem;
        }
}

section {
    padding-block: 3rem;
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
main,
menu,
nav,
section,
summary {
    display: block;
    margin-bottom: 0px;
}

/* TITLES */

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-Ubuntu);
    color: var(--clr-black);
    line-height: 1.2;
    margin: 0;
}

h1 {
    font-size: clamp(2.25rem, 1.5rem + 2vw, 3rem);
}

h2 {
    font-size: clamp(2rem, 1.4rem + 1.8vw, 2.5rem);
}

h3 {
    font-size: clamp(1.75rem, 1.2rem + 1.5vw, 2rem);
}

h4 {
    font-size: clamp(1.25rem, .9rem + 0.8vw, 1.4rem);
}

h5 {
    font-size: clamp(1.125rem, .9rem + 0.8vw, 1.25rem);
}

h6 {
    font-size: clamp(1rem, .85rem + 0.5vw, 1.125rem);
}

p {
    color: var(--clr-paragraph);
    font-size: .9375rem;
}

.lead {
    font-size: 1rem;
    font-weight: 200;
    color: var(--clr-paragraph);
}

/* COLORS */

.clr-primary {
    color: var(--clr-primary);
}

.clr-success {
    color: var(--clr-success);
}

.clr-danger {
    color: var(--clr-danger);
}

.clr-white {
    color: var(--clr-white);
}

.clr-black {
    color: var(--clr-black);
}

.clr-dark {
    color: var(--clr-dark);
}

.clr-border {
    color: var(--clr-border);
}

.clr-grey {
    color: var(--clr-grey);
}

.fw-black {
    font-weight: 900;
}

.fw-extra-bold {
    font-weight: 800;
}

.fw-medium {
    font-weight: 500;
}

.fw-extra-light {
    font-weight: 200;
}

/* BACKGROUNDS */

.bg-grey {
    background-color: var(--clr-grey);
}

/* BUTTONS */

.btn-primary:active:hover,
.btn-primary.active:hover,
.open > .dropdown-toggle.btn-primary:hover,
.btn-primary:active:focus,
.btn-primary.active:focus,
.open > .dropdown-toggle.btn-primary:focus,
.btn-primary:active.focus,
.btn-primary.active.focus,
.open > .dropdown-toggle.btn-primary.focus {
    color: var(--clr-white);
    background: var(--clr-primary);
    border-color: var(--clr-primary);
}

.btn {
    font-family: var(--font-Ubuntu);
    font-size: .9375rem;
    font-weight: 500;
    line-height: 100%;
    padding: .75rem 1rem;
    border-radius: .25rem;
    text-align: center;
    border: 1px solid transparent;
    background-size: 300% 100%;
    transition: all .25s ease-in-out;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: .25rem;
    box-shadow: unset;
    white-space: nowrap;
}

    .btn.btn-lg {
        padding: 1.5rem 1.25rem;
    }

    .btn.btn-md {
        padding: .75rem 1.25rem;
    }

    .btn.btn-sm {
        font-size: .75rem;
    }

    .btn.btn-square {
        width: 2.9rem;
        height: 2.9rem;
        padding: 0;
        display: grid;
        place-items: center;
    }

    .btn:hover {
        background-position: 100% 0;
        border-color: transparent;
        color: inherit;
        transition: all .25s ease-in-out;
    }

    .btn:focus {
        outline: none;
    }

    .btn:active {
        transform: scale(0.99);
    }

    .btn:focus-visible {
        color: unset;
        background: unset;
        box-shadow: none;
    }

    .btn:first-child:active,
    :not(.btn-check) + .btn:active {
        color: var(--clr-white);
    }

        .btn:first-child:active:focus-visible {
            box-shadow: unset;
        }

    .btn.btn-primary {
        --bs-btn-bg: unset;
        color: var(--clr-white);
        --bs-btn-hover-bg: var(--clr-primary);
        background-image: linear-gradient(to right, #0095c6, #008FBE, #009dd1, #0094c5);
    }

        .btn.btn-primary:hover {
            color: var(--clr-white);
        }

        .btn.btn-primary:first-child:active {
            color: var(--clr-white);
            border-color: transparent;
            background-image: linear-gradient(to right, #0095c6, #008FBE, #009dd1, #0094c5);
        }

    .btn.btn-primary-outline {
        color: var(--clr-primary);
        --bs-btn-hover-bg: var(--clr-primary);
        background: transparent;
        border: 1px solid var(--clr-border);
        box-shadow: none;
    }

        .btn.btn-primary-outline:hover {
            color: var(--clr-primary);
            background: transparent;
        }

        .btn.btn-primary-outline:first-child:active {
            color: var(--clr-primary);
            border-color: var(--clr-primary);
        }

    .btn.btn-secondary {
        --bs-btn-bg: unset;
        color: var(--clr-primary);
        --bs-btn-hover-bg: var(--clr-primary);
        --bs-btn-active-bg: transparent;
        background-image: linear-gradient(to right, #e0f3fa, #dcf5fe, #E6F4F9, #dbf2fb);
    }

        .btn.btn-secondary:hover,
        .btn.btn-secondary:active {
            color: var(--clr-primary);
            border-color: transparent;
            --bs-border-color: transparent;
        }

    .btn.btn-danger-outline {
        color: var(--clr-danger);
        background-image: linear-gradient(to right, #ffe7e7, #FFE6E6, #FFEBEB, #ffe7e7);
    }

        .btn.btn-danger-outline:active {
            color: var(--clr-danger);
            border-color: transparent;
        }

    .btn.btn-light,
    .btn.btn-light:active {
        color: var(--clr-black);
        background-image: linear-gradient(to right, #f7f8fb, #f5f6f9, #F6F7FB, #f6f7fc);
        border-color: transparent;
    }

        .btn.btn-light:hover,
        .btn.btn-light:focus {
            border-color: transparent;
        }

    .btn.btn-link,
    .btn.btn-link:active {
        text-decoration: none;
        color: #008FBE;
    }

        .btn.btn-link:hover,
        .btn.btn-link:focus {
            text-decoration: underline;
            border-color: transparent;
        }

/* FORMS */

label.form-label {
    padding-left: .25rem;
    color: var(--clr-black);
    font-weight: 400;
    font-size: .875rem;
    line-height: 1;
}

input.form-control {
    padding: .563rem .9375rem;
    border: 1px solid var(--clr-border);
    font-size: var(--clr-black);
    border-radius: .25rem;
    font-size: .875rem;
}

    input.form-control:focus {
        border-color: var(--clr-black);
        box-shadow: unset;
        outline: 0;
    }

    input.form-control::placeholder {
        color: #ABB5BE82;
        font-weight: 400;
        font-style: italic;
    }

input.form-control-plaintext {
    font-style: italic;
    font-size: 1rem;
    font-weight: 200;
    padding: 0 0 0 .25rem;
    color: var(--clr-grey);
    display: block;
}

input[disabled]::placeholder {
    font-weight: 300;
    color: var(--clr-dark);
}

select.form-select {
    padding: .563rem .9375rem;
    border: 1px solid var(--clr-border);
    border-radius: .25rem;
    font-size: .875rem;
    color: var(--clr-black);
    font-weight: 300;
    min-width: 6rem;
}

    select.form-select:focus {
        border-color: var(--clr-black);
        box-shadow: unset;
        outline: 0;
    }

    select.form-select::placeholder {
        font-weight: 300;
        color: var(--clr-dark);
    }

.form-check-input {
    border: 1px solid var(--clr-border);
}

    .form-check-input:focus {
        border-color: var(--clr-primary);
        outline: 0;
        box-shadow: 0 0 0 0.2rem rgb(0, 143, 190, .25);
    }

    .form-check-input:checked {
        background-color: var(--clr-primary);
        border-color: rgb(0, 143, 190, .25);
    }

.form-check-label {
    font-weight: 300;
    font-size: .8125rem;
    color: var(--clr-paragraph);
    display: inline-block;
}

.form-switch .form-check-input {
    background-color: var(--clr-danger);
    border-color: var(--clr-danger);
    cursor: pointer;
}

    .form-switch .form-check-input:not(:checked) {
        background-position: left center;
        background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3e%3ccircle r='3' fill='%23fff'/%3e%3c/svg%3e")
    }

    .form-switch .form-check-input:checked {
        background-color: var(--clr-success);
        border-color: var(--clr-success);
    }

    .form-switch .form-check-input:not(:checked):focus {
        border-color: var(--clr-danger);
        outline: 0;
        box-shadow: 0 0 0 0.2rem rgba(255, 0, 0, 0.25);
    }

    .form-switch .form-check-input:checked:focus {
        border-color: var(--clr-success);
        outline: 0;
        box-shadow: 0 0 0 0.2rem #28a7463f;
    }

small.form-text {
    font-weight: 300;
    font-size: .8125rem;
    padding-left: .25rem;
    color: var(--clr-paragraph);
    margin-top: .5rem;
    display: block;
}

    small.form-text a {
        color: var(--clr-primary);
        text-decoration: none;
    }

/* MODALS */

.modal-backdrop {
    --bs-backdrop-bg: var(--clr-white);
    --bs-backdrop-opacity: 0;
    background-color: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(0);
    transition: .1s opacity linear;
}

    .modal-backdrop.show {
        opacity: 1;
        backdrop-filter: blur(3px);
        transition: .1s opacity linear;
    }

.modal.modal-dialog {
    transform: unset;
    transition: transform .25s linear;
}

.modal.modal-static .modal-dialog {
    transform: scale(0.98);
    transition: transform .25s linear;
}

.modal-content {
    border: 0;
    box-shadow: unset;
}

    .modal-content .modal-header {
        border: 0;
        background: var(--clr-primary);
        align-items: flex-start;
        min-height: 5rem;
    }

        .modal-content .modal-header.bg-school {
            min-height: 8rem;
        }

        .modal-content .modal-header.bg-school {
            background: url(../img/modal-bg.svg) no-repeat center/cover;
        }

        .modal-content .modal-header .btn-close {
            background: url("../img/close-red.svg") center/1em auto no-repeat;
        }

            .modal-content .modal-header .btn-close.white {
                background: url('../img/close-white.svg') center/1em auto no-repeat;
            }

            .modal-content .modal-header .btn-close:focus {
                box-shadow: none;
                border: 0;
            }

    .modal-content .modal-body {
        padding-top: 1.5rem;
        border-inline: 1px solid var(--clr-border);
    }

    .modal-content p {
        margin: 0;
        font-weight: 300;
        font-size: 1.125rem;
        color: var(--clr-paragraph);
    }

        .modal-content p span {
            color: var(--clr-primary);
            font-style: italic;
            font-weight: 500;
        }

    .modal-content .modal-footer {
        border: 1px solid var(--clr-border);
    }

.modal .tab-content {
    min-height: 250px;
}

.modal.message {
    border: 1px solid var(--clr-border);
}

    .modal.message .modal-content {
        border: 1px solid var(--clr-border);
        box-shadow: none;
    }

        .modal.message .modal-content .modal-header {
            background: var(--clr-white);
        }

/* NAV TABS */

.nav-tabs {
    border-color: var(--clr-border);
    margin-bottom: 1.25rem;
}

    .nav-tabs .nav-link {
        color: #CED4DA;
        padding: .75rem 1.5rem;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: .5rem;
        line-height: 1;
        font-size: .9375rem;
    }

        .nav-tabs .nav-link.active {
            color: var(--clr-primary);
            text-shadow: 0.02em 0 currentColor, -0.02em 0 currentColor;
        }

        .nav-tabs .nav-link span {
            color: #CED4DA;
            background: #F2F4F5;
            font-size: .8125;
            width: 1.125rem;
            height: 1.125rem;
            border-radius: 100%;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .nav-tabs .nav-link.active span {
            color: var(--clr-primary);
            background: #E6F4F9;
        }

    .nav-tabs + .tab-content {
        padding-inline: .5rem;
    }

.nav-pills {
    gap: 0 3rem;
}

    .nav-pills .nav-link {
        background: transparent;
        color: #CED4DA;
        font-weight: 400;
        font-size: .9375rem;
        line-height: 1.5;
        user-select: none;
        padding: .625rem 0;
        display: flex;
        gap: .375rem;
        cursor: initial;
        display: flex;
        align-items: center;
    }

        .nav-pills .nav-link span {
            border-radius: 100%;
            background: #F2F4F5;
            display: flex;
            align-items: center;
            justify-content: center;
            width: 1.25rem;
            height: 1.25rem;
        }

        .nav-pills .nav-link.active {
            font-weight: 500;
            background: transparent;
            color: var(--clr-primary);
            font-size: .875rem;
        }

            .nav-pills .nav-link.active span {
                font-weight: 500;
                background: #D9EEF5;
                color: var(--clr-primary);
            }

/* TABLES */

.table > :not(caption) > * > * {
    vertical-align: middle;
    white-space: nowrap;
    color: var(--clr-black);
    padding: .625rem;
    text-align: left;
    line-height: 1.75;
}

th {
    font-weight: 500;
    font-size: .9375rem;
    color: var(--clr-black);
}

td {
    font-size: .9375rem;
    border-bottom: 1px solid #ddd;
    padding: .625rem .25rem;
}

    td .chip {
        width: 100%;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: .25rem;
        padding: .25rem .5rem;
        border-radius: .1875rem;
        font-size: .8125rem;
        color: var(--clr-success);
        background: #EAF7ED;
        text-transform: uppercase;
    }

        td .chip.mistakes {
            color: var(--clr-danger);
            background-color: #FFECEE;
        }

tr:last-child td {
    border-bottom: 1px solid transparent;
}

tbody tr:hover {
    background: var(--clr-grey);
}

tr a {
    text-decoration: none;
    ;
}

    tr a:hover {
        text-decoration: underline;
    }

table.first-col-sticky :is(td:first-child, th:first-child) {
    position: sticky;
    left: 0;
    background: #fff;
    z-index: 1;
}

table.first-row-sticky th {
    position: sticky;
    top: 0;
    background: var(--clr-white);
    z-index: 1;
}

.remove-hover tbody tr:hover {
    background: #fff;
}

@media (width > 992px) {
    table.first-col-sticky.remove-hover tr:hover :is(td:first-child) {
        background: unset;
    }

    table.first-col-sticky tr:hover :is(td:first-child) {
        background: var(--clr-grey);
    }
}


@media (width > 1400px) {
    table .text-truncate {
        max-width: 10rem;
    }
}

@media (width < 1400px) {
    table .text-truncate {
        max-width: 5rem;
    }
}

@media (width < 992px) {
    table .text-truncate {
        max-width: unset;
    }

    tbody tr:hover {
        background: transparent;
    }
}

/* CARD */

.card {
    border-color: var(--clr-border);
    border-radius: .625rem;
}

    .card .card-header {
        padding: 2rem 0;
        background: var(--clr-white);
        display: flex;
        align-items: flex-start;
        justify-content: space-between;
        border: 0;
        gap: 2rem;
    }

        .card .card-header .title {
            flex-grow: 1;
        }

            .card .card-header .title h4 {
                margin-bottom: .25rem;
            }

        .card .card-header .actions {
            display: flex;
            align-items: center;
            flex-wrap: nowrap;
            gap: .625rem;
        }

@media (width < 992px) {
    .card .card-header {
        flex-direction: column;
    }

        .card .card-header .actions {
            width: 100%;
            flex-wrap: wrap;
        }
}

@media (width < 576px) {
    .card .card-header .actions > * {
        width: 100%;
    }
}

/* GRID */

.grid-container {
    display: grid;
    gap: 1.25rem;
    padding-block: 1.5rem;
    grid-template-columns: repeat(auto-fill, minmax(285px, 1fr));
}

    .grid-container .grid-item {
        width: 100%;
        height: auto;
    }

/* HEADER */

header .navbar {
    padding-block: 0;
    margin: 0;
    background-color: var(--clr-white);
}

header .navbar-brand img {
    width: 10rem;
}

.navbar-toggler:focus {
    box-shadow: unset;
}

header .nav-link:not(.btn),
header .nav-link.dropdown-toggle {
    font-size: 1rem;
    line-height: 1.125rem;
    padding: 1rem .375rem;
    background: transparent;
    color: var(--clr-black);
    cursor: pointer;
    text-align: center;
}

header .dropdown-toggle {
    width: fit-content;
}

    header .dropdown-toggle::after {
        display: none;
    }

header nav .dropdown .dropdown-menu {
    list-style: none;
    margin: 0;
    border-radius: .625rem;
    padding: 1.5rem;
    border: 1px solid var(--clr-border);
    background: var(--clr-white);
    z-index: 1;
    right: 0;
    text-align: left;
    display: none;
}

header nav .dropdown-menu li {
    position: relative;
}

header .nav-item h6 {
    color: var(--clr-primary);
    background: transparent;
    font-weight: 500;
    font-style: italic;
    font-size: 1.25rem;
    cursor: auto;
    padding-bottom: .5rem;
    margin: 0;
}

header li:hover h6 {
    background: transparent;
    color: var(--clr-primary);
}

header nav .dropdown-menu li a:not(.btn) {
    color: #808080;
    font-size: .9rem;
    font-weight: 200;
    text-decoration: none;
    padding-block: .25rem;
    display: block;
}

header nav .dropdown-menu li:hover a:not(.btn) {
    color: var(--clr-primary);
    background-color: transparent;
}

header nav .dropdown-item {
    padding: 0;
}

    header nav .dropdown-item:hover {
        background: unset;
    }

header nav h6.dropdown-item:hover {
    background: unset;
    color: var(--clr-primary);
}

header .dropdown-menu.show {
    width: fit-content;
}

header .dropdown-menu[data-bs-popper] {
    left: unset;
}

header nav .dropdown:hover .dropdown-menu {
    display: block;
}

header nav .nav-item:hover .nav-link {
    color: var(--clr-primary);
}

header nav .avatar .dropdown-menu {
    width: 17rem;
    left: -12rem;
}

header .navbar-expand-lg .avatar .dropdown-toggle {
    height: 3rem;
    padding-block: 0;
    display: flex;
    align-items: center;
    gap: .25rem;
}

    header .navbar-expand-lg .avatar .dropdown-toggle span {
        height: 2.75rem;
        width: 2.75rem;
        border-radius: 100%;
        display: flex;
        align-items: center;
        justify-content: center;
        background-color: var(--clr-primary);
        color: var(--clr-white);
        font-size: 1.1rem;
        font-weight: 700;
        text-transform: uppercase;
    }

header .classroom li:not(:first-child, :last-child) {
    padding: .5rem;
    border-radius: .3125rem;
    cursor: pointer;
}

header .classroom li i {
    padding-top: .3125rem;
    font-size: 1rem;
}

header .classroom li p {
    color: var(--clr-black);
    font-weight: 500;
    font-size: .875rem;
}

header .classroom li small {
    color: var(--clr-black);
    font-size: .875rem;
}

header .classroom li:hover small {
    color: var(--clr-black);
    font-size: .875rem;
}

header .classroom li:not(:first-child, :last-child):hover {
    background: var(--clr-grey);
}

@media (width > 992px) {
    header .navbar-brand {
        padding-block: .5rem;
    }

    .navbar-expand-lg .navbar-nav .nav-link {
        padding: .8rem .75rem;
    }
}

@media (width < 992px) {
    header {
        position: fixed;
        top: 0;
        z-index: 2;
        width: 100%;
    }

        header .container-fluid {
            padding-inline: 0;
        }

        header .navbar-brand {
            margin-left: .5rem;
        }

        header .navbar-toggler {
            margin-right: .5rem;
        }

        header .navbar {
            display: flex;
            align-items: center;
            padding-block: 0;
        }

        header .navbar-collapse .nav-item a {
            text-align: left;
        }

        header nav .dropdown .dropdown-menu {
            padding: 0 .5rem .5rem;
            border: 0;
            display: block;
        }

        header .navbar-collapse {
            overflow-y: auto;
            padding-inline: .5rem;
            max-height: calc(100vh - 71px);
            scroll-behavior: smooth;
            scrollbar-gutter: stable;
        }

            header .navbar-collapse > .navbar-nav {
                padding-block: 1rem 4rem;
            }

        header .navbar-nav li.nav-item:last-child {
            padding-top: 8px;
            width: 100%;
        }

        header .classroom {
            width: 100%;
        }

        header .nav-item .nav-link {
            color: #808080;
            font-size: .9rem;
            font-weight: 200;
            text-decoration: none;
            padding: .25rem 0;
            display: block;
        }

        header a.nav-link.dropdown-toggle,
        header .avatar a.nav-link.dropdown-toggle {
            display: none;
        }
}

/* STATUS */

.status {
    border-radius: 1rem;
    padding: .125rem .375rem;
    font-size: .75rem;
    height: fit-content;
    line-height: 1;
    margin-inline: .5rem;
}

    .status.completed {
        color: var(--clr-success);
        background: #EAF7ED;
    }

    .status.pending {
        color: var(--clr-warning);
        background: #ffffdb;
    }

    .status.not-initiated {
        color: var(--clr-black);
        background: #F6F7FB;
    }

.performance {
    padding: .125rem .5rem;
    border-radius: .25rem;
    display: inline-block;
    text-align: center;
    min-width: 3.75rem;
}

    .performance.up {
        color: var(--clr-success);
        background: #EAF7ED;
    }

    .performance.down {
        color: var(--clr-danger);
        background: #FFECEE;
    }

    .performance.neutral {
        color: var(--clr-warning);
        background: #FFFFEB;
    }

    .performance i {
        font-size: .75rem;
    }

    .performance.down i {
        rotate: 180deg;
    }

/* HAMBURGER */

.hamburger {
    padding: .75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition-property: opacity, filter;
    transition-duration: 0.15s;
    transition-timing-function: linear;
    font: inherit;
    color: inherit;
    text-transform: none;
    background-color: transparent;
    margin: 0;
    overflow: visible;
}

    .hamburger:hover {
        opacity: 0.7;
    }

    .hamburger.is-active:hover {
        opacity: 0.7;
    }

    .hamburger.is-active .hamburger-inner,
    .hamburger.is-active .hamburger-inner::before,
    .hamburger.is-active .hamburger-inner::after {
        background-color: #ff0000;
    }

.hamburger-box {
    width: 30px;
    height: 24px;
    display: inline-block;
    position: relative;
}

.hamburger-inner {
    display: block;
    top: 50%;
    margin-top: -2px;
}

    .hamburger-inner,
    .hamburger-inner::before,
    .hamburger-inner::after {
        width: 30px;
        height: 4px;
        background-color: #000;
        border-radius: 4px;
        position: absolute;
        transition-property: transform;
        transition-duration: 0.15s;
        transition-timing-function: ease;
    }

        .hamburger-inner::before,
        .hamburger-inner::after {
            content: "";
            display: block;
        }

        .hamburger-inner::before {
            top: -10px;
        }

        .hamburger-inner::after {
            bottom: -10px;
        }


.hamburger--slider .hamburger-inner {
    top: 2px;
}

    .hamburger--slider .hamburger-inner::before {
        top: 10px;
        transition-property: transform, opacity;
        transition-timing-function: ease;
        transition-duration: 0.15s;
    }

    .hamburger--slider .hamburger-inner::after {
        top: 20px;
    }

.hamburger--slider.is-active .hamburger-inner {
    transform: translate3d(0, 10px, 0) rotate(45deg);
}

    .hamburger--slider.is-active .hamburger-inner::before {
        transform: rotate(-45deg) translate3d(-5.71429px, -6px, 0);
        opacity: 0;
    }

    .hamburger--slider.is-active .hamburger-inner::after {
        transform: translate3d(0, -20px, 0) rotate(-90deg);
    }

/* BANNERS */

.banner-academia {
    padding: 2rem 1.5rem 1.5rem 1.5rem;
    overflow: hidden;
}

    .banner-academia img {
        position: absolute;
        width: 3rem;
        top: 0;
        right: -1px;
    }

    .banner-academia h5 {
        font-size: 1.25rem;
    }

    .banner-academia p {
        font-size: .9375rem;
        margin-bottom: 1rem;
        color: var(--clr-paragraph);
    }

    .banner-academia .btn {
        padding: 0;
        width: fit-content;
        font-size: .9375rem;
    }

.banner-grey {
    border-radius: .25rem;
    background: var(--clr-grey);
    padding-right: .5rem;
}

    .banner-grey h6 {
        font-size: 1rem;
        font-weight: 500;
        line-height: 1.4rem;
        color: var(--clr-black);
        margin-bottom: .25rem;
    }

    .banner-grey p {
        font-size: .875rem;
        font-weight: 300;
        line-height: 1.25rem;
    }

    .banner-grey a {
        color: var(--clr-primary);
        font-size: .875rem;
        font-weight: 500;
        line-height: 1.25rem;
        text-decoration: none;
    }

/* SHOW INPUT */

.show-input:not(:has(input:checked)) div:last-child {
    opacity: 0;
    transition: opacity .2s linear;
}

.show-input:has(input:checked) div:last-child {
    opacity: 1;
    transition: opacity .2s linear;
}

/* DATA CLASSROOM */

.data-classroom {
    overflow: hidden;
}

    .data-classroom .img-container {
        aspect-ratio: 4/3
    }

    .data-classroom h4 {
        font-family: var(--font-Adlam);
    }

    .data-classroom .card-body {
        display: flex;
        flex-direction: column;
        height: 100%;
        padding: 0;
    }

    .data-classroom .btn-link {
        font-size: .9375rem;
    }

    .data-classroom ul {
        list-style: none;
    }

        .data-classroom ul label {
            margin-bottom: .375rem;
        }

        .data-classroom ul p {
            font-size: .9375rem;
            font-weight: 300;
            line-height: 1.25;
            color: var(--clr-paragraph);
            margin-bottom: 1.5rem;
        }

@media (width > 992px) and (height < 700px) {
    .card.data-classroom ul {
        height: auto;
        overflow-y: auto;
        scrollbar-gutter: stable;
    }
}

@media (width > 700px) and (height < 992px) {
    .card.data-classroom ul {
        flex-grow: 1;
        height: 10rem;
        overflow: auto;
    }
}

@media (width > 992px) and (height < 992px) {
    .card.data-classroom ul::-webkit-scrollbar {
        width: .5rem;
        visibility: hidden;
    }

    .card.data-classroom ul:hover::-webkit-scrollbar {
        visibility: visible;
    }

    .card.data-classroom ul::-webkit-scrollbar-track {
        background: transparent;
        visibility: hidden;
    }

    .card.data-classroom ul::-webkit-scrollbar-thumb {
        background: var(--clr-border);
        border-radius: 1rem;
    }
}

/* TOOLTIP */

.fa-circle-info {
    color: var(--clr-primary);
}

.tooltip-inner {
    text-align: left;
    max-width: 20rem;
}

/* DATA CLASSROOM */

.stats-preview {
    display: flex;
    gap: .75rem;
    margin-bottom: 2rem;
    min-height: 8rem;
}

    .stats-preview > * {
        border: 1px solid var(--clr-border);
        padding: 1rem 1.5rem;
        border-radius: .625rem;
        display: flex;
    }

    .stats-preview .corrects {
        flex-direction: column;
        justify-content: flex-end;
        min-width: 18rem;
    }

    .stats-preview .mistakes {
        flex-grow: 1;
        align-items: flex-end;
        gap: 6rem;
    }

    .stats-preview .details {
        flex-grow: 1;
        flex-wrap: wrap;
        gap: .5rem;
        white-space: nowrap;
        width: 100%;
        height: 100%;
        margin-inline: 0;
    }

        .stats-preview .details .col {
            display: flex;
            flex-direction: column;
            align-items: flex-start;
            justify-content: flex-end;
            gap: 0;
        }

        .stats-preview .details > * {
            background: var(--clr-grey);
            border-radius: .625rem;
            padding: .5rem 1rem;
            display: flex;
            align-items: center;
            gap: .5rem;
        }

    .stats-preview span {
        font-size: 3.25rem;
        line-height: 125%;
        font-family: var(--font-Adlam);
        color: var(--clr-primary);
    }

    .stats-preview .details span {
        font-family: var(--font-Adlam);
        font-size: 1.75rem;
        line-height: 2rem;
        font-weight: 300;
        color: var(--clr-primary);
    }

    .stats-preview label {
        font-size: 1rem;
        font-weight: 300;
        color: var(--clr-paragraph);
        white-space: nowrap;
    }

    .stats-preview .details label {
        font-size: .9375rem;
        line-height: 1.75rem;
    }

@media (width < 1400px) {
    .stats-preview {
        flex-direction: column;
    }

        .stats-preview .details {
            grid-template-columns: 1fr;
            grid-template-rows: 1fr 1fr 1fr;
        }
}

@media (width < 992px) {
    .stats-preview {
        margin-top: 1.5rem;
        gap: 2rem;
    }

        .stats-preview .mistakes {
            flex-direction: column;
            align-items: flex-start;
            gap: 1rem;
        }

            .stats-preview .mistakes > div:not(.details) {
                display: flex;
                flex-direction: column;
            }

        .stats-preview .details {
            width: 100%;
            flex-direction: column;
            gap: 1rem;
        }
}

@media (width < 576px) {
    .stats-preview > * {
        border: 0;
        padding: 0;
    }

    .stats-preview .corrects {
        min-width: 9rem;
    }
}

/* SPINNER */

.fa-spinner {
    color: var(--clr-primary);
    user-select: none;
}

/* BREADCRUMB */

.breadcrumb {
    padding-left: 1rem;
    ;
}

.breadcrumb-item a {
    color: var(--clr-primary);
    font-weight: 500;
    font-size: 1rem;
    text-decoration: none;
}

    .breadcrumb-item a:hover {
        text-decoration: underline;
    }

.breadcrumb-item.active {
    color: var(--clr-paragraph);
    font-weight: 300;
}

.new-dictaction {
    padding-top: 2rem;
    padding-inline: 2rem;
}

    .new-dictaction .actions {
        display: flex;
        justify-content: end;
        align-items: center;
        flex-wrap: wrap;
        margin-top: 3rem;
        gap: .75rem;
    }

@media (width < 576px) {
    .new-dictaction {
        padding-inline: 0;
    }

        .new-dictaction .actions a {
            width: 100%;
        }
}

/* ADD STUDENT */

.add-student ul {
    display: flex;
    flex-direction: column;
    gap: .5rem;
    padding-left: 0;
    padding-bottom: 1rem;
}

    .add-student ul li {
        list-style: none;
        display: flex;
        flex-wrap: nowrap;
        align-items: center;
        gap: .5rem;
    }

        .add-student ul li .fa-xmark {
            color: var(--clr-danger);
        }


.uploadResults .modal-header {
    min-height: unset;
    display: flex;
    align-items: center;
    padding-block: 1rem;
}

.uploadResults td,
.uploadResults th {
    padding: .25rem 1rem;
}

.uploadResults input[value] {
    text-transform: uppercase;
}

.uploadResults input[type="text"] {
    padding: .15rem .468rem;
    min-width: 7rem;
}

.uploadResults .form-check {
    margin-bottom: 0;
}

.uploadResults.modal {
    --bs-modal-margin: .5rem;
}

@media ( width > 992px) {
    .uploadResults .modal-xl {
        --bs-modal-width: clamp(0px, 95%, 1800px);
    }
}


/* LANDING LAYOUT */

html:has(.landing) {
    overflow: auto;
}

.landing .container {
    max-width: 75rem;
    margin: 0 auto;
}

/* LANDING HEADER */

.landing header {
    font-family: var(--font-Ubuntu);
    margin: 0 auto;
    width: 100%;
    z-index: 1;
}

    .landing header .actions {
        display: flex;
        gap: 1rem;
    }

    .landing header .nav-item:not(.actions) .nav-link {
        color: var(--clr-title-landing);
        padding-inline: .75rem;
    }

        .landing header .nav-item:not(.actions) .nav-link:hover {
            color: var(--clr-primary);
        }

    .landing header .nav-item:hover .btn-primary {
        color: #ffffff;
    }

    .landing header .nav-item:hover .btn.btn-secondary {
        color: var(--clr-primary);
    }

/* LANDING HEADINGS */

.landing h1 {
    font-size: clamp(2.5rem, 1rem + 2vw, 2.9rem);
    font-weight: 500;
    font-family: var(--font-Adlam);
    color: var(--clr-title-landing);
    line-height: 1.2;
    padding-block: 1rem;
}

.landing h2 {
    font-family: var(--font-Adlam);
    font-size: 2rem;
    color: var(--clr-title-landing);
}

.landing h3 {
    font-family: var(--font-Adlam);
    font-size: clamp(1.25rem, 1.5rem + 2vw, 2rem);
    color: var(--clr-title-landing);
}

.landing p {
    font-size: 1.0625rem;
    color: var(--clr-paragraph);
    font-weight: 300;
    line-height: 1.75;
    margin-bottom: 2.5rem;
}

/* LANDING HERO  */

section.hero {
    padding-block: 8rem 9rem;
}

.hero .actions {
    display: flex;
    gap: 1rem;
}

.hero .img-container {
    border-radius: 15rem .5rem .5rem 15rem;
    overflow: hidden;
    width: 100%;
    aspect-ratio: 4/3;
}

.hero .credits {
    text-align: end;
    display: flex;
    font-size: 10px;
    color: #555555;
    justify-content: end;
}

/* LANDING BENEFITS */

section.benefits {
    padding-bottom: 5rem;
}

.benefits .card {
    display: flex;
    align-items: center;
    padding: 0 1.5rem;
    border: 1px solid var(--clr-border);
    border-radius: 1.25rem;
    max-width: 19.5rem;
    height: 100%;
}

.benefits .icon {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 3rem;
}

.benefits i {
    font-size: 7rem;
    color: var(--clr-primary);
}

.benefits h4 {
    font-family: var(--font-Adlam);
    font-size: 1.25rem;
    color: var(--clr-title-landing);
}

.benefits p {
    font-size: 1rem;
    padding-bottom: 2.5rem;
    margin-bottom: 0;
    line-height: 1.75;
}

    .benefits p span {
        font-weight: 600;
        color: var(--clr-primary);
    }

/* LANDING STEPS */

section:has(.steps) {
    padding-block: 5rem 0rem;
}

    section:has(.steps) .heading {
        display: flex;
        flex-direction: column;
        align-items: center;
        margin-bottom: 4rem;
    }

        section:has(.steps) .heading i {
            font-size: 5rem;
            color: var(--clr-primary);
            display: flex;
        }

        section:has(.steps) .heading h2 {
            font-size: clamp(2rem, 2rem + 1vw, 2.75rem);
            margin-block: 2rem 0;
        }

        section:has(.steps) .heading span {
            color: var(--clr-primary);
        }

.steps ul {
    margin: 0;
    padding-bottom: 10rem;
    padding-left: 0;
}

.steps .card {
    overflow: hidden;
    height: auto;
    border: 0;
}

.steps .content {
    border-radius: 2rem;
    border: 1px solid var(--clr-border);
    padding-top: 0;
}

.steps {
    margin: 0 auto;
    text-align: center;
}

    .steps ul {
        list-style: none;
        display: flex;
        flex-direction: column;
        gap: 3rem;
    }

    .steps .content {
        background: var(--clr-white);
        border-radius: 1em;
        overflow: hidden;
        display: grid;
        grid-template-areas:
            "text img";
        grid-template-columns: 1fr 1fr;
        grid-template-rows: auto;
        align-items: stretch;
    }

        .steps .content > div {
            grid-area: text;
            width: 80%;
            place-self: center;
            text-align: left;
            display: grid;
            gap: 1em;
            place-items: start;
        }

        .steps .content > figure {
            grid-area: img;
            overflow: hidden;
            margin: 0;
        }

            .steps .content > figure > img {
                width: 100%;
                height: 100%;
                object-fit: cover;
            }

    .steps .card i {
        font-size: 4.5rem;
        color: var(--clr-primary);
        display: flex;
    }

    .steps .card h3 {
        font-weight: 300;
        font-size: 2.25rem;
        color: var(--clr-title-landing);
    }

    .steps .card p {
        color: var(--clr-paragraph);
        font-size: 1.75rem;
        line-height: 1.25;
        max-width: 30ch;
    }

@media (width > 992px) {
    .steps .content > figure {
        width: 90%;
        margin-left: auto;
    }
}

@media (width < 1400px) {
    section:has(.steps) {
        padding-bottom: 5rem;
    }

    .steps .content > div {
        padding-block: 4rem;
    }

    .steps .card h3 {
        font-size: 2.25rem;
    }
}

@media (width < 992px) {
    .steps ul {
        display: flex;
        flex-direction: column;
    }

    .steps .content {
        display: flex;
        flex-direction: column;
    }

        .steps .content > div {
            padding-block: 2rem;
        }

    .steps .card {
        position: static;
        top: unset;
    }
}

/* LANDING VIDEO */

section:has(.video-dicta) {
    position: relative;
    background: linear-gradient(224deg, rgba(0, 172, 228, 1) 0%, rgba(1, 134, 178, 1) 100%);
    padding-top: 0;
}

.video-dicta {
    display: grid;
    place-items: center;
    position: relative;
    gap: 3rem;
    padding-block: 3rem;
}

    .video-dicta h2 {
        font-size: clamp(2rem, 1.5rem + 1vw, 2.75rem);
        color: var(--clr-white);
        text-align: center;
    }

    .video-dicta i {
        font-size: 4rem;
        color: var(--clr-white);
    }

    .video-dicta iframe {
        width: 100%;
        aspect-ratio: 16/9;
        border-radius: 1rem;
    }

.noise {
    background-image: url(/img/noise.png);
    opacity: .4;
    height: 100%;
    width: 100%;
    position: absolute;
    z-index: 0;
    top: 0;
}

/* LANDING FAQ */

section.faq {
    padding-block: 15rem 4rem;
}

.faq .fa-messages-question {
    font-size: 6rem;
    color: var(--clr-primary);
}


@media (width < 992px) {
    .landing header {
        box-shadow: 0px 4px 10px #f1f1f1;
    }

        .landing header .nav-item:not(.actions) .nav-link {
            font-weight: 900;
            font-size: 1.25rem;
            padding-inline: .25rem;
        }

        .landing header .actions {
            flex-wrap: wrap;
            margin-block: 1rem 0;
        }

        .landing header .navbar-collapse > .navbar-nav {
            padding-block: 1rem;
        }

    section.hero {
        padding-block: 5rem 7rem;
    }

    .hero .img-container {
        border-radius: 2.5rem;
        aspect-ratio: 21/9;
    }
}

@media (width < 576px) {
    section.hero {
        padding-block: 4rem;
    }

    .hero .actions {
        flex-wrap: wrap;
    }

        .hero .actions a {
            flex: 1 1 auto;
        }

    .hero .img-container {
        border-radius: 2rem;
        aspect-ratio: 16/9;
    }

    .video-dicta iframe {
        aspect-ratio: 9/16;
    }
}

/* SOCIAL MEDIA */

section:has(.rrss) {
    padding-block: 10rem;
}

.rrss .frame {
    border-radius: .75rem;
    padding: .75rem;
    background-color: var(--clr-primary, crimson);
}

.rrss {
    display: flex;
    justify-content: space-evenly;
    align-items: center;
}

    .rrss ul {
        display: flex;
        flex-direction: column;
        gap: 24px;
        padding: 8px;
        padding-left: 16px;
        margin: 0;
    }

    .rrss li a {
        all: unset;
        cursor: pointer;
        display: flex;
        flex-wrap: nowrap;
        align-items: center;
        gap: 4px;
    }

    .rrss span {
        font-size: 20px;
    }

    .rrss li p {
        margin-bottom: 0;
        color: rgb(202, 202, 202);
        font-size: 20px;
        font-style: italic;
    }

    .rrss .fa-circle {
        color: rgb(202, 202, 202);
    }

    .rrss li:hover .fa-circle,
    .rrss li:hover p {
        color: var(--clr-primary);
    }

    .rrss .fab {
        color: #fff;
    }

    .rrss .list-inline-item {
        list-style-type: none;
    }

.frame iframe {
    max-width: 100%;
}

@media (max-width: 992px) {
    .rrss li p {
        display: none;
    }

    .rrss {
        flex-direction: column;
    }

        .rrss ul {
            flex-direction: row;
            margin-top: 16px;
            justify-content: space-between;
            gap: 4px;
        }

        .rrss .fa-circle {
            color: var(--clr-primary);
        }

        .rrss .frame {
            display: flex;
            justify-content: center;
        }
}

@media (max-width: 576px) {
    .rrss {
        justify-content: center;
        gap: 16px;
    }
}

@media only screen and (max-width: 400px) {
    .frame {
        padding: 3rem 0.5rem;
    }
}

/* CAROUSEL BRANDS */

.swiper.swiper-logos {
    width: 100%;
    height: 100%;
    cursor: pointer;
    user-select: none;
    position: relative;
}

.swiper-logos:hover .swiper-button-prev,
.swiper-logos:hover .swiper-button-next {
    opacity: .5;
    transition: .25s opacity ease;
}

.swiper.swiper-logos:before,
.swiper.swiper-logos:after {
    content: "";
    position: absolute;
    z-index: 10;
    top: 0;
    width: 8rem;
    height: 7rem;
}

.swiper.swiper-logos:before {
    left: 0;
    background: linear-gradient(90deg, rgba(255, 255, 255, 1) 5%, rgba(255, 255, 255, 0.8435749299719888) 70%, rgba(255, 255, 255, 0) 100%);
}

.swiper.swiper-logos:after {
    right: 0;
    background: linear-gradient(90deg, rgba(255, 255, 255, 0) 5%, rgba(255, 255, 255, 0.8435749299719888) 30%, rgba(255, 255, 255, 1) 100%);
}

.swiper-logos .swiper-slide {
    text-align: center;
    font-size: 18px;
    background: transparent;
    display: flex;
    justify-content: center;
    align-items: center;
    border: 1px solid var(--clr-border);
    border-radius: .5rem;
}

    .swiper-logos .swiper-slide img {
        display: block;
        width: 100%;
        height: auto;
        object-fit: cover;
        border-radius: .5rem;
    }

.swiper-logos .swiper-button-prev {
    opacity: 0;
    transition: .25s opacity ease;
    width: 100px;
    height: auto;
    left: 0;
    color: transparent;
    outline: 0;
    z-index: 11;
}

.swiper-logos .swiper-button-next {
    opacity: 0;
    transition: .25s opacity ease;
    width: 100px;
    height: auto;
    right: 0;
    color: transparent;
    outline: 0;
    z-index: 11;
}

@media (max-width: 600px) {

    .swiper-logos .swiper-button-prev,
    .swiper-logos .swiper-button-next {
        width: 48px;
    }
}

.swiper-logos .swiper-button-prev {
    background-image: url(../img/sliderLeftCircle.svg);
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    color: transparent;
    width: 2.5rem;
    height: 2.5rem;
}

.swiper-logos .swiper-button-next {
    background-image: url(../img/sliderRightCircle.svg);
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    color: transparent;
    width: 2.5rem;
    height: 2.5rem;
}

    .swiper-logos .swiper-button-prev:hover,
    .swiper-logos .swiper-button-next:hover {
        opacity: 1;
    }

    .swiper-logos .swiper-button-next.swiper-button-disabled,
    .swiper-logos .swiper-button-prev.swiper-button-disabled {
        opacity: 0;
    }

/* FOOTER */

footer .footer-top {
    background-color: var(--clr-white);
    margin-top: 6rem;
}

    footer .footer-top .container > .row {
        border-top: 1px solid var(--clr-border);
        padding-block: 5rem 10rem;
    }

.footer-top h3 {
    text-align: left;
    color: var(--clr-title-landing);
    font-family: var(--font-Ubuntu);
    font-size: clamp(1.25rem, 1.25rem + 3vw, 1.5rem);
    font-weight: 500;
    margin-bottom: 2.5rem;
}

.footer-top h4 {
    font-size: 1.06rem;
    font-weight: 400;
    line-height: 1.1;
    color: var(--clr-black);
}

.footer-top .nav > li > a {
    display: block;
    text-decoration: none;
    color: var(--clr-paragraph);
    padding: .25rem 0;
}

    .footer-top .nav > li > a:hover {
        text-decoration: underline;
    }

.footer-top .nav > li:first-child a {
    padding-top: 0;
}

.footer-top .logo {
    max-width: 18rem;
    padding-inline: 2rem;
    margin-bottom: 1.5rem;
    display: flex;
    justify-content: center;
}

    .footer-top .logo img {
        width: 100%;
    }

.footer-top .rrss-icons {
    margin-top: 2rem;
    display: flex;
    width: 100%;
    justify-content: space-between;
}

    .footer-top .rrss-icons .fa-stack {
        display: flex;
        align-items: center;
    }

.footer-top .fa-circle {
    color: #F1F8FA;
    font-size: 2.25rem;
}

.footer-top .fa-inverse {
    color: var(--clr-primary);
    font-size: 1.25rem;
    line-height: 100%;
}

.footer-top small {
    font-size: .9rem;
    font-weight: 200;
}

footer .footer-bottom {
    background-color: var(--clr-white);
    font-size: .9rem;
    padding-block: 1rem;
}

    footer .footer-bottom img {
        width: 1rem;
        height: 1.25rem;
    }

    footer .footer-bottom a {
        color: var(--clr-black);
        text-decoration: none;
        font-weight: 300;
    }

@media (width < 992px) {
    footer .footer-top .container > .row {
        padding-block: 3.5rem 0;
    }

    .footer-top .logo {
        padding-inline: 0;
        max-width: 14rem;
    }
}

/* ACCORDION */

.accordion {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.accordion-body {
    padding-bottom: 2rem;
}

.accordion-item {
    border: 1px solid var(--clr-border);
    border-radius: 1.5rem;
}

    .accordion-item:first-of-type {
        border-radius: 1.5rem;
    }

    .accordion-item:not(:first-of-type) {
        border-top: 1px solid var(--clr-border);
    }

    .accordion-item:last-of-type {
        border-radius: 1.5rem;
    }

.accordion-button {
    font-size: 1.125rem;
    background: transparent;
    color: var(--clr-title-landing);
    padding-block: 1.5rem;
    gap: 1rem;
}

    .accordion-button:not(.collapsed) {
        background: transparent;
        color: var(--clr-title-landing);
        box-shadow: none;
        font-family: var(--clr-title-landing);
    }

    .accordion-button:focus {
        border-color: unset;
        box-shadow: unset;
    }

    .accordion-button:not(.collapsed)::after {
        background-image: var(--accordion-icon-active);
    }

    .accordion-button.collapsed::after {
        background-image: var(--accordion-icon);
    }

/* ACCORDION */

section.faqs {
    padding-block: 8rem 6rem;
}

    section.faqs h2 {
        color: var(--clr-primary);
        line-height: 1.5;
    }



/* CUSTOMIZACIONES */

.btn.disabled {
    border-color: transparent;
}

input.form-control.dark-readonly:read-only {
    background-color: #ddd;
}

.nav-pills .nav-link:hover {
    color: var(--clr-primary);
}

.student-row i {
    cursor: pointer;
}

.student-import-file {
    display: flex;
    flex-direction: column;
    gap: .25rem;
    margin-bottom: 3rem;
}

    .student-import-file i {
        cursor: pointer;
    }

.chip.mistakes .fa-xmark {
    margin: .3rem 0;
}

.graph {
    max-height: 500px;
    width: 100%;
    text-align: -webkit-center;
}

.graph-list {
    max-height: 600px;
    width: 100%;
    text-align: -webkit-center;
    margin-bottom: 2rem;
}

.graph-group {
    display: flex;
    flex-direction: row;
}

    .graph-group .graph {
        width: 50%;
    }

.graph canvas {
    width: 100%;
}

.manual-input-table {
    max-height: 700px;
}

    .manual-input-table .student-column {
        position: sticky;
        top: 0;
        background: white;
    }

.performance.down i {
    rotate: 0deg !important;
}

header nav .dropdown-menu li a:not(.btn).disabled {
    color: #ddd;
}

.modal-content li {
    margin: 0;
    font-weight: 300;
    font-size: 1.125rem;
    color: var(--clr-paragraph);
}

.modal-content b {
    font-weight: 500;
}