:root {
    --light-black-background-color: #E6E6EB;
    --light-black-color: rgba(0, 0, 0, 0.5);
}

* {
    font-family: 'Lora', serif !important;
}
header {
    height: 60px;
    background: transparent;
}

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

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

header .container > a {
    display: grid;
    place-items: center;
}

header .container > a img {
    height: auto;
    width: 220px;
    margin-left: -50px;
    margin-top: 2.5rem;
}
.desktopBG {
    position: relative;
}

.desktopBG::before {
    content: "";
    position: fixed;
    background: url("/img/desktop-background.png");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: -1;
    opacity: 0.1;
}

.wp-2-wrapper h1 {
    text-align: center;
    font-size: 50px;
    margin-bottom: 40px;
}
.wp-2-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    height: 80vh;
    padding: 0 24px;
    position: relative;
}
.term {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-direction: column;
    margin-bottom: 3rem;
}

.term > ul {
    display: flex;
    align-items: center;
    gap: 10px;
}

.term > ul > li {
    list-style: none;
}

.term > ul > li > a {
    color: var(--light-black-color);
    font-size: 0.85rem;
    line-height: 1rem;
    font-weight: 400;
    text-decoration-line: underline;
    position: relative;
}

.term > ul > li:first-child{
    position: relative;
}

.term > ul > li:first-child::after {
    content: "";
    position: absolute;
    top: 14px;
    right: -5px;
    transform: translateY(-50%);
    width: 1px;
    height: 8px;
    background: var(--light-black-color);
}


.term > a {
    background: var(--light-black-background-color) !important;
    border: none;
    color: var(--light-black-color) !important;
    font-weight: 300;
    cursor: pointer;
    width: 200px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1px;
    padding: 0.625rem 0.75rem;
    border-radius: 7px;
    font-size: 0.875rem;
    line-height: 1.25rem;
    text-decoration: none;
}

.term > a > img {
    height: 20px;
    width: auto;
    margin-top: -3px;
}

@media only screen and (max-width: 768px) {
    header .container > a img {
        height: 30px;
        width: auto;
        margin-top: 10px;
        margin-left: 1px!important;
    }

    .wp-2-wrapper .step-icon {
        position: absolute;
        top: 0;
    }
}

