.navigations{
    display: flex;
    align-items: center;
    justify-content: center;
    flex-grow: 1;
}
.navigations a:first-child{
    margin-left: 0;
}
.navigations a {
    margin-left: 22px;
    font-weight: 500;
    font-size: 14px;
    line-height: 16px;
    color: #fff;
}
.navigations a {
    padding-bottom: 2px;
    border-bottom: 2px solid transparent;
}
.navigations .sessionBtn {
    display: flex;
    align-items: center;
}
.navigations .sessionBtn {
    gap: 6px;
    cursor: pointer;
}
.navigations a:hover{
    border-bottom: 2px solid #fff;
}
.menuLink{
    border-bottom: 2px solid transparent;
}
.menuLink:hover{
    border-bottom: 2px solid #fff;
}
.menuLink.placeAnOrder{
    padding: 6px 12px;
    border: 1px solid #fff;
    border-radius: 20px;
    transition: all ease .2s;
    display: block;
}
.menuLink.placeAnOrder:hover{
    transform: scale(1.04);
}
.dropdown-content.write-dropdown {
    background: #141414;
    border: unset;
    box-sizing: border-box;
    box-shadow: unset;
    border-radius: 5px;
    padding: 18px;
    position: absolute;
    top: 143%;
    width: 100%;
    /* transition: all .2s ease; */
    display: none;
    min-width: 400px;
    overflow: auto;
}
.write-dropdown .myDropdown-ul{
    display: flex;
    flex-wrap: wrap;
    list-style: none;
    column-gap: 20px;
    justify-content: space-between;
}
.write-dropdown .myDropdown-ul,.write-dropdown .myDropdown-ul ul{
    list-style: none;
}
.write-dropdown .myDropdown-ul ul li{
    border-top: none !important;
}
.write-dropdown .myDropdown-ul ul li p{
    color: white;
    font-weight: 500;
}
.first-ul li:nth-of-type(5){
    margin-top: 10px;
}

@media (max-width: 991px) {
    .dropdownWrapper:hover .companyDropdown, .navigations {
        display: none;
    }
    .menuLink.placeAnOrder {
        max-width: 182px;
        font-size: 14px;
        width: 100%;
        height: 42px;
        outline: 0;
        padding: 2px;
        margin-left: 0px;
        text-align: center;
        font-style: normal;
        border-radius: 100px;
        border: none;
        position: relative;
        box-sizing: border-box;
        background-size: 400%;
        z-index: 1;
        
        display: flex;
        align-items: center;
        justify-content: center;    
        line-height: 20px;
        cursor: pointer;
        color: #0f172a;
        font-weight: 400;
    }
    .menuLink.placeAnOrder:before {
    content: "";
    position: absolute;
    top: -5px;
    right: -5px;
    bottom: -5px;
    left: -5px;
    z-index: -1;
    background-size: 400%;
    border-radius: 6px;
    opacity: 0;
    transition: 0.5s;
    border-radius: 100px;
}
.menuLink.placeAnOrder, .menuLink.placeAnOrder:before {
    background: linear-gradient(90deg, #ff8906, #9ce2a7, #ffeb3b, #ff8906);
    animation: 10s linear infinite animate;
    background-size: 400% 100%;
}
@keyframes animate {
    0% {
        background-position: 0% 0%;
    }
    100% {
        background-position: 400% 0%;
    }
        
    }

}
@media (max-width: 767px) {
    .menuLink.placeAnOrder{
        margin: 0 auto;
    }
}