/* ================================
   Base Tiles Block
================================ */
/* .content-block.block-type-tiles .title-container{
    padding-bottom: 50px;
} */

.content-block.text-left .title-container {
    text-align: left;
}

.content-block.text-center .title-container {
    text-align: center;
}

.content-block.text-right .title-container {
    text-align: right;
}


.tiles-title-wrap {
    margin-bottom: 0px;
}

.tiles-wrapper {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    text-align: left;
    justify-content: flex-start;
}

/* Columns Layout */
.tiles-columns-1 .single-tile {
    flex: 1 1 100%;
    max-width: 100%;
}

.tiles-columns-2 .single-tile {
    flex: 1 1 calc((100% - 20px) / 2);
    max-width: calc((100% - 20px) / 2);
}

.tiles-columns-3 .single-tile {
    flex: 1 1 calc((100% - 40px) / 3);
    max-width: calc((100% - 40px) / 3);
}

.tiles-columns-4 .single-tile {
    flex: 1 1 calc((100% - 60px) / 4);
    max-width: calc((100% - 60px) / 4);
}

.tiles-columns-5 .single-tile {
    flex: 1 1 calc((100% - 80px) / 5);
    max-width: calc((100% - 80px) / 5);
}

.tiles-columns-6 .single-tile {
    flex: 1 1 calc((100% - 100px) / 6);
    max-width: calc((100% - 100px) / 6);
}

.single-tile {
    padding: 0;
    margin-bottom: 0px;
    border-radius: var(--border-radius);
}

img.tile-icon {
    display: block;
    width: auto;
    margin: 0 auto;
    max-width: 100%;
}

h3.tile-title {
    font-family: var(--heading-font);
    font-weight: 700;
    font-size: clamp(20px, 1.4vw, 22px);
    line-height: clamp(25px, 2vw, 32px);
    margin-bottom: 0px;
}

.blur-wrapper {
    filter: blur(10px);
    transition: all 1s ease 0s;
    position: relative;
}

.blur-wrapper.no-blur {
    filter: blur(0);
}

.block_type_tiles .block-paragraphs {
    text-align: center;
}

.tiles-block h3.block-subtitle {
    text-align: center;
    margin-bottom: 25px;
}

.single-tile .single-tile-wrapper {
    padding: 30px;
    display: flex;
    flex-direction: column;
    height: 100%;
    text-align: left;
}

.single-tile .tile-icon-wrap {
    display: block;
    text-align: left;
    margin-bottom: 20px;
}

.single-tile .tile-icon-wrap img.tile-icon {
    display: inline-block;
    width: clamp(60px, 8vw, 130px);
    height: clamp(60px, 8vw, 130px);
    object-fit: contain;
}


.single-tile .single-tile-wrapper .tile-content {
    display: flex;
    flex-direction: column;
    flex: 1;
}

.single-tile .single-tile-wrapper .tile-content h3.tile-title {
    margin-top: 0;
}

.single-tile .single-tile-wrapper .tile-content .tile-description {
    flex-grow: 1;
    padding: 10px 0 20px;
    color: #1E1E1E;
}

.text-color-light .single-tile .single-tile-wrapper .tile-content .tile-description{
    color: var(--light-text-color);
}

.single-tile .single-tile-wrapper .tile-content .btn {
    margin-top: auto;
    align-self: flex-start;
    margin-top: auto;
}


/* ============================
   TILE COLOR VARIATIONS
   ============================ */

.single-tile.tile-text-dark,
.single-tile.tile-text-dark h3.tile-title,
.single-tile.tile-text-dark .tile-description {
    color: var(--secondary-color);
}

.single-tile.tile-text-light,
.single-tile.tile-text-light h3.tile-title,
.single-tile.tile-text-light .tile-description {
    color: var(--light-text-color);
}

/* ================================
   FAQ Section Overrides
================================ */
.content-block .faq-section {
    position: relative;
}

/* .content-block .faq-section::before {
    content: "";
    position: absolute;
    top: 300px;
    left: 0;
    width: clamp(1200px, calc(100% - 60px), 1800px); 
    height: calc(100% - 300px);
    background-color: var(--light-bg-color);
    border-radius: 0 0 25px 0;
} */

.faq-section .tiles-wrapper {
    gap: 28px;
    /* override global 20px */
    justify-content: flex-start;
}

.faq-section .title-container,
.faq-section .title-container .image-container {
    position: inherit;
}

.faq-section .title-container .image-container {
    width: 100%;
}

.faq-section .title-container .image-container .image-wrapper {
    position: absolute;
    width: 100vw;
    height: 650px;
    top: 0;
    left: 0;
    overflow: hidden;
    border-top-left-radius: 25px;
    border-bottom-left-radius: 25px;
    margin-bottom: 50px;
}

.faq-section .title-container .image-container .image-wrapper img.special-top-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.faq-section .title-container .tiles-title-wrap {
    width: 100%;
    max-width: 1260px;
    margin: 0px auto 50px;
    padding: 0 15px;
}

.faq-section .tiles-wrapper .single-tile {
    flex: 1 1 calc((100% - 28px) / 2);
    max-width: calc((100% - 28px) / 2);
    margin-bottom: 0;
}

/* FAQ section tiles: two-column layout on desktop */
.faq-section .tiles-wrapper .single-tile .single-tile-wrapper {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    text-align: left;
    background-color: #fff;
    border-radius: var(--border-radius);
    padding: 30px;
    height: 100%;
}

/* Left side */
.faq-section .tiles-wrapper .single-tile .single-tile-wrapper .blur-wrapper {
    flex: 0 0 20%;
}

.faq-section .tiles-wrapper .single-tile .single-tile-wrapper img.tile-icon {
    height: 70px;
}

/* Right side */
.faq-section .tiles-wrapper .single-tile .single-tile-wrapper .tile-content {
    flex: 1;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.faq-section .tiles-wrapper .single-tile .single-tile-wrapper .tile-content .tile-description {
    flex-grow: 1;
}

.faq-section .tiles-wrapper .single-tile .single-tile-wrapper .tile-content a.btn {
    width: auto;
    align-self: flex-start;
}

.faq-section .title-container {
    display: flex;
    flex-flow: wrap;
    align-items: center;
    width: calc(100% - 100px);
    max-width: 1700px;
}

.faq-section .title-container .image-container {
    position: relative;
    height: 650px;
    margin-bottom: 50px;
}

.faq-section .title-container .tiles-title-wrap h2.block-title {
    width: 90%;
}

.faq-section .title-container .tiles-title-wrap h2.block-title strong {
    display: inline-block;
}

.faq-section .title-container .tiles-title-wrap h2.block-title::before {
    display: none;
}


.faq-section h3.tile-title {
    margin-top: 0;
}

.block-type-tiles .tiles-button-wrapper {
    margin-top: 30px;
}

.content-block.bgtype-none.bg-none .tiles-block {
    position: relative;
    padding: 50px 0;
}

.content-block.bgtype-none.bg-none .tiles-block:before {
    content: "";
    position: absolute;
    top: 0px;
    left: 50%;
    right: auto;
    transform: translateX(-50%);
    width: 100%;
    height: 100%;
    background-color: var(--quaternary-color);
}

.content-block.bgtype-none.bg-none .tiles-wrapper .single-tile {
    background-color: #fff;
}


/* Tiles With Numbers */
.content-block.tiles-with-numbers .single-tile-wrapper {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
}

/* Base size (short titles) */
.content-block.tiles-with-numbers .tile-content h3.tile-title {
    font-family: var(--heading-font);
    font-weight: 700;
    font-size: clamp(2.5rem, 5vw, 3.75rem);
    /* ~40px - 60px */
    line-height: 1.1;
    color: var(--tertiary-color);
    transition: font-size 0.3s ease, line-height 0.3s ease;
}

/* Medium-length titles (3–5 words) */
.content-block.tiles-with-numbers .tile-content h3.tile-title.title-small {
    font-size: clamp(2rem, 4.2vw, 3rem);
    /* ~32px - 48px */
}

/* Long titles (6+ words) */
.content-block.tiles-with-numbers .tile-content h3.tile-title.title-xsmall {
    font-size: clamp(1.75rem, 3.8vw, 2.5rem);
    /* ~28px - 40px */
}


.content-block.tiles-with-numbers .single-tile .single-tile-wrapper .tile-content {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.content-block.tiles-with-numbers .single-tile .single-tile-wrapper .tile-content .tile-description {
    margin-top: auto;
}

.content-block.tiles-with-numbers .single-tile .single-tile-wrapper .tile-content .tile-description p {
    color: var(--secondary-color);
}




.protect-your-business .tiles-wrapper.default-icons-bg .single-tile-wrapper .blur-wrapper .tile-icon-wrap,
.protect-your-business .tiles-wrapper.multicolor-icons-bg .single-tile-wrapper .blur-wrapper .tile-icon-wrap {
    background-color: var(--tertiary-color);
    width: clamp(80px, 8vw, 130px);
    height: clamp(80px, 8vw, 130px);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.protect-your-business .tiles-wrapper.default-icons-bg .single-tile-wrapper .blur-wrapper .tile-icon-wrap img,
.protect-your-business .tiles-wrapper.multicolor-icons-bg .single-tile-wrapper .blur-wrapper .tile-icon-wrap img {
    width: clamp(50px, 5vw, 80px);
    height: auto;
}

.protect-your-business .tiles-wrapper.multicolor-icons-bg .single-tile:first-child .single-tile-wrapper .blur-wrapper .tile-icon-wrap {
    background-color: var(--tertiary-color);
}

.protect-your-business .tiles-wrapper.multicolor-icons-bg .single-tile:nth-child(2) .single-tile-wrapper .blur-wrapper .tile-icon-wrap {
    background-color: var(--secondary-color);
}

.protect-your-business .tiles-wrapper.multicolor-icons-bg .single-tile:nth-child(3) .single-tile-wrapper .blur-wrapper .tile-icon-wrap {
    background-color: var(--accent-color);
}

.protect-your-business .tiles-wrapper.multicolor-icons-bg .single-tile:nth-child(4) .single-tile-wrapper .blur-wrapper .tile-icon-wrap {
    background-color: var(--accent-color);
}

.protect-your-business .tiles-wrapper.multicolor-icons-bg .single-tile:nth-child(5) .single-tile-wrapper .blur-wrapper .tile-icon-wrap {
    background-color: var(--tertiary-color);
}

.protect-your-business .tiles-wrapper.multicolor-icons-bg .single-tile:nth-child(6) .single-tile-wrapper .blur-wrapper .tile-icon-wrap {
    background-color: var(--secondary-color);
}

.protect-your-business .tiles-wrapper.multicolor-icons-bg .single-tile:nth-child(7) .single-tile-wrapper .blur-wrapper .tile-icon-wrap {
    background-color: var(--tertiary-color);
}

.protect-your-business .tiles-wrapper.multicolor-icons-bg .single-tile:nth-child(8) .single-tile-wrapper .blur-wrapper .tile-icon-wrap {
    background-color: var(--secondary-color);
}

.protect-your-business .tiles-wrapper.multicolor-icons-bg .single-tile:nth-child(9) .single-tile-wrapper .blur-wrapper .tile-icon-wrap {
    background-color: var(--accent-color);
}


.content-block.bgtype-color .tiles-wrapper .single-tile.bg-default {
    background: #fff;
}


.tiles-with-numbers h4.tile-subtitle {
    margin: 0;
}

.locations .single-tile .single-tile-wrapper {
    padding: 20px 15px;
}

.content-block.block-type-hero:has(.hero-type-inner5)+.hero-form-outer-wrapper+.protect-your-business .title-container {
    max-width: 960px;
    margin-bottom: 50px;
    text-align: center;
}

.contact-info .tiles-wrapper {
    flex-direction: row;
    flex-wrap: nowrap;
}

.contact-info .single-tile .single-tile-wrapper .tile-content .tile-description {
    padding-bottom: 0;
}

.locations .tiles-wrapper.container {
    padding: 0;
}


@media only screen and (max-width: 1720px) {

}

@media only screen and (max-width: 1536px) {
    .hero-container .hero-content .hero-content-outer {
        max-width: 500px;
    }

    .faq-section .title-container .image-container,
    .faq-section .title-container .image-container .image-wrapper {
        height: 550px;
    }
}

@media only screen and (max-width: 1280px) {
    .single-tile .tile-icon-wrap img.tile-icon {
        width: 110px;
        height: 110px;
    }

    .faq-section .tiles-wrapper .single-tile .single-tile-wrapper {
        gap: 20px;
    }
}

@media screen and (max-width: 992px) {

    .tiles-columns-2 .single-tile,
    .tiles-columns-3 .single-tile,
    .tiles-columns-4 .single-tile,
    .tiles-columns-5 .single-tile,
    .tiles-columns-6 .single-tile {
        flex: 1 1 100%;
        max-width: 100%;
    }

    .single-tile .single-tile-wrapper .blur-wrapper .tile-icon-wrap {
        margin-left: auto;
        margin-right: auto;
    }

    .faq-section .tiles-wrapper .single-tile {
        flex: 1 1 calc((100% - 28px) / 1);
        max-width: calc((100% - 28px) / 1);
    }

    .faq-section .title-container {
        width: 100%;
        padding: 0;
    }

    .faq-section .title-container .tiles-title-wrap h2.block-title {
        width: 100%;
    }

    .faq-section .title-container .tiles-title-wrap {
        margin: 0px auto 20px;
    }

    .single-tile .single-tile-wrapper .tile-content .btn {
        align-self: center;
    }

    .faq-section .title-container .image-container .image-wrapper {
        border-radius: 0;
    }

    .single-tile .single-tile-wrapper .tile-content h3.tile-title {
        text-align: center;
    }

    .block-type-tiles .faq-section .single-tile .single-tile-wrapper .tile-content h3.tile-title,
    .block-type-tiles .faq-section .single-tile .single-tile-wrapper .tile-content .tile-description {
        text-align: left;
    }

    .single-tile .tile-icon-wrap {
        text-align: center;
    }

    .block-type-tiles .protect-your-business .tiles-wrapper .single-tile .single-tile-wrapper .tile-content,
    .block-type-tiles .protect-your-business .tiles-wrapper .single-tile .single-tile-wrapper h3.tile-title {
        text-align: center;
    }


    body .content-block.block-type-tiles .title-container {
        padding-bottom: 10px;
        text-align: center;
    }

    .locations .single-tile .single-tile-wrapper {
        padding: 30px 0 0;
    }

    .content-block.tiles-with-numbers .single-tile .single-tile-wrapper .tile-content {
        text-align: center;
    }

    .tiles-block.protect-your-business .single-tile-wrapper .tile-icon-wrap {
        margin-left: 0;
    }

    .single-tile .single-tile-wrapper .tile-content {
        text-align: center;
    }

    .block-type-tiles .protect-your-business .tiles-wrapper .single-tile .single-tile-wrapper .tile-content,
    .block-type-tiles .protect-your-business .tiles-wrapper .single-tile .single-tile-wrapper h3.tile-title,
    .block-type-tiles .protect-your-business .tiles-wrapper .single-tile .single-tile-wrapper .tile-description {
        text-align: left;
    }

    .block-type-tiles .protect-your-business .tiles-wrapper.default-icons-bg .single-tile-wrapper .blur-wrapper .tile-icon-wrap {
        margin: 0 auto;
    }

    .block-type-tiles .protect-your-business .tiles-wrapper.default-icons-bg .single-tile .single-tile-wrapper h3.tile-title,
    .block-type-tiles .protect-your-business .tiles-wrapper.default-icons-bg .single-tile .single-tile-wrapper .tile-description {
        text-align: center;
    }

    .block-type-tiles .protect-your-business .tiles-wrapper .single-tile .single-tile-wrapper .tile-content .btn {
        align-self: flex-start;
    }

    .block-type-tiles .protect-your-business .tiles-wrapper.default-icons-bg .single-tile .single-tile-wrapper h3.tile-title {
        margin-top: 20px;
    }

    .locations .tiles-wrapper.container {
        padding: 0 20px;
    }

    .single-tile .location-wrap{
        padding: 20px;
    }

    .locations .single-tile .single-tile-wrapper .tile-content .tile-description{
        padding: 10px 0 0;
    }
}

@media screen and (max-width: 767px) {

    .tiles-columns-2 .single-tile,
    .tiles-columns-3 .single-tile,
    .tiles-columns-4 .single-tile,
    .tiles-columns-5 .single-tile,
    .tiles-columns-6 .single-tile {
        flex: 1 1 100%;
        max-width: 100%;
    }

    .faq-section .tiles-wrapper .single-tile {
        flex: 1 1 100%;
        max-width: 100%;
    }

    .faq-section .tiles-wrapper .single-tile .single-tile-wrapper {
        gap: 20px;
    }

    /* .content-block .faq-section::before {
        width: 100%;
        left: 0;
        border-radius: 0;
    } */

    .single-tile .single-tile-wrapper {
        text-align: center;
    }

    .single-tile .tile-icon-wrap {
        text-align: center;
    }

    .single-tile .tile-icon-wrap img.tile-icon {
        width: 90px;
        height: 90px;
    }

    .tiles-wrapper.container.default_icons_bg {
        flex-flow: column;
    }

    .content-block.contact-info {
        padding-bottom: 0;
    }
    .single-tile .location-wrap p{
        font-size: clamp(16px, 1.2vw, 22px);
    }
}

@media only screen and (max-width: 480px) {

}