@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');

body, p, a, h1, h2, h3, h4, h5, h6 {
    font-family: 'Montserrat', sans-serif;
}

.swiper-container-main {
    width: 100%;
    height: auto;
    margin: 0 auto;
    position: relative;
    overflow: hidden;
}

.swiper-wrapper-main {
    display: flex;
    transition: transform 0.3s ease;
}

.swiper-slide-main {
    width: 100% !important;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: transform 0.6s ease, filter 0.6s ease, opacity 0.6s ease;
}

.swiper-slide-main img {
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 10px;
    transition: transform 0.6s ease, filter 0.6s ease, opacity 0.6s ease;
}

.swiper-slide-main.blurred img {
    filter: blur(5px) brightness(0.8);
    opacity: 0.7;
    transform: scale(1.1);
}

.swiper-slide-main.active img {
    transform: scale(1);
    filter: blur(0) brightness(1);
    opacity: 1;
}

.swiper-pagination-main {
    position: absolute;
    bottom: 10%;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 10;
}

.swiper-pagination-main .swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    background-color: rgba(0, 122, 255, 0.8);
    border: 2px solid rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    margin: 0 6px;
    opacity: 0.7;
    transition: all 0.3s ease;
}

.swiper-pagination-main .swiper-pagination-bullet-active {
    background-color: #007aff;
    opacity: 1;
    transform: scale(1.2);
    box-shadow: 0 0 6px rgba(0, 122, 255, 0.6);
}

.swiper-horizontal > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic, .swiper-pagination-horizontal.swiper-pagination-bullets.swiper-pagination-bullets-dynamic {
    left: 50%;
    transform: translateX(-50%);
    white-space: nowrap;
    position: absolute;
    bottom: 28px;
}

/* Новый слайдер */
.swiper-container-new {
    top: 2rem;
    width: 100%;
    height: auto;
    margin: 0 auto;
    position: relative;
    overflow: hidden;
}

.swiper-wrapper-new {
    display: flex;
    transition: transform 0.3s ease;
}

.swiper-slide-new {
    width: auto;
    box-sizing: border-box;
    display: flex;
    justify-content: center;
    align-items: center;
}

.swiper-slide-new img {
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 5px;
    transition: transform 0.5s ease, box-shadow 0.5s ease;
}

.swiper-pagination-new {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 10;
}

.swiper-pagination-new .swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    background-color: rgba(255, 255, 255, 0.5);
    border-radius: 50%;
    margin: 0 5px;
    transition: all 0.3s ease;
}

.swiper-pagination-new .swiper-pagination-bullet-active {
    display: none;
    background-color: #ff385c;
    opacity: 1;
    transform: scale(1.5);
}

.support_photo {
    margin-top: 1rem;
    position: relative;
    display: block;
    width: 100%;
    height: auto;
    overflow: hidden;
    transition: transform 0.5s ease, box-shadow 0.5s ease;
    box-shadow: 0 0 15px rgba(255, 255, 255, 0.2);
    border-radius: 5px;
}

.support_photo.shiny {
    animation: shinyEffect 2s ease-in-out infinite;
}

@keyframes shinyEffect {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 0 0 25px rgba(255, 255, 255, 0.4);
    }
    100% {
        transform: scale(1);
    }
}

@media (max-width: 768px) {
    .swiper-container-main {
        width: 100%;
    }

    .swiper-container-new {
        width: 100%;
    }
}

@media (min-width: 992px) {
    .swiper-container-main {
        width: 60%;
    }

    .swiper-container-new {
        width: 80%;
    }
}

.whatsapp-info {
    font-size: 18px;
    text-align: center;
    color: #e0e0e0;
    font-weight: 500;
    line-height: 1.7;
    margin-bottom: 30px;
    padding: 15px 20px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2);
}

.provider-list-login {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 20px;
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 20px;
    padding-top: 40px;
}

.provider-list-login .provider-item {
    width: 100%;
    aspect-ratio: 6/5;
    background-color: rgba(52, 73, 94, 0.8);
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    transition: all 0.3s ease;
}

.provider-list-login .provider-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.6);
    background-color: rgba(52, 73, 94, 0.9);
}

.provider-list-login img {
    max-width: 80%;
    max-height: 80%;
    object-fit: contain;
    filter: drop-shadow(2px 2px 2px rgba(0, 0, 0, 0.5));
    scale: 1.3
}

.provider-list-login-title {
    text-align: center;
    font-size: 24px;
    font-weight: bold;
    color: #ffffff;
    margin-top: 50px;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
    animation: glow 2s ease-in-out infinite alternate;
}

@keyframes glow {
    from {
        text-shadow: 0 0 10px #007aff, 0 0 20px #007aff, 0 0 30px #007aff;
    }
    to {
        text-shadow: 0 0 20px #007aff, 0 0 30px #007aff, 0 0 40px #007aff;
    }
}

@media (max-width: 1024px) {
    .provider-list-login {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .provider-list-login .provider-item {
        aspect-ratio: 1/1;
    }

    .provider-list-login-title {
        font-size: 20px;
    }
}