.slider {
    background-color: #f3f1f1;

    /*background: linear-gradient(90deg, rgba(242, 240, 240, 0) 0%, #f3f1f1 30%);*/
    padding: 0px 0px 0px 40px;
    border-width: 3px 0px 0px 0px;
    border-style: solid;
    border-color: #fff;
    border-radius: 10px 10px 10px 10px;
    height: calc(100vh - 553px);
    transition: all 0.3s ease;
}

.carousel-inner {
    padding: 0px !important;
}

.slider:hover {
    background-color: #e9e9e9;
    box-shadow: 0px 0px 10px 5px rgba(0, 0, 0, 0.05);
}

.slider .carousel {
    height: 100%;
}

.slider .carousel-item {
    height: 100%;
    width: 100%;
    padding: 10px;
}


.slider .carousel-item .slideImg {
    position: absolute;
    top: 0px;
    height: 100%;
    padding: 0px 0px 0px 0px;
}


.slider .carousel-item .slideVideo {
    position: absolute;
    top: 0px;
    height: 100%;
    padding: 0px 0px 0px 0px;
}

.slider .carousel-item .slideVideo video {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    object-fit: cover;  /* ვიდეო გადავსებს div-ს */
    transform: translate(-50%, -50%);
    z-index: 1;
}

.slider .carousel-item .bgImage {
    height: 100%;
    width: 100%;
    border-radius: 0px 5px 5px 0px;
    z-index: 2;
}

.slider .carousel-item .itemDesc {
    position: absolute;
    height: 90%;
    top: 0px;
    left: 0px;
    padding-top: 10vh;
    display: flex;
    align-items: center;
    text-align: left !important;
    z-index: 2 !important;
}

.slider .carousel-item .itemDesc .title {
    font-size: 25px;
    font-family: "MyriadGEOMtavruliMedium";
}

.slider .carousel-item .itemDesc .desc {
    margin-top: 20px;
    font-size: 10px;
    letter-spacing: 0.3px;
    color: rgba(0,0,0,0.7);
}

.slider .carousel-item .itemDesc button {
    width: 50%;
    height: 45px;
    background: rgba(255,255,255,0.7);
    font-size: 10px;
    color: rgba(0,0,0,0.5);
    letter-spacing: 0.2px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-width: 3px;
    border-style: solid;
    border-color: rgba(255,255,255,0.4);
    padding: 0px;
    margin-top: 30px;
    border-radius: 10px;
    box-shadow: -2px 5px 15px 0px rgba(0, 0, 0, 0.1);
}

.slider .carousel-item .itemDesc button text {
    padding: 10px 10px 10px 20px;
}

.slider .carousel-item .itemDesc button span {
    height: 100%;
    width: auto;
    display: flex;
    align-items: center;
    padding: 0px 15px 0px 15px;
    border-radius: 10px;
    color: #fff;
    background: linear-gradient(90deg, rgba(0, 213, 195, 1) 0%, rgba(0, 189, 200, 1) 60%);
}

.slider .carousel-item .itemDesc button span i {
    font-size: 20px;
}

.slider .carousel-indicators {
    bottom: 30px;
    padding: 15px 7vw 15px 15px;
    margin: 0px !important;
    width: 50%;
    justify-content: start;
    z-index: 99;
}

.slider .carousel-indicators [data-bs-target] {
    border-top: none;
    border-bottom: none;
    width: 7px;
    height: 7px;
    border-radius: 5px !important;
    background-color: rgba(0, 0, 0, 0.1);
    margin: 0 6px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    opacity: 1;
}


.slider .carousel-indicators .active {
    width: 50px;
    background-color: rgba(0, 0, 0, 0.1);
}


.slider .carousel-indicators .active::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 0;
    /*background-color: #fff;*/
    background: linear-gradient(90deg, rgba(0, 213, 195, 1) 0%, rgba(0, 189, 200, 1) 60%);
    animation: indicatorLoader 6000ms linear forwards;
    z-index: 1;
}

/*.slider .carousel-indicators .active {*/
/*    width: 50px;*/
/*    border-radius: 20px !important;*/
/*    background-color: rgba(0, 0, 0, 0.4);*/
/*}*/


@keyframes indicatorLoader {
    0% {
        width: 0%;
    }
    100% {
        width: 100%;
    }
}



.slider .arrows {
    display: flex;
    position: absolute;
    width: 70px;
    bottom: 30px;
    right: 55px;
    z-index: 3 !important;
}

.slider .arrows button {
    border-width: 0px;
    width: 35px;
    height: 35px;
    border-radius: 30px;
    z-index: 3 !important;
    background-color: rgba(255,255,255,0.3);
}

