.carousel-indicators li {
    bottom: -10px;
    position: relative;
    width: 6px;
    height: 6px;
    border-radius: 100%;
}

.overlay-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 10;
    background: #000000b1;
}

.img-carousel {
    height: 550px;
    object-fit: cover;
}

.overlay-content {
    padding: 30px;
    text-align: start;
    color: white;
    user-select: none;
    display: flex;
    justify-content: center;
    align-items: start;
    flex-direction: column;
}

.text-animate-body {
    width: 600px;
    position: relative;
    top: 0;
    height: 100%;
}

.text-animate-body>div {
    position: absolute;
    top: 80%;
    left: 0;
    opacity: 0;
    transition: .5s cubic-bezier(.57, .21, .69, 1.25);
    transform: translate(0, -50%) scale(0.8);
    filter: blur(50px);
    z-index: 10;
    width: 100%;
}

.text-animate-body>div.active {
    opacity: 1;
    top: 50%;
    left: 0;
    transform: translate(0, -50%) scale(1);
    filter: blur(0);
    z-index: 1000000;
    width: 100%;
    height: max-content;
    padding: 20px;
}

.text-animate-body .header-title span:nth-child(1) {
    font-size: 2.5em;
    font-weight: 700;
    letter-spacing: 5px;
    line-height: 1.1em;
}

.text-animate-body .header-title p {
    font-size: 18px;
    margin-top: 20px;
    margin-bottom: 20px;
}

.text-animate-body .header-title a {
    background: #8193F2;
    padding: 10px;
    border-radius: 10px;
    padding-left: 20px;
    padding-right: 20px;
    width: min-content;
    color: #fff;
    font-size: 1.2em;
    text-decoration: none;
    transition: .3s ease;
    border: 2px solid transparent;
}

.text-animate-body .header-title a:hover {
    opacity: .8;
    background: transparent;
    color: #fff;
    border: 2px solid #fff;
}



/*  */
.body-title {
    font-size: 1.5em;
    font-weight: 600;
    display: flex;
    flex-direction: column;
    width: fit-content;
}

.body-title span:nth-child(2) {
    background: #8193F2;
    padding: 5px 0 5px 0;
    border-radius: 15px;
    min-width: min-content;
    display: flex;
    justify-content: center;
    align-items: center;
}

.contain-buttom {
    font-size: 12px;
}

.contain-buttom a {
    background: #8193F2;
    padding: 8px 20px 8px 20px;
    border-radius: 5px;
    color: white;
    text-decoration: none;
}

.contain-buttom a span:nth-child(1) {
    position: relative;
    left: 0;
    transition: .3s;
}

.contain-buttom a:hover span:nth-child(1) {
    left: -5px;
}

.contain-buttom a span:nth-child(2) {
    position: relative;
    opacity: 0;
    left: -10px;
    transition: .3s;
}

.contain-buttom a:hover span:nth-child(2) {
    opacity: 1;
    left: 5px;
}

/*  */
.carousel-item .text-overlay {
    position: absolute;
    z-index: 10;
    width: 600px;
    left: 50px;
    top: 80%;
    transform: translate(0, -50%) scale(0.8);
    filter: blur(50px);
    height: max-content;
    padding: 20px;
    opacity: 0;
    color: #fff;
    transition: .5s cubic-bezier(.57, .21, .69, 1.25);
}

.carousel-item.active .text-overlay {
    top: 50%;
    transform: translate(0, -50%) scale(1);
    opacity: 1;
    filter: blur(0);
    transition: .5s cubic-bezier(.57, .21, .69, 1.25);
}


.carousel-item .text-overlay span:nth-child(1) {
    font-size: 2.5em;
    font-weight: 700;
    letter-spacing: 5px;
    line-height: 1.1em;
}

.carousel-item .text-overlay p {
    font-size: 18px;
    margin-top: 20px;
    margin-bottom: 20px;
}

.carousel-item .text-overlay a {
    background: #8193F2;
    padding: 10px;
    border-radius: 10px;
    padding-left: 20px;
    padding-right: 20px;
    width: min-content;
    color: #fff;
    font-size: 1em;
    text-decoration: none;
    transition: .3s ease;
    border: 2px solid transparent;
}

.carousel-item .text-overlay a:hover {
    opacity: .8;
    background: transparent;
    color: #fff;
    border: 2px solid #fff;
}
