@import url('https://fonts.googleapis.com/css2?family=Work+Sans:ital,wght@0,100..900;1,100..900&display=swap');
@font-face {
    font-family: 'BasicSans';
    src: url('../fonts/basicsans/basic-sans-black.otf') format('opentype');
    font-weight: 900;
    font-style: normal;
    font-display: swap;
}

:root {
    --color-primary: #EB6536;
    --color-secondary: #071248;
    --color-light: #ffffff;
    --color-dark: #2A2A2A;
    --color-gray: #E8E8E8;
    --font-body: "Work Sans", sans-serif;
    --font-title: 'BasicSans', sans-serif;
}

body {
    font-family: var(--font-body)!important;
}

h1,
h2,
h3,
h4,
h5 {
    font-family: var(--font-title)!important;
    font-weight: 900;
}

div {
    break-inside: avoid;
}

p,
li {
    font-size: 16px;
    line-height: 28px;
}

@media screen and (max-width: 768px) {
    p,
    li {
        font-size: 16px;
        line-height: 28px;
    }
}

ul {
    list-style: none;
    padding: 0;
    margin-bottom: 0!important;
}

main a {
    color: var(--color-primary)!important;
    transition: color ease 0.2s;
}

a:hover {
    color: var(--color-secondary)!important;
    text-decoration: none!important;
}

div[style*="background:#071248"] .text-block a,
div[style*="background: center center / cover rgb(7, 18, 72)"] .text-block a {
    color: var(--color-light)!important;
    text-decoration: underline;
    text-underline-offset: 4px;
}

div[style*="background:#071248"] .text-block a:hover,
div[style*="background: center center / cover rgb(7, 18, 72)"] .text-block a:hover {
    text-decoration: underline!important;
    color: #ffffff8a!important;
}

div[style*="background:#FFFFFF"] .text-block a,
div[style*="background: center center / cover rgb(255, 255, 255)"] .text-block a {
    color: var(--color-secondary)!important;
}

div[style*="background:#FFFFFF"] .text-block a:hover,
div[style*="background: center center / cover rgb(255, 255, 255)"] .text-block a:hover {
    color: var(--color-primary)!important;
}


.relative {
    position: relative;
}

h1,
h2,
h3,
h4,
h5,
h6,
p {
    margin-bottom: 0!important;
}

.wp-block-image {
    margin: 0!important;
}

.wp-block-image img {
    width: 100%;
}

#wpadminbar a {
    color: #f0f0f1!important;
}

.pagination {
    justify-content: center;
    gap: 20px;
}

.pagination .page-numbers {
    border: solid 1px var(--color-primary);
    color: var(--color-primary);
    width: 40px;
    height: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.pagination .page-numbers.current,
.pagination .page-numbers:hover {
    background-color: var(--color-primary);
    color: var(--color-light)!important;
}

.pagination .next.page-numbers,
.pagination .prev.page-numbers {
    width: auto;
    padding: 0 10px;
}

@media screen and (max-width: 768px) {
    .reverse-mobile>.container-fluid {
        flex-direction: column-reverse!important;
    }
    .d-mobile-none {
        display: none!important;
    }
    .d-mobile-block {
        display: block!important;
        ;
    }
}

@media screen and (min-width: 768px) {
    .d-mobile-block {
        display: none!important;
        ;
    }
}