.elementor-widget-fat_home_slider{
    width: 100%;
    height: 100vh;
}
.fat-home-slider-container{
    background-image: var(--background);
	background-size:cover;
    height: 100vh;
    position: relative;
    -moz-transition: background-image 0.3s ease-in-out;
    -webkit-transition: background-image 0.3s ease-in-out;
    transition: background-image 0.3s ease-in-out;

}

.fat-home-slider-container:before{
    content: '';
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.75);
    position: absolute;
    top: 0 ;
    left: 0;
    width: 100%;
    height: 100%;
}

.home-slider-heading h2{
    margin-top: 0px;
    margin-bottom: 50px;
    color: #fff;
    font-size: 58px;
    text-align: center;
}

.home-slider-heading{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translateX(-50%) translateY(-50%);
    -webkit-transform: translateX(-50%) translateY(-50%);
    -moz-transform: translateX(-50%) translateY(-50%);
    text-align: center;
    z-index: 1;
}

.fat-home-slider-container .slider-items{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-wrap: nowrap;
}
.fat-home-slider-container .slider-items .slider-item{
    flex: 1;
    text-align: center;
    align-content: flex-end;
    padding-bottom: 90px;
    transition: all 0.3s;
    -moz-transition: all 0.3s;
    -webkit-transition: all 0.3s;
    cursor: pointer;
}
.fat-home-slider-container .slider-items .slider-item:hover{
    background-color: rgba(255,255,255,0.1);
}
.fat-home-slider-container .slider-items .slider-item:not(:last-child){
    border-right: solid 1px #515151;
}

.fat-home-slider-container .slider-items .slider-item .slider-title{
    font-size: 36px;
    color: #a1a1a1;
}

@media (max-width: 991px){
    .home-slider-heading{
        width: 90%;
    }
    .home-slider-heading h2{
        font-size: 40px;
    }
}
@media (max-width: 768px){
    .fat-home-slider-container .slider-items .slider-item{
        padding-left: 15px;
        padding-right: 15px;
    }
    .fat-home-slider-container .slider-items .slider-item .slider-title{
        font-size: 16px;
    }
}

@media (max-width: 600px){
    .home-slider-heading h2{
        font-size: 30px;
    }
}