/* Стрелки */
.hero-navigation .arrow {
    background: rgba(255, 255, 255, 0.0);
    color: rgba(255, 255, 255, 0.75);
    font-size: 30px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    text-decoration: none;
    transition: 0.3s;
    z-index: 1000;
}

.hero-navigation .arrow:hover {
    background: rgba(255, 255, 255, 0.0);
    color: rgba(210, 210, 210, 0.5);
}

/* Круглые кнопки */
.buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-direction: row;
    font-family: "Roboto", sans-serif;
    font-weight: bold;
}

.buttons a {
    z-index: 12;
}

.btn {
    position: relative;
    display: inline-block;
    /*display: block;*/

    padding: 1.0rem 2.3rem;
    font-size: 20px;
    text-decoration: none;
    border-radius: 24px;
    transition: 0.3s;
    text-align: center;
    white-space: nowrap;
    width: fit-content;
    z-index: 11;
    background-color: var(--color-primary);
    color: white;
}

.btn.primary {
    background: linear-gradient(135deg, #ff416c, #ff6b1a);
    /*background: linear-gradient(to right, #34bfff, #0042bd);*/
    color: white;
    /*border: 3px solid #0141b7;*/
}

.btn.primary:hover {
    background: linear-gradient(135deg, #ff6b1a, #ff416c);
    /*background: linear-gradient(to right, #00a6ff, #004ad3);*/
    color: white;
}

.btn.secondary {
    background: linear-gradient(135deg, #6a11cb, #2575fc);
    color: white;
    /*border: 3px solid #0141b7;*/
}

.btn.secondary:hover {
    /*background: linear-gradient(to right, #34bfff, #0042bd);*/
    background: linear-gradient(135deg, #2575fc, #6a11cb);
    color: white;
}

@media (max-width: 960px) and (orientation: portrait) {
    .buttons {
        display: flex;
        gap: 15px;
        justify-content: center;
        flex-direction: column;
        font-family: "Roboto", sans-serif;
        font-weight: bold;
    }

    .btn {
        position: relative;
        display: flex;
        padding: 1.0rem 2.3rem;
        font-size: 20px;
        text-decoration: none;
        border-radius: 24px;
        transition: 0.3s;
        text-align: center;
        justify-content: center;
        width: 220px;
        min-width: 120px;
        max-width: 220px;
        z-index: 11;
        background-color: var(--color-primary);
        color: white;
        margin: auto;
    }

    .hero-navigation .arrow {
        background: rgba(255, 255, 255, 0.0);
        color: rgba(255, 255, 255, 0.75);
        font-size: 30px;
        width: 50px;
        height: 50px;
        border-radius: 50%;
        display: flex;
        justify-content: center;
        align-items: center;
        text-decoration: none;
        transition: 0.3s;
        z-index: 1000;
    }
}
