.contacts__wrapper {
    display: flex;
    flex-direction: column;
    gap: 80px;
    margin-top: 40px;
}

.description__btn {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 35px;
    text-align: left;
    width: 100%;
    padding: 0;
}

.description__arrow {
    min-width: max-content;
    display: none;
}

.description {
    margin-top: 40px;
    max-height: 1000px;
    opacity: 1;
    transition:
        max-height 0.5s ease,
        opacity 0.5s ease;
}

.contact__list {
    margin-top: 20px;
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.contact-card {
    width: 305px;
    position: relative;
}

.contact-card__img {
    height: 200px;
    width: 100%;
    object-fit: cover;
    object-position: top;
}

.contact-card__content {
    margin-top: 8px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    padding: 8px;
}

.contact-card__item {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.contact-card__wpp {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 12px;
    padding: 11px 13px;
    border: 1px solid #61d66a;
    background: white;
    transition: all 0.2s ease-in-out;
}
.contact-card__wpp:hover {
    background: #61d66a;
}

@media (max-width: 1439px) {
    .description {
        margin-top: 12px;
        overflow: hidden;
    }
    .description__arrow {
        display: block;
    }
    .hide {
        max-height: 0 !important;
        opacity: 0 !important;
        transition:
            max-height 0.5s ease,
            opacity 0.5s ease;
    }
    .contact__list {
        margin-top: 12px;
        column-gap: 20px;
        row-gap: 40px;
    }
    .contact-card {
        width: 343px;
    }
    .contact-card__wpp {
        border-radius: 12px;
        position: absolute;
        top: 136px;
        right: 8px;
    }
    .contact-card__wpp-text {
        display: none;
    }
}
