.smm_slider_height{
    height:85vh;
    width:100vw;
}

.smm_slider-item{
    height:100%;
    width:100%;
    background-size:cover;
    transform: scale(0);
    transform-origin: bottom;
    border-radius:80%;
}
.smm_slider-item.active{
    transform: scale(1);
    border-radius:0;
    transition: all 0.5s ease-in-out;
}

.smm_slider_item_content{
    height: 100%;
    width: 70%;
    margin: auto;
    color: white;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.smm_slider_item_content_linkedin{
    height: 100%;
    width: 45%;
    margin-right: auto;
    margin-left:5vw;
    color: #343a40;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}


.smm_slider_item_content_twitter{
    height: 100%;
    width: 45%;
    margin-right: auto;
    margin-left:5vw;
    color: white;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}


.smm_slider_item_content_youtube{
    height: 100%;
    width: 45%;
    margin:auto;
    color: white;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    
}

@media screen and (max-width:992px)
{
    .smm_slider_item_content_linkedin{
        width:90%;
        margin:auto;
        text-align:left;
    }
    
    .smm_slider_item_content_twitter{
        width:90%;
        margin:auto;
        text-align:left;
    }
    
    .smm_slider_item_content_youtube{
        width:90%;
        margin:auto;
        text-align:left;
    }
}

.position-slider-Content{
    position:relative;
    z-index:5;
}

.slider-overlay{
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:100%;
    background:black;
    opacity:0.4;
}


.text-youtube{
    color:#FF0000;
}

.text-twitter{
    color:#00acee;
}

.text-linkedin{
    color:#0077b5;
}


.smm_slider .slick-dots{
    bottom: 5vh;
}

.smm_slider .slick-dots li{
    width: 70px;
    height: 70px;
    border-radius: 50%;
    box-shadow:none;
    transition:all 0.5s ease-out;
}

.smm_slider .slick-dots li.slick-active{
    width: 80px;
    height: 80px;
    box-shadow: 4px 4px 22px #767676;
}

.smm_slider .slick-dots li button{
    width: 100%;
    height: 100%;
    background:white;
    color: red;
    font-size: 1.8em;
    border-radius:50%;
    filter: grayscale(1);
}


.smm_slider .slick-dots li.slick-active button{
    filter: grayscale(0);
    font-size: 2em;
}

.smm_slider .slick-dots li button:before{
    content:"";
}


/*Testimonials Slider CSS*/



.testimonials_slider_landing .slick-dots li{
    width: 12px;
    height: 12px;
    background: #9f9f9f;
    border-radius:30px;
    margin: 0 2px;
    transition: all 0.3s ease-out;
}

.testimonials_slider_landing .slick-dots li.slick-active{
    width: 30px;
    background: var(--theme);
}

.testimonials_slider_landing .slick-dots li button:before{
    content:"";
}


.clients_slide_right{
    position: absolute;
    top: 0;
    bottom: 0;
    margin: auto;
    right: 25px;
    height: 2px;
    width: 5vw;
    background: white;
    z-index: 50;
    cursor:pointer;
}

.clients_slide_right::before{
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    margin: auto;
    right: -10px;
    height: 25px;
    width: 25px;
    border-radius: 50%;
    border: 2px solid white;
}


.clients_slide_left{
    position: absolute;
    top: 0;
    bottom: 0;
    margin: auto;
    left: 25px;
    height: 2px;
    width: 5vw;
    background: white;
    z-index: 50;
    cursor:pointer;
}

.clients_slide_left::before{
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    margin: auto;
    left: -10px;
    height: 25px;
    width: 25px;
    border-radius: 50%;
    border: 2px solid white;
}


