body{
    color: var(--color-two);
    font-weight: 600!important;
    background: var(--main-bakgroud-two);
}
.buttonTwo {
    padding: 0.65rem 1.5rem;
    border-radius: .25rem;
    font-weight: 500;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    text-align: center;
    position: relative;
    cursor: pointer;
    z-index: 1;
    overflow: hidden;
}
.buttonTwo::after {
    content: '';
    position: absolute;
    bottom: 0;
    transition: 0.3s;
    background: #fff;
    z-index: -2;
    width: 0;
    left: 50%;
    height: 100%;
    transform: translateX(-50%);
}
.buttonTwo:hover:after {
    width: 100%;
}

.buttonTwo:not(button) {
    text-align: center;
}
.bg-linear{
    background: linear-gradient(0deg, rgba(39,109,190,0.15) 0%, rgba(50,198,206,0.25) 30%, rgba(255,255,255,0) 100%);
}


/*sectionThree*/

.circles_animate{
    position: absolute;
    inset: 0;
    z-index: -1;
    transition: 0.6s;
    -webkit-animation: circles 10s infinite ease-in-out alternate;
    -moz-animation: circles 10s infinite ease-in-out alternate;
    -o-animation: circles 10s infinite ease-in-out alternate

}

@-webkit-keyframes circles {
    0% {
        -webkit-transform: rotate(0deg)
    }

    70% {
        -webkit-transform: rotate(-90deg)
    }

    100% {
        -webkit-transform: rotate(-180deg)
    }
}

@keyframes circles {
    0% {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg)
    }

    70% {
        -webkit-transform: rotate(-90deg);
        transform: rotate(-90deg)
    }

    100% {
        -webkit-transform: rotate(-180deg);
        transform: rotate(-180deg)
    }
}

/*slider*/
.owl-theme .owl-nav [class*=owl-]:hover {
    background: transparent;

}

.web-design-slider .owl-nav {
    display: flex;
    width: 100%;
    justify-content: space-between;
    margin: 0;
}

.web-design-slider .owl-nav .owl-prev {
    position: absolute;
    right: -30px;
    top: 50%;
    transform: rotate(90deg);
}
.web-design-slider .owl-nav .owl-next {
    position: absolute;
    left: -30px;
    top: 50%;
    transform: rotate(90deg);
}
.m_scroll_arrows {
    display: block;
    -ms-transform: rotate(-135deg);
    -webkit-transform: rotate(-135deg);
    transform: rotate(-135deg);
    border-right: 5px solid var(--goldDark);
    border-bottom: 5px solid var(--goldDark);
    border-radius: 2px;
    width: 15px;
    height: 15px;
}
.arrow-three,
.arrow-two,
.arrow-one {
    -webkit-animation: mouse-scroll 1s infinite;
    -moz-animation: mouse-scroll 1s infinite;
    animation: mouse-scroll 1s infinite;
}
.arrow-three {
    -webkit-animation-delay: 0.1s;
    -moz-animation-delay: 0.1s;
    -webkit-animation-direction: alternate;
    animation-direction: alternate;
    margin-top: -6px;
}
.arrow-two {
    -webkit-animation-delay: 0.2s;
    -moz-animation-delay: 0.2s;
    -webkit-animation-direction: alternate;
    animation-delay: 0.2s;
    animation-direction: alternate;
    margin-top: -6px;
}
.arrow-one {
    -webkit-animation-delay: 0.3s;
    -moz-animation-delay: 0.3s;
    -webkit-animation-direction: alternate;
    animation-delay: 0.3s;
    animation-direction: alternate;

}
.add-arrow-down{
    transform: scale(-1);
}
.add-arrow-down .arrow-one{
    margin-top: 6px;
}
@-webkit-keyframes mouse-scroll {
    0% {
        opacity: 0;
    }
    50% {
        opacity: 0.5;
    }
    100% {
        opacity: 1;
    }
}
@-moz-keyframes mouse-scroll {
    0% {
        opacity: 0;
    }
    50% {
        opacity: 0.5;
    }
    100% {
        opacity: 1;
    }
}
@-o-keyframes mouse-scroll {
    0% {
        opacity: 0;
    }
    50% {
        opacity: 0.5;
    }
    100% {
        opacity: 1;
    }
}
@keyframes mouse-scroll {
    0% {
        opacity: 0;
    }
    50% {
        opacity: 0.5;
    }
    100% {
        opacity: 1;
    }
}

/*slider*/

/*sectionThree*/

/*tabs-index*/
.tabs_index__li{
    position: relative;
}

.tabs_index__li .tabs_index__li_div {
    position: relative;
    background-color: #dedede;
    border-color: #dedede;
    height: 4rem;
    color: black;
}

.tabs_index__li.completed>.tabs_index__li_div {

    background-color: #e7ab8d !important;
    border-color: #e7ab8d !important;
}

.tabs_index__li.activeTab>.tabs_index__li_div {

    background-color: #e7ab8d !important;
    border-color: #e7ab8d !important;
}
.tabs_index__li.activeTab>.tabs_index__li_div>h6 {
    color: #fff !important;

}

.tabs_index__li::after:last-child {
    border: none;
}

.tabs_index__li:hover .tabs_index__li_div{
    color: #fff;
    background-color: #e7ab8d;
    border-color: #e7ab8d;
}

@media(min-width:992px) {
    .tabs_index__li::after,
    .tabs_index__li>.tabs_index__li_div::after {
        content: '';
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        right: 100%;
        height: 0;
        width: 0;
        border: 31px solid transparent;
        border-left-width: 0;
        /*border-left-width: 20px*/
    }
    .tabs_index__li::after {
        z-index: 1;
        -webkit-transform: translate(-20%,-50%);
        -moz-transform: translate(-20%,-50%);
        -ms-transform: translate(-20%,-50%);
        -o-transform: translate(-20%,-50%);
        transform: translate(-20%,-50%);
        border-right-color:#030303;
        margin: 0;
    }
    .tabs_index__li>.tabs_index__li_div::after {
        z-index: 2;
        border-right-color: inherit;
    }
    .tabs_index__li:nth-of-type(1) > .tabs_index__li_div {
        border-radius: 0 10px 10px 0;
    }
    .tabs_index__li:last-child .tabs_index__li_div {
        border-radius: 10px 0 0 10px;
    }

    .tabs_index__li:last-child .tabs_index__li_div:after,
    .tabs_index__li:last-child:after {
        content: "";
        border: none;
    }
}
/**tabs_index**/
