.acordion {
    padding: 59px 0 79px 0;
    
}

.acordion__wrapper {
    display: flex;
    flex-direction: column;
}

.acordion__item {
    display: flex;
    flex-direction: column;
    gap: 34px;
}

.acordion__item__trigger {
    cursor: pointer;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    height: 132px;
    align-items: center;
    border-bottom: 2px solid #727DA399;
}

.acordion__item__trigger__info .img-wrapper {
    height: 95px;
    width: 95px;
}

.acordion__item__trigger__info .img-wrapper img {
    height: 100%;
    width: 100%;
    object-fit: cover;
}

.acordion__item__trigger__info {

    display: flex;
    align-items: center;
    gap: 16px;
    font-family: Segoe UI;
    font-weight: 700;
    font-size: 30px;
    line-height: 26px;
    letter-spacing: 1px;
    text-align: center;
    color: #1A224C;
    text-transform: uppercase;
}

.acordion__item__trigger svg {
    margin-right: 10px;
    transition: all 0.4s ease-in-out;
    transform-origin: center;
}

.acordion__item__info {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.6s ease-in-out;
    flex-wrap: wrap;
}

.acordion__item__info__value {
    display: flex;
    flex-direction: column;
    gap: 12px;
    background: #CAD1EA99;
    padding: 33px 36px;
    width: 100%;
}

.acordion__item__info__value h4 {
    font-family: Segoe UI;
    font-weight: 700;
    font-size: 24px;
    line-height: 18px;
    letter-spacing: 0px;
    text-transform: uppercase;
    color: #727DA3;
}

.acordion__item__info__value h5 {
    font-family: Segoe UI;
    font-weight: 300;
    font-size: 16px;
    line-height: 26px;
    letter-spacing: 0px;
    color: #1A224C;
}

.acordion__item.active .acordion__item__info {
    max-height: 1000px;
    transition: max-height 0.6s ease-in-out;
    margin-bottom: 34px;

}

.rotate {
    transition: all 0.4s ease-in-out;
    transform: rotate(180deg);
}

@media screen and (max-width:1024px) {
    .acordion {
        padding: 30px 0;
    }
    
    .acordion__wrapper {
        display: flex;
        flex-direction: column;
    }
    
    .acordion__item {
        display: flex;
        flex-direction: column;
        gap: 20px;
    }
    
    .acordion__item__trigger {
        height: 100px;
        align-items: center;
    }
    
    .acordion__item__trigger__info .img-wrapper {
        height: 80px;;
        width: 80px;
    }
    
    .acordion__item__trigger__info .img-wrapper img {
        /*height: 100%;*/
        height: auto;
        width: 100%;
        object-fit: cover;
    }
    
    .acordion__item__trigger__info {
    
        display: flex;
        align-items: center;
        gap: 16px;
        font-family: Segoe UI;
        font-weight: 700;
        font-size: 22px;
        line-height: 22px;
        letter-spacing: 1px;
        text-align: left;
        color: #1A224C;
        text-transform: uppercase;
    }
    
    .acordion__item__trigger svg {
        margin-right: 10px;
        transition: all 0.4s ease-in-out;
        transform-origin: center;
    }
    
    .acordion__item__info {
        display: grid;
        grid-template-columns: 1fr;
        gap: 12px;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.6s ease-in-out;
        flex-wrap: wrap;
    }
    
    .acordion__item__info__value {
        display: flex;
        flex-direction: column;
        gap: 12px;
        background: #CAD1EA99;
        padding: 20px;
        width: 100%;
    }
    
    .acordion__item__info__value h4 {
        font-family: Segoe UI;
        font-weight: 700;
        font-size: 18px;
        line-height: 18px;
        letter-spacing: 0px;
        text-transform: uppercase;
        color: #727DA3;
    }
    
    .acordion__item__info__value h5 {
        font-family: Segoe UI;
        font-weight: 300;
        font-size: 14px;
        line-height: 26px;
        letter-spacing: 0px;
        color: #1A224C;
    }
    
    .acordion__item.active .acordion__item__info {
        max-height: 1000px;
        transition: max-height 0.6s ease-in-out;
        margin-bottom: 24px;
    
    }
    
    .rotate {
        transition: all 0.4s ease-in-out;
        transform: rotate(180deg);
    }
}