.psw-button {
    font-size: 18px;
    font-weight: bold;
    display: inline-block;
    height: 46px;
    line-height: 46px;
    padding: 0 25px;
    text-decoration: none;
    transition-duration: .5s;
}

.psw-button.psw-primary-button {
    background: var(--e-global-color-primary);
    color: #fff;
    border-radius: 10px;

}

.psw-secondary-button {
    color: #fff;
    display: flex;
    align-items: center;
}

.psw-secondary-button:hover {
    color: #fff
}

.psw-secondary-button span {
    display: flex;
    transition: all 0.3s;
}

.psw-secondary-button:hover span {
    margin-left: 10px;
}

.psw-dot svg circle {
    fill: var(--e-global-color-primary);
    /* Sử dụng màu primary */
    transition: fill 0.3s ease;
    /* Hiệu ứng chuyển màu mượt */
}

.psw-dot svg {
    opacity: 0;
    position: absolute;
    transition: all 0.3s;
    top: 53%;
    left: 15px;
    transform: translate(-50%, -50%);
}

.psw-dot.active svg {
    opacity: 1;
    transition: all 0.3s;
}
.psw-custom-slide-widget {
    position: relative;
    height: calc(100vh - 80px);
    top: -100px;
}

@media (max-width: 767px) {
    .psw-custom-slide-widget {
        height: calc(100vh - 80px);
    }
  }
@media (min-width: 1025px) {
    .psw-custom-slide-widget {
        height: calc(100vh - 80px);
    }
}
@media (min-width: 767px) and (max-width: 1024px) {
    .psw-custom-slide-widget {
        height: calc(50vh);
    }
}

.psw-dots-container {
    display: flex;
    justify-content: center;
    position: absolute;
    bottom: 0;
    z-index: 2;
    left: 90px;
}

.psw-button-container {
    display: flex;
    flex-direction: row;
    column-gap: 15px;

}

.psw-dot {
    display: flex;
    flex-direction: column;
    align-items: center;
    cursor: pointer;
    position: relative;
    transition: all 0.3s;
}

.psw-dot.active {
    background-color: rgba(99, 99, 99, .75);
}

.psw-dot-title {
    font-size: 18px;
    margin-top: 5px;
    color: #fff;

}

.psw-dot-text {
    transition: all 0.3s;
}

.psw-dot.active .psw-dot-text {
    margin-left: 15px;
    font-weight: bold;
}

.psw-dot.active .psw-dot-title {
    font-weight: bold;
}

.psw-progress-bar {
    width: 100%;
    height: 2px;
    background-color: hsla(0, 0%, 100%, .5);
    position: absolute;
    top: 0;
    left: 0;
}

.psw-dot.active .psw-progress-bar {
    background-color: #fff;
    width: 100%;
}

.psw-progress-bar.active {
    width: 0;
}

.psw-arrow {

    display: flex;
    align-items: center;
}

.psw-arrow:hover {
    cursor: pointer;
}

@keyframes progress-bar-animation {
    0% {
        width: 0%;
    }

    100% {
        width: 100%;
    }
}

.psw-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 2s ease-in-out;
    z-index: 0;
}

.psw-slide-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.60);
    z-index: 1;
}

.psw-slide-content {
    position: absolute;
    bottom: 50px;
    /* Đặt giữa theo chiều dọc */
    left: 90px;
    /* Cố định 90px từ bên trái */
    transform: translateY(-50%);
    /* Dịch chuyển phần tử lên để căn giữa theo chiều dọc */
    display: flex;
    flex-direction: column;
    justify-content: center;
    /* Căn giữa nội dung theo chiều dọc */
    align-items: flex-start;
    /* Nội dung nằm bên trái */
    padding: 20px;
    box-sizing: border-box;
    z-index: 2;
}

@media (min-width: 1250px) {
    .psw-slide-content {
        width: 50%;
    }
}

.psw-slide .psw-slide-title {
    font-size: 36px;
    font-weight: bold;
    color: #ffffff;
    margin-bottom: 10px;
}

.psw-slide-description {
    font-size: 21px;
    color: #ffffff;
    margin: 10px 0 20px;
}

.psw-slide-copyright {
    position: absolute;
    bottom: 20px;
    right: 20px;
    color: #fff;
    font-size: 12px;
    z-index: 1;

}

.psw-header {
    z-index: 99;
}

.psw-header .psw-icon svg path {
    stroke: #fff;
}

.psw-header.psw-sticky .psw-icon svg path {
    stroke: #475467;
}

.psw-header.psw-sticky {
    background: #fff !important;
}



@media (min-width: 1480px) {
    .psw-dot {
        display: flex;
        padding-left: 10px;
        width: auto;
        height: 82px;
        align-items: flex-start;
        justify-content: center;
    }
}

@media (max-width: 1480px) {
    .psw-dot svg {
        opacity: 1;
        position: relative;
        left: 0;
        width: 15px;
        height: 15px;
        top: 0;
        transform: unset
    }

    .psw-dots-container {
        align-items: center;
        column-gap: 15px;

    }
    .psw-dots-container .container-psw-dot{
        width: fit-content;
        align-items: center;
        gap: 10px;
    }
    .psw-dot svg circle {
        fill: #fff;
        /* Sử dụng màu primary */
    }

    .psw-dot.active svg circle {
        fill: var(--e-global-color-primary);
        /* Sử dụng màu primary */
        transition: fill 0.3s ease;
        /* Hiệu ứng chuyển màu mượt */
    }

    span.psw-dot-text,
    .psw-progress-bar {
        display: none;
    }

    .psw-dot.active {
        background-color: unset;
    }

    .psw-dots-container {
        bottom: 50px;
    }

}

@media (min-width: 1350px) and (max-width: 1480px) {
    .psw-slide-content {
        left: 65px;
    }
}

@media (min-width: 640px) and (max-width: 1350px) {
    .psw-slide-content {
        left: 40px;
    }
}

@media (max-width: 640px) {
    .psw-slide-content {
        left: 20px;
        bottom: 90px;
        transform: translateY(0%);
    }
}

@media (min-width: 1024px) {
    .elementor.elementor .e-con>.elementor-widget.psw-des {
        max-width: 50%;
    }

    .psw-our-causes .swiper-slide .elementor-element>.e-con-inner>.elementor-element {
        padding-bottom: 20px;
    }
}

.psw-our-causes .swiper-slide .elementor-element>.e-con-inner {
    display: block;

}

.psw-our-causes .swiper-slide .elementor-element>.e-con-inner>.elementor-element {
    height: 100%;
    padding-bottom: 40px;
}

.psw-our-causes .swiper-slide .elementor-element>.e-con-inner>.elementor-element .elementor-widget-button {
    bottom: 0;
    position: absolute;
    width: 100%;
}

.container-psw-dot {
    display: flex;
    overflow-x: auto;
    width: 85vw;
}

.container-psw-dot.dragging {
    cursor: grabbing;
}

.container-psw-dot {
    cursor: grab;
    user-select: none;
    /* Ngăn bôi đen văn bản khi kéo */
    overflow-x: auto;
    /* Đảm bảo vùng kéo ngang hoạt động */
    scroll-behavior: smooth;
}

.container-psw-dot {
    overflow-y: auto;
    /* Hiển thị thanh cuộn dọc */
    scrollbar-width: none;
    /* Ẩn thanh cuộn mặc định trên Firefox */
}

.container-psw-dot::-webkit-scrollbar {
    width: 1px;
    /* Độ rộng của thanh cuộn */
    height: 1px;
    /* Độ cao của thanh cuộn ngang (nếu có) */
}

.container-psw-dot::-webkit-scrollbar-thumb {
    background: #888;
    /* Màu của thanh cuộn */
    border-radius: 0;
    /* Bo góc (0 nếu bạn muốn là đường thẳng) */
}

.container-psw-dot::-webkit-scrollbar-thumb:hover {
    background: #555;
    /* Màu thanh cuộn khi hover */
}

.container-psw-dot::-webkit-scrollbar-track {
    background: transparent;
    /* Nền thanh cuộn trong suốt */
}

.container-psw-dot::-webkit-scrollbar-button {
    display: none;
    /* Loại bỏ các nút mũi tên */
}

.psw-dot-text {
    padding: 30px;
    white-space: nowrap;
    /* Không cho phép xuống dòng */
    overflow: hidden;
    /* Ẩn phần nội dung vượt ra ngoài */
    text-overflow: ellipsis;
    /* Thêm dấu "..." nếu nội dung bị cắt */
    display: block;
    /* Đảm bảo phần tử hoạt động như một khối */
}

/* Tạo nhiều cột cho submenu */