.collections_title {
    margin-top: 0;
    margin-bottom: 15px;
    font-size: 20pt;
    font-family: "Vollda", sans-serif;
    color: var(--text-color-primary)
}

.collections {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}

.card {
    width: 23%;
    display: flex;
    flex-direction: column;
    text-align: center;
    text-decoration: none;
    color: var(--text-color-primary);
    transition: transform 0.2s;
}

.card img {
    width: 100%;
    border-radius: 8px;
}

.card p {
    margin-top: 10px;
    font-weight: bold;
    font-size: 14pt;
}

.card:hover {
    transform: scale(1.05);
    color: var(--color-highlight);
}

.contact_icons {
    margin-top: 0;
    margin-left: 175px;
    display: flex;
    gap: 5px;
}

.contact_item {
    display: flex;
    align-items: center;
    gap: 4px;
    padding: 6px 8px;
    border: 1px solid #ddd;
    border-radius: 12px;
    text-decoration: none;
    background: #fff;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    transition: transform 0.2s, box-shadow 0.2s;
}

.contact_item img {
    width: 24px;
    height: 24px;
}

.contact_item span {
    font-size: 14px;
    color: var(--text-color-primary);
    font-weight: 500;
}

.contact_item:hover {
    transform: scale(1.08);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
}

.video_slide {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 9; /* фиксируем соотношение */
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
}

.video_slide video {
    width: 100%;
    height: 100%;
    object-fit: cover; /* сохраняет пропорции, заполняя весь контейнер */
    border-radius: 12px;
    transition: transform 0.4s ease, opacity 0.4s ease;
}

#company_name {
    font-size: 18pt;
}

#about_p {
    font-size: 16pt;
    margin-bottom: 0;
}

#tel_p {
    font-size: 16pt;
    margin-top: 0;
    display: flex;
    flex-direction: row;
    align-items: center;
    margin-bottom: 10px;
}

#tel_link {
    color: var(--text-color-primary);
    font-size: 17.5pt;
    text-decoration: none;
    padding: 6px 8px;
    margin-left: 10px;
    border: 1px solid #ddd;
    border-radius: 12px;
    background: #fff;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
    /*transition: transform 0.2s, box-shadow 0.2s;*/
}

#tel_link:hover {
    /*transform: scale(1.08);*/
    /*box-shadow: 0 4px 10px rgba(0,0,0,0.15);*/
    transition: var(--default-time)
}

.discount {
    margin-top: -5%;
    color: var(--text-color-discount);
    font-weight: bold;
    white-space: nowrap;
}

@media (min-width: 1920px) {
    #company_name {
        font-size: 24pt;
    }

    #about_p {
        font-size: 20pt;
        margin-bottom: 0;
    }

    #tel_p {
        font-size: 20pt;
    }

    #tel_link {
        font-size: 20pt;
    }

    .contact_item span {
        font-size: 13pt;
    }

    .contact_icons {
        margin-left: 202px;
    }
}