
/* ================= HEADER ================= */
.header-section {
    width: 100%;
    height: auto;
}
.logo-bar{
    display: flex;
    align-items: center;
    gap: 30px;
}
.loop-header {
    position: fixed;
    top: 0;
    left: 0;
    height: 70px;
    width: 100%;
    margin: auto;
    /* gap: 20px; */
    padding: 5px 50px;
    background-color: #ffffff;
    box-shadow: 0 4px 10px rgb(182 182 182 / 15%);
    z-index: 999999;
}
.nav{
    display: flex;
    align-items: center;
    justify-content: space-between;
}


/* ================= LOGO ================= */
.loop-logo {
    width: 80px;
    height: auto;
}

.loop-logo img {
    width: 100%;
    height: auto;
    object-fit: cover;
}

.loop-search form {
    display: flex;
    /* gap: 10px; */
    align-items: center;
    border-radius: 30px;
    border: 2px solid #0bbcd6;
    overflow: hidden;
}

.loop-search input {
    width: 400px;
    height: 40px;
    padding: 10px 20px;
    font-weight: 500;
    outline: none;
    border: none;
    background: none;
    font-size: 15px;
    transition: 0.3s;

}

.loop-search input::placeholder {
    color: #adadad;
    font-size: 14px;
}

.loop-search .search-btn {
    padding: 0 20px;
    border: none;
    outline: none;
    background: none;
    cursor: pointer;
    transition: 0.4s all ease;
}
.loop-search .search-btn i{
    color: #0bbcd6;
}
.loop-search .search-btn i:hover {
    color: #0a525e;
    transition: 0.4s all ease;
}

.loop-search:focus {
    border-color: #0bbcd6;
    box-shadow: 0 0 0 3px rgba(11, 188, 214, 0.15);
}

.search-icon-m-menu {
    display: none;
    font-size: 20px;
    color: #0bbcd6;
    cursor: pointer;
}

/* ================= NAV ================= */
.loop-nav {
    display: flex;
    align-items: center;
    gap: 50px;
    list-style: none;
    height: 100%;
    text-transform: uppercase;
}

.loop-nav .loop-nav-li {

    font-size: 14px;
    transition: 0.3s;
}

.loop-nav .loop-nav-li a {
    color: #333;
    text-decoration: none;
    font-weight: 600;
    transition: 0.3s;

}

.loop-nav .loop-nav-li a:hover {
    color: #0bbcd6;
    text-shadow: 1px 1px 10px #fff, 1px 1px 30px #0bbcd6;
}

.loop-nav .loop-nav-li.active a {
    color: #0bbcd6;
    font-weight: 700;
}

.humberger-ic {
    font-size: 24px;
    color: #0bbcd6;
    cursor: pointer;
    overflow: hidden;
    transition: var(--transition);
    width: 23px;
    display: none;
}

/* ================= BUTTONS ================= */
.loop-actions {
    display: flex;
    align-items: center;
    gap: 15px;
    text-decoration: none;
    margin: 0 !important;
    padding: 0 !important;
}
.loop-logged-in{
    display: flex;
    align-items: center;
    gap: 8px;
    background: transparent;
    /* width: 130px; */
    height: 40px;
    justify-content: center;
    border: none;
    color: #0bbcd6;
    text-decoration: none;
    font-weight: 600;
    font-size: 15px;
    cursor: pointer;
}
.loop-signin {
    position: relative;
    display: flex;
    align-items: center;
    gap: 8px;
    background: transparent;
    width: 130px;
    height: 40px;
    justify-content: center;
    border-radius: 30px;
    background: var(--background-linear-gradient);
    background-clip: text;
    border: 2px solid #04cce7;
    color: transparent;
    text-decoration: none;
    font-weight: 800;
    letter-spacing: 1.5px;
    font-size: 15px;
    transition: 0.3s;
    overflow: hidden;
    z-index: 1;
    cursor: pointer;

}

.loop-signin::before {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 0%;
    background: #0bbcd6;
    z-index: -1;
    transition: height 0.3s ease;
}

.loop-signin:hover::before {
    height: 100%;
}

.loop-signin:hover {
    color: #fff;
}

.loop-subscribe {
    position: relative;
    width: 130px;
    height: 40px;
    font-size: 15px;
    font-weight: 600;
    color: #fff;
    border-radius: 50px;
    background: linear-gradient(331deg, #0bbcd6, #FC1CB2);
    border: none;
    cursor: pointer;
    z-index: 1;
    overflow: hidden;

}

.loop-subscribe::before {
    content: "";
    position: absolute;
    inset: -3px;
    background: linear-gradient(90deg,
            #fff,
            #FC1CB2,
            #4facfe,
            #ffffff,
            #0bbcd6);
    background-size: 300% 300%;
    border-radius: 50px;
    z-index: -1;
    animation: somnath-border-move 4s linear infinite;
}

.loop-subscribe::after {
    content: "";
    position: absolute;
    inset: 2px;
    background: linear-gradient(331deg, #0bbcd6, #FC1CB2);
    border-radius: 50px;
    z-index: -1;
}

@keyframes somnath-border-move {
    0% {
        background-position: 0% 50%;
    }

    100% {
        background-position: 300% 50%;
    }
}

.loop-actions .search-icon-m-menu a{
    font-size: 20px;
    color: #0bbcd6;
    cursor: pointer;
}

