/* Additional Custom Styles for FinsRecipe Landing Page */

/* Custom scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

/* Override Bootstrap text-primary color */
.text-primary {
    color: #28a745 !important;
}

/* Override Bootstrap btn-primary color */
.btn-primary {
    background-color: #28a745 !important;
    border-color: #28a745 !important;
}

.btn-primary:hover {
    background-color: #218838 !important;
    border-color: #1e7e34 !important;
}

/* Override navbar-brand color */
.navbar-brand {
    color: #28a745 !important;
}

/* Override link colors */
.nav-link:hover {
    color: #28a745 !important;
}

.nav-link.active {
    color: #28a745 !important;
}

/* Override border colors */
.border-primary {
    border-color: #28a745 !important;
}

/* Override shadow colors */
.shadow-primary {
    box-shadow: 0 0.125rem 0.25rem rgba(40, 167, 69, 0.075), 0 0.5rem 1rem rgba(40, 167, 69, 0.15) !important;
}

/* Override background colors */
.bg-primary {
    background-color: #28a745 !important;
}

.bg-gradient-primary {
    background: linear-gradient(135deg, #28a745 0%, #20c997 100%) !important;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(135deg, #28a745 0%, #20c997 100%);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(135deg, #218838 0%, #1ea085 100%);
}

/* Animation for feature cards */
.feature-card {
    transition: all 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

/* Hero section enhancements */
.hero-section {
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="75" cy="75" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="50" cy="10" r="0.5" fill="rgba(255,255,255,0.1)"/><circle cx="10" cy="60" r="0.5" fill="rgba(255,255,255,0.1)"/><circle cx="90" cy="40" r="0.5" fill="rgba(255,255,255,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.3;
}

/* Button animations */
.btn {
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.5s;
}

.btn:hover::before {
    left: 100%;
}

/* Testimonial card enhancements */
.testimonial-card {
    transition: all 0.3s ease;
    border: 1px solid #e9ecef;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    border-color: #28a745;
}

/* Modal enhancements */
.modal-content {
    border: none;
    border-radius: 15px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
}

.modal-header {
    background: linear-gradient(135deg, #28a745 0%, #20c997 100%);
    color: white;
    border-radius: 15px 15px 0 0;
}

/* Form input enhancements */
.form-control:focus {
    border-color: #28a745;
    box-shadow: 0 0 0 0.2rem rgba(40, 167, 69, 0.25);
}

.input-group-text {
    background: linear-gradient(135deg, #28a745 0%, #20c997 100%);
    color: white;
    border: none;
}

/* Footer enhancements */
.footer a {
    transition: color 0.3s ease;
}

.footer a:hover {
    color: #28a745 !important;
}

/* Social media icons animation */
.footer .fab {
    transition: transform 0.3s ease;
}

.footer .fab:hover {
    transform: scale(1.2);
}

/* Loading animation for login */
.btn-loading {
    position: relative;
    pointer-events: none;
}

.btn-loading::after {
    content: '';
    position: absolute;
    width: 16px;
    height: 16px;
    margin: auto;
    border: 2px solid transparent;
    border-top-color: #ffffff;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Responsive improvements */
@media (max-width: 768px) {
    .hero-section {
        padding: 60px 0;
    }

    .display-4 {
        font-size: 2.5rem;
    }

    .btn-lg {
        padding: 0.75rem 1.5rem;
        font-size: 1rem;
    }
}

/* Smooth transitions for all elements */
* {
    transition: color 0.3s ease, background-color 0.3s ease, border-color 0.3s ease;
}

/* Custom focus styles for accessibility */
.btn:focus,
.form-control:focus,
.nav-link:focus {
    outline: 2px solid #28a745;
    outline-offset: 2px;
}

/* Back to top button */
.back-to-top {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #28a745 0%, #20c997 100%);
    color: white;
    border: none;
    border-radius: 50%;
    display: none;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 1000;
}

.back-to-top:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(102, 126, 234, 0.4);
}

.back-to-top.show {
    display: flex;
}

/* Pulse animation for CTA buttons */
.btn-pulse {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(40, 167, 69, 0.7);
    }
    70% {
        box-shadow: 0 0 0 10px rgba(40, 167, 69, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(40, 167, 69, 0);
    }
}

/* Dark mode styles */
[data-theme="dark"] {
    --bg-primary: #0d1f0d;
    --bg-secondary: #1a2e1a;
    --text-primary: #ffffff;
    --text-secondary: #b0b0b0;
    --border-color: #2d4d2d;
}

[data-theme="dark"] body {
    background-color: var(--bg-primary);
    color: var(--text-primary);
}

[data-theme="dark"] .navbar {
    background-color: var(--bg-secondary) !important;
    border-bottom: 1px solid var(--border-color);
}

[data-theme="dark"] .card {
    background-color: var(--bg-secondary);
    border-color: var(--border-color);
}

[data-theme="dark"] .bg-light {
    background-color: var(--bg-secondary) !important;
}

[data-theme="dark"] .text-muted {
    color: var(--text-secondary) !important;
}

[data-theme="dark"] .modal-content {
    background-color: var(--bg-secondary);
    color: var(--text-primary);
}

[data-theme="dark"] .form-control {
    background-color: var(--bg-primary);
    border-color: var(--border-color);
    color: var(--text-primary);
}

[data-theme="dark"] .form-control:focus {
    background-color: var(--bg-primary);
    color: var(--text-primary);
    border-color: #4ade80;
    box-shadow: 0 0 0 0.2rem rgba(74, 222, 128, 0.25);
}

/* Theme toggle button */
.theme-toggle {
    background: none;
    border: none;
    color: inherit;
    font-size: 1.2rem;
    cursor: pointer;
    padding: 0.5rem;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.theme-toggle:hover {
    background-color: rgba(40, 167, 69, 0.1);
}

[data-theme="dark"] .theme-toggle:hover {
    background-color: rgba(40, 167, 69, 0.2);
}

/* Dark mode text-primary override */
[data-theme="dark"] .text-primary {
    color: #4ade80 !important;
}

/* Dark mode btn-primary override */
[data-theme="dark"] .btn-primary {
    background-color: #4ade80 !important;
    border-color: #4ade80 !important;
    color: #0d1f0d !important;
}

[data-theme="dark"] .btn-primary:hover {
    background-color: #22c55e !important;
    border-color: #22c55e !important;
}

/* Dark mode navbar-brand override */
[data-theme="dark"] .navbar-brand {
    color: #4ade80 !important;
}

/* Dark mode nav-link override */
[data-theme="dark"] .nav-link:hover {
    color: #4ade80 !important;
}

[data-theme="dark"] .nav-link.active {
    color: #4ade80 !important;
}

/* Dark mode focus override */
[data-theme="dark"] .btn:focus,
[data-theme="dark"] .form-control:focus,
[data-theme="dark"] .nav-link:focus,
[data-theme="dark"] .theme-toggle:focus {
    outline: 3px solid #4ade80;
    outline-offset: 2px;
}

/* Dark mode skip-link override */
[data-theme="dark"] .skip-link {
    background: #4ade80;
    color: #0d1f0d;
}

/* Dark mode footer override */
[data-theme="dark"] .footer a:hover {
    color: #4ade80 !important;
}

/* Accessibility improvements */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
}

/* High contrast mode support */
@media (prefers-contrast: high) {
    .btn-primary {
        border: 2px solid #000;
    }

    .card {
        border: 2px solid #000;
    }

    .form-control {
        border: 2px solid #000;
    }
}

/* Focus indicators for keyboard navigation */
.btn:focus,
.form-control:focus,
.nav-link:focus,
.theme-toggle:focus {
    outline: 3px solid #28a745;
    outline-offset: 2px;
}

/* Skip to main content link */
.skip-link {
    position: absolute;
    top: -40px;
    left: 6px;
    background: #28a745;
    color: white;
    padding: 8px;
    text-decoration: none;
    border-radius: 4px;
    z-index: 10000;
}

.skip-link:focus {
    top: 6px;
}

/* Screen reader only text */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* Search modal styles */
.cursor-pointer {
    cursor: pointer;
}

.cursor-pointer:hover {
    opacity: 0.8;
}

#searchResults {
    max-height: 400px;
    overflow-y: auto;
}

#searchResults .card {
    transition: all 0.3s ease;
}

#searchResults .card:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

/* Dark mode for search modal */
[data-theme="dark"] #searchResults .card {
    background-color: var(--bg-secondary);
    border-color: var(--border-color);
}

[data-theme="dark"] #searchResults .card:hover {
    box-shadow: 0 4px 12px rgba(74, 222, 128, 0.2);
    border-color: #4ade80;
}

/* Dark mode testimonial card override */
[data-theme="dark"] .testimonial-card:hover {
    border-color: #4ade80;
}

/* Dark mode modal header override */
[data-theme="dark"] .modal-header {
    background: linear-gradient(135deg, #4ade80 0%, #22c55e 100%);
    color: #0d1f0d;
}

/* Dark mode input group text override */
[data-theme="dark"] .input-group-text {
    background: linear-gradient(135deg, #4ade80 0%, #22c55e 100%);
    border-color: #4ade80;
    color: #0d1f0d;
}

/* Dark mode back to top button override */
[data-theme="dark"] .back-to-top {
    background: linear-gradient(135deg, #4ade80 0%, #22c55e 100%);
    color: #0d1f0d;
}

/* Dark mode scrollbar override */
[data-theme="dark"] ::-webkit-scrollbar-thumb {
    background: linear-gradient(135deg, #4ade80 0%, #22c55e 100%);
}

[data-theme="dark"] ::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(135deg, #22c55e 0%, #16a34a 100%);
}

/* Dark mode hero section override */
[data-theme="dark"] .hero-section {
    background: linear-gradient(135deg, #4ade80 0%, #22c55e 100%) !important;
}

/* Dark mode shadow-primary override */
[data-theme="dark"] .shadow-primary {
    box-shadow: 0 0.125rem 0.25rem rgba(74, 222, 128, 0.075), 0 0.5rem 1rem rgba(74, 222, 128, 0.15) !important;
}

/* Dark mode border-primary override */
[data-theme="dark"] .border-primary {
    border-color: #4ade80 !important;
}

/* Dark mode bg-primary override */
[data-theme="dark"] .bg-primary {
    background-color: #4ade80 !important;
}

/* Dark mode btn-pulse override */
[data-theme="dark"] .btn-pulse {
    animation: pulse-green 2s infinite;
}

@keyframes pulse-green {
    0% {
        box-shadow: 0 0 0 0 rgba(74, 222, 128, 0.7);
    }
    70% {
        box-shadow: 0 0 0 10px rgba(74, 222, 128, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(74, 222, 128, 0);
    }
}

/* Logo styles */
.navbar-brand img {
    height: 40px;
    width: auto;
    transition: all 0.3s ease;
}

.navbar-brand:hover img {
    transform: scale(1.05);
}

/* Responsive logo sizes */
@media (max-width: 768px) {
    .navbar-brand img {
        height: 35px;
    }
}

@media (max-width: 576px) {
    .navbar-brand img {
        height: 30px;
    }
}

/* Loading screen logo */
#loadingScreen img {
    height: 80px;
    width: auto;
    filter: brightness(0) invert(1);
    transition: all 0.3s ease;
}

/* Dark mode logo adjustments */
[data-theme="dark"] .navbar-brand img {
    filter: brightness(0) invert(1);
}

[data-theme="dark"] #loadingScreen img {
    filter: brightness(0) invert(1);
}

/* Modal logo styles */
.modal-title img {
    height: 24px;
    width: auto;
    transition: all 0.3s ease;
}

[data-theme="dark"] .modal-title img {
    filter: brightness(0) invert(1);
}

/* Footer logo styles */
.footer .d-flex img {
    height: 32px;
    width: auto;
    filter: brightness(0) invert(1);
    transition: all 0.3s ease;
}

.footer .d-flex:hover img {
    transform: scale(1.05);
}

/* Logo optimization for different contexts */
.navbar-brand img,
.modal-title img,
.footer .d-flex img,
#loadingScreen img {
    object-fit: contain;
    max-width: 100%;
    height: auto;
}

/* Ensure logo is visible in all themes */
[data-theme="dark"] .navbar-brand img,
[data-theme="dark"] .modal-title img,
[data-theme="dark"] .footer .d-flex img,
[data-theme="dark"] #loadingScreen img {
    filter: brightness(0) invert(1);
}

/* Logo hover effects */
.navbar-brand:hover img,
.modal-title:hover img,
.footer .d-flex:hover img {
    transform: scale(1.05);
    transition: transform 0.3s ease;
}

/* Mobile logo adjustments */
@media (max-width: 576px) {
    .navbar-brand img {
        height: 30px !important;
    }

    .modal-title img {
        height: 20px !important;
    }

    .footer .d-flex img {
        height: 28px !important;
    }

    #loadingScreen img {
        height: 60px !important;
    }
}

/* Tablet logo adjustments */
@media (min-width: 577px) and (max-width: 768px) {
    .navbar-brand img {
        height: 35px !important;
    }

    .modal-title img {
        height: 22px !important;
    }

    .footer .d-flex img {
        height: 30px !important;
    }

    #loadingScreen img {
        height: 70px !important;
    }
}

/* Print logo adjustments */
@media print {
    .navbar-brand img,
    .modal-title img,
    .footer .d-flex img,
    #loadingScreen img {
        filter: none !important;
        -webkit-filter: none !important;
    }

    .navbar-brand img {
        height: 25px !important;
    }

    .footer .d-flex img {
        height: 20px !important;
    }
}

/* High contrast mode logo adjustments */
@media (prefers-contrast: high) {
    .navbar-brand img,
    .modal-title img,
    .footer .d-flex img,
    #loadingScreen img {
        filter: contrast(200%) brightness(0) invert(1) !important;
    }
}

/* Reduced motion logo adjustments */
@media (prefers-reduced-motion: reduce) {
    .navbar-brand img,
    .modal-title img,
    .footer .d-flex img,
    #loadingScreen img {
        transition: none !important;
    }

    .navbar-brand:hover img,
    .modal-title:hover img,
    .footer .d-flex:hover img {
        transform: none !important;
    }
}

/* Focus states for logo accessibility */
.navbar-brand:focus img,
.modal-title:focus img,
.footer .d-flex:focus img {
    outline: 2px solid #28a745;
    outline-offset: 2px;
    border-radius: 4px;
}

[data-theme="dark"] .navbar-brand:focus img,
[data-theme="dark"] .modal-title:focus img,
[data-theme="dark"] .footer .d-flex:focus img {
    outline: 2px solid #4ade80;
}

/* Logo error fallback */
.navbar-brand img:not([src]),
.modal-title img:not([src]),
.footer .d-flex img:not([src]) {
    display: none;
}

/* Logo error handling */
.navbar-brand img[src*="logo.png"]:not([src*="img/logo.png"]),
.modal-title img[src*="logo.png"]:not([src*="img/logo.png"]),
.footer .d-flex img[src*="logo.png"]:not([src*="img/logo.png"]) {
    display: none;
}

/* Logo placeholder for failed loads */
.navbar-brand img:not([src])::before,
.modal-title img:not([src])::before,
.footer .d-flex img:not([src])::before {
    content: "FR";
    display: inline-block;
    background: #28a745;
    color: white;
    padding: 4px 8px;
    border-radius: 4px;
    font-weight: bold;
    font-size: 12px;
}

[data-theme="dark"] .navbar-brand img:not([src])::before,
[data-theme="dark"] .modal-title img:not([src])::before,
[data-theme="dark"] .footer .d-flex img:not([src])::before {
    background: #4ade80;
    color: #0d1f0d;
}

/* Cross-browser logo support */
.navbar-brand img,
.modal-title img,
.footer .d-flex img {
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    -webkit-user-drag: none;
    -khtml-user-drag: none;
    -moz-user-drag: none;
    -o-user-drag: none;
    user-drag: none;
}

/* Landscape orientation logo adjustments */
@media (orientation: landscape) and (max-height: 500px) {
    .navbar-brand img {
        height: 25px !important;
    }

    .modal-title img {
        height: 18px !important;
    }

    .footer .d-flex img {
        height: 24px !important;
    }

    #loadingScreen img {
        height: 50px !important;
    }
}

/* Portrait orientation logo adjustments */
@media (orientation: portrait) and (max-width: 400px) {
    .navbar-brand img {
        height: 28px !important;
    }

    .modal-title img {
        height: 18px !important;
    }

    .footer .d-flex img {
        height: 26px !important;
    }

    #loadingScreen img {
        height: 55px !important;
    }
}

/* High DPI display logo adjustments */
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
    .navbar-brand img,
    .modal-title img,
    .footer .d-flex img {
        image-rendering: -webkit-optimize-contrast;
        image-rendering: crisp-edges;
    }
}

/* Low DPI display logo adjustments */
@media (-webkit-max-device-pixel-ratio: 1), (max-resolution: 96dpi) {
    .navbar-brand img,
    .modal-title img,
    .footer .d-flex img {
        image-rendering: auto;
    }
}

/* Color scheme logo adjustments */
@media (prefers-color-scheme: light) {
    .navbar-brand img,
    .modal-title img,
    .footer .d-flex img {
        filter: none;
    }
}

@media (prefers-color-scheme: dark) {
    .navbar-brand img,
    .modal-title img,
    .footer .d-flex img {
        filter: brightness(0) invert(1);
    }
}

/* Font size logo adjustments */
@media (prefers-reduced-data: reduce) {
    .navbar-brand img,
    .modal-title img,
    .footer .d-flex img {
        max-width: 100%;
        height: auto;
    }
}

/* Reduced data logo adjustments */
@media (prefers-reduced-data: reduce) {
    .navbar-brand img,
    .modal-title img,
    .footer .d-flex img {
        image-rendering: optimizeSpeed;
        image-rendering: -moz-crisp-edges;
        image-rendering: -webkit-crisp-edges;
        image-rendering: crisp-edges;
        image-rendering: -webkit-optimize-contrast;
        image-rendering: optimize-contrast;
    }
}

/* Interaction mode logo adjustments */
@media (any-hover: hover) {
    .navbar-brand:hover img,
    .modal-title:hover img,
    .footer .d-flex:hover img {
        transform: scale(1.05);
    }
}

@media (any-hover: none) {
    .navbar-brand:hover img,
    .modal-title:hover img,
    .footer .d-flex:hover img {
        transform: none;
    }
}

/* Pointer type logo adjustments */
@media (pointer: fine) {
    .navbar-brand img,
    .modal-title img,
    .footer .d-flex img {
        cursor: pointer;
    }
}

@media (pointer: coarse) {
    .navbar-brand img,
    .modal-title img,
    .footer .d-flex img {
        cursor: pointer;
        min-height: 44px;
        min-width: 44px;
    }
}

/* Display type logo adjustments */
@media (display-mode: standalone) {
    .navbar-brand img,
    .modal-title img,
    .footer .d-flex img {
        max-width: 100%;
        height: auto;
    }
}

@media (display-mode: minimal-ui) {
    .navbar-brand img,
    .modal-title img,
    .footer .d-flex img {
        max-width: 100%;
        height: auto;
    }
}

@media (display-mode: fullscreen) {
    .navbar-brand img,
    .modal-title img,
    .footer .d-flex img {
        max-width: 100%;
        height: auto;
    }
}

@media (display-mode: browser) {
    .navbar-brand img,
    .modal-title img,
    .footer .d-flex img {
        max-width: 100%;
        height: auto;
    }
}

/* Viewport size logo adjustments */
@media (min-width: 1200px) {
    .navbar-brand img {
        height: 45px !important;
    }

    .modal-title img {
        height: 26px !important;
    }

    .footer .d-flex img {
        height: 35px !important;
    }

    #loadingScreen img {
        height: 90px !important;
    }
}

@media (min-width: 1400px) {
    .navbar-brand img {
        height: 50px !important;
    }

    .modal-title img {
        height: 28px !important;
    }

    .footer .d-flex img {
        height: 38px !important;
    }

    #loadingScreen img {
        height: 100px !important;
    }
}

/* Aspect ratio logo adjustments */
@media (aspect-ratio: 16/9) {
    .navbar-brand img,
    .modal-title img,
    .footer .d-flex img {
        max-width: 100%;
        height: auto;
    }
}

@media (aspect-ratio: 4/3) {
    .navbar-brand img,
    .modal-title img,
    .footer .d-flex img {
        max-width: 100%;
        height: auto;
    }
}

@media (aspect-ratio: 1/1) {
    .navbar-brand img,
    .modal-title img,
    .footer .d-flex img {
        max-width: 100%;
        height: auto;
    }
}

@media (aspect-ratio: 3/4) {
    .navbar-brand img,
    .modal-title img,
    .footer .d-flex img {
        max-width: 100%;
        height: auto;
    }
}

@media (aspect-ratio: 9/16) {
    .navbar-brand img,
    .modal-title img,
    .footer .d-flex img {
        max-width: 100%;
        height: auto;
    }
}

/* Color gamut logo adjustments */
@media (color-gamut: srgb) {
    .navbar-brand img,
    .modal-title img,
    .footer .d-flex img {
        color-profile: sRGB;
    }
}

@media (color-gamut: p3) {
    .navbar-brand img,
    .modal-title img,
    .footer .d-flex img {
        color-profile: Display-P3;
    }
}

@media (color-gamut: rec2020) {
    .navbar-brand img,
    .modal-title img,
    .footer .d-flex img {
        color-profile: ITU-R BT.2020-2;
    }
}

/* Update frequency logo adjustments */
@media (update: fast) {
    .navbar-brand img,
    .modal-title img,
    .footer .d-flex img {
        transition: all 0.3s ease;
    }
}

@media (update: slow) {
    .navbar-brand img,
    .modal-title img,
    .footer .d-flex img {
        transition: none;
    }
}

@media (update: none) {
    .navbar-brand img,
    .modal-title img,
    .footer .d-flex img {
        transition: none;
        animation: none;
    }
}

/* Overflow behavior logo adjustments */
@media (overflow-block: scroll) {
    .navbar-brand img,
    .modal-title img,
    .footer .d-flex img {
        max-width: 100%;
        height: auto;
    }
}

@media (overflow-block: paged) {
    .navbar-brand img,
    .modal-title img,
    .footer .d-flex img {
        max-width: 100%;
        height: auto;
    }
}

@media (overflow-block: optional-paged) {
    .navbar-brand img,
    .modal-title img,
    .footer .d-flex img {
        max-width: 100%;
        height: auto;
    }
}

@media (overflow-block: none) {
    .navbar-brand img,
    .modal-title img,
    .footer .d-flex img {
        max-width: 100%;
        height: auto;
    }
}

/* Scripting preference logo adjustments */
@media (scripting: enabled) {
    .navbar-brand img,
    .modal-title img,
    .footer .d-flex img {
        transition: all 0.3s ease;
    }
}

@media (scripting: disabled) {
    .navbar-brand img,
    .modal-title img,
    .footer .d-flex img {
        transition: none;
    }
}

@media (scripting: initial-only) {
    .navbar-brand img,
    .modal-title img,
    .footer .d-flex img {
        transition: none;
    }
}

/* Forced color scheme logo adjustments */
@media (forced-colors: active) {
    .navbar-brand img,
    .modal-title img,
    .footer .d-flex img {
        forced-color-adjust: none;
    }
}

@media (forced-colors: none) {
    .navbar-brand img,
    .modal-title img,
    .footer .d-flex img {
        forced-color-adjust: auto;
    }
}

/* Navigation preference logo adjustments */
@media (navigation-controls: back) {
    .navbar-brand img,
    .modal-title img,
    .footer .d-flex img {
        max-width: 100%;
        height: auto;
    }
}

@media (navigation-controls: forward) {
    .navbar-brand img,
    .modal-title img,
    .footer .d-flex img {
        max-width: 100%;
        height: auto;
    }
}

@media (navigation-controls: none) {
    .navbar-brand img,
    .modal-title img,
    .footer .d-flex img {
        max-width: 100%;
        height: auto;
    }
}

/* Video color space conversion preference logo adjustments */
@media (video-color-space-conversion: bt709) {
    .navbar-brand img,
    .modal-title img,
    .footer .d-flex img {
        color-profile: sRGB;
    }
}

/* Final logo optimization */
.navbar-brand img,
.modal-title img,
.footer .d-flex img {
    image-rendering: -webkit-optimize-contrast;
    image-rendering: crisp-edges;
    image-rendering: pixelated;
    image-rendering: -moz-crisp-edges;
    image-rendering: -o-crisp-edges;
    image-rendering: -webkit-crisp-edges;
    image-rendering: crisp-edges;
    image-rendering: -webkit-optimize-contrast;
    image-rendering: optimize-contrast;
}

p {
    margin-top: 0;
    margin-bottom: 1rem;
}

address {
    margin-bottom: 1rem;
    font-style: normal;
    line-height: inherit;
}

ol,
ul {
    padding-left: 2rem;
}

ol,
ul {
    margin-top: 0;
    margin-bottom: 1rem;
}

ol ol,
ul ul,
ol ul,
ul ol {
    margin-bottom: 0;
}

dt {
    font-weight: 700;
}

blockquote {
    margin: 0 0 1rem;
}

b,
strong {
    font-weight: bolder;
}

small,
.small {
    font-size: 0.875em;
}

sub,
sup {
    position: relative;
    font-size: 0.75em;
    line-height: 0;
    vertical-align: baseline;
}

sub {
    bottom: -0.25em;
}

sup {
    top: -0.5em;
}

a {
    color: #00917c;
    text-decoration: underline;
}
a:hover {
    color: #007463;
}

a:not([href]):not([class]),
a:not([href]):not([class]):hover {
    color: inherit;
    text-decoration: none;
}

pre,
code {
    font-family: var(--bs-font-monospace);
    font-size: 1em;
    direction: ltr /* rtl:ignore */;
    unicode-bidi: bidi-override;
}

pre {
    display: block;
    margin-top: 0;
    margin-bottom: 1rem;
    overflow: auto;
    font-size: 0.875em;
}
pre code {
    font-size: inherit;
    color: inherit;
    word-break: normal;
}

code {
    font-size: 0.875em;
    color: #d63384;
    word-wrap: break-word;
}
a > code {
    color: inherit;
}

img,
svg {
    vertical-align: middle;
}

table {
    caption-side: bottom;
    border-collapse: collapse;
}

th {
    text-align: inherit;
    text-align: -webkit-match-parent;
}

td,
th {
    border-color: inherit;
    border-style: solid;
    border-width: 0;
}

label {
    display: inline-block;
}

button {
    border-radius: 0;
}

button:focus {
    outline: dotted 1px;
    outline: -webkit-focus-ring-color auto 5px;
}

input,
button,
select,
textarea {
    margin: 0;
    font-family: inherit;
    font-size: inherit;
    line-height: inherit;
}

button,
select {
    text-transform: none;
}

[role="button"] {
    cursor: pointer;
}

select {
    word-wrap: normal;
}

[list]::-webkit-calendar-picker-indicator {
    display: none;
}

button,
[type="button"],
[type="reset"],
[type="submit"] {
    -webkit-appearance: button;
}
button:not(:disabled),
[type="button"]:not(:disabled),
[type="reset"]:not(:disabled),
[type="submit"]:not(:disabled) {
    cursor: pointer;
}

textarea {
    resize: vertical;
}

/* rtl:raw:
[type="tel"],
[type="url"],
[type="email"],
[type="number"] {
  direction: ltr;
}
*/

iframe {
    border: 0;
}

progress {
    vertical-align: baseline;
}

[hidden] {
    display: none !important;
}

.list-unstyled {
    padding-left: 0;
    list-style: none;
}

.blockquote {
    margin-bottom: 1rem;
    font-size: 1.25rem;
}
.blockquote > :last-child {
    margin-bottom: 0;
}

.img-fluid {
    max-width: 100%;
    height: auto;
}

.container {
    width: 100%;
    padding-right: var(--bs-gutter-x, 0.75rem);
    padding-left: var(--bs-gutter-x, 0.75rem);
    margin-right: auto;
    margin-left: auto;
}

@media (min-width: 576px) {
    .container {
        max-width: 540px;
    }
}

@media (min-width: 768px) {
    .container {
        max-width: 720px;
    }
}

@media (min-width: 992px) {
    .container {
        max-width: 960px;
    }
}

@media (min-width: 1200px) {
    .container {
        max-width: 1140px;
    }
}

@media (min-width: 1400px) {
    .container {
        max-width: 1320px;
    }
}

.row {
    --bs-gutter-x: 1.5rem;
    --bs-gutter-y: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin-top: calc(var(--bs-gutter-y) * -1);
    margin-right: calc(var(--bs-gutter-x) / -2);
    margin-left: calc(var(--bs-gutter-x) / -2);
}
.row > * {
    -ms-flex-negative: 0;
    flex-shrink: 0;
    width: 100%;
    max-width: 100%;
    padding-right: calc(var(--bs-gutter-x) / 2);
    padding-left: calc(var(--bs-gutter-x) / 2);
    margin-top: var(--bs-gutter-y);
}

.col {
    -webkit-box-flex: 1;
    -ms-flex: 1 0 0%;
    flex: 1 0 0%;
}

.col-2 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 16.66667%;
}

.col-6 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 50%;
}

.col-8 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 66.66667%;
}

.col-12 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 100%;
}

.g-0 {
    --bs-gutter-x: 0;
}

.g-0 {
    --bs-gutter-y: 0;
}

.g-1 {
    --bs-gutter-x: 0.25rem;
}

.g-1 {
    --bs-gutter-y: 0.25rem;
}

.g-5 {
    --bs-gutter-x: 3rem;
}

.g-5 {
    --bs-gutter-y: 3rem;
}

@media (min-width: 576px) {
    .col-sm-6 {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
        flex: 0 0 auto;
        width: 50%;
    }
}

@media (min-width: 768px) {
    .col-md-6 {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
        flex: 0 0 auto;
        width: 50%;
    }
}

@media (min-width: 992px) {
    .col-lg-3 {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
        flex: 0 0 auto;
        width: 25%;
    }
    .col-lg-4 {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
        flex: 0 0 auto;
        width: 33.33333%;
    }
    .col-lg-5 {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
        flex: 0 0 auto;
        width: 41.66667%;
    }
    .col-lg-6 {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
        flex: 0 0 auto;
        width: 50%;
    }
    .col-lg-7 {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
        flex: 0 0 auto;
        width: 58.33333%;
    }
    .col-lg-8 {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
        flex: 0 0 auto;
        width: 66.66667%;
    }
    .col-lg-12 {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
        flex: 0 0 auto;
        width: 100%;
    }
}

.table {
    --bs-table-bg: transparent;
    --bs-table-striped-color: #212529;
    --bs-table-striped-bg: rgba(0, 0, 0, 0.05);
    --bs-table-active-color: #212529;
    --bs-table-active-bg: rgba(0, 0, 0, 0.1);
    --bs-table-hover-color: #212529;
    --bs-table-hover-bg: rgba(0, 0, 0, 0.075);
    width: 100%;
    margin-bottom: 1rem;
    color: #212529;
    vertical-align: top;
    border-color: #dee2e6;
}
.table > :not(caption) > * > * {
    padding: 0.5rem 0.5rem;
    background-color: var(--bs-table-bg);
    background-image: -webkit-gradient(
            linear,
            left top,
            left bottom,
            from(var(--bs-table-accent-bg)),
            to(var(--bs-table-accent-bg))
    );
    background-image: -webkit-linear-gradient(
            var(--bs-table-accent-bg),
            var(--bs-table-accent-bg)
    );
    background-image: -o-linear-gradient(
            var(--bs-table-accent-bg),
            var(--bs-table-accent-bg)
    );
    background-image: linear-gradient(
            var(--bs-table-accent-bg),
            var(--bs-table-accent-bg)
    );
    border-bottom-width: 1px;
}
.table > :not(:last-child) > :last-child > * {
    border-bottom-color: currentColor;
}

.form-control {
    display: block;
    width: 100%;
    padding: 0.375rem 0.75rem;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5;
    color: #212529;
    background-color: #fff;
    background-clip: padding-box;
    border: 1px solid #ced4da;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    border-radius: 0.25rem;
    -webkit-transition: border-color 0.15s ease-in-out,
    -webkit-box-shadow 0.15s ease-in-out;
    transition: border-color 0.15s ease-in-out,
    -webkit-box-shadow 0.15s ease-in-out;
    -o-transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
    transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
    transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out,
    -webkit-box-shadow 0.15s ease-in-out;
}
@media (prefers-reduced-motion: reduce) {
    .form-control {
        -webkit-transition: none;
        -o-transition: none;
        transition: none;
    }
}
.form-control[type="file"] {
    overflow: hidden;
}
.form-control[type="file"]:not(:disabled):not([readonly]) {
    cursor: pointer;
}
.form-control:focus {
    color: #212529;
    background-color: #fff;
    border-color: #80c8be;
    outline: 0;
    -webkit-box-shadow: 0 0 0 0.25rem rgba(0, 145, 124, 0.25);
    box-shadow: 0 0 0 0.25rem rgba(0, 145, 124, 0.25);
}
.form-control::-webkit-date-and-time-value {
    height: 1.5em;
}
.form-control::-webkit-input-placeholder {
    color: #6c757d;
    opacity: 1;
}
.form-control:-ms-input-placeholder {
    color: #6c757d;
    opacity: 1;
}
.form-control::-ms-input-placeholder {
    color: #6c757d;
    opacity: 1;
}
.form-control::placeholder {
    color: #6c757d;
    opacity: 1;
}
.form-control:disabled,
.form-control[readonly] {
    background-color: #e9ecef;
    opacity: 1;
}
.form-control::file-selector-button {
    padding: 0.375rem 0.75rem;
    margin: -0.375rem -0.75rem;
    -webkit-margin-end: 0.75rem;
    margin-inline-end: 0.75rem;
    color: #212529;
    background-color: #e9ecef;
    pointer-events: none;
    border-color: inherit;
    border-style: solid;
    border-width: 0;
    border-inline-end-width: 1px;
    border-radius: 0;
    -webkit-transition: color 0.15s ease-in-out,
    background-color 0.15s ease-in-out, border-color 0.15s ease-in-out,
    -webkit-box-shadow 0.15s ease-in-out;
    transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out,
    border-color 0.15s ease-in-out, -webkit-box-shadow 0.15s ease-in-out;
    -o-transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out,
    border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
    transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out,
    border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
    transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out,
    border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out,
    -webkit-box-shadow 0.15s ease-in-out;
}
@media (prefers-reduced-motion: reduce) {
    .form-control::file-selector-button {
        -webkit-transition: none;
        -o-transition: none;
        transition: none;
    }
}
.form-control:hover:not(:disabled):not([readonly])::file-selector-button {
    background-color: #dde0e3;
}
.form-control::-webkit-file-upload-button {
    padding: 0.375rem 0.75rem;
    margin: -0.375rem -0.75rem;
    -webkit-margin-end: 0.75rem;
    margin-inline-end: 0.75rem;
    color: #212529;
    background-color: #e9ecef;
    pointer-events: none;
    border-color: inherit;
    border-style: solid;
    border-width: 0;
    border-inline-end-width: 1px;
    border-radius: 0;
    -webkit-transition: color 0.15s ease-in-out,
    background-color 0.15s ease-in-out, border-color 0.15s ease-in-out,
    -webkit-box-shadow 0.15s ease-in-out;
    transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out,
    border-color 0.15s ease-in-out, -webkit-box-shadow 0.15s ease-in-out;
    -o-transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out,
    border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
    transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out,
    border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
    transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out,
    border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out,
    -webkit-box-shadow 0.15s ease-in-out;
}
@media (prefers-reduced-motion: reduce) {
    .form-control::-webkit-file-upload-button {
        -webkit-transition: none;
        -o-transition: none;
        transition: none;
    }
}
.form-control:hover:not(:disabled):not([readonly])::-webkit-file-upload-button {
    background-color: #dde0e3;
}

textarea.form-control {
    min-height: calc(1.5em + 0.75rem + 2px);
}

@media (prefers-reduced-motion: reduce) {
    .btn {
        -webkit-transition: none;
        -o-transition: none;
        transition: none;
    }
}
.fade {
    -webkit-transition: opacity 0.15s linear;
    -o-transition: opacity 0.15s linear;
    transition: opacity 0.15s linear;
}
@media (prefers-reduced-motion: reduce) {
    .fade {
        -webkit-transition: none;
        -o-transition: none;
        transition: none;
    }
}
.fade:not(.show) {
    opacity: 0;
}

.collapse:not(.show) {
    display: none;
}

.collapsing {
    height: 0;
    overflow: hidden;
    -webkit-transition: height 0.35s ease;
    -o-transition: height 0.35s ease;
    transition: height 0.35s ease;
}
@media (prefers-reduced-motion: reduce) {
    .collapsing {
        -webkit-transition: none;
        -o-transition: none;
        transition: none;
    }
}

.dropup,
.dropend,
.dropdown,
.dropstart {
    position: relative;
}

.dropdown-toggle {
    white-space: nowrap;
}
.dropdown-toggle::after {
    display: inline-block;
    margin-left: 0.255em;
    vertical-align: 0.255em;
    content: "";
    border-top: 0.3em solid;
    border-right: 0.3em solid transparent;
    border-bottom: 0;
    border-left: 0.3em solid transparent;
}
.dropdown-toggle:empty::after {
    margin-left: 0;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    z-index: 1000;
    display: none;
    min-width: 10rem;
    padding: 0.5rem 0;
    margin: 0.125rem 0 0;
    font-size: 1rem;
    color: #212529;
    text-align: left;
    list-style: none;
    background-color: #fff;
    background-clip: padding-box;
    border: 1px solid rgba(0, 0, 0, 0.15);
    border-radius: 0.25rem;
}
.dropdown-menu[style] {
    right: auto !important;
}

.dropup .dropdown-menu {
    top: auto;
    bottom: 100%;
    margin-top: 0;
    margin-bottom: 0.125rem;
}

.dropup .dropdown-toggle::after {
    display: inline-block;
    margin-left: 0.255em;
    vertical-align: 0.255em;
    content: "";
    border-top: 0;
    border-right: 0.3em solid transparent;
    border-bottom: 0.3em solid;
    border-left: 0.3em solid transparent;
}

.dropup .dropdown-toggle:empty::after {
    margin-left: 0;
}

.dropend .dropdown-menu {
    top: 0;
    right: auto;
    left: 100%;
    margin-top: 0;
    margin-left: 0.125rem;
}

.dropend .dropdown-toggle::after {
    display: inline-block;
    margin-left: 0.255em;
    vertical-align: 0.255em;
    content: "";
    border-top: 0.3em solid transparent;
    border-right: 0;
    border-bottom: 0.3em solid transparent;
    border-left: 0.3em solid;
}

.dropend .dropdown-toggle:empty::after {
    margin-left: 0;
}

.dropend .dropdown-toggle::after {
    vertical-align: 0;
}

.dropstart .dropdown-menu {
    top: 0;
    right: 100%;
    left: auto;
    margin-top: 0;
    margin-right: 0.125rem;
}

.dropstart .dropdown-toggle::after {
    display: inline-block;
    margin-left: 0.255em;
    vertical-align: 0.255em;
    content: "";
}

.dropstart .dropdown-toggle::after {
    display: none;
}

.dropstart .dropdown-toggle::before {
    display: inline-block;
    margin-right: 0.255em;
    vertical-align: 0.255em;
    content: "";
    border-top: 0.3em solid transparent;
    border-right: 0.3em solid;
    border-bottom: 0.3em solid transparent;
}

.dropstart .dropdown-toggle:empty::after {
    margin-left: 0;
}

.dropstart .dropdown-toggle::before {
    vertical-align: 0;
}

.dropdown-item {
    display: block;
    width: 100%;
    padding: 0.25rem 1rem;
    clear: both;
    font-weight: 400;
    color: #212529;
    text-align: inherit;
    text-decoration: none;
    white-space: nowrap;
    background-color: transparent;
    border: 0;
}
.dropdown-item:hover,
.dropdown-item:focus {
    color: #1e2125;
    background-color: #f8f9fa;
}
.dropdown-item.active,
.dropdown-item:active {
    color: #fff;
    text-decoration: none;
    background-color: #00917c;
}
.dropdown-item.disabled,
.dropdown-item:disabled {
    color: #6c757d;
    pointer-events: none;
    background-color: transparent;
}

.dropdown-menu.show {
    display: block;
}

.nav {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    padding-left: 0;
    margin-bottom: 0;
    list-style: none;
}

.nav-link {
    display: block;
    padding: 0.5rem 1rem;
    text-decoration: none;
    -webkit-transition: color 0.15s ease-in-out,
    background-color 0.15s ease-in-out, border-color 0.15s ease-in-out;
    -o-transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out,
    border-color 0.15s ease-in-out;
    transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out,
    border-color 0.15s ease-in-out;
}
@media (prefers-reduced-motion: reduce) {
    .nav-link {
        -webkit-transition: none;
        -o-transition: none;
        transition: none;
    }
}
.nav-link.disabled {
    color: #6c757d;
    pointer-events: none;
    cursor: default;
}

.navbar {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
}
.navbar > .container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: inherit;
    flex-wrap: inherit;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

.navbar-nav {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    padding-left: 0;
    margin-bottom: 0;
    list-style: none;
}
.navbar-nav .nav-link {
    padding-right: 0;
    padding-left: 0;
}
.navbar-nav .dropdown-menu {
    position: static;
}

.accordion-button {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    width: 100%;
    padding: 1rem 1.25rem;
    font-size: 1rem;
    color: #212529;
    background-color: transparent;
    border: 1px solid rgba(0, 0, 0, 0.125);
    border-radius: 0;
    overflow-anchor: none;
    -webkit-transition: color 0.15s ease-in-out,
    background-color 0.15s ease-in-out, border-color 0.15s ease-in-out,
    border-radius 0.15s ease, -webkit-box-shadow 0.15s ease-in-out;
    transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out,
    border-color 0.15s ease-in-out, border-radius 0.15s ease,
    -webkit-box-shadow 0.15s ease-in-out;
    -o-transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out,
    border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out,
    border-radius 0.15s ease;
    transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out,
    border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out,
    border-radius 0.15s ease;
    transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out,
    border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out,
    border-radius 0.15s ease, -webkit-box-shadow 0.15s ease-in-out;
}
@media (prefers-reduced-motion: reduce) {
    .accordion-button {
        -webkit-transition: none;
        -o-transition: none;
        transition: none;
    }
}
.accordion-button.collapsed {
    border-bottom-width: 0;
}
.accordion-button:not(.collapsed) {
    color: #008370;
    background-color: #e6f4f2;
}
.accordion-button:not(.collapsed)::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23008370'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
    -webkit-transform: rotate(180deg);
    -ms-transform: rotate(180deg);
    transform: rotate(180deg);
}
.accordion-button::after {
    -ms-flex-negative: 0;
    flex-shrink: 0;
    width: 1.25rem;
    height: 1.25rem;
    margin-left: auto;
    content: "";
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23212529'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-size: 1.25rem;
    -webkit-transition: -webkit-transform 0.2s ease-in-out;
    transition: -webkit-transform 0.2s ease-in-out;
    -o-transition: transform 0.2s ease-in-out;
    transition: transform 0.2s ease-in-out;
    transition: transform 0.2s ease-in-out, -webkit-transform 0.2s ease-in-out;
}
@media (prefers-reduced-motion: reduce) {
    .accordion-button::after {
        -webkit-transition: none;
        -o-transition: none;
        transition: none;
    }
}
.accordion-button:hover {
    z-index: 2;
}
.accordion-button:focus {
    z-index: 3;
    border-color: #80c8be;
    outline: 0;
    -webkit-box-shadow: 0 0 0 0.25rem rgba(0, 145, 124, 0.25);
    box-shadow: 0 0 0 0.25rem rgba(0, 145, 124, 0.25);
}

.accordion-header {
    margin-bottom: 0;
}

.accordion-item:first-of-type .accordion-button {
    border-top-left-radius: 0.25rem;
    border-top-right-radius: 0.25rem;
}

.accordion-item:last-of-type .accordion-button.collapsed {
    border-bottom-width: 1px;
    border-bottom-right-radius: 0.25rem;
    border-bottom-left-radius: 0.25rem;
}

.accordion-item:last-of-type .accordion-collapse {
    border-bottom-width: 1px;
    border-bottom-right-radius: 0.25rem;
    border-bottom-left-radius: 0.25rem;
}

.accordion-collapse {
    border: solid rgba(0, 0, 0, 0.125);
    border-width: 0 1px;
}

.accordion-body {
    padding: 1rem 1.25rem;
}

.accordion-flush .accordion-button {
    border-right: 0;
    border-left: 0;
    border-radius: 0;
}

.accordion-flush .accordion-collapse {
    border-width: 0;
}

.accordion-flush .accordion-item:first-of-type .accordion-button {
    border-top-width: 0;
    border-top-left-radius: 0;
    border-top-right-radius: 0;
}

.accordion-flush .accordion-item:last-of-type .accordion-button.collapsed {
    border-bottom-width: 0;
    border-bottom-right-radius: 0;
    border-bottom-left-radius: 0;
}

.alert {
    position: relative;
    padding: 1rem 1rem;
    margin-bottom: 1rem;
    border: 1px solid transparent;
    border-radius: 0.25rem;
}

@keyframes progress-bar-stripes {
    0% {
        background-position-x: 1rem;
    }
}

.progress {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    height: 1rem;
    overflow: hidden;
    font-size: 0.75rem;
    background-color: #e9ecef;
    border-radius: 0.25rem;
}

.list-group {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    padding-left: 0;
    margin-bottom: 0;
    border-radius: 0.25rem;
}

.list-group-item {
    position: relative;
    display: block;
    padding: 0.5rem 1rem;
    text-decoration: none;
    background-color: #fff;
    border: 1px solid rgba(0, 0, 0, 0.125);
}
.list-group-item:first-child {
    border-top-left-radius: inherit;
    border-top-right-radius: inherit;
}
.list-group-item:last-child {
    border-bottom-right-radius: inherit;
    border-bottom-left-radius: inherit;
}
.list-group-item.disabled,
.list-group-item:disabled {
    color: #6c757d;
    pointer-events: none;
    background-color: #fff;
}
.list-group-item.active {
    z-index: 2;
    color: #fff;
    background-color: #00917c;
    border-color: #00917c;
}
.list-group-item + .list-group-item {
    border-top-width: 0;
}
.list-group-item + .list-group-item.active {
    margin-top: -1px;
    border-top-width: 1px;
}

.toast {
    width: 350px;
    max-width: 100%;
    font-size: 0.875rem;
    pointer-events: auto;
    background-color: rgba(255, 255, 255, 0.85);
    background-clip: padding-box;
    border: 1px solid rgba(0, 0, 0, 0.1);
    -webkit-box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
    border-radius: 0.25rem;
}
.toast:not(.showing):not(.show) {
    opacity: 0;
}
.toast.hide {
    display: none;
}

.modal-open {
    overflow: hidden;
}
.modal-open .modal {
    overflow-x: hidden;
    overflow-y: auto;
}

.modal {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1050;
    display: none;
    width: 100%;
    height: 100%;
    overflow: hidden;
    outline: 0;
}

.modal-dialog {
    position: relative;
    width: auto;
    margin: 0.5rem;
    pointer-events: none;
}
.modal.fade .modal-dialog {
    -webkit-transition: -webkit-transform 0.3s ease-out;
    transition: -webkit-transform 0.3s ease-out;
    -o-transition: transform 0.3s ease-out;
    transition: transform 0.3s ease-out;
    transition: transform 0.3s ease-out, -webkit-transform 0.3s ease-out;
    -webkit-transform: translate(0, -50px);
    -ms-transform: translate(0, -50px);
    transform: translate(0, -50px);
}
@media (prefers-reduced-motion: reduce) {
    .modal.fade .modal-dialog {
        -webkit-transition: none;
        -o-transition: none;
        transition: none;
    }
}
.modal.show .modal-dialog {
    -webkit-transform: none;
    -ms-transform: none;
    transform: none;
}
.modal.modal-static .modal-dialog {
    -webkit-transform: scale(1.02);
    -ms-transform: scale(1.02);
    transform: scale(1.02);
}

.modal-backdrop {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1040;
    width: 100vw;
    height: 100vh;
    background-color: #000;
}
.modal-backdrop.fade {
    opacity: 0;
}
.modal-backdrop.show {
    opacity: 0.5;
}

.modal-body {
    position: relative;
    -webkit-box-flex: 1;
    -ms-flex: 1 1 auto;
    flex: 1 1 auto;
    padding: 1rem;
}

.modal-scrollbar-measure {
    position: absolute;
    top: -9999px;
    width: 50px;
    height: 50px;
    overflow: scroll;
}

@media (min-width: 576px) {
    .modal-dialog {
        max-width: 500px;
        margin: 1.75rem auto;
    }
}

.tooltip {
    position: absolute;
    z-index: 1070;
    display: block;
    margin: 0;
    font-family: var(--bs-font-sans-serif);
    font-style: normal;
    font-weight: 400;
    line-height: 1.5;
    text-align: left;
    text-align: start;
    text-decoration: none;
    text-shadow: none;
    text-transform: none;
    letter-spacing: normal;
    word-break: normal;
    word-spacing: normal;
    white-space: normal;
    line-break: auto;
    font-size: 0.875rem;
    word-wrap: break-word;
    opacity: 0;
}
.tooltip.show {
    opacity: 0.9;
}
.tooltip .tooltip-arrow {
    position: absolute;
    display: block;
    width: 0.8rem;
    height: 0.4rem;
}
.tooltip .tooltip-arrow::before {
    position: absolute;
    content: "";
    border-color: transparent;
    border-style: solid;
}

.tooltip-inner {
    max-width: 200px;
    padding: 0.25rem 0.5rem;
    color: #fff;
    text-align: center;
    background-color: #000;
    border-radius: 0.25rem;
}

.popover {
    position: absolute;
    top: 0;
    left: 0 /* rtl:ignore */;
    z-index: 1060;
    display: block;
    max-width: 276px;
    font-family: var(--bs-font-sans-serif);
    font-style: normal;
    font-weight: 400;
    line-height: 1.5;
    text-align: left;
    text-align: start;
    text-decoration: none;
    text-shadow: none;
    text-transform: none;
    letter-spacing: normal;
    word-break: normal;
    word-spacing: normal;
    white-space: normal;
    line-break: auto;
    font-size: 0.875rem;
    word-wrap: break-word;
    background-color: #fff;
    background-clip: padding-box;
    border: 1px solid rgba(0, 0, 0, 0.2);
    border-radius: 0.3rem;
}
.popover .popover-arrow {
    position: absolute;
    display: block;
    width: 1rem;
    height: 0.5rem;
    margin: 0 0.3rem;
}
.popover .popover-arrow::before,
.popover .popover-arrow::after {
    position: absolute;
    display: block;
    content: "";
    border-color: transparent;
    border-style: solid;
}

.popover-header {
    padding: 0.5rem 1rem;
    margin-bottom: 0;
    font-size: 1rem;
    background-color: #f0f0f0;
    border-bottom: 1px solid #d8d8d8;
    border-top-left-radius: calc(0.3rem - 1px);
    border-top-right-radius: calc(0.3rem - 1px);
}
.popover-header:empty {
    display: none;
}

.popover-body {
    padding: 1rem 1rem;
    color: #212529;
}

.carousel {
    position: relative;
}

.carousel.pointer-event {
    -ms-touch-action: pan-y;
    touch-action: pan-y;
}

.carousel-item {
    position: relative;
    display: none;
    float: left;
    width: 100%;
    margin-right: -100%;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    -webkit-transition: -webkit-transform 0.6s ease-in-out;
    transition: -webkit-transform 0.6s ease-in-out;
    -o-transition: transform 0.6s ease-in-out;
    transition: transform 0.6s ease-in-out;
    transition: transform 0.6s ease-in-out, -webkit-transform 0.6s ease-in-out;
}
@media (prefers-reduced-motion: reduce) {
    .carousel-item {
        -webkit-transition: none;
        -o-transition: none;
        transition: none;
    }
}

.carousel-item.active,
.carousel-item-next,
.carousel-item-prev {
    display: block;
}

/* rtl:begin:ignore */
.carousel-item-next:not(.carousel-item-start),
.active.carousel-item-end {
    -webkit-transform: translateX(100%);
    -ms-transform: translateX(100%);
    transform: translateX(100%);
}

.carousel-item-prev:not(.carousel-item-end),
.active.carousel-item-start {
    -webkit-transform: translateX(-100%);
    -ms-transform: translateX(-100%);
    transform: translateX(-100%);
}

/* rtl:end:ignore */

/* rtl:options: {
  "autoRename": true,
  "stringMap":[ {
    "name"    : "prev-next",
    "search"  : "prev",
    "replace" : "next"
  } ]
} */

.carousel-indicators {
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 2;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    padding-left: 0;
    margin-right: 15%;
    margin-left: 15%;
    list-style: none;
}
.carousel-indicators li {
    -webkit-box-sizing: content-box;
    box-sizing: content-box;
    -webkit-box-flex: 0;
    -ms-flex: 0 1 auto;
    flex: 0 1 auto;
    width: 30px;
    height: 3px;
    margin-right: 3px;
    margin-left: 3px;
    text-indent: -999px;
    cursor: pointer;
    background-color: #fff;
    background-clip: padding-box;
    border-top: 10px solid transparent;
    border-bottom: 10px solid transparent;
    opacity: 0.5;
    -webkit-transition: opacity 0.6s ease;
    -o-transition: opacity 0.6s ease;
    transition: opacity 0.6s ease;
}
@media (prefers-reduced-motion: reduce) {
    .carousel-indicators li {
        -webkit-transition: none;
        -o-transition: none;
        transition: none;
    }
}
.carousel-indicators .active {
    opacity: 1;
}

@-webkit-keyframes spinner-border {
    to {
        -webkit-transform: rotate(360deg) /* rtl:ignore */;
        transform: rotate(360deg) /* rtl:ignore */;
    }
}

@keyframes spinner-border {
    to {
        -webkit-transform: rotate(360deg) /* rtl:ignore */;
        transform: rotate(360deg) /* rtl:ignore */;
    }
}

.spinner-border {
    display: inline-block;
    width: 2rem;
    height: 2rem;
    vertical-align: text-bottom;
    border: 0.25em solid currentColor;
    border-right-color: transparent;
    border-radius: 50%;
    -webkit-animation: 0.75s linear infinite spinner-border;
    animation: 0.75s linear infinite spinner-border;
}

@keyframes spinner-grow {
    0% {
        -webkit-transform: scale(0);
        transform: scale(0);
    }
    50% {
        opacity: 1;
        -webkit-transform: none;
        transform: none;
    }
}

@media (prefers-reduced-motion: reduce) {
    .spinner-border {
        -webkit-animation-duration: 1.5s;
        animation-duration: 1.5s;
    }
}

.ratio {
    position: relative;
    width: 100%;
}
.ratio::before {
    display: block;
    padding-top: var(--aspect-ratio);
    content: "";
}
.ratio > * {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.fixed-top {
    position: fixed;
    top: 0;
    right: 0;
    left: 0;
    z-index: 1030;
}

.fixed-bottom {
    position: fixed;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 1030;
}

.sticky-top {
    position: -webkit-sticky;
    position: sticky;
    top: 0;
    z-index: 1020;
}

.visually-hidden {
    position: absolute !important;
    width: 1px !important;
    height: 1px !important;
    padding: 0 !important;
    margin: -1px !important;
    overflow: hidden !important;
    clip: rect(0, 0, 0, 0) !important;
    white-space: nowrap !important;
    border: 0 !important;
}

.float-start {
    float: left !important;
}

.float-end {
    float: right !important;
}

.d-inline-block {
    display: inline-block !important;
}

.d-block {
    display: block !important;
}

.d-flex {
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
}

.d-none {
    display: none !important;
}

.w-50 {
    width: 50% !important;
}

.w-75 {
    width: 75% !important;
}

.w-100 {
    width: 100% !important;
}

.justify-content-center {
    -webkit-box-pack: center !important;
    -ms-flex-pack: center !important;
    justify-content: center !important;
}

.justify-content-between {
    -webkit-box-pack: justify !important;
    -ms-flex-pack: justify !important;
    justify-content: space-between !important;
}

.align-items-center {
    -webkit-box-align: center !important;
    -ms-flex-align: center !important;
    align-items: center !important;
}

.align-self-center {
    -ms-flex-item-align: center !important;
    -ms-grid-row-align: center !important;
    align-self: center !important;
}

.m-0 {
    margin: 0 !important;
}

.mx-auto {
    margin-right: auto !important;
    margin-left: auto !important;
}

.mt-4 {
    margin-top: 1.5rem !important;
}

.mt-5 {
    margin-top: 3rem !important;
}

.mb-0 {
    margin-bottom: 0 !important;
}

.mb-2 {
    margin-bottom: 0.5rem !important;
}

.mb-3 {
    margin-bottom: 1rem !important;
}

.mb-4 {
    margin-bottom: 1.5rem !important;
}

.mb-5 {
    margin-bottom: 3rem !important;
}

.ms-auto {
    margin-left: auto !important;
}

.py-0 {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
}

.py-3 {
    padding-top: 1rem !important;
    padding-bottom: 1rem !important;
}

.ps-3 {
    padding-left: 1rem !important;
}

.fw-bold {
    font-weight: 700 !important;
}

.text-start {
    text-align: left !important;
}

.text-end {
    text-align: right !important;
}

.text-center {
    text-align: center !important;
}

.text-primary {
    color: #00917c !important;
}

.text-secondary {
    color: #52565e !important;
}

.text-danger {
    color: #dc3545 !important;
}

.text-white {
    color: #fff !important;
}

.text-black-50,
body {
    color: rgba(0, 0, 0, 0.5) !important;
}

.text-white-50 {
    color: rgba(255, 255, 255, 0.5) !important;
}

.bg-light {
    background-color: #f8f9fa !important;
}

/* rtl:begin:remove */

/* rtl:end:remove */

.rounded {
    border-radius: 0.25rem !important;
}

.rounded-circle {
    border-radius: 50% !important;
}

.visible {
    visibility: visible !important;
}

@media (min-width: 992px) {
    .d-lg-inline-block {
        display: inline-block !important;
    }
    .d-lg-none {
        display: none !important;
    }
}

.call-us {
    color: #fff;
}
@media (max-width: 991.98px) {
    .call-us {
        display: none !important;
    }
}
.call-us [class^="icon-"] {
    color: #fff;
    width: 40px;
    height: 40px;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 40px;
    flex: 0 0 40px;
    line-height: 36px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    margin-right: 10px;
    text-align: center;
    border: 2px solid transparent;
    -webkit-transition: 0.3s all ease;
    -o-transition: 0.3s all ease;
    transition: 0.3s all ease;
}
.call-us:hover {
    color: #fff;
}
.call-us:hover [class^="icon-"] {
    background: transparent;
    border: 2px solid #fff;
}

.logo {
    font-size: 24px;
    color: #fff;
    font-weight: 700;
}
.logo:hover {
    color: #fff;
    opacity: 0.8;
}

.site-nav {
    position: absolute;
    top: 40px;
    z-index: 9;
    width: 100%;
}

.site-nav {
    padding-bottom: 20px;
}
.site-nav h1,
.site-nav .h1 {
    margin: 0;
    padding: 0;
    font-size: 24px;
}
.site-nav .site-navigation .site-menu {
    display: inline-block;
    margin-bottom: 0;
}
.site-nav .site-navigation .site-menu > li {
    display: inline-block;
}
.site-nav .site-navigation .site-menu > li > a {
    font-size: 14px;
    padding: 10px 10px;
    display: inline-block;
    text-decoration: none !important;
    color: rgba(255, 255, 255, 0.5);
}
.site-nav .site-navigation .site-menu > li > a:hover {
    color: #fff;
}
.site-nav .site-navigation .site-menu > li.active > a {
    color: #fff;
}
.site-nav .site-navigation .site-menu .has-children {
    position: relative;
}
.site-nav .site-navigation .site-menu .has-children > a {
    position: relative;
    padding-right: 20px;
}
.site-nav .site-navigation .site-menu .has-children > a:before {
    position: absolute;
    content: "\e313";
    font-size: 14px;
    top: 50%;
    right: 0;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    font-family: "icomoon";
}
.site-nav .site-navigation .site-menu .has-children .dropdown {
    visibility: hidden;
    opacity: 0;
    top: 100%;
    z-index: 999;
    position: absolute;
    text-align: left;
    -webkit-box-shadow: 0 2px 10px -2px rgba(0, 0, 0, 0.1);
    box-shadow: 0 2px 10px -2px rgba(0, 0, 0, 0.1);
    padding: 20px 0;
    margin-top: 20px;
    margin-left: 0px;
    background: #fff;
    -webkit-transition: 0.2s 0s;
    -o-transition: 0.2s 0s;
    transition: 0.2s 0s;
    border-radius: 7px;
}
.site-nav .site-navigation .site-menu .has-children .dropdown a {
    font-size: 14px;
    text-transform: none;
    letter-spacing: normal;
    -webkit-transition: 0s all;
    -o-transition: 0s all;
    transition: 0s all;
    color: #000;
}
.site-nav .site-navigation .site-menu .has-children .dropdown .active a {
    color: #00917c !important;
}
.site-nav .site-navigation .site-menu .has-children .dropdown > li {
    list-style: none;
    padding: 0;
    margin: 0;
    min-width: 180px;
}
.site-nav .site-navigation .site-menu .has-children .dropdown > li > a {
    padding: 5px 20px;
    display: block;
}
.site-nav .site-navigation .site-menu .has-children .dropdown > li > a:hover {
    color: #00917c;
}
.site-nav
.site-navigation
.site-menu
.has-children
.dropdown
> li.has-children
> a:before {
    content: "\e315";
    right: 20px;
}
.site-nav
.site-navigation
.site-menu
.has-children
.dropdown
> li.has-children
> .dropdown,
.site-nav
.site-navigation
.site-menu
.has-children
.dropdown
> li.has-children
> ul {
    left: 100%;
    top: 0;
}
.site-nav
.site-navigation
.site-menu
.has-children
.dropdown
> li.has-children
> .dropdown
li
a:hover,
.site-nav
.site-navigation
.site-menu
.has-children
.dropdown
> li.has-children
> ul
li
a:hover {
    color: #00917c;
}
.site-nav
.site-navigation
.site-menu
.has-children
.dropdown
> li.has-children:hover
> a,
.site-nav
.site-navigation
.site-menu
.has-children
.dropdown
> li.has-children:active
> a,
.site-nav
.site-navigation
.site-menu
.has-children
.dropdown
> li.has-children:focus
> a {
    color: #00917c;
}
.site-nav .site-navigation .site-menu .has-children:hover > a,
.site-nav .site-navigation .site-menu .has-children:focus > a,
.site-nav .site-navigation .site-menu .has-children:active > a {
    color: #fff;
}
.site-nav .site-navigation .site-menu .has-children:hover,
.site-nav .site-navigation .site-menu .has-children:focus,
.site-nav .site-navigation .site-menu .has-children:active {
    cursor: pointer;
}
.site-nav .site-navigation .site-menu .has-children:hover > .dropdown,
.site-nav .site-navigation .site-menu .has-children:focus > .dropdown,
.site-nav .site-navigation .site-menu .has-children:active > .dropdown {
    -webkit-transition-delay: 0s;
    -o-transition-delay: 0s;
    transition-delay: 0s;
    margin-top: 0px;
    visibility: visible;
    opacity: 1;
}

.site-mobile-menu-close {
    display: block;
    position: relative;
    height: 30px;
    width: 30px;
    z-index: 99;
    cursor: pointer;
    top: -20px;
}
.site-mobile-menu-close > span {
    cursor: pointer;
    display: block;
    position: absolute;
    height: 30px;
    width: 30px;
}
.site-mobile-menu-close > span:before,
.site-mobile-menu-close > span:after {
    position: absolute;
    content: "";
    width: 2px;
    height: 30px;
    background: #000;
}
.site-mobile-menu-close > span:before {
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
}
.site-mobile-menu-close > span:after {
    -webkit-transform: rotate(-45deg);
    -ms-transform: rotate(-45deg);
    transform: rotate(-45deg);
}

.site-mobile-menu {
    width: 300px;
    position: fixed;
    right: 0;
    z-index: 2000;
    padding-top: 20px;
    background: #fff;
    height: calc(100vh);
    -webkit-transform: translateX(100%);
    -ms-transform: translateX(100%);
    transform: translateX(100%);
    -webkit-transition: 0.8s all cubic-bezier(0.23, 1, 0.32, 1);
    -o-transition: 0.8s all cubic-bezier(0.23, 1, 0.32, 1);
    transition: 0.8s all cubic-bezier(0.23, 1, 0.32, 1);
}
.offcanvas-menu .site-mobile-menu {
    -webkit-box-shadow: -10px 0 20px -10px rgba(0, 0, 0, 0.1);
    box-shadow: -10px 0 20px -10px rgba(0, 0, 0, 0.1);
    -webkit-transform: translateX(0%);
    -ms-transform: translateX(0%);
    transform: translateX(0%);
}
.site-mobile-menu .site-mobile-menu-header {
    width: 100%;
    float: left;
    padding-left: 20px;
    padding-right: 20px;
}
.site-mobile-menu .site-mobile-menu-header .site-mobile-menu-close {
    float: right;
    margin-top: 8px;
}
.site-mobile-menu .site-mobile-menu-header .site-mobile-menu-close span {
    font-size: 30px;
    display: inline-block;
    padding-left: 10px;
    padding-right: 0px;
    line-height: 1;
    cursor: pointer;
    -webkit-transition: 0.3s all ease;
    -o-transition: 0.3s all ease;
    transition: 0.3s all ease;
}
.site-mobile-menu .site-mobile-menu-body {
    overflow-y: scroll;
    -webkit-overflow-scrolling: touch;
    position: relative;
    padding: 0 20px 20px 20px;
    height: calc(100vh - 52px);
    padding-bottom: 150px;
}
.site-mobile-menu .site-nav-wrap {
    padding: 0;
    margin: 0;
    list-style: none;
    position: relative;
}
.site-mobile-menu .site-nav-wrap a {
    padding: 5px 20px;
    display: block;
    position: relative;
    color: #000;
}
.site-mobile-menu .site-nav-wrap a:hover {
    color: #00917c;
}
.site-mobile-menu .site-nav-wrap li {
    position: relative;
    display: block;
}
.site-mobile-menu .site-nav-wrap li.active > a {
    color: #00917c;
}
.site-mobile-menu .site-nav-wrap .arrow-collapse {
    position: absolute;
    right: 0px;
    top: 0px;
    z-index: 20;
    width: 36px;
    height: 36px;
    text-align: center;
    cursor: pointer;
    border-radius: 50%;
    border: 1px solid #f8f9fa;
}
.site-mobile-menu .site-nav-wrap .arrow-collapse:before {
    font-size: 14px;
    z-index: 20;
    font-family: "icomoon";
    content: "\e313";
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%) rotate(-180deg);
    -ms-transform: translate(-50%, -50%) rotate(-180deg);
    transform: translate(-50%, -50%) rotate(-180deg);
    -webkit-transition: 0.3s all ease;
    -o-transition: 0.3s all ease;
    transition: 0.3s all ease;
}
.site-mobile-menu .site-nav-wrap .arrow-collapse.collapsed:before {
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
}
.site-mobile-menu .site-nav-wrap > li {
    display: block;
    position: relative;
    float: left;
    width: 100%;
}
.site-mobile-menu .site-nav-wrap > li > a {
    padding-left: 20px;
    font-size: 14px;
}
.site-mobile-menu .site-nav-wrap > li > ul {
    padding: 0;
    margin: 0;
    list-style: none;
}
.site-mobile-menu .site-nav-wrap > li > ul > li {
    display: block;
}
.site-mobile-menu .site-nav-wrap > li > ul > li > a {
    padding-left: 40px;
    font-size: 14px;
}
.site-mobile-menu .site-nav-wrap > li > ul > li > ul {
    padding: 0;
    margin: 0;
}
.site-mobile-menu .site-nav-wrap > li > ul > li > ul > li {
    display: block;
}
.site-mobile-menu .site-nav-wrap > li > ul > li > ul > li > a {
    font-size: 14px;
    padding-left: 60px;
}

/* Burger */
.burger {
    width: 28px;
    height: 32px;
    cursor: pointer;
    position: relative;
}
.burger.light:before,
.burger.light span,
.burger.light:after {
    background: #fff;
}

.burger:before,
.burger span,
.burger:after {
    width: 100%;
    height: 2px;
    display: block;
    background: #000;
    border-radius: 2px;
    position: absolute;
    opacity: 1;
}

.burger:before,
.burger:after {
    -webkit-transition: top 0.35s cubic-bezier(0.23, 1, 0.32, 1),
    opacity 0.35s cubic-bezier(0.23, 1, 0.32, 1),
    background-color 1.15s cubic-bezier(0.86, 0, 0.07, 1),
    -webkit-transform 0.35s cubic-bezier(0.23, 1, 0.32, 1);
    transition: top 0.35s cubic-bezier(0.23, 1, 0.32, 1),
    opacity 0.35s cubic-bezier(0.23, 1, 0.32, 1),
    background-color 1.15s cubic-bezier(0.86, 0, 0.07, 1),
    -webkit-transform 0.35s cubic-bezier(0.23, 1, 0.32, 1);
    -o-transition: top 0.35s cubic-bezier(0.23, 1, 0.32, 1),
    transform 0.35s cubic-bezier(0.23, 1, 0.32, 1),
    opacity 0.35s cubic-bezier(0.23, 1, 0.32, 1),
    background-color 1.15s cubic-bezier(0.86, 0, 0.07, 1);
    transition: top 0.35s cubic-bezier(0.23, 1, 0.32, 1),
    transform 0.35s cubic-bezier(0.23, 1, 0.32, 1),
    opacity 0.35s cubic-bezier(0.23, 1, 0.32, 1),
    background-color 1.15s cubic-bezier(0.86, 0, 0.07, 1);
    transition: top 0.35s cubic-bezier(0.23, 1, 0.32, 1),
    transform 0.35s cubic-bezier(0.23, 1, 0.32, 1),
    opacity 0.35s cubic-bezier(0.23, 1, 0.32, 1),
    background-color 1.15s cubic-bezier(0.86, 0, 0.07, 1),
    -webkit-transform 0.35s cubic-bezier(0.23, 1, 0.32, 1);
    -webkit-transition: top 0.35s cubic-bezier(0.23, 1, 0.32, 1),
    -webkit-transform 0.35s cubic-bezier(0.23, 1, 0.32, 1),
    opacity 0.35s cubic-bezier(0.23, 1, 0.32, 1),
    background-color 1.15s cubic-bezier(0.86, 0, 0.07, 1);
    content: "";
}

.burger:before {
    top: 4px;
}

.burger span {
    top: 15px;
}

.burger:after {
    top: 26px;
}

/* Hover */
.burger:hover:before {
    top: 7px;
}

.burger:hover:after {
    top: 23px;
}

/* Click */
.burger.active span {
    opacity: 0;
}

.burger.active:before,
.burger.active:after {
    top: 40%;
}

.burger.active:before {
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=5);
    /*for IE*/
}

.burger.active:after {
    -webkit-transform: rotate(-45deg);
    -moz-transform: rotate(-45deg);
    filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=-5);
    /*for IE*/
}

.burger:focus {
    outline: none;
}

body {
    font-family: "Roboto", sans-serif;
    font-weight: 400;
    font-size: 14px;
    overflow-x: hidden;
}

a,
.btn {
    -webkit-transition: 0.3s all ease;
    -o-transition: 0.3s all ease;
    transition: 0.3s all ease;
    text-decoration: none;
}

.btn {
    padding: 15px 30px;
    border-radius: 30px;
    border-color: none;
    font-size: 14px;
}
.btn.active,
.btn:focus {
    outline: none;
    -webkit-box-shadow: none;
    box-shadow: none;
}
.btn.btn-primary {
    color: #fff;
    background-color: #00917c;
}

.form-control {
    height: 54px;
    border-color: rgba(0, 0, 0, 0.1);
    background-color: transparent !important;
    margin-bottom: 10px;
}
.form-control:active,
.form-control:focus {
    outline: none;
    -webkit-box-shadow: none;
    box-shadow: none;
    border-color: rgba(0, 0, 0, 0.2) !important;
}
.form-control::-webkit-input-placeholder {
    color: rgba(0, 0, 0, 0.7);
}
.form-control::-moz-placeholder {
    color: rgba(0, 0, 0, 0.7);
}
.form-control:-ms-input-placeholder {
    color: rgba(0, 0, 0, 0.7);
}
.form-control:-moz-placeholder {
    color: rgba(0, 0, 0, 0.7);
}

textarea {
    height: auto !important;
}

#overlayer {
    width: 100%;
    height: 100%;
    position: fixed;
    z-index: 7100;
    background: #fff;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}

.loader {
    z-index: 7700;
    position: fixed;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
}

.form-control {
    padding-left: 15px;
    padding-right: 15px;
    border-radius: 30px;
    border-color: transparent;
    height: 52px;
    background: #f8f9fa !important;
}
.form-control:focus,
.form-control:active {
    outline: none;
    -webkit-box-shadow: none;
    box-shadow: none;
}

textarea {
    height: auto !important;
    border-radius: 7px !important;
}

.hero {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-color: #ccc;
}
.hero,
.hero > .container > .row {
    height: 100vh;
    min-height: 780px;
}
.hero.overlay {
    position: relative;
    z-index: 1;
}
.hero.overlay:before {
    background-color: rgba(0, 0, 0, 0.4);
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    top: 0;
    z-index: 1;
}
.hero > .container {
    position: relative;
    z-index: 2;
}
.hero .heading {
    color: #000;
    font-size: 50px;
    font-weight: 700;
}

.section {
    padding-top: 2rem;
    padding-bottom: 2rem;
}
.section .heading {
    text-transform: uppercase;
    font-size: 24px;
    font-weight: bold;
    color: #00917c;
}

.sec-form-search .form {
    position: relative;
    z-index: 2;
    margin-top: -50px;
    padding: 30px;
    background-color: #fff;
    -webkit-box-shadow: 0 15px 30px 0 rgba(0, 0, 0, 0.1);
    box-shadow: 0 15px 30px 0 rgba(0, 0, 0, 0.1);
}

#features-slider-nav,
#post-slider-nav,
#testimonial-slider-nav {
    outline: none;
    -webkit-box-shadow: none;
    box-shadow: none;
    position: relative;
    z-index: 99;
}
#features-slider-nav .btn,
#post-slider-nav .btn,
#testimonial-slider-nav .btn {
    display: inline-block;
    cursor: pointer;
    padding: 7px 20px !important;
    background-color: transparent;
    border-color: transparent;
    color: #000;
    border-radius: 30px;
    border: 1px solid rgba(0, 0, 0, 0.1);
}
#features-slider-nav .btn:hover,
#post-slider-nav .btn:hover,
#testimonial-slider-nav .btn:hover {
    border-color: #000;
}

.more {
    position: absolute;
    bottom: 30px;
    text-transform: uppercase;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.1rem;
    color: #888;
}
.more:hover {
    color: #000;
}

.feature {
    padding: 50px 50px 100px 50px;
    background-color: #fff;
    -webkit-box-shadow: 0 15px 30px 0 rgba(0, 0, 0, 0.05);
    box-shadow: 0 15px 30px 0 rgba(0, 0, 0, 0.05);
    position: relative;
}
.feature [class^="flaticon-"] {
    font-size: 70px;
    color: #00917c;
}
.feature h3,
.feature .h3 {
    font-size: 20px;
    font-weight: bold;
}

.features-slider-wrap {
    position: relative;
    margin-bottom: -250px;
}
.features-slider-wrap .tns-inner {
    padding-bottom: 100px;
}
.features-slider-wrap .tns-controls {
    position: absolute;
    z-index: 2;
}
.features-slider-wrap .tns-controls button {
    background: none;
    border: none;
}
.features-slider-wrap .tns-nav {
    position: absolute;
    z-index: 2;
}
.features-slider-wrap .tns-nav button {
    background: none;
    border: none;
    display: inline-block;
    margin: 2px;
    height: 15px;
}
.features-slider-wrap .tns-nav button:active,
.features-slider-wrap .tns-nav button:focus {
    outline: none;
}
.features-slider-wrap .tns-nav button:before {
    position: absolute;
    content: "";
    width: 7px;
    height: 7px;
    background-color: rgba(0, 0, 0, 0.5);
    -webkit-transition: 0.3s all ease;
    -o-transition: 0.3s all ease;
    transition: 0.3s all ease;
}
.features-slider-wrap .tns-nav button.tns-nav-active:before {
    background-color: #000;
}

.img-box-shadow {
    -webkit-box-shadow: 0 15px 30px 0 rgba(0, 0, 0, 0.1);
    box-shadow: 0 15px 30px 0 rgba(0, 0, 0, 0.1);
}

.sec-about .has-bg {
    position: relative;
}
.sec-about .has-bg:before {
    top: -100px;
    bottom: -100px;
    content: "";
    background-color: #00917c;
    width: 200%;
    position: absolute;
    left: -150%;
    z-index: -1;
}

.post-slider-wrap {
    position: relative;
}
.post-slider-wrap #post-slider-nav {
    position: absolute;
    bottom: 0;
    left: 50%;
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
}
.post-slider-wrap .tns-inner {
    padding-bottom: 100px;
}

.post-entry {
    background-color: #fff;
    -webkit-box-shadow: 0 10px 20px 0 rgba(0, 0, 0, 0.05);
    box-shadow: 0 10px 20px 0 rgba(0, 0, 0, 0.05);
}
.post-entry .thumbnail {
    display: block;
}
.post-entry h3,
.post-entry .h3 {
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 50px;
    display: block;
}
.post-entry h3 a,
.post-entry .h3 a {
    color: #000;
}
.post-entry .post-entry-body {
    padding: 40px 30px 30px 30px;
    position: relative;
}
.post-entry .post-entry-body [class^="icon-"] {
    position: absolute;
    top: -20px;
    -webkit-box-shadow: 0 10px 20px 0 rgba(0, 0, 0, 0.2);
    box-shadow: 0 10px 20px 0 rgba(0, 0, 0, 0.2);
    width: 40px;
    height: 40px;
    line-height: 40px;
    background-color: #00917c;
    color: #fff;
    text-align: center;
    border-radius: 50%;
}

.sec-faq {
    background-color: #00917c;
    margin-top: -20rem;
    padding-top: 20rem;
}

.accordion-flush .accordion-collapse {
    border: none !important;
}

.accordion-flush .accordion-body {
    border: none !important;
    background: rgba(0, 0, 0, 0.1);
    border-radius: 4px;
}

.accordion-flush .accordion-header button {
    font-weight: normal;
    border: none;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1) !important;
}
.accordion-flush .accordion-header button[aria-expanded="true"] {
    background-color: transparent;
    border: none;
    border-bottom: none !important;
    color: #000;
    opacity: 1;
}
.accordion-flush .accordion-header button[aria-expanded="true"]:after {
    opacity: 1;
    color: #000;
}


.text-black {
    color: #000 !important;
}

.input-icon-wrap {
    position: relative;
}
.input-icon-wrap [class^="icon-"] {
    position: absolute;
    top: 50%;
    right: 20px;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
}

.media-1 .price {
    font-size: 18px;
    color: #00917c;
    font-weight: 700;
    position: relative;
    top: -2px;
}
.media-1 .price sup {
    font-weight: 400;
    font-size: 16px;
    top: -7px;
}

.social-custom li {
    display: inline-block;
}
.social-custom li a {
    display: inline-block;
    width: 30px;
    height: 30px;
    position: relative;
    background: #00917c;
    border-radius: 50%;
    color: #fff;
    font-size: 15px;
}
.social-custom li a:before {
    display: none;
}
.social-custom li a > span {
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
}
.social-custom li a:hover {
    background: #00917c;
    color: #fff;
}
.boxy {
    box-shadow: 0 8px 6px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
    border: 0;
}
@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800;900&display=swap");

.modal-header {
    border-bottom: none !important;
}
.wrapper {
    max-width: 100%;
    min-height: 100%;
    font-family: "Poppins", sans-serif;
    padding: 40px 30px 30px 30px;
    border-radius: 15px;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
.logo_login {
    width: 350px;
    margin: auto;
}
.logo_login img {
    width: 100%;
    height: 100px;
    object-fit: cover;
}
.wrapper .name {
    font-weight: 600;
    font-size: 1.3rem;
    letter-spacing: 1.3px;
    padding-left: 10px;
    color: #555;
}
.wrapper .form-field input {
    display: block;
    border: none;
    outline: none;
    background: none;
    font-size: 1rem;
    color: #666;
    padding: 10px 15px 10px 10px;
}
.wrapper .form-field {
    padding-left: 10px;
    margin-bottom: 20px;
    border-radius: 1px;
    box-shadow: inset 0px 0px 0px #cbced1, inset 0px 0px 0px #fff;
    border-bottom: 1px solid black;
}
.wrapper .form-field .fas {
    color: #555;
}
.wrapper .btn {
    box-shadow: none;
    width: 100%;
    background-color: #198754;
    color: #fff;
    border-radius: 0px;
    box-shadow: 3px 3px 3px #b1b1b1, -3px -3px 3px #fff;
    letter-spacing: 1.3px;
    font-weight: bold;
}
.wrapper .btn:hover {
    background-color: #5cb85c;
}
.wrapper a {
    text-decoration: none;
    font-size: 0.8rem;
    color: #03a9f4;
}
.wrapper a:hover {
    color: #039be5;
}
.cursorclick {
    cursor: pointer;
}
.content-colorlib p {
    color: #b3b3b3;
    font-weight: 300;
    font-family: "Roboto", sans-serif;
}
.text-danger {
    font-size: 12px;
}

.content-colorlib h1,
h2,
h3,
h4,
h5,
h6,
.h1,
.h2,
.h3,
.h4,
.h5,
.h6 {
}

.content-colorlib a {
    -webkit-transition: 0.3s all ease;
    -o-transition: 0.3s all ease;
    transition: 0.3s all ease;
}
a:hover {
    text-decoration: none !important;
}

.content-colorlib.content {
    padding: 7rem 0;
}

.content-colorlib h2 {
    font-size: 20px;
}

@media (max-width: 991.98px) {
    .half .bg {
        height: 200px;
    }
}

.half .contents {
    background: #f6f7fc;
}

.half .contents {
    width: 100%;
}

.half .bg {
    width: 20%;
}

@media (max-width: 991.98px) {
    .half .contents,
    .half .bg {
        width: 100%;
    }
}

.half .contents .form-control,
.half .bg .form-control {
    border: none;
    -webkit-box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.1);
    box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.1);
    border-radius: 4px;
    height: 54px;
    background: #fff;
}
.first {
    margin-top: 30px;
}
.half .contents .form-control:active,
.half .contents .form-control:focus,
.half .bg .form-control:active,
.half .bg .form-control:focus {
    outline: none;
    -webkit-box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0);
    box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0);
}

.half .bg {
    background-size: cover;
    background-position: center;
}

.half a {
    color: #888;
    text-decoration: underline;
}

.half .btn {
    height: 54px;
    padding-left: 30px;
    padding-right: 30px;
}

.half .forgot-pass {
    position: relative;
    top: 2px;
    font-size: 14px;
}

.control {
    display: block;
    position: relative;
    padding-left: 30px;
    margin-bottom: 15px;
    cursor: pointer;
    font-size: 14px;
}

.control .caption {
    position: relative;
    top: 0.2rem;
    color: #888;
}

.control input {
    position: absolute;
    z-index: -1;
    opacity: 0;
}

.checkedbox {
    position: absolute;
    z-index: -1;
    opacity: 0;
}

.control__indicator {
    position: absolute;
    top: 2px;
    left: 0;
    height: 20px;
    width: 20px;
    background: #e6e6e6;
    border-radius: 4px;
}

.control--radio .control__indicator {
    border-radius: 50%;
}

.control:hover input ~ .control__indicator,
.control input:focus ~ .control__indicator {
    background: #ccc;
}

.control input:checked ~ .control__indicator {
    background: #fb771a;
}

.control:hover input:not([disabled]):checked ~ .control__indicator,
.control input:checked:focus ~ .control__indicator {
    background: #fb8633;
}

.control input:disabled ~ .control__indicator {
    background: #e6e6e6;
    opacity: 0.9;
    pointer-events: none;
}

.control__indicator:after {
    font-family: "icomoon";
    content: "e5ca";
    position: absolute;
    display: none;
    font-size: 16px;
    -webkit-transition: 0.3s all ease;
    -o-transition: 0.3s all ease;
    transition: 0.3s all ease;
}

.control input:checked ~ .control__indicator:after {
    display: block;
    color: #fff;
}

.control--checkbox .control__indicator:after {
    top: 50%;
    left: 50%;
    margin-top: -1px;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
}

.control--checkbox input:disabled ~ .control__indicator:after {
    border-color: #7b7b7b;
}

.control--checkbox input:disabled:checked ~ .control__indicator {
    background-color: #7e0cf5;
    opacity: 0.2;
}

.btn-primary:not(:disabled):not(.disabled):active,
.show > .btn-primary.dropdown-toggle {
    color: #fff;
    background-color: #de5e04;
    border-color: #d25904;
}
.half .btn {
    height: 54px;
    padding-left: 30px;
    padding-right: 30px;
}
.btn-primary:hover {
    color: #fff;
    background-color: #eb6304;
    border-color: #de5e04;
}
.wrapper {
    max-width: 100%;
    min-height: 100%;
    font-family: "Poppins", sans-serif;
    padding: 40px 30px 30px 30px;
    border-radius: 15px;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
.wrapper .name {
    font-weight: 600;
    font-size: 1.3rem;
    letter-spacing: 1.3px;
    padding-left: 10px;
    color: #555;
}
.wrapper .form-field input {
    width: 100%;
    display: block;
    border: none;
    outline: none;
    background: none;
    font-size: 1rem;
    color: #666;
    padding: 10px 15px 10px 10px;
}
.wrapper .form-field textarea {
    display: block;
    border: none;
    outline: none;
    background: none;
    font-size: 1rem;
    color: #666;
    padding: 10px 15px 10px 10px;
}
.wrapper .form-field {
    padding-left: 10px;
    margin-bottom: 20px;
    border-radius: 1px;
    box-shadow: inset 0px 0px 0px #cbced1, inset 0px 0px 0px #fff;
    border-bottom: 1px solid black;
}
.wrapper .form-field .fas {
    color: #555;
}
.wrapper .btn {
    box-shadow: none;
    width: 100%;
    background-color: #198754;
    color: #fff;
    border-radius: 0px;
    box-shadow: 3px 3px 3px #b1b1b1, -3px -3px 3px #fff;
    letter-spacing: 1.3px;
}
.wrapper .btn:hover {
    background-color: #5cb85c;
}
@media (min-width: 576px) {
    .modal-dialog {
        max-width: var(--bs-modal-width);
        margin-right: auto;
        margin-left: auto;
    }
}
