/* 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%;
    }
}

/* Why Partner with Claritas SECTION */
.why-partner {
    background-color: #f56600;
    padding: 96px 0;
    color: #fff;
}

/* CONTAINER */
.why-partner .container {
    max-width: 1088px;
}

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

/* GRID */
.why-grid {
    gap: 32px;
}

/* ITEM */
.why-item {
    width: 192px;
}

/* ICON */
.why-icon {
    width: 128px;
    height: 128px;
    margin: 0 auto 24px;
    background: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.why-icon img {
    max-width: 60%;
    max-height: 60%;
}

/* TITLE */
.why-item-title {
    font-size: 24px;
    line-height: 31px;
    font-weight: 700;
    margin: 0;
}

/* RESPONSIVE */
@media (max-width: 991px) {
    .why-item {
        width: 160px;
    }
}

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

    .why-title {
        font-size: 26px;
        line-height: 34px;
    }

    .why-item {
        width: 45%;
    }

    .why-icon {
        width: 100px;
        height: 100px;
    }
}