:root { 
    --bs-primary: #0B2545; 
    --bs-primary-rgb: 11, 37, 69; 
    --bs-secondary: #D2D9E0; 
    --bs-secondary-rgb: 210, 217, 224; 
}

body { 
    --bs-body-color: #0B2545; 
    --bs-body-color-rgb: 11, 37, 69; 
    --bs-body-bg: #f9fffc; 
    --bs-body-bg-rgb: 249, 255, 252; 
}

a:visited {
    color: inherit;
}

.btn.btn-hero:visited {
    color: var(--bs-primary);
}

.btn.btn-hero:hover {
    color: var(--bs-secondary);
}

.btn-outline-secondary:hover {
    color: var(--bs-primary);
}

.navbar-nav { 
    --bs-nav-link-color: #0B2545; 
}

.btn { 
    --bs-btn-border-radius: 0px; 
    --bs-btn-border-width: 2px;
}

.logo-header {
    height: 3rem;
}

.logo-footer {
    height: 10rem;
}

.text-uppercase {
    text-transform: uppercase;
}

.display-4rem {
    font-size: 4rem;
}

.display-6rem {
    font-size: 6rem;
}

.display-2rem {
    font-size: 2rem;
}

.display-1-5rem {
    font-size: 1.5rem;
}

.display-2-5rem {
    font-size: 2.5rem;
}

.display-3-5rem {
    font-size: 3.5rem;
}

.display-2-3rem {
    font-size: 2.3rem;
}

.pb-10rem {
    padding-bottom: 10rem;
}

.display-200px {
    font-size: 200px;
}

.fs-15px {
    font-size: 15px;
}

.display-6rem {
    font-size: 6rem;
}

.mt-n6 {
    margin-top: -4rem;
}

.height-250px {
    height: 250px;
}

.grecaptcha-badge { 
    visibility: hidden; 
}

.page {
    display: flex;
    flex-direction: column;
    min-height: inherit;
}

@media (max-width: 990px) {
    .logo-header {
        height: 2.2rem;
    }
    .display-4rem {
        font-size: 3rem;
    }
    
    .display-2-5rem {
        font-size: 1.5rem;
    }
    
    .display-3-5rem {
        font-size: 2.5rem;
    }
    .display-2-3rem {
        font-size: 1.3rem;
    }
    .display-200px {
        font-size: 50px;
    }
    .display-6rem {
        font-size: 2.5rem;
    }
    .gallery-description {
        display: none;
    }
}

.justify {
    text-align: justify;
    text-align-last: left;
}

.service-details p {
    display: inherit;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: inherit;
}

a.btn.btn-secondary:active {
    color: var(--bs-primary) !important;
}

.mt-404 {
    margin-top: 18rem;
}

/** 

    Pagination 
    
**/
.custom-pagination span,
.custom-pagination a {
    display: inline-block;
    padding: 0.5rem 1rem;
    border-radius: 0.2em;
}
.custom-pagination a {
  background-color: #fff;
  color: var(--bs-primary);
  border: 0.5px solid var(--bs-primary);
}
.custom-pagination a:hover {
  background-color: var(--bs-secondary);
  color: #fff;
}
.custom-pagination span.page-num {
  margin-right: 1em;
  padding: 0;
}
.custom-pagination span.dots {
  padding: 0;
  color: var(--bs-primary);
}
.custom-pagination span.current {
  background-color: var(--bs-primary);
  color: #fff;
}

.custom_pagination_padding {
    padding-bottom: 20px;
}

.text-decoration-none {
    text-decoration: none;
    color: var(--bs-body-color);
}

.text-decoration-none:hover {
    color: var(--bs-body-color);
}

.text-decoration-none-home {
    text-decoration: none;
    color: #fff;
}

.text-decoration-none-home:hover {
    color: var(--bs-secondary);
}