@charset "UTF-8";

/** DIFFERENTIATORS **/

.diff,
.widget.widget-diff {
    position: relative;
    padding: clamp( 50px, 5.208vw, 100px ) 0;
    background-color: var( --black );
    color: var( --white );
    z-index: 2;
}

.diff .container {
    position: relative;
    width: min( 85.417vw, 1640px );
    background-color: transparent;
    margin: 0 auto;
}

.diff .container > div {
    padding: 0;
}

.page-template-flexible .diff {
    padding: clamp( 25px, 2.083vw, 40px ) 0 clamp(45px, 9.375vw, 180px );
}

.diff .heading {
    margin-bottom: 36px;
}

.diff .row.flex {
    flex-wrap: nowrap;
    align-items: stretch;
    justify-items: center;
    justify-content: center;
    gap: 85px;
}

.diff .heading h1 {
    color: inherit;
    font-family: var(--body-font);
    font-size: clamp( 24px, 1.46vw, 28px );
    line-height: clamp( 40px, 2.5vw, 48px );
    font-weight: 500;
    letter-spacing: clamp(1.4px, 0.15vw, 2.8px);
    margin-bottom: 56px;
    text-transform: uppercase;
}

.widget.widget-diff .row.flex {
    flex-wrap: nowrap;
    padding: 0;
}

.widget.widget-diff .heading h2 {
    font-family: var( --body-font );
    font-size: var( --h4-font-size );
    line-height: var( --heading-line-height );
    font-weight: var( --medium );
    text-transform: uppercase;
    letter-spacing: var( --heading-spacing );
}

.diffBox {
    position: relative;
    display: block;
    /* width: 25%; */
    height: fit-content;
    padding: 0;
    text-align: center;
    overflow: visible;
    transition: all .75s ease;
    margin-bottom: 0px;
}

.diff.beforeAfter .diffBox {
    margin-bottom: 0px;
}

.diff.beforeAfter .spWrap {
    padding: 0px;
    background-color: transparent;
}

.spWrap {
    position: relative;
    display: flex;
    background-color: transparent;
    color: var( --white );
    border-radius: 0;
    height: fit-content;
    width: 100%;
    padding: 0;
    /* box-shadow: 0px 15px 30px #0000000D; */
    align-items: end;
    z-index: auto;
    flex-direction: column;
    justify-content: center;
}

.diff.beforeAfter .diffImg {
    padding-bottom: 0px;
}

.diffImg {
    position: relative;
    width: 100%;
    height: auto;
    z-index: 0;
    padding-bottom: 12px;
}

.diff.beforeAfter .diffImg img {
    width: clamp(200px, 20.729vw, 398px);
    height: clamp(111px, 11.563vw, 222px);
}

.diffImg img {
    width: 80px;
    /* object-fit: cover; */
    /* object-position: center; */
    border-radius: 0;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
}

.diffContent {
    position: relative;
    font-size: 16px;
    line-height: 24px;
    text-align: center;
    padding: 8px 0;
    z-index: 5;
    color: var( --white );
    width: 100%;
}

.diffList, .widget ul.diffList {
    padding: 0;
    font-size: var( --body-font-size );
    list-style-type: none;
}

.diffList li {
    padding: 10px 0 14px;
    display: block;
}

.diffList li .fas {
    margin-right: 5px;
}

.diffList li a {
    text-decoration: underline;
}

.diffList li a:hover {
    text-decoration: none;
}

.diffBox:hover a.specialLink::after,
a.specialLink:hover::after {
    margin-left: 5px;
    opacity: 1;
}

.diffContent .specialLink:hover {
    color: inherit;
    text-decoration: none;
}

.diffBox .overCon {
    position: absolute;
    color: var( --white );
    background-color: rgb(56 76 93 / 50%);
    font-size: clamp( 14px, 0.833vw, 16px );
    line-height: clamp( 22px, 1.25vw, 24px );
    top: 0;
    left: 0;
    width: 100%;
    height: clamp( 563px, 33.333vw, 640px );
    display: grid;
    padding: 0 40px 30px;
    align-items: end;
    justify-items: center;
    justify-content: center;
    z-index: 2;
    opacity: 0;
    transition: all .75s ease;
}

.diffBox:hover .overCon {
    opacity: 1;
}

.diffContent p {
    color: inherit;
    font-size: clamp( 14px, 0.781vw, 15px );
}

.spBtn .btn.btn-orange {
    margin: 0;
    /* border-radius: 50px; */
}

@media ( max-width: 1024px ) {
    .diff .row.flex {
        flex-direction: column;
        column-gap: 34px;
        height: fit-content;
        gap: 32px;
    }

    .diff.beforeAfter .diffImg img {
        width: 100%;
        height: auto;
    }

    .diff.beforeAfter .diffBox:hover {
        margin-bottom: 0px;
    }

    .diffBox {
        /* margin-bottom: 40px; */
        max-width: 398px;
        width: 50%;
        margin: 0 auto;
    }

    .diffImg {
        /* height: fit-content; */
    }

    .diffContent {
        clear: both;
    }

}

@media ( max-width: 768px ) {

}

@media ( max-width: 567px ) {
    .diff .container {
        margin-bottom: 0
    }

    .diffContent .specialLink {
        font-size: 16px;
    }

    .diff .heading h2::after {
        margin: 18px auto;
    }

    .diff a.btn.btn-orange {
        margin-top: 56px;
    }

    .diffBox {
        width: 300px;
        padding: 0 0;
    }

    .diffContent h4,
    .diffContent h4 a {
        font-size: 22px;
    }
}