.strip {
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    /* padding: 1rem 0; */
    background-color: #fe4102;
    color: white;
    padding: 10px 0;

    height: 68px;

    position: fixed;
    left: 0;
    top: 0;
    right: 0;
    transition: all 0.5s;
    z-index: 997;
}

.strip-details {
    display: flex;
    flex-direction: column;
}

.strip-phone {
    display: flex;
    margin-top: 0;
}

.strip-email {
    display: flex;
}

.strip-text {
    margin-left: 8px;
    margin-top: 0;
    margin-bottom: 0;
    font-weight: 600;
}

.icons {
    display: flex;
}

.icons div {
    margin: 0 10px;
    cursor: pointer;
    padding: 10px;
}

.icons div:hover {
    border-radius: 100px;
    background: #057fb8;
}

@media (max-width: 500px) {
    .strip {
        flex-direction: column;
        /* padding: 0.5rem; */
        height: 120px;
    }

    .strip-details {
        align-items: center;
        justify-content: center;
    }

    .icons {
        margin-top: 10px;
    }
}