*{
    box-sizing: border-box;
    padding: 0;
    margin: 0;
  }       
       
:root{
/*  --FF: Helvetica, sans-serif; */
 --FF: nexaheavy;
 /*--BGCOL: rgb(241, 241, 241);*/
 --BGCOL: #F7f5EB;
 /*--FONTCOL: #333;*/
 --FONTCOL: #2f420f;
 --SHADCOL: rgb(119, 119, 119);
 --HOVBARCOL: #699222;
}
body {
    font-family: var(--FF);
    font-size: 16px;
}

.dropdown {
    width: 80%;
    margin: auto;
    font-family: var(--FF);
    margin-top: 20px;
}

.dropdown-item {
    margin-bottom: 0px;
    margin-top: -2px;
    /* border: 2px solid var(--FONTCOL); */
    border-top: 2px solid var(--FONTCOL);
    border-bottom: 2px solid var(--FONTCOL);
    border-radius: 0px;
    overflow: hidden;
}
.dropdown-header {
    font-family: var(--FF);
    /* background-color: rgb(250, 250, 245); */
    background-color: var(--BGCOL);
    color: var(--FONTCOL);
    padding: 10px;
    font-size: 24px;
    border: none;
    width: 100%;
    text-align: left;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    min-height: 80px;
}

.dropdown-icon{
    font-size: 32px;
    transition: transform 0.3s ease;
}

.dropdown-header.active .dropdown-icon{
    transform: rotate(135deg);
}

.dropdown-content {
    display: grid;
    max-height: 0;
    overflow: hidden;
    padding: 0px;
    margin: 0px;
    border: 0px;
    margin-top: -10px;
    /* background-color: #9e2929; */
    background-color: var(--BGCOL);
    transition: max-height 0.3s ease-in-out, padding 0.3s ease-in-out;
    max-width: 95%;
    margin: auto;
    color: var(--FONTCOL);
}

.dropdown-content p {
    margin: 0px 0;
    margin-right: 20px;
    margin-bottom: 20px;
}

.dropdown-content picture{
    width: 100%;
    height: auto;
    grid-column: 2;
}

@media all and (max-width: 1000px){
    .dropdown-content{
        display: block;
    }
    
}