*{
    font-family: 'Inter', sans-serif;
    margin:0; padding:0;
    box-sizing: border-box;
    outline: none; border:none;
    text-decoration: none;
    transition: .2s linear;
}

nav li a:hover {
    color: #007ed3 !important;
}

.header-title {
    font-weight: 700 !important;
}

.search-input {
    padding-left: 35px;
    background: url("https://static.thenounproject.com/png/101791-200.png") no-repeat 10px center;
    background-size: 20px;
}

.wrapper {
    box-sizing: border-box;
    line-height: 1.5;
    max-width: 960px;
    margin: 0 auto;
}

.box {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

.box label {
    color: #007ed3;
    text-align: center;
    font-weight: 500;
    order: 1;
    display: block;
    padding: 5px 30px;
    border-radius: 40px;
    margin: 4px;
    cursor: pointer;
}

.box .content {
    display: none;
    padding: 30px;
    order: 99;
    flex-grow: 1;
    width: 100%;
}

.box input[type="radio"] {
    display: none;
}

.box input[type="radio"]:checked+label {
    background: #007ed3;
    color: #fff;
}

.box input[type="radio"]:checked+label+.content {
    display: block;
}

.accordion-item {
    border: none !important;
    border-bottom: 1px solid #ddd !important;
    background-color: #fff !important;
}

.accordion-item:has(.accordion-collapse.show) {
    box-shadow: 2px 1px 5px #ddd;
    background-color: #fff !important;
    border-radius: 15px;
    overflow: hidden;
}

.accordion-item:has(.accordion-collapse.show) .accordion-header button {
    font-weight: 800;
    padding-bottom: 0 !important;
}

.accordion-item:has(.accordion-collapse.show) * {
    background-color: #fff !important;
    color: #007ed3;
}

.accordion-item * {
    background: none !important;
    appearance: none !important;
    background-color: rgb(248, 249, 250) !important;
    box-shadow: none !important;
}