HEX
Server: Apache/2.4.41
System: Linux mainweb 5.4.0-182-generic #202-Ubuntu SMP Fri Apr 26 12:29:36 UTC 2024 x86_64
User: nationalmedicaregrp (1119)
PHP: 8.3.7
Disabled: exec,passthru,shell_exec,system,popen,proc_open,pcntl_exec
Upload Files
File: /home/precisionhealthcareproviders/public_html/scss/_header.scss
//header_area css
.header_area {
    position: relative;
    width: 100%;
    z-index: 99;
    transition: background 0.4s, all 0.3s linear;
    .navbar {
        background: transparent;
        padding: 0px;
        border: 0px;
        border-radius: 0px;
        .nav {
            .nav-item {
                margin-right: 45px;
                .nav-link {
                    font: 500 12px/80px $primary-font;
                    text-transform: uppercase;
                    color: $title-color;
                    padding: 0px;
                    display: inline-block;
                    &:after {
                        display: none;
                    }
                    @media (max-width: 991px) {
                        color: #ffffff;
                    }
                }
                &:hover,
                &.active {
                    .nav-link {
                        color: $primary-color
                    }
                }
                &.submenu {
                    position: relative;
                    ul {
                        border: none;
                        padding: 0px;
                        border-radius: 0px;
                        box-shadow: none;
                        margin: 0px;
                        background: #fff;
                        @media (min-width: 992px) {
                            position: absolute;
                            top: 120%;
                            left: 0px;
                            min-width: 200px;
                            text-align: left;
                            opacity: 0;
                            transition: all 300ms ease-in;
                            visibility: hidden;
                            display: block;
                            border: none;
                            padding: 0px;
                            border-radius: 0px;
                        }
                        &:before {
                            content: "";
                            width: 0;
                            height: 0;
                            border-style: solid;
                            border-width: 10px 10px 0 10px;
                            border-color: #eeeeee transparent transparent transparent;
                            position: absolute;
                            right: 24px;
                            top: 45px;
                            z-index: 3;
                            opacity: 0;
                            transition: all 400ms linear;
                        }
                        .nav-item {
                            display: block;
                            float: none;
                            margin-right: 0px;
                            border-bottom: 1px solid #ededed;
                            margin-left: 0px;
                            transition: all 0.4s linear;
                            .nav-link {
                                line-height: 45px;
                                color: $title-color;
                                padding: 0px 30px;
                                transition: all 150ms linear;
                                display: block;
                                margin-right: 0px;
                            }
                            &:last-child {
                                border-bottom: none;
                            }
                            &:hover {
                                .nav-link {
                                    background: $primary-color;
                                    color: #fff;
                                }
                            }
                        }
                    }
                    &:hover {
                        ul {
                            @media (min-width: 992px) {
                                visibility: visible;
                                opacity: 1;
                                top: 100%;
                            }
                            .nav-item {
                                margin-top: 0px;
                            }
                        }
                    }
                }
                &:last-child {
                    margin-right: 0px;
                }
            }
        }
        .search {
            font-size: 12px;
            line-height: 60px;
            display: inline-block;
            color: $title-color;
            @media (max-width: 991px) {
                color: #ffffff;
            }
            i {
                font-weight: 600;
            }
        }
    }
    &.navbar_fixed {
        .main_menu {
            position: fixed;
            width: 100%;
            top: -70px;
            left: 0;
            right: 0;
            background: #ffffff;
            @include transform(translateY(70px));
            @include transition();
            box-shadow: 0px 3px 16px 0px rgba(0, 0, 0, 0.1);
            .navbar {
                .nav {
                    .nav-item {
                        .nav-link {
                            line-height: 70px;
                        }
                    }
                }
            }
        }
    }
}

#search_input_box {
    @extend .gradient-bg;
    text-align: center;
    padding: 5px 20px;
    .form-control {
        background: transparent;
        border: 0;
        color: #ffffff;
        font-weight: 400;
        font-size: 15px;
        padding: 0;
        &:focus {
            box-shadow: none;
            outline: none;
        }
    }
    input {
        @include placeholder {
            color: #ffffff;
            font-size: 14px;
        }
    }
    .btn {
        width: 0;
        height: 0;
        padding: 0;
        border: 0;
    }
    .lnr-cross {
        color: #fff;
        font-weight: 600;
        cursor: pointer;
        padding: 10px 3px;
    }
}

.header-top {
    @include gradient(90deg, #772dff 0%, #9e4fff 100%);
    font-size: 12px;
    @media (max-width: 991px) {
        display: none;
    }
    a {
        color: #fff;
        text-transform: uppercase;
    }
    ul li {
        display: inline-block;
        margin-left: 15px;
    }
    .nice-select {
        background: transparent;
        border: 0;
        color: #fff;
        font-size: 12px;
        text-transform: uppercase;
        padding-left: 0;
        &:after {
            border-bottom: 2px solid #fff;
            border-right: 2px solid #fff;
        }
        .current {
            margin-right: 0;
        }
        .list {
            width: 100%;
            .option {
                display: block;
                margin: 0;
                color: #000000;
                padding-left: 10px;
            }
        }
    }
    .header-top-right {
        text-align: right;
        a {
            margin-right: 40px;
            &:last-child {
                margin-right: 0;
            }
            .lnr {
                color: #fff;
                font-weight: 700;
                margin-right: 8px;
            }
        }
        @media(max-width:767px) {
            .text {
                display: none;
            }
        }
    }
    .primary-btn {
        border-radius: 0px;
    }
}