.header {
    padding: 15px 0;
    padding: 15px 0;
    box-shadow: 0px 0px 10px 0px #cecece;

    .container-max {
        max-width: 100%;
        padding: 0 40px;
    }
}

.header {
    &.innerHeader {
        background-color: #fff;
        z-index: 999;
        position: relative;

        &.fixHeader {
            background-color: #fff;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
        }
    }
}

.headerInner {
    display: flex;
    justify-content: space-between;

    .headerLogo {
        width: 200px;

        img {
            width: 100%;
        }
    }

    .headerMiddle {
        text-align: center;
        width: calc(100% - 400px);
    }

    .headerRight {
        width: 200px;

        ul {
            gap: 15px;
            justify-content: flex-end;

            li {
                margin-bottom: 0px;

                a {
                    width: 40px;
                    height: 40px;
                    border-radius: 50%;
                    display: flex;
                    align-items: center;
                    justify-content: center;

                    &.dwldIcon {
                        background-color: #e31e38;
                        padding: 7px;

                        img {
                            width: 100%;
                            height: 100%;
                            object-fit: cover;
                            object-position: center center;
                        }
                    }

                    &.triggerIcon {
                        box-shadow: 0px 0px 10px 0px #cecece;
                        padding: 10px;
                    }
                }
            }
        }
    }
}


/*==sideMenu start===*/
.sideMenu {
    width: 500px;
    height: 100%;
    right: 0;
    background-color: #000;
    position: fixed;
    top: 0;
    right: 0;
    z-index: 999;
    transform: translateX(100%);
    transition: 0.5s;

    .menuLogo {
        padding: 20px;
        border-bottom: 2px solid #cecece;
        background-color: #fff;
        border: 2px solid #e21c3c;
        border-right: none;

        img {
            width: 220px;
        }
    }

    .closeIcon {
        position: absolute;
        top: 10px;
        right: 10px;
        background-color: #e31e38;
        color: #fff;
        width: 45px;
        height: 45px;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 24px;
        cursor: pointer;
    }

    .menuWrap {
        ul {
            padding-top: 20px;
            padding-left: 20px;
            padding-right: 20px;

            li {
                padding: 0 0px;
                margin-bottom: 20px;
                position: relative;
                border-bottom: 1px solid #cecece57;
                padding-right: 0;

                .toggleArrow {
                    position: absolute;
                    top: 10px;
                    right: 10px;
                    color: #e31837;
                    font-size: 14px;
                    cursor: pointer;
                    width: 30px;
                    height: 30px;
                    display: flex;
                    align-items: center;
                    justify-content: center;
                    z-index: 99;
                    transition: 0.5s;
                }

                .subMenu {
                    display: none;
                }

                &::before {
                    width: 3px;
                    height: 100%;
                    top: 0;
                    left: 0;
                    content: "";
                    position: absolute;
                    background-color: #e31837;
                    transition: 0.5s;
                }

                a {
                    position: relative;

                    &::after {
                        width: 3px;
                        height: 100%;
                        top: 0;
                        left: 0;
                        content: "";
                        position: absolute;
                        background-color: #e31837;
                        transition: 0.5s;
                        z-index: -1;
                    }
                }

                &:hover {
                    a {
                        &::after {
                            width: 100%;
                        }
                    }

                    a {
                        color: #fff;
                    }

                    .toggleArrow {
                        color: #fff;
                    }
                }


                a {
                    color: #e21c3c;
                    padding: 10px 0;
                    display: block;
                    text-decoration: none;
                    font-size: 20px;
                    padding-left: 10px;
                    position: relative;
                    font-weight: 500;
                    z-index: 1;
                }

                &:last-child {
                    margin-bottom: 0px;
                }

                &.open {
                    a {
                        color: #fff;

                        &::after {
                            width: 100%;
                        }
                    }

                    .toggleArrow {
                        transform: rotate(180deg);
                        color: #fff;
                    }

                    .subMenu {
                        li {
                            a {
                                color: #e31837;

                                &::after {
                                    width: 0;
                                }
                            }

                            .toggleArrow {
                                color: #e31837;
                            }

                            &:hover {
                                a {
                                    color: #fff;

                                    &::after {
                                        width: 100%;
                                    }
                                }

                                .toggleArrow {
                                    color: #fff;
                                }
                            }
                        }
                    }
                }
            }


        }
    }

    .menuWrap {
        height: calc(100vh - 105px);
        overflow: auto;
    }
}

.sideMenuWrap {
    .sideMenu {
        transform: translateX(0);
    }
}

.overlayMenuBg {
    opacity: 0;
    visibility: hidden;
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;

    &.sideOverlay {
        opacity: 1;
        visibility: visible;
        backdrop-filter: blur(10px);
        z-index: 111;
    }
}

/*===breadcrumbWrap start===*/
.breadcrumb {
    padding: 10px 40px;
    margin-bottom: 0px !important;

    li {
        margin-bottom: 0px !important;
        padding-right: 15px;
        margin-right: 10px;
        position: relative;

        &::after {
            content: "\f054";
            position: absolute;
            right: 0;
            top: 7px;
            font-family: "FontAwesome";
            font-size: 10px;
        }

        &:last-child {
            &:after {
                display: none;
            }
        }

        a {
            font-size: 16px !important;
        }

        &.active {
            a {
                color: #010101;
            }
        }
    }
}

@media(max-width:1366px) {
    .headerInner {
        .headerLogo {
            width: 140px;
        }

        .headerRight {
            width: 140px;
        }

        .headerMiddle {
            width: calc(100% - 280px);
        }
    }

    .header {
        .container-max {
            max-width: 100%;
            padding: 0 20px;
        }
    }

    .sideMenu {
        width: 600px;
    }
}

@media(max-width:991px) {
    .breadcrumb {
        padding: 10px 20px;
    }

    .sideMenu {
        width: 70%;
    }
}

@media(max-width: 768px) {
    .sideMenu {
        .menuLogo {
            img {
                width: 170px;
            }
        }

        .closeIcon {
            width: 30px;
            height: 30px;
            font-size: 18px;
        }

        .menuWrap {
            ul {
                padding-left: 12px;
                padding-right: 12px;

                li {
                    a {
                        font-size: 18px;
                        padding: 8px 0;
                        padding-left: 8px;
                    }

                    .toggleArrow {
                        top: 7px;
                    }
                }
            }
        }
    }
}

@media(max-width:767px) {
    .headerInner {
        .headerMiddle {
            display: none;
        }
    }

    .sideMenu {
        width: 80%;
    }
}

@media(max-width: 480px) {
    .sideMenu {
        width: 100%;
        .menuLogo {
            img {
                width: 150px;
            }
        }
    }
}