* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body {
    font-family: Arial, sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    background: url(./Images/bg.jpg)  #030728 no-repeat  center;
    z-index: -1;
}
.cards-wripper {
    max-width: 1100px;
    margin: 0 60px 30px;
    padding: 20px;
    overflow: hidden;
}
.cards-wripper .box {
    color: white;
    background-color: rgba(255, 255, 255, .2);
    backdrop-filter: blur(30px);
    padding: 27px 46px;
    display: block;
    border-radius: 12px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);   
    border: 1px solid #ffffff4a;
    transition: border 0.3s, box-shadow 0.3s;
   display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    cursor: grab;
}
.cards-wripper .box img {
   width: 100px;
    height: 100px;
    border-radius: 50%;
    outline: 2px solid white;
    border: 3px solid transparent;
}
.cards-wripper .box span {
   margin: 22px 0 0;
   font-size: 20px;
}
.cards-wripper .box p {
margin: 10px 0 21px;
    font-size: 13px;
    letter-spacing: 1px;
    opacity: .8;
}
.cards-wripper .box button {
    padding: 7px 18px;
    font-size: 14px;
    border-radius: 6px;
    border: none;
    cursor: pointer;
    transition: .3s;
}
.cards-wripper .box button:hover {
 color: white;
    background-color: rgba(255, 255, 255, .2);
    border: 1px solid #ffffff4a;
}
.swiper-pagination-bullet {
    width: 14px;
    height: 14px;
  background: #333;
  opacity: .5;

}
.swiper-pagination-bullet-active {
    background: #007aff;
    opacity: 1;

} 
.swiper-button-prev,
.swiper-button-next {
   color: white;
   transition: .3s;
}
.swiper-button-prev:hover,
.swiper-button-next:hover {
    color: #007aff;
}
