/* =========================================================
   WHY CHOOSE THE FLOOR TOUCH
========================================================= */

.why-floor-touch-section {
    width: 100%;

    padding: 55px 0 60px;

    background: #ffffff;
}


/* =========================================================
   HEADING
========================================================= */

.why-floor-touch-heading {
    text-align: center;

    margin-bottom: 42px;
}


.why-floor-touch-small-title {
    display: block;

    margin-bottom: 8px;

    font-family: Arial, Helvetica, sans-serif;

    font-size: 11px;

    font-weight: 700;

    letter-spacing: 2px;

    color: #8d8d8d;

    text-transform: uppercase;
}


.why-floor-touch-heading h2 {
    margin: 0;

    font-family: Georgia, "Times New Roman", serif;

    font-size: 30px;

    line-height: 1.25;

    font-weight: 700;

    color: #171447;

    letter-spacing: .5px;

    text-shadow: 1px 2px 3px rgba(0, 0, 0, .12);
}


.why-floor-touch-heading-line {
    width: 55px;

    height: 2px;

    margin: 14px auto 0;

    background: #171447;

    border-radius: 10px;
}


/* =========================================================
   MAIN CONTENT
========================================================= */

.why-floor-touch-content {

    display: grid;

    grid-template-columns: 46% 54%;

    align-items: center;

    max-width: 1200px;

    margin: 0 auto;
}


/* =========================================================
   IMAGE COLUMN
========================================================= */

.why-floor-touch-image-col {
    width: 100%;

    padding-right: 35px;
}


.why-floor-touch-image-wrap {

    width: 100%;

    max-width: 500px;

    margin: 0 auto;

    position: relative;

    overflow: hidden;

    border-radius: 18px;

    background: #f1f1f1;

    box-shadow:
        0 15px 40px rgba(25, 30, 70, .14);
}


.why-floor-touch-image-wrap::after {

    content: "";

    position: absolute;

    inset: 0;

    background: linear-gradient(
        180deg,
        rgba(0,0,0,0) 65%,
        rgba(0,0,0,.12) 100%
    );

    pointer-events: none;
}


.why-floor-touch-image-wrap img {

    display: block;

    width: 100%;

    height: auto;

    aspect-ratio: 1 / 1;

    object-fit: cover;

    transition: transform .5s ease;
}


.why-floor-touch-image-wrap:hover img {

    transform: scale(1.03);
}


/* =========================================================
   IMAGE BADGE
========================================================= */

.why-floor-touch-image-badge {

    position: absolute;

    left: 20px;

    bottom: 20px;

    z-index: 5;

    display: flex;

    flex-direction: column;

    align-items: flex-start;

    padding: 10px 15px;

    background: rgba(255,255,255,.94);

    border-radius: 8px;

    box-shadow:
        0 5px 18px rgba(0,0,0,.15);
}


.why-floor-touch-image-badge strong {

    font-family: Georgia, "Times New Roman", serif;

    font-size: 13px;

    line-height: 16px;

    color: #171447;

    letter-spacing: 1px;
}


.why-floor-touch-image-badge span {

    font-family: Arial, Helvetica, sans-serif;

    font-size: 9px;

    line-height: 12px;

    font-weight: 600;

    letter-spacing: 2px;

    color: #777777;
}


/* =========================================================
   TEXT COLUMN
========================================================= */

.why-floor-touch-text-col {

    width: 100%;

    padding-left: 20px;
}


.why-floor-touch-text {

    width: 100%;

    max-width: 610px;
}


/* =========================================================
   INTRO
========================================================= */

.why-floor-touch-intro {

    margin: 0 0 18px;

    font-family: Arial, Helvetica, sans-serif;

    font-size: 14px;

    line-height: 1.75;

    color: #555555;
}


.why-floor-touch-intro strong {

    color: #171447;

    font-weight: 700;
}


/* =========================================================
   SUB TITLE
========================================================= */

.why-floor-touch-text h3 {

    margin: 0 0 18px;

    font-family: Georgia, "Times New Roman", serif;

    font-size: 18px;

    line-height: 1.4;

    font-weight: 700;

    color: #171447;
}


/* =========================================================
   FEATURES
========================================================= */

.why-floor-touch-features {

    display: grid;

    grid-template-columns: repeat(2, 1fr);

    column-gap: 25px;

    row-gap: 14px;
}


/* =========================================================
   FEATURE
========================================================= */

.why-floor-touch-feature {

    display: flex;

    align-items: flex-start;

    gap: 10px;

    padding: 10px 0;
}


/* =========================================================
   FEATURE ICON
========================================================= */

.why-floor-touch-icon {

    width: 32px;

    height: 32px;

    min-width: 32px;

    display: flex;

    align-items: center;

    justify-content: center;

    border-radius: 50%;

    background: #f0f2fb;

    color: #171447;

    font-size: 14px;

    line-height: 1;

    box-shadow:
        0 2px 7px rgba(20,25,70,.08);
}


.why-floor-touch-icon span {

    display: block;

    line-height: 1;
}


/* =========================================================
   FEATURE TEXT
========================================================= */

.why-floor-touch-feature strong {

    display: block;

    margin: 0 0 3px;

    font-family: Arial, Helvetica, sans-serif;

    font-size: 12px;

    line-height: 17px;

    font-weight: 700;

    color: #222222;
}


.why-floor-touch-feature p {

    margin: 0;

    font-family: Arial, Helvetica, sans-serif;

    font-size: 11px;

    line-height: 17px;

    color: #777777;
}


/* =========================================================
   BOTTOM TEXT
========================================================= */

.why-floor-touch-bottom {

    margin-top: 20px;

    padding: 14px 16px;

    border-left: 3px solid #171447;

    background: #f7f8fc;

    border-radius: 0 8px 8px 0;

    font-family: Arial, Helvetica, sans-serif;

    font-size: 12px;

    line-height: 19px;

    color: #666666;
}


.why-floor-touch-bottom strong {

    color: #171447;

    font-weight: 700;
}


/* =========================================================
   LARGE TABLET
========================================================= */

@media (max-width: 1199px) {

    .why-floor-touch-section {
        padding: 48px 0 52px;
    }

    .why-floor-touch-content {
        grid-template-columns: 44% 56%;
    }

    .why-floor-touch-image-col {
        padding-right: 25px;
    }

    .why-floor-touch-text-col {
        padding-left: 15px;
    }

    .why-floor-touch-heading h2 {
        font-size: 27px;
    }

}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 991px) {

    .why-floor-touch-section {
        padding: 42px 0 48px;
    }

    .why-floor-touch-heading {
        margin-bottom: 32px;
    }

    .why-floor-touch-heading h2 {
        font-size: 25px;
    }

    .why-floor-touch-content {
        grid-template-columns: 42% 58%;
    }

    .why-floor-touch-image-col {
        padding-right: 20px;
    }

    .why-floor-touch-text-col {
        padding-left: 10px;
    }

    .why-floor-touch-intro {
        font-size: 13px;

        line-height: 1.65;
    }

    .why-floor-touch-text h3 {
        font-size: 17px;

        margin-bottom: 13px;
    }

    .why-floor-touch-features {
        column-gap: 15px;

        row-gap: 8px;
    }

    .why-floor-touch-feature {
        gap: 8px;

        padding: 7px 0;
    }

    .why-floor-touch-icon {
        width: 29px;
        height: 29px;

        min-width: 29px;

        font-size: 12px;
    }

    .why-floor-touch-feature strong {
        font-size: 11px;
    }

    .why-floor-touch-feature p {
        font-size: 10px;

        line-height: 15px;
    }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 767px) {

    .why-floor-touch-section {
        padding: 35px 0 40px;
    }

    .why-floor-touch-heading {
        margin-bottom: 27px;
    }

    .why-floor-touch-small-title {
        font-size: 10px;

        letter-spacing: 1.7px;
    }

    .why-floor-touch-heading h2 {
        font-size: 22px;

        padding: 0 15px;
    }

    .why-floor-touch-heading-line {
        width: 45px;

        margin-top: 11px;
    }


    /* Stack */

    .why-floor-touch-content {
        display: block;
    }


    /* Image */

    .why-floor-touch-image-col {
        padding-right: 0;

        margin-bottom: 28px;
    }

    .why-floor-touch-image-wrap {
        max-width: 520px;

        border-radius: 14px;
    }


    /* Text */

    .why-floor-touch-text-col {
        padding-left: 0;
    }

    .why-floor-touch-text {
        max-width: 100%;
    }

    .why-floor-touch-intro {
        font-size: 13px;

        line-height: 1.7;
    }


    .why-floor-touch-text h3 {
        font-size: 17px;

        margin-bottom: 15px;
    }


    /* Features */

    .why-floor-touch-features {
        grid-template-columns: 1fr;

        row-gap: 4px;
    }

    .why-floor-touch-feature {
        padding: 8px 0;
    }


    .why-floor-touch-bottom {
        margin-top: 17px;
    }

}


/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 480px) {

    .why-floor-touch-section {
        padding: 30px 0 35px;
    }

    .why-floor-touch-heading {
        margin-bottom: 23px;
    }

    .why-floor-touch-heading h2 {
        font-size: 20px;
    }

    .why-floor-touch-image-col {
        margin-bottom: 23px;
    }

    .why-floor-touch-image-wrap {
        border-radius: 12px;
    }

    .why-floor-touch-image-badge {
        left: 13px;

        bottom: 13px;

        padding: 8px 11px;
    }

    .why-floor-touch-image-badge strong {
        font-size: 11px;
    }

    .why-floor-touch-image-badge span {
        font-size: 8px;
    }

    .why-floor-touch-intro {
        font-size: 12px;

        line-height: 1.7;
    }

    .why-floor-touch-text h3 {
        font-size: 16px;
    }

    .why-floor-touch-feature {
        gap: 9px;
    }

    .why-floor-touch-feature strong {
        font-size: 11px;
    }

    .why-floor-touch-feature p {
        font-size: 10px;

        line-height: 16px;
    }

    .why-floor-touch-bottom {
        font-size: 11px;

        line-height: 17px;

        padding: 12px 13px;
    }

}