/* ===== RESET & BASE STYLES ===== */

body {

    margin: 0;

    padding: 0;

    font-family: 'Poppins', sans-serif !important;

    font-style: normal;

    color: #212529;

    background-color: #fff;

    overflow-x: hidden;

}



/* ===== HERO SECTION ===== */

.hero > .container {

    position: relative;

    z-index: 5;
	
	min-height: 520px;

	background-position: center center !important;
	
    background-size: cover !important;
}



.hero::before {

    content: '';

    position: absolute;

    top: 0;

    left: 0;

    right: 0;

    bottom: 0;

    background: rgba(0, 0, 0, 0.5);

    z-index: 1;

}



/* ===== NAVIGATION ===== */

.navbar-custom {

    position: relative;

    background-color: rgba(129, 134, 136, 0.3) !important;

    backdrop-filter: blur(5px) !important;

    -webkit-backdrop-filter: blur(5px) !important;

    border-bottom: 1px solid rgba(255, 255, 255, 0.1);

    z-index: 9998 !important;

}



.navbar-nav {

    position: relative;

    z-index: 9999 !important;

}



/* Custom Dropdown Styles */

.nav-item {

    position: relative;

}



.nav-item.dropdown {

    position: relative;

    z-index: 9999 !important;

}



.nav-item.dropdown .dropdown-menu {

    position: absolute;

    top: 100%;

    left: 0;

    z-index: 10000 !important;

    display: none;

    min-width: 280px;

    padding: 0.75rem 0;

    margin: 0;

    background: #1a1a1a;

    border-radius: 8px;

    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4);

    list-style: none;

    text-align: left;

    border: 1px solid rgba(255, 255, 255, 0.1);

}



/* Show dropdown on hover */

.nav-item.dropdown:hover > .dropdown-menu {

    display: block;

    animation: fadeIn 0.3s ease;

}



/* Dropdown items */

.nav-item.dropdown .dropdown-item {

    display: flex;

    align-items: center;

    gap: 1rem;

    padding: 0.75rem 1.5rem;

    color: rgba(255, 255, 255, 0.9);

    text-decoration: none;

    transition: all 0.3s ease;

    white-space: nowrap;

    background: transparent;

    border: none;

    width: 100%;

    font-size: 0.95rem;

    border-bottom: 1px solid rgba(255, 255, 255, 0.05);

}



.nav-item.dropdown .dropdown-item:last-child {

    border-bottom: none;

}



.nav-item.dropdown .dropdown-item:hover {

    background: rgba(253, 201, 0, 0.15);

    color: #FDC900;

    padding-left: 2rem;

}



/* Dropdown icons */

.nav-item.dropdown .dropdown-icon {

    width: 22px;

    text-align: center;

    color: #FDC900;

    font-size: 1rem;

}



/* Dropdown divider */

.nav-item.dropdown .dropdown-divider {

    height: 1px;

    margin: 0.5rem 0;

    background: rgba(255, 255, 255, 0.1);

}



/* ===== DROPDOWN SUBMENU STYLES ===== */

.dropdown-submenu {

    position: relative;

}



/* Fix for parent dropdown to allow submenu overflow */

.nav-item.dropdown .dropdown-menu {

    overflow: visible !important; /* Allow submenu to overflow */

}



/* Submenu dropdown positioning - FIXED */

.dropdown-submenu > .dropdown-menu {

    position: absolute !important;

    top: 0 !important;

    left: 100% !important;

    margin-top: -0.5rem !important;

    margin-left: 0.5rem !important;

    min-width: 260px;

    display: none !important;

    z-index: 10001 !important;

    background: #1a1a1a;

    border-radius: 8px;

    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4);

    border: 1px solid rgba(255, 255, 255, 0.1);

    padding: 0.5rem 0;

    /* Ensure it's not clipped */

    overflow: visible !important;

}



/* Show submenu on hover - with proper trigger */

.dropdown-submenu:hover > .dropdown-menu {

    display: block !important;

    animation: fadeIn 0.3s ease;

}



/* Ensure parent dropdown item stays highlighted */

.dropdown-submenu:hover > .dropdown-item {

    background: rgba(253, 201, 0, 0.15);

    color: #FDC900;

}



/* Dropdown item styling for submenu items */

.dropdown-submenu > .dropdown-item {

    display: flex;

    align-items: center;

    justify-content: space-between;

    padding-right: 2rem;

    position: relative;

    cursor: pointer;

}



/* Arrow indicator for submenu items */

.dropdown-submenu > .dropdown-item::after {

    content: '\f054';

    font-family: 'Font Awesome 6 Free';

    font-weight: 900;

    font-size: 0.7rem;

    margin-left: auto;

    padding-left: 0.5rem;

    color: rgba(255, 255, 255, 0.5);

    transition: transform 0.3s ease, color 0.3s ease;

}



.dropdown-submenu:hover > .dropdown-item::after {

    color: #FDC900;

    transform: translateX(3px);

}



/* Different icon for categories with submenus */

.dropdown-submenu > .dropdown-item .dropdown-icon {

    color: #FDC900;

}



/* Second level submenu items */

.dropdown-submenu .dropdown-menu .dropdown-item {

    padding: 0.6rem 1.5rem;

    font-size: 0.9rem;

    white-space: nowrap;

}



.dropdown-submenu .dropdown-menu .dropdown-item .dropdown-icon {

    color: #FDC900;

    opacity: 0.8;

}



/* Prevent submenu from going off-screen */

@media (min-width: 992px) {

    /* If submenu would go off-screen to the right, show it on the left */

    .dropdown-submenu:last-child > .dropdown-menu,

    .dropdown-submenu:nth-last-child(2) > .dropdown-menu {

        left: auto !important;

        right: 100% !important;

        margin-left: 0 !important;

        margin-right: 0.5rem !important;

    }

}



/* Fix for Bootstrap's potential overflow issues */

.navbar-nav .dropdown-menu {

    overflow: visible !important;

}



/* Ensure the dropdown containers don't clip their children */

.nav-item.dropdown {

    overflow: visible !important;

}



.dropdown-menu {

    overflow: visible !important;

}



/* Animation */

@keyframes fadeIn {

    from {

        opacity: 0;

        transform: translateY(-10px);

    }

    to {

        opacity: 1;

        transform: translateY(0);

    }

}



/* ===== LANGUAGE TOGGLE ===== */

.radio-slider-container {

    display: flex;

    align-items: center;

    gap: 10px;

}



.radio-slider {

    position: relative;

    width: 100px;

    height: 36px;

    background-color: #152131;

    border-radius: 5px;

    display: flex;

    align-items: center;

    padding: 3px;

    cursor: pointer;

    transition: all 0.3s ease;

}



.radio-slider-option {

    position: relative;

    width: 50%;

    height: 100%;

    display: flex;

    align-items: center;

    justify-content: center;

    z-index: 1;

    color: rgba(242, 235, 235, 0.7);

    font-weight: 500;

    font-size: 0.85rem;

    transition: color 0.3s ease;

    cursor: pointer;

}



.radio-slider-option.active {

    color: #fff;

}



.radio-slider-slider {

    position: absolute;

    left: 3px;

    width: 44px;

    height: 30px;

    background-color: #FDC900;

    border-radius: 5px;

    transition: transform 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);

    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);

}



.radio-slider input[type="radio"] {

    display: none;

}



#it-option:checked ~ .radio-slider-slider {

    transform: translateX(0);

}



#br-option:checked ~ .radio-slider-slider {

    transform: translateX(50px);

}



/* ===== SECTION BACKGROUNDS ===== */

.product-slide {

    background: #0E152A;

    min-height: 300px;

}



.whole-solutions-section {

    background: #0E152A;

}



.multiple-card-section {

    background: #0E152A;

}



/* ===== IMAGE CONTAINERS ===== */

.img-container {

    height: 200px;

    display: flex;

    align-items: center;

    justify-content: center;

    overflow: hidden;

}



.img-container img {

    object-fit: cover;

    height: 100%;

    width: 100%;

}



.slider-section .img-container {

    height: 250px;

}



.slider-section .img-container img {

    max-width: 100%;

    max-height: 100%;

    object-fit: contain;

}



.product-image-container {

    height: 300px;

    overflow: hidden;

    background-color: #f8f9fa;

    display: flex;

    align-items: center;

    justify-content: center;

    border-bottom: 1px solid #dee2e6;

}



.product-image-container img {

    max-height: 100%;

    width: auto;

    max-width: 100%;

    object-fit: contain;

    padding: 15px;

}



/* ===== TEXT TRUNCATION ===== */

.text-truncate-2 {

    display: -webkit-box;

    -webkit-line-clamp: 2;

    -webkit-box-orient: vertical;

    overflow: hidden;

    text-overflow: ellipsis;

    line-height: 1.5em;

    max-height: 3em;

    min-height: 3em;

}



.text-truncate-3 {

    display: -webkit-box;

    -webkit-line-clamp: 3;

    -webkit-box-orient: vertical;

    overflow: hidden;

    text-overflow: ellipsis;

    line-height: 1.5em;

    max-height: 4.5em;

    min-height: 4.5em;

}



/* ===== OWL CAROUSEL ===== */

.owl-carousel,

.owl-carousel .owl-stage,

.owl-carousel .owl-item {

    z-index: 1 !important;

}



.owl-carousel .owl-stage {

    display: flex;

}



.owl-carousel .owl-item {

    display: flex;

    height: auto;

}



.owl-carousel-container {

    position: relative;

    z-index: 1 !important;

}



/* ===== GALLERY ===== */

.gallery-item {

    height: 300px;

    overflow: hidden;

    transition: transform 0.3s ease;

}



.gallery-item:hover {

    transform: translateY(-5px);

}



.gallery-item img {

    height: 100%;

    object-fit: cover;

    transition: transform 0.5s ease;

}



.gallery-item:hover img {

    transform: scale(1.05);

}



.gallery-overlay {

    background: linear-gradient(to top, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0.5) 50%, transparent 100%);

    opacity: 0;

    transition: opacity 0.3s ease;

}



.gallery-item:hover .gallery-overlay {

    opacity: 1;

}



.gallery-nav {

    margin-top: 2rem;

}



/* ===== PRODUCT CARDS ===== */

.product-card {

    border-radius: 12px;

    overflow: hidden;

    transition: transform 0.3s ease, box-shadow 0.3s ease;

    height: 100%;

}



.product-card:hover {

    transform: translateY(-5px);

    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);

}



.product-image {

    height: 250px;

    display: flex;

    align-items: center;

    justify-content: center;

    padding: 20px;

    background: rgba(255, 255, 255, 0.05);

}



.product-image img {

    max-height: 200px;

    width: auto;

    object-fit: contain;

}



.product-content {

    padding: 20px;

}



.product-specs {

    margin-top: 15px;

}



.spec-item {

    display: flex;

    justify-content: space-between;

    padding: 8px 0;

    border-bottom: 1px solid rgba(255, 255, 255, 0.1);

    font-size: 0.9rem;

}



.spec-item:last-child {

    border-bottom: none;

}



.spec-label {

    color: #999;

}



.spec-value {

    color: #fff;

    font-weight: 500;

}



/* ===== CATEGORY SIDEBAR ===== */

.category-sidebar {

    background: #1a2238;

    border-radius: 12px;

    padding: 25px;

    border: 1px solid rgba(255, 255, 255, 0.1);

}



.category-list {

    list-style: none;

    padding: 0;

    margin: 0;

}



.category-list li {

    margin-bottom: 15px;

    padding-bottom: 15px;

    border-bottom: 1px solid rgba(255, 255, 255, 0.1);

}



.category-list li:last-child {

    border-bottom: none;

    margin-bottom: 0;

    padding-bottom: 0;

}



.category-list a {

    color: #fff;

    text-decoration: none;

    display: flex;

    align-items: center;

    justify-content: space-between;

    transition: color 0.3s ease;

}



.category-list a:hover {

    color: #FDC900;

}



.category-list a i {

    opacity: 0.7;

    transition: opacity 0.3s ease;

}



.category-list a:hover i {

    opacity: 1;

}



.sidebar-title {

    font-size: 1.5rem;

    font-weight: 700;

    margin-bottom: 25px;

    color: #FDC900;

    border-bottom: 2px solid #FDC900;

    padding-bottom: 10px;

}



/* ===== PRODUCT GRID ===== */

.product-grid-header {

    margin-bottom: 30px;

    width: 100%;

}



.product-grid-title {

    font-size: 2.5rem;

    font-weight: 700;

    margin-bottom: 10px;

}



/* ===== BUTTONS ===== */

.view-details-btn {

    background: rgba(253, 201, 0, 0.1);

    color: #FDC900;

    border: 1px solid rgba(253, 201, 0, 0.3);

    transition: all 0.3s ease;

}



.view-details-btn:hover {

    background: #FDC900;

    color: #000;

    border-color: #FDC900;

}



.btn-dark {

    background-color: #212529;

    border-color: #212529;

    transition: all 0.3s ease;

}



.btn-dark:hover {

    background-color: #0E152A;

    border-color: #0E152A;

    transform: translateY(-2px);

}



.btn-close-circle {

    width: 40px;

    height: 40px;

    border-radius: 50%;

    border: 1px solid #dee2e6;

    background: #f8f9fa;

    display: flex;

    align-items: center;

    justify-content: center;

    padding: 0;

    transition: all 0.2s ease;

}



.btn-close-circle:hover {

    background: #e9ecef;

    border: solid 2px #000000;

}



.btn-close-circle i {

    font-size: .8rem;

    color: #000;

}



.btn-close-circle:hover i {

    color: #495057;

}



/* Square buttons */

.square-button {

    aspect-ratio: 1/1;

    height: auto;

    padding: 1rem !important;

    border-radius: 8px;

    border-width: 2px;

    transition: all 0.3s ease;

}



.square-button i {

    font-size: 2rem;

}



.square-button span {

    font-size: 0.9rem;

    text-align: center;

}



.square-button:hover {

    transform: translateY(-3px);

    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);

}



.square-button.fixed-square {

    height: 120px;

    width: 100%;

    display: flex;

    flex-direction: column;

    align-items: center;

    justify-content: center;

}



/* Button states */

.bg-warning-checked:active,

.btn-check:checked + .bg-warning-checked {

    background-color: #ffc107 !important;

    border-color: #ffc107 !important;

    color: #000 !important;

}



.btn-check:checked + .btn.btn-outline-dark {

    background-color: #ffc107 !important;

    border-color: #ffc107 !important;

    color: #000 !important;

}



/* ===== SEARCH BAR ===== */

.search-container-right .input-group {

    border-radius: 8px;

    overflow: hidden;

    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);

}



.search-container-right .form-control {

    border: 1px solid #dee2e6;

    border-right: none;

    padding: 12px 16px;

    font-size: 0.95rem;

    height: 48px;

}



.search-container-right .form-control:focus {

    box-shadow: none;

    border-color: #dee2e6;

    border-right: none;

}



.search-container-right .btn-warning {

    background-color: #FDC900;

    border: 1px solid #FDC900;

    color: #212529;

    padding: 0 20px;

    height: 48px;

    font-size: 1rem;

    transition: all 0.3s ease;

}



.search-container-right .btn-warning:hover {

    background-color: #e6b800;

    border-color: #e6b800;

}



/* ===== ACCORDION ===== */

.custom-accordion .accordion-button {

    background: transparent !important;

    border: none !important;

    box-shadow: none !important;

    position: relative;

    border-bottom: 1px solid rgba(255, 255, 255, 0.2) !important;

    border-radius: 0 !important;

    padding: 12px 0 !important;

}



.custom-accordion .accordion-button:not(.collapsed) {

    color: #FDC900 !important;

    border-bottom-color: #FDC900 !important;

}



.custom-accordion .accordion-button::after {

    display: none !important;

}



.custom-accordion .accordion-button .accordion-custom-icon {

    color: rgba(255, 255, 255, 0.7);

    font-size: 12px;

    transition: all 0.3s ease;

}



.custom-accordion .accordion-button:not(.collapsed) .accordion-custom-icon {

    transform: rotate(45deg);

    color: #FDC900 !important;

}



.custom-accordion .accordion-body {

    padding: 10px 0 5px 0 !important;

    background: transparent !important;

    border: none !important;

}



.custom-accordion .accordion-body ul {

    border-left: 1px solid rgba(255, 255, 255, 0.1);

}



.custom-accordion .accordion-body ul li {

    padding: 6px 0;

    position: relative;

}



.custom-accordion .accordion-body ul li:before {

    content: "";

    position: absolute;

    left: -10px;

    top: 50%;

    transform: translateY(-50%);

    width: 4px;

    height: 4px;

    background: #FDC900;

    border-radius: 50%;

}



.custom-accordion .accordion-body ul li a {

    color: rgba(255, 255, 255, 0.8) !important;

    font-size: 0.9rem;

    transition: all 0.3s ease;

    display: block;

    padding-left: 5px;

}



.custom-accordion .accordion-body ul li a:hover {

    color: #FDC900 !important;

    padding-left: 10px;

}



/* ===== DOCUMENTATION ===== */

.documentation-card {

    transition: transform 0.3s ease, box-shadow 0.3s ease;

    display: flex;

    flex-direction: column;

}



.documentation-card:hover {

    transform: translateY(-5px);

    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1) !important;

}



.documentation-card h5 {

    color: #212529;

    font-size: 1.1rem;

    line-height: 1.4;

    min-height: 60px;

}



.document-details {

    border-top: 1px solid #dee2e6;

    border-bottom: 1px solid #dee2e6;

    padding: 1rem 0;

}



/* ===== PRODUCT CATALOGUE ===== */

.product-catalogue .product-catalogue-slide {

    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1) !important;

    border-color: #ffc107 !important;

}



.product-catalogue .product-catalogue-slide h4 {

    font-size: 1.2em;

}



/* ===== CAROUSEL ===== */

.carousel-inner {

    padding: 10px 0;

}



.carousel-item {

    transition: transform 0.6s ease-in-out;

}



.custom-carousel-nav .btn {

    width: 45px;

    height: 45px;

    display: flex;

    align-items: center;

    justify-content: center;

    border: 2px solid #212529;

    transition: all 0.3s ease;

}



.custom-carousel-nav .btn:hover {

    background-color: #212529;

    color: white;

}



/* ===== YELLOW BOXES STYLING ===== */

.bg-warning {

    background-color: #FDC900 !important;

}



.bg-warning span {

    color: #000;

    font-weight: 600;

}



.bg-warning .list-group-item {

    color: #212529;

    font-size: 0.9rem;

}



.bg-warning hr {

    border-color: rgba(0, 0, 0, 0.3);

    opacity: 1;

}



/* ===== DRAG & DROP ===== */

.border-dashed {

    border-style: dashed !important;

}



.drag-drop-area {

    background-color: #f8f9fa;

    transition: all 0.3s ease;

    cursor: pointer;

}



.drag-drop-area:hover,

.drag-drop-area.dragover {

    background-color: #e9ecef;

    border-color: #495057 !important;

}



.file-item {

    background-color: #fff;

    border: 1px solid #dee2e6;

    border-radius: 0.375rem;

    padding: 0.75rem;

    margin-bottom: 0.5rem;

    display: flex;

    justify-content: space-between;

    align-items: center;

}



.file-item:last-child {

    margin-bottom: 0;

}



/* ===== NEWS STYLES ===== */

.news-hero {

    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('assets/images/hero-bg.png') center/cover no-repeat;

    padding: 80px 0;

    color: white;

}



.news-article-content {

    line-height: 1.8;

    color: #333;

}



.news-article-content h1,

.news-article-content h2,

.news-article-content h3 {

    color: #0E152A;

    margin-bottom: 1.5rem;

}



.news-article-content p {

    margin-bottom: 1.5rem;

}



.news-article-content .lead {

    font-size: 1.25rem;

    font-weight: 400;

    color: #666;

}



.feature-list {

    background: #f8f9fa;

    border-left: 4px solid #ffc107;

    padding: 1.5rem;

    margin: 2rem 0;

}



.feature-list ul {

    padding-left: 1.5rem;

    margin-bottom: 0;

}



.feature-list li {

    margin-bottom: 0.75rem;

}



.news-sidebar-section {

    background: #f8f9fa;

    border-radius: 10px;

    padding: 2rem;

    margin-bottom: 2rem;

}



.news-sidebar-section h4 {

    color: #0E152A;

    margin-bottom: 1.5rem;

    padding-bottom: 0.75rem;

    border-bottom: 2px solid #ffc107;

}



.share-buttons {

    display: flex;

    gap: 10px;

    margin-top: 1rem;

}



.share-btn {

    width: 40px;

    height: 40px;

    border-radius: 50%;

    display: flex;

    align-items: center;

    justify-content: center;

    color: white;

    text-decoration: none;

    font-size: 1rem;

    transition: transform 0.2s;

}



.share-btn:hover {

    transform: translateY(-2px);

}



.share-btn.twitter {

    background: #1DA1F2;

}



.share-btn.linkedin {

    background: #0077B5;

}



.share-btn.facebook {

    background: #4267B2;

}



.share-count {

    font-size: 0.9rem;

    color: #666;

    margin-top: 0.5rem;

}



.subscribe-form .form-control {

    border: 1px solid #ddd;

    padding: 0.75rem 1rem;

    border-radius: 5px;

}



.subscribe-form .btn {

    background: #0E152A;

    color: white;

    padding: 0.75rem 2rem;

    border-radius: 5px;

    font-weight: 500;

}



.subscribe-form .btn:hover {

    background: #1a2238;

}



.privacy-note {

    font-size: 0.85rem;

    color: #666;

    margin-top: 1rem;

}



.news-image-main {

    height: 400px;

    background: #f8f9fa;

    border-radius: 10px;

    display: flex;

    align-items: center;

    justify-content: center;

    margin-bottom: 2rem;

}



.news-meta {

    color: #666;

    font-size: 0.9rem;

    margin-bottom: 2rem;

    padding-bottom: 1rem;

    border-bottom: 1px solid #eee;

}



.news-meta i {

    color: #ffc107;

    margin-right: 0.5rem;

}



.news-navigation {

    display: flex;

    justify-content: space-between;

    margin-top: 3rem;

    padding-top: 2rem;

    border-top: 1px solid #eee;

}



.nav-article {

    max-width: 45%;

}



.nav-article .badge {

    background: #ffc107;

    color: #333;

    margin-bottom: 0.5rem;

}



.nav-article h6 {

    color: #0E152A;

    font-weight: 600;

    margin-bottom: 0.25rem;

}



.nav-article a {

    color: #0E152A;

    text-decoration: none;

    display: block;

}



.nav-article a:hover {

    color: #ffc107;

}



.article-divider {

    height: 1px;

    background: linear-gradient(90deg, transparent, #ffc107, transparent);

    margin: 3rem 0;

}



.back-to-news {

    display: inline-flex;

    align-items: center;

    color: #666;

    text-decoration: none;

    margin-bottom: 2rem;

}



.back-to-news:hover {

    color: #0E152A;

}



.back-to-news i {

    margin-right: 0.5rem;

}



/* ===== UTILITY CLASSES ===== */

.min-height-200px {

    min-height: 400px;

}



/* ===== MOBILE RESPONSIVE ===== */

@media (max-width: 991.98px) {

    .navbar-nav {

        z-index: 9999 !important;

    }

    

    .nav-item.dropdown .dropdown-menu {

        position: static;

        display: none;

        width: 100%;

        background: transparent;

        box-shadow: none;

        padding-left: 1rem;

        border: none;

        z-index: 10000 !important;

    }

    

    .nav-item.dropdown.active .dropdown-menu,

    .nav-item.dropdown .dropdown-menu.show {

        display: block;

    }

    

    .nav-item.dropdown .dropdown-item {

        color: rgba(255, 255, 255, 0.8);

        padding: 0.5rem 1rem;

        border-bottom: 1px solid rgba(255, 255, 255, 0.1);

    }

    

    .nav-item.dropdown .dropdown-item:hover {

        background: transparent;

        color: #FDC900;

        padding-left: 1.5rem;

    }

    

    .dropdown-submenu .dropdown-menu {

        position: static !important;

        display: none;

        width: 100%;

        margin-left: 1rem !important;

        margin-top: 0.5rem;

        background: transparent !important;

        box-shadow: none !important;

        border: none !important;

        padding-left: 1rem;

        left: auto !important;

        right: auto !important;

    }

    

    .dropdown-submenu:hover > .dropdown-menu {

        display: block;

    }

    

    .dropdown-submenu > .dropdown-item::after {

        content: '\f078';

        float: right;

    }

    

    .dropdown-toggle::after {

        float: right;

        margin-top: 0.5rem;

    }

}


/* Compact internal-page hero */
@media (max-width: 767.98px) {
    .hero > .container {
        min-height: 440px;
    }
}
