.head-text{
    margin-bottom: 24px;
    width: 100%;
}

.head-text .montserrat-800{
    margin-bottom: 20px;
}

.head-text .montserrat-400{
    margin-bottom: 20px;
}

.head-text-p {
    display: block;
}

.head-text-button{
    display: none;
}

.desktop-button {
    display: block;
}

.culture-list-lines{
    display: flex;
    flex-direction: column;
}

.line-card{
    background-color: var(--color-primary);
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.5s;
}

.line-card:hover{
    background-color: var(--color-green-hover);
}

.line-card .title {
    font-family: "Montserrat Bold", sans-serif;
}

.line-card p{
    padding: 16px;
    color: var(--color-white);
}

.line-card .link{
    text-decoration: none;
    background: var(--color-backgroud-gray);
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-radius: 0px 0px 8px 8px;
    transition: all 0.3s;
}

.line-card .link p{
    color: var(--color-dark);
    padding: 8px 16px;
    text-decoration: none;
}

.line-card .link .image{
    padding: 8px;
    background: var(--color-header-hover);
    border-radius: 0px 0px 8px 0px;
  
}

.line-card:hover .link .image{
    background: var(--color-orange-hover);
}

.line-card .link .image img{
    transform: rotate(90deg);
    transition: all 0.5s;
}

.line-card .link .image img.active{
    transform: rotate(270deg);
}

.list-solutions-line{
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin-top: 16px;
    overflow: hidden;
    max-height: 0;
    transition: ease max-height 0.8s
}

.list-solutions-line.active{
    max-height: 5000px;
    margin-bottom: 16px;
    overflow:inherit;
}

.culture-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
}

@media screen and (max-width: 767px) {
    .line-card .title {
        font-family: "Montserrat Regular", sans-serif;
    }

    .head-text-button {
        display: flex;
        justify-content: space-between;
    }
    .head-text-button .montserrat-400 {
        max-width: 200px;
    }

    .head-text-button .button {
        width: 130px;
    }

    .desktop-button {
        display: none;
    }

    .head-text-p{
        display: none;
    }

}



