/* ============================================================
   KTC ROOFINGS - NEW HOME PAGE BODY ONLY
   Header / Banner / Existing Floating Buttons Are Untouched
============================================================ */

:root {
    --ktc-orange: #bc612c;
    --ktc-orange-dark: #8d3e17;
    --ktc-orange-light: #e69b6a;

    --ktc-brown: #43291d;
    --ktc-dark: #211c19;

    --ktc-text: #625c57;
    --ktc-muted: #8d857e;

    --ktc-cream: #fbf7f3;
    --ktc-cream-dark: #f5ece4;

    --ktc-border: #e9ded5;

    --ktc-white: #ffffff;

    --ktc-shadow:
        0 22px 55px rgba(63, 41, 27, .10);

    --ktc-shadow-soft:
        0 12px 35px rgba(63, 41, 27, .07);
}


/* ============================================================
   GENERAL
============================================================ */

.ktc-new-home {
    overflow: hidden;
    background: #fff;
}

.ktc-new-home *,
.ktc-new-footer *,
.ktc-new-home *::before,
.ktc-new-home *::after,
.ktc-new-footer *::before,
.ktc-new-footer *::after {
    box-sizing: border-box;
}

.ktc-new-home img,
.ktc-new-footer img {
    max-width: 100%;
}

.ktc-home-section {
    padding: 70px 0;
}

.ktc-new-home p {
    font-size: 17px;
    line-height: 1.8;
}

.ktc-small-heading {
    display: flex;
    align-items: center;
    gap: 11px;

    margin-bottom: 17px;

    color: var(--ktc-orange);

    font-size: 15px;
    line-height: 1.4;

    font-weight: 700;
    letter-spacing: 1.3px;

    text-transform: uppercase;
}

.ktc-small-heading > span {
    display: block;

    width: 36px;
    height: 2px;

    background: var(--ktc-orange);
}

.ktc-main-heading {
    margin: 0;

    color: var(--ktc-dark);

    font-size: 42px;
    line-height: 1.13;

    font-weight: 700;
    letter-spacing: normal;
}

.ktc-main-heading span {
    display: block;

    color: var(--ktc-orange);
}


/* ============================================================
   COMMON BUTTON
============================================================ */

.ktc-main-btn {
    min-height: 54px;

    padding: 0 27px;

    border-radius: 100px;

    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;

    color: #fff !important;
    background: var(--ktc-orange);

    font-size: 15px;
    font-weight: 700;

    text-decoration: none !important;

    transition: all .3s ease;
}

.ktc-main-btn:hover {
    color: #fff !important;

    background: var(--ktc-orange-dark);

    transform: translateY(-2px);

    box-shadow:
        0 12px 30px rgba(188, 97, 44, .25);
}


/* ============================================================
   HIGHLIGHTS
============================================================ */

.ktc-highlight-section {
    padding: 36px 0 45px;

    background: #fff;
}

.ktc-highlight-wrapper {
    display: grid;

    grid-template-columns:
        repeat(5, 1fr);

    border: 1px solid var(--ktc-border);

    border-radius: 20px;

    background: #fff;

    box-shadow: var(--ktc-shadow-soft);

    overflow: hidden;
}

.ktc-highlight-item {
    min-height: 120px;

    padding: 24px 20px;

    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;

    position: relative;
}

.ktc-highlight-item:not(:last-child)::after {
    content: "";

    position: absolute;

    right: 0;
    top: 25%;

    width: 1px;
    height: 50%;

    background: var(--ktc-border);
}

.ktc-highlight-icon {
    width: 54px;
    height: 54px;

    flex-shrink: 0;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 15px;

    color: var(--ktc-orange);
    background: var(--ktc-cream);

    font-size: 20px;
}

.ktc-highlight-item h3 {
    margin: 0 0 4px;

    color: var(--ktc-dark);

    font-size: 25px;
    line-height: 1;

    font-weight: 700;
}

.ktc-highlight-item p {
    margin: 0;

    color: var(--ktc-muted);

    font-size: 14px;
    line-height: 1.4;
}


/* ============================================================
   ABOUT
============================================================ */

.ktc-about-new {
    padding-top: 80px;

    background: #fff;
}

.ktc-about-visual {
    position: relative;

    min-height: 610px;
}

.ktc-about-main-image {
    width: 82%;
    height: 540px;

    overflow: hidden;

    border-radius:
        25px 110px
        25px 25px;
}

.ktc-about-main-image img {
    width: 100%;
    height: 100%;

    object-fit: cover;
}

.ktc-about-secondary-image {
    position: absolute;

    right: 0;
    bottom: 0;

    width: 48%;
    height: 245px;

    padding: 8px;

    border-radius:
        90px 22px
        22px 22px;

    background: #fff;

    box-shadow: var(--ktc-shadow);
}

.ktc-about-secondary-image img {
    width: 100%;
    height: 100%;

    object-fit: cover;

    border-radius:
        82px 16px
        16px 16px;
}

.ktc-about-floating {
    position: absolute;

    right: 0;
    top: 55px;

    display: flex;
    align-items: center;
    gap: 12px;

    padding: 15px 18px;

    border-radius: 14px;

    background: #fff;

    box-shadow: var(--ktc-shadow);
}

.ktc-floating-icon {
    width: 46px;
    height: 46px;

    flex-shrink: 0;

    border-radius: 50%;

    display: flex;
    align-items: center;
    justify-content: center;

    color: #fff;
    background: var(--ktc-orange);
}

.ktc-about-floating strong,
.ktc-about-floating small {
    display: block;
}

.ktc-about-floating strong {
    margin-bottom: 2px;

    color: var(--ktc-dark);

    font-size: 15px;
}

.ktc-about-floating small {
    color: var(--ktc-muted);

    font-size: 12px;
}

.ktc-about-year {
    position: absolute;

    left: -15px;
    bottom: 65px;

    width: 140px;
    height: 140px;

    border-radius: 50%;

    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;

    text-align: center;

    color: #fff;
    background:
        linear-gradient(
            135deg,
            var(--ktc-orange),
            var(--ktc-orange-dark)
        );

    box-shadow:
        0 18px 40px rgba(139, 62, 23, .27);
}

.ktc-about-year span {
    display: block;

    font-size: 35px;
    line-height: 1;

    font-weight: 700;
}

.ktc-about-year p {
    margin: 5px 0 0;

    color: #fff;

    font-size: 12px;
    line-height: 1.3;
}

.ktc-content-box > .ktc-main-heading {
    margin-bottom: 24px;
}

.ktc-content-box > p {
    margin-bottom: 13px;

    color: var(--ktc-text);

    font-size: 17px;
    line-height: 1.82;
}

.ktc-about-benefits {
    display: grid;

    grid-template-columns:
        repeat(3, 1fr);

    margin: 30px 0;

    border-top: 1px solid var(--ktc-border);
    border-bottom: 1px solid var(--ktc-border);
}

.ktc-about-benefits > div {
    min-height: 115px;

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;

    gap: 9px;

    position: relative;

    text-align: center;
}

.ktc-about-benefits > div:not(:last-child)::after {
    content: "";

    position: absolute;

    right: 0;
    top: 22%;

    width: 1px;
    height: 56%;

    background: var(--ktc-border);
}

.ktc-about-benefits img {
    width: 46px;
    height: 46px;

    object-fit: contain;
}

.ktc-about-benefits span {
    color: var(--ktc-dark);

    font-size: 15px;
    font-weight: 700;
}


/* ============================================================
   SECTION TITLE
============================================================ */

.ktc-section-title-row {
    display: grid;

    grid-template-columns:
        1.05fr .95fr;

    align-items: end;

    gap: 70px;

    margin-bottom: 50px;
}

.ktc-section-description p {
    max-width: 580px;

    margin: 0;

    color: var(--ktc-text);

    font-size: 17px;
    line-height: 1.8;
}


/* ============================================================
   PRODUCTS
============================================================ */

.ktc-products-new {
    background: var(--ktc-cream);
}

.ktc-product-new-card {
    border-radius: 20px;

    overflow: hidden;

    background: #fff;
    margin-bottom: 30px;
    border:
        1px solid rgba(68, 45, 30, .08);

    transition: all .4s ease;
}

.ktc-product-new-card:hover {
    transform: translateY(-8px);

    box-shadow: var(--ktc-shadow);
}

.ktc-product-new-image {
    position: relative;

    height: 225px;

    overflow: hidden;

    background: #ddd;
}

.ktc-product-new-image::after {
    content: "";

    position: absolute;

    left: 0;
    right: 0;
    bottom: 0;

    height: 80px;

    background:
        linear-gradient(
            to top,
            rgba(30, 20, 15, .35),
            transparent
        );
}

.ktc-product-new-image img {
    width: 100%;
    height: 100%;

    object-fit: cover;

    transition: transform .7s ease;
}

.ktc-product-new-card:hover
.ktc-product-new-image img {
    transform: scale(1.07);
}

.ktc-product-new-image > span {
    position: absolute;

    z-index: 2;

    right: 18px;
    top: 18px;

    width: 48px;
    height: 48px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    color: #fff;

    background:
        rgba(37, 27, 22, .78);

    backdrop-filter: blur(8px);

    font-size: 14px;
    font-weight: 700;
}

.ktc-product-new-content {
    padding: 20px 18px;
}

.ktc-product-new-content h3 {
    margin: 0 0 9px;

    color: var(--ktc-dark);

    font-size: 23px;
    line-height: 1.3;

    font-weight: 700;
}

.ktc-product-new-content > p {
    margin-bottom: 12px;

    color: var(--ktc-text);

    font-size: 15px;
    line-height: 1.65;
}

.ktc-product-links {
    padding-top: 17px;

    border-top:
        1px solid #eee6df;

    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 15px;
}

.ktc-product-links a {
    color: var(--ktc-dark);

    font-size: 14px;
    font-weight: 700;

    text-decoration: none;

    transition: .3s;
}

.ktc-product-links a:first-child {
    display: flex;
    align-items: center;
    gap: 8px;
}

.ktc-product-links a:first-child i {
    color: var(--ktc-orange);
}

.ktc-product-links a:last-child {
    color: var(--ktc-orange);
}

.ktc-product-links a:hover {
    color: var(--ktc-orange-dark);
}


/* ============================================================
   PRODUCT CTA
============================================================ */

.ktc-help-card {
    position: relative;

    margin-top: 45px;

    padding: 32px 34px;

    display: grid;

    grid-template-columns:
        auto 1fr auto;

    align-items: center;

    gap: 22px;

    overflow: hidden;

    border-radius: 22px;

    color: #fff;

    background:
        linear-gradient(
            115deg,
            #883c18 0%,
            #b85c28 52%,
            #d0773e 100%
        );
}

.ktc-help-card::after {
    content: "";

    position: absolute;

    right: -80px;
    top: -130px;

    width: 280px;
    height: 280px;

    border:
        45px solid
        rgba(255, 255, 255, .055);

    border-radius: 50%;
}

.ktc-help-icon {
    width: 68px;
    height: 68px;

    flex-shrink: 0;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    color: var(--ktc-orange);
    background: #fff;

    font-size: 24px;
}

.ktc-help-content {
    position: relative;

    z-index: 2;
}

.ktc-help-content > span {
    display: block;

    margin-bottom: 4px;

    color:
        rgba(255, 255, 255, .70);

    font-size: 12px;

    font-weight: 700;

    text-transform: uppercase;

    letter-spacing: 1px;
}

.ktc-help-content h3 {
    margin: 0 0 6px;

    color: #fff;

    font-size: 24px;

    font-weight: 700;
}

.ktc-help-content p {
    max-width: 650px;

    margin: 0;

    color:
        rgba(255,255,255,.77);

    font-size: 15px;
    line-height: 1.55;
}

.ktc-help-actions {
    position: relative;

    z-index: 2;

    display: flex;
    align-items: center;

    gap: 9px;
}

.ktc-light-btn,
.ktc-outline-white-btn,
.ktc-white-btn,
.ktc-dark-outline-btn,
.ktc-white-border-btn {
    min-height: 52px;

    padding: 0 23px;

    border-radius: 100px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    gap: 8px;

    text-decoration: none !important;

    font-size: 14px;
    font-weight: 700;

    transition: .3s ease;
}

.ktc-light-btn,
.ktc-white-btn {
    color: var(--ktc-orange-dark) !important;

    background: #fff;
}

.ktc-light-btn:hover,
.ktc-white-btn:hover {
    color: var(--ktc-orange-dark) !important;

    transform: translateY(-2px);

    box-shadow:
        0 12px 30px rgba(0,0,0,.13);
}

.ktc-outline-white-btn,
.ktc-dark-outline-btn {
    color: #fff !important;

    border:
        1px solid rgba(255,255,255,.55);

    background: transparent;
}

.ktc-outline-white-btn:hover,
.ktc-dark-outline-btn:hover {
    color: var(--ktc-orange-dark) !important;

    background: #fff;
}


/* ============================================================
   BUSINESS OPPORTUNITY
============================================================ */

.ktc-business-section {
    background: #fff;
}


.ktc-center-title .ktc-main-heading {
    margin-bottom: 12px;
}

.ktc-center-title h4 {
    margin-bottom: 15px;

    color: var(--ktc-orange);

    font-size: 21px;
    font-weight: 700;
}

.ktc-center-title > p {
    margin: 0;

    color: var(--ktc-text);

    font-size: 17px;
    line-height: 1.75;
}

.ktc-business-card {
    position: relative;

    height: 100%;

    padding: 34px;

    border:
        1px solid var(--ktc-border);

    border-radius: 22px;

    background: #fff;

    box-shadow: var(--ktc-shadow-soft);
}

.ktc-business-featured {
    border-color:
        rgba(188,97,44,.35);

    background:
        linear-gradient(
            145deg,
            #fff 0%,
            #fff8f3 100%
        );
}

.ktc-business-badge {
    position: absolute;

    right: 24px;
    top: 0;

    transform: translateY(-50%);

    padding: 8px 15px;

    border-radius: 50px;

    color: #fff;
    background: var(--ktc-orange);

    font-size: 12px;
    font-weight: 700;
}

.ktc-business-head {
    display: flex;
    align-items: center;

    gap: 15px;

    margin-bottom: 20px;
}

.ktc-business-icon {
    width: 62px;
    height: 62px;

    flex-shrink: 0;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 16px;

    color: var(--ktc-orange);
    background: var(--ktc-cream);

    font-size: 23px;
}

.ktc-business-head small {
    display: block;

    margin-bottom: 4px;

    color: var(--ktc-orange);

    font-size: 12px;
    letter-spacing: .8px;

    font-weight: 700;

    text-transform: uppercase;
}

.ktc-business-head h3 {
    margin: 0;

    color: var(--ktc-dark);

    font-size: 25px;
    line-height: 1.3;
}

.ktc-business-card > p {
    margin-bottom: 23px;

    color: var(--ktc-text);

    font-size: 16px;
    line-height: 1.7;
}

.ktc-business-details {
    display: grid;

    grid-template-columns:
        repeat(3, 1fr);

    margin-bottom: 25px;

    overflow: hidden;

    border-radius: 15px;

    background: var(--ktc-cream);
}

.ktc-business-details > div {
    min-height: 98px;

    padding: 18px 15px;

    display: flex;
    align-items: flex-start;

    gap: 10px;

    position: relative;
}

.ktc-business-details
> div:not(:last-child)::after {
    content: "";

    position: absolute;

    right: 0;
    top: 20%;

    width: 1px;
    height: 60%;

    background: var(--ktc-border);
}

.ktc-business-details i {
    margin-top: 5px;

    color: var(--ktc-orange);

    font-size: 16px;
}

.ktc-business-details small,
.ktc-business-details strong {
    display: block;
}

.ktc-business-details small {
    margin-bottom: 3px;

    color: var(--ktc-muted);

    font-size: 13px;
}

.ktc-business-details strong {
    color: var(--ktc-dark);

    font-size: 14px;
    line-height: 1.35;
}

.ktc-business-btn {
    min-height: 54px;

    width: 100%;

    border-radius: 12px;

    display: flex;
    align-items: center;
    justify-content: center;

    gap: 10px;

    color: #fff !important;
    background: var(--ktc-orange);

    font-size: 15px;
    font-weight: 700;

    text-decoration: none !important;

    transition: .3s;
}

.ktc-business-btn:hover {
    color: #fff !important;

    background: var(--ktc-orange-dark);
}


/* ============================================================
   WHY PARTNER
============================================================ */

.ktc-partner-wrapper {
    margin-top: 55px;
}

.ktc-partner-wrapper > h3 {
    margin-bottom: 28px;

    color: var(--ktc-dark);

    text-align: center;

    font-size: 25px;
}

.ktc-partner-items {
    display: grid;

    grid-template-columns:
        repeat(6, 1fr);

    gap: 16px;
}

.ktc-partner-items > div {
    min-height: 155px;

    padding: 20px 13px;

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;

    gap: 13px;

    border:
        1px solid var(--ktc-border);

    border-radius: 16px;

    text-align: center;

    transition: .35s;
}

.ktc-partner-items > div:hover {
    transform: translateY(-6px);

    border-color:
        rgba(188,97,44,.4);

    box-shadow: var(--ktc-shadow-soft);
}

.ktc-partner-items > div > span {
    width: 48px;
    height: 48px;

    border-radius: 50%;

    display: flex;
    align-items: center;
    justify-content: center;

    color: var(--ktc-orange);
    background: var(--ktc-cream);

    font-size: 19px;
}

.ktc-partner-items p {
    margin: 0;

    color: var(--ktc-dark);

    font-size: 15px;
    line-height: 1.45;

    font-weight: 600;
}


/* ============================================================
   TERRITORY
============================================================ */

.ktc-territory-new {
    margin-top: 30px;

    padding: 30px;

    display: grid;

    grid-template-columns:
        auto 1fr auto;

    align-items: center;

    gap: 22px;

    border-radius: 20px;

    background:
        linear-gradient(
            90deg,
            #fff1e7,
            #f8e0ce
        );
}

.ktc-territory-new-icon {
    width: 65px;
    height: 65px;

    flex-shrink: 0;

    border-radius: 50%;

    display: flex;
    align-items: center;
    justify-content: center;

    color: #fff;
    background: var(--ktc-orange);

    font-size: 23px;
}

.ktc-territory-new h3 {
    margin: 0 0 6px;

    color: var(--ktc-dark);

    font-size: 22px;
}

.ktc-territory-new p {
    max-width: 650px;

    margin: 0;

    color: var(--ktc-text);

    font-size: 15px;
    line-height: 1.55;
}

.ktc-territory-buttons {
    display: flex;
    align-items: center;

    gap: 9px;
}

.ktc-white-border-btn {
    color: var(--ktc-dark) !important;

    border:
        1px solid var(--ktc-border);

    background: #fff;
}

.ktc-white-border-btn:hover {
    color: #fff !important;

    border-color: var(--ktc-dark);
    background: var(--ktc-dark);
}


/* ============================================================
   PROJECT SOLUTIONS
============================================================ */

.ktc-solutions-section {
    background: var(--ktc-cream);
}

.ktc-ideal-title {
    margin: 27px 0 17px;

    color: var(--ktc-dark);

    font-size: 21px;
}

.ktc-ideal-list {
    display: grid;

    grid-template-columns:
        repeat(2, 1fr);

    gap: 12px;

    margin-bottom: 28px;
}

.ktc-ideal-list > div {
    display: flex;
    align-items: center;

    gap: 10px;

    color: var(--ktc-dark);

    font-size: 15px;
    font-weight: 600;
}

.ktc-ideal-list i {
    width: 27px;
    height: 27px;

    flex-shrink: 0;

    border-radius: 50%;

    display: flex;
    align-items: center;
    justify-content: center;

    color: var(--ktc-orange);
    background: #efdacc;

    font-size: 10px;
}

.ktc-solution-visual {
    position: relative;

    min-height: 580px;
}

.ktc-solution-visual > img {
    width: 92%;
    height: 550px;

    display: block;

    margin-left: auto;

    object-fit: cover;

    border-radius:
        120px 24px
        24px 24px;
}

.ktc-project-floating {
    position: absolute;

    left: 0;
    bottom: 45px;

    padding: 17px 20px;

    display: flex;
    align-items: center;

    gap: 13px;

    border-radius: 15px;

    background: #fff;

    box-shadow: var(--ktc-shadow);
}

.ktc-project-floating > span {
    width: 49px;
    height: 49px;

    flex-shrink: 0;

    border-radius: 12px;

    display: flex;
    align-items: center;
    justify-content: center;

    color: #fff;
    background: var(--ktc-orange);

    font-size: 19px;
}

.ktc-project-floating strong,
.ktc-project-floating small {
    display: block;
}

.ktc-project-floating strong {
    margin-bottom: 3px;

    color: var(--ktc-dark);

    font-size: 15px;
}

.ktc-project-floating small {
    color: var(--ktc-muted);

    font-size: 11px;
}


/* ============================================================
   WHY CHOOSE
============================================================ */

.ktc-why-new {
    position: relative;

    padding: 105px 0;

    overflow: hidden;

    background:
        linear-gradient(
            115deg,
            #2c1c14,
            #4b281a
        );
}

.ktc-why-new::before {
    content: "";

    position: absolute;

    right: -230px;
    top: -220px;

    width: 600px;
    height: 600px;

    border:
        90px solid
        rgba(255,255,255,.025);

    border-radius: 50%;
}

.ktc-why-new .container {
    position: relative;

    z-index: 2;
}

.ktc-small-heading-light {
    color: #eba477;
}

.ktc-small-heading-light > span {
    background: #eba477;
}

.ktc-why-intro h2 {
    margin-bottom: 23px;

    color: #fff;

    font-size: clamp(39px, 4vw, 54px);
    line-height: 1.12;

    letter-spacing: normal;
}

.ktc-why-intro h2 span {
    display: block;

    color: #e79b69;
}

.ktc-why-intro > p {
    margin-bottom: 14px;

    color:
        rgba(255,255,255,.71);

    font-size: 16px;
    line-height: 1.8;
}

.ktc-why-actions {
    margin-top: 28px;

    display: flex;
    flex-wrap: wrap;

    gap: 10px;
}

.ktc-why-card-grid {
    display: grid;

    grid-template-columns:
        repeat(4, 1fr);

    gap: 14px;
}

.ktc-why-feature {
    min-height: 180px;

    padding: 23px 18px;

    border:
        1px solid
        rgba(255,255,255,.10);

    border-radius: 16px;

    background:
        rgba(255,255,255,.065);

    transition: .35s;
}

.ktc-why-feature:hover {
    transform: translateY(-5px);

    background:
        rgba(255,255,255,.11);
}

.ktc-why-feature > span {
    width: 47px;
    height: 47px;

    margin-bottom: 20px;

    border-radius: 12px;

    display: flex;
    align-items: center;
    justify-content: center;

    color: var(--ktc-orange);
    background: #fff1e6;

    font-size: 18px;
}

.ktc-why-feature h3 {
    margin: 0 0 6px;

    color: #fff;

    font-size: 17px;
    line-height: 1.35;
}

.ktc-why-feature p {
    margin: 0;

    color:
        rgba(255,255,255,.77);

    font-size: 14px;
    line-height: 1.5;
}



/* ============================================================
   FINAL CTA
============================================================ */

.ktc-final-cta-wrap {
    padding-top: 0;
}

.ktc-final-cta {
    padding: 36px 40px;

    display: grid;

    grid-template-columns:
        auto 1fr auto;

    align-items: center;

    gap: 24px;

    border-radius: 23px;

    color: #fff;

    background:
        linear-gradient(
            115deg,
            #924019,
            #c26934
        );
}

.ktc-final-cta-icon {
    width: 72px;
    height: 72px;

    flex-shrink: 0;

    border-radius: 50%;

    display: flex;
    align-items: center;
    justify-content: center;

    background:
        rgba(255,255,255,.13);

    font-size: 25px;
}

.ktc-final-cta > div:nth-child(2) > span {
    display: block;

    margin-bottom: 5px;

    color:
        rgba(255,255,255,.7);

    font-size: 13px;

    font-weight: 700;
    letter-spacing: 1px;

    text-transform: uppercase;
}

.ktc-final-cta h2 {
    max-width: 720px;

    margin: 0;

    color: #fff;

    font-size: 27px;
    line-height: 1.35;
}



/* Bootstrap accordion */

.ktc-home-accordion {
    border-top:
        1px solid var(--ktc-border);
}

.ktc-home-accordion .accordion-item {
    border: 0;

    border-bottom:
        1px solid var(--ktc-border);

    border-radius: 0;

    background: transparent;
}

.ktc-home-accordion .accordion-button {
    padding: 24px 5px;

    color: var(--ktc-dark);
    background: transparent;

    box-shadow: none;

    font-size: 17px;
    line-height: 1.5;

    font-weight: 700;
}

.ktc-home-accordion
.accordion-button:not(.collapsed) {
    color: var(--ktc-orange);

    background: transparent;
}

.ktc-home-accordion
.accordion-button::after {
    width: 34px;
    height: 34px;

    flex-shrink: 0;

    border-radius: 50%;

    background-color: #fff;
    background-position: center;
    background-size: 12px;

    box-shadow:
        0 4px 14px rgba(0,0,0,.06);
}

.ktc-home-accordion .accordion-body {
    padding:
        0 50px 24px 5px;

    color: var(--ktc-text);

    font-size: 15px;
    line-height: 1.8;
}



/* ============================================================
   RESPONSIVE
============================================================ */

@media (max-width: 1199px) {

    .ktc-home-section {
        padding: 65px 0;
    }

    .ktc-highlight-wrapper {
        grid-template-columns:
            repeat(3, 1fr);
    }

    .ktc-highlight-item:nth-child(3)::after {
        display: none;
    }

    .ktc-highlight-item:nth-child(-n+3) {
        border-bottom:
            1px solid var(--ktc-border);
    }

    .ktc-partner-items {
        grid-template-columns:
            repeat(3, 1fr);
    }

    .ktc-why-card-grid {
        grid-template-columns:
            repeat(2, 1fr);
    }

}



@media (max-width: 991px) {

    .ktc-home-section {
        padding: 65px 0;
    }

    .ktc-about-visual {
        max-width: 680px;

        margin: auto;
    }

    .ktc-section-title-row {
        grid-template-columns: 1fr;

        gap: 20px;
    }

    .ktc-help-card {
        grid-template-columns:
            auto 1fr;
    }

    .ktc-help-actions {
        grid-column:
            1 / 3;

        margin-left: 90px;
    }

    .ktc-territory-new {
        grid-template-columns:
            auto 1fr;
    }

    .ktc-territory-buttons {
        grid-column:
            1 / 3;

        margin-left: 87px;
    }

    .ktc-solution-visual {
        max-width: 680px;

        margin: auto;
    }

    .ktc-final-cta {
        grid-template-columns:
            auto 1fr;
    }

    .ktc-final-cta > .ktc-white-btn {
        grid-column:
            1 / 3;

        width: max-content;

        margin-left: 96px;
    }

  

}



@media (max-width: 767px) {

    .ktc-home-section {
        padding: 40px 0;
    }

    .ktc-new-home p {
        font-size: 15px;
    }

    .ktc-main-heading {
        font-size: 29px;

        letter-spacing: normal;
    }

    .ktc-small-heading {
        font-size: 12px;
    }


    /* Highlights */

    .ktc-highlight-wrapper {
        grid-template-columns:
            repeat(2, 1fr);
    }

    .ktc-highlight-item {
              min-height: 92px;
        padding: 16px 11px;
        justify-content: flex-start;
    }

    .ktc-highlight-item:nth-child(3)::after {
        display: block;
    }

    .ktc-highlight-item:nth-child(2n)::after {
        display: none;
    }

    .ktc-highlight-item:nth-child(-n+4) {
        border-bottom:
            1px solid var(--ktc-border);
    }

    .ktc-highlight-icon {
        width: 44px;
        height: 44px;

        font-size: 16px;
    }

    .ktc-highlight-item h3 {
        font-size: 20px;
    }

    .ktc-highlight-item p {
        font-size: 11px;
    }


    /* About */

    .ktc-about-new {
        padding-top: 50px;
    }

    .ktc-about-visual {
        min-height: 480px;
    }

    .ktc-about-main-image {
        width: 88%;
        height: 430px;
    }

    .ktc-about-secondary-image {
        width: 50%;
        height: 190px;
    }

    .ktc-about-year {
        left: 0;
        bottom: 45px;

        width: 105px;
        height: 105px;
    }

    .ktc-about-year span {
        font-size: 27px;
    }

    .ktc-about-year p {
        font-size: 9px;
    }

    .ktc-about-floating {
        right: 0;
        top: 25px;
    }

    .ktc-about-benefits {
        grid-template-columns:
            repeat(3, 1fr);
    }

    .ktc-about-benefits > div {
        min-height: 100px;
    }

    .ktc-about-benefits img {
        width: 38px;
        height: 38px;
    }

    .ktc-about-benefits span {
        font-size: 11px;
    }


    /* Products */

    .ktc-product-new-image {
        height: 280px;
    }

    .ktc-product-new-content > p {
        min-height: auto;
    }

    .ktc-help-card {
        grid-template-columns: 1fr;

        text-align: center;
    }

    .ktc-help-icon {
        margin: auto;
    }

    .ktc-help-actions {
        grid-column: auto;

        margin: 0;

        display: grid;
    }


    /* Stockist */

    .ktc-business-card {
        padding: 26px 20px;
    }

    .ktc-business-details {
        grid-template-columns: 1fr;
    }

    .ktc-business-details
    > div:not(:last-child)::after {
        left: 10%;
        right: auto;

        top: auto;
        bottom: 0;

        width: 80%;
        height: 1px;
    }

    .ktc-partner-items {
        grid-template-columns:
            repeat(2, 1fr);
    }

    .ktc-territory-new {
        grid-template-columns: 1fr;

        text-align: center;
    }

    .ktc-territory-new-icon {
        margin: auto;
    }

    .ktc-territory-buttons {
        grid-column: auto;

        margin: 0;

        display: grid;
    }


    /* Solutions */

    .ktc-ideal-list {
        grid-template-columns: 1fr;
    }

    .ktc-solution-visual {
        min-height: 450px;
    }

    .ktc-solution-visual > img {
        width: 100%;
        height: 420px;

        border-radius:
            75px 18px
            18px 18px;
    }

    .ktc-project-floating {
        left: 15px;
        right: 15px;
        bottom: -15px;
    }


    /* Why */

    .ktc-why-new {
        padding: 70px 0;
    }

    .ktc-why-intro h2 {
        font-size: 27px;
    }

    .ktc-why-card-grid {
        grid-template-columns:
            repeat(2, 1fr);
    }

    .ktc-why-feature {
        text-align: center;
            padding: 18px 10px;
    }


   .ktc-why-feature > span {
    margin: 0px auto 12px auto;
   }

    /* Final CTA */

    .ktc-final-cta {
        grid-template-columns: 1fr;

        padding: 30px 22px;

        text-align: center;
    }

    .ktc-final-cta-icon {
        margin: auto;
    }

    .ktc-final-cta > .ktc-white-btn {
        grid-column: auto;

        width: 100%;

        margin: 0;
    }

    .ktc-final-cta h2 {
        font-size: 22px;
    }


  


}



@media (max-width: 480px) {

    .ktc-main-heading {
        font-size: 27px;
    }

 

    .ktc-highlight-item {
        border-bottom:
            1px solid var(--ktc-border) !important;
    }

    .ktc-highlight-item:last-child {
        border-bottom: 0 !important;
    }

    .ktc-highlight-item::after {
        display: none !important;
    }



    .ktc-about-benefits
    > div:not(:last-child)::after {
        left: 10%;
        right: auto;

        top: auto;
        bottom: 0;

        width: 80%;
        height: 1px;
    }

    .ktc-partner-items {
        grid-template-columns:
            repeat(2, 1fr);
    }

    .ktc-partner-items > div {
        min-height: 140px;

        padding: 15px 8px;
    }

    .ktc-partner-items p {
        font-size: 12px;
    }

    .ktc-why-card-grid {
        grid-template-columns: 1fr;
    }

}



/* ============================================================
   FAQ PREMIUM DESIGN
============================================================ */

.ktc-faq-premium {
    position: relative;

    overflow: visible;

    background:
        linear-gradient(
            135deg,
            #fbf7f3 0%,
            #ffffff 55%,
            #fbf4ee 100%
        );
}


/* Left Sticky */

.ktc-faq-sticky {
    position: sticky;

    top: 120px;

    padding-right: 45px;
}


.ktc-faq-intro-text {
    max-width: 455px;

    margin:
        22px 0 0;

    color:
        var(--ktc-text);

    font-size: 17px;
    line-height: 1.8;
}


/* Support Card */

.ktc-faq-support-card {
    position: relative;

    max-width: 420px;

    margin-top: 32px;

    padding:
        23px 24px;

    overflow: hidden;

    border-radius: 18px;

    display: flex;
    align-items: center;

    gap: 16px;

    background:
        linear-gradient(
            135deg,
            #923f19,
            #c76a35
        );

    box-shadow:
        0 18px 40px
        rgba(130,57,22,.17);
}


.ktc-faq-support-card::after {
    content: "";

    position: absolute;

    width: 140px;
    height: 140px;

    right: -55px;
    top: -70px;

    border:
        25px solid
        rgba(255,255,255,.06);

    border-radius: 50%;
}


.ktc-faq-support-icon {
    width: 58px;
    height: 58px;

    flex-shrink: 0;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    color:
        var(--ktc-orange);

    background: #fff;

    font-size: 21px;
}


.ktc-faq-support-card > div:last-child {
    position: relative;

    z-index: 2;
}


.ktc-faq-support-card span {
    display: block;

    margin-bottom: 2px;

    color:
        rgba(255,255,255,.7);

    font-size: 13px;

    letter-spacing: .5px;
}


.ktc-faq-support-card h3 {
    margin:
        0 0 4px;

    color: #fff;

    font-size: 18px;
}


.ktc-faq-support-card a {
    color: #fff !important;

    font-size: 16px;
    font-weight: 700;

    text-decoration: none !important;
}


/* Mini Feature List */

.ktc-faq-mini-note {
    max-width: 430px;

    margin-top: 25px;

    display: flex;
    align-items: center;

    gap: 8px;

    flex-wrap: wrap;
}


.ktc-faq-mini-note i {
    color:
        var(--ktc-orange);

    font-size: 15px;
}


.ktc-faq-mini-note span {
    margin-right: 10px;

    color:
        var(--ktc-dark);

    font-size: 14px;
    font-weight: 600;
}



/* ============================================================
   FAQ RIGHT
============================================================ */

.ktc-faq-list {
    display: flex;
    flex-direction: column;

    gap: 13px;
}


/* Each card */

.ktc-faq-card {
    position: relative;

    overflow: hidden;

    border:
        1px solid #ebe1da;

    border-radius: 17px;

    background: #fff;

    box-shadow:
        0 5px 20px
        rgba(46,30,20,.035);

    transition:
        border-color .3s ease,
        box-shadow .3s ease,
        transform .3s ease;
}


.ktc-faq-card:hover {
    border-color:
        rgba(188,97,44,.28);

    box-shadow:
        0 12px 30px
        rgba(46,30,20,.07);
}


.ktc-faq-card.active {
    border-color:
        rgba(188,97,44,.35);

    background:
        linear-gradient(
            135deg,
            #ffffff,
            #fffaf6
        );

    box-shadow:
        0 18px 40px
        rgba(83,49,29,.09);
}


/* Accent on active */

.ktc-faq-card.active::before {
    content: "";

    position: absolute;

    left: 0;
    top: 0;
    bottom: 0;

    width: 4px;

    background:
        var(--ktc-orange);
}


/* Question button */

.ktc-faq-question {
    width: 100%;

    min-height: 94px;

    padding:
        19px 20px;

    display: grid;

    grid-template-columns:
        49px 1fr 45px;

    align-items: center;

    gap: 17px;

    border: 0;

    outline: 0;

    color:
        var(--ktc-dark);

    background:
        transparent;

    text-align: left;

    cursor: pointer;
}


/* Question number */

.ktc-faq-number {
    width: 49px;
    height: 49px;

    border-radius: 12px;

    display: flex;
    align-items: center;
    justify-content: center;

    color:
        var(--ktc-orange);

    background:
        #fff2e9;

    font-size: 13px;
    font-weight: 800;

    transition:
        .3s ease;
}


.ktc-faq-card.active
.ktc-faq-number {
    color: #fff;

    background:
        var(--ktc-orange);
}


/* Question text */

.ktc-faq-question-text {
    color:
        var(--ktc-dark);

    font-size: 17px;
    line-height: 1.5;

    font-weight: 700;

    transition: .3s;
}


.ktc-faq-card.active
.ktc-faq-question-text {
    color:
        var(--ktc-orange-dark);
}


/* Plus */

.ktc-faq-toggle {
    width: 43px;
    height: 43px;

    border:
        1px solid var(--ktc-border);

    border-radius: 50%;

    display: flex;
    align-items: center;
    justify-content: center;

    color:
        var(--ktc-orange);

    background: #fff;

    font-size: 13px;

    transition:
        .35s ease;
}


.ktc-faq-card.active
.ktc-faq-toggle {
    color: #fff;

    border-color:
        var(--ktc-orange);

    background:
        var(--ktc-orange);

    transform:
        rotate(45deg);
}


/* FAQ answer animation */

.ktc-faq-answer {
    max-height: 0;

    overflow: hidden;

    opacity: 0;

    transition:
        max-height .45s ease,
        opacity .35s ease;
}


.ktc-faq-card.active
.ktc-faq-answer {
    max-height: 350px;

    opacity: 1;
}


.ktc-faq-answer-inner {
    padding:
        0 75px
        25px 86px;
}


.ktc-faq-answer-inner p {
    margin: 0;

    padding-top: 2px;

    color:
        var(--ktc-text);

    font-size: 15px;
    line-height: 1.8;
}



/* ============================================================
   RESPONSIVE
============================================================ */

@media (max-width: 1199px) {



    .ktc-faq-sticky {
        padding-right: 20px;
    }

}


@media (max-width: 991px) {

  

    .ktc-faq-sticky {
        position: relative;

        top: auto;

        padding-right: 0;

        margin-bottom: 10px;
    }


    .ktc-faq-support-card {
        max-width: 100%;
    }

}


@media (max-width: 767px) {



    /* FAQ */

    .ktc-faq-question {
        min-height: 85px;

        padding:
            16px 15px;

        grid-template-columns:
            42px 1fr 39px;

        gap: 12px;
    }


    .ktc-faq-number {
        width: 42px;
        height: 42px;

        font-size: 11px;
    }


    .ktc-faq-question-text {
        font-size: 15px;
    }


    .ktc-faq-toggle {
        width: 38px;
        height: 38px;
    }


    .ktc-faq-answer-inner {
        padding:
            0 20px
            22px 69px;
    }


    .ktc-faq-answer-inner p {
        font-size: 14px;
    }


    .ktc-faq-support-card {
        padding:
            20px;
    }

}


@media (max-width: 480px) {

 

    .ktc-faq-question {
        grid-template-columns:
            38px 1fr 36px;

        gap: 9px;

        padding:
            14px 12px;
    }


    .ktc-faq-number {
        width: 38px;
        height: 38px;

        border-radius: 9px;
    }


    .ktc-faq-toggle {
        width: 35px;
        height: 35px;
    }


    .ktc-faq-question-text {
        font-size: 14px;
    }


    .ktc-faq-answer-inner {
        padding:
            0 15px
            19px 59px;
    }

}


/* ============================================================
   KTC PROJECTS SWIPER
============================================================ */

.ktc-projects-swiper-section {
    position: relative;

    padding: 105px 0;

    overflow: hidden;

    background:
        linear-gradient(
            180deg,
            #ffffff 0%,
            #fdf9f6 100%
        );
}


/* soft background decoration */

.ktc-projects-swiper-section::before {
    content: "";

    position: absolute;

    left: -220px;
    top: 170px;

    width: 430px;
    height: 430px;

    border: 75px solid rgba(188,97,44,.035);

    border-radius: 50%;

    pointer-events: none;
}


/* ============================================================
   HEADER
============================================================ */

.ktc-projects-swiper-header {
    position: relative;

    z-index: 3;

    display: grid;

    grid-template-columns:
        minmax(0, 1.1fr)
        minmax(320px, .9fr);

    align-items: end;

    gap: 80px;

    margin-bottom: 48px;
}


.ktc-projects-title-side
.ktc-main-heading {
    max-width: 650px;
}


.ktc-projects-intro-side {
    padding-bottom: 4px;
}


.ktc-projects-intro-side p {
    max-width: 560px;

    margin: 0 0 20px;

    color: var(--ktc-text);

    font-size: 18px;
    line-height: 1.75;
}


.ktc-projects-all-btn {
    min-height: 50px;

    padding: 0 23px;

    border-radius: 50px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    gap: 9px;

    border: 1px solid rgba(188,97,44,.22);

    color: var(--ktc-orange) !important;

    background: #fff4ec;

    font-size: 15px;
    font-weight: 700;

    text-decoration: none !important;

    transition: all .3s ease;
}


.ktc-projects-all-btn i {
    transition: transform .3s ease;
}


.ktc-projects-all-btn:hover {
    color: #fff !important;

    border-color: var(--ktc-orange);

    background: var(--ktc-orange);

    transform: translateY(-2px);

    box-shadow:
        0 12px 30px
        rgba(188,97,44,.18);
}


.ktc-projects-all-btn:hover i {
    transform: translateX(4px);
}


/* ============================================================
   SLIDER
============================================================ */

.ktc-project-slider-area {
    position: relative;

    z-index: 3;
}


.ktc-project-slider-inner {
    position: relative;

    padding:
        10px 5px 20px;
}


.ktcProjectSwiper {
    width: 100%;

    overflow: hidden;

    padding:
        5px 4px 25px;
}


.ktcProjectSwiper
.swiper-wrapper {
    align-items: stretch;
}


.ktcProjectSwiper
.swiper-slide {
    height: auto;

    display: flex;
}


/* ============================================================
   PROJECT CARD
============================================================ */

.ktc-swiper-project-card {
    position: relative;

    width: 100%;
    height: 465px;

    display: block;

    overflow: hidden;

    border-radius: 24px;

    background: #ddd;

    border:
        1px solid rgba(62,39,25,.08);

    box-shadow:
        0 12px 35px
        rgba(46,28,18,.08);

    text-decoration: none !important;

    transition:
        transform .45s ease,
        box-shadow .45s ease,
        border-color .3s ease;
}


.ktc-swiper-project-card:hover {
    transform: translateY(-8px);

    border-color:
        rgba(188,97,44,.25);

    box-shadow:
        0 26px 55px
        rgba(46,28,18,.15);
}


/* ============================================================
   IMAGE
============================================================ */

.ktc-swiper-project-image {
    position: absolute;

    inset: 0;

    overflow: hidden;
}


.ktc-swiper-project-image img {
    width: 100%;
    height: 100%;

    display: block;

    object-fit: cover;

    transition:
        transform .8s
        cubic-bezier(.2,.8,.2,1);
}


.ktc-swiper-project-card:hover
.ktc-swiper-project-image img {
    transform: scale(1.07);
}


/* ============================================================
   OVERLAY
============================================================ */

.ktc-swiper-project-overlay {
    position: absolute;

    z-index: 2;

    inset: 0;

    background:
        linear-gradient(
            180deg,
            rgba(21,13,9,.02) 20%,
            rgba(21,13,9,.05) 48%,
            rgba(24,15,10,.90) 100%
        );

    transition: .4s;
}


.ktc-swiper-project-card:hover
.ktc-swiper-project-overlay {
    background:
        linear-gradient(
            180deg,
            rgba(21,13,9,.01) 15%,
            rgba(21,13,9,.08) 45%,
            rgba(24,15,10,.94) 100%
        );
}


/* ============================================================
   NUMBER
============================================================ */

.ktc-swiper-project-number {
    position: absolute;

    z-index: 5;

    top: 20px;
    right: 20px;

    width: 48px;
    height: 48px;

    border-radius: 50%;

    display: flex;
    align-items: center;
    justify-content: center;

    border:
        1px solid rgba(255,255,255,.30);

    color: #fff;

    background:
        rgba(31,21,15,.38);

    backdrop-filter: blur(8px);

    -webkit-backdrop-filter: blur(8px);

    font-size: 13px;
    font-weight: 700;
}


/* ============================================================
   CARD CONTENT
============================================================ */

.ktc-swiper-project-content {
    position: absolute;

    z-index: 5;

    left: 0;
    right: 0;
    bottom: 0;

    padding:
        29px 27px;

    display: flex;
    align-items: flex-end;
    justify-content: space-between;

    gap: 20px;
}


.ktc-swiper-project-content
> div {
    min-width: 0;
}


.ktc-swiper-project-content
> div > span {
    display: block;

    margin-bottom: 7px;

    color:
        rgba(255,255,255,.72);

    font-size: 11px;
    line-height: 1.3;

    font-weight: 700;

    letter-spacing: 1px;

    text-transform: uppercase;
}


.ktc-swiper-project-content h3 {
    margin: 0;

    color: #fff;

    font-size: 24px;
    line-height: 1.3;

    font-weight: 700;

    letter-spacing: -.3px;
}


/* ============================================================
   OPEN ICON
============================================================ */

.ktc-swiper-project-icon {
    width: 48px;
    height: 48px;

    flex: 0 0 48px;

    border-radius: 50%;

    display: flex;
    align-items: center;
    justify-content: center;

    color: var(--ktc-dark);

    background: #fff;

    box-shadow:
        0 6px 20px
        rgba(0,0,0,.15);

    font-size: 13px;

    transition:
        all .35s ease;
}


.ktc-swiper-project-card:hover
.ktc-swiper-project-icon {
    color: #fff;

    background: var(--ktc-orange);

    transform: rotate(45deg);
}


/* ============================================================
   PREVIOUS / NEXT BUTTONS
============================================================ */

.ktc-project-swiper-prev,
.ktc-project-swiper-next {
    position: absolute;

    z-index: 20;

    top: 50%;

    width: 42px;
    height: 42px;

    padding: 0;
    margin: 0;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    border:
        1px solid rgba(188,97,44,.20);

    color: var(--ktc-orange);

    background:
        rgba(255,255,255,.98);

    box-shadow:
        0 12px 35px
        rgba(41,26,17,.16);

    font-size: 15px;

    cursor: pointer;

    transform: translateY(-50%);

    transition:
        all .3s ease;
}


.ktc-project-swiper-prev {
    left: -31px;
}


.ktc-project-swiper-next {
    right: -31px;
}


.ktc-project-swiper-prev:hover,
.ktc-project-swiper-next:hover {
    color: #fff;

    border-color:
        var(--ktc-orange);

    background:
        var(--ktc-orange);

    box-shadow:
        0 14px 35px
        rgba(188,97,44,.30);
}


.ktc-project-swiper-prev:hover {
    transform:
        translateY(-50%)
        translateX(-3px);
}


.ktc-project-swiper-next:hover {
    transform:
        translateY(-50%)
        translateX(3px);
}


/* disabled */

.ktc-project-swiper-prev.swiper-button-disabled,
.ktc-project-swiper-next.swiper-button-disabled {
    opacity: .4;

    cursor: default;
}


/* ============================================================
   PAGINATION / COUNTER
============================================================ */

.ktc-project-swiper-bottom {
    margin-top: 15px;

    display: grid;

    grid-template-columns:
        1fr auto;

    align-items: center;

    gap: 30px;
}


/* swiper pagination */

.ktc-project-swiper-pagination {
    position: relative !important;

    left: auto !important;
    right: auto !important;
    bottom: auto !important;

    width: 100% !important;

    display: flex;

    gap: 6px;
}


.ktc-project-swiper-pagination
.swiper-pagination-bullet {
    flex: 1;

    width: auto;
    height: 4px;

    margin: 0 !important;

    border-radius: 20px;

    opacity: 1;

    background:
        #e8dcd3;

    transition:
        background .3s ease;
}


.ktc-project-swiper-pagination
.swiper-pagination-bullet-active {
    background:
        var(--ktc-orange);
}


/* counter */

.ktc-project-swiper-counter {
    min-width: 85px;

    display: flex;
    align-items: center;
    justify-content: flex-end;

    gap: 8px;

    color:
        var(--ktc-muted);

    font-size: 14px;
}


.ktc-project-swiper-counter
#ktcProjectCurrent {
    color: var(--ktc-dark);

    font-size: 23px;

    font-weight: 700;
}


.ktc-project-swiper-counter strong {
    color:
        var(--ktc-muted);

    font-size: 14px;

    font-weight: 600;
}


.ktc-project-swiper-counter small {
    font-size: 12px;
}


/* ============================================================
   LARGE SCREEN
============================================================ */

@media (min-width: 1400px) {

    .ktc-swiper-project-card {
        height: 485px;
    }

}


/* ============================================================
   1200
============================================================ */

@media (max-width: 1199px) {

    .ktc-projects-swiper-section {
        padding:
            90px 0;
    }


    .ktc-projects-swiper-header {
        gap: 45px;
    }


    .ktc-swiper-project-card {
        height: 450px;
    }


    .ktc-project-swiper-prev,
    .ktc-project-swiper-next {
        width: 42px;
        height: 42px;
    }


    .ktc-project-swiper-prev {
        left: -15px;
    }


    .ktc-project-swiper-next {
        right: -15px;
    }

}


/* ============================================================
   991
============================================================ */

@media (max-width: 991px) {

    .ktc-projects-swiper-section {
        padding:
            75px 0;
    }


    .ktc-projects-swiper-header {
        grid-template-columns: 1fr;

        gap: 20px;

        margin-bottom: 35px;
    }


    .ktc-projects-intro-side {
        max-width: 700px;
    }


    .ktc-swiper-project-card {
        height: 425px;
    }





    .ktc-project-swiper-prev {
        left: -5px;
    }


    .ktc-project-swiper-next {
        right: -5px;
    }

}


/* ============================================================
   MOBILE
============================================================ */

@media (max-width: 767px) {

    .ktc-projects-swiper-section {
        padding:
            60px 0;
    }


    .ktc-projects-intro-side p {
        font-size: 15px;

        line-height: 1.7;
    }


    .ktc-projects-all-btn {
        min-height: 46px;

        padding:
            0 18px;

        font-size: 13px;
    }


    .ktc-project-slider-inner {
        padding:
            5px 0 15px;
    }


    .ktcProjectSwiper {
        padding:
            5px 1px 18px;
    }


    .ktc-swiper-project-card {
        height: 390px;

        border-radius: 19px;
    }


    .ktc-swiper-project-content {
        padding:
            23px 20px;
    }


    .ktc-swiper-project-content h3 {
        font-size: 21px;
    }


    .ktc-swiper-project-number {
        width: 43px;
        height: 43px;

        top: 15px;
        right: 15px;
    }


    .ktc-swiper-project-icon {
        width: 43px;
        height: 43px;

        flex-basis: 43px;
    }


    .ktc-project-swiper-prev,
    .ktc-project-swiper-next {
        width: 36px;
        height: 36px;

        font-size: 14px;

        background:
            rgba(255,255,255,.94);
    }


    .ktc-project-swiper-prev {
        left: 8px;
    }


    .ktc-project-swiper-next {
        right: 8px;
    }


    .ktc-project-swiper-bottom {
        margin-top: 8px;

        gap: 18px;
    }


    .ktc-project-swiper-counter
    #ktcProjectCurrent {
        font-size: 20px;
    }

}


/* ============================================================
   SMALL MOBILE
============================================================ */

@media (max-width: 480px) {

    .ktc-projects-swiper-section {
        padding:
            55px 0;
    }


    .ktc-swiper-project-card {
        height: 365px;
    }


    .ktc-swiper-project-content {
        padding:
            20px 18px;
    }


    .ktc-swiper-project-content
    > div > span {
        font-size: 10px;
    }


    .ktc-swiper-project-content h3 {
        font-size: 19px;
    }



    .ktc-project-swiper-prev {
        left: 5px;
    }


    .ktc-project-swiper-next {
        right: 5px;
    }

}

/* ============================================================
   STOCKIST BANNER - REFERENCE IMAGE STYLE
============================================================ */

.ktc-stockist-ref-banner {
    position: relative;

    width: 100%;
    min-height: 350px;

    overflow: hidden;

    border-radius: 0;

    background:
        linear-gradient(
            110deg,
            #fffaf6 0%,
            #fff8f3 48%,
            #f8fbfd 100%
        );

    box-shadow:
        0 3px 15px rgba(60, 40, 30, .05);
}


/* ============================================================
   LEFT CONTENT
============================================================ */

.ktc-stockist-ref-content {
    position: relative;
    z-index: 6;

    width: 52%;
    min-height: 350px;

    display: flex;
    align-items: center;
    padding: 30px 32px 30px 40px;

}


/*
    IMPORTANT:
    your existing .ktc-center-title is centered,
    so override only inside this banner
*/

.ktc-stockist-ref-content
.ktc-center-title {
    max-width: 610px;

    margin: 0;

    text-align: left;
}


/* heading */

.ktc-stockist-ref-content
.ktc-main-heading {
    max-width: 570px;

    margin: 0 0 10px;

    color: #252321;

    font-size: 42px;
    line-height: 1.08;

    font-weight: 700;

    letter-spacing: -1px;
}


.ktc-stockist-ref-content
.ktc-main-heading span {
    display: block;

    color: #252321;
}


/* Grow With */

.ktc-stockist-ref-content
.ktc-center-title h4 {
    margin: 0 0 9px;

    color: #e65f19;

    font-size: 21px;
    line-height: 1.3;

    font-weight: 700;
}


/* orange underline */

.ktc-stockist-orange-line {
    width: 57px;
    height: 3px;

    margin-bottom: 15px;

    border-radius: 20px;

    background: #e65f19;
}


/* paragraph */

.ktc-stockist-ref-content
.ktc-center-title > p {
    max-width: 540px;

    margin: 0;

    color: #575451;

    font-size: 14px;
    line-height: 1.65;

    font-weight: 400;
}


/* ============================================================
   DOT PATTERN - LEFT BOTTOM
============================================================ */

.ktc-stockist-ref-content::before {
    content: "";

    position: absolute;

    z-index: -1;

    left: -15px;
    bottom: 20px;

    width: 180px;
    height: 110px;

    opacity: .45;

    background-image:
        radial-gradient(
            #efb18b 1.2px,
            transparent 1.2px
        );

    background-size:
        10px 10px;
}


/* ============================================================
   RIGHT IMAGE
============================================================ */

.ktc-stockist-ref-image {
    position: absolute;

    z-index: 2;

    top: 0;
    right: 0;

    width: 53%;
    height: 100%;

    overflow: hidden;

    /*
       THIS IS THE MAIN PART
       creates the large diagonal image edge
    */

    clip-path:
        polygon(
            20% 0,
            100% 0,
            100% 100%,
            0 100%
        );
}


.ktc-stockist-ref-image img {
    width: 100%;
    height: 100%;

    display: block;

    object-fit: cover;
object-position: left;
}


/* ============================================================
   DIAGONAL WHITE / LIGHT BLUE LAYERS
============================================================ */

/* large white diagonal */

.ktc-stockist-diagonal-one {
    position: absolute;

    z-index: 4;

    top: 0;

    left: 48%;

    width: 100px;
    height: 100%;

    background:
        rgba(255,255,255,.92);

    clip-path:
        polygon(
            68% 0,
            100% 0,
            32% 100%,
            0 100%
        );

    pointer-events: none;
}


/* ============================================================
   HOVER - VERY SUBTLE
============================================================ */

.ktc-stockist-ref-image img {
    transition:
        transform .8s ease;
}


.ktc-stockist-ref-banner:hover
.ktc-stockist-ref-image img {
    transform:
        scale(1.025);
}


/* ============================================================
   LAPTOP
============================================================ */

@media (max-width: 1199px) {

    .ktc-stockist-ref-banner {
        min-height: 330px;
    }


    .ktc-stockist-ref-content {
        width: 54%;

        min-height: 330px;

        padding:30px;
    }


    .ktc-stockist-ref-image {
        width: 50%;
    }


    .ktc-stockist-ref-content
    .ktc-main-heading {
        font-size: 37px;
    }


    .ktc-stockist-ref-content
    .ktc-center-title > p {
        max-width: 480px;

        font-size: 13px;
    }

}


/* ============================================================
   TABLET
============================================================ */

@media (max-width: 991px) {

    .ktc-stockist-ref-banner {
        min-height: auto;

        display: flex;
        flex-direction: column;
    }


    .ktc-stockist-ref-content {
        width: 100%;
        min-height: auto;

        padding:
            45px 35px;
    }


    .ktc-stockist-ref-image {
        position: relative;

        width: 100%;
        height: 360px;

        clip-path: none;
    }


    .ktc-stockist-diagonal-one,
    .ktc-stockist-diagonal-two {
        display: none;
    }


    .ktc-stockist-ref-content
    .ktc-main-heading {
        font-size: 38px;
    }

}


/* ============================================================
   MOBILE
============================================================ */

@media (max-width: 767px) {

    .ktc-stockist-ref-content {
        padding:
            35px 0px;
    }


    .ktc-stockist-ref-content
    .ktc-main-heading {
        font-size: 32px;
    }


    .ktc-stockist-ref-content
    .ktc-center-title h4 {
        font-size: 19px;
    }


    .ktc-stockist-ref-content
    .ktc-center-title > p {
        font-size: 14px;

        line-height: 1.7;
    }


    .ktc-stockist-ref-image {
        height: 300px;
    }

}


/* ============================================================
   SMALL MOBILE
============================================================ */

@media (max-width: 480px) {

    .ktc-stockist-ref-content {
        padding:
            30px 0px;
    }


    .ktc-stockist-ref-content
    .ktc-main-heading {
        font-size: 29px;
    }


    .ktc-stockist-ref-content
    .ktc-center-title h4 {
        font-size: 18px;
    }


    .ktc-stockist-ref-image {
        height: 250px;
    }

}