    @font-face {
            font-family: "Helvetica";
            src: url("fonts/HelveticaNeue-Roman.otf");
            font-weight: normal;
        }

        @font-face {
            font-family: "Helvetica";
            src: url("fonts/HelveticaNeue-Medium.otf");
            font-weight: 500;
        }

        @font-face {
            font-family: "Helvetica";
            src: url("fonts/HelveticaNeue-Bold.otf");
            font-weight: 700;
        }

        @font-face {
            font-family: "Bebas Neue";
            src: url("fonts/bebasneuecyrillic.ttf");
        }
        
        .tiles {
            display: flex;
            font-family: "Helvetica";
            color: #FAFAFA;
            text-transform: uppercase;
        }

        .tiles__image {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: all .4s ease-in-out;
        }

        .tiles__big {
            flex: 1;
            position: relative;
            overflow: hidden;
        }

        .tiles__big:hover .tiles__image {
            transform: scale(1.1);
        }

        .tiles__title {
            max-width: 125px;
            position: absolute;
            top: 20px;
            left: 20px;
            color: #FAFAFA;
            font-size: 20px;
            font-weight: 500;
        }

        .tiles__content {
            width: max-content;
            position: absolute;
            bottom: 60px;
            left: 50%;
            display: flex;
            flex-direction: column;
            align-items: center;
            transform: translateX(-50%);
        }

        .tiles__subtitle {
            font-family: "Bebas Neue", sans-serif;
            font-size: 96px;
            font-weight: 400;
        }

        .tilex__text {
            font-size: 37px;
            font-weight: 500;
            margin-bottom: 25px;
        }

        .tiles__link {
            width: 100%;
            height: 75px;
            display: flex;
            justify-content: center;
            align-items: center;
            color: #FAFAFA;
            font-size: 25px;
            text-decoration: none;
            background: transparent;
            border: 1px solid #FAFAFA;
            transition: all .3s ease-in-out;
        }

        .tiles__link:hover {
            color: #212121;
            background: #FAFAFA;
        }

        .tiles__small {
            flex: 1;
            display: flex;
            flex-wrap: wrap;
        }

        .tiles__small-item {
            width: 50%;
            position: relative;
            overflow: hidden;
            box-sizing: border-box;
        }

        .tiles__small-item:hover .tiles__image {
            transform: scale(1.1);
        }
        @media (max-width: 1440px) {

            .tiles__subtitle{
                font-size: 72px;
            }
            .tilex__text,
            .tiles__title,
            .tiles__link {
                font-size: 28px;
                margin-bottom: 0;
                height: 52px;
            }
        }
@media (min-width: 1440px) {
    .tilex__text, .tiles__title, .tiles__link {
        font-size: 28px;
    }
}

@media (min-width: 1440px) {
    .tilex__text, .tiles__title, .tiles__link {
        font-size: 28px;
    }
}


           @media (min-width: 1440px) {

            .tiles__subtitle{
                font-size: 72px;
            }
        
        }

        @media (max-width: 1024px) {

            .tiles__subtitle{
                font-size: 54px;
            }
            .tilex__text,
            .tiles__title,
            .tiles__link {
                font-size: 20px;
                margin-bottom: 0;
                height: 36px;
            }
        }
        @media (max-width: 768px) {

            .tiles__subtitle{
                font-size: 38px;
            }
            .tilex__text,
            .tiles__title,
            .tiles__link {
                font-size: 14px;
                margin-bottom: 0;
                height: 32px;
            }
        }

        @media (max-width: 425px) {

            .tiles__subtitle{
                font-size: 32px;
            }
            .tilex__text,
            .tiles__title,
            .tiles__link {
                font-size: 12px;
                margin-bottom: 0;
                height: 32px;
            }
            .tiles {
                flex-direction: column;
                align-items: center;
            }
            .tiles__content {
                bottom: 20px;
            }
            .tiles__title {
                top: 10px;
                left: 10px;
            }
        }
.tiles__big>img{
display: block;
}