.rev-top-header {
    padding: 8px 0;
    background-color: #0c0c0c;
    color: #ffffff;
    position: relative;
    border-top: 1px solid #1e1e1e;
    border-bottom: 1px solid #1e1e1e;
}

.rev-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

.rev-top-header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.rev-welcome-text {
    font-size: 14px;
    font-weight: 400;
}

.rev-social-icons {
    display: flex;
    align-items: center;
}

.rev-social-icons .follow-text {
    margin-right: 15px;
    font-size: 14px;
    position: relative;
    padding-left: 15px;
}

.rev-social-icons .follow-text::before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 10px;
    height: 1px;
    background-color: #fff;
}

.rev-social-icons a {
    color: inherit;
    text-decoration: none;
    font-size: 14px;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0 15px;
    height: 28px;
    border-left: 1px solid #1e1e1e;
}

.rev-social-icons a:last-child {
    border-right: 1px solid #1e1e1e;
}

.rev-social-icons a:hover {
    opacity: 0.8;
    background-color: rgba(255, 255, 255, 0.05);
}

@media (max-width: 767px) {
    .rev-top-header-content {
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }

    .rev-social-icons .follow-text {
        padding-left: 0;
    }

    .rev-social-icons .follow-text::before {
        display: none;
    }

    .rev-social-icons a {
        border: none;
        padding: 0 10px;
    }

    .rev-social-icons a:last-child {
        border: none;
    }
}