a {
    text-decoration: none;
    color: inherit;
}

.header {
    background: #fff;
    border-bottom: 1px solid #BFBFBF;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 25px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 106px;
}

.header-logo {
    width: 170px;
    height: 45px;
    display: block;
}

.header-logo-container {
    transition: transform 300ms ease;
    display: inline-block;
}

.header-logo-container:hover {
    transform: scale(1.03);
}

.header-btn {
    background: #02B0F4;
    border: 1px solid #00A1E0;
    border-radius: 15px;
    padding: 15px 20px;
    display: flex;
    align-items: center;
    transition: all 300ms ease;
    cursor: pointer;
    border: none;
    outline: none;
}

.header-btn:focus {
    outline: 2px solid #02B0F4;
    outline-offset: 2px;
}

.header-btn-icon {
    width: 32px;
    height: 32px;
    margin-right: 15px;
}

.header-btn-text {
    font-family: "Unbounded", sans-serif;
    font-weight: 500;
    font-size: 14px;
    color: #fff;
}

.header-btn:hover {
    transform: scale(1.03);
    background: #00A1E0;
}