
.miltycolor {
    background: linear-gradient(97.67deg, #332F8A 34.47%, #6909B2 55.08%, #FF58EC 71.27%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.buttonmulty {
    background: linear-gradient(-99.08deg, #332F8A 13.84%, #6909B2 54.41%, #FF58EC 86.29%);
    display: inline-flex;

}

.contactbtn {
    background: linear-gradient(70deg, #2e3585, #422095, #8417bc, #ff58ec);
}

.contactbtn:hover {
    background: linear-gradient(70deg, #1b1f49, #321b6c, #8417bc, #bb50af);
}
  /*****************  Carousel  ******************/


.carousel-data {
    max-width: 900px;
    /* min-height: 30px; */
    margin: 0 auto;
    z-index: 100;
    text-align: center;
    /*overflow: hidden;
    position: relative;
    display: flex;
    align-items: center;*/
}

.carousel-item {
    opacity: 0;
    position: absolute;
    z-index: 500;
    transition: 500ms ease-in-out;
    visibility: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.initial-slide, .active-slide {
    opacity: 1;
    position: relative;
    z-index: 1000;
    visibility: visible;
}

.next, .prev {
    z-index: 900;
}

.next {
    -webkit-animation: animate-right 500ms;
            animation: animate-right 500ms;
}

.prev {
    -webkit-animation: animate-left 500ms;
            animation: animate-left 500ms;
}

@-webkit-keyframes animate-right {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(100%);
    }
  }

@keyframes animate-right {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(100%);
    }
  }

  @-webkit-keyframes animate-left {
    100% {
        transform: translateX(-100%);
    }
    0% {
        transform: translateX(0);
    }
  }

  @keyframes animate-left {
    100% {
        transform: translateX(-100%);
    }
    0% {
        transform: translateX(0);
    }
  }



.carousel-indicators {
    margin: 0 auto;
}

.carousel-indicators button {
    width: 10px;
    height: 10px;
    background: #a4a4a4;
    border-radius: 50%;
    margin-left: 8px;
}

.carousel-indicators button:first-of-type {
    margin-left: 0;
}


button.current-indicator {
    background: #6909B2;
}
.relative_cure{
    position: relative;
}
.relative_cure1{
    position: absolute;
    right: 0;
    bottom: 40px;
}
.relative_cure2{
    position: absolute;
    right: 0;
    bottom: 30px;
}
.relative_cure3{
    position: absolute;
    right: 0;
    bottom: 40px;
}
.relative_cure4{
    position: absolute;
    right: 0;
    bottom: -13px;
}
/* RESPONSIVE HOW WE DO IT START */
.border_b {
    border-bottom: 3px solid transparent;
    border-image: linear-gradient(99.08deg, rgba(0, 8, 107, 0.82) 13.84%, #6708B1 54.41%, rgba(255, 51, 232, 0.82) 86.29%);
    border-image-slice: 1;
    border-radius: 10px;
}


.fancy-borders:after {
    bottom: -3px;
    right: -3px;
    /* border-bottom-right-radius: 10px; */

}



.fancy-borders {
    position: relative;
    background-color: #fff;
    margin-bottom: 40px;
        border-bottom-right-radius: 20px;

}

.fancy-borders:after {
    content: "";
    position: absolute;
    width: 50%;
    height: 100%;
    background: linear-gradient(99.08deg, rgba(0, 8, 107, 0.82) 13.84%, #6708B1 54.41%, rgba(255, 51, 232, 0.82) 86.29%);
    z-index: -1;
    border-bottom-right-radius: 23px;
}

@media (max-width: 400px) {
    .fancy-borders:after {
        width: 70%;
    }
}