:root {
    --primary-blue-color: #1D266B;
    --white-color: #FFFFFF;
    --black-color: #000000;
    --red-color: #CF3131;
    --light-white: #7E7E81;
    --light-blue-bg: #D7E9FF;
    --circle-color: #B8B8BD;
}

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


p {
    margin-bottom: 0rem;
}

ul {
    padding-left: 0rem;
}

h2 {
    margin-bottom: 0rem;
}



/* banner css */


.svtm-banner-container {
    height: 300px;
    width: 100%;
    position: relative;
}


.svtm-banner-image {
    width: 100%;
    height: 100%;
    position: relative;
}


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


.banner-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
}

.banner-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);

}

.banner-text>h1 {
    font-size: 50px;
    font-family: 'Roboto', sans-serif;
    font-style: normal;
    font-weight: 700;
    color: var(--white-color);
    text-align: center;
}


@media(max-width:768px) {
    .banner-text>h1 {
        font-size: 40px;
    }
}

@media(max-width:576px) {
    .banner-text>h1 {
        font-size: 32px;
    }

}

/* end of banner section css */


/* About us css */


.svtm-abtus-container-wrapper {
    max-width: 1200px;
    margin: auto;
    padding: 72px 24px;
}


.svtm-about-us-leftside>h3 {
    font-size: 20px;
    font-weight: 700;
    font-style: normal;
    font-family: 'Roboto', sans-serif;
    color: var(--primary-blue-color);
    text-transform: uppercase;
    margin-bottom: 24px;
}

.svtm-about-title {
    font-size: 30px;

}

.svtm-about-content {
    color: var(--black-color);
    opacity: 0.8;
    font-size: 18px;
    font-weight: 400;
    font-family: "Roboto", sans-serif;
    line-height: 1.6;
	text-align: justify;
    /* display: -webkit-box;
    -webkit-line-clamp: 8;
    -webkit-box-orient: vertical;
    overflow: hidden; */
    margin-bottom: 7%;
}

.svtm-about-us-rightside {
    width: 100%;
    height: 400px;
}

.svtm-about-us-rightside img {
    width: 100%;
    object-fit: cover;
}



@media(max-width:767px) {
    .svtm-abtus-container-wrapper {
        padding: 24px 0px;

    }

    .labt-us {
        padding-left: 24px;
        padding-right: 24px;
    }




}

@media(max-width:576px) {
    .rabt-us {
        padding: 0px;
    }

}







/* rd-paints-description css*/

.rd-paint-descriptions-container {
    background: #000b5dd4;
    margin-bottom: 24px;
}

.rd-paint-descriptions-container-wrapper {
    
    max-width: 1200px;
    margin: auto;
}

.rd-paint-description {
    width: 100%;
}


.rd-paint-description-text {
   
    padding-left: 54px;
    padding-right: 24px;
}

.rd-paint-description-text>h3 {
    text-transform: uppercase;
    color: var(--white-color);
    font-size: 30px;
    font-weight: 700;
    font-family: 'Roboto', sans-serif;
    
}

.rd-paint-description-text>p:nth-of-type(1) {
    font-size: 30px;
    font-weight: 700;
    font-family: 'Roboto', sans-serif;
    padding-top: 36px;
    color: var(--white-color);
}


.rd-paint-description-text p {
    width: 90%;
    color: var(--white-color);

    font-family: "Roboto", sans-serif;
}

.rd-paint-description-text .rd-director {
    font-size: 18px;
    font-weight: 400;
    padding-top: 24px;
    padding-bottom: 54px;
    line-height: 1.4;
    opacity: 0.8;
	text-align: justify;
}




.rd-paint-descriptions-image-container {
    padding: 0;
    height: auto;
    /* height: 540px; */
}

.rd-paint-description-image {
    width: 100%;
    height: 100%;
}

.rd-paint-description-image>img {
    width: 100%;
    height: 100%;
    object-fit: cover;
	object-position: top center;
}





/* responsive of description section */


@media(max-width:767px){
    .rd-paint-descriptions-image-container{
        height: 540px;
    }

    .rd-paint-description-text{
        padding-left: 16px;
		padding-right: 16px;
    }

    .rd-paint-description-text p{
        width: 100%;
    }

    
.rd-paint-description-text>p:nth-of-type(1){
    font-size: 25px;
} 

.rd-paint-description-text .rd-director{
    padding-top: 7px;
} 

.rd-paint-description-text>h3{
    font-size: 27px;
}
	
	.rd-paint-descriptions-image-container{
		order:1;
	}
	
	.rd-paint-descriptions-details{
		order:2;
	}
}

/* End-paints-description css */




/* End of About-us css */