/*
 Theme Name:   Hello Elementor Child
 Description:  A child theme for the Hello Elementor WordPress theme.
 Author:       Your Name
 Template:     hello-elementor
 Version:      1.0.0
*/
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;600;700&display=swap');

body {
    font-family: 'Poppins', sans-serif;
}
#mega-menu-wrap-menu-1 #mega-menu-menu-1 > li.mega-menu-item > a.mega-menu-link {
    font-weight: 500 !important;
    position: relative !important;
    background: transparent !important;
    padding-bottom: 10px !important;
}
#mega-menu-wrap-menu-1 #mega-menu-menu-1 > li.mega-menu-item > a.mega-menu-link::after {
    content: "" !important;
    position: absolute !important;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background-color: #002a66 !important;
    transition: width 0.3s ease, left 0.3s ease !important;
    transform: translateX(-50%);
}
#mega-menu-wrap-menu-1 #mega-menu-menu-1 > li.mega-menu-item:hover > a.mega-menu-link::after {
    width: 80% !important;
}
.mega-menu-item h3, 
.mega-menu-row h4.mega-block-title {
    color: #002a66 !important;
    font-size: 1.25rem !important;
    font-weight: 600 !important;
    line-height: 1.75rem;
    text-transform: uppercase;
    font-family: 'Poppins', sans-serif;
    margin: 0 0 8px 0;
}
.mega-sub-menu .mega-menu-item p {
    font-size: 16px;
    color: #5c5c5c;
    line-height: 24px;
}
.mega-sub-menu .mega-menu-item a {
    position: relative;
    display: block;
    font-size: 16px;
    color: #000;
    padding-bottom: 12px;
    width: fit-content !important;
    text-decoration: none;
}
.mega-sub-menu .mega-menu-item a::before {
    content: '';
    background-image: url('./assets/img/next.png');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    width: 15px;
    height: 15px;
    position: absolute;
    right: -24px;
    top: 4px;
    opacity: 0;
    transition: opacity 0.3s ease, right 0.3s ease;
}
.mega-sub-menu .mega-menu-item a:hover::before {
    opacity: 1;
    right: -20px;
}
.nav-custom ul {
    padding: 0;
    list-style: none;
}
.nav-custom li {
    margin-bottom: 20px;
    border-bottom: 1px solid #002a66;
}
.mega-service_second p {
    border-bottom: 1px solid #002a66;
    padding-bottom: 12px;
}