/**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: #fff;
}
img {
max-width: 100%;
}
/**Typeo CSS End**/
.sppb-section, .sppb-section * {
--page-width: 1230px;
--base-fm: 'Rubik', sans-serif;
--title-size: 24px;
--base-size: 16px;
--black-clr: #000000;
--white-clr: #ffffff;
--bg-clr: #fffbf8;
--theme-clr: #ff6200;
}
.sppb-section {
width: 100%;
font-size: var(--base-size)
color:var(--white-clr);
font-family: var(--base-fm);
padding: 30px 0px;
}
.page-width {
max-width: var(--page-width);
width: 100%;
margin: auto;
padding: 0 15px;
}
.sppb-list {
display: flex;
flex-flow: row wrap;
width: calc(100% + 60px);
margin-left: -30px;
}
.sppb-list .sppb-item {
width: 33.33%;
padding: 0px 30px;
border-left: #e9e9e9 1px solid;
margin: 15px 0;
}
.sppb-img img {
max-height: 70px;
}
.sppb-list .sppb-item .tag {
display: block;
text-transform: uppercase;
margin-top: 20px;
opacity: 0.7;
}
.sppb-list .sppb-item h4 {
margin: 15px 0px 10px 0px;
font-size: var(--title-size);
font-weight: 400;
}
.sppb-list .sppb-item p {
margin-top: 0px;
line-height: 1.5;
}
.sppb-list .sppb-item:nth-child(3n+1) {
border-left: none;
}
.sppb-list .sppb-item .readmore {
text-decoration: none;
color: var(--theme-clr);
font-weight: 500;
text-transform: uppercase;
position: relative;
padding-bottom: 6px;
margin-top: 5px;
display: inline-block;
}
.sppb-list .sppb-item .readmore:after {
content: '';
position: absolute;
bottom: 0px;
left: 0px;
width: 20px;
height: 2px;
background-color: var(--theme-clr);
transition: 0.5s all;
}
.sppb-list .sppb-item .readmore:hover:after {
width: 100%;
}