@import url("https://fonts.googleapis.com/css2?family=Albert+Sans:wght@200;300;400;500;600;700;800&display=swap");

:root {
    --albersans-family: "Albert Sans", sans-serif;

    --third-color: #a3a5a7;
    --four-color: #ececec;
    --footer-border: #979797;
    --dark-blue: #123269;
}

/* PAGINATION STYLING START  */

.pagination_links {
    display: flex;
    align-items: center;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 8px;
}

.pagination_links span {
    color: white;
    background-color: #038e9e;
    border-radius: 0%;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s linear;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.pagination_links a {
    text-decoration: none;
    color: #17122d;
    border-radius: 0%;
    font-family: var(--albersans-family);
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    transition: all 0.3s linear;
}

.pagination_links a:hover {
    background-color: transparent;
    color: rgb(23 18 45);
}