.our-cpny {
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}
.our-cpny .h2title {
    margin-bottom: 106px;
}
.cpny-wrap {
    background-color: var(--color-white);
    box-shadow: 0px 0px 18.4px rgba(0, 0, 0, 0.14);
    border-radius: var(--radius-35);
    padding: 46px 35px 35px;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: all 0.5s ease;
}
.cpny-list {
    gap: 40px 0;
}
.cpny-wrap .cpny-name {
    font-size: var(--f-fs-font-20);
    line-height: var(--f-fs-font-22);
    font-weight: var(--f-fw-bold);
    letter-spacing: -0.015em;
    text-align: center;
    color: #1E1E1E;
    max-width: 255px;
    margin: 45px auto 20px;
    word-break: break-word;
}
.cpny-desc li {
    font-size: var(--f-fs-font-15);
    line-height: var(--f-fs-font-20);
    color: #1E1E1E;
    text-align: left;
    display: flex;
    align-items: start;
    gap: 10px;
    margin-bottom: 5px;
}
.cpny-desc li:before {
    display: inline-block;
    content: '';
    min-width: 5px;
    height: 5px;
    background-color: #1E1E1E;
    border-radius: 100px;
    top: 7px;
    position: relative;
}
.cpny-btn {
    width: fit-content;
    margin: 40px auto 0;
}
.cpny-btn .btn-theme {
    padding: 0 32px;
}
.cpny-btn .btn-theme:after {
    display: none;
}
.cpny-wrap:hover {
    background-color: var(--color-primary);
}
.cpny-wrap:hover .cpny-logo {
    filter: brightness(0) saturate(100%) invert(100%) sepia(0%) saturate(7469%) hue-rotate(156deg) brightness(107%) contrast(109%);
}
.cpny-wrap:hover :is(.cpny-name, .cpny-desc li) {
    color: var(--color-white);
}
.cpny-wrap:hover li:before {
    background-color: var(--color-white);
}
.cpny-wrap:hover .cpny-btn .btn-theme {
    background-color: var(--color-white);
    color: var(--color-primary);
}
.cpny-list .slick-list {
    padding-left: 0 !important;
}
.cpny-list .slick-arrow i {
    color: var(--color-white);
}
.cpny-info .cpny-desc {
    width: fit-content;
    margin: 0 auto;
}
@media only screen and (max-width: 1350px) {
    .cpny-wrap {
        border-radius: var(--radius-35);
        padding: 46px 25px 35px;
        height: 100%;
    }
}
@media only screen and (max-width: 1250px) {
    .cpny-wrap {
        padding: 46px 25px 25px;
    }
    .our-cpny .h2title {
        margin-bottom: 75px;
    }
}
@media only screen and (max-width: 767px) {
    .our-cpny .h2title {
        margin-bottom: 52px;
    }
}