.acordions-section {
    box-shadow: 0px 13px 20.2px 0px #00000040 inset;
    background: #F3F2F4;
}

.acordions-section-wrapper {
    padding: 100px 0;
    display: flex;
    flex-direction: column;
    gap: 31px;
    justify-content: center;
}

.acordions-section-wrapper h2 {
    font-family: Myriad Pro;
    font-size: 35px;
    font-weight: 700;
    line-height: 42px;
    text-align: center;
    color: #1B204C;
    text-transform: uppercase;
}

.acordion-item {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    padding: 0 18px;
    align-items: center;
    background: #E7E6EE;
    height: 60px;
    font-family: Myriad Pro;
    font-size: 20px;
    font-weight: 600;
    line-height: 24px;
    text-align: left;
    border-left: 1px solid #1B204C;
    color: #1B204C;
    cursor: pointer;
}
.acordion-item svg{
    transition: trnsform 0.4s ease-in-out;
}

.acordions-section-wrapper .panel {
    padding: 0 18px;
    background: #E7E6EE;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.2s ease-out;
    font-family: Myriad Pro;
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
    text-align: left;
    color: #1B204C;
    border-left: 1px solid #1B204C;
}
.acordions-section-wrapper .panel p{
    padding: 12px 0;
}

.acordions-all {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 32px;
}

.acordions-all .one-item {
    width: calc(50% - 16px);
}

@media screen and (max-width:1024px) {
    .acordions-section {

        background: #F3F2F4;
    }
    
    .acordions-section-wrapper {
        padding: 40px 0;
        display: flex;
        flex-direction: column;
        gap: 20px;
        justify-content: center;
    }
    
    .acordions-section-wrapper h2 {
        font-family: Myriad Pro;
        font-size: 25px;
        font-weight: 700;
        line-height: 30px;
        text-align: center;
        color: #1B204C;
        text-transform: uppercase;
    }
    
    .acordion-item {
        display: flex;
        flex-direction: row;
        justify-content: space-between;
        padding: 0 18px;
        align-items: center;
        background: #E7E6EE;
        height: 60px;
        font-family: Myriad Pro;
        font-size: 18px;
        font-weight: 600;
        line-height: 24px;
        text-align: left;
        border-left: 1px solid #1B204C;
        color: #1B204C;
        cursor: pointer;
    }
    
    .acordions-section-wrapper .panel {
        padding: 0 18px;
        background: #E7E6EE;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.2s ease-out;
        font-family: Myriad Pro;
        font-size: 16px;
        font-weight: 400;
        line-height: 24px;
        text-align: left;
        color: #1B204C;
    }
    .acordions-section-wrapper .panel p{
        padding: 12px 0;
    }
    
    .acordions-all {
        display: flex;
        flex-direction: row;
        align-items: center;
        flex-wrap: wrap;
        justify-content: center;
        gap: 20px;
    }
    
    .acordions-all .one-item {
        width: calc(100% - 40px);
    }
}
.rotate{
    transform: rotate(180deg);
    transition: transform 0.4s ease-in-out;
}