
/* Hide hamburger on large devices */
@media (min-width: 1200px) {
    .hamburgerMenu {
        display: none;
    }
}

/* Mobile and Tablet: show nav dropdown styles */
@media (max-width: 1199px) {
    .nav {
        flex-direction: column;
        position: absolute;
        background-color: #f6f6f6;
        width: 100%;
        top: 50px;
        right: 0;
        overflow: hidden;
        transform: scaleY(0);
        transform-origin: top;
        transition: transform 0.5s ease-in-out;
        padding-bottom: 10px;
    }

    .nav li {
        transform: translateY(-282px);
        transition: all 0.5s;
        opacity: 0;
    }

    .nav.showMenu {
        transform: scaleY(1);
        box-shadow: #00000024 0 20px 20px 0px;
    }

    .nav.showMenu li {
        transform: translateY(0px);
        opacity: 1;
        margin: 0 10px;
    }

    .search-bar-holder {
        position: absolute;
        background: #ffffff;
        width: 100%;
        top: 97%;
        left: 0;
        z-index: 9;
        overflow: hidden;
        height: 0;
        transition: all 0.5s;
    }

    .showSearchBar {
        padding: 11px 27px 20px 27px;
        height: fit-content;
    }
}

/* Hide on tablet & desktop */
@media (min-width: 768px) {
    .hideAfterMob {
        display: none!important;
    }
    .mobileSearchBtn{
        display: none;
    }
    .duleToneBgInForm{
        background: linear-gradient(90deg, #E31E39 0%, #E31E39 44.23%, #FFF 44.26%, #FFF 100%);
    }
}

/* Mobile specific */
@media (max-width: 767px) {
    header .nav {
        text-align: center;
    }

    .nav-item.show {
        background: #ffffff;
    }

    .nav-item.show > a:hover {
        color: #ffffff;
    }

    .nav-item.show > a {
        color: #ffffff;
        background: #E31E39;
    }

    .nav-item.show > ul {
        position: unset;
        background: none;
        width: 100%;
        opacity: 1;
        visibility: visible;
        box-shadow: none;
        padding-top: 0;
    }
    .nav-item > ul{
        left: -120%;
    }

    .nav-item.show > ul > li a {
        font-size: 1rem;
        border-bottom: none;
    }

    .productFinderContainer {
        gap: 25px;
        padding: 0 15px;
    }

    .hideInMob {
        display: none !important;
    }

    .formDivFlow{
        position: fixed;
        background-color: white;
        top: 0;
        z-index: 999;
        height: 100vh;
        padding: 35px 25px;
        overflow: auto;
        left: 0;
        right: 0;
        bottom: 0;
        opacity: 0;
        visibility: hidden;
        transition: opacity 0.4s ease, visibility 0.4s ease;
      }
      
    .formDivFlow.show {
        display: block;
        opacity: 1;
        visibility: visible;
    }
    .formCloseBtn{
        display: block;
        position: absolute;
        right: 6.5%;
        top: 4%;
    }
    .allOtherProduct {
        width: 100%;
        overflow: auto;
    }

    .videoPlayBtnForMob{
        display: flex;
    }
    .hideInMobSS{
        display: none;
    }
    .allCardsSs .cardHolderSs{
        padding: 0 40px;
    }
    .bannerTitleSS .pageTitle{
        font-size: 2.5625rem;
    }

    .soloutionItemsUsed {
        position: unset;
        flex-direction: column;
        gap: 1.5rem;
    }
    .soloutionItemsUsed .cardSs {
        width: unset;
        min-height: fit-content;
        margin: 0 1rem;
    }
    .strightLinDiv::before {
        height: 3px;
        width: 32%;
        background-color: #E31E39;
        left: 3%;
        top: -75%;
        bottom: unset;
    }
    .strightLinDiv {
        justify-content: start;
        margin-top: 3rem;
    }
    .bannerSs {
        padding: 3rem 0 3rem 0;
        margin-bottom: 3rem;
    }
    .rowReverseInMob{
        flex-direction: row-reverse;
    }
    .rowReverseInMobForRow{
        flex-direction: column-reverse;
    }
    .searchPageLongInput > div{
        width: 100%;
    }
}
