/* Addtional styles */

.navbar-toggler:focus {
    box-shadow: none !important;
}

.review-list li {
    padding: 0.5rem 0;
    margin-bottom: 0.5rem;
    border-bottom: 5px solid rgb(196, 228, 255);
}

.review-list a {
    text-decoration: none;
    color: inherit;
}

.review-list li:hover {
    padding: 0.5rem 0;
    border-bottom: 5px solid var(--bs-primary);
}

.clean-list {
    list-style-type: none;
    padding-left: 0;
}

.clean-list li {
    margin: 0;
    padding: 0;
}

.nav-link {
    color: var(--bs-primary);
}

/* fonts */

@font-face {
    font-family: 'Font';
    src: url('../webfonts/Poppins-Regular.ttf');
    font-weight: 400;
    font-style: normal;
}

@font-face {
    font-family: 'Font';
    src: url('../webfonts/Poppins-Bold.ttf');
    font-weight: 700;
    font-style: normal;
}

/* root styles */

h1, h2, h3, h4, h5, h6 {
    font-weight: bold;
}

* {
    box-sizing: border-box;
}

html {
    font-size: 16px;
}

body {
    margin: 0;
    font-family: 'Font', sans-serif;
    font-size: var(--bs-body-font-size);
    font-weight: var(--bs-body-font-weight);
    line-height: var(--bs-body-line-height);
    color: var(--bs-body-color);
    text-align: var(--bs-body-text-align);
    background-color: var(--bs-body-bg);
    -webkit-text-size-adjust: 100%;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

.normal {
    font-size: 1rem !important;
}

.small {
    font-size: 0.875rem !important;
}

.smaller {
    font-size: 0.75rem !important;
}

.large {
    font-size: 1.25rem !important;
}

.larger {
    font-size: 1.5rem !important;
}

@media (max-width: 992px) {
    .sticky-top {
        position: relative !important;
    }
}

@media (max-width: 768px) {
    /*mobile classes*/
    .ps-4 {
        padding-left: 0 !important;
    }
}