/* Отключение кликов по tel */
a[href^="tel"] {
    pointer-events: none;
    cursor: default;
    color: inherit;
    text-decoration: none;
}

/* ОБЩИЙ БЛОК */
.fw2-block {
    position: relative;
    width: 100%;
    max-width: 900px;
    margin: 0 auto;
    padding: 40px 20px;
    box-sizing: border-box;
    overflow: hidden;

    font-family: "Lato", sans-serif;
    line-height: 1.6;
    font-weight: 400;
    letter-spacing: 1px;
    font-size: 13px;
}

/* ФОНОВАЯ КАРТИНКА */
.fw2-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    z-index: 1;
}

/* ОВЕРЛЕЙ */
.fw2-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgb(246, 242, 242);
    z-index: 2;
}

/* КОНТЕНТ (и заголовок, и текст) */
.fw2-content {
    position: relative;
    z-index: 3;
    margin: 0 auto;
    padding: 20px;
}


/* ЗАГОЛОВОК */
.fw2-title {
    margin: 0 0 20px 0;
    font-weight: 700;
}

/* ТЕКСТ */
.fw2-text {
    margin: 0;
    font-size: inherit;
    line-height: inherit;
}

/* ДЛЯ БЛОКОВ С РАДИУСОМ */
.fw2-rounded {
    overflow: hidden;
}

/* Мобильные корректировки */
@media (max-width: 768px) {

    .fw2-block {
        padding: 25px 15px;
    }

    /* текст уменьшается немного */
    .fw2-text {
        font-size: 12px;
        line-height: 1.5;
    }

    .fw2-title {
        font-size: 20px;
    }

    /* Сдвиг на мобильных */
    .fw2-block[data-mobile-x], 
    .fw2-block[data-mobile-y] {
        transform: translate(
            attr(data-mobile-x px, 0), 
            attr(data-mobile-y px, 0)
        );
    }
}
