/* Inside your site.css file */
@import url('https://fonts.googleapis.com/css2?family=Roboto&display=swap');

html {
    font-size: 14px;
}

.container {
    max-width: 1600px;
}

@media (min-width: 768px) {
    html {
        font-size: 16px;
    }
}

html {
    position: relative;
    min-height: 100%;
}

body {
    margin-bottom: 60px;
    font-family: 'Roboto', sans-serif;
    background-color: #F5F7F9 !important;
}

footer {
    position: absolute;
    bottom: 0;
    width: 100%;
    background-color: #fff;
    color: #fff;
    padding: 10px 0;
    text-align: center;
}

.lpColorText {
    color: #AD0132;
}

.lpColorBg {
    background: #AD0132;
    color: #fff;
}

.btn-lp {
    background-color: #ad0132;
    color: white;
}

.overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
}
.error-border {
    border-color: red!important;
}
.spinner-border {
    width: 3rem;
    height: 3rem;
}

.w-5 {
    width: 5% !important
}

.w-10 {
    width: 10% !important
}

.w-20 {
    width: 20% !important
}

.navbar {
    padding: 1.5rem 0;
}

.navbar-nav .nav-item {
    position: relative;
}

.navbar-nav .nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: #AD0132;
    transition: width 0.3s ease;
}

.dropdown-menu {
    position: relative;
}
/* Style for nav-link */
.dropdown-menu .nav-link {
    position: relative; /* Ensure this is positioned */
    display: inline-block; /* Ensure this is inline-block */
    padding-bottom: 4px; /* Optional: Adds some space for the underline */
}

.dropdown-menu .nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: #AD0132;
    transition: width 0.3s ease;
}

.nav-link {
    width: 100%;
}

.nav-link:hover::after {
    width: 100%;
}

.navbar-nav .nav-item .nav-link:hover {
    color: #AD0132 !important;
    font-weight: bold;
}
.box{
    height:100px;
}
[type=file] {
    height: 0.1px;
    width: 0.1px;
    opacity: 0;
    overflow: hidden;
    position: absolute;
    margin: auto;
    display: none;
    z-index: -1;
}

    [type=file] + label {
        background-color: #d3394c;
        color: #f1e5e6;
        cursor: pointer;
        display: inline-block;
        font-size: 1.25rem;
        font-weight: 700;
        overflow: hidden;
        padding: 0.625rem 1.25rem;
        text-overflow: ellipsis;
        white-space: nowrap;
    }

        [type=file] + label svg {
            fill: currentColor;
            height: 1em;
            width: 1em;
            margin-top: -0.25em;
            margin-right: 0.25em;
            vertical-align: middle;
        }

        [type=file] + label:hover {
            background-color: #722040;
        }

    [type=file]:focus + label {
        background-color: #722040;
        outline: 1px dotted #000;
    }