@media screen and (min-width: 660px) {
    main.home .box3 .cards {
        flex-direction: row;
    }
    main.home .box2 .cards {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
    }
}
@media screen and (min-width: 900px) {
    main.home .box2 .cards {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
    }
}

.top-menu .top-menu__links {
    display: none;
}

.top-menu__linksM .hamburger {
    width: 40px;
    height: 40px;
    background: white;
    mask-image: url(/static/imgs/line.3.horizontal.png);
    mask-repeat: no-repeat;
    mask-size: contain;
    mask-position: center;
}
.top-menu__linksM .top-menu__linksMBox {
    display: flex;
    opacity: 0;
    flex-direction: column;
    position: fixed;
    top: 0px;
    left: 0px;
    bottom: 0px;
    right: 0px;
    padding: 50px;
    background: rgba(28, 28, 30, 0.75);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    z-index: 999999;
    pointer-events: none;
    transition: 0.5s;
}
.top-menu__linksM .top-menu__linksMBox.opened {
    opacity: 1;
    pointer-events: auto;
}
.top-menu__linksM .top-menu__linksMBox a {
    color: white;
    text-decoration: none;
    display: flex;
    flex-direction: row;
    gap: 10px;
    align-items: center;
    height: 50px;
    border-bottom: 1px solid rgba(255, 255, 255, .25)
}
.top-menu__linksM .top-menu__linksMBox a:last-child {
    border-bottom: none;
}
.top-menu__linksM .top-menu__linksMBox .topBox {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;
}
.top-menu__linksM .top-menu__linksMBox .topBox .closeButton {
    width: 40px;
    height: 40px;
    background: white;
    mask-image: url(/static/imgs/xmark.png);
    mask-repeat: no-repeat;
    mask-size: 50%;
    mask-position: center;
    margin-right: -10px;
}

@media screen and (min-width: 800px) {
    .top-menu .top-menu__links {
        display: flex;
        flex-direction: row;
    }
    .top-menu .top-menu__linksM {
        display: none;
    }
    .content.developers .devs {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
}

.content.one-tap {
    display: flex;
    flex-direction: column;
    gap: 50px;
    align-items: center;
    justify-content: center;
    position: absolute;
    height: 100%;
    max-width: none;
    width: 100%;
}
main.home .box3 .cards .card {
    margin-bottom: auto;
}