@font-face {
    font-family: 'Manrope';
    src: url('fonts/Manrope-ExtraLight.woff2') format('woff2'),
         url('fonts/Manrope-ExtraLight.woff') format('woff');
    font-weight: 200;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Manrope';
    src: url('fonts/Manrope-Light.woff2') format('woff2'),
         url('fonts/Manrope-Light.woff') format('woff');
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Manrope';
    src: url('fonts/Manrope-Regular.woff2') format('woff2'),
         url('fonts/Manrope-Regular.woff') format('woff');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Manrope';
    src: url('fonts/Manrope-Medium.woff2') format('woff2'),
         url('fonts/Manrope-Medium.woff') format('woff');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Manrope';
    src: url('fonts/Manrope-SemiBold.woff2') format('woff2'),
         url('fonts/Manrope-SemiBold.woff') format('woff');
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Manrope';
    src: url('fonts/Manrope-Bold.woff2') format('woff2'),
         url('fonts/Manrope-Bold.woff') format('woff');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Manrope';
    src: url('fonts/Manrope-ExtraBold.woff2') format('woff2'),
         url('fonts/Manrope-ExtraBold.woff') format('woff');
    font-weight: 800;
    font-style: normal;
    font-display: swap;
}
* {
	box-sizing: border-box;
}
:root {
  --primary:#115278;
  --secodary:#1ebeb6;
}
html {
	box-sizing: border-box;
	-moz-osx-font-smoothing: grayscale;
	-webkit-font-smoothing: antialiased;
	-webkit-tap-highlight-color: transparent;
	-ms-text-size-adjust: 100%;
	-webkit-text-size-adjust: 100%;
}
body {
	background: #fff;
	color: #333;
	font-family: 'Manrope', sans-serif;
	font-size: 16px;
	font-weight: 500;
	margin: 0;
}
a {
	text-decoration: none;
}
h1, h2, h3, h4, h5, h6 {
	margin: 0;
}
p {
	margin: 0;
}
ul {
	margin: 0;
	padding: 0;
}
.container {
	width: 80%;
	margin: 0 auto;
}
.container::after {
	content: "";
	width: 100%;
	display: table;
	clear: both;
}
header {
	background: #fff;
	padding:10px 0;
	border-bottom: 1px solid #ddd;
}
.container-full {
	margin: 0 10%;
	display: flex;
	justify-content: space-between;
	align-items: center;
	flex-wrap: wrap;
}
.h-md-2 {	
	max-width:150px;
}
.h-md-2 img {
	max-width:140px;
}
.h-md-6 {
	width:45%;
}
.h-md-4 {
	width: 30%;
	position: relative;
}
.mobile-icon-search {
	display: none;
}
.mobile-icon-menu {
	display: none;
}
@media screen and (max-width:1025px) {
	.container-full {
		margin: 0 3%;
	}
	.container {
		width: 90%;
	}
	.h-md-6 {
		display: none;
	}
	.h-md-2 {
		width: 150px;
	}
	.h-md-4 {
		width: calc(90% - 200px);
		margin-right: 60px;
	}
	.mobile-icon-menu {
		display: block;
		position: absolute;
		top: 32px;
		right: 3%;
		font-size: 33px;
		width: 30px;
	}
}

@media screen and (max-width:600px) {
	.h-md-2 {
		width:100px;
	}
	.h-md-4 {
		display: none;
	}
	.mobile-icon-menu {
		top: 25px;
	}
	.mobile-icon-search {
		display: block;
		position: absolute;
		top: 19px;
		right: 3%;
		font-size: 20px;
		background: var(--primary);
		color: #fff;
		text-align: center;
		line-height: 45px;
		width: 45px;
		height: 45px;
		margin-right: 50px;
		border-radius: 100%;
	}
}
.nav-bar {
	text-align: center;
	display: flex;
	justify-content:center;
	align-items: center; gap:35px;
}
.nav-bar li {
	display: inline-block;
}
.nav-bar li a {
	line-height: 30px;
	display: block;
	padding: 0;
	color: #115278;
	font-weight:500;
	text-transform: capitalize;
	font-size: 17px;
	cursor: pointer;
	border-bottom: 2px solid rgba(255,255,255, 0.0);
	position: relative;
}
.nav-bar li a:hover {
	border-bottom: 2px solid #2e4057;
	color: #2e4057;
}
.nav-bar li a.nav-active {
	border-bottom: 2px solid #2e4057;
	color: #2e4057;
}
form.searchform2 {
	width: 100%;
	border-radius: 30px;
	position: relative;
	border: 1px solid #ddd;
	display: flex;
	flex-direction: row-reverse;
	justify-content: space-between;
	align-items: center; padding: 2px 4px 2px 2px;
}
form.searchform2 input[type=text] {
	padding:0 0 0 5px;
	font-size: 18px;
	border: 0 solid grey;
	height: 46px;
	width: calc(98% - 50px);
	outline: none;
	background-color: none;
	border-radius: 25px;
	font-family: Raleway, sans-serif;
}
form.searchform2 input[type=text]::placeholder {
 color: rgba(127, 124, 125, 0.5);
 font-size:15px;
 font-weight:500;
}
form.searchform2 button {
	height: 40px;
	width: 40px;
	padding: 0;
	border-radius: 100%;
	background:linear-gradient(to right, #1ebeb6, #115278);
	text-transform: uppercase;
	font-weight: 700;
	color: #fff;
	font-size: 16px;
	cursor: pointer;
	border: 0;
	font-family: Raleway, sans-serif;
}
.mobile-menu {
	display: none;
}
@media screen and (max-width:1025px) {
    .mobile-menu {
        display:block;
        width:270px; padding-left:20px;
        height:100vh;
        position:absolute;
        background:var(--primary);
        z-index:4001;
        top:100px; 
        right:0;
        box-shadow: -10px 0px 10px rgba(0, 0, 0, 0.1);
        
    }
    .nav-bar{ flex-wrap:wrap; padding-top:10px; gap: 0px;}
    .nav-bar li{ width:100%; text-align:left; margin-top:15px; }
    .nav-bar li a{ color:#fff;}
}
@media screen and (max-width:600px) {
    .h-md-4{
        display:none; 
        width:100%;
        position:absolute;
        background:var(--primary);
        z-index:4000;
        top:100px; 
        left:0;
        padding:20px 2%;
        box-shadow: 0px 5px 10px rgba(0, 0, 0, 0.1);
    }
    form.searchform2{ width: 100%; background:#fff; padding: 2px 2px 2px 2px;}
    form.searchform2 button {
        height: 50px;
        width:50px;
        padding: 0;
        border-radius: 100%;
        background: var(--primary);
        text-transform: uppercase;
        font-weight: 700;
        color: #fff;
        font-size: 17px;
        cursor: pointer;
        border: 0;
        font-family: Raleway, sans-serif;
    }
    form.searchform2 input[type=text] {
        padding: 0 0 0 0;
        font-size: 17px;
        border: 0 solid grey;
        height: 50px;
        width: calc(98% - 40px);
        outline: none;
        background-color: none;
        border-radius: 25px;
        font-family: Raleway, sans-serif;
    }
}
/*var(--primary)*/
.flex-banner{background: linear-gradient(to right, #1ebeb6, #115278); padding: 30px 0;}
.banner-section{text-align: center;
  margin: 30px auto 50px auto;
  width: min(90%, 850px);}
.flex-banner h1 {   
  color: #fff;
  font-size: clamp(24px, 5vw, 55px); 
  margin-bottom: 15px;
}
.banner-section p{ color:rgba(255,255,255, 0.8); font-size:17px; line-height: 28px;}
.flex-banner-inner .banner-1{ width: 32%; background-color: #fff; padding:5px; border-radius: 10px;; }
.banner-img img{width: 100%; border-top-right-radius: 10px; border-top-left-radius: 10px;}
.banner-brand{ margin-top: -120px;  }
.banner-brand img{ background: #fff; max-width: 100%;}
.flex-banner-store{  padding:20px 10px;}
.banner-title{font-size: 22px; font-weight:700;;}
.banner-detail{ margin-top: 10px;}
@media (max-width: 768px) {
  .flex-banner-inner {
    flex-wrap: nowrap;  
    overflow-x: auto;  
    scroll-snap-type: x mandatory; 
    -webkit-overflow-scrolling: touch; 
	gap: 15px; 
  }

  .flex-banner-inner .banner-1 {
    width:45%; 
    min-width:45%;
    scroll-snap-align: start;
  }
  .flex-banner-inner::-webkit-scrollbar {
	display: none;
	}
}
@media (max-width: 600px) {


  .flex-banner-inner .banner-1 {
    width: 95%; 
    min-width: 95%;
    scroll-snap-align: start;
  }

}
.section {
	width: 98%;
	max-width: 1500px;
	margin: 0 auto;
	overflow: hidden;
	position: relative;
}
.bg-gray {
	background: #FAFAFA;
	box-shadow: 0px 4px 15px #00000029;
	margin-top: 20px;
	padding: 20px 20px 30px 20px;
}
.nav-tabs {
	display: flex;
	justify-content: space-between;
	align-items: center;
}
.tab-title {
	width: 25%;
	font-size: 20px;
	font-weight: 600;
	line-height: 24px;
	color: #000;
	border-left: 3px solid #2e4057;
	padding-left: 20px;
	font-family: Manrope, sans-serif;
}
.tab-btns {
	width: 75%;
	display: flex;
	justify-content: flex-start;
	align-items: stretch;
	border-bottom: 1px solid #ccc;
	overflow-x: auto;
	white-space: nowrap;
	scrollbar-width: none;
	-ms-overflow-style: none;
}
.tab {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	padding: 15px 15px;
	cursor: pointer;
	border-bottom: 1px solid #FAFAFA;
	text-align: center;
	white-space: nowrap;
}
.tab .c-img img {
	max-width: 20px;
}
.tab .c-name {
	font-size: 14px;
	font-weight: 400;
	color: #333;
	line-height: 21px;
	font-family: Manrope, sans-serif;
}
.tab:hover, .tab.active-tab {
	border-bottom: 1px solid #2e4057;
}
.tab-content {
	display: none;
	grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
	gap: 15px;
	margin-top: 30px;
}
.fv-store {
	background: #fff;
	box-shadow: 0px 4px 15px #00000029;
	border-radius: 10px;
	overflow: hidden;
	text-align: center;
	height: 150px;
	position: relative;
}
.tab-content a {
	display: block;
}
.tab-content a img {
	max-width: 100%;
}
.tab-content a span {
	display: block;
	background: #2e4057;
	color: #fff;
	text-align: center;
	padding: 5px 0;
	font-size: 14px;
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
}
.tab-content.active {
	display: grid;
}

@media (max-width: 1024px) {
.tab-content {
	grid-template-columns: repeat(4, 1fr);
}
}

/* 768px - 4 items per row */
@media (max-width: 768px) {
.tab-content {
	grid-template-columns: repeat(3, 1fr);
}
}

/* Below 600px - 2 items per row */
@media (max-width: 600px) {
.nav-tabs {
	flex-wrap: wrap;
}
.tab-title {
	width: 100%;
}
.tab-btns {
	width: 100%;
}
.tab {
	padding: 15px 10px;
}
.tab-content {
	grid-template-columns: repeat(2, 1fr);
}
}
.section-2 {
	padding: 20px 20px 30px 0px;
}
.section-2 h2 {
	margin-left: 20px;
	width: 90%;
}
.section-2 p {
	margin-left: 30px;
	color: #333;
	font-size: 16px;
	line-height: 24px;
	margin-top: 10px;
	font-family: Manrope, sans-serif;
}
.best-coupon-tab {
	display: flex;
	justify-content: space-between;
	align-items: stretch;
	margin-top: 30px;
}
.co-tab-btns {
	width: 250px;
}
.co-tab {
	cursor: pointer;
	display: flex;
	justify-content: flex-start;
	gap: 15px;
	align-items: center;
	padding-left: 20px;
	padding-top: 10px;
	padding-bottom: 10px;
	margin-bottom: 20px;
}
.co-active-tab {
	background: #eee;
	clip-path: polygon(0% 0%, 90% 0%, 100% 50%, 90% 100%, 0% 100%);
}
.co-c-img {
	width: 25px;
}
.co-c-img img {
	max-width: 100%;
}
.co-c-name {
	font-family: Manrope, sans-serif;
	font-size: 14px;
	font-weight: 500;
}
.co-tab:hover {
	background: #eee;
	clip-path: polygon(0% 0%, 90% 0%, 100% 50%, 90% 100%, 0% 100%);
}
.col-tab-content {
	width: calc(100% - 280px);
	display: none;
	grid-template-columns: repeat(4, 1fr);
	gap: 20px;
	align-items: start;
}
.co-offered {
	background: #ffffff;
	box-shadow: 0px 3px 10px #0000002b;
}
.co-offered .store-logo {
	text-align: center;
	border-bottom: 1px solid #eee;
	height: 121px;
}
.co-offered .store-logo img {
	max-width: 100%;
}
.co-offer-title {
	padding: 20px 15px;
	font-family: Manrope, sans-serif;
	color: #333;
	font-size: 14px;
	line-height: 21px;
	font-weight: 500;
}
a.co-offer-title { display:block;}
.cta-co-offer {
	padding: 0px 15px 15px 15px;
}
.get-offer {
	background: var(--primary);
	cursor: pointer;
	text-align: center;
	border: 1px dashed #ccc;
	font-family: Manrope, sans-serif;
	padding: 8px 0;
	font-size: 17px;
	font-weight: 700;
	line-height: 26px;
	color: #fff;
	transition: all 1s ease;
}
.get-offer:hover {
	background: var(--primary);
	color: #fff;
}
.show-code {
	border: 1px dashed #ccc;
	font-family: Manrope, sans-serif;
	position: relative;
	padding: 9px 0;
	cursor: pointer;
}
.show-code span.codehere {
	display: block;
	text-align: right;
	padding-right: 15px;
	font-weight: 700;
}
.show-code span.overlap {
	position: absolute;
	top: 0;
	left: 0;
	padding: 11px 0;
	background: var(--primary);
	color: #fff;
	width: 90%;
	text-align: center;
	font-family: Manrope, sans-serif;
	font-size: 17px;
	font-weight: 700;
	line-height: 18px;
	transition: all 1s ease;
}
.show-code:hover span.overlap {
	width: 80%;
	background: var(--primary);
	color: #fff;
}
.col-tab-content.col-active {
	display: grid;
}

@media (max-width: 1100px) {
.col-tab-content {
	grid-template-columns: repeat(2, 1fr);
}
}

@media (max-width:600px) {
.section-2 {
	padding: 20px 15px 30px 15px;
}
.co-tab-btns {
	display: none;
}
.col-tab-content {
	width: calc(100% - 0px);
	grid-template-columns: repeat(1, 1fr);
}
}
.do-tab-btns {
	width: 250px;
}
.do-tab {
	cursor: pointer;
	display: flex;
	justify-content: flex-start;
	gap: 15px;
	align-items: center;
	padding-left: 20px;
	padding-top: 10px;
	padding-bottom: 10px;
	margin-bottom: 20px;
}
.do-active-tab {
	background: #eee;
	clip-path: polygon(0% 0%, 90% 0%, 100% 50%, 90% 100%, 0% 100%);
}
.do-c-img {
	width: 25px;
}
.do-c-img img {
	max-width: 100%;
}
.do-c-name {
	font-family: Montserrat, sans-serif;
	font-size: 14px;
	font-weight: 500;
}
.do-tab:hover {
	background: #eee;
	clip-path: polygon(0% 0%, 90% 0%, 100% 50%, 90% 100%, 0% 100%);
}
.dol-tab-content {
	width: calc(100% - 280px);
	display: none;
	grid-template-columns: repeat(4, 1fr);
	gap: 20px;
	align-items: start;
}
.do-offered {
	background: #ffffff;
	box-shadow: 0px 3px 10px #0000002b;
}
.do-offered .store-logo {
	text-align: center;
	border-bottom: 1px solid #eee;
	height: 171px;
	padding-top: 15px;
}
.do-offered .store-logo img {
	max-width: 100%;
}
.do-offer-title {
	padding: 20px 15px;
	font-family: Manrope, sans-serif;
	color: #333;
	font-size: 14px;
	line-height: 21px;
	font-weight: 500;
	height: 70px;
}
.deal-card-brand{ margin: 0px 15px 15px 15px; }
.deal-card-brand a{ color:#666; display:block;
	display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    line-height: 1.5em; 
    max-height: 3em; 
    word-wrap: break-word; font-size:14px; height:40px;}
.cta-do-offer {
	padding: 0px 15px 15px 15px;
}
.dol-tab-content.dol-active {
	display: grid;
}

@media (max-width: 1100px) {
.dol-tab-content {
	grid-template-columns: repeat(2, 1fr);
}
}

@media (max-width:600px) {
.do-tab-btns {
	display: none;
}
.dol-tab-content {
	width: calc(100% - 0px);
	grid-template-columns: repeat(1, 1fr);
}
}
.get-unlimited-coupons {
	background:linear-gradient(to right, #1ebeb6, #115278);
	position: relative;
	display: flex;
	justify-content: space-around;
	align-items: center;
	margin-top: 150px;
	margin-bottom: 130px;
	height: 250px;
	padding: 0 10%;
}
.guc-img {
	width: 40%;
}
.guc-img img {
	max-width: 100%;
}
.guc-content {
	width: 55%;
	color: #fff;
}
.guc-title {
	font-size: 34px;
	font-weight: 800;
}
.guc-txt {
	font-weight: 300;
	margin-top: 10px;
}
.guc-btn span {
	display: block;
	text-align: center;
	width: 230px;
	background: #fff;
	color: var(--primary);
	cursor: pointer;
	font-weight: 800;
	padding: 15px 20px;
	margin-top: 15px;
	border-radius: 25px;
}
.guc-btn span:hover {
	background: var(--primary);
	border: 1px solid #fff;
	color: #fff;
}

@media screen and (max-width:1025px) {
.get-unlimited-coupons {
	padding: 0 5%;
}
.guc-title {
	font-size: 30px;
}
}

@media screen and (max-width:800px) {
.guc-title {
	font-size: 24px;
}
}

@media screen and (max-width:600px) {
.get-unlimited-coupons {
	background: var(--primary);
	position: relative;
	display: flex;
	flex-wrap: wrap;
	justify-content: space-around;
	align-items: center;
	margin-top: 150px;
	margin-bottom: 130px;
	height: auto;
	padding: 0 5%;
}
.guc-img {
	width: 100%;
}
.guc-content {
	width: 100%;
	padding: 20px 0;
	color: #fff;
}
}
.section-4 {
	width: 96%;
	min-height: 100px;
	max-width: 1500px;
	margin: 50px auto 0 auto;
}
.section-heading {
	display: flex;
	justify-content: space-between;
	align-items: center;
}
.section-heading h2 {
	font-size: 20px;
	font-weight: 700;
	line-height: 30px;
	color: #000;
	border-left: 3px solid #2e4057;
	padding-left: 20px;
	font-family: Manrope, sans-serif;
}
.section-heading a {
	display: inline-block;
	border: 2px solid #2E4057;
	padding: 10px 20px;
	border-radius: 5px;
	text-transform: uppercase;
	color: #2E4057;
	font-size: 14px;
}
.section-heading a:hover {
	background: #2E4057;
	color: #fff;
}
.pop-categories {
	display: flex;
	justify-content: space-between;
	align-items: stretch;
	margin-top: 50px;
}
a.pop-link {
	width: 15%;
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 10px;
	box-shadow: 0px 3px 6px #00000029;
	border: 2px solid #fff;
	padding: 11px 12px;
	transition: 0.5s ease;
	border-radius: 10px;
	color: #000;
}
.p-img {
	width: 25px;
}
.p-img img {
	max-width: 100%;
}
.p-name {
	font-weight: 500;
	font-family: Manrope, sans-serif;
	font-size: 14px;
}
a.pop-link:hover {
	border: 2px solid var(--primary);
}

@media (max-width:800px) {
.pop-categories {
	flex-wrap: wrap;
	gap: 20px;
}
a.pop-link {
	width: 30%;
}
}

@media (max-width:600px) {
a.pop-link {
	width: 47%;
}
.section-heading a {
	display: none;
}
}
.section-5 {
	background-color: #f1f1f1;
	background-image: url(../images/choose-us.webp);
	background-position: 116% 46%;
	background-repeat: no-repeat;
	margin: 60px 0px;
	padding: 0px 0px;
}
.section-5-in {
	width: 96%;
	min-height: 100px;
	max-width: 1500px;
	margin: 50px auto 0 auto;
}
.section-5-flex {
	display: flex;
	justify-content: flex-start;
	align-items: center;
}
.s-5title {
	width: 380px;
}
.s-5title h2 {
	font-size: 20px;
	font-weight: 700;
	line-height: 30px;
	color: #000;
	border-left: 3px solid #2e4057;
	padding-left: 20px;
	font-family: Manrope, sans-serif;
}
.s-5-cols {
	width: 700px;
	display: flex;
	justify-content: space-between;
	align-items: stretch;
	flex-wrap: wrap;
	padding-bottom: 30px;
	padding-top: 30px;
}
.s-5-col {
	width: 45%;
	display: flex;
	justify-content: flex-start;
	align-items: center;
}
.s-5-col i {
	display: block;
	font-size: 70px;
	width: 130px;
	color: #2E4057;
}
.s-5-col span {
	width: calc(100% - 70px);
	display: block;
	color: #2E4057;
	font-size: 18px;
	line-height: 27px;
	font-weight: 500;
}
.s-5-col span strong {
	display: block;
	font-size: 25px;
	line-height: 38px;
}
.mrt {
	margin-bottom: 40px;
}

@media (max-width:600px) {
.section-5 {
	padding: 10px;
	background-position: center center;
}
.section-5-flex {
	flex-wrap: wrap;
}
.s-5title {
	width: 100%;
}
.s-5-col i {
	display: block;
	font-size: 50px;
	width: 80px;
}
.s-5-col span strong {
	display: block;
	font-size: 22px;
}
.s-5-col span {
	font-size: 16px;
}
}
.section-6 {
	width: 96%;
	min-height: 100px;
	max-width: 1500px;
	margin: 50px auto 0 auto;
}
.heading-6 {
	border-left: 3px solid #2e4057;
	padding-left: 20px;
	font-family: Manrope, sans-serif;
}
.heading-6 h2 {
	font-size: 20px;
	font-weight: 700;
	line-height: 30px;
	color: #000;
}
.heading-6 p {
	font-weight: 500;
}
.subscribefields {
	margin-top: 50px;
	margin-left: 5%;
	margin-right: 5%;
	border: 2px solid #2E4057;
	display: flex;
	justify-content: space-between;
	align-items: center;
	box-shadow: 0px 3px 6px #00000029;
}
.subscribefields button {
	font-size: 20px;
	font-weight: 600;
	background: #2E4057;
	color: #fff;
	text-transform: uppercase;
	width: 200px;
	border: 0;
	padding: 20px 0;
	font-family: Manrope, sans-serif;
	cursor: pointer;
}
.subscribefields button:hover {
	background: var(--primary);
}
.subscribefields input {
	width: calc(100% - 230px);
	padding: 20px 0px 20px 30px;
	font-size: 20px;
	border: 0;
	outline: none;
	background: #fff;
}

@media (max-width:600px) {
.subscribefields {
	margin-left: 0;
	margin-right: 0;
}
.subscribefields button {
	font-size: 14px;
	width: 120px;
	padding: 15px 0;
}
.subscribefields input {
	width: calc(100% - 130px);
	padding: 10px 0px 10px 10px;
	font-size: 15px;
}
}
.section-7 {
	width: 96%;
	min-height: 100px;
	max-width: 1500px;
	margin: 100px auto 0 auto;
}
.posts {
	display: flex;
	justify-content: space-between;
	align-items: stretch;
	flex-wrap: wrap;
	margin-top: 50px;
	margin-bottom: 0;
}
.post-h {
	width: 24%;
	position: relative;
	margin-bottom: 50px;
}
.img-height img {
	width: 100%;
	border-radius: 5px;
	border: 1px solid #ccc;
}
.post-h a {
	display: block;
	color: #2E4057;
	background: #fff;
	width: 100%;
	position: relative;
}
.post-h a h3 {
	font-size: 18px;
	line-height: 26px;
	font-weight: 500;
	padding: 20px 0;
	font-family: Manrope, sans-serif;
}
.post-h a:hover {
	text-decoration: underline;
}

@media (max-width:1100px) {
.post-h {
	width: 48%;
}
}

@media (max-width:600px) {
.post-h {
	width: 100%;
	margin-bottom: 30px;
}
.post-h a {
	min-height: 60px;
}
.post-h a h3 {
	font-size: 17px;
	line-height: 26px;
	padding:0px;
}
}
.section-8 {
	width: 96%;
	min-height: 100px;
	max-width: 1500px;
	margin: 20px auto 50px auto;
}
.home-content {
	font-family: Montserrat, sans-serif;
	font-size: 16px;
	line-height: 24px;
	font-weight: 500;
	color: #333;
}
.home-content h2 {
	font-size: 28px;
	font-weight: 700;
	line-height: 30px;
	margin-bottom:5px;
	color: #000;
}
.home-content h3 {
	font-size: 28px;
	font-weight: 700;
	line-height: 30px;
	margin:5px 0;
	color: #000;
}
.home-content p {
	margin-bottom: 10px;
	line-height: 24px;
}
.home-content {
	font-family: Montserrat, sans-serif;
	font-size: 15px;
	line-height: 24px;
	font-weight: 500;
	color: #2e4057; border:2px solid var(--primary); border-radius:5px; overflow:hidden;
}
.home-content h2 {
	font-size: 24px; border-bottom:1px solid #ddd; padding:15px 20px; background:var(--primary);
	font-weight: 700;
	line-height: 30px;
	margin-bottom:0px;
	color: #fff;
}
.home-content h3 {
	font-size: 22px;
	font-weight: 700;
	line-height: 30px;
	margin:15px 0 5px 0;
	color:#2E4057;
}
.home-content .home-text{ padding:20px 20px 40px 20px;}
.home-content p {
	margin-bottom:0px;
	line-height: 24px;
}
.post-h {
    width: 48%;
    position: relative;
    margin-bottom: 50px;
}
.img-height{height: 350px; overflow: hidden; position: relative;}
.post-h span{ display:inline-block; background:var(--primary); color:#fff; border-radius:5px; padding:10px 10px; margin-top:10px;}
.post-h a h3 { padding-top:10px;}
footer{ border-top:1px solid #eee; background:#fff; color:#000;}
.footer-container{width: 80%; margin: 0 auto; display:flex; justify-content:space-between; align-items:stretch; flex-wrap:wrap;}
.footer-single{ width:18%; padding-top: 60px;}
.footer-double{ width:40%; padding:50px 0;}
.footer-double img{ max-width:100%;}
.footer-single h2{ color:#000; font-weight:bold;margin-bottom: 10px;}
.footer-single ul li{ display: block; margin-top: 13px;}
.footer-single ul li a{ color:#666;}
.footer-single ul li a:hover{ color:var(--primary);}
.footer-txt{ color:#666; line-height:28px;}
.footer-site-logo{ width: 100px;;}
.footer-site-logo img{max-width: 100%;;}
.social-links{ margin-top:20px;}
.social-links a{ display:inline-block; height:40px; width:40px; line-height:40px; margin-right:20px; text-align:center; font-size:22px; border:1px solid #000; border-radius:100%; color:#000;}
.social-links a:hover{ background:var(--primary);}
.copyrt{ background:var(--primary); padding:15px 0; text-align:center; color:#fff;}
.disclosure{ color:#666; line-height:28px; margin:10px 10% 50px 10%;}
@media screen and (max-width:1100px) {
  .footer-container{width:90%;}
}
@media screen and (max-width:1025px) {
  .footer-single{ width:33%;}
  .footer-double{ width:100%; padding:50px 0;}
  .footer-single h2 span{ font-size:20px;}
  .disclosure{ color:#666; line-height:28px; margin:10px 3% 50px 3%;}
}
@media screen and (max-width:600px) {
  .footer-single{ width:48%;}
  .footer-single-2{ display:none;}
  .img-height{height: 150px;}
}
.header-bottom-store {background:var(--primary); padding:15px 10% 15px 32%;}
.big-heading {
	color: #fff;
	font-weight: 700;
	font-size: 28px;
	line-height: 34px;
	margin-bottom: 5px;
	margin-top: 0px;
}
.small-h2 {
	font-size: 18px;
	font-weight: 400;
	line-height: 24px;
	color: #fff;
	margin-bottom: 0px;
}

.col-d-8{
	width: 72%;
	float: right;
	position: relative;
	margin-top: 0px;
}
.col-d-4 {
	width: 25%;
	float: left;
	margin-top: -80px;
}
.coupon-section-title{margin-top:20px; color:#000; font-size:24px; font-weight:800;}
@media screen and (max-width:600px){ 
	.big-heading { font-size: 28px;} .small-h2 {font-size: 20px;} 
	.coupon-section-title {
      margin-top: 20px; font-size: 26px;} 
}
.couponbox-n {
	word-wrap: break-word;
	background-color: #fff;
	margin-top: 20px;
	padding: 0px 0px 0px 0px;
	display: flex;
	justify-content: space-between;
	align-items: stretch;
	border-bottom: 1px solid #ddd; overflow:hidden;
}
.couponleft-n {
	width: 120px;
	border-right: 1px solid #ddd;
	padding: 20px 0;
}
.percent {
	font-size: 24px;
	line-height: 26px;
	text-align: center;
	font-weight: 800;
	color: #333;
}
.percent span {
	display: block;
	text-transform: uppercase;
	font-size:16px;
}
.couponright-n {
	width: calc(94% - 300px)
}
.bottomcoupon-n {
	width: 180px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap:wrap;
    flex-direction: column;
}
.enddate-clock{ width:100%; text-align:left; margin-top:5px; font-size: 13px; font-weight: 700;}
.bottomcoupon-n .btn-code {
	width: 180px;
}
.btn-code-nw{
  background:#06AF2E;
    text-align: center;
    border-radius: 3px;
    padding: 7px 0px;
    cursor: pointer;
    border: 1px solid #562951;
    color:#fff;
    box-shadow: 0 3px 1px #562951;
    display: block;
}
.btn-code-nw:hover{
  box-shadow: 0 2px 1px #341931;
}
@media screen and (max-width:800px) {
	.header-bottom-store {    padding:20px 5% 20px 5%;}
	.col-d-8{width:100%;}
	.col-d-4 {width:100%; margin-top: 10px;}
	.couponbox-n {
		flex-wrap: wrap;
	}
	.couponright-n {
		width: calc(100% - 140px);
	}
	.bottomcoupon-n {
		width: 100%;
	}
}
@media screen and (max-width:600px){
  .newcodebtn {
		text-align: left;
		padding-left: 20px;
		padding-bottom: 10px;
		border-left: 1px solid #ddd;
		margin-left: 102px;
	}
	.bottomcoupon-n .btn-code {
		width:180px;
	}
}
.couponright-n a {
	color: #444;
}
h3.coupontitle-n {
	font-size: 22px;
	padding-top:10px;
	color: #000;
    margin:0;
}
.coupondetail-n {
	color: #666;
	font-weight: 400;
	line-height: 24px;
	margin-top: 5px;
	margin-bottom:5px;
}
.coupon-type-n {
	font-size: 16px;
	color: #666;
	margin:3px 0 3px 0;
}
.coupon-type-n i {
	color: var(--primary);;
	font-size: 14px;
	margin-right: 5px;
}
.couponbox-ntop{ border:1px solid var(--primary);; padding-right:5px; position:relative; cursor:pointer;}
.couponbox-ntop .couponleft-n{ border-right:1px solid var(--primary);;}
.percentcolor{color:var(--primary);}
.btn-code {
	background: var(--primary);;
	border: 1px solid #eee;
	cursor: pointer;
	color: rgba(255,255,255, 0.95);
	text-align: center;
	display: inline-block;
	width: 170px;
	padding: 10px 0;
	font-size: 18px;
	font-weight: 500;
	border-radius: 3px;
}
.hvr-curl-top-right {
	vertical-align: middle;
	overflow: hidden;
	-webkit-transform: perspective(1px) translateZ(0);
	transform: perspective(1px) translateZ(0);
	box-shadow: 0 0 1px rgba(0, 0, 0, 0);
	position: relative;
}
.hvr-curl-top-right:before {
	pointer-events: none;
	position: absolute;
	content: '';
	width: 17px;
	height: 17px;
	top: 0;
	right: 0;
	background: white;
	background: linear-gradient(225deg, white 45%, #aaa 50%, #ccc 56%, white 80%);
	box-shadow: -1px 1px 1px rgba(0, 0, 0, 0.4);
	-webkit-transition-duration: 0.3s;
	transition-duration: 0.3s;
	-webkit-transition-property: width, height;
	transition-property: width, height;
}
.hvr-curl-top-right:hover:before, .hvr-curl-top-right:focus:before, .hvr-curl-top-right:active:before {
	width: 22px;
	height: 22px;
}
@media screen and (max-width:600px){
  .couponbox-ntop .newcodebtn {
		text-align: left;
		padding-left: 20px;
		padding-bottom: 10px;
		border-left: 1px solid var(--primary);
		margin-left: 109px;
	}
	.enddate-clock { display:none;}
	h3.coupontitle-n {
        font-size: 22px;
    }
}
.table-codes {
	background: #fff;
}
#customers3 {
	border-collapse: collapse;
	width: 100%;
	margin-bottom: 10px;
	margin-top: 20px;
	color: #666;
	font-weight: 400;
	font-size: 14px;
}
.caption-h2 {
	border-top: 0px solid #eee;
	border-left: 0px solid #eee;
	border-right: 0px solid #eee;
	font-size: 28px;
	color: #000;
	font-weight: 800;
	padding: 30px 0px 30px 0px;
	text-align: left;
}
#customers3 td, #customers3 th {
	border-top: 1px solid #ddd;
	padding: 20px 0px;
	text-align: left;
}
.b-w3-cols {
        display: grid;
        grid-template-columns: repeat(4, 1fr); 
        gap: 20px; 
        margin-bottom: 40px;
    }

    .b-w3-col {
        border-left: 1px solid #eee;
        padding: 10px;
    }
    @media screen and (max-width:600px){
      .b-w3-cols{ grid-template-columns: repeat(2, 1fr); }
      .b-w3-col{ width:100%;}
    }
    .b-img-brand{ width:100%; text-align:center;}
    .b-img-brand img{ max-width:100%; border-radius:100%; border:1px solid #ccc;}
    a.btext-color{ display:block; text-align:center; color:#666;}
    a.btext-color strong{ display:block; color:#000; margin:10px 0 3px 0;}
    .b-w3-col:hover img{border:1px solid #000;}
    .b-w3-col:hover strong{ color:#000;}
    .astartCoupons{ display:flex; justify-content:space-between; align-items:stretch; flex-wrap:wrap;}
    .astartCoupon{ width:49%; border:1px solid #ccc; padding:10px; margin-bottom:30px; display:flex; justify-content:space-between; align-items:center;}
    .ascoupon-val{ width:120px; text-align:center;}
    .ascoupon-val span{ display:block; color:var(--primary);}
    .ascoupon-val span.de1{ font-size:22px; font-weight:bold;}
    .ascoupon-val span.de3{ background:#333; border-radius:3px; color:#fff; width:80px; display:inline-block; margin-top:5px; padding:2px;}
    .ascoupon-detail{ width:calc(100% - 140px);}
    .astatstore{ margin-bottom:15px;}
    .astatstore a{ color:#666;} .astatstore a:hover{color:var(--primary);}
    .btn-code-nw {background:var(--primary); border: 1px solid #341931; box-shadow: 0 3px 1px #341931;}
    @media (max-width: 800px){
        .astartCoupon{ width:100%;}
    }
    .storedes{
          word-wrap: break-word;
          background-color: #fff;
          margin-top: 30px;
          padding:15px; border:1px solid #ddd; border-radius:15px;
        }
        .textwidget h2{font-size: 26px; line-height:32px;
          color: #000;
          font-weight: 800; margin:15px 0;}
          .textwidget h3{color: #000; font-size: 20px; line-height:26px;}
          .textwidget{font-size:16px; color:#555;font-weight: 400; line-height:28px;}
         .textwidget img{ max-width:100%; border:1px solid #eee; padding:5px}
         .textwidget ul{ margin-left:20px;}
         .textwidget ol{ margin-left:20px; padding:0;}
         .textwidget b{ color:#000;}
         h2.faq-tilte{ font-size:28px; margin-bottom:30px;}
        .single-faq {
            background: #fff;
            position: relative;
            border-bottom: 1px solid #eee;
            margin:10px 0;
        }
        .faq-qh3 {
            font-size: 20px;
            font-weight: 500;
            color: #666;
            line-height: 30px;
            padding: 10px;
            white-space: nowrap;
            overflow: hidden;
            text-overflow: ellipsis;
        }
        .faq-qh3 .fa-question-circle {
            color: #06AF2E;
            font-size: 30px;
            display: inline-block;
            float: left;
            margin-right: 15px;
        }
        .faq-a{ position:relative; display:none; border-top:1px solid #ccc; padding:10px; font-family: Roboto; 
        line-height: 30px;font-size: 14px;color: #666;font-weight: 400;}
        .showMoreLinks {
            position: absolute;
            right:-5px;
            top: 15px;
            cursor: pointer;
            color: #999;
        }
        .showMoreLinks .fa-minus{ display:none;}
        .textwidget{font-size:16px; color:#555;font-weight: 400; line-height:28px;}
        .textwidget img{ max-width:100%; border:1px solid #eee; padding:5px}
        .deal-cards {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
        margin-top: 20px;
        margin-bottom: 50px;
    }
    .deal-card {
        padding: 30px 1% 100px 1%;
        background: #fff;
        box-sizing: border-box;
        position: relative;
        border: 1px solid #ddd;
        border-radius: 15px;
        width:100%;
    }
    @media (max-width: 992px) { 
        .deal-cards {
            grid-template-columns: repeat(2, 1fr); 
        }
    }
    @media (max-width: 600px) { 
        .deal-cards {
            grid-template-columns: repeat(1, 1fr); 
        }
    }
    .side-box{
	background: none;
	padding-top: 0;
	border: 0;
}
.side-title {
    font-size: 18px;
    color: #000;
    font-weight: 800;
    margin-bottom: 5px;
	border-bottom: 1px solid #ddd;;
}
.store-logo-link {
	background: #fff;
	border-radius: 100%;
	width: 150px;
	height: 150px;
	margin: 0 auto 20px auto;
	display: flex;
	justify-content: center;
	align-items: center;
	overflow: hidden;
	border: 2px solid #ccc;
}
.store-logo-link:hover {
	border: 2px solid #8e4585;
}

.store-domain-name {
	text-align: center;
	display: block;
	font-size: 22px;
	font-weight: bold;
	margin-bottom: 10px;
	color: #000;
}
.star-icons {
	font-size: 28px;
	margin-bottom: 3px;
	text-align: center;
}
.yellow {
	color: #ffc800;
}
.ratted {
	text-align: center;
	color: #777;
	margin-top: 10px;
}
.ratted a {
	color: #777;
}
.add-ratting {
	color: #fff;
	font-size: 14px;
	font-weight: bold;
	width: 200px;
	text-align: center;
	margin: 20px auto 0 auto;
	border-radius: 25px;
	padding: 10px 0;
	background: #06AF2E;
	cursor: pointer;
}
.add-ratting:hover {
	background: #06AF2E;
	color: #fff;
}
.store-tabs {
	margin-left: 0px;
	margin-top: 20px;
}
    .contactdetail-n{ }
    .contactlist-n{ border-bottom:0px solid #eee; color:#666; font-size:14px; padding:10px 0; white-space: nowrap; overflow: hidden;
     text-overflow: ellipsis;}
    .contactlist-n:after{ content:' '; clear:both; width:100%; height:1px; display:block;}
    .contactlist-n span{ display:inline-block; margin-right:15px; float:left;}
    .contactlist-n a{ color:#666;}
    .contactlist-n span i{ font-size:18px; color:#27a59b;}
    .sidetitle-n{ font-size:20px; line-height:30px; color:#333; margin-bottom:20px;}
	.related-stores {}
.related-stores a {
	color: #666;
	display: block;
	padding: 10px 0;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
	border-bottom: 1px solid #eee;
	display: block;
	position: relative; font-size:15px;
}
.related-stores a::after {
	content: "";
	display: block;
	position: absolute;
	bottom: 0;
	left: 0;
	width: 0;
	height: 2px;
	background:linear-gradient(to right, #1ebeb6, #115278);
	transition: width 0.3s ease;
}
.related-stores a:hover::after {
	width: 100%;
}
  .page-top-bg{    
    background: var(--primary);
    padding: 35px 20% 35px 20%;
  }
  .page-top-bg p{
    color: rgba(255, 255, 255, 0.8);
    font-size: 17px;
    line-height: 28px;
  }
  .page-top-bg.center{ text-align:center;}
  .categorylist {
      display: grid;
      grid-template-columns: repeat(4, 1fr); /* 4 equal columns */
      gap: 20px; 
      margin: 50px 0;
    }

    .categorylist a {
      display: block;
      border: 1px solid #ddd;
      border-radius: 5px;
      text-align: center;
      padding: 15px;
      color:var(--primary);
    }
	@media screen and (max-width:800px) {
		.categorylist {
			display: grid;
			grid-template-columns: repeat(3, 1fr); /* 4 equal columns */
			gap: 20px; 
			margin: 50px 0;
		}
	}
	@media screen and (max-width:600px) {
		.categorylist {
			display: grid;
			grid-template-columns: repeat(2, 1fr); /* 4 equal columns */
			gap: 20px; 
			margin: 50px 0;
		}
		.categorylist a {gap: 10px; }
		.page-top-bg{
			padding: 15px 5% 15px 5%;
		}
		.page-top-bg.center {
			text-align:left;
		}
	}
	.href-btn-s{ cursor: pointer;}
	.about-us-img{ margin:0; background: var(--primary); min-height:150px;}
    .about-us-img img{ width:100%;}
    .about-us-cards{ margin-top:-80px; display:flex; justify-content:space-between; align-items:stretch;}
    .other-link-list{ background:#fff; margin-left:10px; width:26%;  border-radius:5px; box-shadow: 0px 4px 15px #00000029;}
    .other-link-list ul li{ display:block; margin-top:0px;}
    .other-link-list ul li a{ display:block; color:#333; padding:12px 15px; border-left:3px solid #fff;}
    .other-link-list ul li a:hover{ color:var(--primary); border-left:3px solid var(--primary);}
    .abs-link-active{color:var(--primary); border-left:3px solid var(--primary);}
    .other-link-list h2{ padding:20px 15px 15px 15px;}
    .about-us-detail{ background:#fff; margin-right:10px; width:71%;  border-radius:5px; padding:20px; box-shadow: 0px 4px 15px #00000029;}
    .about-us-detail h1{ font-size:44px; font-weight:700; margin-bottom:10px;}
    .about-us-detail h2{  margin-top:20px;}
    .about-us-detail p{ font-size:16px; line-height:28px; color:#555; word-break: break-all;}
    .about-us-detail ul{ margin-left:20px; font-size:16px; line-height:28px; color:#555;}
    .about-us-detail ul li{ margin-bottom:10px;}
    .about-us-detail ul li strong{ display:block;}
    .about-us-detail p a{ color:var(--primary);}
    @media screen and (max-width:800px) {
        .about-us-cards{ flex-wrap:wrap; margin-top:-40px; flex-direction: column-reverse; padding:0 10px;}
        .other-link-list{ width:100%; margin:0; margin-top:50px;}
        .about-us-detail{ width:100%; margin:0;}
    }
	.col-sm-4 {
	width: 300px;
	float: right;
}
.col-sm-8 {
	width: calc(98% - 300px);
	float: left;
	margin-right: 2%;
}
@media screen and (max-width:700px) {
	.col-sm-4 {width:100%;}
	.col-sm-8 { width:100%; margin-right: 0%;}
	.about-us-img {     min-height: 70px; }
	.about-us-cards {padding: 0;}
	.about-us-detail h1 {
    font-size: 33px;}
}
.heading{background: var(--primary); padding:30px 10%; margin:0 0 20px 0; align-items: center;}
.heading h1{ color:#fff;}
.heading .marken-detail{ width:70%;}
.heading .marken-detail p{ color:#fff; line-height: 22px; font-size: 15px; margin-top:10px;} 
.breadcrum {
  display: flex;
  gap: 8px;
  font-size: 16px;
}
.breadcrum li {
  list-style: none; color: rgba(255,255,255, 0.8);
}
.breadcrum li a {
  color: rgba(255,255,255, 0.8);
  text-decoration: none;
  border-bottom: 2px solid transparent;
  padding-bottom: 2px;
}
.breadcrum li a:hover {
  border-bottom: 2px solid rgba(255,255,255, 0.8);
}
.breadcrum li+li:before {
  content: "/";
  padding: 0 8px;
  color: #aaa;
}
@media screen and (max-width:700px) {
	.heading { flex-wrap:wrap; padding: 15px 5%;}
	.heading h1{ width: 100%; font-size: 24px;}
	.breadcrum { 
		width: 100%;
    	display: flex;
		gap: 5px;
		font-size: 14px;
	}
}
.side-box-1 {
	margin-top: 20px;
	background: #fff;
	padding: 15px;
	border: 1px solid #ddd;
    border-radius: 5px;
}.side-box-1 .side-title {
	font-size: 18px;
	line-height: 24px;
	color: #333;
	font-weight: 700;
	margin-bottom: 20px;
    border-bottom: 1px solid #ddd;
    padding-bottom: 20px;
}
.storecategories li {
	display: block;
	margin-bottom: 13px;
}
.storecategories li a {
	color: #333; position: relative;
	border-bottom: 1px solid #fff;
    display: block;
}
.storecategories a::after {
	content: "";
	display: block;
	position: absolute;
	bottom: 0;
	left: 0;
	width: 0;
	height: 2px;
	background-color: var(--primary);;
	transition: width 0.3s ease;
}
.storecategories a:hover::after {
	width: 100%;
}
.storecategories .li2 {
	margin-left: 10px;
}
.storecategories .li3 {
	margin-left: 20px;
}
.storecategories .li4 {
	margin-left: 30px;
}
.side-detail {
	font-size: 15px;
	color: #666;
	line-height: 22px;
}
 .top-col-12 {
	display: flex;
	justify-content: space-between;
	align-items: stretch;
	flex-wrap: wrap;
}
.top-col-3 {
	width: 32%;
	background: #fff;
	margin: 30px 0;
	padding-bottom: 20px;
	border: 1px solid #eee;
	border-radius: 10px;
	overflow: hidden;
}
@media (max-width:700px){
	.top-col-3 { width: 100%;}
}

.top-col-img { }
.top-col-img img {
	width: 100%
}
.top-col-detail {
	padding: 20px;
}
.top-col-detail h2 {
	font-size: 20px;
	line-height: 28px;
	color: #000;
	font-weight: 700;
	margin-top: 20px;
}
.top-col-3:hover h2 {
	color:#2e4057;
	text-decoration: underline;
}
.top-tags {
	margin-top: 00px;
}
.top-tags span {
	display: inline-block;
	font-size: 14px;
	color:#1ebeb6;
	margin-right: 5px;
}
span.span-0 {
	background: #397A99;
}
span.span-1 {
	background: #8CC9CC;
}
span.span-2 {
	background: #94B99A;
}
span.span-3 {
	background: #94979E;
}
.articlex2 {
	width: 65%;
	display: flex;
	justify-content: space-between;
	align-items: stretch;
	flex-wrap: wrap;
	float: left;
}
.articlex3 {
	width: 28.5%;
	float: right;
	padding-top: 25px;
}
@media (max-width:800px) {
	.articlex2, .articlex3{ width: 100%;}
}

.articlex3 h2 {
	font-size: 22px;
	font-weight: bold;
	color: #000;
	margin-bottom: 20px;
}
.articlex {
	width: 46%;
	background: #fff;
	margin: 30px 0;
	border: 1px solid #eee;
	border-radius: 5px;
	overflow: hidden;
	display: flex;
	justify-content: space-between;
	align-items: stretch;
	flex-wrap: wrap;
}
.articlex img {
	width: 100%;
}
.article-bxx {
	width: 94%;
	padding: 15px 3% 20px 3%;
	position: relative;
}
.article-detailxx2 {
	font-weight: 400;
	color: #666;
	font-size: 16px;
	line-height: 24px;
	margin-top: 0px;
	padding: 0;
	text-overflow: ellipsis;
	overflow: hidden;
	display: -webkit-box;
	-webkit-line-clamp: 3;
	-webkit-box-orient: vertical;
}
.article-bxx a {
	color: #333;
}
.article-bxx h2 {
	color: #333;
	font-weight: 700;
	font-size: 20px;
	line-height: 28px;
	display: block;
	overflow: hidden;
	text-overflow: ellipsis;
	margin-top: 10px;
	margin-bottom: 10px;
	display: -webkit-box;
	-webkit-line-clamp: 3;
	-webkit-box-orient: vertical;
}
.article-bxx span {
	display: inline-block;
	border: 0px solid #fff;
	border-radius: 25px;
	text-align: center;
	font-weight: bold;
	font-size: 14px;
	color:#2e4057;
}
.full-wrap-heading {
	width: 100%;
}
.main-h2 {
	width: 98%;
	padding: 15px 0 15px 0%;
	color: #000;
	font-weight: bold;
	border-bottom: 1px solid #ddd;
}
.full-post-box {
	border: 1px solid #eee;
	border-radius: 5px;
	overflow: hidden;
	display: flex;
	justify-content: space-between;
	align-items: stretch;
	flex-wrap: wrap;
	margin: 30px 0;
	background: #fff;
}
.full-post-box img {
	width: 310px;
}
.fpb-detail {
	width: calc(94% - 330px);
	padding: 10px 3%;
}
.fpb-detail h2 {
	color: #333;
	font-weight: 700;

	font-size: 20px;
	line-height: 28px;
	display: block;
	overflow: hidden;
	text-overflow: ellipsis;
	margin-top: 10px;
	margin-bottom: 10px;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
}
.fpb-detailx2 {

	font-weight: 400;
	color: #666;
	font-size: 16px;
	line-height: 24px;
	margin-top: 0px;
	padding: 0;
	text-overflow: ellipsis;
	overflow: hidden;
	display: -webkit-box;
	-webkit-line-clamp: 3;
	-webkit-box-orient: vertical;
}
.fpb-detail span {
	display: inline-block;
	border: 0px solid #fff;
	border-radius: 25px;
	text-align: center;
	font-weight: bold;
	font-size: 14px;
	color:#2e4057;
}
.lineup-col {
	display: flex;
	justify-content: space-between;
	align-items: stretch;
	margin-bottom: 25px;
	border-bottom: 1px solid #eee;
	padding-bottom: 20px;
}
.lineup-col-img {
	width: 100px;
}
.lineup-col-img img {
	max-width: 100%;
	border-radius: 5px;
}
.lineup-col-detail {
	width: calc(100% - 120px);
	padding-top: 5px;
	position: relative;
}
.lineup-col-detail a {
	color: #333;
	font-weight: 400;

	font-size: 16px;
	line-height: 24px;
	display: block;
	overflow: hidden;
	text-overflow: ellipsis;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
}
.lineup-col:hover a {
	color:var(--primary);
	text-decoration: underline;
}
.lineup-col-detail span {
	display: inline-block;
	border: 0px solid #fff;
	border-radius: 25px;
	text-align: center;
	font-weight: bold;
	font-size: 14px;
	color: #2e4057;
}
.fs-store {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-bottom: 15px;
}
.fs-logo {
	width: 80px;
}
.fs-logo img {
	max-width: 100%;
	border: 1px solid #eee;
	border-radius: 10px;
}
.fs-detail {
	width: calc(100% - 100px);
}
.fs-detail a {
	display: block;
	text-align: left;
	color: #333;
	font-weight: bold;

}
.fs-detail a span {
	display: block;
	color: #666;
	font-weight: 400;
	margin-top: 5px;
}
.fs-detail:hover a {
	color: #1ebeb6;
}
/**/
.coupon-lists{
	display: flex;
	justify-content: left;
	align-items: stretch;
	gap: 20px;
	flex-wrap: wrap;
	margin-top: 20px;
	margin-bottom: 50px;
}
.coupon-grid {
	background: #fff;
	padding: 20px 20px 30px 20px;
	width: calc(33% - 20px);
	text-align: center;
	border:1px solid #ddd; 
	border-radius:15px;
}
.coupon-grid img {
	max-width: 100%;
	border: 1px solid #fff;
}
.coupon-detail {
	min-height: 170px;
	margin-top: 10px;
}
.coupon-detail a {
	display: block;
	color: #000;
	margin-bottom: 3px;
	font-size: 14px;
	line-height: 20px;
}
@media screen and (max-width:1025px) {
	.coupon-grid {
		background: #fff;
		padding: 20px 20px 30px 20px;
		width: calc(50% - 20px);
	}
}
@media screen and (max-width:800px) {
	.coupon-grid {
		background: #fff;
		padding: 20px 20px 30px 20px;
		width: calc(100% - 0px);
	}
}
@media screen and (max-width:600px) {
	.coupon-grid {
		background: #fff;
		padding: 20px 20px 30px 20px;
		width: 100%;
		text-align: center;
		border:1px solid #ddd; border-radius:15px;
	}
}
.coupon-h2 {
	font-size: 18px;
	color: #000;
	line-height: 24px;
	margin-bottom: 8px;
	text-align: left;
	overflow: hidden;
	text-overflow: ellipsis;
	-webkit-line-clamp: 2;
	display: -webkit-box;
	-webkit-box-orient: vertical;
}
.coupon-name {
	font-size: 14px;
	color: #444;
	line-height: 20px;
	text-align: left;
	overflow: hidden;
	text-overflow: ellipsis;
	-webkit-line-clamp: 2;
	display: -webkit-box;
	-webkit-box-orient: vertical;
}
.verified-code2 {
    font-size: 14px; display:flex; align-items:center; gap:5px; margin-bottom: 15px;
}
.verified-code2 .fa{ font-size:22px; color:var(--primary);}