@charset "UTF-8";

* {
    scroll-behavior: smooth
}

:root {
    --font-primary: "Roboto", sans-serif;
    --font-secondary: "Roboto", sans-serif;
    --font-alt: "Roboto", sans-serif;
    --bs-primary: #0b72cc;
    --bs-primary-rgb: 11, 114, 204;
    --bs-link-color: #0b72cc;
    --bs-link-color-rgb: 11, 114, 204;
    --bs-link-hover-color: #095ca6;
    --bs-link-hover-color-rgb: 9, 92, 166
}

::-moz-selection {
    background: var(--bs-primary);
    color: var(--bs-white)
}

::selection {
    background: var(--bs-primary);
    color: var(--bs-white)
}

::-moz-selection {
    background: var(--bs-primary);
    color: var(--bs-white)
}

html {
    min-height: 100%;
    overflow-x: hidden
}

body {
    background-color: #f9f9f9;
    color: var(--bs-black);
    height: 100%;
    min-height: 100vh;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    font-family: var(--font-primary);
    font-optical-sizing: auto
}

a {
    text-decoration: none !important
}

a:not(.btn):hover {
    text-decoration: underline
}

.dark-image {
    -webkit-filter: brightness(0) saturate(100%) invert(18%) sepia(6%) saturate(463%) hue-rotate(314deg) brightness(95%) contrast(81%);
    filter: brightness(0) saturate(100%) invert(18%) sepia(6%) saturate(463%) hue-rotate(314deg) brightness(95%) contrast(81%);
}

.white-image {
    -webkit-filter: brightness(0) saturate(100%) invert(94%) sepia(88%) saturate(0%) hue-rotate(173deg) brightness(105%) contrast(105%);
    filter: brightness(0) saturate(100%) invert(94%) sepia(88%) saturate(0%) hue-rotate(173deg) brightness(105%) contrast(105%);
}

.primary-image {
    -webkit-filter: brightness(0) saturate(100%) invert(33%) sepia(77%) saturate(2210%) hue-rotate(186deg) brightness(92%) contrast(97%);
    filter: brightness(0) saturate(100%) invert(33%) sepia(77%) saturate(2210%) hue-rotate(186deg) brightness(92%) contrast(97%);
}

.all-wrap {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1
}

.all-wrap,
.hero {
    position: relative
}

.hero .breadcrumb {
    margin-bottom: 0
}

.hero .breadcrumb li a {
    color: inherit
}

.hero .breadcrumb li:last-child {
    color: var(--bs-primary);
    font-style: italic
}

.hero picture {
    position: relative;
    width: 100%;
    --bs-aspect-ratio: 75%
}

@media screen and (min-width:768px) {
    .hero picture {
        --bs-aspect-ratio: 55%
    }
}

@media screen and (min-width: 992px) {
    .hero picture {
        --bs-aspect-ratio: 45%
    }
}

@media screen and (min-width:1200px) {
    .hero picture {
        --bs-aspect-ratio: 26.67%
    }
    .hero picture::before {
        padding-top: var(--bs-aspect-ratio);
        content: ""
    }
    .hero picture>* {
        top: 0;
        left: 0;
        width: 100%;
        height: 100%
    }
}

.section-header {
    margin-bottom: 2rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    gap: 1rem
}

.section-title,
.section-title-md,
.section-title-sm,
.section-title-xs {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    padding-left: 2rem;
    position: relative;
    font-family: var(--font-secondary);
    font-optical-sizing: auto
}

.section-title-md::before,
.section-title-sm::before,
.section-title-xs::before,
.section-title::before {
    content: "";
    position: absolute;
    left: 0;
    height: 100%;
    border-left: 4px solid var(--bs-primary)
}

.card-news {
    border: 0;
    background-color: transparent
}

.card-news-figure {
    position: relative;
    margin: 0 0 10px;
    width: 100%;
    overflow: hidden
}

.card-news-figure::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 10;
    background-color: rgba(0, 0, 0, .2)
}

.card-news-figure img {
    object-fit: cover;
    width: 100%;
    margin: 0;
    height: 360px;
    transition: transform .8s;
    position: relative;
    z-index: 0
}

.card-news-caption {
    display: flex;
    gap: 5px;
    flex-direction: column;
    padding: 1rem 0
}

.card-news:hover .card-news-figure img {
    transform: scale(1.1);
    transition: transform .2s
}

@media screen and (min-width: 992px) {
    .card-news-figure {
        height: 100%;
        margin: 0
    }
    .card-news-figure img {
        height: 450px
    }
    .card-news-caption {
        position: absolute;
        z-index: 10;
        bottom: 0;
        right: 0;
        left: 0;
        color: var(--bs-white);
        display: flex;
        gap: 5px;
        flex-direction: column;
        padding: 1rem
    }
}

.ratio>img {
    -o-object-fit: cover;
    object-fit: cover
}

.ratio-thumbnail-portrait {
    --bs-aspect-ratio: 140%
}

.table-primary {
    --bs-table-color: var(--bs-light);
    --bs-table-bg: var(--bs-primary)
}

.table td,
.table th {
    vertical-align: middle;
    font-weight: 400;
    padding-top: 1rem;
    padding-bottom: 1rem
}

.table-row-clickable tr {
    cursor: pointer
}

.pagination {
    margin: 0
}

.header .btn-group,
.pagination .page-item {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center
}

.pagination .page-item.active .page-link {
    color: var(--bs-dark);
    font-weight: 700;
    -webkit-transition: 1.3s;
    transition: 1.3s
}

.pagination .page-item+.page-item {
    margin-left: 1.5rem
}

.pagination .page-item:first-child .page-link,
.pagination .page-item:last-child .page-link {
    width: 3rem;
    height: 3rem;
    line-height: 3rem;
    border: 1px solid silver;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center
}

.pagination .page-item:first-child .page-link span,
.pagination .page-item:last-child .page-link span {
    font-size: 0;
    -webkit-filter: brightness(0) saturate(100%) invert(82%) sepia(0%) saturate(1031%) hue-rotate(312deg) brightness(93%) contrast(93%);
    filter: brightness(0) saturate(100%) invert(82%) sepia(0%) saturate(1031%) hue-rotate(312deg) brightness(93%) contrast(93%)
}

.pagination .page-item:first-child .page-link::before,
.pagination .page-item:last-child .page-link::before {
    display: inline-block
}

.pagination .page-item:first-child span {
    content: url("../images/icon/chevron-left.svg")
}

.pagination .page-item:last-child span {
    content: url("../images/icon/chevron-right.svg")
}

.pagination .page-item .page-link {
    border-radius: 3rem;
    border: 0;
    width: 3rem;
    height: 3rem;
    line-height: 3rem;
    padding: 0;
    text-align: center;
    color: var(--bs-dark);
    background-color: transparent
}

.pagination .page-item .page-link:hover {
    background-color: rgba(0, 0, 0, .0666666667);
    -webkit-transition: .3s;
    transition: .3s;
    text-decoration: none
}

.error-404 section {
    padding: 5rem 0;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column
}

.error-404 section h1 {
    font-size: 200px;
    color: var(--bs-primary);
    margin-bottom: -30px
}

.error-404 section p {
    font-size: 24px;
}

.floating-cta {
    position: fixed;
    z-index: 999;
    bottom: 16px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 10px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column
}

.floating-cta.left {
    left: -80px;
    -webkit-transition: left .8s;
    transition: left .8s
}

.header-prepair .floating-cta.left,
.header-sticky .floating-cta.left {
    left: 16px;
    -webkit-transition: right .3s;
    transition: right .3s
}

.floating-cta.right {
    right: -80px;
    -webkit-transition: right .8s;
    transition: right .8s
}

.header-prepair .floating-cta.right,
.header-sticky .floating-cta.right {
    right: 16px;
    -webkit-transition: right .3s;
    transition: right .3s
}

.floating-cta-btn picture {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    margin: 0;
    border-radius: 5rem
}

.floating-cta-btn picture img {
    height: auto
}
