@import url('https://fonts.googleapis.com/css2?family=Monoton&display=swap');


h1#heading_hero {
    font-size: 35px;
    color: black;
}

.hero_content {
    background: rgba(0, 0, 0, 0.05)
}
body:has(.switch__input:checked) .hero_content {
    background: rgba(0, 0, 0, 0.4)
}
body:has(.switch__input:checked) #header_furtherinfo a,
body:has(.switch__input:checked) h1#heading_hero {
    color: white;
}
.grid {
    display: grid;
    grid-template-rows: repeat(5, 1fr);
    grid-template-columns: repeat(2, 7fr);
    gap: 15px;
}
.list {
    display: flex;
    flex-direction: column;

}

.half_container.box,
.grid .box {
    border: 1px solid black;
    border-radius: 15px;
    padding: 5px 15px;
}
.list .box {
    border: 0;
    border-bottom: 1px solid black;
    border-radius: 0;
}

#order_heading {
    text-decoration: underline;
}

p {
    margin: 0;
    font-size: 14px;
    font-weight: 600;
    color: gray;
}
p span {
    color: black;
}


option {
    font-size: 15px;
}


.login_screen {
    background-image: url(https://images.unsplash.com/photo-1501167786227-4cba60f6d58f?ixlib=rb-1.2.1&q=80&cs=tinysrgb&fm=jpg&crop=entropy&w=3600);
    /* top: 0; */
}


.earnings_calculator {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    border: 0px solid #dbdbdb;
    box-shadow: 0 0 15px #dbdbdb;
    border-radius: 15px;
    margin: 0 15px;
    padding: 0;
    overflow: hidden;
    border-radius: 10px;
}
body:has(.switch__input:checked) .earnings_calculator {
    box-shadow: 0 0 15px #72727e;
}

.increaseNumberButton {
    display: flex;
    justify-content: center;
    align-items: center;
    
    border: 0;
    border-radius: 50%;
    width: 35px;
    cursor: pointer;
    aspect-ratio: 1;
    background: transparent;
    color: black;
    transition: all 150ms ease-in;
}
body:has(.switch__input:checked) .increaseNumberButton {
    color: white;
}
.increaseNumberButton:hover {
    background: #dbdbdb;
}
body:has(.switch__input:checked) .increaseNumberButton:hover {
    background: #72727e;
}

.services__ {
    margin-top: 50px;
    width: 80vw;
}
.services__ ul {
    list-style: none;
    display: grid;
    justify-items: center;
    grid-template-columns: repeat(2, 50%);
    gap: 15px;
    padding-left: 0;
    width: 100%;
}
.services__ ul li {
    padding: 5px 10px;
    border: 1px solid #dbdbdb;
    border-radius: 15px;
    width: 350px;
}
.services__ ul li .services_data {
    text-decoration: underline;
}


ol#progression-levels {
    padding-left: 120px;
    margin-top: 150px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
}
ol#progression-levels li::marker {
    font-family: 'Monoton';
    font-size: 25rem;
    width: 150px;
}
ol#progression-levels > div {
    display: flex;
    
    width: calc(100vw - 40rem);
    height: 50vh;
    margin-bottom: 50px;
    padding: 15px;

    border: 1px solid #dbdbdb;
    border-radius: 40px;
}
ol#progression-levels > div:hover {
    background: rgb(25,103,38);
    background: linear-gradient(310deg, #021336 25%, transparent 100%);
    box-shadow: 0 0 15px #dbdbdb;
    cursor: pointer;
}
ol#progression-levels > div > li {
    width: 100%;

    padding-left: 50px;
}

ol#progression-levels ul {
    list-style: none;
}