/*
[Master Stylesheet] 
Project: Affiliate Marketing Html
-------------------------------------------------------------------*/
/********************************************************
1. body start
 *******************************************************/

 :root {
    --dealsites-primary: #fb6d56;
    --dealsites-title-color: #333333;
    --dealsites-font-color: #4c564c;
    --dealsites-whiter: #ffffff;
    --dealsites-border-color: #d5dcf5;
    --dealsites-danger: #cb2027;
    --dealsites-transition: all .3s;
	
	
 }
body {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  -webkit-font-smoothing: antialiased;
  font-family: "Nunito", sans-serif;
}
html {
  scroll-behavior: smooth;
}
*,
*:before,
*:after {
  box-sizing: border-box;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
}
a,
a:hover,
a:focus {
  text-transform: capitalize;
  text-decoration: none;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -ms-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -ms-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
  margin: 0;
  padding: 0;
  word-break: break-word;
}
img {
  max-width: 100%;
}
input,
textarea,
select,
button,
label,
svg,
svg path,
svg rect,
svg polygon,
img,
a,
:after,
:before,
:hover,
:focus,
.form-control:focus {
  outline: none !important;
  box-shadow: none;
}
ul {
  padding: 0;
  margin: 0;
  list-style-type: none;
}
p {
  margin: 0px;
  word-break: break-word;
}

/* store Section css start */
.dealsites-container{
  max-width: 1260px;
  padding: 0 15px;
  margin: 0 auto;
}
.dealsites-store {
  background-color: #fafafa;
  padding: 50px 0px;
}
.dealsites-storebox {
  max-width: 200px;
  width: 100%;
  margin: 0 auto;
}
.dealsites-heading{
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 15px;
}
.dealsites-heading h1{
  font-size: 26px;
  font-weight: 600;
  color-scheme: #111;
}
.dealsites-heading a{
  font-size: 16px;
  color: #111;
  cursor: pointer;
}
.dealsites-storegrid{
  display: grid;
  grid-template-columns: repeat(auto-fit,minmax(180px,1fr));
  gap: 15px;
}
.dealsites-storebox a{
  cursor: pointer;
  transition: all 0.3s;
}
.dealsites-storebox a:hover .dealsites-box {
  transform: translateY(-10px);
}
.dealsites-storebox .dealsites-box {
  background-color: #fff;
  border: 1px solid #eee;
  padding: 10px 20px;
  border-radius: 5px;
  max-width: 220px;
  width: 100%;
  height: 100px;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.3s;
}
.dealsites-text{
  color: var(--dealsites-primary);
  font-size: 14px;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 7px;
  margin-top: 10px;
  margin-bottom: 10px;
  cursor: pointer;
}
a:hover{
  color: var(--dealsites-primary);
}
/* store section css end */
/* coupon section css start */

.dealsite-coupongrid{
  display: grid;
  grid-template-columns: repeat(auto-fit,minmax(400px,1fr));
  gap: 20px;
}
.dealsite-coupongrid .dealsites-coupon-box{
  background-color: #fff;
  border: 1px solid #eee;
  padding: 15px 25px;
  border-radius: 4px;
  display: grid;
  grid-template-columns: 130px 1fr;
  gap: 20px;
  align-items:center;
}
.dealsite-coupongrid .dealsites-coupon-box img{
    max-width:130px;
    width:100%;
    height:130px;
    object-fit:contain;
}
.dealsite-couponText{
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.dealsites-coupon-box .dealsite-dealbtn{
  min-width: 130px;
  max-width: 150px;
  width: 100%;
  min-height: 40px;
  line-height: 40px;
  display: block;
  background-color: var(--dealsites-primary);
  color: #fff;
  text-align: center;
  border-radius: 10px;
  font-size: 17px;
  font-weight: 600;
  margin-left: auto;
}
.dealsite-coupon-title{
  font-size: 18px;
  color: #111;
  font-weight: 600;
  cursor: pointer;
  margin-top: -2px;
}
.dealsite-text-span{
  color: var(--dealsites-primary);
  font-size: 16px;
  font-weight: 500;
  margin-top:-5px;
}
circle {
    fill:var(--dealsites-primary);
}
.dealsite-text-p {
    font-size: 14px;
    color: var(--dealsites-primary);
    font-weight: 600;
    max-width: fit-content;
    background-color: #f7f8fa;
    text-align: center;
    border-radius: 5px;
    padding: 4px 20px;
    margin-bottom:8px;
}
/* coupon section css end */
/* product section css start */
.dealsites-swiper-container{
  position: relative;
}
.swiper-button-prev.dealsites-head-left {
  width: 40px;
  height: 40px;
  border-radius: 8px;
  background-color: #DCE7F2;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.3s;
  cursor: pointer;
  position: absolute;
  left: -25px;
}
.swiper-button-next.dealsites-head-left {
  width: 40px;
  height: 40px;
  border-radius: 8px;
  background-color: #DCE7F2;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.3s;
  cursor: pointer;
  position: absolute;
  right: -25px;
}
.dealsites-head-left::after{
  color: #6E8DA0;
  font-size: 16px !important;
}
.dealsites-top-heading .swiper-button-prev{
  left: auto;
  right: 70px;
}
 .swiper-button-prev::after{
  font-size: 16px;
}
 .swiper-button-next::after{
  font-size: 16px;
}
.swiper-wrapper {
    height: auto;
}
.dealsites-head-left:hover{
border: 1px solid var(--dealsites-primary);
background-color: #fff;

}

.dealsites-productcard{
  margin-top: 30px;
  overflow: hidden;
}
.dealsites-product-box{
  background-color: #fff;
  border: 1px solid #eee;
  padding: 20px 20px;
  box-shadow: 0 2px 7px 0 rgb(0 0 0 / 9%);
}
.dealsites-img-box {
  text-align: center;
}
.dealsites-product-box .dealsites-price-content a {
  color: #111;
  height: 45px;
  overflow: hidden;
  line-height: 21px;
  word-wrap: break-word;
  font-size: 16px;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  margin-bottom: 10px;
  margin-top: 10px;
  cursor: pointer;
}
.dealsites-price-button h4{
  color: var(--dealsites-primary);
  font-size: 20px;
  font-weight: 500;
}
.dealsites-price-button p {
  font-size: 14px;
  color: #b5b5b5;
  font-weight: 400;
}
.dealsites-price-button{
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid #eee;
  padding-top: 20px;
}

.dealsites-product-box .dealsites-price-content .dealsites-price-button a {
  background-color: var(--dealsites-primary);
  padding: 10px 10px;
  color: #fff;
  border-radius: 4px;
  line-height: 40px;
  min-height: 40px;
  height: unset;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: unset;
  max-height: 40px;
}
img.attachment-post-thumbnail.size-post-thumbnail.wp-post-image {
    max-width: 300px;
    max-height: 280px;
    object-fit: contain;
    width: 100%;
}
/* product section css end */
/* modal css start */
.dealsites-modal-input{
  position: relative;
  margin-top: 30px;
  margin-bottom: 10px;
}
.dealsites-modal-input a.dealsites_btn {
  background-color: #427bf5;
  padding: 10px 10px;
  color: #fff;
  border-radius: 4px;
  line-height: 40px;
  min-height: 40px;
  height: unset;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: unset;
  max-height: 50px;
  max-width: 200px;
  min-width: 130px;
  position: absolute;
  top: 0;
  right: 0;
}
.dealsites-modal .dealsites-modal-body{
  position: relative;

}
.dealsites-modal button.btn-close {
  position: absolute;
  right:-15px;
  top: -15px;
  border: none;
}
.dealsites-modal button.btn-close:hover{
  background-color: unset;
}
.dealsites-modal .modal-dialog{
  max-width: 640px !important; 
  width: 100%;
  padding: 30px 30px;
}
.dealsites-modal .dealsites-modal-body h2{
  font-size: 24px;
  margin-bottom: 10px;
  color: #7a7a7a;
}
.dealsites-modal .dealsites-modal-body h4{
  font-size: 22px;
  color: #111;
}
.dealsites-modal .dealsites-modal-body h6{
  font-size: 16px;
  color: #7a7a7a;
}
.dealsites-modal .dealsites-modal-body span{
  font-size: 18px;
  color: #cb2027;
  margin-top: 15px;
}
.dealsites-modal .modal-content{
  padding: 30px 30px;
}
.dealsites-modal-footer {
  border-top: 1px solid #eee;
}
.dealsites-modal  .dealsites-modal-footer p{
  margin-top: 10px;
  font-size: 16px;
  color: #111;
}
.dealsites-modal  ul{
  list-style: disc;
}
.dealsites-modal  ul li{
  margin-top: 10px;
}
.dealsites-modal input{
  width: 100%;
  height: 50px;
  border: 1px solid var(--dealsites-border-color) !important;
  padding: 0 20px;
  background-color: #f8faff;
  border-radius: 6px;
  max-width: 100%;
}
.dealsites-mb-3{
  margin-bottom: 15px;
}
.dealsites-mt-3{
  margin-top: 15px;
}
/* modal css end  */
@media(max-width:425px){
  .dealsite-coupongrid .dealsites-coupon-box{
    grid-template-columns: 1fr;
  }
  .dealsite-coupongrid {
    grid-template-columns: repeat(auto-fit,minmax(270px,1fr));
  }
  .dealsites-coupon-box .dealsite-dealbtn{
    margin-left: unset;
  }
}
/* product section css start */
.dealsites-swiper-container{
  position: relative;
}
.swiper-button-prev.dealsites-head-left {
  width: 40px;
  height: 40px;
  border-radius: 8px;
  background-color: #DCE7F2;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.3s;
  cursor: pointer;
  position: absolute;
  left: -25px;
}
.swiper-button-next.dealsites-head-left {
  width: 40px;
  height: 40px;
  border-radius: 8px;
  background-color: #DCE7F2;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.3s;
  cursor: pointer;
  position: absolute;
  right: -25px;
}
.dealsites-head-left::after{
  color: #6E8DA0;
  font-size: 16px;
}
.dealsites-top-heading .swiper-button-prev{
  left: auto;
  right: 70px;
}
 .swiper-button-prev::after{
  font-size: 16px;
}
 .swiper-button-next::after{
  font-size: 16px;
}
.swiper-wrapper {
    height: auto;
}
.dealsites-head-left:hover{
border: 1px solid var(--dealsites-primary);
background-color: #fff;

}

.dealsites-productcard{
  margin-top: 30px;
  overflow: hidden;
}
.dealsites-product-box{
  background-color: #fff;
  border: 1px solid #eee;
  padding: 20px 20px;
  box-shadow: 0 2px 7px 0 rgb(0 0 0 / 9%);
}
.dealsites-img-box {
  text-align: center;
}
.dealsites-product-box .dealsites-price-content a {
  color: #111;
  height: 45px;
  overflow: hidden;
  line-height: 21px;
  word-wrap: break-word;
  font-size: 16px;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  margin-bottom: 10px;
  margin-top: 10px;
  cursor: pointer;
}
.dealsites-price-button h4{
  color: var(--dealsites-primary);
  font-size: 20px;
  font-weight: 500;
}
.dealsites-price-button p {
  font-size: 14px;
  color: #b5b5b5;
  font-weight: 400;
}
.dealsites-price-button{
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid #eee;
  padding-top: 20px;
}

.dealsites-product-box .dealsites-price-content .dealsites-price-button a {
  background-color: var(--dealsites-primary);
  padding: 10px 10px;
  color: #fff;
  border-radius: 4px;
  line-height: 40px;
  min-height: 40px;
  height: unset;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: unset;
  max-height: 40px;
}
img.attachment-post-thumbnail.size-post-thumbnail.wp-post-image {
    max-width: 300px;
    max-height: 280px;
    object-fit: contain;
    width: 100%;
}

/* / dealsites page section start / */
.dealsites-page{
  padding-top: 50px;
}
.dealsites-product-bigbox{
  background-color: #fff;
  border: 1px solid #eee;
  padding: 40px 40px 0px;
}
.dealsites-product-sectionmain{
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 30px;
  align-items: center;
}
.dealsites-productpage-content h2{
  font-size: 26px;
  font-weight: 600;
  color: #111;
}
.dealsites-product-bigbox .dealsites-productpage-content .dealsites-content-text a.dealsites_btn {
  background-color: var(--dealsites-primary);
  padding: 10px 10px;
  color: #fff;
  border-radius: 4px;
  line-height: 40px;
  min-height: 40px;
  height: unset;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: unset;
  max-height: 40px;
  max-width: 200px;
  min-width: 150px;
}
.dealsites-content-box {
  display: flex;
  justify-content: space-between;
  margin-top: 20px;
  margin-bottom: 20px;
  align-items: center;
  flex-wrap: wrap;
}
.dealsites-price-tag {
  display: flex;
  gap: 10px;
  align-items: center;
  flex-wrap: wrap;
}
.dealsites-mainbox{
  display: flex;
  justify-content:space-between ;
  align-items:center;
  flex-wrap: wrap;
  gap: 10px;
}
.dealsites-product-page-seconndbox{
  background-color: #fff;
  border: 1px solid #eee;
  padding: 40px 60px;
  margin-top: 40px;
}
.dealsites-product-page-seconndbox .dealsites-product-page-paragraph{
  font-size: 22px;
  font-weight: 600;
}
.dealsites-product-category{
  border-top: 1px solid #eee;
  text-align: right;
  padding: 20px 0px ;
  margin-top: 25px;
}
.dealsites-product-category a{
  cursor: pointer;
  font-size: 18px;
  color: #111;
}
.dealsites-product-page-thirdbox{
  background-color: #fff;
border: 1px solid #eee;
padding: 40px 60px;
margin-top: 40px;
}
.dealsites-product-page-thirdbox .dealsites-description-text ul {
  list-style: disc;
}
.dealsites-product-page-thirdbox .dealsites-description-text ul li{
  margin-top: 15px;
}
.dealsite-description-points{
  margin-top: 100px
}
.dealsites-product-page-thirdbox h3{
  font-size: 25px;
  font-weight: 600;
  margin-bottom: 10px;
}
.dealsites-product-page-thirdbox h5{
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 10px;
}
.dealsites-product-page-fourthbox{
  margin-top: 40px;

}
.dealsites-product-page-grid{
  display: grid;
  grid-template-columns: repeat(auto-fit,minmax(280px,1fr));
  gap: 30px;
  margin-top: 10px;
}
.dealsites-mainbox svg:hover{
  fill: var(--dealsites-primary);
}
.dealsites-page .dealsites-product-box{
  transition: all 0.3s ease;
}
.dealsites-page .dealsites-product-box:hover {
  transform: translateY(-10px);
}
.dealsites-img-box a img{
  max-width: 150px;
  width: 100%;
  height: 150px;
  object-fit: contain;
}
a {
  text-decoration: none !important;
}
@media(max-width:991px){
  .dealsites-product-sectionmain{
    grid-template-columns: 1fr;
  }
}
@media(max-width:480px){
  .dealsites-product-bigbox{
    padding: 20px 20px;
  }
  .dealsites-productpage-content h2{
    font-size: 18px;
  }
  .dealsites-mainbox{
    justify-content: center;
  }
  .dealsites-product-page-seconndbox{
    padding: 20px 20px;
  }
  .dealsites-product-page-seconndbox .dealsites-product-page-paragraph{
    font-size: 16px;
  }
  .dealsites-product-page-thirdbox {
    padding: 20px 20px 20px 30px;
  }
  .dealsites-product-page-thirdbox .dealsites-description-text ul li {
    font-size: 14px;
  }
  .dealsites-product-page-thirdbox h3{
    font-size: 18px;
  }
  .dealsites-product-page-thirdbox h5{
    font-size: 14px;
  }
}
/* product section css end */

/* Benner shortcode style 1*/
.dealsites-container-main.dealsites-style-one{
	max-width: 1160px;
	padding: 0 15px;
	margin: 0 auto;
}
.dealsites-product-banner.dealsites-style-one{
	background-size: cover;
	background-repeat: no-repeat;
	background-position: center;
	padding: 70px 50px;
}

.dealsites-style-one .dealsites-imagecol img{
	max-width: 550px;
	width: 100%;
}
.dealsites-style-one .dealsites-text-col h2{
	color: #ff0000;
	font-size: 44px;
	font-weight: 700;
}
.dealsites-style-one .dealsites-text-col h2 span{
	color: #fff;
	font-size: 30px;
}
.dealsites-style-one .dealsites-text-col a span {
	color: #111;
	font-size: 22px;
	display: inline-block;
	padding: 4px 30px;
	background: #EDB143;
	transform: rotate(0deg)skewY(0deg);
	font-weight: 700;
	margin-top: 30px;
	border-radius: 0px 100px 0px 100px;
}
.dealsites-style-one .dealsites-text-col a h1 span {
	color: #EDB143;
	font-size: 50px;
	display: inline-block;
	padding: 0px 15px;
	transform: rotate(0deg)skewY(0deg);
	font-weight: 700;
	margin-top: 15px;
	border-radius: 6px;
	background: #000;
}
.dealsites-style-one .dealsites-text-col a {
	text-decoration: none;
}
.dealsites-style-one .dealsites-text-col a h1{ 
	color: #fff;
	font-size: 50px;
	margin: 15px 0px;
}
.dealsites-style-one .dealsites-imagecol a img {
	max-width: 350px;
	height: auto;
	width: 100%;
}
.dealsites-style-one .dealsites-imagecol {
	text-align: center;
}
.dealsites-style-one .dealsites-short-btn {
	min-width: 120px;
	min-height: 40px;
	line-height: 40px;
	padding: 0px 10px;
	border-radius: 10px;
	background-color: #EDB143;
	font-size: 16px;
	color: #fff;
	font-weight: 500;
	display: inline-block;
	text-align: center;
	border: none;
	transition: all 0.3s;   
}
.dealsites-style-one .dealsites-text-col{
	position: relative;
}
.dealsites-style-one .wt-banner-left {
	color: #fff;
	position: absolute;
	top: -70px;
	right: -120px;
	transform: rotate(0deg) skewY(-10deg);
}
.dealsites-style-one .dealsites-contact{
	margin-top: 20px;
 
}
.dealsites-style-one .dealsites-contact h4{
	font-size: 32px;
	font-weight: 700;
	color: #fff;
}
.dealsites-style-one .dealsites-contact a{
	font-size: 18px;
	color: #fff;
}
@media(max-width:991px){
	.dealsites-style-one .wt-banner-left{
		right: -25px;
	}
}
@media(max-width:767px){
	.dealsites-style-one .dealsites-text-col a span{
		font-size: 13px;
		padding: 4px 15px;
	}
	.dealsites-style-one .dealsites-product-banner {
		padding: 70px 30px;
	}
	.dealsites-style-one.dealsites-text-col h2{
		font-size: 24px;
	}
	.dealsites-style-one .dealsites-text-col h2 span {
		font-size: 18px;
	}
	.dealsites-style-one .wt-banner-left p{
		font-size: 14px;
	}
	.dealsites-style-one .wt-banner-left{
		right: 40px;
		top: -60px;
	}
	.dealsites-style-one .dealsites-text-col a h1{
		font-size: 30px;
	}
	.dealsites-style-one .dealsites-text-col a h1 span{
		font-size: 30px;
		margin-top: 0;
		padding: 6px 15px;
	}
	.dealsites-style-one .dealsites-contact h4{
		font-size: 20px ;
	}
   .dealsites-style-one .dealsites-contact a{
		font-size: 15px;
	}
}
/*Banner style 2 css start*/
.dealsites-product-banner.dealsites-style-two{
	background-image: url(./assets/images/banner-second.png);
	background-size: cover;
	background-repeat: no-repeat;
	background-position: center;
	padding: 70px 20px 15px;
	max-width: 760px;
	margin: 0 auto;
	position: relative;
}
.dealsites-style-two .dealsites-banner-left h6{
	font-size: 20px;
	font-weight: 500;
	margin-bottom: 0
}
.dealsites-style-two .dealsites-banner-left h2{
	color: #2E3C5C;
	font-size: 42px;
	font-weight: 700;
	margin-bottom: 0;
}
.dealsites-style-two .dealsites-banner-left h2 span{
	color: #2E3C5C;
	font-size: 30px;
	font-weight: 600;
	margin-bottom: 0;
}
.dealsites-style-two .dealsites-text-col a span {
	color: #111;
	font-size: 22px;
	display: inline-block;
	padding: 10px 40px;
	background-image: url(./assets/images/bg-text-shape.png);
	font-weight: 700;
	margin-top: 30px;
	background-size: cover;
	background-position: center;
	text-align: center;
	margin: 0 auto;
}
.dealsites-style-two .dealsites-text-col a h1 span {
	color: #000000;
	font-size: 34px;
	display: inline-block;
	padding: 0px 15px;
	transform: rotate(0deg)skewY(0deg);
	font-weight: 700;
	margin-top: 15px;
	border-radius: 6px;
	background-image:url(./assets/images/bg-text-shape.png);
}
 a {
	text-decoration: none;
}
.dealsites-style-two .dealsites-text-col a h1{ 
	color: #fff;
	font-size: 34px;
	margin: 15px 0px;
}
.dealsites-style-two .dealsites-imagecol a img {
	max-width: 410px;
	height: auto;
	width: 100%;
}
.dealsites-style-two .dealsites-imagecol {
	text-align: center;
}
.dealsites-style-two .dealsites-short-btn {
	min-width: 120px;
	min-height: 40px;
	line-height: 40px;
	padding: 0px 10px;
	border-radius: 10px;
	background-color: #EDB143;
	font-size: 16px;
	color: #fff;
	font-weight: 500;
	display: inline-block;
	text-align: center;
	border: none;
	transition: all 0.3s;   
}
.dealsites-style-two .dealsites-text-col {
	max-width: 460px;
	margin: 0 auto;
	text-align: center;
}
.dealsites-style-two .dealsites-banner-left {
	color: #2e3c5c;
	min-width: 200px;
}

.dealsites-style-two .dealsites-contact h4{
	font-size: 32px;
	font-weight: 700;
	color: #fff;
}
.dealsites-style-two .dealsites-contact a{
	font-size: 18px;
	color: #fff;
}
.dealsites-style-two .dealsites-contact {
	margin-top: 20px;
	margin-bottom: 10px;
	text-align: end;
}
.dealsites-style-two .dealsites--short-banner{
	display: flex;
	justify-content: space-between;
	align-items: center;
	flex-wrap: wrap;
}
@media(max-width:991px){
	.dealsites-style-two .wt-banner-left{
		right: -25px;
	}
}
@media(max-width:767px){
	.dealsites-style-two .dealsites-text-col a span {
		font-size: 14px;
		padding: 4px 20px;
	}
	.dealsites-style-two .dealsites-product-banner {
		padding: 70px 30px;
	}
	.dealsites-style-two .dealsites-text-col h2{
		font-size: 24px;
	}
	.dealsites-style-two .dealsites-text-col h2 span {
		font-size: 18px;
	}
	.dealsites-style-two .wt-banner-left p{
		font-size: 14px;
	}
	.dealsites-style-two .wt-banner-left{
		right: 40px;
		top: -60px;
	}
	.dealsites-style-two .dealsites-text-col a h1{
		font-size: 22px;
	}
	.dealsites-style-two .dealsites-text-col a h1 span{
		font-size: 22px;
		margin-top: 0;
		padding: 6px 15px;
	}
	.dealsites-style-two .dealsites-contact h4{
		font-size: 20px ;
	}
	.dealsites-style-two .dealsites-contact a{
		font-size: 15px;
	}
	.dealsites-style-two .dealsites-banner-left h2 span, .dealsites-style-two .dealsites-banner-left h2, .dealsites-style-two .dealsites-banner-left h6,.dealsites-style-two .dealsites-banner-left p  {
		color: #fff;
	}
}
/* Banner style 3 css start*/
.dealsites-product-banner.dealsites-style-three{
	background-image: url(./assets/images/banner-third1.png);
	background-size: cover;
	background-repeat: no-repeat;
	background-position: center;
	padding: 50px 20px 15px;
	max-width: 400px;
	margin: 0 auto;
	position: relative;
}
.dealsites-style-three .dealsites-banner-left h6{
	font-size: 20px;
	font-weight: 500;
	margin-bottom: 0
}
.dealsites-banner-left h2{
	color: #b5641e;
	font-size: 34px;
	font-weight: 700;
	margin-bottom: 0;
}
.dealsites-style-three .dealsites-text-col a h1 span {
	color: #000000;
	font-size: 26px;
	display: inline-block;
	padding: 0px 15px;
	transform: rotate(0deg)skewY(0deg);
	font-weight: 700;
	margin-top: 15px;
	border-radius: 6px;
	background-image:url(./assets/images/bg-text-shape.png);
}
 a {
	text-decoration: none;
}
.dealsites-style-three .dealsites-text-col a h1{ 
	color: #fff;
	font-size: 26px;
	margin: 15px 0px;
}
.dealsites-style-three .dealsites-imagecol a img {
	max-width: 250px;
	height: auto;
	width: 100%;
}
.dealsites-style-three .dealsites-imagecol {
	text-align: center;
	position: relative;
}
.dealsites-style-three .dealsites-short-btn {
	min-width: 120px;
	min-height: 40px;
	line-height: 40px;
	padding: 0px 10px;
	border-radius: 10px;
	background-color: #EDB143;
	font-size: 16px;
	color: #fff;
	font-weight: 500;
	display: inline-block;
	text-align: center;
	border: none;
	transition: all 0.3s;   
}
.dealsites-style-three .dealsites-text-col {
	max-width: 460px;
	margin: 0 auto;
	text-align: center;
	padding-bottom: 60px;
}
.dealsites-style-three .dealsites-banner-left {
	color: #ffffff;
	position:absolute;
	top: -50px;
	right: 0;
	transform: rotate(0deg) skewY(-15deg);
}

.dealsites-style-three .dealsites-contact h4{
	font-size: 26px;
	margin-bottom: 0;
	font-weight: 700;
	color: #fff;
}
.dealsites-style-three .dealsites-contact a{
	font-size: 18px;
	color: #fff;
}
.dealsites-style-three .dealsites-contact {
	margin-top: 20px;
	margin-bottom: 10px;
	text-align: end;
}
.dealsites-style-three .dealsites--short-banner{
	display: flex;
	justify-content: space-between;
	align-items: center;
	flex-wrap: wrap;
}
.dealsites-style-three .dealsites-arrow-img img {
	max-width: 50px;
	width: 100%;
	position: absolute;
	top: -20px;
	right: 38%;
}
.dealsites-style-three .dealsites-text-col a h3{
	font-size: 40px;
	font-weight: 800;
	text-transform: uppercase;
	color: #fff;
}

.dealsites-style-three .dealsites-text-col span.dealsites-exclusive-text{
		font-size: 28px;
		color: #fff;
		font-weight: 500;
		text-transform: capitalize;
}
.dealsites-style-three .dealsites-text-col span.dealsites-range-span{
		font-size: 30px;
		color: #b5641e;
		font-weight: 700;
		text-transform: capitalize;
}
.dealsites-style-three .dealsites-text-col span.dealsites-furniture-text{
	color: #b5641e;
	font-size: 40px;
	font-weight: 800;
}

@media(max-width:991px){
	.dealsites-style-three .wt-banner-left{
		right: -25px;
	}
}
@media(max-width:767px){
	.dealsites-style-three .dealsites-text-col a span {
		font-size: 14px;
		padding: 4px 20px;
	}
	.dealsites-style-three .dealsites-product-banner {
		padding: 70px 30px;
	}
	.dealsites-style-three .dealsites-text-col h2{
		font-size: 24px;
	}
	.dealsites-style-three .dealsites-text-col h2 span {
		font-size: 18px;
	}
	.dealsites-style-three .wt-banner-left p{
		font-size: 14px;
	}
	.dealsites-style-three .wt-banner-left{
		right: 40px;
		top: -60px;
	}
	.dealsites-style-three .dealsites-text-col a h1{
		font-size: 22px;
	}
	.dealsites-style-three .dealsites-text-col a h1 span{
		font-size: 22px;
		margin-top: 0;
		padding: 6px 15px;
	}
	.dealsites-style-three .dealsites-contact h4{
		font-size: 20px ;
	}
	.dealsites-style-three .dealsites-contact a{
		font-size: 15px;
	}
	.dealsites-style-three .dealsites-banner-left h2 span, .dealsites-style-three .dealsites-banner-left h2, .dealsites-style-three .dealsites-banner-left h6,.dealsites-style-three .dealsites-banner-left p  {
		color: #fff;
	}
}
/**Form style 4 css start*/
.dealsites-container-main{
		max-width: 1160px;
		padding: 0 15px;
		margin: 0 auto;
	}
.dealsites-product-banner.dealsites-style-four{
	background-image: url(./assets/images/bnr1.png);
	background-size: cover;
	background-repeat: no-repeat;
	background-position: center;
	padding: 70px 50px;
}
.dealsites-style-four .dealsites-imagecol img{
	max-width: 550px;
	width: 100%;
}
.dealsites-style-four .dealsites-text-col h2{
	color: #ff0000;
	font-size: 44px;
	font-weight: 700;
}
.dealsites-style-four .dealsites-text-col h2 span{
	color: #fff;
	font-size: 30px;
}
.dealsites-style-four .dealsites-text-col a span {
	color: #111;
	font-size: 22px;
	display: inline-block;
	padding: 4px 30px;
	background: #EDB143;
	transform: rotate(0deg)skewY(0deg);
	font-weight: 700;
	margin-top: 30px;
	border-radius: 0px 100px 0px 100px;
}
.dealsites-style-four .dealsites-text-col a span:before {
	content: '';
	background-image: linear-gradient(-90deg, rgba(106,9,110,0.9999999999999999) 0%, rgba(21,17,45,0.996078431372549) 100%);
	border-radius: 50px;
	opacity: 0.302;
	position: absolute;
	top: 0;
	right: -10px;
	bottom: 0;
	left: 0;
	z-index: -1;
}
.dealsites-style-four .dealsites-text-col a span {
	background-image: linear-gradient(-90deg, rgba(106,9,110,0.9999999999999999) 0%, rgba(37,11,41,0.996078431372549) 100%);
	border-radius: 50px;
	display: inline-block;
	padding: 5px 30px;
	position: relative;
	z-index: 1;
	color: #fff;
}
.dealsites-style-four .dealsites-text-col a h1 span {
	font-size: 50px;
}
.dealsites-style-four .dealsites-text-col a {
	text-decoration: none;
}
.dealsites-style-four .dealsites-text-col a h1{ 
	color: #fff;
	font-size: 50px;
	margin: 15px 0px;
}
.dealsites-style-four .dealsites-imagecol a img {
	max-width: 440px;
	height: auto;
	width: 100%;
}
.dealsites-style-four .dealsites-imagecol {
	text-align: end;
}
.dealsites-style-four .dealsites-short-btn {
	min-width: 120px;
	min-height: 40px;
	line-height: 40px;
	padding: 0px 10px;
	border-radius: 10px;
	background-image: linear-gradient(-90deg, rgba(106, 9, 110, 0.9999999999999999) 0%, rgba(37, 11, 41, 0.996078431372549) 100%);            font-size: 16px;
	color: #fff;
	font-weight: 500;
	display: inline-block;
	text-align: center;
	border: none;
	transition: all 0.3s;   
}
.dealsites-style-four .dealsites-text-col{
	position: relative;
}
.dealsites-style-four .wt-banner-left {
	color: #fff;
	position: absolute;
	top: -60px;
	right: -150px;
	transform: rotate(0deg) skewY(-10deg);
}
.dealsites-style-four .dealsites-contact{
	margin-top: 20px;
}
.dealsites-style-four .dealsites-contact h4{
	font-size: 32px;
	font-weight: 700;
	color: #fff;
}
.dealsites-style-four .dealsites-contact a{
	font-size: 18px;
	color: #fff;
}
.dealsites-style-four .dealsites-square {
	align-items: center;
	display: flex;
	height: 190px;
	justify-content: center;
	position: relative;
	width: 190px;
}

.dealsites-style-four .dealsites-square span {
	animation-iteration-count: infinite;
	animation-name: animate;
	animation-timing-function: linear;
	border: 2px solid #ffffff;
	border-radius: 38% 62% 63% 37% / 41% 44% 56% 59%;
	height: 100%;
	left: 0;
	position: absolute;
	top: 0;
	transition: background-color 0.5s ease;
	width: 100%;
	z-index: 1;
}


.dealsites-style-four .dealsites-square span:nth-child(1) {
	animation-duration: 6s;
}

.dealsites-style-four .dealsites-square span:nth-child(2) {
	animation-duration: 4s;
}

.dealsites-style-four .dealsites-square span:nth-child(3) {
	animation-duration: 10s;
}

.dealsites-style-four .dealsites-square .dealsites-content {
	color: #ffffff;
	padding: 30px 12px;
	position: relative;
	text-align: center;
	transition: 0.5s ease all;
	z-index: 2;
}

.dealsites-style-four .dealsites-square .content a {
	border: 2px solid #ffffff;
	border-radius: 73% 27% 44% 56% / 49% 44% 56% 51%;
	color: #ffffff;
	display: inline-block;
	font-weight: 600;
	margin-top: 10px;
	padding: 6px 18px;
	position: relative;
	text-decoration: none;
	transition: background-color 0.3s ease,color 0.3s ease;
}

.dealsites-style-four .dealsites-square .dealsites-content a:hover,
.dealsites-style-four .dealsites-square .dealsites-content a:focus,
.dealsites-style-four .dealsites-square .dealsites-content a:active {
	background-color: #ffffff;
	color: #333333;
}
.dealsites-style-four .dealsites-social-icon{
	display: flex;
	justify-content: end;
	align-items: center;
	gap: 20px;
}
.dealsites-style-four .dealsites-social-icon p{
	font-size: 18px;
	margin-bottom: 0;
	padding-bottom: 0;
}

@keyframes animate {
	to  {
		transform: rotateZ(1turn);
	}
}
@media(max-width:991px){
	.dealsites-style-four .wt-banner-left{
		right: -25px;
	}
}
@media(max-width:767px){
	.dealsites-style-four .dealsites-text-col a span{
		font-size: 13px;
		padding: 4px 15px;
	}
	.dealsites-style-four .dealsites-product-banner {
		padding: 70px 30px;
	}
	.dealsites-style-four .dealsites-text-col h2{
		font-size: 24px;
	}
	.dealsites-style-four .dealsites-text-col h2 span {
		font-size: 18px;
	}
	.dealsites-style-four .wt-banner-left p{
		font-size: 14px;
	}
	.dealsites-style-four .wt-banner-left{
		right: 40px;
		top: -60px;
	}
	.dealsites-style-four .dealsites-text-col a h1{
		font-size: 30px;
	}
	.dealsites-style-four .dealsites-text-col a h1 span{
		font-size: 30px;
		margin-top: 0;
		padding: 6px 15px;
	}
	.dealsites-style-four .dealsites-contact h4{
		font-size: 20px ;
	}
	.dealsites-style-four .dealsites-contact a{
		font-size: 15px;
	}
	.dealsites-style-four .dealsites-square {
		width: 130px;
		height: 130px;
	}
	.dealsites-style-four .dealsites-text-col{
		padding-top: 50px;
	}
}

/** Banner style 5 css start*/
 a{
		text-decoration: none;
		cursor: pointer;
	}
	.dealsites-container-main.dealsites-style-five{
		max-width: 1160px;
		padding: 0 15px;
		margin: 0 auto;
	}
.dealsites-product-banner.dealsites-style-five{
	background-image: url(./assets/images/banner-five.png);
	background-size: cover;
	background-repeat: no-repeat;
	background-position: center;
	padding: 45px 50px 20px;
}
.dealsites-style-five .dealsites-imagecol img{
	max-width: 550px;
	width: 100%;
}
.dealsites-style-five .dealsites-text-col h2{
	color: #ff0000;
	font-size: 44px;
	font-weight: 700;
}
.dealsites-style-five .dealsites-text-col h2 span{
	color: #fff;
	font-size: 30px;
}
.dealsites-style-five .dealsites-text-col a span {
	color: #111;
	font-size: 22px;
	display: inline-block;
	padding: 4px 30px;
	background: #EDB143;
	transform: rotate(0deg)skewY(0deg);
	font-weight: 700;
	margin-top: 30px;
	border-radius: 0px 100px 0px 100px;
}
.dealsites-style-five .dealsites-text-col a  span:before {
	content: '';
	background-image: linear-gradient(-90deg, rgb(4 150 226) 0%, rgba(21, 17, 45, 0.996078431372549) 100%);
	border-radius: 50px;
	opacity: 0.302;
	position: absolute;
	top: 0;
	right: -10px;
	bottom: 0;
	left: 0;
	z-index: -1;
}
.dealsites-style-five .dealsites-text-col a span {
	background-image: linear-gradient(-90deg, rgb(4 150 226) 0%, rgba(21, 17, 45, 0.996078431372549) 100%);
	border-radius: 50px;
	display: inline-block;
	padding: 5px 30px;
	position: relative;
	z-index: 1;
	color: #fff;
}
.dealsites-style-five .dealsites-text-col a h1 span {
	font-size: 50px;
}
.dealsites-style-five .dealsites-text-col a {
	text-decoration: none;
}
.dealsites-style-five .dealsites-text-col a h1{ 
	color: #0489db;
	font-size: 50px;
	margin: 15px 0px;
}
.dealsites-style-five .dealsites-imagecol a img {
	max-width: 350px;
	height: auto;
	width: 100%;
	margin-top: 50px;
}
.dealsites-style-five .dealsites-imagecol {
	text-align: end;
	position: relative;
}
.dealsites-style-five .dealsites-short-btn {
	min-width: 140px;
	min-height: 45px;
	line-height: 45px;
	padding: 0px 10px;
	border-radius: 30px;
	background-image: linear-gradient(-90deg, rgb(4 150 226) 0%, rgba(21, 17, 45, 0.996078431372549) 100%);
	font-size: 18px;
	color: #fff;
	font-weight: 500;
	display: inline-block;
	text-align: center;
	border: none;
	transition: all 0.3s;   
}
.dealsites-style-five .dealsites-short-btn:hover{
	color: #fff;
}
.dealsites-style-five .dealsites-text-col{
	position: relative;
	text-align: center;
}
.dealsites-style-five .wt-banner-left {
	color: #028bdb;
	position: absolute;
	transform: rotate(0deg) skewY(-10deg);
	top: 0;
	left: 0px;
}
.dealsites-style-five .dealsites-contact h4{
	font-size: 32px;
	font-weight: 700;
	color: #000000;
}
.dealsites-style-five .dealsites-contact a{
	font-size: 18px;
	color: #000000;
}
.dealsites-style-five .dealsite-contact-wrapper {
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 20px;
	flex-wrap: wrap;
}
.dealsites-style-five .dealsites-square {
	align-items: center;
	display: flex;
	height: 190px;
	justify-content: center;
	position: relative;
	width: 190px;
}
.dealsites-style-five .dealsites-text-col p {
	color: #111;
	font-size: 16px;
	max-width: 450px;
	margin: 0 auto 15px;
}
.dealsites-style-five .dealsites-square span {
	animation-iteration-count: infinite;
	animation-name: animate;
	animation-timing-function: linear;
	border: 2px solid #029ae5;
	border-radius: 38% 62% 63% 37% / 41% 44% 56% 59%;
	height: 100%;
	left: 0;
	position: absolute;
	top: 0;
	transition: background-color 0.5s ease;
	width: 100%;
	z-index: 1;
	background-color: #015eba;
	background-image: linear-gradient(-90deg, rgb(4 150 226) 0%, rgba(21, 17, 45, 0.996078431372549) 100%);
}


.dealsites-style-five .dealsites-square span:nth-child(1) {
	animation-duration: 6s;
}
.dealsites-style-five .dealsites-square .dealsites-content {
	color: #ffffff;
	padding: 30px 12px;
	position: relative;
	text-align: center;
	transition: 0.5s ease all;
	z-index: 2;
}

.dealsites-style-five .dealsites-square .content a {
	border: 2px solid #ffffff;
	border-radius: 73% 27% 44% 56% / 49% 44% 56% 51%;
	color: #ffffff;
	display: inline-block;
	font-weight: 600;
	margin-top: 10px;
	padding: 6px 18px;
	position: relative;
	text-decoration: none;
	transition: background-color 0.3s ease,color 0.3s ease;
}

.dealsites-style-five .dealsites-square .dealsites-content a:hover,
.dealsites-style-five .dealsites-square .dealsites-content a:focus,
.dealsites-style-five .dealsites-square .dealsites-content a:active {
	background-color: #ffffff;
	color: #333333;
}
.dealsites-style-five .dealsites-social-icon{
	display: flex;
	justify-content: end;
	align-items: center;
	gap: 20px;
}
.dealsites-style-five .dealsites-social-icon p{
	font-size: 18px;
	margin-bottom: 0;
	padding-bottom: 0;
}
p.dealsites-powertext {
	margin-top: 5px;
    font-size: 12px;
    color: #4c564c;
    text-align: right;
    font-weight: 400;
}
.dealsites-storebox p.dealsites-powertext{
	text-align: center;
}
@keyframes animate {
	to  {
		transform: rotateZ(1turn);
	}
}
@media(max-width:991px){
	.dealsites-style-five .wt-banner-left{
		right: -25px;
	}
}
@media(max-width:767px){
	.dealsites-style-five .dealsites-text-col a span{
		font-size: 13px;
		padding: 4px 15px;
	}
	.dealsites-style-five .dealsites-product-banner {
		padding: 70px 30px;
	}
	.dealsites-style-five .dealsites-text-col h2{
		font-size: 24px;
	}
	.dealsites-style-five .dealsites-text-col h2 span {
		font-size: 18px;
	}
	.dealsites-style-five .wt-banner-left p{
		font-size: 14px;
	}
	.dealsites-style-five .wt-banner-left{
		right: 40px;
		top: -60px;
	}
	.dealsites-style-five .dealsites-text-col a h1{
		font-size: 30px;
	}
	.dealsites-style-five .dealsites-text-col a h1 span{
		font-size: 30px;
		margin-top: 0;
		padding: 6px 15px;
	}
	.dealsites-style-five .dealsites-contact h4{
		font-size: 20px ;
	}
	.dealsites-style-five .dealsites-contact a{
		font-size: 15px;
	}
	.dealsites-style-five .dealsites-square {
		width: 130px;
		height: 130px;
	}
	.dealsites-style-five .dealsites-text-col{
		padding-top: 50px;
	}
}