.header {
    background-color: #ffffff;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 5%;
    width: 100%;
    position: fixed;
    top: 0;
    z-index: 99999;
    height: 100px;
    box-shadow:
        rgba(17, 17, 26, 0.1) 0px 4px 16px,
        rgba(17, 17, 26, 0.1) 0px 8px 24px,
        rgba(17, 17, 26, 0.1) 0px 16px 56px;
}
.logo {
    text-decoration: none;
    -webkit-user-select: none;
    user-select: none;
    cursor: pointer;
}
.logo .logo-img {
    height: 100px;
}
.apply-btn {
    background-color: #281385;
    font-family: "Barlow", sans-serif;
    height: 50px;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 209px;
    font-size: 18px;
    font-weight: 700;
    border-radius: 50px;
    text-decoration: none;
    text-transform: uppercase;
    text-decoration: none;
    -webkit-user-select: none;
    user-select: none;
    transition: background-color 0.3s ease;
}
.apply-btn:hover {
    opacity: 0.9;
}

@media (max-width: 1080px) {
    .header {
        padding: 0 2.5%;
        height: 80px;
    }
    .logo .logo-img {
        height: 80px;
    }
    .apply-btn {
        height: 45px;
        width: 160px;
    }
}

@media (max-width: 500px) {
    .apply-btn {
        display: none;
    }
}
