.main {
    /* background-color: var(--innerBg2); */
    border-radius: var(--brad);
}
.main::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    background-color: var(--innerBg);
    width: 100%;
    height: 100%;
    filter: blur(64px);
    border-radius: var(--brad);
}
main h1 {
    font-size: 32px;
    margin-bottom: 12px;
}
.main > div {
    display: flex;
    flex-direction: column-reverse;
    overflow: hidden;
    padding: 14px;
}
.main__bottom {
    /* margin-top: clamp(
        250px,
        calc(250px - (191 * ((1920px - 100vw) / 620))),
        250px
    ); */

    display: flex;
    flex-direction: column;
    align-items: start;
    justify-content: center;
    padding: 0 24px;
    flex: 1 1 50%;
    margin-bottom: 64px;
}

.main__bottom > div:first-child {
    /* margin-top: 30%; */
    margin: 0 auto;
    text-align: center;
}
.main__bottom > div:first-child a {
    max-width: 260px;
}
.main__title {
    max-width: 509px;
}
.main__title h1 {
    color: var(--textMain);
    font-weight: 600 !important;
    font-size: 62px;
}
.main__title p {
    color: var(--gray) !important;
}

.mainswiper {
    z-index: 0;

    display: flex;
    align-items: stretch;
    align-self: stretch;
    flex: 1 1 50%;
    width: 100%;
    border-radius: var(--bradMed);
    overflow: hidden;
    /* min-height: 524px; */
}

.main .swiper-slide > div {
    height: 100%;
}
.mainswiper > div > div > div {
    max-width: 32.3%;
    border-radius: var(--bradMed);
    aspect-ratio: 2/2;
}
.mainswiper img {
    object-position: top;
}
.mainControls {
    display: none !important;
}

@media (max-width: 1864px) {
    .main {
        margin-top: 12px;
        margin-left: -12px;
        width: 100vw;
        margin-top: 0;
    }
}
@media (max-width: 1752px) {
    .main__bottom {
        padding-left: 34px;
        padding-right: 34px;
    }
}
@media (max-width: 1300px) {
    .main__bottom {
        order: 1;
        margin-top: 50px;
        padding-bottom: 0;
    }
}
@media (max-width: 768px) {
    .main__bottom > div:first-child {
        margin-top: 0;
    }

    
    .main__bottom {
        flex-direction: column;
        align-items: start;
        gap: 26px;
        padding-bottom: 0;
        margin-top: 24px;
        margin-bottom: 0;
    }
    .mainswiper {
        aspect-ratio: 2.2/2;
    }
    .main > div {
        flex-direction: column;
    }
    .main__bottom {
        padding: 0;
    }
    h1 {
        font-size: 40px !important;
    }
    .mainswiper > div > div > div {
        max-width: 68.3%;
        border-radius: var(--bradMed);
        aspect-ratio: 2/2;
    }
}

    .partnerContainer{
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 64px;
}

.partnerLogo{
    display: block;
    height: min(150px, 12rem);
    width: min(150px, 12rem);
    padding: 1rem;
    border-radius: 50%;
    background-color: var(--innerBg, white);
    border: var(--accent, blue) 4px solid;
    transition: all .4s cubic-bezier(.075, .82, .165, 1)
}

.partnerLogo:hover, .partnerLogo:active{
    scale: 1.04;
    box-shadow: inset 0px 0px 100px 0px var(--accent, blue);
    /* background: var(--accent); */
}

.partnerLogo img{
    height: 100%;
    object-fit: contain;
}

@media (max-width: 768px){
    .partnerContainer{
    flex-direction: column;
    gap: 20px;
}
}
