/* =========================================================
   BABA HOSIERY
   COMMON PRODUCT + ABOUT + COUNTER CSS
   ========================================================= */


/* =========================
   BOX SIZING
   ========================= */

.bh-products-section,
.bh-products-section *,
.bh-products-section *::before,
.bh-products-section *::after,
.bh-about,
.bh-about *,
.bh-about *::before,
.bh-about *::after,
.bh-counter-section,
.bh-counter-section *,
.bh-counter-section *::before,
.bh-counter-section *::after {
    box-sizing: border-box;
}


/* =========================================================
   PRODUCT SECTION
   ========================================================= */

.bh-products-section {
    width: 100%;
    margin: 0;
    padding: 30px 20px;
    background: #f7faf9;
}


/* =========================
   COMMON CONTAINER
   ========================= */

.bh-container {
    width: 100%;
    max-width: 1450px;
    margin: 0 auto;
}


/* =========================
   SECTION HEADING
   ========================= */

.bh-section-heading {
    max-width: 720px;
    margin: 0 auto 35px;
    text-align: center;
}

.bh-section-tag {
    display: inline-flex;
    align-items: center;
    margin: 0 0 10px;
    padding: 7px 15px;
    border-radius: 50px;
    background: #8dc1b0;
    color: #0e585b;
    font-size: 11px;
    line-height: 1.3;
    font-weight: 800;
    letter-spacing: 1.5px;
    text-transform: uppercase;
}

.bh-section-heading h2 {
    margin: 0 0 10px;
    padding: 0;
    color: #0e585b;
    font-size: clamp(32px, 4vw, 48px);
    line-height: 1.15;
    font-weight: 800;
}

.bh-section-heading p {
    max-width: 650px;
    margin: 0 auto;
    padding: 0;
    color: #526b6b;
    font-size: 16px;
    line-height: 1.7;
}


/* =========================================================
   PRODUCT GRID
   ========================================================= */

.bh-products-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 24px;
}


/* =========================
   T-SHIRT / 5 COLUMN
   ========================= */

.bh-tshirt-section .bh-products-grid {
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 16px;
}


/* =========================================================
   PRODUCT CARD
   ========================================================= */

.bh-product-card {
    position: relative;
    display: flex;
    flex-direction: column;
    width: 100%;
    min-width: 0;
    overflow: hidden;

    background: #ffffff;
    border: 1px solid rgba(14, 88, 91, 0.10);
    border-radius: 12px;

    box-shadow: 0 8px 28px rgba(14, 88, 91, 0.07);

    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease;
}

.bh-product-card:hover {
    transform: translateY(-5px);

    box-shadow:
        0 16px 35px rgba(14, 88, 91, 0.14);
}


/* =========================================================
   PRODUCT IMAGE
   COMMON FOR ALL PRODUCTS
   ========================================================= */

.bh-product-image {
    position: relative;
    width: 100%;
    aspect-ratio: 3 / 4;
    overflow: hidden;
    background: #f5f7f6;
}

.bh-product-image img {
    display: block;

    width: 100%;
    height: 100%;

    margin: 0;
    padding: 0;
    border: 0;

    object-fit: contain;
    object-position: center;

    transition: transform 0.45s ease;
}

.bh-product-card:hover .bh-product-image img {
    transform: scale(1.025);
}


/* =========================================================
   PRODUCT BADGE
   ========================================================= */

.bh-product-badge {
    position: absolute;
    top: 14px;
    left: 14px;

    z-index: 3;

    display: inline-flex;
    align-items: center;

    padding: 7px 12px;

    border-radius: 5px;

    background: #0e585b;
    color: #ffffff;

    font-size: 10px;
    line-height: 1;
    font-weight: 800;

    letter-spacing: 0.8px;
    text-transform: uppercase;
}


/* =========================================================
   PRODUCT CONTENT
   ========================================================= */

.bh-product-content {
    display: flex;
    flex-direction: column;
    flex: 1;

    padding: 20px 18px 18px;
}


/* =========================================================
   PRODUCT TITLE
   ========================================================= */

.bh-product-title {
    margin: 0 0 7px;
    padding: 0;

    color: #0e585b;

    font-size: 19px;
    line-height: 1.3;
    font-weight: 700;
}


/* =========================================================
   PRODUCT BRAND
   ========================================================= */

.bh-product-brand {
    margin: 0 0 10px;

    color: #718080;

    font-size: 13px;
    line-height: 1.3;
    font-weight: 600;

    text-transform: capitalize;
}


/* =========================================================
   PRODUCT PRICE
   ========================================================= */

.bh-product-price {
    margin: 0 0 17px;

    color: #0e585b;

    font-size: 23px;
    line-height: 1.2;
    font-weight: 800;
}


/* =========================================================
   PRODUCT INFO
   ========================================================= */

.bh-product-info {
    display: flex;
    flex-direction: column;

    gap: 5px;
    margin: 0 0 18px;
}

.bh-info-label {
    color: #718080;

    font-size: 12px;
    line-height: 1.3;
    font-weight: 600;

    letter-spacing: 0.7px;
    text-transform: uppercase;
}

.bh-sizes {
    color: #253f40;

    font-size: 15px;
    line-height: 1.4;
    font-weight: 700;
}


/* =========================================================
   BUY NOW BUTTON
   ========================================================= */

.bh-buy-btn {
    display: flex;

    align-items: center;
    justify-content: center;

    gap: 10px;

    width: 100%;
    min-height: 48px;

    margin-top: auto;
    padding: 11px 16px;

    border: 2px solid #0e585b;
    border-radius: 7px;

    background: #0e585b;
    color: #ffffff;

    font-size: 16px;
    line-height: 1.3;
    font-weight: 700;

    text-decoration: none;
    cursor: pointer;

    transition:
        background 0.25s ease,
        border-color 0.25s ease,
        color 0.25s ease,
        transform 0.25s ease,
        box-shadow 0.25s ease;
}

.bh-buy-btn:hover {
    background: #8dc1b0;
    border-color: #8dc1b0;
    color: #0e585b;

    transform: translateY(-2px);

    box-shadow:
        0 8px 18px rgba(14, 88, 91, 0.18);
}


/* =========================================================
   BUTTON ARROW
   ========================================================= */

.bh-btn-arrow {
    display: block;

    width: 18px;
    height: 18px;

    fill: none;

    stroke: currentColor;
    stroke-width: 2;

    stroke-linecap: round;
    stroke-linejoin: round;

    flex-shrink: 0;

    transition: transform 0.25s ease;
}

.bh-buy-btn:hover .bh-btn-arrow {
    transform: translateX(4px);
}


/* =========================================================
   VIEW ALL PRODUCTS BUTTON
   ========================================================= */

.bh-view-all-wrap {
    display: flex;
    justify-content: center;
    margin-top: 30px;
}

.bh-view-all-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    gap: 10px;

    padding: 13px 26px;

    background: #0e585b;
    border: 2px solid #0e585b;
    border-radius: 7px;

    color: #ffffff;

    font-size: 16px;
    line-height: 1.3;
    font-weight: 700;

    text-decoration: none;

    transition: all 0.25s ease;
}

.bh-view-all-btn:hover {
    background: #8dc1b0;
    border-color: #8dc1b0;
    color: #0e585b;
}

.bh-view-all-btn .bh-btn-arrow {
    transition: transform 0.25s ease;
}

.bh-view-all-btn:hover .bh-btn-arrow {
    transform: translateX(4px);
}


/* =========================================================
   ABOUT SECTION
   ========================================================= */

.bh-about {
    width: 100%;
    margin: 0;
    padding: 30px 20px;
    background: #ffffff;
    overflow: hidden;
}


/* =========================
   ABOUT CONTAINER
   ========================= */

.bh-about-container {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;

    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);

    align-items: center;
    gap: 60px;
}


/* =========================
   ABOUT CONTENT
   ========================= */

.bh-about-content {
    position: relative;
    width: 100%;
}


/* =========================
   ABOUT TAG
   ========================= */

.bh-about-tag {
    display: inline-flex;
    align-items: center;

    margin: 0 0 15px;
    padding: 8px 17px;

    background: rgba(14, 88, 91, 0.09);
    border-left: 4px solid #0e585b;

    color: #0e585b;

    font-size: 13px;
    line-height: 1.4;
    font-weight: 800;

    letter-spacing: 1.4px;
    text-transform: uppercase;
}


/* =========================
   ABOUT HEADING
   ========================= */

.bh-about-content h2 {
    margin: 0 0 18px;
    padding: 0;

    color: #222222;

    font-size: 43px;
    line-height: 1.13;
    font-weight: 800;

    letter-spacing: -0.5px;
}

.bh-about-content h2 span {
    display: block;

    color: #0e585b;

    font-size: inherit;
    line-height: inherit;
    font-weight: inherit;
}


/* =========================
   ABOUT PARAGRAPHS
   ========================= */

.bh-about-content p {
    margin-top: 0;

    color: #555555;

    font-size: 16px;
    line-height: 1.75;
    font-weight: 400;
}

.bh-about-intro {
    margin: 0 0 15px;

    color: #444444 !important;

    font-size: 17px !important;
    line-height: 1.75;

    font-weight: 500;
}

.bh-about-content > p:not(.bh-about-intro) {
    margin: 0 0 25px;

    color: #666666;

    font-size: 16px;
    line-height: 1.8;
}


/* =========================================================
   ABOUT FEATURES
   ========================================================= */

.bh-about-features {
    width: 100%;

    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));

    gap: 20px 25px;

    margin: 0 0 25px;
}

.bh-about-feature {
    display: flex;
    align-items: flex-start;

    width: 100%;
    gap: 12px;
}

.bh-feature-icon {
    flex: 0 0 27px;

    width: 27px;
    height: 27px;

    display: flex;
    align-items: center;
    justify-content: center;

    margin-top: 2px;

    border-radius: 50%;

    background: #0e585b;
    color: #ffffff;

    font-size: 14px;
    line-height: 1;
    font-weight: 800;

    box-shadow:
        0 5px 15px rgba(14, 88, 91, 0.22);
}

.bh-feature-content {
    min-width: 0;
}

.bh-about-feature h4 {
    margin: 0 0 5px;
    padding: 0;

    color: #222222;

    font-size: 17px;
    line-height: 1.4;
    font-weight: 700;
}

.bh-about-feature p {
    margin: 0;
    padding: 0;

    color: #777777;

    font-size: 15px;
    line-height: 1.55;
    font-weight: 400;
}


/* =========================================================
   ABOUT BUTTON
   ========================================================= */

.bh-about-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    gap: 14px;

    min-height: 50px;

    margin: 0;
    padding: 13px 23px;

    background: #0e585b;
    color: #ffffff !important;

    border: 2px solid #0e585b;
    border-radius: 6px;

    text-decoration: none !important;

    font-size: 17px;
    line-height: 1.3;
    font-weight: 700;

    box-shadow:
        0 8px 22px rgba(14, 88, 91, 0.22);

    transition: all 0.3s ease;
}

.bh-about-btn span {
    display: inline-block;

    color: inherit;

    font-size: 20px;
    line-height: 1;

    transition: transform 0.3s ease;
}

.bh-about-btn:hover {
    background: #8dc1b0;
    color: #0e585b !important;

    border-color: #8dc1b0;

    transform: translateY(-3px);

    box-shadow:
        0 12px 25px rgba(14, 88, 91, 0.25);
}

.bh-about-btn:hover span {
    transform: translateX(5px);
}


/* =========================================================
   ABOUT IMAGE
   ========================================================= */

.bh-about-image {
    position: relative;

    width: 100%;
    min-height: 450px;

    display: flex;
    align-items: center;
    justify-content: center;
}

.bh-about-image img {
    position: relative;
    z-index: 2;

    display: block;

    width: 100%;
    height: 450px;

    margin: 0;
    padding: 0;
    border: 0;

    object-fit: cover;
    object-position: center;

    border-radius: 18px;

    box-shadow:
        0 20px 55px rgba(0, 0, 0, 0.18);
}


/* =========================
   IMAGE FRAME
   ========================= */

.bh-image-frame {
    position: absolute;

    width: 90%;
    height: 90%;

    right: -15px;
    bottom: -10px;

    border: 3px solid #8dc1b0;

    border-radius: 20px;

    z-index: 1;
}


/* =========================================================
   ABOUT BADGE
   ========================================================= */

.bh-about-badge {
    position: absolute;

    left: -28px;
    bottom: 35px;

    z-index: 4;

    min-width: 180px;

    padding: 18px 20px;

    background: #ffffff;
    border-radius: 10px;

    box-shadow:
        0 12px 35px rgba(0, 0, 0, 0.18);

    text-align: center;
}

.bh-about-badge strong {
    display: block;

    margin: 0;

    color: #0e585b;

    font-size: 23px;
    line-height: 1.15;
    font-weight: 800;
}

.bh-about-badge span {
    display: block;

    margin-top: 6px;

    color: #555555;

    font-size: 14px;
    line-height: 1.4;
    font-weight: 700;
}


/* =========================================================
   COUNTER SECTION
   ========================================================= */

.bh-counter-section {
    width: 100%;
    margin: 0;

    padding: 30px 20px;

    background: #0e585b;
}

.bh-counter-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.bh-counter-item {
    text-align: center;

    padding: 15px;

    border-right: 1px solid rgba(255, 255, 255, 0.25);
}

.bh-counter-item:last-child {
    border-right: 0;
}

.bh-counter-number {
    color: #8dc1b0;

    font-size: 42px;
    line-height: 1.1;
    font-weight: 800;

    margin-bottom: 8px;
}

.bh-counter-title {
    color: #ffffff;

    font-size: 16px;
    line-height: 1.4;
    font-weight: 600;
}


/* =========================================================
   TABLET
   ========================================================= */

@media (max-width: 1200px) {

    .bh-tshirt-section .bh-products-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 20px;
    }

    .bh-about-container {
        gap: 40px;
    }
}


/* =========================================================
   TABLET / SMALL LAPTOP
   ========================================================= */

@media (max-width: 991px) {

    .bh-tshirt-section .bh-products-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 18px;
    }

    .bh-about-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .bh-about-content h2 {
        font-size: 36px;
    }

    .bh-about-image {
        min-height: 400px;
    }

    .bh-about-image img {
        height: 390px;
    }

    .bh-about-badge {
        left: -15px;
    }

    .bh-counter-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .bh-counter-item {
        border-right: 0;
    }
}


/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 767px) {

    .bh-products-section {
        padding-left: 15px;
        padding-right: 15px;
    }

    .bh-about {
        padding-left: 18px;
        padding-right: 18px;
    }

    .bh-counter-section {
        padding-left: 15px;
        padding-right: 15px;
    }

    .bh-section-heading {
        margin-bottom: 30px;
    }

    .bh-section-heading h2 {
        font-size: 32px;
    }

    .bh-section-heading p {
        font-size: 15px;
        line-height: 1.65;
    }

    .bh-tshirt-section .bh-products-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 12px;
    }

    .bh-product-image {
        aspect-ratio: 3 / 4;
    }

    .bh-product-content {
        padding: 15px 12px 13px;
    }

    .bh-product-title {
        font-size: 16px;
    }

    .bh-product-brand {
        margin-bottom: 8px;
        font-size: 11px;
    }

    .bh-product-price {
        margin-bottom: 12px;
        font-size: 20px;
    }

    .bh-product-info {
        gap: 4px;
        margin-bottom: 14px;
    }

    .bh-info-label {
        font-size: 10px;
    }

    .bh-sizes {
        font-size: 13px;
    }

    .bh-buy-btn {
        min-height: 44px;
        padding: 10px 8px;
        font-size: 14px;
        gap: 6px;
    }

    .bh-btn-arrow {
        width: 16px;
        height: 16px;
    }

    .bh-product-badge {
        top: 9px;
        left: 9px;
        padding: 6px 8px;
        font-size: 8px;
    }

    .bh-view-all-wrap {
        margin-top: 25px;
    }

    .bh-view-all-btn {
        width: 100%;
        font-size: 15px;
    }

    .bh-about-content h2 {
        font-size: 32px;
        line-height: 1.2;
    }

    .bh-about-intro {
        font-size: 16px !important;
        line-height: 1.7;
    }

    .bh-about-content > p:not(.bh-about-intro) {
        font-size: 16px;
        line-height: 1.7;
    }

    .bh-about-features {
        grid-template-columns: 1fr;
        gap: 18px;
        margin-bottom: 25px;
    }

    .bh-about-feature h4 {
        font-size: 17px;
    }

    .bh-about-feature p {
        font-size: 15px;
        line-height: 1.6;
    }

    .bh-about-image {
        min-height: auto;
        padding: 0 8px 15px;
    }

    .bh-about-image img {
        width: 100%;
        height: auto;
        min-height: 300px;
        object-fit: cover;
        border-radius: 14px;
    }

    .bh-image-frame {
        width: 90%;
        height: 90%;
        right: 0;
        bottom: 0;
        border-width: 3px;
    }

    .bh-about-badge {
        left: 5px;
        bottom: 25px;
        min-width: 155px;
        padding: 14px 15px;
    }

    .bh-about-badge strong {
        font-size: 20px;
    }

    .bh-about-badge span {
        font-size: 13px;
    }

    .bh-about-btn {
        min-height: 50px;
        padding: 13px 20px;
        font-size: 17px;
    }

    .bh-counter-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px 10px;
    }

    .bh-counter-number {
        font-size: 32px;
    }

    .bh-counter-title {
        font-size: 14px;
    }
}


/* =========================================================
   SMALL MOBILE
   ========================================================= */

@media (max-width: 480px) {

    .bh-section-heading h2 {
        font-size: 29px;
    }

    .bh-about-content h2 {
        font-size: 29px;
    }

    .bh-about-badge {
        min-width: 140px;
        padding: 13px 14px;
    }

    .bh-about-badge strong {
        font-size: 19px;
    }

    .bh-about-badge span {
        font-size: 12px;
    }
}


/* =========================================================
   VERY SMALL MOBILE
   ========================================================= */

@media (max-width: 360px) {

    .bh-products-section {
        padding-left: 12px;
        padding-right: 12px;
    }

    .bh-about {
        padding-left: 14px;
        padding-right: 14px;
    }

    .bh-about-content h2 {
        font-size: 27px;
    }

    .bh-about-feature h4 {
        font-size: 16px;
    }

    .bh-about-feature p {
        font-size: 14px;
    }

    .bh-about-btn {
        width: 100%;
    }

    .bh-product-content {
        padding: 13px 10px 11px;
    }

    .bh-product-title {
        font-size: 15px;
    }

    .bh-product-price {
        font-size: 19px;
    }

    .bh-sizes {
        font-size: 12px;
    }

    .bh-buy-btn {
        font-size: 13px;
    }
}


/* =========================================================
   FINAL SECTION SPACING
   TOP + BOTTOM = 30PX ON ALL DEVICES
   ========================================================= */

.bh-products-section,
.bh-about,
.bh-counter-section {
    padding-top: 30px !important;
    padding-bottom: 30px !important;
}

/* =========================================================
   BABA HOSIERY - WHY CHOOSE US
   ========================================================= */

.bh-why-choose,
.bh-why-choose *,
.bh-why-choose *::before,
.bh-why-choose *::after {
    box-sizing: border-box;
}


/* =========================
   MAIN SECTION
   ========================= */

.bh-why-choose {
    width: 100%;
    margin: 0;
    padding: 30px 20px;
    background: #ffffff;
    overflow: hidden;
}


/* =========================
   CONTAINER
   ========================= */

.bh-why-choose .bh-container {
    width: 100%;
    max-width: 1450px;
    margin: 0 auto;
}


/* =========================
   MAIN GRID
   ========================= */

.bh-why-grid {
    display: grid;
    grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
    align-items: center;
    gap: 75px;
}


/* =========================================================
   LEFT IMAGE AREA
   ========================================================= */

.bh-why-image-wrap {
    position: relative;
    width: 100%;
    min-height: 560px;
    display: flex;
    align-items: center;
    justify-content: center;
}


/* Background Shape */

.bh-why-image-bg {
    position: absolute;
    width: 88%;
    height: 92%;
    left: 2%;
    top: 4%;

    background: #e8f3f0;

    border-radius: 45px 90px 55px 85px;

    transform: rotate(-3deg);
}


/* Image */

.bh-why-image {
    position: relative;
    z-index: 2;

    width: 90%;
    height: 520px;

    overflow: hidden;

    border-radius: 28px 65px 35px 70px;

    box-shadow:
        0 22px 55px rgba(14, 88, 91, 0.16);
}

.bh-why-image img {
    display: block;

    width: 100%;
    height: 100%;

    margin: 0;
    padding: 0;
    border: 0;

    object-fit: cover;
    object-position: center;
}


/* =========================================================
   IMAGE BADGE
   ========================================================= */

.bh-why-badge-one {
    position: absolute;

    left: 0;
    bottom: 40px;

    z-index: 5;

    display: flex;
    align-items: center;

    gap: 11px;

    padding: 14px 18px;

    background: #ffffff;

    border-radius: 12px;

    box-shadow:
        0 12px 35px rgba(0, 0, 0, 0.14);
}

.bh-why-badge-icon {
    display: flex;
    align-items: center;
    justify-content: center;

    width: 34px;
    height: 34px;

    border-radius: 50%;

    background: #0e585b;
    color: #ffffff;

    font-size: 17px;
    font-weight: 800;
}

.bh-why-badge-one strong {
    display: block;

    color: #0e585b;

    font-size: 15px;
    line-height: 1.2;
    font-weight: 800;
}

.bh-why-badge-one small {
    display: block;

    margin-top: 3px;

    color: #687878;

    font-size: 11px;
    line-height: 1.2;
}


/* =========================================================
   ROUND BADGE
   ========================================================= */

.bh-why-circle {
    position: absolute;

    right: 2%;
    bottom: 25px;

    z-index: 5;

    width: 120px;
    height: 120px;

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;

    border: 5px solid #ffffff;
    border-radius: 50%;

    background: #0e585b;

    color: #ffffff;

    text-align: center;

    box-shadow:
        0 12px 30px rgba(14, 88, 91, 0.22);
}

.bh-why-circle strong {
    font-size: 17px;
    line-height: 1.1;
    font-weight: 800;
}

.bh-why-circle span {
    margin-top: 3px;

    color: #8dc1b0;

    font-size: 12px;
    line-height: 1.2;
    font-weight: 800;
}

.bh-why-circle small {
    margin-top: 4px;

    font-size: 9px;
    line-height: 1;
    letter-spacing: 1px;
}


/* =========================================================
   RIGHT CONTENT
   ========================================================= */

.bh-why-content {
    width: 100%;
}


/* =========================
   TOP TAG
   ========================= */

.bh-why-top {
    display: flex;
    align-items: center;

    gap: 15px;

    margin-bottom: 18px;
}

.bh-why-tag {
    display: inline-flex;
    align-items: center;

    padding: 9px 17px;

    border-radius: 50px;

    background: #e6f1ee;
    color: #0e585b;

    font-size: 11px;
    line-height: 1.2;
    font-weight: 800;

    letter-spacing: 1.5px;
}

.bh-why-line {
    display: block;

    width: 110px;
    height: 1px;

    background: #0e585b;

    opacity: 0.55;
}


/* =========================
   HEADING
   ========================= */

.bh-why-content h2 {
    margin: 0 0 17px;
    padding: 0;

    color: #202727;

    font-size: clamp(35px, 4vw, 53px);
    line-height: 1.08;

    font-weight: 800;

    letter-spacing: -1px;
}

.bh-why-content h2 span {
    display: block;

    color: #0e585b;

    font-size: inherit;
    line-height: inherit;
    font-weight: inherit;
}


/* =========================
   INTRO
   ========================= */

.bh-why-intro {
    max-width: 720px;

    margin: 0 0 28px;

    color: #5a6d6d;

    font-size: 17px;
    line-height: 1.7;
}


/* =========================================================
   FEATURES GRID
   ========================================================= */

.bh-why-features {
    display: grid;

    grid-template-columns: repeat(2, minmax(0, 1fr));

    gap: 16px;

    width: 100%;
}


/* =========================
   FEATURE
   ========================= */

.bh-why-feature {
    display: flex;
    align-items: flex-start;

    gap: 15px;

    padding: 21px 18px;

    background: #f5faf8;

    border: 1px solid rgba(14, 88, 91, 0.05);

    border-radius: 15px;

    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease,
        background 0.25s ease;
}

.bh-why-feature:hover {
    transform: translateY(-4px);

    background: #eef7f4;

    box-shadow:
        0 10px 25px rgba(14, 88, 91, 0.09);
}


/* =========================
   FEATURE ICON
   ========================= */

.bh-why-feature-icon {
    flex: 0 0 48px;

    width: 48px;
    height: 48px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background: #d5ebe5;

    color: #0e585b;

    font-size: 17px;
    line-height: 1;
    font-weight: 800;
}


/* =========================
   FEATURE CONTENT
   ========================= */

.bh-why-feature-content {
    min-width: 0;
}

.bh-why-feature-content h3 {
    margin: 2px 0 6px;
    padding: 0;

    color: #0e585b;

    font-size: 17px;
    line-height: 1.3;
    font-weight: 800;
}

.bh-why-feature-content p {
    margin: 0;
    padding: 0;

    color: #667878;

    font-size: 14px;
    line-height: 1.55;
}


/* =========================================================
   BOTTOM CTA
   ========================================================= */

.bh-why-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 25px;

    margin-top: 28px;
}


/* =========================
   BUTTON
   ========================= */

.bh-why-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    gap: 15px;

    min-height: 52px;

    padding: 13px 25px;

    background: #0e585b;
    border: 2px solid #0e585b;
    border-radius: 30px;

    color: #ffffff !important;

    font-size: 15px;
    line-height: 1.3;
    font-weight: 700;

    text-decoration: none !important;

    transition: all 0.25s ease;
}

.bh-why-btn span {
    font-size: 22px;
    line-height: 1;

    transition: transform 0.25s ease;
}

.bh-why-btn:hover {
    background: #8dc1b0;
    border-color: #8dc1b0;

    color: #0e585b !important;

    transform: translateY(-2px);
}

.bh-why-btn:hover span {
    transform: translateX(5px);
}


/* =========================
   NOTE
   ========================= */

.bh-why-note {
    text-align: right;

    color: #0e585b;

    line-height: 1.1;
}

.bh-why-note span {
    display: block;

    font-size: 13px;

    font-weight: 500;
}

.bh-why-note strong {
    display: block;

    margin-top: 3px;

    font-size: 18px;

    font-weight: 800;
}


/* =========================================================
   TABLET
   ========================================================= */

@media (max-width: 1100px) {

    .bh-why-grid {
        gap: 45px;
    }

    .bh-why-image-wrap {
        min-height: 500px;
    }

    .bh-why-image {
        width: 94%;
        height: 470px;
    }

    .bh-why-circle {
        right: 0;
    }

    .bh-why-badge-one {
        left: -5px;
    }

    .bh-why-content h2 {
        font-size: 40px;
    }

    .bh-why-feature {
        padding: 17px 14px;
    }

    .bh-why-feature-icon {
        flex-basis: 42px;
        width: 42px;
        height: 42px;
    }
}


/* =========================================================
   TABLET / MOBILE
   ========================================================= */

@media (max-width: 991px) {

    .bh-why-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .bh-why-image-wrap {
        max-width: 700px;
        min-height: 500px;
        margin: 0 auto;
    }

    .bh-why-image {
        width: 90%;
        height: 480px;
    }

    .bh-why-content h2 {
        font-size: 40px;
    }

    .bh-why-intro {
        max-width: 800px;
    }
}


/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 767px) {

    .bh-why-choose {
        padding-left: 15px;
        padding-right: 15px;
    }

    .bh-why-grid {
        gap: 30px;
    }

    .bh-why-image-wrap {
        min-height: 390px;
    }

    .bh-why-image {
        width: 94%;
        height: 370px;

        border-radius: 20px 40px 25px 45px;
    }

    .bh-why-image-bg {
        width: 90%;
        height: 92%;
        border-radius: 30px 50px 35px 55px;
    }

    .bh-why-badge-one {
        left: 0;
        bottom: 20px;

        padding: 11px 13px;
    }

    .bh-why-badge-icon {
        width: 29px;
        height: 29px;

        font-size: 14px;
    }

    .bh-why-badge-one strong {
        font-size: 13px;
    }

    .bh-why-badge-one small {
        font-size: 9px;
    }

    .bh-why-circle {
        right: 0;
        bottom: 12px;

        width: 90px;
        height: 90px;

        border-width: 4px;
    }

    .bh-why-circle strong {
        font-size: 13px;
    }

    .bh-why-circle span {
        font-size: 9px;
    }

    .bh-why-circle small {
        font-size: 7px;
    }

    .bh-why-top {
        gap: 10px;
    }

    .bh-why-tag {
        font-size: 9px;
        letter-spacing: 1px;
    }

    .bh-why-line {
        width: 50px;
    }

    .bh-why-content h2 {
        font-size: 32px;
        line-height: 1.15;
        letter-spacing: -0.5px;
    }

    .bh-why-intro {
        font-size: 15px;
        line-height: 1.65;
        margin-bottom: 22px;
    }

    .bh-why-features {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .bh-why-feature {
        padding: 16px;
    }

    .bh-why-feature-content h3 {
        font-size: 16px;
    }

    .bh-why-feature-content p {
        font-size: 13px;
    }

    .bh-why-bottom {
        flex-direction: column;
        align-items: stretch;
        gap: 18px;
        margin-top: 22px;
    }

    .bh-why-btn {
        width: 100%;
    }

    .bh-why-note {
        text-align: center;
    }
}


/* =========================================================
   SMALL MOBILE
   ========================================================= */

@media (max-width: 480px) {

    .bh-why-image-wrap {
        min-height: 340px;
    }

    .bh-why-image {
        height: 325px;
    }

    .bh-why-content h2 {
        font-size: 29px;
    }

    .bh-why-tag {
        padding: 8px 12px;
    }

    .bh-why-feature-icon {
        flex-basis: 40px;
        width: 40px;
        height: 40px;
    }
}