/* Channel Partner page style Start */
/* HERO SECTION */
.cp-hero {
    background-color: #1f2a33;
    color: #fff;
}

/* LEFT SIDE */
.cp-hero-content {
    padding: 96px 56px;
}

.cp-inner {
    max-width: 624px;
}

/* TITLE */
.cp-title {
    font-size: 64px;
    line-height: 1.1;
    font-weight: 600;
    margin-bottom: 32px;
}

/* SUBTITLE */
.cp-subtitle {
    color: #f56600;
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 16px;
}

/* DESCRIPTION */
.cp-desc {
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 32px;
}

.cp-desc p {
    margin-bottom: 16px;
}

/* BUTTON */
.cp-btn {
    display: inline-block;
    background-color: #f56600;
    color: #fff;
    padding: 16px 32px;
    font-weight: 700;
    text-transform: uppercase;
    text-decoration: none;
    border-radius: 2px;
    transition: 0.3s ease;
}

.cp-btn:hover {
    background-color: #d95500;
    color: #fff;
}

/* RIGHT IMAGE */
.cp-hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* RESPONSIVE */
@media (max-width: 991px) {
    .cp-hero-content {
        padding: 56px 32px;
    }

    .cp-title {
        font-size: 42px;
    }
}

@media (max-width: 767px) {
    .cp-hero-content {
        padding: 48px 16px;
    }

    .cp-title {
        font-size: 32px;
    }

    .cp-hero-image {
        height: 300px;
    }

    .cp-hero-image img {
        height: 100%;
    }
}

/* How We Partner Section style */
/* SECTION */
.how-partner {
    padding: 96px 0;
    background: #fff;
}

/* CONTAINER WIDTH CONTROL */
.how-partner .container {
    max-width: 1088px;
}

/* TITLE */
.how-title {
    color: #f56600;
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 16px;
}

/* INTRO */
.how-intro {
    font-size: 16px;
    margin-bottom: 32px;
    max-width: 800px;
}

/* GRID */
.how-grid {
    margin-left: -8px;
    margin-right: -8px;
}

.how-col {
    padding: 8px;
}

/* CARD */
.how-card {
    position: relative;
    height: 180px;
    overflow: hidden;
    border-radius: 4px;
    display: flex;
    align-items: flex-end;
    padding: 16px;
    color: #fff;
}

/* BACKGROUND IMAGE */
.how-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-size: cover;
    background-position: center;
    filter: grayscale(100%);
}

/* OVERLAY */
.how-card::after {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.5);
}

/* TITLE */
.how-card-title {
    position: relative;
    z-index: 2;
    font-size: 16px;
    font-weight: 600;
    line-height: 1.3;
}

/* RESPONSIVE */
@media (max-width: 991px) {
    .how-card {
        height: 160px;
    }
}

@media (max-width: 767px) {
    .how-partner {
        padding: 56px 0;
    }

    .how-card {
        height: 140px;
    }
}