/********** Template CSS **********/
:root {
   /* --primary: #355EFC;*/
    --secondary: #E93C05;
    --tertiary: #555555;
    --light: #DFE4FD;
    --dark: #011A41;
}
@media screen and (min-device-width: 1920px) {
    .container {
        max-width: 1580px;
        width: 100%;
    }
}
:root {

    --success: #1cc88a;
    --info: #36b9cc;
    --warning: #f6c23e;
    --text-dark: #5a5c69;
    --text-light: #ffffff;
    --card-shadow: 0 0.15rem 1.75rem 0 rgba(58, 59, 69, 0.1);
}




.dropdown-item:hover,
.dropdown-item:hover i {
    color: #fff!important;
}

.main-menu {
    background: #1c405f;
    border-radius: 10px;
   
}

.full-width-header .rs-header .menu-area.sticky .main-menu {
    padding-left: 15px;
    padding-right: 15px;
}



.back-to-top {
    position: fixed;
    display: none;
    right: 30px;
    bottom: 30px;
    z-index: 10000;
}

.full-width-header .rs-header .menu-area.sticky .main-menu .rs-menu ul.nav-menu > li > a img {
    color: #fff!important;
    height:18px;

}
    
@keyframes slowRise {
    0% {
        opacity: 0;
        transform: translateY(30px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

@keyframes iconBounce {
    0% {
        transform: scale(0.5) rotate(-30deg);
    }

    70% {
        transform: scale(1.1) rotate(5deg);
    }

    100% {
        transform: scale(1) rotate(0);
    }
}

.bg-card {
    background: linear-gradient(135deg, #ffffff 0%, #f1f8ff 100%);
    border-radius: 12px;
    border: none;
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

    .bg-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 12px 20px rgba(0, 0, 0, 0.1);
    }

.icon-shape {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
}

.bg-gradient-primary {
   /* background: linear-gradient(135deg, #027db6 0%, #014a6d 100%);*/
    background: #fff;
    color: white;
}

/* Animation Styles */
.animate__animated {
    animation-duration: 1s;
    animation-fill-mode: both;
}

.animate__slideInLeft {
    animation-name: slideInLeft;
}

.animate__fadeIn {
    animation-name: fadeIn;
}

.animate__bounceIn {
    animation-name: bounceIn;
}

.animate__flipInX {
    animation-name: flipInX;
}

.animate__faster {
    animation-duration: 0.5s;
}

.animate__delay-1s {
    animation-delay: 0.3s;
}

.animate__delay-2s {
    animation-delay: 0.6s;
}

.animate__delay-3s {
    animation-delay: 0.9s;
}

/* Keyframe Animations */
@keyframes slideInLeft {
    from {
        transform: translate3d(-100%, 0, 0);
        visibility: visible;
    }

    to {
        transform: translate3d(0, 0, 0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes bounceIn {
    from, 20%, 40%, 60%, 80%, to {
        animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
    }

    0% {
        opacity: 0;
        transform: scale3d(.3, .3, .3);
    }

    20% {
        transform: scale3d(1.1, 1.1, 1.1);
    }

    40% {
        transform: scale3d(.9, .9, .9);
    }

    60% {
        opacity: 1;
        transform: scale3d(1.03, 1.03, 1.03);
    }

    80% {
        transform: scale3d(.97, .97, .97);
    }

    to {
        opacity: 1;
        transform: scale3d(1, 1, 1);
    }
}

@keyframes flipInX {
    from {
        transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
        animation-timing-function: ease-in;
        opacity: 0;
    }

    40% {
        transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
        animation-timing-function: ease-in;
    }

    60% {
        transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
        opacity: 1;
    }

    80% {
        transform: perspective(400px) rotate3d(1, 0, 0, -5deg);
    }

    to {
        transform: perspective(400px);
    }
}

/* Element Animations */
.pulse-animation {
    animation: pulse 2s infinite;
}

.rotate-animation {
    animation: rotate 4s linear infinite;
}

@keyframes pulse {
    0% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(0, 123, 255, 0.7);
    }

    70% {
        transform: scale(1.05);
        box-shadow: 0 0 0 10px rgba(0, 123, 255, 0);
    }

    100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(0, 123, 255, 0);
    }
}
.bg-card {
    background: linear-gradient(135deg, #ffffff 0%, #f1f8ff 100%);
    border-radius: 12px;
    border: none;
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}
@keyframes rotate {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

/* Counting animations */
.count-up, .currency-up, .percent-up {
    display: inline-block;
    color: #027db6;
}

/* Responsive adjustments */
@media (max-width: 992px) {
    .col-lg-3 {
        margin-bottom: 20px;
    }
}

.whitespace {
    white-space: nowrap;
}
/* Custom dropdown styles to avoid conflicts */
.custom-user-dropdown {
    position: relative;
    display: inline-block;
    cursor: pointer;
}

.custom-user-info {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 16px;
    border-radius: 6px;
    transition: all 0.3s ease;
    background: #ffffff;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.custom-user-dropdown:hover .custom-user-info,
.custom-user-dropdown.active .custom-user-info {
    background-color: #e6f0ff;
}

.custom-user-icon {
    width: 32px;
    height: 32px;
    background-color: #1c405f;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.custom-user-name {
    font-weight: 500;
    color: #1c405f;
}

.custom-dropdown-arrow {
    font-size: 12px;
    color: #1c405f;
    transition: transform 0.3s ease;
    margin-left: 8px;
}

.custom-user-dropdown:hover .custom-dropdown-arrow,
.custom-user-dropdown.active .custom-dropdown-arrow {
    transform: rotate(180deg);
}

.custom-dropdown-menu {
    position: absolute;
    top: 100%;
    right: 0;
    min-width: 220px;
    background: white;
    border-radius: 6px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    z-index: 1000;
    padding: 8px 0;
    margin-top: 8px;
    border: 1px solid #e1e5eb;
    list-style:none;
}

.custom-user-dropdown:hover .custom-dropdown-menu,
.custom-user-dropdown.active .custom-dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.custom-dropdown-item {
    display: flex;
    align-items: center;
    padding: 10px 20px;
    color: #1c405f;
    text-decoration: none;
    transition: all 0.2s ease;
}

    .custom-dropdown-item:hover {
        background-color: #f0f7ff;
        padding-left: 22px;
    }

    .custom-dropdown-item i {
        width: 20px;
        text-align: center;
        margin-right: 12px;
        color: #4a90e2;
    }




.balance-section {
    display: flex;
    align-items: center;
    gap: 25px;
    animation: fadeInDown 0.8s ease-out;
}

.refresh-btn {
    background: linear-gradient(135deg, #1c405f 0%, #2a5d84 100%);
    color: white;
    border: none;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 4px 10px rgba(28, 64, 95, 0.3);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

    .refresh-btn::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: linear-gradient(135deg, rgba(255,255,255,0.3) 0%, transparent 100%);
        opacity: 0;
        transition: opacity 0.3s;
    }

    .refresh-btn:hover {
        transform: scale(1.1);
        box-shadow: 0 6px 15px rgba(28, 64, 95, 0.4);
    }

        .refresh-btn:hover::before {
            opacity: 1;
        }

    .refresh-btn:active {
        transform: scale(0.95) rotate(180deg);
    }
.refresh-btn {
    animation: slowRise 1.2s ease-out both, fadeIn 1.5s ease both;
}

#dvtopupbalance {
    animation: slowRise 1.2s ease-out 0.3s both, fadeIn 1.5s ease 0.3s both;
}

#dvcreditbalance {
    animation: slowRise 1.2s ease-out 0.6s both, fadeIn 1.5s ease 0.6s both;
}

.balance-icon i {
    animation: iconBounce 1.5s ease-out 0.3s both;
}


.balance-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 6px 20px;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 10px;
    border-left: 4px solid #1c405f;
    box-shadow: 0 4px 12px rgba(28, 64, 95, 0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    transition: transform 0.3s ease;
}

    .balance-item::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        /*background: linear-gradient(135deg, rgba(28, 64, 95, 0.05) 0%, transparent 100%);*/
        background: rgba(28, 64, 95, 0.1);
        opacity: 0;
        transition: opacity 0.3s;
    }

    .balance-item:hover {
        transform: translateY(-3px);
        box-shadow: 0 6px 15px rgba(28, 64, 95, 0.15);
    }

        .balance-item:hover::before {
            opacity: 1;
        }

.balance-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background:#fff;
    color: #1c405f;
    font-size: 18px;
    transition: all 0.3s ease;
}

.balance-item:hover .balance-icon {
    background: #1c405f;
    color: white;
    transform: scale(1.1);
}

.balance-text {
    display: flex;
    flex-direction: column;
}

.balance-label {
    font-size: 13px;
    font-weight: 500;
    color: #666;
    margin-bottom: 3px;
}

.balance-amount {
    font-weight: 500;
    color: #1c405f;
    font-size: 16px;
    transition: all 0.3s ease;
}

.balance-item:hover .balance-amount {
    color: #2a5d84;
    transform: translateX(3px);
}
/* User section with animations */
.user-section {
    display: flex;
    align-items: center;
    gap: 25px;
    animation: fadeInRight 0.8s ease-out;
}

.announcement-section {
    background: linear-gradient(135deg, #1c405f 0%, #2a5d84 100%);
    color: white;
    padding: 5px 20px;
    border-radius: 10px;
    font-size: 14px;
    max-width: 300px;
    box-shadow: 0 5px 15px rgba(28, 64, 95, 0.3);
    position: relative;
    overflow: hidden;
}

    .announcement-section::before {
        content: '';
        position: absolute;
        top: -50%;
        left: -50%;
        width: 200%;
        height: 200%;
        background: linear-gradient(135deg, rgba(255,255,255,0.1) 0%, transparent 100%);
        transform: rotate(30deg);
        animation: shine 6s infinite linear;
    }

.announcement-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 8px;
    font-weight: 500;
    position: relative;
    z-index: 2;
}

.announcement-content {
    display: flex;
    align-items: center;
    gap: 10px;
    position: relative;
    z-index: 2;
}

.user-dropdown {
    position: relative;
}

.user-info {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 20px;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(28, 64, 95, 0.1);
    position: relative;
    overflow: hidden;
}

    .user-info::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: linear-gradient(135deg, rgba(28, 64, 95, 0.05) 0%, transparent 100%);
        opacity: 0;
        transition: opacity 0.3s;
    }

    .user-info:hover {
        transform: translateY(-3px);
        box-shadow: 0 6px 15px rgba(28, 64, 95, 0.15);
    }

        .user-info:hover::before {
            opacity: 1;
        }

.user-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #1c405f 0%, #2a5d84 100%);
    color: white;
    font-size: 18px;
    transition: all 0.3s ease;
}

.user-info:hover .user-icon {
    transform: scale(1.1);
}

.user-name {
    font-weight: 600;
    color: #1c405f;
    transition: all 0.3s ease;
    width: 9rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.user-info:hover .user-name {
    color: #2a5d84;
}

/* Main content */
.main-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 40px 20px;
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
}

    .main-content h1 {
        font-size: 3.5rem;
        font-weight: 700;
        margin-bottom: 20px;
        color: #1c405f;
        background: linear-gradient(135deg, #1c405f, #2a5d84);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        animation: textShine 3s ease-in-out infinite alternate;
    }

    .main-content p {
        font-size: 1.2rem;
        color: #555;
        max-width: 700px;
        margin-bottom: 40px;
        line-height: 1.7;
    }

.features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    width: 100%;
    margin-top: 30px;
}

.feature-card {
    background: rgba(255, 255, 255, 0.8);
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 8px 30px rgba(28, 64, 95, 0.1);
    transition: all 0.4s ease;
    backdrop-filter: blur(5px);
    border: 1px solid rgba(28, 64, 95, 0.1);
    position: relative;
    overflow: hidden;
    text-align: center;
}

    .feature-card:hover {
        transform: translateY(-10px) scale(1.02);
        box-shadow: 0 15px 40px rgba(28, 64, 95, 0.15);
    }

    .feature-card::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 5px;
        background: linear-gradient(90deg, #1c405f, #2a5d84);
        transform: scaleX(0);
        transform-origin: left;
        transition: transform 0.5s ease;
    }

    .feature-card:hover::before {
        transform: scaleX(1);
    }

.feature-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(28, 64, 95, 0.1);
    color: #1c405f;
    font-size: 28px;
    border-radius: 18px;
    transition: all 0.4s ease;
}

.feature-card:hover .feature-icon {
    background: linear-gradient(135deg, #1c405f 0%, #2a5d84 100%);
    color: white;
    transform: rotateY(360deg);
}

.feature-card h3 {
    font-size: 1.5rem;
    color: #1c405f;
    margin-bottom: 15px;
}

.feature-card p {
    font-size: 1rem;
    color: #666;
    margin-bottom: 0;
}

/* Animations */
@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes shine {
    0% {
        transform: translateX(-100%) rotate(30deg);
    }

    20% {
        transform: translateX(100%) rotate(30deg);
    }

    100% {
        transform: translateX(100%) rotate(30deg);
    }
}

@keyframes textShine {
    0% {
        background-position: 0% 50%;
    }

    100% {
        background-position: 100% 50%;
    }
}

/* Responsive design */
@media (max-width: 1100px) {
    .header-content {
        flex-wrap: wrap;
        gap: 20px;
    }

    .balance-section {
        order: 3;
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 768px) {

    .bg-atl {
        background: #1c405f;
    }

   /* .nav-link {
        color: #fff;       
    }*/
    .balance-section {
        flex-wrap: wrap;
    }

    .announcement-section {
        max-width: 100%;
    }

    .user-section {
        width: 100%;
        justify-content: center;
    }

    .main-content h1 {
        font-size: 2.5rem;
    }
}

@media (max-width: 480px) {
    .header-content {
        padding: 0 15px;
    }

    .balance-item {
        width: 100%;
    }

    .main-content h1 {
        font-size: 2rem;
    }
}










.cursor-event {
    text-underline-offset: 3px;
    cursor: pointer;
    text-decoration: underline !important;
    color: #4183C4;
}

h1,
.h1,
h2,
.h2,
.fw-bold {
    font-weight: 700 !important;
}

h3,
.h3,
h4,
.h4,
.fw-medium {
    font-weight: 600 !important;
}

h5,
.h5,
h6,
.h6,
.fw-semi-bold {
    font-weight: 500 !important;
}


/*** Spinner ***/
#spinner {
    opacity: 0;
    visibility: hidden;
    transition: opacity .5s ease-out, visibility 0s linear .5s;
    z-index: 99999;
}

    #spinner.show {
        transition: opacity .5s ease-out, visibility 0s linear 0s;
        visibility: visible;
        opacity: 1;
    }


/*** Button ***/
.btn {
    transition: .5s;
    font-weight: 500;
}

.btn-primary,
.btn-outline-primary:hover {
    color: white;
}

.btn-square {
    width: 38px;
    height: 38px;
}

.btn-sm-square {
    width: 32px;
    height: 32px;
}

.btn-lg-square {
    width: 48px;
    height: 48px;
}

.btn-square,
.btn-sm-square,
.btn-lg-square {
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: normal;
}


/*** Navbar ***/
.fixed-top {
    transition: .5s;
}

.top-bar {
    height: 45px;
    /*border-bottom: 1px solid rgba(53, 94, 252, .07);*/
    background-color: #fff !important;
    box-shadow: 0 1px 7px 0 rgb(0 0 0 / 40%) !important;
    /* background: #dee2fb;*/
}

.navbar .dropdown-toggle::after {
    border: none;
    content: "\f107";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    vertical-align: middle;
    margin-left: 8px;
}

.navbar .navbar-nav .nav-link {
    /*padding: 25px 15px;*/

    color: #fff;
    font-weight: 500;
    outline: none;
    border-right: 1px dashed #fff;
}

.nav-link {
    padding: 0rem;
}

.navbar .navbar-nav .nav-link:hover, .navbar .navbar-nav .nav-link.active {
    color: #fff;
}

@media (max-width: 991.98px) {
    .navbar .navbar-nav {
        margin-top: 10px;
        border-top: 1px solid rgba(0, 0, 0, .07);
        background: #FFFFFF;
    }

        .navbar .navbar-nav .nav-link {
            padding: 10px 0;
        }
}

@media (min-width: 992px) {
    .navbar .nav-item .dropdown-menu {
        display: block;
        visibility: hidden;
        top: 100%;
        transform: rotateX(-75deg);
        transform-origin: 0% 0%;
        transition: .5s;
        opacity: 0;
    }

    .navbar .nav-item:hover .dropdown-menu {
        transform: rotateX(0deg);
        visibility: visible;
        transition: .5s;
        opacity: 1;
    }
}


/*** Header ***/
.carousel-caption {
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: start;
    z-index: 1;
}

.carousel-control-prev,
.carousel-control-next {
    width: 3rem;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    width: 3rem;
    height: 3rem;
    background-color: var(--primary);
    border: 10px solid var(--primary);
}

.carousel-control-prev-icon {
    border-radius: 0 3rem 3rem 0;
}

.carousel-control-next-icon {
    border-radius: 3rem 0 0 3rem;
}

@media (max-width: 768px) {
    #header-carousel .carousel-item {
        position: relative;
        min-height: 450px;
    }

        #header-carousel .carousel-item img {
            position: absolute;
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
}

.page-header {
    /*padding-top: 12rem;*/
    padding-bottom: 3rem;
    /* background: url(../img/header.jpg) top left no-repeat;*/
    background-size: cover;
}

    .page-header .breadcrumb-item,
    .page-header .breadcrumb-item a {
        font-weight: 500;
    }

        .page-header .breadcrumb-item + .breadcrumb-item::before {
            color: var(--tertiary);
        }


/*** Facts ***/
.facts {
    background: linear-gradient(rgba(53, 94, 252, .95), rgba(53, 94, 252, .95)), url(../img/bg.png);
}


/*** Callback ***/
.callback {
    position: relative;
}

    .callback::before {
        position: absolute;
        content: "";
        width: 100%;
        height: 50%;
        top: 0;
        left: 0;
        background: linear-gradient(rgba(53, 94, 252, .95), rgba(53, 94, 252, .95)), url(../img/bg.png);
        z-index: -1;
    }


/*** Feature ***/
.feature .feature-box,
.feature .feature-box * {
    transition: .5s;
}

    .feature .feature-box:hover {
        background: var(--primary);
        border-color: var(--primary) !important;
    }

        .feature .feature-box:hover * {
            color: #FFFFFF !important;
        }


/*** Service ***/
.service .nav .nav-link {
    transition: .5s;
    border-radius: 21px !important;
    margin-bottom: 0.4rem;
}

    /* .Search-Country {
        background: rgb(1, 26, 65);
        border-radius: 20px;
    }*/

    .service .nav .nav-link.active {
        border-color: #027db6 !important;
        background: #027db6 !important;
    }

        .service .nav .nav-link.active h5 {
            color: #FFFFFF !important;
        }

            .service .nav .nav-link.active h5 i {
                color: #FFFFFF !important;
            }

.chosen-container-single .chosen-single span {    
    font-size: 14px!important;
}
/*** Project ***/
.project-item,
.project-item .project-img {
    position: relative;
}

    .project-item .project-img a {
        position: absolute;
        width: 100%;
        height: 100%;
        top: 0;
        left: 0;
        background: rgba(255, 255, 255, .5);
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 8px;
        opacity: 0;
        transition: .5s;
    }

    .project-item:hover .project-img a {
        opacity: 1;
    }

    .project-item .project-title {
        position: absolute;
        top: 3rem;
        right: 0;
        bottom: 0;
        left: 3rem;
        border: 1px solid var(--light);
        border-radius: 8px;
        display: flex;
        align-items: flex-end;
        padding: 18px;
        z-index: -1;
        transition: .5s;
    }

    .project-item:hover .project-title {
        background: var(--primary);
        border-color: var(--primary);
    }

    .project-item .project-title h4 {
        transition: .5s;
    }

    .project-item:hover .project-title h4 {
        color: #FFFFFF;
    }

.project-carousel .owl-nav {
    margin-top: 25px;
    display: flex;
    justify-content: center;
}

    .project-carousel .owl-nav .owl-prev,
    .project-carousel .owl-nav .owl-next {
        margin: 0 12px;
        width: 45px;
        height: 45px;
        display: flex;
        align-items: center;
        justify-content: center;
        color: var(--primary);
        background: var(--light);
        border-radius: 45px;
        font-size: 22px;
        transition: .5s;
    }

        .project-carousel .owl-nav .owl-prev:hover,
        .project-carousel .owl-nav .owl-next:hover {
            background: var(--primary);
            color: var(--light);
        }


/*** Team ***/
.team-item {
    position: relative;
    padding: 4rem 0;
}

    .team-item img {
        position: relative;
        z-index: 2;
    }

    .team-item .team-text {
        position: absolute;
        top: 0;
        right: 3rem;
        bottom: 0;
        left: 3rem;
        padding: 15px;
        border: 1px solid var(--light);
        border-radius: 8px;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: space-between;
        transition: .5s;
        z-index: 1;
    }

    .team-item:hover .team-text {
        background: var(--primary);
        border-color: var(--primary);
    }

    .team-item .team-text h4 {
        transition: .5s;
    }

    .team-item:hover .team-text h4 {
        color: #FFFFFF;
    }

    .team-item .team-social .btn {
        background: var(--light);
        color: var(--primary);
    }

    .team-item:hover .team-social .btn {
        background: #FFFFFF;
    }

    .team-item .team-social .btn:hover {
        background: var(--primary);
        color: var(--light);
    }


/*** Testimonial ***/
.testimonial-item {
    position: relative;
    text-align: center;
    padding-top: 30px;
}

    .testimonial-item .testimonial-text {
        position: relative;
        text-align: center;
    }

        .testimonial-item .testimonial-text .btn-square {
            position: absolute;
            width: 60px;
            height: 60px;
            top: -30px;
            left: 50%;
            transform: translateX(-50%);
        }

        .testimonial-item .testimonial-text::before {
            position: absolute;
            content: "";
            bottom: -60px;
            left: 50%;
            transform: translateX(-50%);
            border: 30px solid;
            border-color: var(--light) transparent transparent transparent;
        }

        .testimonial-item .testimonial-text::after {
            position: absolute;
            content: "";
            bottom: -59px;
            left: 50%;
            transform: translateX(-50%);
            border: 30px solid;
            border-color: #FFFFFF transparent transparent transparent;
        }

.testimonial-carousel .owl-item img {
    margin: 0 auto;
    width: 100px;
    height: 100px;
}

.testimonial-carousel .owl-dots {
    margin-top: 25px;
    display: flex;
    align-items: flex-end;
    justify-content: center;
}

.testimonial-carousel .owl-dot {
    position: relative;
    display: inline-block;
    margin: 0 5px;
    width: 30px;
    height: 30px;
    border: 1px solid var(--light);
    border-radius: 30px;
    transition: .5s;
}

    .testimonial-carousel .owl-dot::after {
        position: absolute;
        content: "";
        width: 16px;
        height: 16px;
        top: 6px;
        left: 6px;
        border-radius: 16px;
        background: var(--light);
        transition: .5s;
    }

    .testimonial-carousel .owl-dot.active {
        border-color: var(--primary);
    }

        .testimonial-carousel .owl-dot.active::after {
            background: var(--primary);
        }


/*** Footer ***/
.footer .btn.btn-link {
    display: block;
    margin-bottom: 5px;
    padding: 0;
    text-align: left;
    color: var(--light);
    font-weight: normal;
    text-transform: capitalize;
    transition: .3s;
}

    .footer .btn.btn-link::before {
        position: relative;
        content: "\f105";
        font-family: "Font Awesome 5 Free";
        font-weight: 900;
        margin-right: 10px;
    }

    .footer .btn.btn-link:hover {
        color: var(--primary);
        letter-spacing: 1px;
        box-shadow: none;
    }
[class^="bi-"]::before, [class*=" bi-"]::before {
    display: inline-block;
    font-family: bootstrap-icons !important;
    font-style: normal;
    font-weight: normal !important;
    font-variant: normal;
    text-transform: none;
    line-height: 1;
    vertical-align: -.625em!important;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}


.copyright {
    margin-top: 25rem;
    color: var(--light);
    background: #1c405f;
    /* position:fixed;*/
    bottom: 0px;
    z-index: 9999;
}

    .copyright a {
        color: var(--light);
    }

        .copyright a:hover {
            color: var(--primary);
        }



.nav-pills .nav-link {
    background: none;
    border: 0;
    border-radius: 8px;
    /* background: #FFFFFF 0% 0% no-repeat padding-box!important;
    box-shadow: 0px 5px 10px #8f0a1140;*/
}

.div-box {
    background: #FFFFFF 0% 0% no-repeat padding-box;
    box-shadow: 0px 5px 10px #8f0a1140;
    border-radius: 15px;
    padding: 25px;
}

.pl-0 {
    padding-left: 0px;
}

.pr-0 {
    padding-right: 0px;
}

.table {
    /*border: 1px solid #027db6;*/
    border: 1px solid #dee2e6;
}

.rounded-icon {
    background: white;
    padding: 0rem;
    border-radius: 46px;
    /*border: 1px dashed;*/
}

th {
    font-size: 14px !important;
}

td {
    font-size: 13px !important;
}

.color-white {
    color: white;
}

.mr-1 {
    margin-right: 1rem !important;
}

.font-size-2 {
    font-size: 2rem;
}

.section-title h2 span {
    font-family: var(--base-headingfont-main);
    font-style: italic;
    font-weight: 600;
    display: inline-block;
    color: var(--base-skin);
}

.section-title.title-style-center_text h2.title {
    margin-bottom: 0px;
}

element.style {
}

.section-title.title-style-center_text h2.title {
    margin-bottom: 0px;
}

.section-title h2 {
    font-weight: 600;
    font-size: 46px;
    line-height: 57px;
    margin-bottom: 12px;
}

.form-box {
    /*  border: 1px solid rgba(128, 137, 150, 0.1);*/
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    border-radius: 5px;
    margin-bottom: 30px;
    background-color: #fff;
    -webkit-box-shadow: 0 0 40px rgb(82 85 90 / 10%);
    -moz-box-shadow: 0 0 40px rgba(82, 85, 90, 0.1);
    box-shadow: 0 0 40px rgb(82 85 90 / 10%);
}

.title {
    font-size: 16px;
    color: #323232;
}

.form-title-wrap {
    padding: 10px;
    border-bottom: 1px solid rgba(128, 137, 150, 0.1);
}

.padding-bottom-70px {
    padding-bottom: 70px;
}

.padding-top-100px {
    padding-top: 100px;
}

.form-content {
    /*padding: 20px;*/
    padding: 15px 15px 15px 15px;
}

input[type=text]:focus {
    border: 1px solid #555 !important;
}

input[type=password]:focus {
    border: 1px solid #555 !important;
}

input[type=email]:focus {
    border: 1px solid #555 !important;
}

input[type=file]:focus {
    border: 1px solid #555 !important;
}

/*.form-control:focus {
    border: 1px solid #555;
}*/
/*.form-control:focus {
     border: 1px solid #c0bcbc!important;
}*/
.contact-form-action .form-control {
    height: auto;
    line-height: inherit;
    /* padding: 10px 20px 10px 20px;*/
    padding: 10px 13px 10px 13px;
    font-size: 13px;
    color: #0d233e;
    /* border: 2px dashed #dddddd75;*/
    -webkit-box-shadow: none;
    -moz-box-shadow: none;
    box-shadow: none;
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    -ms-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
    background-color: #fff;
}

.label-text {
    font-size: 14px;
    color: #0d233e;
}

label {
    display: inline-block;
    margin-bottom: 0.5rem;
}

.form-group {
    margin-bottom: 0.5rem;
}

.contact-form-action .form-group .form-icon {
    position: absolute;
    top: 15px;
    left: 15px;
    color: #5d646d;
    font-size: 18px;
}

.list-items-flush li {
    border-bottom: 1px solid rgba(128, 137, 150, 0.1);
    margin-bottom: 10px;
    padding-bottom: 10px;
}

ul {
    padding: 0;
    margin: 0;
}

.list-items-2 li span {
    display: inline-block;
    width: 150px;
    color: #0d233e;
    font-weight: 500;
}

.section-block {
    height: 1px;
    background-color: #F5F7FC;
}

.list-items li {
    margin-bottom: 6px;
    color: #5d646d;
}

.theme-btn {
    font-size: 15px;
    color: #fff;
    line-height: 45px;
    padding-left: 20px;
    padding-right: 20px;
    background-color: #287dfa;
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    -ms-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
    position: relative;
    display: inline-block;
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    border-radius: 4px;
    border: 1px solid #287dfa;
    font-weight: 500;
}

.text-right {
    text-align: right;
}

.color-white {
    color: white;
}















@charset "UTF-8";
/* Some stylesheet reset */
#cssmenu > ul {
    list-style: none;
    margin: 0;
    padding: 0;
    vertical-align: baseline;
    line-height: 1;
}
/* The container */
#cssmenu > ul {
    display: flex;
    position: relative;
    width: 100%;
}
    /* The list elements which contain the links */
    #cssmenu > ul li {
        display: block;
        position: relative;
        margin: 0;
        padding: 0;
        width: 100%;
    }
        /* General link styling */
        #cssmenu > ul li a {
            display: block;
            position: relative;
            border-top: 1px dotted #fff;
            /*    border-bottom: 1px dotted #d9d9d9;*/
            padding: 11px;
            font-family: Verdana;
            color: #868684;
            text-decoration: none;
            text-shadow: 0px .2px 0 black;
            font-size: 13px;
            font-weight: normal;
            background: rgb(1, 26, 65);
            outline: none;
            margin-bottom: 3px;
            color: white !important;
            border-right: 1px dashed !important;
        }
        /* Rounded corners for the first link of the menu/submenus */
        #cssmenu > ul li:first-child > a {
            /* border-top-left-radius: 4px;
            border-top-right-radius: 4px;
            border-top: 0;*/
        }
        /* Rounded corners for the last link of the menu/submenus */
        #cssmenu > ul li:last-child > a {
            /*border-bottom-left-radius: 4px;
            border-bottom-right-radius: 4px;
            border-bottom: 0;*/
        }
        /* The hover state of the menu/submenu links */
        #cssmenu > ul li a:hover,
        #cssmenu > ul li:hover > a {
            color: #ffffff !important;
            text-shadow: 0 1px 0 rgba(0, 0, 0, 0.25);
            background-color: #355EFC;
        }

        #cssmenu > ul li > a.active {
            color: #ffffff !important;
            text-shadow: 0 1px 0 rgba(0, 0, 0, 0.25);
            background-color: #355EFC;
        }

    /* The arrow indicating a submenu */
    #cssmenu > ul .has-sub > a::after {
        content: "";
        position: absolute;
        top: 13px;
        right: 10px;
        width: 0px;
        height: 0px;
        border: 5px solid transparent;
        border-left: 7px solid #868684;
    }
    /* The same arrow, but with a darker color, to create the shadow effect */
    #cssmenu > ul .has-sub > a::before {
        content: "";
        position: absolute;
        top: 14px;
        right: 10px;
        width: 0px;
        height: 0px;
        border: 5px solid transparent;
        border-left: 7px solid #fff;
    }
    /* Changing the color of the arrow on hover */
    #cssmenu > ul li > a:hover::after,
    #cssmenu > ul li:hover > a::after {
        border-left: 7px solid #fff;
    }

    #cssmenu > ul li > a:hover::before,
    #cssmenu > ul li:hover > a::before {
        border-left: 7px solid rgba(0, 0, 0, 0.25);
    }
    /* THE SUBMENUS */
    #cssmenu > ul ul {
        position: absolute;
        top: 4rem;
        margin-top: 2rem;
        opacity: 0;
        min-width: 273px;
        -webkit-transition: opacity 0.3s ease-in;
        -moz-transition: opacity 0.3s ease-in;
        transition: opacity 0.3s ease-in;
        background-color: White !important;
    }

        #cssmenu > ul ul li a {
            font-size: 12px;
        }
    /* Showing the submenu when the user is hovering the parent link */
    #cssmenu > ul li:hover > ul {
        top: 0px;
        opacity: 1;
        z-index: 1;
    }


.dashboard-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(257px, 1fr));
    /*  gap: 1.5rem;
    max-width: 1200px;*/
    gap: 1.9rem;
   /* max-width: 1240px;*/
    margin: 0 auto;
}

.dashboard-card {
    background: white;
    border-radius: 12px;
    padding: 1rem;
    box-shadow: var(--card-shadow);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    border-left: 4px solid transparent;
}

.primary-card {
    border-left-color: #1c405f;
}

.success-card {
    border-left-color: var(--success);
}

.info-card {
    border-left-color: var(--info);
}

.warning-card {
    border-left-color: var(--warning);
}

.dashboard-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 0.5rem 2rem rgba(58, 59, 69, 0.2);
}

.card-header {
   /* display: flex;*/
    align-items: center;
   /* margin-bottom: 1rem;*/
}

.icon-wrapper {
    width: 44px;
    height: 44px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1rem;
    color: white;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.primary-bg {
    background: #1c405f;
}

.success-bg {
    background: var(--success);
}

.info-bg {
    background: var(--info);
}

.warning-bg {
    background: var(--warning);
}

.dashboard-card:hover .icon-wrapper {
    transform: rotate(15deg) scale(1.1);
}

.card-title {
    font-weight: 600;
  /*  font-size: 0.9rem;*/
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin: 0;
   /* color: var(--text-dark);*/
    /*opacity: 0.8;*/
}

.metrics-container {
    display: flex;
    justify-content: space-between;
 /*   margin-top: 1.5rem;*/
}

.metric {
    flex: 1;
    padding: 0 0.5rem;
}

.metric-label {
    font-size:1rem;
    color: #858796;
    margin-bottom: 0.5rem;
}

.metric-value {
    font-size: 15px;
    margin: 0;
    line-height: 1.2;
    position: relative;
    display: inline-block;
    font-weight: 600 !important;
}

    .metric-value::after {
        content: '';
        position: absolute;
        bottom: -3px;
        left: 0;
        width: 100%;
        height: 2px;
        background: currentColor;
        transform: scaleX(0);
        transform-origin: right;
        transition: transform 0.4s ease;
    }

.dashboard-card:hover .metric-value::after {
    transform: scaleX(1);
    transform-origin: left;
}

.currency {
    font-size: 0.9rem;
    font-weight: 600;
    margin-right: 2px;
    opacity: 0.8;
}

/* Animation styles */
.animate-float {
    animation: float 6s ease-in-out infinite;
}

.animate-float-delay {
    animation: float 6s ease-in-out 0.5s infinite;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

.animate-pulse {
    animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}

@keyframes pulse {
    0%, 100% {
        opacity: 1;
    }

    50% {
        opacity: 0.5;
    }
}

/* Responsive adjustments */
@media (max-width: 768px) {
 
    .metric-value {
        font-size: 1.4rem;
    }
}

</style >












.bg-card {
    /* background: #fff !important;*/
    border-radius: 8px !important;
    box-shadow: 0 1px 7px 0 rgb(0 0 0 / 40%) !important;
    border: none !important;
}


/*.bg-gradient-primary {
    background-image: linear-gradient(310deg,#1c405f,#007db5);
}*/

.icon-shape {
    width: 48px;
    height: 48px;
    background-position: 50%;
    border-radius: 0.75rem;
    float: left;
   /* margin-top: -2rem !important;*/
}

.border-radius-md {
    border-radius: 0.5rem;
}

.text-success {
    color: #82d616 !important;
}

.text-sm {
    line-height: 1.5;
}

.text-sm {
    font-size: .875rem !important;
}

.font-weight-bolder {
    font-weight: 700 !important;
}

.icon-shape i {
    color: #fff;
    opacity: .8;
    /*top: 11px;*/
    position: relative;
}

.icon-shape .ni {
    top: 14px;
}

.text-lg {
    font-size: 1.125rem !important;
}

.opacity-10 {
    opacity: 1 !important;
}

.ni {
    display: inline-block;
    font: normal normal normal 14px/1 NucleoIcons;
    font-size: inherit;
    text-rendering: auto;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}


.heading_theme {
    border-bottom: 1px solid rgb(1, 26, 65);
    padding-bottom: 10px;
    display: inline-block;
    font-weight: 500;
    margin-bottom: 20px;
}


.add-pass-details .re-btn {
    display: inline-block;
    margin: 10px 0 0 0;
    padding: 5px 10px;
}

.re-btn {
    width: auto;
    padding: 10px 45px;
    min-width: 150px;
    border: 1px solid #013851;
    border-radius: 15px;
    color: #fff;
    font-weight: normal;
    font-size: 14px;
    transition: 0.5s;
    background: #013851;
    position: relative;
    text-align: center;
}

.pl-0 {
    padding-left: 0px !important;
}

.borderblue {
    /*border-top: 1px solid #dddddd;
    border-left: 1px solid #dddddd;
    border-right: 1px solid #dddddd;*/
    background: #FFFFFF 0% 0% no-repeat padding-box;
    border-radius: 20px;
    box-shadow: 0px 5px 10px #8f0a1140;
    border-bottom: 5px solid #1c405f;
}

.review-right {
    width: 100%;
    background: #FFFFFF;
    box-shadow: 0px 10px 20px #8f0a1140;
    border: 0;
    border-radius: 10px;
    padding: 15px;
    margin: 15px auto;
    display: inline-block;
}

modify-section {
    width: 100%;
    margin: 0 auto;
    background: rgba(189, 29, 36, 0.06);
    padding: 15px 0;
    position: relative;
    z-index: 5;
}
/*.sidebar {
    position: absolute;
}*/
.price-break {
    width: 100%;
    box-shadow: 0px 10px 20px #8f0a1140;
    border: 0;
    border-radius: 10px;
    background: #FFFFFF;
    overflow: hidden;
    /* padding: 15px 0 0 0;*/
    padding: 0px 0 0 0;
}

    .price-break .total-fare-box {
        background: #e6f0ff;
        padding: 15px 15px;
        margin: 0px 0 0px 0;
        color: #1c405f;
        font-weight: bold;
        font-size: 18px;
        display: inline-block;
        width: 100%;
        float: left;
    }

.price-info {
    color: #CC2128;
    float: left;
    font-size: 12px;
    margin: 10px 10px 10px 10px;
}

.price-break ul, .price-break ul li {
    display: inline-block;
    width: 100%;
    margin: 0 0 10px;
}

.modify-section {
    width: 100%;
    margin: 0 auto;
    background: #0276b3;
    padding: 15px 0;
    position: relative;
    z-index: 5;
    padding-bottom: 0px;
}

.search-section .widget-box {
    background: #FFFFFF 0% 0% no-repeat padding-box;
    box-shadow: 0px 5px 10px #8f0a1140;
    border-radius: 15px;
    opacity: 1;
    display: block;
}

.widget-search-tabs {
    width: 100%;
    display: block;
    margin: 0 auto;
    padding: 0;
}

.tab-container {
    display: inline-block;
    width: 100%;
    height: auto;
    font-size: 14px;
    font-weight: 500;
    color: #2C3039;
    margin: 10px auto 0;
}

.search-section .re-btn {
    padding: 10px 15px 10px 25px;
    margin: 0px auto;
    display: inline-block;
    bottom: 10px;
}

.tab-container .re-btn:before {
    content: "";
    position: absolute;
    height: 6px;
    display: block;
}

.tab-container {
    display: inline-block;
    width: 100%;
    height: auto;
    font-size: 14px;
    font-weight: 500;
    color: #2C3039;
    margin: 8px auto 0;
}


.head-name {
    font-size: 16px;
    margin: 5px 0 5px 0;
    font-weight: 600;
}

.payment-drop .total-fare-box {
    padding: 0;
    margin: 0;
    color: rgb(1, 26, 65);
    font-weight: bold;
    font-size: 22px;
    display: inline-block;
    width: 100%;
}

.right-btn {
    float: right;
}


.html5-qrcode-element {
    text-decoration: underline;
    line-height: inherit;
    padding: 5px 13px;
    font-size: 13px;
    color: rgb(13, 35, 62);
    border: 2px dashed rgba(221, 221, 221, 0.46);
    box-shadow: none;
    transition: all 0.3s ease 0s;
    background-color: rgb(255, 255, 255);
    /* margin-top: 1rem;*/
    display: inline-block;
}


.html5-qrcode-element {
    text-decoration: underline;
    line-height: inherit;
    padding: 5px 13px;
    font-size: 13px;
    color: rgb(13, 35, 62);
    border: 2px dashed rgba(221, 221, 221, 0.46);
    box-shadow: none;
    transition: all 0.3s ease 0s;
    background-color: rgb(255, 255, 255);
    display: inline-block;
}


.fareTypeWrap {
    border-bottom: 1px solid #dfdfdf;
    padding: 10px 0;
}

.fareRow {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
}

.makeFlex.hrtlCenter {
    align-items: center;
}

.appendTop5 {
    margin-top: 5px;
}

.fareHeader {
    font-size: calc(var(--font-scale, 1)*14px);
    font-weight: 500;
    font-size: 15px;
}

.fareContentWrap {
    width: 100%;
    overflow: hidden;
    transition: max-height .3s cubic-bezier(1,0,1,0);
    height: auto;
    max-height: 9999px;
}

.fareSubList {
    padding-left: 25px;
}

.appendTop5 {
    margin-top: 5px;
}

.fareRow {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
}

.darkText {
    color: #4a4a4a;
}

.fontSize14 {
    font-size: calc(var(--font-scale, 1 )*14px);
}












a.link {
    cursor: help;
    text-decoration: none;
}

    a.link.btn {
        border-color #d900ae;
    }

    a.link:hover {
        background-color: #0085a6;
        color: #fff;
        text-decoration: none;
    }

[data-ml-modal] {
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    overflow-x: hidden;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    z-index: 999;
    width: 0;
    height: 0;
    opacity: 0;
}

    [data-ml-modal]:target {
        width: auto;
        height: auto;
        opacity: 1;
        -webkit-transition: opacity 1s ease;
        transition: opacity 1s ease;
    }

        [data-ml-modal]:target .modal-overlay {
            position: fixed;
            top: 0;
            bottom: 0;
            left: 0;
            right: 0;
            cursor: pointer;
            background-color: #000;
            background-color: rgba(0, 0, 0, 0.7);
            z-index: 1;
        }

    [data-ml-modal] .modal-dialog {
        border-radius: 6px;
        box-shadow: 0 11px 15px -7px rgba(0, 0, 0, 0.2), 0 24px 38px 3px rgba(0, 0, 0, 0.14), 0 9px 46px 8px rgba(0, 0, 0, 0.12);
        position: relative;
        width: 90%;
        max-width: 660px;
        max-height: 70%;
        margin: 10% auto;
        overflow-x: hidden;
        overflow-y: auto;
        z-index: 2;
    }

.modal-dialog-lg {
    max-width: 820px !important;
}

[data-ml-modal] .modal-dialog > h3 {
    background-color: #eee;
    border-bottom: 1px solid #b3b3b3;
    font-size: 24px;
    font-weight: 400;
    margin: 0;
    padding: 0.8em 56px .8em 27px;
}

[data-ml-modal] .modal-content {
    background: #fff;
    padding: 23px 27px;
}

[data-ml-modal] .modal-close {
    position: absolute;
    top: 13px;
    right: 13px;
    color: #0085a6;
    background-color: #fff;
    border-radius: 50%;
    height: 40px;
    width: 40px;
    font-size: 30px;
    line-height: 37px;
    text-align: center;
    -webkit-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out;
}

    [data-ml-modal] .modal-close:hover {
        background-color: #0085a6;
        color: #fff;
        cursor: pointer;
    }

[data-ml-modal] p:first-child, [data-ml-modal] p:last-child {
    margin: 0;
}

@media (max-width:767px) {
    [data-ml-modal] .modal-dialog {
        margin: 20% auto;
    }
}
/* End Modals ------------------------------*/

/* General*/

*, *:before, *:after {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

body {
    color: #333;
    font-size: 14px;
    -webkit-font-smoothing: antialiased;
    line-height: 1.42857143;
    min-height: auto !important;
    overflow-x: hidden;
}

a {
    color: #027db6;
    text-decoration: none;
    outline: 0;
    -webkit-transition all .3s ease-in-out;
    -moz-transition all .3s ease-in-out;
    -o-transition all .3s ease-in-out;
    transition all .3s ease-in-out;
}

    a:hover {
        color: #0085a6;
        text-decoration: none;
    }

.center {
    text-align: center !important;
}

.btn {
    display: inline-block;
    margin-bottom: 0;
    font-weight: normal;
    text-align: center;
    vertical-align: middle;
    touch-action: manipulation;
    cursor: pointer;
    background-image: none;
    border: 2px solid transparent;
    white-space: normal;
   /* padding: 8px 14px;*/
    /*   font-size: 18px;*/
    border-radius: 3px;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.btn-default {
    border: 1px solid #ced4da;
}

a.btn-default:hover {
    background-color: #0085a6;
    color: #fff;
}

pre {
    overflow: auto;
    font-size: 1em;
}


.menu-area {
    position: relative;
    z-index: 10;
}

    .menu-area:after {
        /*  content: "";
        position: absolute;
        top: 0;
        right: -50px;
        width: 117%;
        height: 100%;
        background: #013851 !important;
        transform: skew(-6deg);
        z-index: -1;*/
    }


ol.progtrckr {
    margin: 0;
    padding: 0;
    list-style-type none;
}

    ol.progtrckr li {
        display: inline-block;
        text-align: center;
        line-height: 3.5em;
    }

    ol.progtrckr[data-progtrckr-steps="2"] li {
        width: 49%;
    }

    ol.progtrckr[data-progtrckr-steps="3"] li {
        width: 33%;
    }

    ol.progtrckr[data-progtrckr-steps="4"] li {
        width: 24%;
    }

    /*  ol.progtrckr[data-progtrckr-steps="5"] li {
            width: 19%;
        }*/

    ol.progtrckr[data-progtrckr-steps="6"] li {
        width: 16%;
    }

    ol.progtrckr[data-progtrckr-steps="7"] li {
        width: 14%;
    }

    ol.progtrckr[data-progtrckr-steps="8"] li {
        width: 12%;
    }

    ol.progtrckr[data-progtrckr-steps="9"] li {
        width: 11%;
    }

    ol.progtrckr li.progtrckr-done {
        color: black;
        border-bottom: 4px solid yellowgreen;
    }

    ol.progtrckr li.progtrckr-todo {
        color: silver;
        border-bottom: 4px solid silver;
    }

    ol.progtrckr li:after {
        content: "\00a0\00a0";
    }

    ol.progtrckr li:before {
        position: relative;
        bottom: -2.5em;
        float: left;
        left: 50%;
        line-height: 1em;
    }

.progtrckr-dones:before {
    content: "\2713";
    color: white;
    background-color: #f3943c !important;
    height: 2.2em;
    width: 2.2em;
    line-height: 2.2em;
    border: none;
    border-radius: 2.2em;
}

.progtrckr-dones {
    color: black;
    border-bottom: 4px solid #f3943c !important;
}




ol.progtrckr li.progtrckr-done:before {
    content: "\2713";
    color: white;
    background-color: yellowgreen;
    height: 2.2em;
    width: 2.2em;
    line-height: 2.2em;
    border: none;
    border-radius: 2.2em;
}

ol.progtrckr li.progtrckr-todo:before {
    content: "\039F";
    color: silver;
    background-color: white;
    font-size: 2.2em;
    bottom: -1.2em;
}



.intLink {
    cursor: pointer;
}

img.intLink {
    border: 0;
}

#toolBar1 select {
    font-size: 10px;
}

#textBox {
    height: 200px;
    border: 1px #000000 solid;
    padding: 12px;
    overflow: scroll;
}

    #textBox #sourceText {
        padding: 0;
        margin: 0;
        min-width: 498px;
        min-height: 200px;
    }

#editMode label {
    cursor: pointer;
}


select {
    word-wrap: normal;
    padding: 8px 13px 8px 13px !important;
    font-size: 13px;
    color: #0d233e;
    border-radius: 5px;
    width: 100% !important;
    background-color: #fff !important;
    /* box-shadow: 0 5px 10px rgb(0 0 0 / 10%) !important;*/
    /*border: 1px solid white;*/
    border: 1px solid #c0bcbc;
}


:root {
   /* --primary: #355EFC;*/
    --secondary: #E93C05;
    --tertiary: #555555;
    --light: #DFE4FD;
    --dark: #011A41;
    /*background-image: url(../../img/Bg1.png);*/
}

body {
    /* background-image: url(../img/Bg1.png);*/
    background-size: contain;
    background: #f7f7f7;
}



.bg-table {
    padding: 1rem;
    background-color: rgb(255, 255, 255) !important;
    box-shadow: rgb(0 0 0 / 10%) 0px 5px 10px !important;
    border: 1px solid white !important;
    border-radius: 8px;
}

th {
    /* background: #027db6;
    color: white;*/
    border-bottom-width: 2px;
    background: #cdcdcd;
    color: #000;
    font-weight: 600;
}

.fa:hover {
    /* color: #007db5;*/
    /*   font-size: 16px;*/
}

.color-white {
    color: white;
}

.sub-menu-item {
    width: 300px;
    border-bottom: 1px dashed #007db5;
}


.ml-0 {
    margin-left: 0px !important;
}

.countries-font {
    font-weight: 500;
    font-size: 16px;
}
.roundicon {
    color: #1c405f;
    font-size: 19px;
    height: 35px;
    width: 35px;
    line-height: 38px;
    text-align: center;
    background: #fff;
    border-radius: 50%;
    position: absolute;
    transform: translateX(-25%);
    transition: 0.6s;
}

.text-lg-right{
    text-align:right;
}

@media screen and (max-width: 768px) {
    .column {
        width: 100%;
    }

    .xs-menu {
        position: fixed;
        z-index: 9999;
        /*   margin-top: -1.4rem;*/
        width: 100%;
        /*margin-bottom: 22rem;*/
    }

    .hidden-lg {
        display: block !important;
    }
}

.hidden-lg {
    display: none;
}

.offcanvas {
    z-index: 9999 !important;
}


.mandatory {
    color: red !important;
}

.owl-carousel, .owl-carousel .owl-item {
    -webkit-tap-highlight-color: transparent;
    position: inherit !important;
}

.MandatorySymbol {
    color: red !important;
}

.font-10 {
    font-size: 10px;
}



.runtext-container {
    /*  background-color: #013851;
    background-repeat: repeat-x;
    border-radius: 18px;*/
    padding-top: 6px;
    /* background-repeat: repeat-x;*/
    background: linear-gradient(135deg, #1c405f 0%, #2a5d84 100%);
    color: white;
    /* padding: 5px 20px; */
    border-radius: 10px;
    font-size: 14px;
    /* max-width: 300px; */
    box-shadow: 0 5px 15px rgba(28, 64, 95, 0.3);
    position: relative;
    overflow: hidden;
}

.main-runtext {
    margin: 0 auto;
    overflow: visible;
    position: relative;
    /* height: 40px;*/
}

.runtext-container .holder {
    position: relative;
    overflow: visible;
    display: inline;
    float: left;
}

    .runtext-container .holder .text-container {
        display: inline;
    }

    .runtext-container .holder a {
        text-decoration: none;
        /*  font-weight: bold;*/
        color: #fff;
        text-shadow: 0 -1px 0 rgba(0,0,0,0.25);
        line-height: -0.5rem !important;
        font-size: 13px;
    }

        .runtext-container .holder a:hover {
            text-decoration: none;
            /* color: #6600ff;*/
        }

.mr-1 {
    margin-right: 1rem;
}

.heding-body {
    padding: 25px;
    /*padding-top: 0px !important;*/
}

.heading-div {
    padding: 9px !important;
    padding-left: 15px !important;
    padding-bottom: 13px !important;
}


.word-break {
    word-break: break-all;
}

.modal-lg {
    max-width: 800px !important;
}

.atag {
    position: relative;
    background: #FFFFFF 0% 0% no-repeat padding-box;
    box-shadow: 0px 5px 10px #8f0a1140;
    text-decoration: none;
    /*padding: 35px 130px 13px 60px;*/
    padding: 2rem;
    color: #444;
}

    .atag:hover {
        border-color: #444;
        /* background: #FFFFFF 0% 0% no-repeat padding-box;
        box-shadow: 0px 5px 10px #8f0a1140;*/
    }

    .atag:active {
        border-color: #ccc;
        box-shadow: none;
    }

    .atag[href$=".ppt"]:before, .atag[href$=".pdf"]:before, .atag[href$=".doc"]:before, .atag[href$=".xls"]:before, .atag[href$=".zip"]:before {
        position: relative;
        top: 16px;
        left: -56px;
        transition: all .4s;
    }

    .atag[href$=".ppt"]:before {
        content: url('https://s3-us-west-2.amazonaws.com/s.cdpn.io/41294/ppt.png');
    }

    .atag[href$=".pdf"]:before {
        content: url('https://s3-us-west-2.amazonaws.com/s.cdpn.io/41294/pdf.png');
    }

    .atag[href$=".doc"]:before {
        content: url('https://s3-us-west-2.amazonaws.com/s.cdpn.io/41294/doc.png');
    }

    .atag[href$=".xls"]:before {
        content: url('https://s3-us-west-2.amazonaws.com/s.cdpn.io/41294/xls.png');
    }

    .atag[href$=".zip"]:before {
        content: url('https://s3-us-west-2.amazonaws.com/s.cdpn.io/41294/zip.png');
    }

    .atag[href$=".ppt"]:hover:before, .atag[href$=".pdf"]:hover:before, .atag[href$=".doc"]:hover:before, .atag[href$=".xls"]:hover:before, .atag[href$=".zip"]:hover:before {
        opacity: 1;
    }

    .atag[href$=".ppt"]:after, .atag[href$=".pdf"]:after, .atag[href$=".doc"]:after, .atag[href$=".xls"]:after, .atag[href$=".zip"]:after {
        content: "Download";
        position: absolute;
        top: 10px;
        left: 60px;
        color: #aaa;
    }


.border-bottom-none {
    border-bottom: none !important;
}


.document-div {
    background: #FFFFFF 0% 0% no-repeat padding-box;
    box-shadow: 0px 5px 10px #8f0a1140;
    padding: 1rem;
    /*padding-bottom: 0px;*/
    border-radius: 4px;
    margin-bottom: 1rem;
    border: 1px solid #fff;
}

    .document-div:hover {
        border: 1px solid #007db5;
        /*transform: scale(1.1);*/
    }

.download-font {
    color: #aaa;
}

.document-img {
    content: url(https://s3-us-west-2.amazonaws.com/s.cdpn.io/41294/zip.png);
}

.mandatory {
    color: #ff0000;
}

.div-padding {
    padding-left: 15px;
    padding-right: 15px;
    padding-top: 15px;
    padding-bottom:15px;
}

.h-23 {
    height: 25rem;
}

.cursor {
    cursor: pointer;
}

.buttop-pt-1 {
    padding-top: 1.7rem !important;
}

.text-capitalize {
    white-space: nowrap;
}

/*.w-7{
    width:4.5rem!important;
}*/

.border-right-icon {
    border-right: 2px dashed #027db6;
    margin-right: 1rem;
}

.ml-3rem {
    margin-left: 1rem;
}

.margin-auto {
    margin: auto;
}

.whitespace {
    white-space: nowrap;
}

.font-17 {
    font-size: 17px;
}

Total-amt {
    color: #fff !important;
    font-weight: bold;
    font-size: 20px;
}

.Total-Fare-amt {
    font-size: 16px;
    font-weight: 600;
    color: #1c405f;

}


div:where(.swal2-icon).swal2-info {
    border-color: #1c405f !important;
    color: #1c405f !important;
}

.ui-datepicker-title {
    /* width: 50% !important;*/
    display: flex;
}

.swal-footer {
    margin-top: 0px;
    padding: 0px 15px 15px 0px;
}

.swal-title:not(:last-child) {
    margin-bottom: 0px;
}

.swal-title {
    color: rgba(0,0,0,.65);
    font-weight: 600;
    text-transform: none;
    position: relative;
    display: block;
    padding: 0px 16px;
    font-size: 20px;
}

.swal-icon {
    margin: 0px auto;
}

    .swal-icon:first-child {
        margin-top: 13px;
    }

.swal-modal {
    width: 400px;
}

/*.swal-icon--success__line--tip {
    width: 21px;
    left: 15px;
    top: 35px;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
    -webkit-animation: animateSuccessTip .75s;
    animation: animateSuccessTip .75s;
}*/

/*.swal-icon--success__line--long {
    width: 30px;
    right: 24px;
    top: 31px;
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
    -webkit-animation: animateSuccessLong .75s;
    animation: animateSuccessLong .75s;
}

.swal-icon--success__ring {
    width: 70px;
    height: 70px;
    border: 4px solid hsla(98,55%,69%,.2);
    border-radius: 50%;
    box-sizing: content-box;
    position: absolute;
    left: -4px;
    top: -4px;
    z-index: 2;
}*/

.f-17 {
    font-size: 17px;
}

.download {
    text-decoration: underline !important;
    color: #007db5;
    cursor: pointer;
}

.ddlagentid-select {
    padding: 3px 4px 3px 4px !important;
}

@media screen and (max-width:1200px) and (min-width:1400px) {
    .container {
        max-width: 1300px;
    }
}

.icon-right {
    margin-right: 0.5rem !important;
}

.Acction-width {
    width: 9% !important;
}

.cursor {
    cursor: pointer;
    /* margin-left: 1rem;*/
    /*   color: #027db6 !important;*/
    color: #1c405f !important;
}

.payment-request {
    background: #002c50;
    color: #fff;
    font-size: 14px;
}

#togglePassword {
    z-index: 999;
}

#togglMailPassword {
    cursor: pointer;
    z-index: 999 !important;
}

#togglSmsPassword {
    cursor: pointer;
    z-index: 999 !important;
}
















@font-face {
    font-family: Poppins-Regular;
    src: url(../fonts/poppins/Poppins-Regular.ttf)
}

@font-face {
    font-family: Poppins-Medium;
    src: url(../fonts/poppins/Poppins-Medium.ttf)
}

@font-face {
    font-family: Poppins-Bold;
    src: url(../fonts/poppins/Poppins-Bold.ttf)
}

@font-face {
    font-family: Poppins-SemiBold;
    src: url(../fonts/poppins/Poppins-SemiBold.ttf)
}

@font-face {
    font-family: Montserrat-Bold;
    src: url(../fonts/montserrat/Montserrat-Bold.ttf)
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box
}

/*body, html {
    height: 100%;
    font-family: Poppins-Regular,sans-serif;
}
*/
a {
    /*  font-family: Poppins-Regular;*/
    font-size: 14px;
    line-height: 1.7;
    color: #1c405f;
    margin: 0;
    transition: all .4s;
    -webkit-transition: all .4s;
    -o-transition: all .4s;
    -moz-transition: all .4s
}

    a:focus {
        outline: none !important
    }

    a:hover {
        text-decoration: none;
        color: #333
    }

/*h1, h2, h3, h4, h5, h6 {
    margin: 0
}*/


ul, li {
    margin: 0;
}

input {
    outline: none;
    border: none
}

textarea {
    outline: none;
    border: none
}

    textarea:focus, input:focus {
        border-color: transparent !important
    }

input::-webkit-input-placeholder {
    color: #999
}

input:-moz-placeholder {
    color: #999
}

input::-moz-placeholder {
    color: #999
}

input:-ms-input-placeholder {
    color: #999
}

textarea::-webkit-input-placeholder {
    color: #999
}

textarea:-moz-placeholder {
    color: #999
}

textarea::-moz-placeholder {
    color: #999
}

textarea:-ms-input-placeholder {
    color: #999
}

button {
    outline: none !important;
    border: none;
    background: 0 0
}

    button:hover {
        cursor: pointer
    }

iframe {
    border: none !important
}

.txt1 {
    font-family: Poppins-Regular;
    font-size: 13px;
    line-height: 1.4;
    color: #999
}

.txt2 {
    font-family: Poppins-Regular;
    font-size: 13px;
    line-height: 1.4;
    color: #00ad5f
}

.txt3 {
    font-family: Poppins-Regular;
    font-size: 15px;
    line-height: 1.4;
    color: #00ad5f;
    text-transform: uppercase
}

.size1 {
    width: 355px;
    max-width: 100%
}

.size2 {
    width: calc(100% - 43px)
}

.limiter {
    width: 100%;
    margin: 0 auto
}

.container-login100 {
    width: 100%;
    min-height: 100vh;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    padding: 15px;
    background: #f2f2f2
}

.wrap-login100 {
    width: 1170px;
    background: #fff;
    overflow: hidden;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    flex-wrap: wrap;
    align-items: stretch;
    flex-direction: row-reverse
}

.login100-more {
    width: 50%;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    position: relative;
    z-index: 1
}

    .login100-more::before {
        content: "";
        display: block;
        position: absolute;
        z-index: -1;
        width: 100%;
        height: 100%;
        top: 0;
        left: 0;
        background: rgba(0,0,0,.3)
    }

.login100-form {
    width: 50%;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    flex-wrap: wrap;
    padding: 303px 65px 40px
}

.login100-form-title {
    font-family: Poppins-Regular;
    font-size: 20px;
    color: #555;
    line-height: 1.2;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-align: center;
    width: 100%;
    display: block
}

.wrap-input100 {
    width: 100%;
    position: relative;
    border: 1px solid #e6e6e6
}

.rs1-wrap-input100, .rs2-wrap-input100 {
    width: 50%
}

.rs2-wrap-input100 {
    border-left: none
}

.input100 {
    display: block;
    width: 100%;
    background: 0 0;
    font-family: Poppins-Regular;
    font-size: 18px;
    color: #666;
    line-height: 1.2;
    padding: 0 25px
}

input.input100 {
    height: 55px
}

.focus-input100 {
    position: absolute;
    display: block;
    width: calc(100% + 2px);
    height: calc(100% + 2px);
    top: -1px;
    left: -1px;
    pointer-events: none;
    border: 1px solid #00ad5f;
    visibility: hidden;
    opacity: 0;
    -webkit-transition: all .4s;
    -o-transition: all .4s;
    -moz-transition: all .4s;
    transition: all .4s;
    -webkit-transform: scaleX(1.1) scaleY(1.3);
    -moz-transform: scaleX(1.1) scaleY(1.3);
    -ms-transform: scaleX(1.1) scaleY(1.3);
    -o-transform: scaleX(1.1) scaleY(1.3);
    transform: scaleX(1.1) scaleY(1.3)
}

.input100:focus + .focus-input100 {
    visibility: visible;
    opacity: 1;
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -ms-transform: scale(1);
    -o-transform: scale(1);
    transform: scale(1)
}

.container-login100-form-btn {
    width: 100%;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    flex-wrap: wrap;
    justify-content: center
}

.login100-form-btn {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0 20px;
    width: 100%;
    height: 50px;
    border-radius: 3px;
    background: #00ad5f;
    font-family: Montserrat-Bold;
    font-size: 12px;
    color: #fff;
    line-height: 1.2;
    text-transform: uppercase;
    letter-spacing: 1px;
    -webkit-transition: all .4s;
    -o-transition: all .4s;
    -moz-transition: all .4s;
    transition: all .4s
}

    .login100-form-btn:hover {
        background: #333
    }

@media(max-width: 992px) {
    .login100-form {
        width: 60%;
        padding-left: 30px;
        padding-right: 30px
    }

    .login100-more {
        width: 40%
    }
}

@media(max-width: 768px) {
    .login100-form {
        width: 100%
    }

    .login100-more {
        width: 100%
    }
}

@media(max-width: 576px) {
    .login100-form {
        padding-left: 15px;
        padding-right: 15px;
        padding-top: 150px
    }

    .rs1-wrap-input100, .rs2-wrap-input100 {
        width: 100%
    }

    .rs2-wrap-input100 {
        border-left: 1px solid #e6e6e6
    }
}

.validate-input {
    position: relative
}

.alert-validate::before {
    content: attr(data-validate);
    position: absolute;
    max-width: 70%;
    background-color: #fff;
    border: 1px solid #c80000;
    border-radius: 2px;
    padding: 4px 25px 4px 10px;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    transform: translateY(-50%);
    right: 12px;
    pointer-events: none;
    font-family: Poppins-Regular;
    color: #c80000;
    font-size: 13px;
    line-height: 1.4;
    text-align: left;
    visibility: hidden;
    opacity: 0;
    -webkit-transition: opacity .4s;
    -o-transition: opacity .4s;
    -moz-transition: opacity .4s;
    transition: opacity .4s
}

.alert-validate::after {
    content: "\f12a";
    font-family: FontAwesome;
    display: block;
    position: absolute;
    color: #c80000;
    font-size: 16px;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    transform: translateY(-50%);
    right: 18px
}

.alert-validate:hover:before {
    visibility: visible;
    opacity: 1
}

@media(max-width: 992px) {
    .alert-validate::before {
        visibility: visible;
        opacity: 1
    }
}


.swal-button--loading ~ .swal-button__loader {
    opacity: 0 !important;
}


@media (max-width: 768px) {
    .theads {
        white-space: nowrap;
    }

    .mobilescroll {
        overflow: auto;
        max-width: 30rem;
    }

    h5 {
        font-size: 18px;
    }



    /* Make sure parent anchor is relative */
    .menu-item-has-children > a {
        position: relative;
    }

    /* Show submenu when open */
    .menu-item-has-children.open > .sub-menu {
        display: block;
        position: static; /* for mobile layout, allow it to stack */
    }

    /* Optional: mobile adjustments */
    @media screen and (max-width: 768px) {

        /*.rs-menu a {
    padding:10px;
    }*/
        .mob-primary {
            background: white;
            color: #1c405f;
        }

        .top-mobile {
            top: 18rem;
            position: relative;
        }

        .boxshadow {
            box-shadow: 0 1px 7px 0 rgb(0 0 0 / 40%) !important;
        }

        /* .ellipsis {
            white-space: nowrap;
            overflow: hidden;
            text-overflow: ellipsis;         
            width: 5.6rem;
            position: relative;
        }*/

        .white-space {
            white-space: nowrap;
        }

        .main-menu .rs-menu ul.nav-menu {
            flex-direction: column;
        }

        .menu-item-has-children > .sub-menu {
            position: static; /* avoid dropdown overlapping */
        }

        .menu-item-has-children > a:before {
            content: "\276F"; /* Right arrow */
            position: absolute;
            right: 10px;
            top: 50%;
            transform: translateY(-50%) rotate(90deg); /* Default closed */
            transition: transform 0.3s ease;
        }

        .nav {
            display: flex;
            flex-wrap: wrap;
            padding-left: 0;
            margin-bottom: 0;
            list-style: none;
            width: 100%;
        }

        .copyright {
            display: none;
        }
    }



    .menu-item-has-children.open > a:before {
        transform: translateY(-50%) rotate(-90deg);
    }


    @media (max-width: 768px) {
        .mobilescroll {
            overflow: auto;
            max-width: 30rem;
        }
    }

    