#mirror {
    @media (max-width: 1239px) {

        margin-bottom: 80px;

        .double {
            display: flex;
            flex-direction: column;
            gap: 20px;

            margin-top: 146px;
        }

        .box {
            border-radius: 20px;
            width: 400px;
            height: 334px;

            position: relative;
            overflow: hidden;

            background-image: linear-gradient(40deg, black, dimgray);
        }

        .inner {
            width: 100%;
            height: 100%;

            padding: 20px;

            box-sizing: border-box;
            position: relative;

            display: flex;
            flex-direction: column;
            justify-content: space-between;
        }

        .box img {
            position: absolute;
            top: 0;
            left: 0;

            width: 101%;
            height: 101%;
            overflow: hidden;

            object-fit: cover;
        }

        .ellipse {
            width: 400px;
            height: 400px;

            border-radius: 100%;

            position: absolute;

            filter: blur(100px);
            background-color: #6170e2;

            top: -180px;
            right: -180px;

            opacity: .8;

            will-change: transform, opacity;
            transform: translateZ(0);
        }

        .top {
            display: flex;
            flex-direction: row-reverse;
            justify-content: space-between;
        }

        .top svg {
            width: 54px;
            height: 54px;
        }

        .title {
            margin-bottom: 10px;
        }

        .programmer {
            .title {
                font-family: var(--second-family);
                font-weight: 500;
                font-size: 35px;
                line-height: 100%;
                text-transform: uppercase;
                color: #fff;
            }

            .info {
                font-family: var(--font4);
                font-weight: 400;
                font-size: 14px;
                color: #fff;
            }
        }

        .customer {
            .title {
                font-family: var(--font3);
                font-weight: 900;
                font-size: 35px;
                line-height: 100%;
                text-transform: uppercase;
                color: #fff;
            }

            .info {
                font-family: var(--font-family);
                font-weight: 500;
                font-size: 14px;
                color: #fff;
            }
        }
    }

    @media (min-width: 1240px) {

        .double {
            display: flex;
            flex-direction: row;
            justify-content: space-between;

            margin-top: 150px;
        }

        .box {
            width: 840px;
            height: 830px;
            border-radius: 20px;

            position: relative;
            overflow: hidden;

            background-image: linear-gradient(40deg, black, dimgray);

            cursor: pointer;
        }

        .inner {
            width: 100%;
            height: 100%;

            padding-right: 40px;
            padding-top: 40px;
            padding-left: 50px;
            padding-bottom: 50px;

            box-sizing: border-box;
            position: relative;

            display: flex;
            flex-direction: column;
            justify-content: space-between;
        }

        .box img {
            position: absolute;
            top: 0;
            left: 0;

            width: 101%;
            height: 101%;
            overflow: hidden;
        }

        .ellipse {
            width: 689px;
            height: 650px;

            border-radius: 100%;

            position: absolute;

            filter: blur(200px);
            background-color: #6170e2;

            top: -232px;
            right: -255px;

            opacity: .8;

            will-change: transform, opacity;
            transform: translateZ(0);
        }

        .top {
            display: flex;
            flex-direction: row;
            justify-content: space-between;
        }

        .top svg {
            width: 82px;
            height: 82px;
        }

        .content {
            display: block;
        }

        .programmer {
            .title {
                font-family: var(--second-family);
                font-weight: 500;
                font-size: 75px;
                line-height: 100%;
                text-transform: uppercase;
                color: #fff;
            }

            .info {
                font-family: var(--font4);
                font-weight: 400;
                font-size: 20px;
                color: #fff;

                width: 515px;
            }
        }

        .customer {
            .title {
                font-family: var(--font3);
                font-weight: 900;
                font-size: 75px;
                line-height: 100%;
                text-transform: uppercase;
                color: #fff;
            }

            .info {
                font-family: var(--font-family);
                font-weight: 500;
                font-size: 20px;
                color: #fff;

                width: 433px;
            }
        }

        .title {
            margin-bottom: 40px;
        }
    }
}