﻿.tech-partners-sections {
    padding: 180px 0 60px;
    background-color: #f2f5f2;
    overflow: hidden;
}

.tps-textContent {
    width: 100%;
    max-width: 740px;
    margin: 0 auto;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
}

.tps-textContent h3 {
    font-size: 42px;
    line-height: 1.2em;
    letter-spacing: -1px;
    font-weight: bold;
    font-family: 'Eina01', sans-serif;
}

.tps-textContent p {
    font-size: 18px;
    line-height: 1.4em;
    letter-spacing: 0;
    font-weight: 400;
    font-family: 'Eina01', sans-serif;
}

.tps-textCover {
    position: relative;
    z-index: 0;
}

.tps-textCover:before {
    content: "";
    display: block;
    -webkit-filter: blur(55px);
    filter: blur(55px);
    /* backdrop-filter: blur(55px); */
    background-color: #f2f5f2;
    /* bottom: -200px; */
    /* flex: none; */
    height: 380px;
    /* left: -100px; */
    overflow: hidden;
    position: absolute;
    /* right: -100px; */
    /* z-index: 1; */
    width: calc(100% + 150px);
    z-index: -1;
    bottom: -170px;
    left: 50%;
    transform: translateX(-50%);
}

.tps-textContent .btn {
    font-size: 18px;
}

.bottomSlider {
    display: none;
}

.tps-allSliders {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: -68%;
    margin-left: -1%;
    margin-right: -1%;
}

.tps-allSliders .tps-topSlider,
.tps-allSliders .tps-bottomSlider {
    width: 100%;
    aspect-ratio: 1/1;
    display: flex;
    position: relative;
    animation: circular-slider 40s linear infinite;
}

.tps-allSliders .tps-bottomSlider {
    width: 80%;
    position: absolute;
    animation-direction: reverse;
}

.tps-allSliders .tps-topSlider .tps-image,
.tps-allSliders .tps-bottomSlider .tps-image {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
}

.tps-allSliders .tps-topSlider .tps-image img,
.tps-allSliders .tps-bottomSlider .tps-image img {
    max-width: 160px;
}

.tps-allSliders .tps-topSlider .tps-image img.tps-bottomImage,
.tps-allSliders .tps-bottomSlider .tps-image img.tps-bottomImage {
    transform: scale(-1);
}

.tps-allSliders .tps-topSlider .tps-image:nth-child(2),
.tps-allSliders .tps-bottomSlider .tps-image:nth-child(2) {
    transform: translate(-50%, -50%) rotate(30deg);
}

.tps-allSliders .tps-topSlider .tps-image:nth-child(3),
.tps-allSliders .tps-bottomSlider .tps-image:nth-child(3) {
    transform: translate(-50%, -50%) rotate(60deg);
}

.tps-allSliders .tps-topSlider .tps-image:nth-child(4),
.tps-allSliders .tps-bottomSlider .tps-image:nth-child(4) {
    transform: translate(-50%, -50%) rotate(90deg);
}

.tps-allSliders .tps-topSlider .tps-image:nth-child(5),
.tps-allSliders .tps-bottomSlider .tps-image:nth-child(5) {
    transform: translate(-50%, -50%) rotate(120deg);
}

.tps-allSliders .tps-topSlider .tps-image:nth-child(6),
.tps-allSliders .tps-bottomSlider .tps-image:nth-child(6) {
    transform: translate(-50%, -50%) rotate(150deg);
}

@keyframes circular-slider {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

@media (max-width: 1200px) {
    .tech-partners-sections {
        padding-top: 120px;
    }

    .tps-allSliders {
        margin-left: -25%;
        margin-right: -25%;
        margin-bottom: -105%;
    }

    .tps-allSliders .tps-topSlider .tps-image img,
    .tps-allSliders .tps-bottomSlider .tps-image img {
        max-width: 150px;
    }

    .tps-textContent {
        max-width: 580px;
    }

    .tps-textContent h3 {
        font-size: 32px;
    }
}

@media (max-width: 809px) {
    .tech-partners-sections {
        padding-top: 80px;
    }

    .tps-allSliders {
        margin-left: -15%;
        margin-right: -15%;
        margin-bottom: -85%;
    }

    .tps-allSliders .tps-topSlider .tps-image img,
    .tps-allSliders .tps-bottomSlider .tps-image img {
        max-width: 95px;
    }

    .tps-textContent {
        max-width: 91%;
    }

    .tps-textContent h3 {
        font-size: 28px;
    }

    .tps-textContent p {
        font-size: 18px;
    }
}

@media (max-width: 570px) {
    .tech-partners-sections {
        padding-top: 50px;
    }

    .tps-allSliders {
        margin-left: -90%;
        margin-right: -90%;
        margin-bottom: -220%;
    }
}