:root {
    --primary-blue-color: #1D266B;
    --white-color: #FFFFFF;
    --black-color: #000000;
    --red-color: #CF3131;
}

*{
    box-sizing: border-box;
    padding: 0;
    margin: 0;
}


/* range */

.svtm-range-product-image-wrapper {
    /* position: relative; */
}


.svtm-range-product-image {
    width: 990px;
    position: relative;
    /* width: 65%; */
    height: 523px;
}

.svtm-range-product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}


.overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: var(--black-color);
    opacity: 0.2;
}

.svtm-blur-section {
    position: absolute;
    top: 40%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: linear-gradient(87.32deg, rgba(165, 165, 165, 0.4) 0%, rgba(165, 165, 165, 0) 100%);
    /* filter: blur(4px); */
    backdrop-filter: blur(4px);
}
.svtm-blur-section p{
    color: var(--white-color);
    font-size: 30px;
    font-family: "Roboto", sans-serif;
    font-style: normal;
    font-weight: 700;
    text-transform: capitalize;
    text-align: center;
    line-height: 1.6;
    padding: 7px 22px;
}

.range-button{
    position: absolute;
    /* bottom: 9%; */
    left: 50%;
    transform: translate(-50%);
    display: block;
    width: max-content;
    padding: 7px 22px;
    background: var(--primary-blue-color);
    color: var(--white-color);
    font-size: 18px;
    font-family: "Roboto", sans-serif;
    font-style: normal;
    font-weight: 700;
    line-height: 1.6;
    border: 2px solid var(--primary-blue-color);
    border-radius: 2px;
    text-transform: uppercase;
    text-decoration: none;
    text-align: center;
}



.product-overlay-wrapper{
    position: absolute;
    /* top: 35%; */
    top: 50%;
    left: 75%;
}

.first{
    margin-right: -25%;
    
}

.second{
   transform: translate(0%, 10%); 
}

.third{
    margin-left: -25%;
}
@media(max-width: 576px){
	.svtm-blur-section p{
		font-size: 24px;
	}
}