/* HERO SECTION */

.hero-section{
    position:relative;
}

#silderbox{
    position:relative;

    background-image:url("https://bigwash.in/img/franchise.jpeg");
    background-position:center;
    background-repeat:no-repeat;
    background-size:cover;
    min-height:700px;
    display:flex;
    align-items:center;
    padding:120px 5%;
	justify-content:center;
}

.backgroundoverlay{
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:100%;

    background:rgba(56,51,51,0.55);

    z-index:1;
}

.hero-content{
    position:relative;
    z-index:2;
	text-align:center;
    max-width:800px;
}

.sildsub-heading{
    font-size:14px;
    letter-spacing:3px;
    text-transform:uppercase;
    color:#fff;

    margin-bottom:20px;
}

.sildhero-left{
    font-size:72px;
    line-height:1.1;
    font-weight:700;
    color:#fff;

    margin-bottom:25px;
}

.herotextpara{
    font-size:17px;
    line-height:1.8;
    color:#fff;

    margin-bottom:35px;
}

.hero-btns{
    display:flex;
    gap:15px;
    flex-wrap:wrap;
	justify-content:center;
}

.sildprimary-btn{
    padding:15px 35px;
    border:none;
    border-radius:50px;
    background:#111;
    color:#fff;
    cursor:pointer;
}

.sildsecondary-btn{
    padding:15px 35px;
    border-radius:50px;
    border:1px solid #111;
    background:#fff;
    cursor:pointer;
}

/* WAVE */

.shapebottom{
    position:absolute;
    bottom:0;
    left:0;
    width:100%;
    overflow:hidden;
    line-height:0;
}

.shapebottom svg{
    /*width:100%;*/
    /*height:100px;*/
    /*display:block;*/
 width: calc(100% + 1.3px); height: 100px; transform: translateX(-50%) rotateY(180deg); display: block;position: relative;
    left: 50%; border:0vh solid black;}

.shapebottomfill{
    fill:#fff;
	 transform-origin: center; transform: rotateY(0deg);
	 transform: rotateX(180deg);
}
/* WAVE 2 */

.shapebottomw{
    position:absolute;
    bottom:-6vw;
    left:0;
    width:100%;
    overflow:hidden;
    line-height:0;
}

.shapebottomw svg{
    /*width:100%;*/
    /*height:100px;*/
    /*display:block;*/
 width: calc(100% + 1.3px); height: 100px; transform: translateX(-50%) rotateY(180deg); display: block;position: relative;
    left: 50%; border:0vh solid black;}

.shapebottomwfill{
    fill:#fff;
	 transform-origin: center; transform: rotateY(0deg);
	 transform: rotateX(0deg);
}




/* TABLET */

@media (max-width:992px){

    .sildhero-left{
        font-size:52px;
    }

    .herotextpara{
        max-width:100%;
    }

}

/* MOBILE */

@media (max-width:768px){

    #silderbox{
        min-height:650px;
        padding:100px 25px;
        text-align:center;
    }

    .hero-content{
        max-width:100%;
        margin:auto;
    }

    .sildhero-left{
        font-size:38px;
        line-height:1.2;
    }

    .sildsub-heading{
        font-size:12px;
        letter-spacing:2px;
    }

    .herotextpara{
        font-size:15px;
        line-height:1.7;
    }

    .hero-btns{
        flex-direction:column;
        align-items:center;
    }

    .sildprimary-btn,
    .sildsecondary-btn{
        width:100%;
        max-width:280px;
    }

    .shapebottom svg{
        height:60px;
    }
}

/* SMALL MOBILE */

@media (max-width:480px){

    .sildhero-left{
        font-size:30px;
    }

    .herotextpara{
        font-size:14px;
    }

    #silderbox{
        min-height:600px;
    }

}