.header {
    position: sticky;
    top: 0;
    z-index: 9999;
    background-color: #F4F7FA;
    -webkit-box-shadow: 0 0 34px 35px #F4F7FA;
    -moz-box-shadow: 0 0 34px 35px #F4F7FA;
    box-shadow: 0 0 34px 35px #F4F7FA;
}

.header .header-links {
    column-gap: 20px;
}

.header .header-link {
    color: #8A9097;
    position: relative;
    font-family: 'Montserrat-SemiBold';
    transition: all 500ms ease;
}

.header .header-link:hover {
    color: #8247FF;
}

.header .header-link::after {
    content: '';
    position: absolute;
    background-color: #8247FF;
    height: 1px;
    width: 0;
    bottom: 0;
    left: 0;
    transition: all 500ms ease;
}

.header .header-link:hover::after {
    width: 100%;
}

.header .header-logo img {
    height: 30px;
}

.header .login-link {
    border-radius: 20px;
    padding: 5px 15px;
    color: #8247FF !important;
    border: 1px solid #8247FF;
    transition: all 500ms ease;
}

.header .login-link:hover {
    background-color: #8247FF;
    color: #F4F7FA !important;
}

.header .login-link::after {
    display: none;
}

.header .hamburger {
    position: relative;
    top: 4px;
    height: 15px;
    width: 20px;
    cursor: pointer;
}

.header .hamburger span {
    position: absolute;
    width: 100%;
    height: 2px;
    background-color: #1F2933;
    border-radius: 1px;
    transform: translate(-50%, -50%);
    top: 50%;
    left: 50%;
    transition: all 500ms ease;
}

.header .hamburger #line-1 {
    top: 0;
    transform: translate(-50%, 0);
}

.header .hamburger #line-3 {
    top: 100%;
    transform: translate(-50%, 0);
}

.header .hamburger.active #line-1 {
    transform: translate(-50%, -50%) rotate(45deg);
    top: 50%;
}

.header .hamburger.active #line-2 {
    display: none;
}

.header .hamburger.active #line-3 {
    transform: translate(-50%, -50%) rotate(-45deg);
    top: 50%;
}

.header.mobile .header-logo img {
    height: 20px;
}

.header.mobile .header-links {
    height: calc(100vh - var(--header-height));
    width: 100vw;
    background-color: #F4F7FA;
    overflow: auto;
    position: fixed;
    top: var(--header-height);
    right: -100%;
    transform: translateX(100%);
    flex-direction: column;
    row-gap: 20px;
    transition: all 700ms ease;
}

.header.mobile .header-links.active {
    right: 0;
    transform: translateX(0);
}

.header-logo::after {
    display: none;
}

@media screen and (max-width: 1080px) {
    .header.mobile {
        display: flex;
    }
}