/**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**/
.page-width {
max-width: 1300px;
padding: 0 15px;
margin: auto;
width: 100%;
}
.app-discount-scn {
width: 100%;
display: block;
padding: 50px 0;
}
.app-discount-list {
display: flex;
flex-flow: row wrap;
justify-content: space-between;
}
.app-discount-list .app-disc-item {
width: calc(50% - 20px);
}
.app-disc-item img {
display: block;
}
@media(max-width:1200px) {
.app-discount-list .app-disc-item {
width: calc(50% - 10px);
}
}
@media(max-width:767px) {
.app-discount-scn {
padding: 20px 0px;
}
.app-discount-list .app-disc-item {
width: 100%;
margin: 10px 0;
}
}