/*** 
========================
    Partner Style1 Css
========================
***/
.testimonials-partners {
    padding: 0px 0px 120px;
}

.testimonials-partners__bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-size: cover;
    background-repeat: no-repeat;
    background-attachment: scroll;
    background-position: center center;
}

.testimonials-partners__bg::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    background: rgb(26, 14, 5);
    background: linear-gradient(0deg, rgba(26, 14, 5, 1) 0%, rgba(26, 14, 5, 0.4234068627450981) 50%, rgba(26, 14, 5, 0.14329481792717091) 80%);
}

.partner-style1 {
    position: relative;
}

.partners-style1__text {
    position: relative;
    display: block;
    text-align: center;
    padding-bottom: 41px;
}

.partners-style1__text p {
    color: var(--thm-primary-color);
    font-size: 20px;
    line-height: 30px;
    font-family: var(--thm-font-3);
    font-weight: 400;
}

.partner-style1__inner {
    position: relative;
    display: block;
}

.partner-style1__inner::before {
    display: none;
}

.single-partner-style1 {
    position: relative;
    display: flex !important;
    justify-content: center;
    align-items: center;
    height: 110px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 20px;
    transition: all 450ms cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}

.single-partner-style1:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(210, 166, 115, 0.5);
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(26, 14, 5, 0.6), 0 0 20px rgba(210, 166, 115, 0.15);
}

.single-partner-style1 a {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
}

.single-partner-style1 a img {
    max-height: 50px;
    width: auto !important;
    transition: all 450ms ease;
    margin: 0 auto;
}

.single-partner-style1:hover a img {
    filter: brightness(0) invert(1) opacity(1);
    transform: scale(1.05);
}