.download {
}
.download h2,
.download p {
    text-align: center;
}

.download__slider > div {
    /* display: flex; */
    /* flex-direction: row; */
    /* gap: 12px; */
    /* justify-content: center; */
    align-items: stretch;
}
.download__slider > div > * {
    height: unset !important;
    max-width: 325px;
}

.download__links > div:first-child {
    display: flex;
    flex-direction: row;
    align-items: stretch;
    gap: 40px;
    /* justify-content: center; */
    flex-wrap: wrap;
}
.download__links a {
    flex: 1 1 48%;
    max-width: 215px;

    transition: all 0.4s cubic-bezier(0.075, 0.82, 0.165, 1);
}
.download__links a:hover {
    scale: 1.1;
}
.download__links img {
    object-fit: contain;
}
.download__main {
    display: flex;
    flex-direction: row;
    gap: 24px;
}
.download__main > div {
}
.download__main > div:first-child {
    flex: 1 1 70%;
}
.download__main > div:last-child {
    flex: 1 1 32.5%;
}
.donwload__qr_mobile img,
.donwload__qr_desctop img {
    border-radius: var(--bradMed);
    overflow: hidden;
}
.download__main > div:first-child * {
    text-align: left;
}
.donwload__qr_desctop {
    display: block;
}
.donwload__qr_mobile {
    display: none;
}
@media (max-width: 768px) {
    .donwload__qr_desctop {
        display: none;
    }
    .donwload__qr_mobile {
        display: block;
    }
    .download__links {
        display: flex;
        flex-direction: row-reverse;
        justify-content: space-between;
        gap: 12px;
        align-items: center;
    }
    .download__links > div:first-child {
        flex-direction: column;
        flex-wrap: nowrap;
        gap: 24px;
    }
    .download__links > a {
        display: inline-block;
    }

    .download__slider > div > * {
        height: unset !important;
        max-width: 250px;
    }
}
