.contact::before {
    content: "";
    min-height: 400px;

    background-color: var(--secondary-color);
    padding-top: 50px;

    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    z-index: -1;
}

.contact {
    z-index: 1;
    position: relative;
    padding-top: 100px;
    padding-bottom: 0;
}

.contact .container {
    padding: 100px 0;
    background: rgba(255, 255, 255, 0.43);
    backdrop-filter: blur(17.5px);
}

.contact .title {
    font-style: normal;
    font-weight: 400;
    font-size: 55px;
    line-height: 65px;

    /* or 118% */

    color: #32464F;


    /* Inside auto layout */
    flex: none;
    order: 0;
    flex-grow: 0;
    text-align: center;
}

.contact .accordion {
    padding: 0 50px;
}

.text-black {
    color: #000;
}

@media (max-width: 408px) {
    .contact .accordion {
        padding: 0 10px;
    }
    .contact .title {
        font-weight: 400;
        font-size: 30px;
        line-height: 35px;
    
        /* or 118% */
    
        color: #32464F;
    
    
        /* Inside auto layout */
        flex: none;
        order: 0;
        flex-grow: 0;
        text-align: center;
    }
  }
