/*** 
========================
    Partner Style1 Css
========================
***/

.partners-style1 {
    padding: 120px 0px 120px;
}

.partners-style1__inner {
    position: relative;
    display: block;
    overflow: hidden;
    border-radius: var(--thm-border-radius);
    background-color: var(--thm-white-color);
    box-shadow: 0px 0px 50px 0px rgba(0, 0, 0, 0.1);
}

.partners-style1__inner .row {
    --bs-gutter-x: 0px;
}

.partners-style1__inner ul li .single-partners-style1 {
    position: relative;
    display: block;
    border-right: 1px solid #e4e9ec;
    border-bottom: 1px solid #e4e9ec;
}

.partners-style1__inner ul li:nth-child(4) .single-partners-style1,
.partners-style1__inner ul li:nth-child(7) .single-partners-style1,
.partners-style1__inner ul li:last-child .single-partners-style1 {
    border-right: none;
}

.partners-style1__inner ul li:nth-child(8) .single-partners-style1,
.partners-style1__inner ul li:nth-child(9) .single-partners-style1,
.partners-style1__inner ul li:nth-child(10) .single-partners-style1,
.partners-style1__inner ul li:nth-child(11) .single-partners-style1 {
    border-bottom: none;
}

.single-partners-style1__img {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    line-height: 0;
}

.single-partners-style1__img a {
    position: relative;
    display: inline-block;
}

.single-partners-style1__img a img {
    position: relative;
    display: block;
    width: 100%;
    -webkit-transition: all 500ms ease;
    -moz-transition: all 500ms ease;
    -ms-transition: all 500ms ease;
    -o-transition: all 500ms ease;
    transition: all 500ms ease;
}

.single-partners-style1:hover .single-partners-style1__img a img:first-child {
    -webkit-transform: translatex(-50%) scalex(2);
    transform: translatex(-50%) scalex(2);
    opacity: 0;
    -webkit-filter: blur(10px);
    filter: blur(10px);
}

.single-partners-style1__img a img:nth-child(2) {
    position: absolute;
    left: 0px;
    top: 0px;
    right: 0px;
    bottom: 0px;
    z-index: 1;
    -webkit-transform: translatex(50%) scalex(2);
    transform: translatex(50%) scalex(2);
    opacity: 0;
    -webkit-filter: blur(10px);
    filter: blur(10px);
}

.single-partners-style1:hover .single-partners-style1__img a img:nth-child(2) {
    -webkit-transform: translatex(0) scalex(1);
    transform: translatex(0) scalex(1);
    opacity: 1;
    -webkit-filter: blur(0);
    filter: blur(0);
}

.single-partners-style1__content {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 120px;
}

.single-partners-style1__content h4 {
    color: #65656b;
    font-size: 18px;
    line-height: 32px;
    font-weight: 600;
}

.single-partners-style1__content h4 span {
    color: var(--thm-black-color);
    font-size: 30px;
}
















/***==== End Css ====***/