.instructions-container {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: space-between;
    width: 100%;
}
@media (max-width: 950px) {
    .instructions-container {
        justify-content: center;
    }
    .advantages-container {
        gap: 2em;
    }
}
.instructions-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 1rem;
    width: 290px;;
    height: 250px;
    padding: 1em;
    border-radius: 10px;
    background-color: var(--light-color);
    border: 8px solid var(--dark-color);
}

.instr-a {
    color: chocolate;
}

.txt-inst {
    font-size: 16px;
    display: block;
}
.number-inst {
    color: var(--dark-color);
    font-weight: bold;
    font-size: 24px;
}

.icons-instructions {
    width: 80px;
    border-radius: 10px;
}
.devices-advantages {
    padding-top: 2em;
    padding-bottom: 2em;
}
.ul-devices-block li {
    font-size: clamp(16px, 2vw, 18px);
    padding-bottom: 16px;
    margin-left: 24px;
    padding-left: 10px;

}
.windows-tlg-container {
    flex-direction: row-reverse;
}

@media (max-width: 768px) {
    .windows-tlg-container {
        flex-direction: column-reverse;
    }
}
.advantages-container h2 {
    text-align: center;
    margin-bottom: 1em;
}
.adv-devices {
    display: flex;
    flex-direction: column;
}
.typewriter-3 {
    font-family: 'Roboto Mono', monospace;
    color: var(--light-color);
    display: inline-block;
    font-size: clamp(36px, 4vw, 62px);
}
.title-logo-3 {
    max-width: 250px;
}
@media (max-width: 500px) {
    .title-logo-3 {
        width: 50px;
    }
}

/*Блок с кнопками устройств на телефоны*/
.block-mobile-oc {
    display: flex;
    gap: 3em;
    justify-content: center;
}
.block-mobile-oc a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 30%;
    min-width: 135px;
    gap: 8px;
    padding: 1em;
    font-size: clamp(20px, 2vw, 38px);
    font-weight: bold;
    border-radius: 8px;
    background-color: var(--dark-txt-color);
    color: var(--light-color);
    cursor: pointer;
    text-decoration: none;
    transition: all 0.3s ease;
}
.block-mobile-oc a:hover {
    box-shadow: 5px 9px 10px #818181;
    transform: translateY(-1px);
}
.block-mobile-oc svg {
    fill: var(--light-color);
    width: clamp(30px, 3vw, 60px);
    height: clamp(30px, 3vw, 60px);
}
@media (max-width: 600px) {
    .block-mobile-oc {
        gap: 2em;
        flex-direction: column;
    }
    .block-mobile-oc a {
        width: 100%;
    }
}