@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800;900&family=Rubik:wght@400;500;600;700;800;900&display=swap');

.mysearch:hover{background-color:#e82438 !important;font-weight:400;color:#fff;padding-left:8px}
.myerror {
    color: red!important;
    font-size: 17px!important;
    line-height: 1.3!important;
    padding-top: 12px!important;
}
.mysuccess {
    
	color: #00a65a!important;
    font-size: 17px!important;
    line-height: 1.3!important;
    padding-top: 12px!important;
}
/*@import url('https://fonts.googleapis.com/css?family=Source+Sans+Pro:300,400,600,700&display=swap');*/
/*@font-face {*/
/*    font-family: 'source_sans_probold';*/
/*    src: url('fonts/sourcesanspro-bold-webfont.html') format('woff2'),*/
/*         url('fonts/sourcesanspro-bold-webfont-2.html') format('woff');*/
/*    font-weight: 700;*/
/*    font-style: normal;*/

/*}*/
/*@font-face {*/
/*    font-family: 'source_sans_prolight';*/
/*    src: url('fonts/sourcesanspro-light-webfont.html') format('woff2'),*/
/*         url('fonts/sourcesanspro-light-webfont-2.html') format('woff');*/
/*    font-weight: 300;*/
/*    font-style: normal;*/

/*}*/
/*@font-face {*/
/*    font-family: 'source_sans_proregular';*/
/*    src: url('fonts/sourcesanspro-regular-webfont.html') format('woff2'),*/
/*         url('fonts/sourcesanspro-regular-webfont-2.html') format('woff');*/
/*    font-weight: 400;*/
/*    font-style: normal;*/

/*}*/
/*@font-face {*/
/*    font-family: 'source_sans_prosemibold';*/
/*    src: url('fonts/sourcesanspro-semibold-webfont.html') format('woff2'),*/
/*         url('fonts/sourcesanspro-semibold-webfont-2.html') format('woff');*/
/*    font-weight: 600;*/
/*    font-style: normal;*/

/*}*/
body {
}
h1, h2, h3, h4, h5, h6, p, span, ul, li, a, .btn-default, textarea {
  margin: 0;
  padding: 0;
}

* {
  margin: 0;
  padding: 0;
}
a:hover {
  text-decoration: none;
}
a:focus {
  text-decoration: none;
}

body {
  overflow-x: hidden;
  /*font-family: 'Source Sans Pro', sans-serif;*/
  font-family: "Poppins", sans-serif;
  color: #6d6e71;
  background: #f1f1f1;
}
.py-10{
  padding-top: 10px !important;
  padding-bottom: 10px;
}
.container{
  max-width: 1230px;
  width: 100%;
}
/*RESPONSIVE NAVIGATION*/
.mobile-menu{
   display: none;
 }
 .mobile-menu .circle {
  width: 40px;
  height: 40px;
  line-height: 40px;
  color: #fff;
  border-radius: 50%;
  background: #005879;
  margin: 0 auto;
  font-size: 16px;
  position: fixed;
  right: 40px;
  top: 40px;
  z-index: 92;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
}
.mobile-menu .nveMenu {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 280px;
  height: 100%;
  background: #fff;
  opacity: 0;
  visibility: hidden;
  z-index: 999;
  transform: translateX(-320px);
  transition: all 0.5s cubic-bezier(0.7, 0, 0.3, 1);
  padding: 40px 20px;
}
.mobile-menu .nveMenu.is-opened {
  opacity: 1;
  visibility: visible;
  transform: translateX(0);
}
/*.mobile-menu .nveMenu h1 {
  color: #000;
  font-weight: 700;
  }*/
  .mobile-menu .overlay {
    position: fixed;
    top: 0;
    right: 0;
    width: calc(100% - 280px);
    height: 100%;
    background: rgba(0, 0, 0, 0.71);
    opacity: 0;
    visibility: hidden;
    transition: all 0.5s cubic-bezier(0.7, 0, 0.3, 1);
  }
  .mobile-menu .overlay.is-on {
    opacity: 1;
    visibility: visible;
    z-index: 999;
  }
  .mobile-menu .navlinks li {
    display: block;
    padding: 12px 0;
  }
  .mobile-menu .navlinks li a {
    text-transform: uppercase;
    color: #666;
    font-weight: 700;
  }
  .mobile-menu .navlinks li a:hover {
    text-decoration: none;
  }
/*RESPONSIVE NAVIGATION*/

/****HEADER****/
.header-top {
    padding: 5px 0;
    background: #2d3e50;
}
.logo-wrapper img{
  max-width: 170px;
}
.header-search{
  width: 100%;
}
.header-search .form-group{
  margin: 0;
  position: relative;
  display: flex;
}
.header-search .form-group input{
  height: 40px;
  width: calc(100% - 45px);
  border-radius: 5px 0 0 5px;
  border: none;
  outline: none;
  padding: 5px 10px;
}
.header-search .form-group button{
  background: #e82438;
  color: #fff;
  height: 40px;
  width: 45px;
  border-radius:  0  5px 5px 0;
  border: none;
}
.main-navigation{
  background: #e82438;
  position: relative;
}
.main-navigation ul{
  display: flex;
  list-style-type: none;
}
.main-navigation ul li a{
  padding: 11px 15px;
  font-size: 16px;
  color: #fff;
  display: inline-block;
  position: relative;
}
.main-navigation ul li a.active {
    background: #2d3e50;
}
.main-navigation ul li a.active-menu:before{
  content: '';
  position: absolute;
  top: calc(100% - 10px);
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0 10px 10px 10px;
  border-color: transparent transparent #f5f6f5 transparent;
}
/******MEGAMENU******/
.main-navigation ul li .dropdown{
  position: relative;
}
.main-navigation ul li .dropdown a{
  display: flex;
  align-items: center;
}
.main-navigation ul li .dropdown a i{
  padding-left: 5px;
  position: relative;
  top: 2px;
}
.mega-menu{
  position: absolute;
  padding: 20px;
  background: #f5f6f5;
  width: 100vw;
  top: calc(100% - 40px);
  z-index: 5;
  box-shadow: 0 4px 4px 0 rgba(0,0,0,.1);
  transition: all 0.4s;
  opacity: 0;
  visibility: hidden;
}
.mega-menu.active{
  transform: translateY(40px);
  opacity: 1;
  visibility: visible;
}
.mega-menu-inner{
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
}
.mega-menu-inner .category-parent{
  font-weight: 700;
  color: #2d3e50;
  display: block;
  font-size: 14px;
  padding: 5px 10px;
}
.mega-menu-group{
  width: 20%;
  padding: 10px 0;
}
.mega-menu-group a{
  display: block !important;
  font-size: 14px !important;
  padding: 7px 10px !important;
  transition: all 0.25s;
  color: #8c8d90 !important;
  line-height: 1 !important;
}
.mega-menu-group a i{
  padding-left: 3px  !important;
  font-size: 10px !important;
  top: auto !important;
}
.mega-menu-group a:last-of-type{
  color: #2d3e50 !important;
  font-weight: 500px;
}
.mega-menu-group a:hover{
  color: #e82438 !important;
}
/****RESPONSIVE NAVIGATION*****/
.circle {
  width: 40px;
  height: 40px;
  line-height: 40px;
  color: #fff;
  border-radius: 50%;
  background: #e82438;
  margin: 0 auto;
  font-size: 16px;
  position: fixed;
  right: 15px;
  top: 18px;
  z-index: 92;
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 9999;
}
.circle span{
  position: relative;
  border-bottom: 2px solid #fff;
  width: 16px;
  transition: all 0.35s;
}
.circle span:before{
  content: '';
  position: absolute;
  top: -5px;
  width: 16px;
  height: 2px;
  background: #fff;
  transition: all 0.35s;
}
.circle span:after{
  content: '';
  position: absolute;
  bottom: -7px;
  width: 16px;
  height: 2px;
  background: #fff;
  transition: all 0.35s;
}
.circle.clicked span{
  border: none;
}
.circle.clicked span:before{
  transform: rotate(45deg) translate(2px,5px);
  width: 20px;
}
.circle.clicked span:after{
  transform: rotate(-45deg) translate(2px,-5px);
  width: 20px;
}
.nveMenu {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 0px;
  height: 100%;
  background: rgb(31 201 157);
  opacity: 0;
  visibility: hidden;
  transform: translateX(-320px);
  transition: all 0.5s cubic-bezier(0.7, 0, 0.3, 1);
  padding: 20px 0;
  z-index: 999;
}
.main-navigation.nveMenu ul {
    display: flex;
    flex-wrap: wrap;
}
.main-navigation.nveMenu ul li{
  width: 100%;
}
.nveMenu.is-opened {
  width: 280px;
  opacity: 1;
  visibility: visible;
  transform: translateX(0);
}
.overlay {
  position: fixed;
  top: 0;
  right: 0;
  width: 0;
  height: 100%;
  background: rgba(0, 0, 0, 0.71);
  opacity: 0;
  visibility: hidden;
  transition: all 0.5s cubic-bezier(0.7, 0, 0.3, 1);
}
.overlay.is-on {
  width: calc(100% - 280px);
  opacity: 1;
  visibility: visible;
  z-index: 999;
}
/****RESPONSIVE NAVIGATION*****/


/****INDEX PAGE****/
.banner-slider{
  position: relative;
}
.banner-slider .owl-item{
  position: relative;
}
.banner-slider .owl-item:before{
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background: rgb(45 62 80 / 65%);
}
.banner-slider .owl-item.active:before{
  display: none;
}
.banner-slider .banner-slide .sm-screen{
  display: none;
}
.banner-slider .owl-nav{
  margin: 0;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 80%;
  display: flex;
  justify-content: space-between;
}
.banner-slider .owl-nav button{
  outline: none;
}
.banner-slider .owl-nav button:hover{
  background: transparent !important;
}
.banner-slider .owl-nav button i{
  color: #fff;
  font-size: 48px;
  transition: all 0.25s;
}
.banner-slider .owl-nav button:hover i{
  color: #2d3e50;
}
.banner-slider .owl-dots{
  position: absolute;
  left: 50%;
  bottom: 15px;
  transform: translateX(-50%);
}
.banner-slider .owl-dots button{
  outline: none;
}
.banner-slider .owl-dots button span{
  width: 12px !important;
  height: 12px !important;
  margin: 5px !important;
  background: rgba(255,255,255,0.5) !important;
  border: 2px solid transparent;
  transition: all 0.25s;
}
.banner-slider .owl-dots button span:hover{
  border-color: #fff;
}
.banner-slider .owl-dots button.active span{
  background: #fff !important;
}
/*****INDEX SEC 2******/
.index-sec-2{
  background: #f1f1f1;
  padding: 50px 0 30px 0;
}
.index-sec-2 .sec-heading{
  text-align: center;
  line-height: 1;
  text-align: center;
  font-weight: 600;
  color: #2d3e50;
  padding-bottom: 40px;
  font-size: 32px;
}
.index-sec-2 .voucher-col{
  padding: 10px !important;
}
.vou-card-wrap{
  padding: 15px;
  background: #fff;
  border-radius: 5px;
  box-shadow: 0 2px 4px 0 rgba(0,0,0,.1);
  max-width: 285px;
  width: 100%;
  transition: all 0.35s;
}
.vou-card-wrap:hover{
  transform: scale(1.02);
  box-shadow: 0px 0px 10px 0px rgb(232 36 56 / 85%);
}
.vou-card-wrap .vou-img{
  max-height: 150px;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  position: relative;
}
.vou-card-wrap .vou-info{
  padding-top: 10px;
}
.vou-card-wrap .vou-info .vou-auth p{
  position: relative;
  padding-left: 22px;
  color: #6d6e71;
  font-size: 16px;
  position: relative;
}
.vou-card-wrap .vou-info .vou-auth p:before{
  content: '';
  background: url('../images/verified.png');
  position: absolute;
  top: 1px;
  left: 0;
  width: 20px;
  height: 18px;
  background-size: cover;
}
.vou-card-wrap .vou-info .vou-discount a {
    line-height: 1.2;
    margin: auto 0;
    padding: 15px 0px 7px 0px;
    color: #2d3e50;
    font-weight: 600;
    transition: all 0.3s linear;
    display: inline-block;
    font-size: 19px;
}
.vou-card-wrap .vou-info .vou-discount a:hover{
  color: #e82438;
}
.vou-card-wrap .vou-info .vou-exp{
  display: flex;
  justify-content: space-between;
}
.vou-card-wrap .vou-info .vou-exp p{
  color: #6d6e71;
  font-size: 12px;
  line-height: 1;
}
.vou-card-wrap .vou-info .vou-btn{
  padding-top: 15px;
}
.peel-btn-wrap{
  position: relative;
}
.peel-btn-wrap a{
  color: #e82438;
  height: 40px;
  display: block;
}
.peel-btn-wrap a span{
  transition: 0.25s;
  background: linear-gradient(to right,#e82438 15%,#e82438c9 100%);
  border-bottom-left-radius: 5px;
  border-top-left-radius: 5px;
  background-clip: padding-box;
  margin-right: 40px;
  padding-left: 10px;
  z-index: 2;
  display: block;
  position: relative;
  height: 40px;
  line-height: 40px;
  max-width: 100%;
  color: #fff;
  text-align: center;
  background-color: #e82438;
  background-clip: padding-box;
  font-size: 16px;
  font-weight: 500;
}
.peel-btn-wrap a span:before{
  display: block;
  content: "";
  width: 21px;
  height: 10px;
  background: #ac1b29;
  position: absolute;
  z-index: 2;
  right: -12px;
  bottom: 0;
  transform: skewX(34deg);
}
.peel-btn-wrap:hover a span:before{
  right: -17px;
}
.peel-btn-wrap:hover a span{
    margin-right: 53px;
    padding-left: 23px;
}
.peel-btn-wrap .peel-code{
  display: block;
  height: 40px;
  line-height: 40px;
  border: solid #e6e6e6;
  border-width: 2px;
  background-color: #fff;
  text-align: right;
  padding-right: 15px;
  color: #2d3e50;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  border-radius: 5px;
}
.peel-btn-wrap .peel-code .peel-in{
  display: block;
  width: 40px;
  height: 50px;
  position: absolute;
  border-radius: 0 0 4px 4px;
  top: -3px;
  right: 9px;
  z-index: 3;
  transform: rotateZ(22deg) translate(0,-10px) scaleX(.9);
  transition: 0.25s;
  background-image: linear-gradient(38deg,#2d3e50 0,#2d3e50 49%,rgba(202,235,137,0) 50%,rgba(255,255,255,0) 100%);
  background-position: 0 6px;
  background-repeat: no-repeat;
}
.peel-btn-wrap:hover .peel-code .peel-in{
  top: -4px;
  background-position: 0 0;
  transform: rotateZ(15deg) translate(-8px,-1px) scaleX(1);
}
/****INDEX SEC 3****/
.index-sec-3{
  background: #f1f1f1;
  padding: 10px 0 10px 0;
}
.category-tab-wrapper{
  position: relative;
}
.index-sec-3 .heading{
  margin: 0 auto 0 0;
  font-size: 20px;
  color: #000;
  font-weight: 600;
  position: absolute;
  top: 0;
  left: 0;
}
.category-tab-wrapper ul.nav-tabs{
  display: flex;
  justify-content: flex-end;
  border: none;
}
.category-tab-wrapper ul.nav-tabs li a{
  transition: all 0.3s;
  font-size: 16px;
  font-weight: 600;
  color: #2d3e50;
  border: none;
  background: transparent;
  padding: 8px 10px;
}
.category-tab-wrapper ul.nav-tabs li:last-of-type a{
  padding-right: 0;
}
.category-tab-wrapper ul.nav-tabs li a.active,
.category-tab-wrapper ul.nav-tabs li a:hover{
  color: #e82438;
  background: transparent;
}
.category-tab-wrapper .tab-content{
  padding: 20px 0;
}
.category-tab-wrapper .category-row{
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin: 0 -10px;
}
.category-tab-wrapper .category-column{
  padding: 10px;
  width: 12.5%;
}
.category-tab-wrapper .category-item-wrap{
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 2px 4px 0 rgba(0,0,0,.1);
  max-width: 141px;
  max-height: 141px;
  padding: 5px;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}
.category-tab-wrapper .category-item-wrap img{
  width: 100%;
  height: 100%;
}
.category-tab-wrapper .category-item-wrap .item-name{
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0);
  height: calc(100% - 10px);
  width: calc(100% - 10px);
  background: rgb(232 36 56 / 85%);
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 8px;
  transition: all 0.3s;
}
.category-tab-wrapper .category-item-wrap:hover .item-name{
  transform: translate(-50%, -50%) scale(1);
}
.category-tab-wrapper .item-name a{
  color: #fff;
  font-size: 16px;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
}
/****INDEX SEC 4****/
.index-sec-4{
  background: #f1f1f1;
  padding: 10px 0 40px 0;
}
.index-sec-4 .sec-heading {
  text-align: center;
  line-height: 1;
  text-align: center;
  font-weight: 600;
  color: #2d3e50;
  padding-bottom: 30px;
  font-size: 32px;
}
.index-sec-4 .deals-col{
  padding: 10px;
}
.deal-wrapper{
  padding: 15px;
  background: #fff;
  border-radius: 5px;
  box-shadow: 0 2px 4px 0 rgb(31 201 157 / 10%);
  max-width: 285px;
  width: 100%;
  transition: all 0.35s;
  height: 100%;
  display: flex;
  flex-wrap: wrap;
}
.deal-wrapper:hover {
  transform: scale(1.02);
  box-shadow: 0px 0px 10px 0px rgb(232 36 56 / 85%);
}
.deal-wrapper .deal-img{
  height: 150px;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  overflow: hidden;
}
.deal-wrapper .deal-img img{
  max-width: 150px;
}
.deal-wrapper .deal-img a{
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
}
.deal-wrapper .deal-info{
  padding-top: 10px;
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  justify-content: space-between;
  width: 100%;
  position: relative;
}
.deal-wrapper .deal-info a{
  line-height: 1.2;
  margin: auto 0;
  padding: 15px 0;
  color: #2d3e50;
  font-weight: 600;
  transition: all 0.3s linear;
  display: inline-block;
}
.deal-wrapper .deal-info a:hover{
  color: #e82438;
}
.deal-wrapper .deal-info p{
  display: flex;
  justify-content: space-between;
  color: #6d6e71;
  font-size: 16px;
  line-height: 1;
}
.deal-wrapper .deal-btn a{
  width: 100%;
  display: block;
  padding: 10px 20px;
  text-align: center;
  font-size: 16px;
  font-weight: 400;
  border-radius: 5px;
  background: #e82438;
  color: #fff;
  margin-top: 15px;
}
.deal-wrapper .deal-btn a:hover{
  color: #fff;
}
/*****NEWSLETTER SECTION*****/
.newsletter-sec{
  background: #fff url('../images/news-bg.webp');
  background-size: contain;
  background-repeat: repeat;
  padding: 50px 0;
}
.newsletter-top p:nth-of-type(1){
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 10px;
  color: #2d3e50;
  line-height: 1;
}
.newsletter-top p:nth-of-type(2){
  font-size: 17px;
  font-weight: 400;
  line-height: 1.3;
}
.newsletter-wrapper form{
  padding: 20px 0;
}
.newsletter-wrapper form input{
  width: 100%;
  height: 40px;
  line-height: 40px;
  padding: 0 15px;
  font-size: 16px;
  border: solid 1px #e82438;
  border-radius: 3px;
}
.newsletter-wrapper form button{
  padding: 11px 30px;
  margin-top: 20px;
  text-align: center;
  font-size: 16px;
  font-weight: 400;
  border-radius: 5px;
  background: linear-gradient(to right,#e82438 15%,#e82438c9 100%);
  position: relative;
  border: none;
  color: #fff;
  outline: none;
  line-height: 1;
}
.newsletter-bottom p{
  font-size: 13px;
  line-height: 1.3;
  width: 90%;
}
.newsletter-bottom p a{
  color: #e82438;
}
.newsletter-right{
  padding-left: 20px;
}
.newsletter-right .newsletter-top p{
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 10px;
  color: #2d3e50;
  line-height: 1;
}
.newsletter-text{
  overflow-y: scroll;
  height: 230px;
  padding-right: 20px;
}
.newsletter-text::-webkit-scrollbar {
  width: 2px;
}
.newsletter-text::-webkit-scrollbar-track {
  background: #ececec;
}
.newsletter-text::-webkit-scrollbar-thumb {
  background: #e82438;
  width: 8px;
}
.newsletter-text p strong{
  font-weight: 600;
}
.newsletter-text p{
  font-size: 16px;
  padding-bottom: 10px;
  line-height: 1.3;
}
.newsletter-text p:last-of-type{
  padding-bottom: 0;
}
.newsletter-text p a{
  color: #e82438;
}
/*****FOOTER*****/
footer{
  text-align: center;
  padding: 50px 0;
  background: #2d3e50;
  color: #fff;
  font-size: 16px;
}
.footer-social{
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}
.footer-social p{
  padding-right: 8px;
}
.footer-social ul{
  list-style-type: none;
  display: flex;
  flex-wrap: wrap;
}
.footer-social ul li a{
  margin: 0 4px;
  background: #fff;
  border-radius: 50%;
  height: 30px;
  width: 30px;
  display: block;
  transition: all 0.25s;
  display: flex;
  justify-content: center;
  align-items: center;
}
.footer-social ul li a i{
  font-size: 18px;
  transition: all 0.25s;
}
.footer-social ul li a.fb i{
  color: #3b5998;
}
.footer-social ul li a.tw i{
  color: #1da1f2;
}
.footer-social ul li a.in i{
  color: #e22b7b;
}
.footer-social ul li a.fb:hover{
  background: #3b5998;
}
.footer-social ul li a.tw:hover{
  background: #1da1f2;
}
.footer-social ul li a.in:hover{
  background: #e22b7b;
}
.footer-social ul li a:hover i{
  color: #fff;
}
.footer-nav ul{
  padding: 20px 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  list-style-type: none;
}
.footer-nav ul li{
  padding: 0 8px;
}
.footer-nav ul li a{
  display: inline-block;
  vertical-align: top;
  padding: 14px 25px;
  color: #fff;
  background: #e82438;
  border-radius: 3px;
  transition: all .2s linear;
  margin-top: 8px;
  margin-bottom: 8px;
  font-size: 16px;
  line-height: 1;
}
.footer-nav ul li a:hover {
  background: #484848;
}
.footer-bottom p:nth-of-type(1){
  padding-bottom: 15px;
}
/*****INNER PAGE/ CATEGORGY LISTING PAGE*****/
.page-wrap{
  background: #f1f1f1;
  padding: 10px 0;
}
.breadcrumb{
  display: flex;
  background: transparent;
  margin: 0 -15px;
}
.breadcrumb a{
  position: relative;
  background: #363636;
  padding: 0px 7px 0px 10px;
  color: #fff;
  margin: 0 3px 0 12px;
  font-size: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 26px;
  transition: all 0.25s;
}
.breadcrumb a:before{
  content: '';
  top: 0;
  position: absolute;
  border-width: 13px 0 13px 12px;
  border-style: solid;
  border-color: #2d3e50 #2d3e50 #2d3e50 transparent;
  left: -12px;
  transition: all 0.25s;
}
.breadcrumb a:after{
  content: '';
  top: 0;
  position: absolute;
  border-top: 13px solid transparent;
  border-bottom: 13px solid transparent;
  border-left: 12px solid #2d3e50;
  right: -12px;
  transition: all 0.25s;
}
.breadcrumb a.active,
.breadcrumb a:hover{
  background: #e82438;
}
.breadcrumb a.active:before,
.breadcrumb a:hover:before{
  border-color: #e82438 #e82438 #e82438 transparent;
}
.breadcrumb a.active:after,
.breadcrumb a:hover:after{
  border-left-color: #e82438;
}
.category-info{
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  padding: 10px 0;
}
.category-info .category-image-wrap{
  width: 170px;
}
.category-info .category-image{
  background: #fff;
  padding: 15px;
  border-radius: 5px;
  box-shadow: 0 2px 4px 0 rgba(0,0,0,.1);
  transition: all 0.35s;
  text-align: center;
}
.category-info .category-image p{
  color: #fff;
  font-size: 15px;
  background: #e82438;
  border-radius: 5px;
  width: calc(100% - 16px);
  margin: 5px auto 0 auto;
}
.category-info .category-desc-wrap{
  width: calc(100% - 190px);
  display: flex;
  align-items: center;
}
.category-desc .category-desc-top{
  display: flex;
  flex-wrap: wrap;
  padding-bottom: 15px;
}
.category-desc p{
   font-size: 15px;
   line-height: 1.4;
}
.category-desc .category-desc-top .heading{
  color: #2d3e50;
  font-size: 30px;
  font-weight: 600;
  flex: 1;
  line-height: 1;
  padding-right: 15px;
  margin: 0;
}
.category-desc .category-desc-top .views{
  color: #fff;
  font-size: 15px;
  background: #e82438;
  border-radius: 5px;
  padding: 5px 15px;
  width: 87px;
  display: flex;
  justify-content: space-evenly;
  align-items: center;
  max-height: 31px;
}
.category-desc .category-desc-top .views i{
  padding-right: 4px;
}
#more {
  display: none;
}
.category-desc-wrap #read-more{
  background: transparent;
  border: none;
  color: #e82438;
  font-size: 16px;
  font-weight: 700;
  margin-left: 5px;
  outline: none;
}
.content-body{
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  padding: 10px 0;
}
.content-body .main-col-wrap{
  width: calc(100% - 370px);
}
.content-body .widget-col-wrap{
  width: 350px;
  position: relative;
}
.main-col .vou-type-2{
  margin-bottom: 15px;
}
.vou-type-2{
  width: 100%;
  max-width: 100%;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  min-height: 175px;
  height: 100%;
}
.vou-type-2:hover,
.deal-type-2:hover{
  transform: scale(1);
}
.vou-type-2 .vou-img{
  width: 120px;
  border-radius: 5px;
  border: 1px solid #efefef;
  height: auto;
  max-height: 100%;
  align-items: start;
  cursor: pointer;
}
.vou-type-2 .vou-img p{
  font-size: 16px;
  text-align: center;
  width: 100%;
  background: #e82438;
  position: absolute;
  left: 0;
  bottom: 0;
  color: #fff;
  padding: 3px 0;
}
.vou-type-2 .vou-info{
  width: calc(100% - 140px);
  padding-top: 0px;
}
.vou-type-2 .vou-discount {
    display: flex;
    width: 100%;
    justify-content: space-between;
    align-items: center;
    padding: 25px 0px 10px 0px;
}
.vou-type-2 .peel-btn-wrap a{
  padding: 0 !important;
  width: 200px !important;
}
.vou-type-2  .vou-info .vou-exp {
  padding-top: 5px;
}
.main-col .vou-type-2,
.main-col .deal-type-2{
  margin-bottom: 15px;
}
.deal-type-2{
  max-width: 100%;
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  min-height: 175px;
  height: 100%;
}
.deal-type-2 .deal-img{
  width: 120px;
  border-radius: 5px;
  border: 1px solid #efefef;
  height: auto;
  max-height: 100%;
  align-items: start;
  cursor: pointer;
}
.deal-type-2 .deal-img p{
  font-size: 16px;
  text-align: center;
  width: 100%;
  background: #e82438;
  position: absolute;
  left: 0;
  bottom: 0;
  color: #fff;
  padding: 3px 0;
}
.deal-type-2 .deal-info{
  width: calc(100% - 140px);
  padding-top: 0px;
  justify-content: center;
  top: -10px;
}
.deal-type-2 .deal-discount {
  display: flex;
  width: 100%;
  justify-content: space-between;
  align-items: center;
  padding: 10px 0;
}
.deal-type-2 .deal-discount .deal-btn a{
  margin-top: 0;
  width: 200px;
  text-align: center;
}
.deal-type-2 .deal-img img {
  max-width: 100%;
}
.popular-offer{
  padding: 15px;
  background: #fff;
  border-radius: 5px;
  box-shadow: 0 2px 4px 0 rgba(0,0,0,.1);
  width: 100%;
  transition: all 0.35s;
  margin-bottom: 15px;
}
.popular-offer .heading{
  font-size: 24px;
  margin-bottom: 20px;
  color: #000;
}
.popular-offer table{
  width: 100%;
}
.popular-offer table thead tr{
  border-bottom: solid 1px #ddd;
}
.popular-offer table tbody tr:not(:last-of-type){
  border-bottom: solid 1px #ddd;
}
.popular-offer table th{
  font-weight: 600;
  color: #333;
  font-size: 16px;
  padding: 10px 0;
  line-height: 1;
}
.popular-offer table td{
  font-size: 16px;
  line-height: 1;
  padding: 11px 0;
}
.about-category{
  padding: 15px;
  background: #fff;
  border-radius: 5px;
  box-shadow: 0 2px 4px 0 rgba(0,0,0,.1);
  width: 100%;
  transition: all 0.35s;
  margin-bottom: 15px;
}
.about-category p{
  padding-bottom: 20px;
  font-size: 15px;
  line-height: 1.3;
  font-size: 16px;
}
.about-category .s-heading{
  font-size: 20px;
  color: #2d3e50;
  font-weight: 600;
  line-height: 1;
  padding-bottom: 15px;
}
.about-category .b-heading{
  font-size: 22px;
  color: #2d3e50;
  font-weight: 600;
  line-height: 1;
  padding-bottom: 15px;
}
.about-category .contact-info p{
  padding-bottom: 0px;
  line-height: 1.3;
  font-size: 16px;
}
.about-category .contact-info{
  padding-bottom: 20px;
}
.about-form-wrap .heading-green{
  font-size: 24px;
  margin-bottom: 20px;
  color: #2d3e50;
}
.about-form-wrap form input{
  width: 100%;
  border-radius: 5px;
  box-shadow: none;
  margin-bottom: 15px;
  border: solid 1px #dadada;
  padding: 10px;
  outline: none;
}
.about-form-wrap form textarea{
  width: 100%;
  border-radius: 5px;
  height: 120px;
  box-shadow: none;
  border: solid 1px #dadada;
  padding: 10px;
  resize: none;
  outline: none;
  margin-bottom: 15px
}
.about-form-wrap form button{
  background: linear-gradient(90deg,#e82438,#e82438);
  position: relative;
  overflow: hidden;
  color: #fff;
  padding: 8px 20px;
  height: 40px;
  text-align: center;
  font-size: 16px;
  font-weight: 400;
  border-radius: 5px;
  transition: 300ms ease-in-out;
  border: none;
}
.about-form-wrap .customer-review{
  padding-top: 15px;
}
.about-form-wrap .customer-review .heading{
  font-size: 28px;
  line-height: 1;
  padding-bottom: 20px;
  color: #6d6e71;
}

/*****RIGHT SIDEBAR*****/
.widget-col-wrap .widget-col{
  position: sticky;
}
.widget-col .widget-col-item:not(:first-of-type){
  margin-top: 20px;
}
.widget-col .widget-col-item .widget-title{
  font-size: 20px;
  color: #2d3e50;
  font-weight: 600;
  padding-bottom: 20px;
  line-height: 1;
}
.rating-container .rating-box{
  padding: 20px;
  background: #fff;
  border-radius: 5px;
  box-shadow: 0 2px 4px 0 rgba(0,0,0,.1);
}
.rating-container .rating-stars{
  display: flex;
  align-items: center;
}
.rating-container .rating-stars i{
  color: #d2d2d2;
  padding: 0 3px 0 0;
  font-size: 16px;
  cursor: pointer;
}
.rating-container .rating-stars i.active{
  color: #e82438;
}
.rating-container .rating-box p{
  color: #6d6e71;
  font-size: 15px;
  padding: 15px 0 0 0;
  font-weight: 400;
}
.social-container .social-box{
  padding: 20px;
  background: #fff;
  border-radius: 5px;
  box-shadow: 0 2px 4px 0 rgba(0,0,0,.1);
}
.social-container .social-box ul{
  display: flex;
  align-items: center;
  list-style-type: none;
}
.social-container .social-box ul li a{
  display: block;
  margin-right: 10px;
}
.filter-container p{
  font-size: 20px;
  color: #000;
  font-weight: 600;
  padding-bottom: 20px;
  line-height: 1;
}
.filter-container .filter-box{
  padding: 10px 20px;
  background: #fff;
  border-radius: 5px;
  box-shadow: 0 2px 4px 0 rgba(0,0,0,.1);
}
.filter-container .filter-box label{
  margin: 0;
}
.filter-container .filter-group{
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 0;
}
.filter-container .filter-group p{
  font-size: 16px;
  color: #6d6e71;
  line-height: 1;
  padding: 0;
  margin: 0;
  font-weight: 400;
}
/*****TOGGLE BTN****/
.toggle-wrap{
  position: relative;
  display: inline-block;
  width: 40px;
  height: 20px;
}
.toggle-wrap input { 
  opacity: 0;
  width: 0;
  height: 0;
}
.toggle-wrap .toggle-btn{
  position: absolute;
  cursor: pointer;
  top: 50%;
  transform: translateY(-50%);
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #dadada;
  -webkit-transition: .4s;
  transition: .4s;
  height: 10px;
  border-radius: 34px;
}
.toggle-wrap .toggle-btn:before {
  position: absolute;
  content: "";
  height: 20px;
  width: 20px;
  left: 0px;
  top: 50%;
  transform: translateY(-50%);
  background-color: #efefef;
  -webkit-transition: .4s;
  transition: .4s;
  border-radius: 50%;
}
.toggle-wrap input:checked + .toggle-btn {
  background-color: #e82438;
}
.toggle-wrap input:focus + .toggle-btn {
  box-shadow: 0 0 1px #2196F3;
}
.toggle-wrap input:checked + .toggle-btn:before {
  transform: translate(26px, -50%);
  background: #2d3e50;
}
.related-store-container .related-store-box,
.related-categories-container .related-categories-box{
  padding: 15px;
  background: #fff;
  border-radius: 5px;
  box-shadow: 0 2px 4px 0 rgba(0,0,0,.1);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}
.related-store-container .related-store-box a,
.related-categories-box a{
  margin: 5px;
  font-size: 16px;
  padding: 10px;
  background-color: #e82438;
  color: #ffffff;
  text-align: center;
  font-weight: 400;
  border-radius: 5px;
  transition: 300ms ease-in-out;
  cursor: pointer;
  border: solid 1px transparent;
  line-height: 1;
}
.related-store-container .related-store-box a:hover,
.related-categories-box a:hover{
  background: #e82438;
  color: #fff;
}


/*****TRAVEL PAGE*****/
.travel-page-wrap{
  padding-top: 0;
}
.travel-tabs-wrap{
  background: url(../images/tab-form-bg.jpg);
  background-size: cover;
}
.travel-tabs-wrap ul.nav-tabs{
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  border: none;
}
.travel-tabs-wrap ul.nav-tabs li{
  width: 33.33%;
  text-align: center;
}
.travel-tabs-wrap ul.nav-tabs li a{
  border-radius: 0;
  border: none !important;
}
.travel-tabs-wrap ul.nav-tabs li a.active,
.travel-tabs-wrap ul.nav-tabs li a:hover{
  background: rgba(0,0,0,0.70);
  border: none !important;
}
.travel-tabs-wrap ul.nav-tabs li i{
  font-size: 38px;
  color: #fff;
}
.travel-tabs-wrap .tab-title{
  padding-bottom: 180px;
}
.travel-tabs-wrap .tab-title p{
  background: rgba(0,0,0,0.70);
  padding: 20px;
  color: #fff;
  text-transform: uppercase;
  font-size: 26px;
}
.travel-tabs-wrap .tab-title p span{
  color: #e82438;
  text-transform: capitalize;
}
.travel-tabs-wrap .tab-form{
  background: rgba(0,0,0,0.70);
  padding: 20px;
}
.travel-tabs-wrap .tab-form .form-row {
  display: flex;
  flex-wrap: wrap;
}
.travel-tabs-wrap .tab-form .form-col{
  padding: 0 10px;
}
.travel-tabs-wrap .tab-form .width-100{
  width: 100%;
}
.travel-tabs-wrap .tab-form .last-col{
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
}
.travel-tabs-wrap .tab-form .last-col button{
  margin-left: 10px;
  color: #FFFFFF;
  background: #e82438;
  width: 150px;
  padding: 10px;
  font-size: 18px;
  font-weight: 700;
  line-height: 1;
  border: none;
}
.travel-tabs-wrap .form-row-1 .width-1{
  width: 15%;
}
.travel-tabs-wrap .form-row-1 .width-2{
  width: 14%;
}
.travel-tabs-wrap .form-row-1 .width-3{
  width: 14%;
}
.travel-tabs-wrap .form-col p{
  color: #c7c7c7;
  font-size: 14px;
  font-weight: 600;
  padding-bottom: 7px;
}
.travel-tabs-wrap .form-col label{
 position: relative;
 width: 100%;
}
.travel-tabs-wrap .form-col label i{
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 5px;
  color: #c7c7c7;
  font-size: 14px;
}
.travel-tabs-wrap .form-col input{
  width: 100%;
  padding-left: 20px;
  border: 1px solid ;
  height: 36px;
  border-color: #858585  #c2c2c2 #c2c2c2;
  outline: none;
}
.travel-tabs-wrap .form-col select{
  width: 100%;
  padding-left: 10px;
  border: 1px solid;
  border-color: #858585  #c2c2c2 #c2c2c2;
  height: 36px;
  outline: none;
}
.travel-tabs-wrap .form-row-2 .width-1{
  width: 30%;
}
.travel-tabs-wrap .form-row-2 .width-2{
  width: 20%;
}
.travel-tabs-wrap .form-row-2 .width-3{
  width: 15%;
}
.about-travel-box{
  height: 200px;
  padding:20px;
  background: #fff;
  border-radius: 5px;
  box-shadow: 0 2px 4px 0 rgba(0,0,0,.1);
  overflow-y: scroll;
}
.about-travel-box::-webkit-scrollbar {
  width: 5px;
}
.about-travel-box::-webkit-scrollbar-track {
  background: #ececec;
}
.about-travel-box::-webkit-scrollbar-thumb {
  background: #e82438;
  width: 8px;
  border-radius: 25px;
}
.widget-col .adv-box{
  border-radius: 5px;
  box-shadow: 0 2px 4px 0 rgba(0,0,0,0.1);
  overflow: hidden;
}
.widget-col .adv-box a{
  display: block;
}
.travel-widgets .related-categories-box{
  padding: 0;
  background: transparent;
  box-shadow: none;
}
.travel-widgets .related-categories-box a{
  background: #e82438;
  color: #fff;
  margin: 5px;
  font-size: 16px;
  padding: 10px;
  text-align: center;
  font-weight: 400;
  border-radius: 5px;
  transition: 300ms ease-in-out;
  cursor: pointer;
  border: solid 1px transparent;
  line-height: 1;
}
/*****TOP DISCOUNT PAGE*****/
.top-discount-widget .about-container .widget-title{
  color: #2d3e50;
  font-size: 24px;
}
.top-discount-wrap h1{
  text-align: center;
  font-size: 24px;
  margin-bottom: 20px;
  color: #2d3e50;
  font-weight: 600;
}
.top-discount-wrap .category-tab-wrapper{
  padding-bottom: 10px;
}
.top-discount-wrap .category-row{
  justify-content: flex-start;
}
.top-discount-wrap .category-column{
  padding: 5px;
}
.top-discount-wrap .category-item-wrap{
  border-radius: 5px;
}


/*****BROWSE CATEGORY PAGE*****/
.browse-category-wrap h1{
  font-size: 24px;
  margin-bottom: 20px;
  color: #2d3e50;
  font-weight: 600;
}
.single-category-wrap h1{
  font-size: 24px;
  margin-bottom: 20px;
  color: #2d3e50;
  font-weight: 600;
}
.browse-category-item{
  background: #fff;    
  border-radius: 5px;
  transition: 0.4s;
  border-left: 3px transparent solid;
  padding: 20px;
  margin-bottom: 30px;
  display: flex;
  flex-wrap: wrap;
}
.browse-category-item:hover{
  border-left-color: #e82438;
  box-shadow: 0 2px 4px 0 rgba(0,0,0,.1);
}
.browse-category-item .category-img{
  width: 180px;
  padding: 0 40px 0 20px;
}
.browse-category-item .category-list{
  width:calc(100% - 180px);
}
.browse-category-item .category-list .main-category{
  font-size: 22px;
  line-height: 1;
  color: #6d6e71;
  padding-bottom: 15px;
  display: inline-block;
}
.browse-category-item .category-list ul{
  display: flex;
  flex-wrap: wrap;
  list-style-type: none;
}
.browse-category-item .category-list ul li{
  width: 25%;
}
.browse-category-item .category-list ul li a{
  font-size: 14px;
  transition: color 200ms linear;
  color: #6d6e71;
  display: inline-block;
  padding: 5px 5px 5px 0;
}
.browse-category-item .category-list ul li a:hover{
  color: #e82438;
}
/*EVENT MAIN PAGE*/
.event-main-page .main-col .main-heading{
  font-size: 24px;
  margin-bottom: 20px;
  color: #e82438;
  font-weight: 600;
}
.events-row .event-col{
  padding: 10px;
}
.events-row .event-col .event-item{
  max-width: 267px;
}
.events-row .event-col .event-item a{
  display: block;
}
.event-item .event-img img{
  width: 100%;
  border-top-left-radius: 5px;
  border-top-right-radius: 5px;
}
.event-item .event-name p{
  margin: 0;
  background: #fff;
  padding: 15px;
  text-align: center;
  color: #000;
  font-size: 16px;
  border-bottom-left-radius: 5px;
  border-bottom-right-radius: 5px;
  transition: all 0.25s;
}
.event-item:hover .event-name p{
    box-shadow: 0 2px 4px 0 rgba(0,0,0,.1);
}

/*****EVENT PAGE 1*****/
.event-page-1{
  background: url(../images/event-page-1-bg.png);
  background-size: cover;
}
.event-page-1 .main-col-wrap{
  width: 100% !important;
}
.event-page-1 .event-banner{
  background: url(../images/event-1-bg.jpg);
  background-size: cover;
  padding: 30px;
  text-align: center;
  min-height: 280px;
  border-radius: 5px;
}
.event-page-1 .event-banner img{
  width: 225px;
  height: 100px;
  object-fit: contain;
  margin-bottom: 30px;
  vertical-align: middle;
}
/****COUNTDOWN CLOCK****/
#countdown-clock{
  color: #fff;
  display: flex;
  font-weight: 100;
  text-align: center;
  font-size: 30px;
  justify-content: center;
}
#countdown-clock .countdown-container{
  background: white;
  width: 80px;
  height: 89px;
  text-align: center;
  padding: 10px;
  color: #02174d;
  border-radius: 5px;
  margin: 0 5px;
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  justify-content: space-between;
}
#countdown-clock .countdown-container span{
  padding: 0px;
  border-radius: 3px;
  font-size: 30px;
  font-weight: 600;
  display: inline-block;
  line-height: 1;
  width: 100%;
}
#countdown-clock .smalltext{
  width: 100%;
}
#countdown-clock .smalltext p{
  padding-top: 8px;
  font-size: 16px;
  font-weight: 600;
  line-height: 1;
  position: relative;
}
#countdown-clock .smalltext p:before{
  content: '';
  position: absolute;
  top: -5px;
  left: 0;
  height: 3px;
  width: 100%;
  background: #02174d;
}

.top-brands-wrap{
  padding: 10px 0 20px 0;
}
.top-brands-wrap .heading{
  margin: 10px 0 20px 0;
  font-size: 24px;
  color: #e82438;
  line-height: 1;
  text-align: center;
  font-weight: 600;
}
.top-brands-row{
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
.top-brands-row .top-brands-col{
  padding: 10px;
  width: 20%;
}
.top-brands-row .top-brands-wrap{
  background: white;
  padding: 10px;
  border-radius: 5px;
  box-shadow: 0 2px 4px 0 rgba(0,0,0,0.1);
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
}
.top-brands-row .top-brands-wrap a{
  display: block;
}
.top-brands-row .top-brands-wrap img{
  vertical-align: middle;
  width: 100%;
  height: 100%;
  max-width: 120px;
  max-height: 120px;
  object-fit: cover;
}
.event-page-1 .event-banner-2{
  margin-bottom: 20px;
}
.event-page-1 .event-banner-2 img{
  border-radius: 5px;
}
.event-details{
  background: white;
  padding: 20px;
  border-radius: 5px;
  box-shadow: 0 2px 4px 0 rgba(0,0,0,0.1);
}
.event-details .event-title{
  padding-bottom: 20px;
  font-size: 32px;
  line-height: 1;
  font-weight: 400;
}
.event-details ul{
  padding-bottom: 20px;
  padding-left: 20px;
}
.event-details ul li{
  font-size: 14px
}
.event-details ul li a{
  color: #e82438;
}
.event-details p{
  padding-bottom: 20px;
  font-size: 14px;
}
.event-details p.b-text{
  font-size: 16px;
}
.event-details p a{
  color: #e82438;
}
.event-details .b-heading{
  font-size: 24px;
  color: #e82438;
  padding-bottom: 20px;
  line-height: 1;
}
.event-details .s-heading{
  font-size: 18px;
  color: #e82438;
  padding-bottom: 20px;
  line-height: 1;
}
.event-details .lg-heading{
  font-size: 30px;
}
.pb-50{
  padding-bottom: 50px !important;
}
.pb-0{
  padding-bottom: 0px !important;
}
.related-blogs-row{
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
.related-blogs-row .blog-col{
  max-width: 373px;
  width: 100%;
  margin: 10px;
}
.related-blogs-row .blog-wrap{
  width: 100%;
  background: white;
  overflow: hidden;
  box-shadow: 0 2px 4px 0 rgba(0,0,0,0.1);
  border-radius: 5px;
}
.related-blogs-row .blog-col .blog-img{
  height: 160px;
}
.related-blogs-row .blog-col .blog-img img{
  border-radius: 5px 5px 0 0;
}
.related-blogs-row .blog-col .blog-content{
  padding: 20px;
  font-size: 14px;
  display: block;
}
.related-blogs-row .blog-content .blog-title{
  font-size: 16px;
  height: 40px;
  overflow: hidden;
  font-weight: 700;
  line-height: 1.3;
  margin: 0;
  color: #6d6e71;
  display: block;
}
.related-blogs-row .blog-content .blog-info{
  padding: 5px 0;
  color: #e82438;
}
.related-blogs-row .blog-content .blog-info a{
  color: #e82438;
}
.related-blogs-row .blog-content p{
  line-height: 1;
  color: #e82438;
  padding: 0;
}
.related-blogs-row .blog-content p a{
  font-weight: 700;
}

/*****EVENT PAGE 2*****/
.event-page-2 .event-banner img{
  border-radius: 5px;
}
.event-2-top{
  width: 100%;
  margin-bottom: 20px;
}
.event-page-2 .category-tab-wrapper{
  padding-top: 10px;
}
.event-page-2 .category-tab-wrapper .category-row{
  justify-content: flex-start;
}
.top-events-box{
  padding: 15px;
  background: #fff;
  border-radius: 5px;
  box-shadow: 0 2px 4px 0 rgba(0,0,0,.1);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}
.top-events-box a{
  margin: 5px;
  font-size: 16px;
  padding: 10px;
  color: #fff;
  background-color: #e82438;
  text-align: center;
  font-weight: 400;
  border-radius: 5px;
  transition: 300ms ease-in-out;
  cursor: pointer;
  border: solid 1px transparent;
  line-height: 1;
}
/*****SITEMAP PAGE*****/
.sitemap-wrap h1{
  font-size: 24px;
  margin-bottom: 20px;
  color: #2d3e50;
  font-weight: 600;
}
.sitemap-tab-nav{
  width: 100%;
  padding-bottom: 20px;
}
.sitemap-tab-nav ul{
  border: none;
}
.sitemap-tab-nav ul a{
  border: none !important;
  border-radius: 5px !important;
  background: #e82438;
  color: #fff !important;
  line-height: 34px;
  height: 34px;
  min-width: 34px;
  padding: 0 10px;
  color: #fff;
  text-transform: uppercase;
  border-radius: 3px;
  font-size: 14px;
  margin: 4px;
  transition: background 0.3s ease-in-out;
  text-align: center;
}
.sitemap-tab-nav ul a.active{
  background: #2d8e3a !important;
}
.sitemap-tab-nav ul a:hover{
  background: #2d8e3a !important;
}
.sitemap-inner{
  background: #fff;
  border-radius: 5px;
  transition: 0.4s;
  border-left: 3px transparent solid;
  padding: 20px 15px 15px;
}
.sitemap-inner:hover{
  border-left-color: #e82438;
  box-shadow: 0 2px 4px 0 rgba(0,0,0,.1);
}
.sitemap-inner ul{
  list-style-type: none;
  display: grid;
  grid-template-columns: auto auto auto auto;
  grid-gap: 10px;
}
.sitemap-inner ul li.title{
  color: #e82438;
  line-height: 1;
  font-size: 60px;
  font-weight: 600;
  padding: 5px 5px 5px 0;
  grid-row-start: 1;
  grid-row-end: 3;
}
.sitemap-inner ul li a{
  font-size: 14px;
  transition: color 200ms linear;
  color: #6d6e71;
  display: inline-block;
  padding: 5px 5px 5px 0;
}
.sitemap-inner ul li a:hover{
  color: #e82438;
}
/*****CONTACT US PAGE*****/
.contact-page-wrap .container{
  max-width: 960px;
}
.contact-text{
  padding-bottom: 15px;
}
.contact-text p{
 font-size: 15px;
}
.contact-text p a{
  color: #e82438;
}
.contact-text .heading{
  font-size: 25px;
  color: #444;
  font-weight: 600;
  margin-bottom: 15px;
  text-align: center;
  line-height: 1;
}
.contact-main{
  padding-bottom: 30px;
}
.contact-main .form-col{
  padding-top: 10px;
  padding-bottom: 10px;
}
.contact-main .form-col label{
  margin-bottom: 10px;
  font-size: 16px;
}
.contact-main .form-col input{
  width: 100%;
  padding: 10px;
  border: none;
  border-radius: 5px;
  transition: 0.3s;
  font-size: 16px;
  outline: none;
}
.contact-main .form-col input[type=number]::-webkit-inner-spin-button, 
.contact-main .form-col input[type=number]::-webkit-outer-spin-button { 
  -webkit-appearance: none; 
  margin: 0; 
}
.contact-main .form-col input:focus,
.contact-main .form-col textarea:focus {
  box-shadow: 0 2px 4px 0 rgba(0,0,0,.1);
}
.contact-main .form-col textarea{
   width: 100%;
  padding: 10px;
  border: none;
  border-radius: 5px;
  transition: 0.3s;
  font-size: 16px;
  outline: none;
  resize: none;
  height: 150px;
}
.contact-main .form-col .captcha-container{
  max-width: 330px;
  margin: 0 auto
}
.contact-main .form-col button{
  background: linear-gradient(to right,#e82438 15%,#e82438c9 100%);
  position: relative;
  overflow: hidden;
  color: #fff;
  padding: 8px 20px;
  height: 40px;
  text-align: center;
  font-size: 16px;
  font-weight: 400;
  border-radius: 5px;
  transition: 300ms ease-in-out;
  border: none;
  outline: none;
}

/*****TEXT PAGE******/
.text-main p{
  padding-bottom: 20px;
  font-size: 16px;
}
.text-main a{
  font-size: 16px;
  color: #e82438;
}
.text-main .page-heading{
  font-size: 30px;
  padding-bottom: 20px;
  color: #2d3e50;
  font-weight: 600;
}
.text-main .bold{
  font-weight: 700;
  color: #363636;
  line-height: 1;
}
.text-main .heading{
      font-size: 24px;
    font-weight: 600;
    margin-bottom: 10px;
    color: #2d3e50;
    line-height: 1;
}

.privacy-pg-wrap .text-main .heading{
  font-weight: 600;
  color: #2d3e50;
  font-size: 24px;
}
.privacy-pg-wrap .text-main .s-heading,
.privacy-pg-wrap .text-main p span{
  font-weight: 600;
  color: #2d3e50;
  font-size: 18px;
  line-height: 1;
}
.privacy-pg-wrap .text-main .green{
  color: #e82438 !important;
}
.privacy-pg-wrap .text-main ol{
  padding-left: 18px;
}

/*****REVEAL CODE MODAL*****/
#codeModal .modal-dialog{
  max-width: 550px;
}
#codeModal .modal-content{
  background: transparent;
}
#codeModal .modal-body{
  overflow: hidden;
  display: flex;
  flex-wrap: wrap;
  padding: 0;
}
#codeModal .modal-img{
  width: 45%;
  position: relative;
  background: rgba(255,255,255,1);
}
#codeModal .modal-img img{
  position: absolute;
  max-width: 400px;
  top: 50%;
  transform: translateY(-50%);
}
#codeModal .modal-inner{
  text-align: center;
  width: 100%;
  padding: 20px;
  background: #2d3e50;
}
#codeModal .modal-inner p{
  font-size: 14px;
  margin: 0;
  color: #fff;
}
#codeModal .modal-inner a{
  font-size: 14px;
  margin: 0;
  color: #e82438;
}
#codeModal .modal-inner .title{
  color: #fff;
  font-size: 20px;
  line-height: 1;
  margin: 0;
  font-weight: 600;
  padding-bottom: 30px;
}
#codeModal .modal-header {
  position: relative;
  padding: 0;
  border: none;
}
#codeModal .modal-header button{
  position: absolute;
  top: 0;
  right: 0;
  width: 30px;
  height: 30px;
  color: #fff;
  font-size: 24px;
  font-weight: 300;
  line-height: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 1;
  background: #e82438;
  padding: 0;
  border-radius: 50px;
  z-index: 1;
  outline: none;
}
#codeModal .brand-img {
  margin: 0 auto 30px auto;
  border: solid 1px #dadada;
  width: 100px;
  height: 100px;
  padding: 10px;
  border-radius: 3px;
  background: #fff;
}
#codeModal .code input{
  margin: 20px auto;
  border: 2px dashed #1fc79c;
  outline: none;
  border-radius: 5px;
  height: 45px;
  text-align: center;
  font-size: 20px;
  font-weight: 700;
  display: block;
  width: 100%
}
#codeModal .code a{
  display: inline-block;
  padding: 10px 30px;
  text-align: center;
  font-size: 16px;
  font-weight: 400;
  border-radius: 5px;
  background: linear-gradient(to right,#e82438 15%,#e82438c9 100%);
  color: #fff;
}
#codeModal .confirmation form{
  display: flex;
  justify-content: center;
  align-items: center;
  padding-top: 20px;
}
#codeModal .switch-wrap{
  position: relative;
  width: 150px;
  height: 50px;
  text-align: center;
  background: #52d964;
  transition: all .2s ease;
  border-radius: 25px;
  margin-left: 20px;
  justify-content: space-between;
  overflow: hidden;
}
#codeModal .confirmation input{
  display: none;
}
#codeModal .switch-wrap label{
  cursor: pointer;
  color: #fff;
  width: 60px;
  line-height: 50px;
  transition: all .2s ease;
  margin: 0;
}
#codeModal .switch-wrap label:hover{
  transform: scale(1.3);
  color: #ef3e24;
}
#codeModal .switch-wrap span{
  position: absolute;
  background: #fff;
  display: block;
  transition: all .2s ease;
  border-radius: 2px;
  width: 20px;
  height: 4px;
  top: 50%;
  left: 73px;
  margin: -2px 0 0 -4px;
  transform: rotate(-45deg);
}
#codeModal .switch-wrap span:after{
  position: absolute;
  background: #fff;
  display: block;
  transition: all .2s ease;
  border-radius: 2px;
  content: "";
  width: 4px;
  height: 12px;
  margin-top: -8px;
}
#codeModal .confirmation #no:checked~.switch-wrap{
  background: #393939;
}
#codeModal .confirmation #no:checked~.switch-wrap span{
  left: 69px;
}
#codeModal .confirmation #no:checked~.switch-wrap span:after {
  background: #fff;
  height: 20px;
  margin-top: -8px;
  margin-left: 8px;
  width: 4px;
  display: block;
  transition: all .2s ease;
  border-radius: 2px;
}


/*****NEW CSS*****/
.nveMenu {
  width: 0px;
}
.nveMenu.is-opened {
  width: 280px;
}
.overlay {
  width: 0;
}
.overlay.is-on {
  width: calc(100% - 280px);
}
.form-toggle{
    width: 40px;
    height: 40px;
    display: none;
    justify-content: center;
    align-items: center;
    color: #fff;
    background: transparent;
    font-size: 18px;
    position: absolute;
    top: -42px;
    left: 15px;
    margin: 0;
    cursor: pointer;
}
.form-toggle span{
    position: relative;
    width: 40px;
    height: 40px;
}
.form-toggle span::before{
    content: '';
    position: absolute;
    top: 10px;
    left: 10px;
    width: 20px;
    height: 20px;
    background: transparent;
    border: 3px solid #fff;
    border-radius: 100%;
    transition: transform 0.35s;
}
.form-toggle span::after{
    content: '';
    position: absolute;
    top: 27px;
    right: 6px;
    width: 8px;
    height: 3px;
    background: #fff;
    transform: rotate(45deg);
    transition: transform 0.35s;
    border-radius: 25px;
}
.form-toggle.form-opened span::before{
    border: none;
    border-radius: 0%;
    transform: rotate(45deg) translate(2px,5px);
    top: 14px;
    left: 12px;
    width: 20px;
    height: 2px;
    background: #fff;
}
.form-toggle.form-opened span::after{
    top: 24px;
    right: 8px;
    transform: rotate(-45deg) translate(2px,-5px);
    width: 20px;
    height: 2px;
}
.header-search form{
    display: block;
}
@media only screen and (max-width:575px){
    .header-search form{
        display: none;
    }
    .form-toggle{
        display: flex;
    }
    .logo-wrapper{
        text-align: center !important;
        padding-bottom: 0 !important;
    }
    .breadcrumb{
        display: none;
    }
    .main-navigation{
        display: none;
    }
    .main-navigation.nveMenu{
        display: block;
    }
    .logo-wrapper {
        text-align: center;
    }
    .index-sec-2 .sec-heading,
    .index-sec-4 .sec-heading{
        padding-bottom: 20px;
        font-size: 22px;
    }
    .top-discount-wrap h1{
        font-size: 22px;
    }
    .header-search form{
        max-width: 350px;
        margin: 10px auto 0 auto;
        display: none;
    }
}


/*SCROLL TO TOP*/
.scrolltop{
    width: 40px;
    height: 40px;
    display: none;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    color: #fff;
    background: #e82438;
    position: fixed;
    right: 15px;
    bottom: 15px;
    box-shadow: 0 0px 6px 0 rgba(0,0,0,.5);
    cursor: pointer;
}
.scrolltop i{
    font-size: 18px;
}
/*TERMS DROPDOWN*/
.code-box-footer{
    width: calc(100% + 30px);
    padding: 0px 15px;
    border-top: 1px solid #cfd0cf;
    position: relative;
    min-height: 28px;
    margin: 10px -15px -15px -15px;
}
.code-box-footer .added{
  position: absolute;
  right: 16px;
  top: 5px;
  font-size: 10px;
  font-weight: 500;
  color: #a0a19f;
}
.code-box-footer .added a{
  color: #e82438;
}
.code-box-footer .card{
  border: none;
}
.code-box-footer .term-heading {
  position: relative;
  padding: 5px 0;
  cursor: pointer;
}
.code-box-footer .term-heading.active p:before{
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  background: #de3c27;
  width: 100%;
  height: 1px;
}
.code-box-footer .term-heading p{
  font-size: 12px;
  font-weight: 500;
  width: 100%;
  color: #a0a19f;
  width: fit-content;
  width: -moz-fit-content; 
  cursor: pointer;
  position: relative;
}
.code-box-footer .term-heading p i{
  padding-left: 5px;
  font-size: 10px;
}
.code-box-footer .term-content{
  font-size: 12px;
  width: 100%;
  color: #202120;
}
.code-box-footer .term-content ol{
  padding: 5px 0 5px 20px;
  margin: 0;
}
.code-box-footer .term-content ol li{
  padding: 2px 0;
  line-height: 1.2;
}
.code-box-footer .term-content ol li a{
  color: #40b77c;
}
.category-info .filter-box{
    padding: 30px 15px 10px 15px;
    position: relative;
    background: #fff;
    border-radius: 5px;
    box-shadow: 0 2px 4px 0 rgba(0,0,0,.1);
    display: flex;
    flex-wrap: wrap;
    width: 100%;
}
.category-info .filter-box:before{
    content: 'Filter By';
    position: absolute;
    top: 5px;
    left: 15px;
    font-size: 16px;
    font-weight: 600;
    color: #000;
}
.category-info .filter-box .filter-group{
    width: 33.33%;
}
.category-info .filter-box .filter-group p{
    color: #de3c27;
    display: block !important;
    font-weight: 500;
}
.category-desc-wrap .category-desc{
    width: 100%;    
}

/*test*/

.newsletter-right h1,
.newsletter-right h2,
.newsletter-right h3,
.newsletter-right h4,
.newsletter-right h5,
.newsletter-right h6
{
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 10px;
    color: #2d3e50;
    line-height: 1;
}


.about-category h1,
.about-category h2,
.about-category h3,
.about-category h4,
.about-category h5,
.about-category h6
{
    font-size: 20px;
    font-weight: 500;
    margin-bottom: 10px;
    color: #2d3e50;
    line-height: 1;
}


.about-travel-box h1,
.about-travel-box h2,
.about-travel-box h3,
.about-travel-box h4,
.about-travel-box h5,
.about-travel-box h6
{
    font-size: 20px;
    color: #2d3e50;
    font-weight: 600;
    padding-bottom: 20px;
    line-height: 1;
}
