.content-clpt .content-clpt-item {
    display: flex;
    width: 100%;
}
.content-clpt .content-clpt-item:nth-child(even) {
    flex-direction: row-reverse;
}
.content-clpt .content-clpt-item .content-clpt-item-wapper {
    width: 50%;
    padding: 100px 80px;
}
.content-clpt .content-clpt-item .content-clpt-item-title {
    color: var(--text, #101857);
    font-size: 44px;
    font-style: normal;
    font-weight: 700;
    line-height: 1.09; /* 109.091% */
    text-transform: capitalize;
    margin-bottom: 20px;
}
.content-clpt .content-clpt-item .content-clpt-item-desc {
    color: var(--text, #101857);
    font-size: 14px;
    font-style: normal;
    font-weight: 500;
    line-height: 1.57; /* 157.143% */
}
.content-clpt .content-clpt-item img {
    width: 50%;
    height: 600px;
    object-fit: cover;
}
.clpt-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
}
.clpt-grid .clpt-grid-item {
    position: relative;
    height: 400px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
.clpt-grid .clpt-grid-item::before {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        0deg,
        rgba(0, 0, 0, 0.4) 0%,
        rgba(0, 0, 0, 0.4) 100%
    );
    z-index: 1;
}
.clpt-grid .clpt-grid-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
}
.clpt-grid .clpt-grid-item .clpt-grid-item-label {
    color: #fff;
    text-align: center;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 1.5; /* 150% */
    position: relative;
    z-index: 10;
}
.clpt-grid .clpt-grid-item .clpt-grid-item-title {
    color: #fff;
    font-size: 24px;
    font-style: normal;
    font-weight: 700;
    line-height: 1; /* 100% */
    text-transform: uppercase;
    margin-top: 12px;
    position: relative;
    z-index: 10;
}
.banner-global .btn-global {
    margin-top: 40px;
}
@media (max-width: 639px) {
    .content-clpt .content-clpt-item {
        flex-direction: column;
    }
    .content-clpt .content-clpt-item:nth-child(even) {
        flex-direction: column;
    }
    .content-clpt .content-clpt-item .content-clpt-item-wapper {
        width: 100%;
        padding: 40px 16px;
    }
    .content-clpt .content-clpt-item img {
        width: 100%;
        height: 290px;
    }
    .clpt-grid .clpt-grid-item {
        height: 200px;
    }
    .clpt-grid {
        grid-template-columns: repeat(1, 1fr);
    }
}
