/**Typeo CSS Start**/
@import url('https://fonts.googleapis.com/css2?family=Rubik:ital,wght@0,400;0,500;0,700;0,800;1,300;1,400;1,500;1,600;1,700&display=swap');
* {
box-sizing: border-box;
}
body {
margin: 0px;
background-color: #d5d5d5;
}
/**Typeo CSS End**/
.usp-scn, .usp-scn * {
--page-width: 1230px;
--base-fm: 'Rubik', sans-serif;
--title-size: 24px;
--base-size: 14px;
--white-clr: #ffffff;
--theme-clr: #f16237;
}
/**USD Section Start**/
.usp-scn {
width: 100%;
padding: 40px 0px;
background-color: var(--white-clr);
font-family: var(--base-fm);
}
.usp-scn h2 {
font-size: var(--title-size);
margin: 0px 0px 30px 0px;
}
.page-width {
max-width: var(--page-width);
padding: 0 15px;
margin: auto;
width: 100%;
}
.usp-inner {
display: flex;
flex-flow: row wrap;
justify-content: space-between;
}
.usp-inner .usp-item {
width: calc(33.33% - 10px);
border: #ededed 1px solid;
display: flex;
padding: 20px 15px;
flex-flow: row wrap;
align-items: center;
text-align: center;
text-transform: uppercase;
}
.usp-inner .usp-item .usp-icn {
width: 70px;
height: 70px;
border-radius: 100%;
background-color: var(--theme-clr);
display: flex;
flex-flow: row wrap;
align-items: center;
justify-content: center;
margin: auto;
}
.usp-cont {
font-size: var(--base-size);
line-height: 1.4;
width: 100%;
padding-top: 10px;
}
.usp-item .usp-title {
font-size: var(--title-size);
display: block;
width: 100%;
color: var(--theme-clr);
margin-bottom: 4px;
}
@media(max-width:992px) {
.usp-item .usp-title {
font-size: calc(var(--title-size) - 2px);
}
}
@media(max-width:767px) {
.usp-scn {
padding: 20px 0
}
.usp-inner .usp-item {
margin: 8px 0px;
width: 100%;
}
}
/**USD Section End**/