@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@100;400;500;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@100;400;500;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Open+Sans:wght@300;400;600&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Lato:wght@300;400;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Source+Sans+Pro:wght@300;400;600&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Merriweather:wght@400;700&display=swap');


@font-face {
    font-family: 'Montserrat';
    font-style: normal;
    font-weight: 100 900;
    font-display: swap;
    src: url('https://fonts.gstatic.com/s/montserrat/v29/JTUSjIg1_i6t8kCHKm459W1hyzbi.woff2') format('woff2');
}

* {
    margin: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Montserrat', 'Arial', sans-serif;
}

h1, h2, h3 {
    font-family: 'Roboto', sans-serif;
}

p {
    font-family: 'Open Sans', sans-serif;
}

h1 {
    font-family: 'Poppins', sans-serif;
}

blockquote {
    font-family: 'Merriweather', serif;
}

code {
    font-family: 'Source Sans Pro', sans-serif;
}

small, .legal {
    font-family: 'Lato', sans-serif;
}

.nav-item-link {
    position: relative;
    padding-bottom: 5px;
    transition: all 0.3s ease;
    color: #000000;
    text-decoration: none;
}

/* * Webkit scrollbar */

::-webkit-scrollbar-thumb {
    background-color: #888;
    border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
    background-color: #555;
}

/* * Navbar Link */

.navbarLinks:hover {
    color: #BC3701 !important;
}

.active-link {
    color: #BC3701 !important;
    font-weight: 700;
}

/* * Navigation Bar */

.nav-item-link::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0%;
    height: 2px;
    background-color: #BC3701;
    transition: width 0.3s ease;
    width: 100%;
}

/* * Header */

.home-content {
    background-image: url("/image/home.png");
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    width: 100%;
    height: 100vh;
    display: flex;
    justify-content: center;
    text-align: center;
    position: relative;
    z-index: 1;
}

@media (max-width: 1000px) {
    .home-content {
        height: 850px;
        display: flex;
        justify-content: center;
        text-align: center;
    }
}

.home-content::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.4);
    z-index: 2;
}

.home-content>* {
    position: relative;
    z-index: 3;
    color: white;
}

.overlay {
    margin-top: 30px;
    padding: 10px;
    border-radius: 10px;
    color: #ffffff;
}

@media (max-width: 1000px) {
    .overlay {
        padding: 20px;
    }

    .d-flex.gap-3 {
        flex-direction: column;
        gap: 20px;
    }

    .mt-4.d-flex {
        flex-direction: column;
        gap: 20px;
    }

    .d-flex.justify-content-end {
        justify-content: center;
    }
}

/* * Solutions section */

.solution-card {
    height: 260px;
}

@media (max-width: 768px) {
    .solution-card {
        height: 240px !important;
    }
}

@media (min-width: 768px) and (max-width: 992px) {
    .solution-card {
        height: 260px !important;
    }
}


/* * Progress Bar section */

.progress-bar.bg-custom {
    background-color: #5FAAB1 !important;
}


/* * Sidebar */

.sidebar-enter {
    opacity: 0;
    transform: translateX(-100%);
}

.sidebar-enter-active {
    opacity: 1;
    transform: translateX(0);
    transition: all 300ms ease;
}

.sidebar-exit {
    opacity: 1;
    transform: translateX(0);
}

.sidebar-exit-active {
    opacity: 0;
    transform: translateX(-100%);
    transition: all 300ms ease;
}

.col-5-custom {
    flex: 0 0 20%;
    max-width: 20%;
}

@keyframes bannerMove {
    0% {
        background-position: 200% 0;
    }

    100% {
        background-position: -200% 0;
    }
}

/* * Modal Rate */
.custom-modal-width {
    max-width: 950px !important;
}

@media print {
    body * {
        visibility: hidden !important;
    }

    #pdf-content, #pdf-content * {
        visibility: visible !important;
    }

    #pdf-content {
        position: absolute;
        left: 0;
        top: 0;
        width: 100% !important;
        padding: 0;
        margin: 0;
    }

    .modal,
    .modal-dialog,
    .modal-content {
        position: static !important;
        visibility: visible !important;
        width: 100% !important;
        max-width: none !important;
        box-shadow: none !important;
    }

    button, .modal-header {
        display: none !important;
    }
}