/* .swiper {
     --Slider-Horisontal-Padding: var(--Side-Padding-Large);
    padding: 128px 0;
    display: flex;
    flex-direction: column;
    gap: 56px;
    max-width: calc(100vw - var(--Slider-Horisontal-Padding) * 2);

    .swiper-head {
        display: flex;
        align-self: stretch;
        align-items: center;
        justify-content: space-between;
        flex-direction: row-reverse;
        .swiper-controls {
            display: flex;
            gap: 16px;

            button {
                display: flex;
                padding: 8px 16px;
                justify-content: center;
                align-items: center;
                background: none;
                border: 1px solid var(--Colors-Main-Dark);
                border-radius: 24px;
            }

            .swiper-control-next {
                .swiper-control-arrow {
                    transform: rotateY(180deg);
                }
            }

            @media screen and (max-width: 620px) {
                display: none;
            }
        }

        .swiper-title {
            font-size: 40px;
            font-weight: 700;
            line-height: 56px;
            flex: 1 0 0;

            @media screen and (max-width: 480px) {
                font-size: 32px;
                line-height: 44px;
            }
        }
    }

    .relevant-cards {
        .swiper-wrapper {
            max-width: min-content;
            .relevant-card {
                display: flex;
                max-width: 250px;
                min-width: 250px;
                height: 234px;
                padding: 40px;
                flex-direction: column;
                justify-content: space-between;
                align-items: flex-start;
                border-radius: 40px;

                .relevant-card-title {
                    font-size: 16px;
                    font-weight: 700;
                    line-height: 24px;
                    color: #7A7887;
                    align-self: stretch;
                }
            
                .relevant-card-description {
                    font-size: 20px;
                    font-weight: 400;
                    line-height: 28px;
                    color: var(--Colors-Main-Dark);

                    @media screen and (max-width: 375px)  {
                        font-size: 16px;
                        line-height: 24px;
                    }
                }
                background-color: var(--Local-Colors-Light-Grey);

                &:nth-child(2n) {
                    background-color: var(--Colors-Violet-50);
                }

                &:nth-child(3n) {
                    background-color: #FFFBEC;
                }

                &:nth-child(4n) {
                    background-color: #FCF2F0;
                }

                @media screen and (max-width: 375px) {
                    padding: 32px;
                    max-width: 186px;
                    min-width: 186px;
                    height: 166px;
                }
            }
        }
    }

    .testimonial-cards {
        .swiper-wrapper {
            max-width: min-content;

            .testimonial-card {
                display: flex;
                min-width: 467px;
                max-width: 467px;
                padding: 48px;
                flex-direction: column;
                align-items: flex-start;
                gap: 32px;
                border-radius: 40px;

                .testimonial-card-icon {
                    width: 40px;
                    height: 40px;
                }

                .testimonial-card-text {
                    font-size: 24px;
                    font-weight: 600;
                    line-height: 32px;
                    color: var(--Colors-Main-Dark);
                }

                .testimonial-card-author {
                    display: flex;
                    flex-direction: row-reverse;
                    justify-content: flex-end;
                    align-items: center;
                    gap: 16px;

                    .testimonial-card-author-description {
                        display: flex;
                        flex-direction: column;
                        justify-content: center;
                        align-items: flex-start;
                        gap: 8px;

                        .testimonial-card-author-name {
                            font-size: 20px;
                            font-weight: 700;
                            line-height: 28px;
                            color: var(--Colors-Main-Dark);
                        }

                        .testimonial-card-author-position {
                            font-size: 14px;
                            font-weight: 600;
                            line-height: 20px;
                            color: #7A7887;
                        }
                    }

                    .testimonial-card-author-image {
                        width: 60px;
                        height: 64px;
                    }
                }

                &.grey {
                    background-color: var(--Local-Colors-Light-Grey);
                }
                
                &.violet {
                    background-color: var(--Colors-Violet-50);
                }

                &.orange {
                    background-color: #FCF2F0;
                }

                @media screen and (max-width: 580px) {
                    padding: 32px;
                    min-width: 250px;
                    max-width: 250px;

                    .testimonial-card-text {
                        font-size: 16px;
                        line-height: 24px;
                    }

                    .testimonial-card-author {
                        .testimonial-card-author-description {
                            .testimonial-card-author-name {
                                font-size: 16px;
                                line-height: 24px;
                            }
                        }
                    }
                }
            }
        }
    }
    
    .custom-pagination {
        display: flex;
        justify-content: center;
        .swiper-pagination-bullet {
            width: 16px;
            height: 16px;
            background-color: #DFD9FB;
            opacity: 1;
            margin: 0 12px;

            &.swiper-pagination-bullet-active {
                background-color: #9884F3;
            }
        }
    }

    @media screen and (max-width: 1440px) {
        padding-bottom: 64px;
    }

    @media screen and (max-width: 1280px) {
        padding-top: 104px;
        padding-bottom: 64px;
    }

    @media screen and (max-width: 768px) {
        padding-top: 96px;
    }

    @media screen and (max-width: 375px) {
        --Slider-Horisontal-Padding: 20px;
        padding-top: 80px;
        gap: 48px;
    }
} */

.swiper {
    --Slider-Horisontal-Padding: var(--Side-Padding-Large);
    padding: 128px 0;
    display: flex;
    flex-direction: column;
    gap: 56px;
    max-width: calc(100vw - var(--Slider-Horisontal-Padding) * 2);
}
.swiper .swiper-head {
    display: flex;
    align-self: stretch;
    align-items: center;
    justify-content: space-between;
    flex-direction: row-reverse;
}
.swiper .swiper-head .swiper-controls {
    display: flex;
    gap: 16px;
}
.swiper .swiper-head .swiper-controls button {
    display: flex;
    padding: 8px 16px;
    justify-content: center;
    align-items: center;
    background: none;
    border: 1px solid var(--Colors-Main-Dark);
    border-radius: 24px;
}
.swiper .swiper-head .swiper-controls .swiper-control-next .swiper-control-arrow {
    transform: rotateY(180deg);
}
@media screen and (max-width: 620px) {
    .swiper .swiper-head .swiper-controls {
        display: none;
   }
}
.swiper .swiper-head .swiper-title {
    font-size: 40px;
    font-weight: 700;
    line-height: 56px;
    flex: 1 0 0;
}
@media screen and (max-width: 480px) {
    .swiper .swiper-head .swiper-title {
        font-size: 32px;
        line-height: 44px;
   }
}
.swiper .relevant-cards .swiper-wrapper {
    max-width: min-content;
}
.swiper .relevant-cards .swiper-wrapper .relevant-card {
    display: flex;
    max-width: 250px;
    min-width: 250px;
    height: 234px;
    padding: 40px;
    flex-direction: column;
    justify-content: space-between;
    align-items: flex-start;
    border-radius: 40px;
    background-color: var(--Local-Colors-Light-Grey);
}
.swiper .relevant-cards .swiper-wrapper .relevant-card .relevant-card-title {
    font-size: 16px;
    font-weight: 700;
    line-height: 24px;
    color: #7a7887;
    align-self: stretch;
}
.swiper .relevant-cards .swiper-wrapper .relevant-card .relevant-card-description {
    font-size: 20px;
    font-weight: 400;
    line-height: 28px;
    color: var(--Colors-Main-Dark);
}
@media screen and (max-width: 375px) {
    .swiper .relevant-cards .swiper-wrapper .relevant-card .relevant-card-description {
        font-size: 16px;
        line-height: 24px;
   }
}
.swiper .relevant-cards .swiper-wrapper .relevant-card:nth-child(2n) {
    background-color: var(--Colors-Violet-50);
}
.swiper .relevant-cards .swiper-wrapper .relevant-card:nth-child(3n) {
    background-color: #fffbec;
}
.swiper .relevant-cards .swiper-wrapper .relevant-card:nth-child(4n) {
    background-color: #fcf2f0;
}
@media screen and (max-width: 375px) {
    .swiper .relevant-cards .swiper-wrapper .relevant-card {
        padding: 32px;
        max-width: 186px;
        min-width: 186px;
        height: 166px;
   }
}
.swiper .testimonial-cards .swiper-wrapper {
    max-width: min-content;
}
.swiper .testimonial-cards .swiper-wrapper .testimonial-card {
    display: flex;
    min-width: 467px;
    max-width: 467px;
    padding: 48px;
    flex-direction: column;
    align-items: flex-start;
    gap: 32px;
    border-radius: 40px;
}
.swiper .testimonial-cards .swiper-wrapper .testimonial-card .testimonial-card-icon {
    width: 40px;
    height: 40px;
}
.swiper .testimonial-cards .swiper-wrapper .testimonial-card .testimonial-card-text {
    font-size: 24px;
    font-weight: 600;
    line-height: 32px;
    color: var(--Colors-Main-Dark);
}
.swiper .testimonial-cards .swiper-wrapper .testimonial-card .testimonial-card-author {
    display: flex;
    flex-direction: row-reverse;
    justify-content: flex-end;
    align-items: center;
    gap: 16px;
}
.swiper .testimonial-cards .swiper-wrapper .testimonial-card .testimonial-card-author .testimonial-card-author-description {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    gap: 8px;
}
.swiper .testimonial-cards .swiper-wrapper .testimonial-card .testimonial-card-author .testimonial-card-author-description .testimonial-card-author-name {
    font-size: 20px;
    font-weight: 700;
    line-height: 28px;
    color: var(--Colors-Main-Dark);
}
.swiper .testimonial-cards .swiper-wrapper .testimonial-card .testimonial-card-author .testimonial-card-author-description .testimonial-card-author-position {
    font-size: 14px;
    font-weight: 600;
    line-height: 20px;
    color: #7a7887;
}
.swiper .testimonial-cards .swiper-wrapper .testimonial-card .testimonial-card-author .testimonial-card-author-image {
    width: 60px;
    height: 64px;
}
.swiper .testimonial-cards .swiper-wrapper .testimonial-card.grey {
    background-color: var(--Local-Colors-Light-Grey);
}
.swiper .testimonial-cards .swiper-wrapper .testimonial-card.violet {
    background-color: var(--Colors-Violet-50);
}
.swiper .testimonial-cards .swiper-wrapper .testimonial-card.orange {
    background-color: #fcf2f0;
}
@media screen and (max-width: 580px) {
    .swiper .testimonial-cards .swiper-wrapper .testimonial-card {
        padding: 32px;
        min-width: 250px;
        max-width: 250px;
   }
    .swiper .testimonial-cards .swiper-wrapper .testimonial-card .testimonial-card-text {
        font-size: 16px;
        line-height: 24px;
   }
    .swiper .testimonial-cards .swiper-wrapper .testimonial-card .testimonial-card-author .testimonial-card-author-description .testimonial-card-author-name {
        font-size: 16px;
        line-height: 24px;
   }
}
.swiper .custom-pagination {
    display: flex;
    justify-content: center;
}
.swiper .custom-pagination .swiper-pagination-bullet {
    width: 16px;
    height: 16px;
    background-color: #dfd9fb;
    opacity: 1;
    margin: 0 12px;
}
.swiper .custom-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
    background-color: #9884f3;
}
@media screen and (max-width: 1440px) {
    .swiper {
        padding-bottom: 64px;
   }
}
@media screen and (max-width: 1280px) {
    .swiper {
        padding-top: 104px;
        padding-bottom: 64px;
   }
}
@media screen and (max-width: 768px) {
    .swiper {
        padding-top: 96px;
   }
}
@media screen and (max-width: 375px) {
    .swiper {
        --Slider-Horisontal-Padding: 20px;
        padding-top: 80px;
        gap: 48px;
   }
}

