#reviewsSection {

    --font-family: HelveticaNeueCyr;
    font-family: var(--font-family);

    @media (max-width: 1239px) {
        margin-top: 220px;
        width: 100vw;
        margin-left: auto;
        margin-right: auto;

        display: flex;
        flex-direction: column;

        background-color: #2f2f2f;
        border-radius: 15px;

        padding-left: 4.76vw;
        padding-right: 4.76vw;
        padding-top: 9.52vw;
        padding-bottom: 9.52vw;

        box-sizing: border-box;
    }

    @media (min-width: 1240px) {
        margin-top: 220px;
        width: 1200px;
        margin-left: auto;
        margin-right: auto;

        display: flex;
        flex-direction: column;

        background-color: #2f2f2f;
        border-radius: 20px;

        padding-left: 40px;
        padding-right: 40px;
        padding-bottom: 47px;
        padding-top: 100px;

        box-sizing: border-box;
    }

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

    .bold {
        @media (max-width: 1239px) {
            font-family: var(--font-family);
            font-weight: 500;
            font-size: min(25px, 5.95vw);
            color: #fff;

            width: 45.24vw;
            margin-bottom: 6.67vw;
        }

        @media (min-width: 1240px) {
            font-family: var(--font-family);
            font-weight: 500;
            font-size: 36px;
            text-align: center;
            color: #fff;
        }
    }

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

        @media (max-width: 1239px) {
            width: min(85px, 20.24vw);
            height: min(33px, 7.86vw);
        }

        @media (min-width: 1240px) {
            width: 85px;
            height: 33px;
        }
    }

    .arrow {
        @media (max-width: 1239px) {
            color: #fff;
            border: 1px solid #fff;
            padding: 1.67vw;
            padding-left: 2.62vw;
            padding-right: 2.62vw;
            border-radius: 2.86vw;
            cursor: pointer;
        }

        @media (min-width: 1240px) {
            color: #fff;
            border: 1px solid #fff;
            padding: 7px;
            padding-left: 11px;
            padding-right: 11px;
            border-radius: 12px;
            cursor: pointer;
        }
    }

    .carousel {
        overflow: hidden;

        @media (max-width: 1239px) {}

        @media (min-width: 1240px) {
            margin-top: 80px;
        }
    }

    .wall {
        display: flex;
        flex-direction: row;
        justify-content: center;
        align-items: center;
        flex-grow: 1;

        @media (max-width: 1239px) {}

        @media (min-width: 1240px) {}
    }

    .card {
        display: flex;
        flex-direction: column;
        justify-content: space-between;

        @media (max-width: 1239px) {
            background-color: #515151;
            border-radius: 2.38vw;

            box-sizing: border-box;
            padding-left: 4.76vw;
            padding-top: 9.52vw;
            padding-right: 4.76vw;
            padding-bottom: 8.33vw;

            margin-left: 2.38vw;
            margin-right: 2.38vw;

            width: 85.71vw;
            height: 42.38vw;
        }

        @media (min-width: 1240px) {
            background-color: #515151;
            border-radius: 10px;

            box-sizing: border-box;
            padding-left: 20px;
            padding-top: 40px;
            padding-right: 20px;
            padding-bottom: 35px;

            margin-left: 10px;
            margin-right: 10px;

            width: 360px;
            height: 220px;
        }
    }

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

    .card .title .name {
        @media (max-width: 1239px) {
            font-family: var(--font-family);
            font-weight: 500;
            font-size: min(16px, 3.81vw);
            color: #fff;
        }

        @media (min-width: 1240px) {
            font-family: var(--font-family);
            font-weight: 500;
            font-size: 21px;
            color: #fff;
        }
    }

    .card .title .date {
        @media (max-width: 1239px) {
            font-family: var(--font-family);
            font-weight: 500;
            font-size: min(8px, 1.90vw);
            text-align: right;
            color: #CBCBCB;

            padding-top: 0.95vw;
        }

        @media (min-width: 1240px) {
            font-family: var(--font-family);
            font-weight: 500;
            font-size: 11px;
            text-align: right;
            color: #CBCBCB;

            padding-top: 4px;
        }
    }

    .card .text {
        @media (max-width: 1239px) {
            font-family: var(--font-family);
            font-weight: 500;
            font-size: min(14px, 3.33vw);
            line-height: 129%;
            color: #CBCBCB;
       }

        @media (min-width: 1240px) {
            font-family: var(--font-family);
            font-weight: 500;
            font-size: 15px;
            line-height: 120%;
            color: #CBCBCB;
            min-height: 50px;
        }
    }

    .after {
        display: flex;
        flex-direction: row;
        justify-content: center;

        @media (max-width: 1239px) {
            margin-top: 7.14vw;
        }
        
        @media (min-width: 1240px) {    
            
        }
    }
}