/* header start */
.show-menu {
    display: block !important;
    z-index: 9999;
}

.mobile-header {
    border-bottom: 0px solid #000;
}

/* Custom CSS for handling hover and click events */
.custom-services-sub-menu {
    display: none;
}

.custom-toggle-parant {
    min-height: 80px;
    position: relative;
}

.logo-position {
    position: absolute;
    top: 1%;
    left: 5%;
    z-index: 2000;
}

.custom-menu-toggle {
    position: absolute;
    top: 8%;
    right: 5%;
    padding-top: 8%;
    font-size: 22px;
}

.menu-fixed {
    position: fixed;
    overflow: visible !important;
    z-index: 1001;
    width: 100%;
}

.mobile-header {
    border-bottom: 0px solid #000;
}

.custom-toggle-parant {
    min-height: 80px;
    position: relative;
}


/* header end */

/* media for header */
@media only screen and (max-width: 600px) {
    .main-header{
        display: none;
    }
    .mobile-header {
        display: block;
    }
}
@media only screen and (min-width: 600px) {
    .main-header{
        display: none;
    }
    .mobile-header {
        display: block;
    }
}
@media only screen and (min-width: 768px) {
    .main-header{
        display: block;
    }
    .mobile-header {
        display: none;
    }
}
@media only screen and (min-width: 992px) {
    .main-header{
        display: block;
    }
    .mobile-header {
        display: none;
    }
}
@media only screen and (min-width: 1200px){
    .main-header{
        display: block;
    }
    .mobile-header {
        display: none;
    }
}
/* media for header */