.scanner {
    font-weight: 200;
    font-size: 18px;
    color: #fff;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
}

.tech .scanner {
    display: flex;
    flex-direction: column;
}

.scanner h2 {
    font-size: 24px;
    font-weight: 500;
    line-height: 1.1;
    color: #fff;
    text-align: left;
    width: 100%;
}

.scanner svg {
    display: none;
}

.pod {
    color: #fff;
    text-decoration: none;
    font-size: 24px;
}

.pod:hover {
    color: #0360d9;
}

.all2 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
}

.all2 .all-box {
    width: 100%;
    height: auto;
    background-color: #1d2637;
    border-radius: 40px;
    margin-top: auto;
    padding-bottom: 24px;
    margin-bottom: 48px;
}

.all2 .all-box img {
    margin-top: -48px;
    width: calc(100% - 48px);
    height: auto;
    border-radius: 40px;
    display: block;
    margin-left: auto;
    margin-right: auto;
    aspect-ratio: 1/1;
    object-fit: cover;
}

.all3 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 60px;
    margin-top: 60px;
}

.all3 .all-box {
    width: 100%;
    height: auto;
    background-color: rgb(23, 32, 49);
    border-radius: 40px;
    margin-top: auto;
    padding-bottom: 24px;
}

.all3 .all-box img {
    margin-top: -48px;
    width: calc(100% - 48px);
    height: auto;
    border-radius: 40px;
    display: block;
    margin-left: auto;
    margin-right: auto;
    aspect-ratio: 1/1;
    object-fit: cover;
}

@media only screen and (min-width: 768px) {
    .scanner {
        font-size: 20px;
        width: 66.6666666667%;
    }

    .scanner #scanner {
        width: 39%;
    }
    .scanner .description-mirror {
        width: 55%;
        text-align: right;
    }

    .scanner svg {
        width: 100px;
        height: 100px;
        display: block;
        transform: translate(-50%, -50%) rotate(45deg);
        position: absolute;
        top: 185%;
        left: 50%;
        z-index: 2;
    }

    .all3 {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
        padding-left: 2%;
        padding-right: 2%;
    }

    .all3 .all-box {
        width: 100%;
    }

    .all2 {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 24px;
        padding-left: 2%;
        padding-right: 2%;
    }

    .all2 .all-box {
        width: 100%;
        margin-bottom: auto;
    }
}

@media only screen and (min-width: 868px) {
    .scanner svg {
        top: 170%;
    }
}

@media only screen and (min-width: 1024px) {
    .scanner h2 {
        font-size: 32px;
    }

    .scanner svg {
        top: 160%;
    }
}

@media only screen and (min-width: 1260px) {
    .scanner h2 {
        font-size: 48px;
    }

    .scanner svg {
        top: 185%;
    }
}