.carousel-3D-swiper-section {
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 14px;
    color: #000;
    margin: 0;
    padding: 0;
    max-width: 1200px;
    margin: auto;
    overflow: hidden;
    min-height: 500px;
}

.carousel-3D-swiper-title {
    text-align: center;
    font-size: 2rem;
    color: rgb(0, 0, 0);
}

.carousel-3D-swiper .swiper-slide {
    position: relative;
}

.carousel-3D-swiper .image-wrapper {
    overflow: hidden;
    /* //@apply aspect-video; */
    max-height: 225px;
}

.carousel-3D-swiper .image-wrapper img {
    display: block;
    width: 100%;
    height: 100%;
    max-height: 225px;
    -o-object-fit: cover;
    object-fit: cover;
    /* border-radius: 8px; */
    -webkit-box-reflect: below 5px -webkit-linear-gradient(bottom, rgba( 255, 0, 0,	0.1 ) 0%, transparent 32px, transparent 100%);
}

.details {
    padding: 25px 20px;
    font-weight: 600;
    text-align: center;
    background-color: #fff;
}

.details span {
    display: block;
    font-size: 16px;
    color: #f44336;
}

.details h3 {
    margin: 0;
    font-weight: bold;
    font-size: 24px;
    line-height: 1.1;
}

.details p {
    margin: 8px 0 0;
    opacity: 0.65;
    font-size: 14px;
    font-weight: 500;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
}

.carousel-3D-swiper-section .swiper-pagination-bullet {
    margin: 0 4px;
  width: 16px;
  height: 16px;
    z-index: 50;
}

.carousel-3D-swiper-section .swiper-pagination-bullet-active {
    opacity: 1;
    background: orange;
}

.element-class {
    background-color: #213555;
}
.element-class:hover {
    background-color: #3E5879;
}

.custom-one {
    background-color: #213555;
}
.custom-tow {
    color: #213555;
}

.tab-button {
    color: #213555;
}

.tab-button:hover {
    color: #213555;
}

.active-tab {
    color: #213555;
    border-bottom: 2px solid #213555;
}

.tab-content {
    animation: fadeIn 0.3s ease-in-out;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.menu-item {
    position: relative;
    transition: color 0.3s ease;
}

.menu-item::after {
    content: "";
    position: absolute;
    bottom: -3px;
    right: 0;
    width: 0;
    height: 2px;
    background-color: #213555;
    transition: width 0.3s ease;
}

.menu-item:hover::after {
    width: 100%;
    left: 0;
}

.menu-item-f {
    position: relative;
}

.menu-item-f::after {
    content: "";
    position: absolute;
    bottom: 0;
    right: 0;
    width: 0;
    height: 2px;
    background-color: #d3d3d3;
    transition: width 0.3s ease;
}

.menu-item-f:hover::after {
    width: 100%;
    left: 0;
}

.menu-item.active::after {
    width: 100%;
    left: 0;
    background-color: #213555;
}

@media (max-width: 1024px) {
    .swiper-slide {
        width: calc(50% - 10px);
    }
}
@media (max-width: 640px) {
    .swiper-slide {
        width: 100%;
    }
}

.button-hover-effect {
    background: linear-gradient(to left, rgba(241, 241, 241, 0.6) 50%, rgb(0, 51, 51) 50%);
    background-size: 200% 100%;
    background-position: right bottom;
    transition: background-position 0.3s ease;
    color: black;
    text-align: center;
    padding: 1rem;
    border-radius: 9999px;
    font-weight: bold;
}

.button-hover-effect:hover {
    background-position: left bottom;
    color: white;
}

.product-text-content {
    overflow: hidden;
    position: relative;
    max-height: 100px;
    line-height: 1.6em;
    transition: max-height 0.3s ease;
}
.product-text-content::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 20px;
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0), rgba(255, 255, 255, 1));
}
.product-description-section.expanded .product-text-content {
    max-height: none;
}
.product-description-section.expanded .product-text-content::after {
    display: none;
}

.swiper-pagination-bullet-active {
    background-color: #213555 !important;
}

.swiper-pagination-bullet {
    background-color: #213555 !important;
}



