.Pro_list_Home_cards_wrapper {
    font-family: 'Poppins', sans-serif;
    width: 100%;
}
.Pro_list_Home_cards_header {
    background-color: #47a8a8;
    height: 120px;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: flex-end;
}
.Pro_list_Home_cards_arch {
       position: relative;
    top: 80px;
}
.Pro_list_Home_cards_title {
   
 
  
    text-align: center;
    line-height: 1.1;
    margin: 0;

    position: absolute;
    transform: translate(-50%, -50%);
    top: 50%;
    left: 50%;
        font-size: 37px;
    font-weight: 700;
    text-transform: uppercase;
    color: #42A7A9;
}
.Pro_list_Home_cards_body {
    background-color: #dcba90;
    padding: 50px 20px 80px;
    position: relative;
}
.Pro_list_Home_cards_container {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
}
.Pro_list_Home_cards_swiper {
    width: 100%;
    padding: 20px 0;
}
.Pro_list_Home_cards_card {
    display: flex;
    flex-direction: column;
    text-decoration: none;
    text-align: center;
    width: 100%;
    max-width: 260px;
    margin: 0 auto;
    cursor: pointer;
}
.Pro_list_Home_cards_img_box {
    position: relative;
    width: 100%;
    aspect-ratio: 1 / 1;
    border-radius: 50%;
    overflow: hidden;
    margin-bottom: 20px;
   
}
.Pro_list_Home_cards_img_primary,
.Pro_list_Home_cards_img_hover {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
    transition: opacity 0.4s ease-in-out, transform 0.4s ease-in-out;
}
.Pro_list_Home_cards_img_hover {
    opacity: 0;
    
}
.Pro_list_Home_cards_card:hover .Pro_list_Home_cards_img_hover {
    opacity: 1;
   
}
.Pro_list_Home_cards_card:hover .Pro_list_Home_cards_img_primary {
    opacity: 0;
}
.Pro_list_Home_cards_name {
    background-color: #050505;
    color: #ffffff;
    padding: 12px 15px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    transition: background-color 0.3s;
}
.Pro_list_Home_cards_card:hover .Pro_list_Home_cards_name {
    background-color: #222222;
}
.Pro_list_Home_cards_nav {
    position: absolute;
    top: 40%;
    transform: translateY(-50%);
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 2px solid #47a8a8;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    transition: all 0.3s;
    background: transparent;
}
.Pro_list_Home_cards_nav svg {
    width: 20px;
    height: 20px;
    fill: none;
    stroke: #47a8a8;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
    transition: stroke 0.3s;
}
.Pro_list_Home_cards_nav:hover {
    background-color: #47a8a8;
}
.Pro_list_Home_cards_nav:hover svg {
    stroke: #ffffff;
}
.Pro_list_Home_cards_prev {
    left: -60px;
}
.Pro_list_Home_cards_next {
    right: -60px;
}
.swiper-pagination-bullet {
    background: #000000;
    opacity: 0.2;
}
.swiper-pagination-bullet-active {
    background: #000000;
    opacity: 0.8;
}
.Pro_list_Home_cards_pagination {
    bottom: -10px !important;
}

@media (max-width: 1350px) {
    .Pro_list_Home_cards_prev { left: 0px; background: rgba(223, 194, 161, 0.8); }
    .Pro_list_Home_cards_next { right: 0px; background: rgba(223, 194, 161, 0.8); }
}

@media (max-width: 767px) {
    .Pro_list_Home_cards_header {
        height: 100px;
    }
    /* .Pro_list_Home_cards_arch {
        width: 300px;
        height: 110px;
        border-radius: 150px 150px 0 0;
        padding-top: 20px;
    } */
    .Pro_list_Home_cards_title {
        font-size: 20px;
    }
    .Pro_list_Home_cards_body {
        padding: 40px 15px 60px;
    }
    .Pro_list_Home_cards_swiper {
        height: 100%;
        padding-bottom: 0px;
    }
    .Pro_list_Home_cards_swiper .swiper-slide {
        height: calc((100% - 30px) / 2) !important;
        display: flex;
        justify-content: center;
        align-items: flex-start;
		        margin-bottom: 2rem;
    }
    .Pro_list_Home_cards_nav {
        border: none;
        width: 30px;
        height: 50px;
        border-radius: 0;
        top: 50%;
        background: transparent !important;
    }
    .Pro_list_Home_cards_nav svg {
        width: 30px;
        height: 30px;
        stroke: #ffffff;
        stroke-width: 3;
    }
    .Pro_list_Home_cards_prev { left: -10px; }
    .Pro_list_Home_cards_next { right: -10px; }
    .Pro_list_Home_cards_name {
        font-size: 12px;
        padding: 10px 5px;
    }
}