/*
Theme Name: Coupons Deals Pro
Description: Adds support for languages written in a Right To Left (RTL) direction.
It's easy, just a matter of overwriting all the horizontal positioning attributes
of your CSS stylesheet in a separate stylesheet file named rtl.css.

See: https://codex.wordpress.org/Right_to_Left_Language_Support
*/
/* Basic Style */
:root {
  --color-black: #000;
  --color-white: #fff;
  --color-yellow: #e9a229;
  --color-sky-blue: #37a0e8;
}
:root {
  --font-poppins: "Poppins";
  --font-Josefin: "Josefin Sans";
}
*{
  margin:0; 
  padding:0; 
  outline:none;
}
html body{
  margin:0; 
  padding:0; 
  -ms-word-wrap:break-word; 
  word-wrap:break-word; 
  background-color:#fff; 
  position:relative; 
  font-size: 14px;
  color: #6c6c6c;
  font-family: var(--font-Josefin);
  font-weight: 300;
  overflow-x: hidden;
}
body a {
  text-decoration: none;
  color: var(--color-white);
}
img{
  width: 100%;
}
section {
  background-size: 100% 100%;
  background-repeat: no-repeat;
  padding: 60px 0;
}
h6{
  font: 500 20px/26px var(--font-Josefin);
}
h2{
  font: 600 32px/45px var(--font-Josefin);
}
p{
  font: 400 13px/22px var(--font-Josefin);
}
.nav-tabs,.nav-tabs .nav-item.show .nav-link, .nav-tabs .nav-link.active, .nav-tabs .nav-link{
  border: none;
}
ul li{
  text-decoration: none;
  list-style: none;
}
ol, ul{
  padding-right: 0;
}
textarea {
    padding: 5px;
}
.theme_button{
  border-radius: 5px;
  background: var(--color-yellow);
  font: 600 14px/30px var(--font-poppins);
  border: none;
  transition: ease 0.25s all;
  transition-duration: 1s;
  color: var(--color-white);
  transform: translateX(0px);
}
.theme_button i{
  transform: translateX(4px);
  opacity: 0;
  transition-duration: 1.5s;
  display: none;
}
.theme_button:hover i{
  transform: translateX(-8px);
  opacity: 1;
  display: inline-block;
}
.theme_button:hover{
  transform: translateX(0px);
  opacity: 1;
  letter-spacing: 1.2px;
  background-color: var(--color-sky-blue);
  color: var(--color-white);
}
.btn:focus{
  outline: none;
  box-shadow: none !important;
}
.modal-backdrop{
      background: unset!important;
    top: unset!important;
    opacity: 1!important;
    right: unset!important;
}

.bwt-scroll{
  background-attachment: scroll;
}
.bwt-fixed{
  background-attachment: fixed;
}
[type=search]{
    width: 100%;
}

/*--------------Owl Carousel-----------------*/
.owl-carousel button.owl-dot.active{
    width: 10px;
    height: 10px;
    border-radius: 55px;
    background-color: var(--color-sky-blue) !important;
    border: 2px solid #FFF !important;
    box-shadow: 0px 0px 0px 0.5px var(--color-sky-blue);
        background-image: repeating-linear-gradient(
-25deg, #00c4f5, #00c4f5 13px, transparent 13px, transparent 22px, #00c4f5 22px), repeating-linear-gradient(
-115deg, #00c4f5, #00c4f5 13px, transparent 13px, transparent 22px, #00c4f5 22px), repeating-linear-gradient(
-205deg, #00c4f5, #00c4f5 13px, transparent 13px, transparent 22px, #00c4f5 22px), repeating-linear-gradient(
-295deg, #00c4f5, #00c4f5 13px, transparent 13px, transparent 22px, #00c4f5 22px);
    background-size: 3px 100%, 100% 3px, 3px 100% , 100% 3px;
    background-position: 12px 13px, 9px 14px, 0% 18px, 8px 100%;
    background-repeat: no-repeat;

}
.owl-carousel button.owl-dot{
  width: 8px;
  height: 8px;
  border-radius: 9px;
  background-color: var(--color-yellow) !important;
  border: 1px solid var(--color-yellow) !important;
  margin: 0 12px;
}
/*--------------- Comments ---------------------*/
.comments-rating {
  border: none;
  padding: 0;
  margin-right: 0;
}
.comments-rating label {
  display: inline-block;
}
.rating-container {
  font-size: 0;
  unicode-bidi: bidi-override;
  direction: ltr;
}
.rating-container * {
  font-size: 1.4rem;
}
.rating-container > input {
  display: none;
}
.rating-container > input + label {
  font-family: 'dashicons';
  display: inline-block;
  overflow: hidden;
  text-indent: 9999px;
  width: 1em;
  white-space: nowrap;
  cursor: pointer;
  margin: 0;
}
.rating-container > input + label:before {
  display: inline-block;
  text-indent: -9999px;
  content: "\f154";
  color: #888;
}
.rating-container > input:checked ~ label:before,
.rating-container > input + label:hover ~ label:before,
.rating-container > input + label:hover:before {
  content: "\f155";
  color: var(--color-yellow);
  text-shadow: 0 0 1px #333;
}
.rating-container > .star-cb-clear + label {
  text-indent: -9999px;
  width: .5em;
  margin-right: -.5em;
}
.rating-container > .star-cb-clear + label:before {
  width: .5em;
}
.rating-container:hover > input + label:before {
  content: "\f154";
  color: var(--color-yellow);
  text-shadow: none;
}
.rating-container:hover > input + label:hover ~ label:before,
.rating-container:hover > input + label:hover:before {
  content: "\f155";
  color: var(--color-yellow);
  text-shadow: 0 0 1px #333;
}
.comment-respond .rating-container > .star-cb-clear + label, .comment-respond .rating-container > input + label:before {
  text-indent: 9999px;
}
.comment-respond .rating-container > input + label {
  text-indent: -9999px;
}
.dashicons-star-filled:before{
  color: var(--color-yellow);
}
.dashicons, .dashicons-before:before{
  font-size: 16px;
}
/*-------------------Loader--------------------*/
.background span {
   width: 8vmin;
   height: 8vmin;
   border-radius: 4vmin;
   backface-visibility: hidden;
   position: absolute;
   animation-name: move;
   animation-timing-function: cubic-bezier(0.4, 0, 1, 0.8);
   animation-iteration-count: infinite;
   animation-duration: 3s;
   top: calc(50% - 4vmin);
   right: 50%;
   transform-origin: -4vmin center;
}
 .background span:nth-child(1) {
   background: var(--color-white);
   animation-delay: -0.5s;
   opacity: 0;
}
 .background span:nth-child(2) {
   background: var(--color-white);
   animation-delay: -1s;
   opacity: 0;
}
 .background span:nth-child(3) {
   background: var(--color-white);
   animation-delay: -1.5s;
   opacity: 0;
}
 .background span:nth-child(4) {
   background: var(--color-white);
   animation-delay: -2s;
   opacity: 0;
}
 .background span:nth-child(5) {
   background: var(--color-white);
   animation-delay: -2.5s;
   opacity: 0;
}
 .background span:nth-child(6) {
   background: var(--color-white);
   animation-delay: -3s;
   opacity: 0;
}
 @keyframes move {
   0% {
     transform: scale(1) rotate(0deg) translate3d(0, 0, 1px);
  }
   30% {
     opacity: 1;
  }
   100% {
     z-index: 10;
     transform: scale(0) rotate(-360deg) translate3d(0, 0, 1px);
  }
}
.bwt-travel-loading-box
{
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: var(--color-sky-blue);
  z-index: 2;
  cursor: pointer;
  z-index: 9999;
}

/*----------------Header  menu----------------------*/
.close-icon {
    display: block;
    position: relative;
    width: 30px;
    height: 30px;
    -webkit-transform: rotateZ(
-45deg);
    transform: rotateZ(
-45deg);
}
.close-icon:after, .close-icon:before {
    display: block;
    position: absolute;
    background-color: var(--wolmart-light-color,#ccc);
    content: "";
}
.close-icon:before {
    height: 2px;
    width: 100%;
    right: 0;
    top: calc(50% - 1px);
}
.close-icon:after {
    height: 100%;
    width: 2px;
    top: 0;
    right: calc(50% - 1px);
}
blockquote {
  font-size: 18px;
  font-style: italic;
  max-width: 100%;
  padding: 1.25em 40px 0.3em;
  line-height: 1.45;
  position: relative;
  color: #0f0f0f;
  border-bottom: 8px solid #28477d;
  background: #EDEDED;
  background:#EDEDED;
    -webkit-box-shadow: 0px 4px 13px -7px #000000, -5px 5px 15px 5px rgba(0,0,0,0); 
  box-shadow: 0px 4px 13px -7px #000000, -5px 5px 15px 5px rgba(0,0,0,0);
}
blockquote::before{
  font-size: 88px;
  font-family: Arial;
  content: "\201C";
  color: #28477d;
  position: absolute;
  right: 7px;
  top: -28px;
}
blockquote cite {
  color: #999999;
  font-size: 14px;
  display: block;
  margin-top: 5px;
}
blockquote cite:before {
  content: "\2014 \2009";
}
#accordion .accordion-button:not(.collapsed)::after {
    background-image: url("assets/images/accordion.png") !important;
    transform: rotate(180deg);
}
#accordion .accordion-button::after {
    flex-shrink: 0;
    width: 1.25rem;
    height: 1.25rem;
    margin-right: auto;
    content: "";
    background-image: url("assets/images/accordiono.png") !important;
    background-repeat: no-repeat;
    background-size: 1.25rem;
    transition: transform .2s ease-in-out;
}:root {
  --color-black: #000;
  --color-white: #fff;
  --color-black-russian: #0d0d0f;
  --color-yellow: #e9a229;
  --color-sky-blue: #37a0e8;
  --color-border : #a1a1a1;
  --color-text-black: #363638;
  --color-black-eclipse: #403f3f;
}
:root {
  --font-poppins: "Poppins";
  --font-Josefin: "Josefin Sans";
}

#slider .carousel-caption{
  right: 0%;
  left: 0%;
  top: 28%;
}
#slider .carousel-control-next, .carousel-control-prev{
  width: 0%;
  opacity: 1;
}
#slider .carousel-control-prev{
  opacity: 0;
  -webkit-transform: translateX(1px);
  transform: translateX(1px);
  transition-duration: 1s;
}
#slider .carousel-control-next{
  opacity: 0;
  -webkit-transform: translateX(-1px);
  transform: translateX(-1px);
  transition-duration: 1s;
}
#slider #carouselExampleIndicators:hover .carousel-control-prev,
#slider #carouselExampleIndicators:hover .carousel-control-next{
  transform: translateX(0px);
  opacity: 1;
}
#slider .carousel-control-next i{
  color: var(--color-yellow);
}
#slider .slider-icon{ 
  color: #000;
  background: #fff;
  font-size: 14px;
  box-shadow: -2px 1px 4px 1px #dcdcdc;
  padding: 12px 15px;
}
#slider .slider-inside-image{
  border: 2px dashed #fff;
  border-radius: 26px;
}
#slider .slidemidheading{
  font: 600 48px/55px var(--font-poppins);
  letter-spacing: 0px;
  color: var(--color-black);
}
.slider-video-text{
  font-weight: 400;
}
#slider p{
  font: 400 22px/50px var(--font-poppins);
  color: var(--color-black);
}
#slider .carousel-indicators{
  margin-bottom: 30%;
}
.carousel-indicators button{
  height: 12px !important;
  width: 12px !important;
  border-radius: 50px;
  border: none !important;
  background: #fff;
  opacity: 1 !important;
  margin: 0px 10px !important;
}
#slider .carousel-indicators .active{
  width: 50px !important;
}
#slider .theme_button{
  border-radius: 50px;
  background: transparent;
  font: 600 12px/20px var(--font-poppins);
  border: none;
  transition: ease 0.25s all;
  transition-duration: 1s;
  color: var(--color-black);
}
#slider .banner-btn{
  color: var(--color-white);
  background-color: #000;
  border-radius: 6px;
}
#slider .theme_button i{
  font-size: 12px;
}
.slider-banner{
  background-size: cover;
}
.slider-banner-text h3{
  color: var(--color-black);
  font: 400 22px/36px var(--font-poppins);
}
.slider-banner-info img{
  width: auto;
}
/*--------------Comman Css---------*/
.section-main-title{
  font: 700 40px/30px var(--font-Josefin);
  color: var(--color-black-russian);
}
.section-small-title{
  font: 300 16px/30px var(--font-poppins);
  color: var(--color-black-russian);
}
.feature-store-text{
  font: 700 18px/30px var(--font-poppins);
  color: var(--color-white);
}
.section-title a{
  font: 700 20px/27px var(--font-Josefin);
  color: var(--color-black);
  letter-spacing: 1px;
}
.section-text{
  font: 300 13px/25px var(--font-poppins);
  color: var(--color-text-black);
}
#upcoming-sales .upcoming-sale-date{
  font: 600 18px/17px var(--font-Josefin);
}
.upcoming-sale-text{
  font: 300 12px/17px var(--font-poppins);
  color: var(--color-black-eclipse);
}
#upcoming-sales .upcoming-sale-date{
  color: var(--color-white);
}
#feature-stores .owl-item.active.center .feature-store-box-title,
#upcoming-sales .owl-item.active.center .upcoming-sale-date{
  background-color: var(--color-yellow);
}
#upcoming-sales .upcoming-sale-date,.feature-store-box-title{
  background-color: var(--color-sky-blue);
}
/*--------------- Top category ---------*/
#top_category ul{
  filter: drop-shadow(0px 3px 47.5px rgba(0,0,0,0.1));
  background-color: #ffffff;
  border-radius: 10px;
}
.category-tab-title{
  font-size: 22px;
  font-family: var(--font-Josefin);
  font-weight: 600;
  letter-spacing: 2px;
  line-height: 11px;
  color: #ffffff;
  background: var(--color-sky-blue);
  border-top-right-radius: 10px;
  border-top-left-radius: 10px;
}
#top_category .tab-title ul li .nav-link-span{
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 1px;
  line-height: 35px;
  color: #9d9d9d;
  font-family: 'Poppins';
}
#top_category .tab-title ul .nav-link.active span{
  color: #000;
}
#top_category .tab-title ul .nav-link.active{
  background-color: #37a0e861;
}
#top_category .tab-title ul .nav-link{
  padding: 14px 0px;
}
#top_category .tab-title ul{
  padding-bottom: 10px;
}
#top_category .inner-box3{
  margin-top: 8.2%;
}
#top_category .box img{
      object-fit: cover;
}
/*#top_category .tab-content .row{
  flex-direction: row-reverse;
}*/
#top_category .box .top-cat-title{
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    text-align: center;
    margin: 0 auto;
    display: block;
}
#top_category .box .top-cat-title span{
  background-color: #e9a229;
    color: #fff;
    font-size: 18px;
    letter-spacing: 1px;
    font-weight: 700;
    font-family: "Josefin Sans";
    text-align: center;
    position: relative;
    padding-top: 20px;
}
#top_category .category-box-1 .box .top-cat-title{
  right: 10%;
  left: auto;
}
#top_category .top-cat-title a:hover{
  color: var(--color-white);
}
#top_category .box .top-cat-title span:before{
  position: absolute;
  border-bottom: 16px solid #e9a229;
  border-right: 20px solid transparent;
  border-left: 20px solid transparent;
  right: -13%;
  left: 0;
  content: '';
  display: block;
  width: 126%;
  top: 0;
}
/*----------------Feature store-----------------------*/
.feature-store-box{
  border: 1px solid var(--color-border);
}
.feature-store-box,.feature-store-box img{
  border-radius: 20px;
}
.feature-store-box-title{
  border-bottom-right-radius: 20px;
  border-bottom-left-radius: 20px;
}
/*--------------Upcoming Sale------------*/
#upcoming-sales .owl-dots{
  display: block;
  text-align: center;
}
#upcoming-sales .upcoming-sale-date{
  letter-spacing: 1px;
  display: inline-block;
  padding: 8px 5px 8px;
  max-width: 59px;
  right: 0px;
  top: 0px;
  position: absolute;
  border-top-right-radius: 14px;
  border-bottom-left-radius: 14px;
  z-index: 999;
}
.upcoming-sale-content{
  border-radius: 15px;
  filter: drop-shadow(0 0 16px rgba(30,30,31,0.18));
  background-color: #ffffff;
  /*transform: translateY(-50%);*/
  top: -65px;
}
/*-----------------_popular Store---------------------*/
.popular-stores .section-main-title:after{
/*  position: absolute;
  content: "";
  top: 25%;
  width: 20em;
  margin-left: 5%;
  border-bottom: 1px solid #9a9a9a;*/
}
.popular-stores hr{
  color: #9a9a9a;
  height: 2px;
}
#popular-stores .owl-nav{
  display: block;
}
#popular-stores .owl-prev{
  display: none;
}
#popular-stores .owl-next{
  left: -2%;
}
#popular-stores .owl-nav i{
  box-shadow: -2px 1px 4px 1px rgb(30 30 31 / 18%);
}
#popular-stores img{
  border: 1px solid #ccc;
}
/*----------Partner Brand----------------------*/
.partner-box{
  border-bottom: 2px solid #ededed;
  border-left: 2px solid #ededed;
}
.partner-box:nth-child(4),.partner-box:nth-child(8){
  border-left: none ;
}
.partner-box:nth-child(5),.partner-box:nth-child(6),.partner-box:nth-child(7),.partner-box:nth-child(8){
  border-bottom: none ;
}
/*---------------------Coupon Banner-----------------------*/
#coupon-banner .section-main-title{
  line-height: 45px;
  width: 80%;
}
#coupon-banner{
  border-radius: 20px;
}
#coupon-banner .theme_button{
  font-size: 16px;
  font-weight: 400;
}
.coupon-banner-img img{
  height: 240px;
}
/*---------------Latest Blog----------------------*/
#latest-blog .owl-item.active.center .latest-news-content-image{
  flex-direction: column-reverse;
}
#latest-blog img{
  border-radius: 10px;
}
#latest-blog .owl-dots,#featured-coupon .owl-dots{
  text-align: center;
}
.social_share .fa-share-alt{

}
.social_share a i{
  background-color: #e9a229;
  padding: 8px;
  border-radius: 5px;
  color: #fff;
  width: 30px;
  height: 30px;
  font-size: 14px;
}
#socialShare {
  width: 100%;
  text-align: center;
  position: relative;
}
#socialShare > .socialBox {
  color: #fff;
  font-size: 20px;
  padding: 5px;
  background-color: transparent;
  width: 40px;
  height: 40px;
  line-height: 40px;
  text-align: center;
  border-radius: 50%;
}

#socialShare > * > span {
  background-color: rgba(0, 0, 0, 0.6);
  display: block;
  color: #fff;
  font-size: 13px;
  padding: 3px 0px;
  width: 27px;
  height: 27px;
  line-height: 24px;
  text-align: center;
  border-radius: 50%;
  -webkit-transform: scale(1);
  -moz-transform: scale(1);
  transform: scale(1);
  -webkit-transition: all .35s ease-in-out;
  -moz-transition: all .35s ease-in-out;
  transition: all .35s ease-in-out;
  background-color: #e9a229;
  padding: 3px;
  border-radius: 5px;
  color: #000;
  width: 30px;
  height: 30px;
  font-size: 14px;
  transition-duration: 2s;
}
#socialShare > * > span:hover,
#socialShare > .open > span {
  -webkit-transform: scale(1.05);
  -moz-transform: scale(1.05);
  transform: scale(1.05);
  -webkit-transition: all 1s ease-in-out;
  -moz-transition: all 1s ease-in-out;
  transition: all 1s ease-in-out;
}
#socialGallery {
  position: absolute;
  top: -4px;
  visibility: hidden;
  display: inline-block;
  right: -5px;
}
#socialGallery a {
visibility: hidden;
    opacity: 0;
    margin: 2px 2px;
    position: relative;
    top: 10px;
    padding: 0;
    display: inline-flex;
}
#socialGallery a > span {
  position: relative;
  top: 4px;
  right: 4px;
  border-radius: 50%;
  -moz-border-radius: 50%;
  -webkit-border-radius: 50%;
}
.socialToolBox {
  cursor: default;
}
.pointer {
  cursor: pointer
}
.blog_share_icon {
  display: inline-block;
}
.news-button{
  font: 700 14px/17px var(--font-poppins);
  letter-spacing: 0px;
  color: var(--color-white);
  background-color: #e9a229;
  border-radius: 5px;
  padding: 10px;
  position: relative;
  top: 6px;
  right: 10px;
}
.latest-news-name a{
  font-size: 26px;
  letter-spacing: 1px;
  line-height: 30px;
  color: #000000;
  font-weight: 700;
  font-family: "Josefin Sans";
}
.latest-news-text{
    font-size: 15px;
    letter-spacing: 1px;
    line-height: 22px;
    color: #494747;
    font-weight: 500;
    font-family: "Poppins";
}
.latest-blog-date,.news-comments{
  font: 500 16px/20px var(--font-poppins);
  color: #494747;
}
.latest-blog-date i,.news-comments i{
  color: var(--color-sky-blue);
}
.latest-news-content{
  margin-top: 2%;
}
#latest-blog .owl-item.active.center .latest-news-content{
  margin-top: 0;
}
/*-------------------featured Coupon----------------------*/
.featured-coupon-content{
  filter: drop-shadow(0 0 16px rgba(30,30,31,0.18));
  background-color: var(--color-white);
}
.featured-coupon-btn{
  color: #444;
  background: var(--color-sky-blue);
  position: relative;padding: 9px 0;
}
.featured-coupon-main-btn i{
    padding: 12px 12px;
    font-size: 15px;
    background: var(--color-yellow);
    color: var(--color-white);
    margin-left: -5px;
}
.featured-coupon-date{
  font-size: 12px;
    letter-spacing: 1px;
    line-height: 23px;
    color: #f01818;
    font-weight: 500;
    font-family: "Poppins";
}
.featured-coupon-date span{
  color: var(--color-black);
}
#featured-coupon .owl-item.active.center .featured-coupon-btn span:first-child{
  padding: 8px 12px 7px 22px;
  left: 0px;
  position: relative;
}
#featured-coupon .owl-item.active.center .coupon-button-type .coupon-deal,
 .coupon-button-type .coupon-print,#featured-coupon .owl-item.active.center .coupon-button-type .coupon-code {
    line-height: 1;
    padding: 14px 38px;
    background: var(--color-sky-blue);
    color: #FFFFFF;
    font-size: 16px;
    font-weight: 600;
    display: inline-block;
    letter-spacing: 1px;
    margin-bottom: 2px;
    min-width: 125px;
    text-align: center;
}
#featured-coupon .owl-item.active.center .coupon-button-type .coupon-code {
    color: #000;
    text-align: left;
    padding: 13px 7px 10px;
    position: relative;
    background-color: #dfdddd;
}
#featured-coupon .owl-item.active.center .coupon-button-type .coupon-code .get-code {
  position: absolute;
  right: 0px;
  top: 0px;
  background: var(--color-sky-blue);
  color: #FFFFFF;
  font-size: 13px;
  padding: 13px 8px 13px 20px;
  transition: all 0.5s ease;
  font-family: 'Poppins';
  font-weight: 600;
  clip-path: polygon(0 0, 80% 0, 100% 100%, 0 100%);
}
#featured-coupon .owl-item.active.center .coupon-button-type .coupon-code .get-code:hover {
  padding-left: 11px;
  transition: all 0.5s ease;
}
#featured-coupon .owl-item.active.center .featured-coupon-main-btn span:first-child{
  display: block;
}
.featured-coupon-main-btn span:first-child{
  display: none;
}
#featured-coupon .owl-item .get-code{
  background: var(--color-sky-blue);
  color: #FFFFFF;
  font-size: 13px;
  padding: 11px 10px 9px 15px;
  transition: all 0.5s ease;
  font-family: 'Poppins';
  font-weight: 600;
}
.featured-brand-img{
  position: absolute;
  width: auto !important;
  padding: 14px 20px;
  background: #fff;
  border-bottom-right-radius: 20px;
  border-bottom-left-radius: 20px;
  right: 5%;
}
#featured-coupon .owl-dots{
  display: block;
  margin: 20px auto 10px;
}
:root {

}
:root {
  --font-poppins: "Poppins";
  --font-Josefin: "Josefin Sans";
}
@media screen and (max-width: 2000px){
  .logo{
    text-align: end;
  }
  .logo img{
    width: auto;
  }
  .main-navigation li{
    padding-bottom: 28px;
  }
}

@media screen and (max-width: 1399px){
  .section-title a{
    font: 700 17px/22px var(--font-Josefin)
  }
  .upcoming-sale-text{
    font: 300 10px/17px var(--font-poppins);
  }
  #upcoming-sales .upcoming-sale-date{
    font: 600 16px/17px var(--font-Josefin);
  }
  .popular-stores .section-main-title:after{
    width: 11.5em;
  }
  .logo img{
    width: 100%;
  }
}
@media screen and (max-width: 1199px){
  .section-title a{
    font: 700 18px/22px var(--font-Josefin);
  }
  #upcoming-sales .upcoming-sale-date{
    max-width: 50px;
  }
  .page-template-blog-fullwidth-extend #socialGallery{
    right: -50px;
  }
  #latest-blog #socialGallery{
    right: 20px;
  }
  .blog-lr-post #socialGallery{
    right: 5px;
  }
  .store-right-post-block .offer-text{
    font: 600 18px/30px var(--font-Josefin);
  }
  .coupon-title{
    font: 600 20px/30px var(--font-Josefin);
  }
}
@media screen and (max-width: 1024px) {
  .toggle-nav {
    display: block;
    text-align: left;
  }
  .toggle-nav i {
    font-size: 29px;
    color: #000000 ;
  }
  .sidenav .close-sidebar {
    position: absolute;
    top: -27px;
    right: 5.5em;
    font-size: 36px;
    display: block;
    color: #ffffff;
    cursor: pointer;
  }
  .toggle-nav i{
    margin-top: 5px;
    padding-right: 10px;
  }
  .sticky.stickynavbar .toggle-nav i{
    padding-right: 45px;
  }
  .header-box{
    padding: 14px 0;
  }
  .main-navigation ul li>ul {
    display: none;
    position: relative;
    top: 0;
    right: 0;
  }
  #sidebar1 .main-navigation ul .menu-item-has-children:before{
    color: #888;
      position: absolute;
      left: 16%;
      top: 26%;
      font-weight: 600;
      font-size: 0.7rem;
      font-family: "Font Awesome 5 Free";
      content: "\f054";
      right: auto;
      animation: none;
  }
  #sidebar1 .main-navigation ul .menu-item-has-children:hover :after{
    animation: none;
  }
  #sidebar1 .main-navigation ul li.menu-item-has-children li a:after{
    content: none;
  }
  .main-navigation ul li a,a:not([href]):not([class]), a:not([href]):not([class]):hover{
    color: #fff;
  }
  .main-navigation ul li:hover > ul{
    display: none;
  }
  .main-navigation ul li ul li ul {
    position: unset;
  }
  .headerbar {
    display: block !important;
    margin: 0;
  }
  .main-navigation ul ul li a {
    padding-right: 30px;
  }
  .main-navigation ul ul li {
    padding: 0px 12px 5px 12px;
  }
  .main-navigation ul li.current_page_item:after,.main-navigation ul li a:hover:after {
    display: none;
  }
  .main-header .main-navigation,#slider .icon_img img {
    display: none
  }
  .main-navigation,.main-navigation li {
    padding: 0;
    display: block;
    width: 250px;
    animation: menuli 1s 1;
    border-bottom: 1px solid #333;
    margin-right: 20px;
  }
  .main-navigation{
    margin-top: 15% !important;
  }
  .main-navigation ul li a {
    padding: 16px 0px 16px 6px;
    display: block;
    font-weight: 400;
    background: 100% 0!important;
    text-align: right;
    margin: 0;
    font-size: 12px;
  }
  .main-navigation ul li ul a{
      font-size: 13px;
      font-weight: 600;
  }
  .main-navigation ul li.menu-item-has-children:after{
    content: none;
  }
  .main-navigation .current_page_item a:before, .main-navigation .current-menu-item a:before{
    right: 22px !important;
  }
  #sidebar1 {
    height: 100%;
    width: 0;
    position: fixed !important;
    z-index: 9999999;
    top: 0;
    right: 0;
    background-color: #fff;
    overflow-x: hidden;
    transition: all 4s ease;
    padding-top: 45px !important;
    box-shadow: -4px 2px 12px 1px #ccc;
      background: #222;
      -webkit-box-shadow: -1px 0 5px rgb(0 0 0 / 50%);
      box-shadow: -1px 0 5px rgb(0 0 0 / 50%);
     /* -webkit-transform: translateX(-296px);
      transform: translateX(-296px);
      -webkit-transition: -webkit-transform 0.4s;
      transition: -webkit-transform 0.4s;
      transition: transform 0.4s;
      transition: transform 0.4s,-webkit-transform 0.4s;*/
      transition-duration: 1s;
      animation: slideInLeftMenu 1s;
  }
  @keyframes slideInLeftMenu {
    0% {
      opacity: 0;
      -webkit-transform: translateX(296px);
      -ms-transform: translateX(296px);
      transform: translateX(296px);
    }

    100% {
      -webkit-transform: translateX(0px);
      -ms-transform: translateX(0px);
      transform: translateX(0px);
    }
  }
  .main-navigation ul li a:before{
    content: none;
  }
  #close_nav i{
    color: #000;
  }
  .main-navigation ul ul,.main-navigation ul ul li {
    background: transparent !important;
  }
  .main-navigation ul ul li {
    display: block;
    padding-right: 1px;
    border-bottom: none;
  }
  .main-navigation ul ul ul li {
    padding-right: 15px;
  }
  .main-navigation ul ul{
    border: none !important;
  }
  .main-navigation, .main-navigation li{
    animation: none;
  }
  .main-navigation a, a:not([href]):not([class]), a:not([href]):not([class]):hover{
      text-align: right;
      right: 15px;
      padding: 16px 0px 16px 6px;
      font-size: 12px;
      font-weight: 400;
  }
  .section-main-title{
    font: 700 33px/30px var(--font-Josefin);
  }
  .latest-blog-date, .news-comments{
    font-size: 13px;
  }
  #socialGallery{
    top: -6px;
    right: 6px;
  }

}
@media screen and (max-width: 991px){
  .section-main-title{
    font-size: 28px;
  }
  .featured-coupon-box .owl-dots,#feature-stores .owl-dots{
    text-align: center;
  }
  section{
    padding: 40px 0;
  }
  .coupon-banner-img img{
    height: auto;
  }
  #latest-blog #socialGallery{
    right: -4px;
  }
  .feature-box img{
    width: 100%;
  }
  .blog-meta.metabox .entry-comments, .blog-meta.metabox .entry-date{
    font-size: 14px;
  }
  .page-template-blog-fullwidth-extend #socialGallery{
    right: 0;
  }
}
@media screen and (max-width: 767px) {
  #upcoming-sales .upcoming-sale-date{
    max-width: 43px;
  }
  .coupon-store-button{
    text-align: center;
  }
  .box.inner-box2{
    margin-top: 10%;
  }
  #coupon-banner .section-main-title{
    width: 100%;
  }
  .blog_share_icon{
    position: relative;
    right: -23%;
  }
  #top_category .category-box-1 .box .top-cat-title{
    right: 0;
    left: 0;
  }
  #socialGallery{
    right: -14px;
  }
  .store-button i{
    left: -1%;
  }
}
@media screen and (max-width: 575px) {
  .section-main-title{
    font: 700 30px/35px var(--font-Josefin);
  }
  .section-small-title{
    font-size: 15px;
  }
  #slider .slidemidheading{
      font: 600 24px/19px var(--font-poppins);
  }
  #slider p,#slider .carousel-control-prev,#slider .carousel-control-next{
    display: none;
  }
  .header-box{
    border-top-right-radius: 0px;
  }
  .box.inner-box2,.box.inner-box3{
    margin-top: 18% !important;
  }
  .logo img{
    width: auto;
      margin: 0 auto;
      display: block;
  }
  section{
    padding: 30px 0;
  }
  .feature-store-box{
    margin-bottom: 10%;
  }
  .popular-stores hr{
      width: 70%;
      text-align: center;
      margin: 0 auto;
  }
  .partner-box:nth-child(5), .partner-box:nth-child(6), .partner-box:nth-child(7), .partner-box:nth-child(8){
    border-bottom: 2px solid #ededed;
  }
  .coupon-store-info{
    order: 1;
  }
  .coupon-store-off{
    order: 2;
  }
  .coupon-store-button{
    order: 3;
  }
  .store-button i{
    left: -2%;
  }
}
@media screen and (max-width: 530px) {
  .page-template-blog-fullwidth-extend #socialGallery{
    right: 15px !important;
  }
}
@media screen and (max-width: 425px) {
  #latest-blog #socialGallery{
    right: 40px;
  }
  .page-template-blog-fullwidth-extend #socialGallery{
    right: 40px !important;
  }
}
@media screen and (max-width:320px){
  .coupon-store-button{
    padding: 0;
  }
}
:root {
  --color-black: #000;
  --color-white: #fff;
  --color-black-russian: #0d0d0f;
  --color-yellow: #e9a229;
  --color-sky-blue: #37a0e8;
  --color-border : #a1a1a1;
  --color-text-black: #363638;
  --color-black-eclipse: #403f3f;
}
:root {
  --font-poppins: "Poppins";
  --font-Josefin: "Josefin Sans";
}
/*-----------Category Page-----------------*/
.category-image-box .category-image img{
  object-fit: cover;
  height: 280px;
}
.category-image-box .category-title a{
  font: 400 18px/25px var(--font-poppins);
  color: var(--color-black);
}
.category-image-box .category-image{
  background-color: beige;
}
.single-page-content p{
  font: 500 14px/25px var(--font-poppins);
}
.single-page-content p .single-content-code{
  color: var(--color-black);
}
#sidebar .widget_search button[type=submit]{
  border-color: transparent;
  color: #fff;
  background: var(--color-sky-blue);
  padding: 9px 12px;
  float: left;
}
.widget_search h3,.widget_search h2{
  display: none;
}
#sidebar .widget_search form{
  display: table;
  border: 1px solid var(--color-sky-blue);
  width: 100%;
}
#sidebar [type=search]{
  border: none;
  padding: 10px;
}
#sidebar h3, #sidebar h2 {
    margin: 0 0 20px;
    font-size: 22px;
    color: var(--color-black);
    position: relative;
}
#sidebar h3:before, #sidebar h2:before {
    content: "";
    display: block;
    width: 60px;
    height: 4px;
    background: var(--color-yellow);
    position: absolute;
    bottom: -1.7px;
}
#sidebar h3:after, #sidebar h2:after {
    content: "";
    display: block;
    width: 100%;
    height: 1px;
    background: var(--color-border);
    margin-top: 15px;
}
#sidebar aside {
  margin-bottom: 30px;
  border: 1px solid var(--color-border);
  padding: 20px 16px 0px;
}
#sidebar .widget_search{
  border: none;
  padding: 0;
}
.recent-post-box img{
  height: auto;
}
.wp-block-latest-comments__comment-meta,#sidebar a,#sidebar .post-content a,#sidebar .recentcomments a,#sidebar .recentcomments{
  font: 400 16px/30px var(--font-poppins);
  color: #424242;
}
#sidebar .post-content a:hover{
  color: var(--color-sky-blue);
}
#sidebar .post-content{
  align-self: center;
}
#sidebar .recentcomments a{
  text-transform: capitalize;
}
#sidebar .widget_recent_entries .recent-post-box{
  border-bottom: 1px solid #dfddde;
}
#sidebar .widget_recent_entries li:last-child .recent-post-box{
  border-bottom: none;
}
.widget_categories ul li.cat-item:before, .widget_archive li:before, .widget_meta li:before, .widget_recent_comments li:before {
  content: '\f101';
  font-weight: 900;
  font-family: 'Font Awesome 5 Free';
  margin-left: 8px;
  color: var(--color-yellow);
}
.bradcrumbs a,.bradcrumbs{
  font: 400 16px/30px var(--font-poppins);
  color: var(--color-black);
}
.entry-title{
  color: var(--color-black);
  font-weight: bold;
  text-decoration: underline;
  font-size: 40px;
}
.feature-box img{
  border-radius: 10px;
  width: auto;
}
.blog-meta.metabox i{
  color: var(--color-sky-blue);
}
.blog-meta.metabox .entry-comments,.blog-meta.metabox .entry-date{
  font: 500 16px/20px var(--font-poppins);
  color: #494747;
}
.single-post-title{
  color: #000;
  font: bold 34px/50px poppins;
}
.single-post-content p{
  font: 300 14px/20px var(--font-poppins);
}
.single #socialShare > .socialBox{
  text-align: start;
}
.single #socialGallery {
  top: -5px;
  right: 25px;
}
.single .social_share a i{
  text-align: center;
}
#reply-title{
  color: var(--color-black);
  font: 500 25px/30px var(--font-Josefin);
}
.comment-notes{
  font: 300 13px/15px var(--font-poppins);
  color: #7d7d7d;
}
#commentform .comment-form-comment label,.comment-form-cookies-consent,.wp-block-search__label{
  display: none;
}
#comment,#commentform input{
  border-color: #e0e0e1;
  width: 60%;
  border-radius: 10px;
  padding: 10px;
  border: 1px solid #e0e0e1;
}
#respond textarea{
  max-height: 100px;
}
#respond input[type=submit]{
  width: 18% !important;
  background-color: var(--color-yellow);
  border-color: var(--color-yellow) !important;
  color: #fff;
  font: 600 14px/20px var(--font-poppins);
}
#respond{
  margin-bottom: 20px;
}
/*---------------_Contact Page------------*/
textarea, input[type=text], input[type=password], input[type=datetime], input[type=datetime-local], input[type=date], input[type=month], input[type=time], input[type=week], input[type=number], input[type=email], input[type=url], input[type=search], input[type=tel], input[type=color], .uneditable-input{
  border: 1px solid #d2d2d2;
  color: #000;
  display: inline-block;
  font-size: 14px;
  font-weight: 400;
  line-height: 20px;
  outline: none;
  padding: 5px 10px;
  vertical-align: middle;
  transition: all .3s ease 0s;
  -moz-transition: all .3s ease 0s;
  -webkit-transition: all .3s ease 0s;
  padding: 15px 10px;
  width: 100%;
}
textarea{
  height: 120px;
}
.wpcf7-form-control-wrap{
      margin: 0 0 30px;
    float: right;
    width: 100%;
}
textarea:focus, input[type=text]:focus, input[type=password]:focus, input[type=datetime]:focus, input[type=datetime-local]:focus, input[type=date]:focus, input[type=month]:focus, input[type=time]:focus, input[type=week]:focus, input[type=number]:focus, input[type=email]:focus, input[type=url]:focus, input[type=search]:focus, input[type=tel]:focus, input[type=color]:focus, .uneditable-input {
    background-color: #f7f7f7;
    box-shadow: 0px -3px 5px 0px rgb(0 0 0 / 10%) inset;
    -moz-box-shadow: 0px -3px 5px 0px rgba(0,0,0,.1) inset;
    -webkit-box-shadow: 0px -3px 5px 0px rgb(0 0 0 / 10%) inset;
}
input[type=submit]{
  font: 400 16px/35px var(--font-Josefin);
  color: var(--color-white);
  background-color: var(--color-pink);
  position: relative;
  z-index: 1;
  transition: all 0.3s ease-out;
  border: 1px solid var(--color-pink);
  padding: 0.4em 1.6em;
}
input[type=submit]:hover{
  background-color: var(--color-violent-violet);
  border-color: var(--color-violent-violet);
}
.contact-info-box{
    background: #f9f9f9;
    padding: 21px 23px;
}
.contact-info-title,.about-page-box-name  {
  font: 400 22px/24px var(--font-Josefin);
}
.contact-info-text{
  font: 400 16px/25px var(--font-Josefin);
}
.about-page-box-text{
  font: 300 16px/25px var(--font-Josefin);
}
#contact .section-main-title{
  font-size: 30px;
}
.contact-social-list-box-ul{
  border: 1px solid #e6e6e6;
}
.contact-social-list-box-ul li{
  border-bottom: 1px solid #e6e6e6;
  padding: 20px 15px;
}
.contact-social-list-box-ul li:last-child{
  margin-bottom: 0px !important;
}
.contact-social-list-box-ul li:hover{
  box-shadow: 0px 5px 10px 0px rgb(0 0 0 / 20%);
  -moz-box-shadow: 0px 5px 10px 0px rgba(0,0,0,.2);
  -webkit-box-shadow: 0px 5px 10px 0px rgb(0 0 0 / 20%);
}
#contact .social_icon i{
      display: inline-block;
    width: 40px;
    height: 40px;
    color: #fff;
    font-size: 20px;
    line-height: 38px;
    text-align: center;
}
#contact .social_icon .fa-facebook-f,.socila_share a .fa-facebook-f{
      background-color: #215b9a;
}
#contact .social_icon .fa-twitter,.socila_share a .fa-twitter{ 
  background-color: #00adf2;
}
#contact .social_icon .fa-youtube{
  background-color: #FF0000;
}
#contact .social_icon .fa-dribbble{
  background-color: #f85993;
}
#contact .social_icon .fa-linkedin-in{
  background-color: #0077b5;
}
#contact .social_icon .fa-pinterest-p{
  background-color: #E60023;
}
.contact-social-count p{
  color: #2a2a2a;
}
.contact-social-box-list .theme_button{
  display: inline-block;
    color: #2a2a2a;
    padding: 8px 0;
    width: 96px;
    text-align: center;
    font-size: 14px;
    border: 1px solid #e6e6e6;
    text-transform: uppercase;
    line-height: normal;
    box-shadow: 0 1px 8px 0px rgb(0 0 0 / 18%);
    background-color: #fff;
}
.contact-social-box-list .theme_button:hover{
  background-color: var(--color-yellow);
  color: var(--color-white);
}
/*--------Blog Page-------------------*/
.page-template-blog-fullwidth-extend .blog-meta.metabox .entry-comments, 
.page-template-blog-fullwidth-extend .blog-meta.metabox .entry-date{
  font: 500 16px/20px var(--font-poppins);
  color: #494747;
}
.posttitle a{
  font-size: 26px;
  letter-spacing: 1px;
  line-height: 30px;
  color: #000000;
  font-weight: 700;
  font-family: "Josefin Sans";
}
.post-text p{
    font-size: 15px;
    letter-spacing: 1px;
    line-height: 22px;
    color: #494747;
    font-weight: 500;
    font-family: "Poppins";
}
.post-featured-img img{
  border-radius: 15px;
  height: auto;
}
.post-readmore{
  padding: 8px;
}
.page-template-blog-fullwidth-extend #socialGallery{
  right: -20px;
}
.navigation .page-numbers.current{
  color: #000;
  border: 1px solid #000;
  padding: 7px 10px;
  font-weight: 600;
  margin-left: 10px;
  background-color: transparent;
}
.navigation a{
  margin-left: 10px;
}
.navigation .page-numbers{
  color: #fff;
  border: 1px solid #000;
  padding: 7px 10px;
  background-color: #000;
  font-weight: 600;
}
.navigation .next.page-numbers{
  padding: 7px 10px 8px; 
}
.navigation .prev.page-numbers{
  padding: 7px 10px 9px; 
}
.post-featured:hover{
  background-color: #fff;
  box-shadow: 0 4px 8px 0 rgb(0 0 0 / 0%), 0 6px 20px 0 rgb(0 0 0 / 12%);
  border-radius: 15px;
  transition-duration: 0.5s;
}
.blog-lr-post #socialGallery{
  right: -20px;
}
.nav-link .list-tab{
  color: var(--color-black);
}
.nav-link.active .list-tab{
  color: var(--color-yellow);
}
.list-tab i{
  font-size: 35px;
}
.list-tab .list-tab-title{
  font: 500 18px/25px var(--font-poppins);
}
#submit-coupon .tab-title a{
  background-color: #e9e9e9;
}
#submit-coupon .tab-title li:first-child a{
  border-right: 2px solid var(--color-sky-blue);
}
#submit-coupon .tab-title li a{
  border-top: 2px solid var(--color-sky-blue);
  border-bottom: 2px solid var(--color-sky-blue);
  border-top-right-radius: 0;
  border-top-left-radius: 0;
}
#submit-coupon .tab-title li:nth-child(3) a{
  border-left: 2px solid var(--color-sky-blue);
}
#submit-coupon .tab-title li:nth-child(2) a{
  border-right: 2px solid var(--color-sky-blue);
  border-left: 2px solid var(--color-sky-blue);
}
#submit-coupon .nav-link.active{
  border-bottom: 2px solid transparent;
}
.submit-url,.submit-code,.submit-discount,.submit-date{
  background: #e9e9e9;
  border: none !important;
  padding: 30px 20px !important;  border-radius: 15px;
}
.submit-url::placeholder,.submit-code::placeholder,
.submit-discount::placeholder,.submit-date::placeholder{
  font: 300 18px/20px var(--font-poppins);
  color: #383838;
}
.sale-list-box h4{
  font: 600 24px/20px var(--font-Josefin);
  color: var(--color-black);
  letter-spacing: 1px;
}
.sale-list-box ul li{
  font: 400 14px/20px var(--font-poppins);
  position: relative;
}
.sale-list-box ul li:after{
  content: "\2013";
  position: absolute;
  right: 6px;
  left: auto;
  top: 0;
  color: #000;
}
.sale-list-box img{
  width: auto;
}
/*---------- Store ------------------*/
.store-right-title-box .section-small-title{
  color: var(--color-sky-blue);
  font: 400 18px/20px var(--font-Josefin);
}
.store-right-title-box p{
  color: var(--color-black);
  font: 300 16px/20px var(--font-Josefin);
}
.store-right-post-block .offer-text{
  color: var(--color-black);
  font: 600 22px/30px var(--font-Josefin);
  border: 2px dashed #555555;
  border-radius: 15px;
}
.verified-user{
  color: #444;
  font: 500 15px/20px var(--font-Josefin);
}
.verified-user i{
  color: var(--color-sky-blue);
}
.coupon-title a{
  color: var(--color-black);
  font: 600 24px/36px var(--font-Josefin);
}
.coupon-text{
  color: #5d5d5d;
  font: 400 15px/20px var(--font-Josefin);
}
.store-right-post-block{
  border: 1px solid #acacac;
  border-radius: 15px;
  background-color: #fff;
  box-shadow: 0px 0px 10px #d1cfcf;
}
.store-button i{
  color: var(--color-white);
  background-color: var(--color-yellow);
  padding: 11px 11px;
  position: relative;
  left: -3%;
}
.store-coupon-button{
  position: relative;
  transition-duration: 1s;
}
.store-button .code-number{
  font: 16px/20px var(--font-Josefin);
  color: var(--color-black);
  background-color: #d3d3d3;
  padding: 10px 14px;
  position: relative;
  opacity: 0;
  transition-duration: 1s;
}
.store-button .code-text{
  font: 400 16px/20px var(--font-Josefin);
  color: var(--color-white);
  background-color: var(--color-sky-blue);
  padding: 8px 22px;
  position: absolute;
  right: 0;
  transition-duration: 1s;
}
.store-button:hover .code-text{
  clip-path: polygon(0 0, 66% 0, 100% 100%, 0% 100%);
}
.store-button:hover .code-number{
  opacity: 1;
}
.coupon-store-button{
  align-self: center;
  text-align: left;
}
.store-main-button{
  color: var(--color-white);
  background-color: var(--color-yellow);
  border-radius: 10px;
  font: bold 20px/25px var(--font-poppins);
  letter-spacing: 1px;
}
.store-main-button i{
  position: relative;
  top: -3px;
}
.single-coupons .store-button:hover .code-text{
  clip-path: polygon(0 0, 35% 0, 50% 100%, 0% 100%);
}
.single-featured-coupon .inner-page-feature-box img,.single-upcoming-sale .inner-page-feature-box img{
  width: auto;
}
.expiry-dates{
  font-size: 12px;
  letter-spacing: 1px;
  line-height: 23px;
  color: #f01818;
  font-weight: 500;
  font-family: "Poppins";
}
.expiry-dates span{
  color: #000;
}
.show-code{
  color: #000;
  font: 400 14px/20px var(--font-Josefin);
}
.comments-title{
  color: #4c4c4c;
  font: 500 26px/30px var(--font-Josefin);
  margin-top: 20px;
}
.comment-author.vcard img{
      width: 10%;
    height: 10%;
    margin-bottom: 20px;
}
.comment-body cite{
  display: block;
}
.comment-body cite a,.comment-body .comment-author span,.commentmetadata a{
  color: var(--color-black);
  font: 500 16px/18px var(--font-Josefin);
}
.comment-list li{
  padding: 20px;
  background-color: #e1e1e1;
  margin-bottom: 20px;
  border-radius: 20px;
}
.reply a{
  color: var(--color-sky-blue);
}
#reply-title small{
  margin-right: 10px;
}
#reply-title small a{
  color: var(--color-sky-blue);
}
#respond{
  margin-top: 20px;
}
.logged-in-as a{
  font: 400 16px/20px var(--font-Josefin);
  color: #000;
}
/*-------------------Faq Template--------------*/
.faq-box-inner{
  background-color: var(--color-yellow);
  border-radius: 20px;
}
.faq-box i{
  color: var(--color-sky-blue);
  background: #fff;
  font-size: 25px;
  display: inline-block;
  padding: 14px 16px;
  border-radius: 50%;
}
.faq-box-inner p,.faq-box-inner h5{
  color: #fff;
  font-family: var(--font-Josefin);
}
.faq-box:hover{
  position: relative;
  bottom: 10px;
}
.faq-box{
  position: relative;
  bottom: 0px;
}
.faq-box:nth-child(1),.contact-section-box:nth-child(1){
  animation: fadeInUp 2s 1;
}
.faq-box:nth-child(2),.contact-section-box:nth-child(2){
  animation: fadeInUp 3s 1;
}
.faq-box:nth-child(3),.contact-section-box:nth-child(3){
  animation: fadeInUp 4s 1;
}
.accordion-item {
  background-color: #fff;
  border: none;
}
.accordion-button {
  background-color: #f2F2F2;
  box-shadow: none;
  border:none;
  padding: 20px 50px;
  margin: 4px 0;
}
.accordion-button{
  border-bottom: 4px solid var(--color-sky-blue);
  color: var(--color-sky-blue);
  font-weight: bold;
  background-color: #f2F2F2; 
  font-family: var(--font-Josefin);
} 
.accordion-button:not(.collapsed){
  border-bottom: 4px solid var(--color-sky-blue);
  color: rgba(40, 71, 125, 1);
  font-weight: bold;
  background-color: #f2F2F2; 
  font-family: var(--font-Josefin);
} 
.accordion-button:focus {
  z-index: 3;
  border-color: none;
  outline: 0;
  box-shadow: none;
}
.accordion-item{
  margin: 20px auto;
  border-top: 1px solid rgba(0,0,0,.125);
}
.accordion-button:not(.collapsed),.accordion-button:hover{
  color: var(--color-black) !important;
}
.accordion-body{
  font-weight: 500;
  font-family: var(--font-Josefin);
}
/*------------404-----------------*/
#main_eroor img{
  width: auto;
  text-align: center;
  margin: 0 auto;
  display: block;
}
#main_eroor h1{
  font-weight: 800;
  color: var(--color-sky-blue);
  letter-spacing: 1px;
  font-family: var(--font-Josefin);
}
#main_eroor p{
  color: #fff;
  font-weight: 400;
  font-family: var(--font-Josefin);
}