@charset "utf-8";
/*------- */
/* CSS Document */
@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100..900;1,100..900&display=swap');
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html, body{
  height: 100%;
  scroll-behavior: smooth;
  color: #333;
  font-family: 'Roboto', Helvetica, Arial, sans-serif;
}
body {
  font-family: 'Roboto', Helvetica, Arial, sans-serif;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
}
a {
  text-decoration: none;
}
/* === FORM ELEMENTS === */
input, textarea, select {
  width: 100%;
  padding: 0;
  border-radius: 0;
  resize: none;
}
.container {
  width: 100%;
  max-width: 1280px;
  margin-right: auto;
  margin-left: auto;
  padding-left: 16px;
  padding-right: 16px;
}
/*********************************/
/* HEADER CSS START HERE
/*********************************/
#header {
  -webkit-box-shadow: 0 1px 15px 0 rgba(0, 0, 0, 0.2);
  box-shadow: 0 1px 15px 0 rgba(0, 0, 0, 0.2);
  transition: all 1s ease;
  background: #fff;
  background-color: rgb(255, 255, 255);
  margin-bottom: 24px;
  padding: 20px;
  direction: ltr;
  position: fixed;
  left: 0;
  width: 100%;
  top: 0;
  z-index: 99;
}
.logo { 
  width: 100%;
  padding: 0 0;
  max-width: 200px;
  display: flex;
  align-items: center;
  gap: 19px;
}
.MenuOpen {
  display: none
}
.HeaderWrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.btngroup {
  display: flex;
  align-items: center;
  padding: 0 16px;
  gap: 11px;
}
a.web_sign_in_btn {
  background: #ff8880;
  font-size: 14px;
  color: #FFF;
  border-radius: 4px;
  line-height: 32px;
  height: 32px;
  padding: 0 12px;
  text-decoration: none;
}
a.web_sign_up_btn {
  border: 1px solid #ff8880;
  background-color: #fff;
  color: #ff8880;
  font-size: 14px;
  border-radius: 4px;
  line-height: 31px;
  height: 32px;
  padding: 0 13px;
  text-decoration: none;
}
.buttonsarea {
  display: flex;
}
.langIcon {
  display: flex;
  background: #ff8880;
  height: 32px;
  width: 32px;
  border-radius: 100%;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
.langIcon img {
  width: 18px;
  height: 18px;
  margin: 7px auto 0;
  vertical-align: middle;
}
.langIcon {
  position: relative;
  display: inline-block;
}
.language-dropdown {
  position: absolute;
  top: 100%;
  right: 0;
  margin: 0;
  list-style: none;
  background: #fff;
  /* box-shadow: 0 4px 12px rgba(0,0,0,0.15); */
  border-radius: 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: opacity 0.3s ease, transform 0.3s ease;
  z-index: 999;
  width: 80px;
  padding: 0;
  box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
}
.langIcon:hover .language-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.language-dropdown li {
  margin: 0;
  padding: 0;
}
.language-dropdown li:last-child {
  margin-bottom: 0;
}
.language-dropdown li a {
  padding: 3px 0;
  border-bottom: 0;
  display: block;
}
.language-dropdown li a img {
  width: 30px;
  height: 30px;
  object-fit: contain;
}
.language-dropdown li a.active-lang {
  background: #f0f0f0;
  box-shadow: 0 0px 7px #000;
}
/*********************************/
/* HEADER CSS END HERE
/*********************************/
/*********************************/
/* BANNER CSS STRT HERE
/*********************************/
.BannerArea {
  width: 100%;
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  background: url("images/banner.webp") no-repeat center center;
  min-height: 200px;
  background-size: cover;
  padding: 25px 0;
  direction: ltr;
}
.BannerArea h1 {
  text-align: center;
  padding: 0;
  margin: 0;
  color: #FFF;
  font-size: 24px;
  font-weight: 700;
  text-transform: uppercase;
}
/*********************************/
/* BANNER CSS END HERE
/*********************************/
.SliderArea {
  width: 100%;
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  margin: 10px 0 20px;
}
.SliderArea h2 {
  margin: -23px 0 20px 0;
  font-size: 25px;
  line-height: 32px;
  color: #333;
  font-weight: normal;
  text-transform: capitalize;
  /*
	border-right: 6px solid rgb(255, 136, 128);
	padding: 0 10px 0 0;
*/
}
.SliderArea h2 a {
  color: #000;
}
.category_area {
	padding: 20px 0 0;
}
.HeaderWrap {
  flex-direction: row;
}
html[lang="en-US"] .SliderArea h2 {
  /*
	border-right: 0;
		border-left: 6px solid rgb(255, 136, 128);
	padding: 0 0 0 10px;
*/
}
/*
html[lang="en-US"] .HeaderWrap {
	flex-direction: row-reverse;
}
*/
.SliderBox {
	/* background: #e9e9e9; */
	/* padding: 10px; */
	/* border-radius: 10px; */
/*	min-height: 430px;*/
	box-shadow: 0 10px 9px #ccc;
	border-radius: 8px;
	border: 1px solid #ccc;
}
.item {
	padding: 0 0 18px;
}
.SliderBox .BoxPix a {
  display: block;
}
.SliderBox .BoxPix a img {
	width: 100%;
	height: auto;
	object-fit: cover;
	border-radius: 10px 10px 0 0;
}
.SliderBox h3 {
  padding: 10px 0 0;
	text-align: center;
}
.SliderBox h3 a {
  font-size: 14px;
  color: #000;
  font-weight: 700;
  text-decoration: none;
  display: flex;
	flex-direction: column;
  justify-content: space-between;
  width: 100%;
  padding: 0 10px;
}
.SliderBox h3 a strong {
	/* width: 88%; */
	min-height: 33px;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
	text-overflow: ellipsis;
	font-weight: 700;
}
.Ivideo iframe {
	width: 100%;
	height: 610px;
	object-fit: cover;
}
.SliderContent {
	padding: 0 10px;
}
.SliderBox h3 a span {
  background: #dfdfdfba;
  width: 30px;
  height: 30px;
  color: #000;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 25px;
  font-weight: 300;
  border-radius: 4px;
}
a.ViewMore {
  align-items: center;
  height: auto;
  padding: 10px 25px !important;
  margin: 10px auto !important;
  justify-content: center;
  background-color: #f8f8f8;
  border-radius: 20px;
  color: #000;
  font-size: 14px;
  font-weight: 700;
  display: none
}
a.ViewMore:hover {
  background: rgba(255, 136, 128, 1);
  color: #FFF;
}
#footer {
  background: #303237;
  margin-top: 60px;
  color: #6c707a;
  padding-top: 10px;
}
.footerWrap {
  display: flex;
  flex-wrap: wrap;
}
.fl {
  width: 100%;
  max-width: 25%;
  padding: 0 0% 0 2%;
}
.fl.f12 {
  max-width: 50%;
  padding: 0 0% 0 13%;
}
.fl h4 {
  font-weight: bold;
  font-size: 14px;
  margin-bottom: 15px;
  margin-top: 20px;
  color: #FFF;
  text-transform: uppercase;
}
.fl p {
  font-weight: normal;
  font-size: 14px;
  color: #FFF;
  line-height: 22px;
}
.fl ul {
  padding: 0;
  margin: 0;
  list-style-type: none;
}
.fl ul li {
  padding: 0;
  margin: 0 0 7px;
}
.fl ul li a {
  color: #FFF;
}
.fl ul li a:hover {
  color: #ff8880;
}
.fl select {
  height: 35px;
  width: 111px;
  border-radius: 4px;
  border: 0;
  padding: 0 10px;
}
.copyRight {
  background: #40434a;
  color: #b8bdca;
  padding: 20px 0px;
  font-size: 14px;
  margin-top: 40px;
}
.fl3 {
  color: #FFF;
  font-size: 14px;
}
.fl3 a {
  color: #FFF;
}
.site-menu-small.site_menu.custom_menu_ul {
  padding: 0;
  margin: 37px 0 0;
  list-style-type: none;
  display: flex;
  gap: 32px;
}
.site-menu-small.site_menu.custom_menu_ul li a {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 18px;
  color: #FFF;
  text-transform: capitalize;
}
.SliderArea .owl-prev {
  position: absolute;
  top: 43%;
  left: 10px;
  width: 40px;
  height: 40px;
  background: url(images/i6.svg) no-repeat left center !important;
  z-index: 99;
  font-size: 0 !important;
}
.SliderArea .owl-next {
  position: absolute;
  top: 43%;
  right: 10px;
  width: 40px;
  height: 40px;
  background: url(images/i5.svg) no-repeat left center !important;
  z-index: 99;
  font-size: 0 !important;
}
.PostContent {
  width: 100%;
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  padding-top: 15px;
}
.PostWrap {
  border-radius: 6px;
  background-color: #FFF;
  box-shadow: 0px 0px 4px 0px rgba(0, 0, 0, 0.05);
  padding: 16px;
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
}
.StannelAd {
  display: flex;
  gap: 15px;
  width: 100%;
  margin: 30px 0 0
}
.AdBoxssd {
  width: 100%;
  max-width: 33%;
  background: #FFF;
  border-radius: 10px;
  padding: 10px;
  text-align: center;
}
.AdBoxssd img {
  width: 100%;
  height: 300px;
  overflow: hidden;
  margin-bottom: 20px;
  border: none;
  background-color: #fff;
  box-shadow: 0px 0px 5px 0px #d1d1d1;
  object-fit: cover;
}
.AdBoxssd h3 {
  padding: 20px 0 20px;
}
.MobileMenu {
  position: fixed;
  right: -100%;
  top: 0;
  background: #FFF;
  z-index: 999999;
  height: 100%;
  width: 90%;
  max-width: 360px;
  transition: all 0.5s;
  padding: 50px 10px;
}
.MobileMenu.active {
  right: 0;
}
.OverLay {
  background-color: rgba(0, 0, 0, 0.9);
  height: 100%;
  top: 0;
  width: 100%;
  z-index: 999;
  position: fixed;
  display: none;
}
.OverLay.active {
  display: block;
}
.Sm a {
  display: flex;
  padding-bottom: 18px;
  border-bottom: 1px solid #eeeeee;
  align-items: center;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  color: #555555;
}
.Sm a span {
  font-weight: 300;
  text-transform: none;
}
.Sm a img {
  margin: 0 15px 0 0;
  width: 22px;
  height: 22px;
}
.SinglePostWrap {
  padding: 20px 0 50px;
  border-bottom: 1px solid #eee;
}
.PostContentArea p {
  font-size: 16px;
  line-height: 28px;
  padding: 31px 0 0;
}
.PostContentArea p:first-child {
    padding-top: 0;
}

.PostContentArea p img {
	margin: 0 auto;
}

/*
.PostContentArea p img {
	display: block;
	float: right;
	object-fit: cover;
	height: 225px;
	padding: 5px;
	width: 25%;
}
*/
.FeaturedPic {
  display: flex;
  justify-content: center;
}
.aligncenter {
  clear: unset !important;
  margin: 0 auto;
}
.SliderArea iframe {
  width: 100%;
  object-fit: cover;
  height: 300px;
}
.FeaturedPic iframe {
  width: 100%;
  object-fit: cover;
  height: 600px;
}
.PostContentArea ol, .PostContentArea ul {
  box-sizing: border-box;
  padding: 0 15px;
  margin: 0;
  /* list-style-type: none; */
}
/***********************************/
/* COMMENT FORM CSS START HERE
/***********************************/
/* Main Comment Section */
#comments .required {
  color: #F00
}
#comments a {
  color: #ff8880;
}
.comment-form-attachment__file-size-notice {
  margin: 20px 0 10px;
}
.comment-form-attachment__autoembed-links-notice {
  margin: 10px 0 26px;
}
.comment-form-cookies-consent {
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
}
#wp-comment-cookies-consent {
  width: auto !important;
}
#comments label {
  margin: 0 0 10px !important;
  padding: 0 9px 0 0px !important;
  display: block;
}
.commentlist {
  list-style-type: none
}
.comments-title {
  margin: 0 0 20px;
  text-align: center;
}
/* Main Comment Section */
/* Comments Container */
#comments {
  margin-top: 4rem;
  max-width: 800px;
  margin-inline: auto;
  padding: 0 1rem;
  font-family: 'Segoe UI', sans-serif;
}
/* Comment List */
.comment-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
/* Individual Comment */
.comment {
  margin-bottom: 2.5rem;
  padding: 1.5rem;
  background: #ffffff;
  border-radius: 12px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.04);
  border: 1px solid #eaeaea;
  transition: all 0.3s ease;
}
.comment:hover {
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
}
/* Comment Author */
.comment-author {
  display: flex;
  align-items: center;
  font-weight: 600;
  margin-bottom: 0.6rem;
}
.comment-author img {
  border-radius: 50%;
  width: 45px;
  height: 45px;
  object-fit: cover;
  margin-right: 12px;
  border: 2px solid #ddd;
}
/* Metadata */
.comment-metadata {
  font-size: 0.85rem;
  color: #999;
  margin-bottom: 0.75rem;
}
/* Text */
.comment-content {
  font-size: 1rem;
  color: #333;
  line-height: 1.7;
  margin-bottom: 0.75rem;
}
/* Reply Button */
.comment-reply-link {
  display: inline-block;
  font-size: 0.9rem;
  color: #0073aa;
  font-weight: 500;
  background: #f0f8ff;
  padding: 0.35rem 0.75rem;
  border-radius: 6px;
  transition: background 0.3s;
}
.comment-reply-link:hover {
  background: #d6ecf9;
  text-decoration: none;
}
/* Replies */
.children {
  margin-left: 1.5rem;
  border-left: 2px solid #e2e2e2;
  padding-left: 1rem;
  margin-top: 1.5rem;
}
/* === Comment Form === */
.comment-respond {
  margin-top: 3rem;
  background: #fdfdfd;
  padding: 2rem;
  border-radius: 14px;
  border: 1px solid #e8e8e8;
  box-shadow: 0 3px 12px rgba(0, 0, 0, 0.05);
}
.comment-reply-title {
  font-size: 1.6rem;
  margin-bottom: 1rem;
  font-weight: 700;
  color: #222;
}
#cancel-comment-reply-link {
  font-size: 0.85rem;
  color: #999;
  margin-left: 1rem;
  text-decoration: underline;
}
/* Input + Textarea */
.comment-form input[type="text"], .comment-form input[type="email"], .comment-form input[type="url"], .comment-form textarea {
  width: 100%;
  padding: 14px 16px;
  font-size: 1rem;
  border: 1px solid #ccc;
  border-radius: 10px;
  background-color: #fff;
  margin-bottom: 15px;
  transition: all 0.3s ease;
  box-sizing: border-box;
}
.comment-form textarea {
  height: 140px !important;
  resize: vertical;
  line-height: 1.6;
}
.comment-form input:focus, .comment-form textarea:focus {
  border-color: #0073aa;
  box-shadow: 0 0 0 3px rgba(0, 115, 170, 0.15);
  outline: none;
}
/* Responsive field layout */
/*
.comment-form-author,
.comment-form-email,
.comment-form-url {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}
*/
.comment-form-author input, .comment-form-email input, .comment-form-url input {
  flex: 1 1 250px;
  min-width: 100%;
}











@media (min-width: 600px) {
  .comment-form-author input, .comment-form-email input, .comment-form-url input {
    min-width: auto;
  }
}
/* File Upload */
.comment-form-image {
  margin-bottom: 1.5rem;
}
.comment-form-image label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 600;
  color: #333;
}
.comment-form input[type="file"] {
  display: block;
  width: 100%;
  padding: 0.65rem;
  border: 1px solid #ccc;
  background: #fefefe;
  border-radius: 10px;
  font-size: 0.95rem;
  cursor: pointer;
  transition: border-color 0.3s ease;
}
.comment-form input[type="file"]:hover {
  border-color: #0073aa;
  background-color: #f5fbff;
}
.comment-form input[type="file"]::file-selector-button {
  background-color: #0073aa;
  color: #fff;
  border: none;
  padding: 0.5rem 1rem;
  margin-right: 1rem;
  border-radius: 8px;
  cursor: pointer;
  transition: background-color 0.3s ease;
  font-weight: 500;
}
.comment-form input[type="file"]::file-selector-button:hover {
  background-color: #005177;
}
/* Submit Button */
.comment-form input[type="submit"] {
  background-color: #0073aa;
  color: white;
  font-weight: 600;
  font-size: 1rem;
  border: none;
  padding: 0.85rem 1.75rem;
  border-radius: 10px;
  cursor: pointer;
  transition: background 0.3s ease;
}
.comment-form input[type="submit"]:hover {
  background-color: #005177;
}
/* Notes & Cookies */
.comment-notes, .comment-form-cookies-consent {
  font-size: 0.88rem;
  color: #666;
}
.comment-form-cookies-consent label {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1rem;
}
/* Logged-in Notice */
.logged-in-as {
  font-size: 0.95rem;
  margin-bottom: 1rem;
  color: #444;
}
/* Messages */
.comment-form .form-message {
  padding: 1rem;
  margin-top: 1rem;
  border-radius: 8px;
}
.comment-form .form-message.success {
  background-color: #e8f8ec;
  color: #256029;
}
.comment-form .form-message.error {
  background-color: #fbeaea;
  color: #a94442;
}
/* Paragraph spacing */
.comment-form p {
  margin-bottom: 10px;
}
/***********************************/
/* COMMENT FORM CSS END HERE
/***********************************/
.CopyRightWrap {
  display: flex;
  justify-content: space-between;
}
.social_icons {
  display: flex;
  gap: 15px;
}
.social_icons a {
  padding: 5px 10px;
  font-size: 18px;
}
.social_icons svg {
  width: 22px;
  height: 22px;
}
.social_icons a {
  padding: 6px;
  margin-right: 0;
  width: 30px;
  height: 30px;
  display: flex;
  flex-direction: row-reverse;
  align-items: center;
  justify-content: center;
}
.social_icons a:hover {
  background: #303237;
}
.social_icons a:hover svg path {
  fill: #ff8880
}
.messageError p {
  border-radius: 6px;
  background-color: #FFF;
  box-shadow: 0px 0px 4px 0px rgba(0, 0, 0, 0.05);
  padding: 16px;
  direction: ltr;
}
.messageError {
  min-height: 400px;
}
.CatListing {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
}
.messageError .SliderBox {
  background: #e9e9e9;
  padding: 10px;
  border-radius: 10px;
  min-height: 200px;
  text-align: center;
  width: 100%;
  max-width: 32%;
}
h1.category-title {
  margin: 30px 0 -20px 0px;
  font-size: 24px;
  line-height: 32px;
  color: #333;
  font-weight: normal;
  text-transform: capitalize;
  border-right: 6px solid rgb(255, 136, 128);
  padding: 0 10px 0 0px;
}
.SliderArea.CategoryWrap {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
}
.SliderArea.CategoryWrap .SliderBox {
  max-width: 32%;
}
.SliderArea.CategoryWrap .SliderBox .BoxPix a img {
  width: 100%;
  height: auto;
  object-fit: cover;
}
.SliderArea.CategoryWrap .CatListing {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  width: 78%;
}
.CatSidebar {
  width: 22%;
  padding: 0 20px 0 0px;
}
.CatSidebar ul {
  padding: 0 0 0 20px;
  list-style-type: none;
  margin: 0;
}
.CatSidebar ul li {
  padding: 8px 0;
  margin: 0;
  border-bottom: 1px solid #d5d4d4;
}
.CatSidebar ul li a {
  font-size: 15px;
  color: #000;
  padding: 12px 11px 12px 0;
  margin: 0;
  display: block;
  /* border-bottom: 1px solid #ccc; */
  border-right: 4px solid #e9e9e9;
}
.CatSidebar ul li a:hover, .CatSidebar ul li.active a {
  border-right: 4px solid rgb(255, 136, 128);
}
.ChooseCat {
  display: none;
  justify-content: space-between;
  align-items: center;
  font-size: 18px;
  text-transform: uppercase;
  font-weight: 600;
  border-right: 4px solid rgb(255, 136, 128);
  padding: 6px 10px 6px 0;
  cursor: pointer;
}
.ChooseCat img {
  width: 22px;
}
.search-results .SliderBox {
  width: 100%;
  max-width: 32.5%;
}
.search-results h1.page-title {
  margin: 0 0 30px;
  margin: 0 0 20px 10px;
  font-size: 24px;
  line-height: 32px;
  color: #333;
  font-weight: normal;
  text-transform: capitalize;
  border-right: 6px solid rgb(255, 136, 128);
  padding: 0 10px 0 0px;
}
.post.no-results.not-found {
  text-align: center;
  width: 100%;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  display: flex;
  gap: 20px;
  padding: 30px 0;
}
.search-results #searchform div {
  display: flex;
  width: 100%;
  border-top: 1px solid #ccc;
  border-bottom: 1px solid #ccc;
  padding: 29px 0;
  margin: 20px 0;
  gap: 20px;
}
.search-results #searchform div label {
  display: none;
}
.search-results .SliderArea {}
.search-results #searchform div input[type='text'] {
  height: 50px;
  border-radius: 4px;
  border: 0px;
  padding: 0 20px;
  width: 80%;
  font-weight: 500;
  font-size: 20px;
}
.search-results #searchform div input[type='submit'] {
  width: 20%;
  height: 50px;
  border: 0;
  background: #ff8880;
  color: #FFF;
  border-radius: 4px;
  line-height: 32px;
  font-size: 20px;
  text-decoration: none;
  cursor: pointer;
}
.search-results #searchform div input[type='submit'] {
  background: #000;
}
.wpml-dropdown {
  position: relative;
  display: inline-block;
  font-family: "Segoe UI", sans-serif;
}
.wpml-dropbtn {
  background-color: #f9f9f9;
  color: #333;
  padding: 0;
  font-size: 14px;
  border: 1px solid #ccc;
  /* border-radius: 6px; */
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08);
  transition: background 0.2s;
  border-radius: 100%;
  width: 40px;
  height: 40px;
  text-align: center;
  /* display: flex; */
  justify-content: center;
}
.wpml-dropbtn:hover {
  background-color: #f0f0f0;
}
.wpml-dropbtn img {
  width: 20px;
  height: auto;
  border-radius: 3px;
}
.wpml-dropdown-content {
  display: none;
  position: absolute;
  background-color: white;
  margin-top: 8px;
  border-radius: 6px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  z-index: 1000;
  overflow: hidden;
}
.wpml-dropdown-content a {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #333;
  padding: 0 10px;
  text-decoration: none;
  transition: background 0.2s;
}
.wpml-dropdown-content a:hover {
  background-color: #f5f5f5;
}
.wpml-dropdown-content img {
  width: 30px;
  height: 30px;
  border-radius: 3px;
}
.wpml-dropdown-content.show {
  display: block;
}
.Catstiky {
  left: 0;
  width: 100%;
  z-index: 10;
  padding: 10px 0;
}
.CateSlli {
  width: 100%;
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  padding: 0 0 0;
}
.catdetail {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.CateSlli a {
  text-align: center;
  padding: 9px 10px;
  color: #000;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 100px;
  border: 1px solid #000;
}
.CateSlli .owl-prev {
  position: absolute;
  top: 18%;
  left: -70px;
  width: 40px;
  height: 40px;
  background: url(images/i6.svg) no-repeat left center !important;
  z-index: 99;
  font-size: 0 !important;
}
.CateSlli .owl-next {
  position: absolute;
  top: 18%;
  right: -70px;
  width: 40px;
  height: 40px;
  background: url(images/i5.svg) no-repeat left center !important;
  z-index: 99;
  font-size: 0 !important;
}
.single-item {
  display: flex;
  flex-wrap: wrap;
}
.activity_feed_image {
  width: 20%;
  border-radius: 100%;
  overflow: hidden;
  border: 1px solid rgba(0, 0, 0, 0.1);
}
.activity_feed_header {
  width: 80%;
  display: flex;
  flex-direction: column;

  justify-content: center;
}
.activity_feed_header_info {
  padding: 0 16px 0 0;
  font-size: 14px;
}
.activity_feed_header_info a {
  color: #000;
}
.single .PostContent {
  margin: 0 0 0;
	background: #FFF;
}

.single .SliderArea h2 {
	font-weight: bold;
	font-size: 25px;
}

.single-item {
  display: flex;
  flex-wrap: wrap;
  background: #FFF;
  padding: 20px;
  border-radius: 10px;
}
.activity_feed_content_text {
  border: 1px solid #ccc;
  padding: 20px;
  margin: 20px 0 0;
}
.activity_feed_content_image img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  margin: 18px 0 0;
}
.activity_feed_content_text .trtt {
  font-size: 16px;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2; /* Number of lines to show */
  overflow: hidden;
}
.Footer-logo {
  width: 190px;
  /* margin: 0 auto; */
}
.eng {
  display: none;
}
.MobileMenu ul.menu {
	list-style-type: none;
	padding: 0;
	margin: 20px 0;
}
.MobileMenu ul.menu li {
  padding: 0;
  margin: 0;
  display: block;
}
.MobileMenu ul.menu li a {
	color: #555555;
	font-size: 15px;
	margin: 0;
	padding: 16px 30px 16px 0;
	display: block;
	border-bottom: 1px solid #dcdcdc;
	text-transform: uppercase;
}
.MobileMenu ul.menu li a img {
	width: 29px;
	height: auto;
	margin: 0 0 0 10px;
	position: absolute;
	right: 0;
}
html[lang="en-US"] .SliderContent {
  direction: ltr;
}
html[lang="en-US"] .eng {
  display: inline;
}
html[lang="en-US"] .heb {
  display: none;
}

html[lang="en-US"] .MobileMenu ul.menu li a {
	padding: 16px 0px 16px 30px;
}
html[lang="en-US"] .MobileMenu ul.menu li a img {
	margin: 0 10px 0 0px;
	position: absolute;
	right:auto;
	left: 10px;
	width: 23px;
	height: auto;
}


/* html[lang="en-US"] .CatSidebar ul li a {
  padding: 12px 0 12px 11px;
  border-right: 0;
  border-left: 4px solid #e9e9e9;
} */
html[lang="en-US"] .CatSidebar ul li a:hover, html[lang="en-US"] .CatSidebar ul li.active a {
  border-left: 4px solid rgb(255, 136, 128);
}
html[lang="en-US"] .CatSidebar ul {
  padding: 0;
}




html[lang="en-US"] .CatSidebar ul li a{
	font-size: 15px;
	color: #000;
	padding: 12px 0 12px 11px;
	margin: 0;
	display: block;
	border-right: 0;
	border-left: 4px solid #f0f3f5;
}

html[lang="en-US"] .ChooseCat {
  border-right: 0;
  border-left: 4px solid rgb(255, 136, 128);
  padding: 6px 0 6px 10px;
}
html[lang="en-US"] .MobileMenu {
  position: fixed;
  right: auto;
  left: -100%;
  top: 0;
  background: #FFF;
  z-index: 999999;
  height: 100%;
  width: 90%;
  max-width: 360px;
  transition: all 0.5s;
  padding: 50px 10px;
}
html[lang="en-US"] .MobileMenu.active {
  right: auto;
  left: 0%;
}

html[lang="en-US"] .MobileMenu img {
	padding: 0!important;
}

html[lang="en-US"] .fl {
  padding: 0 2% 0 0%;
}
html[lang="en-US"] .fl.f12 {
  padding: 0 13% 0 0%;
}
.fl.f12 .FooteBox:nth-of-type(2) {
  display: none;
}
html[lang="en-US"] .fl.f12 .FooteBox:nth-of-type(1) {
  display: none;
}
html[lang="en-US"] .fl.f12 .FooteBox:nth-of-type(2) {
  display: block;
}
.SliderArea.CatA {
  border-top: 1px solid #ccc;
  margin: 50px 0 0;
  display: flex;
  padding: 20px 0 0;
}
.SliderArea.CatA .owl-item h3 {
  opacity: 0 !important;
}
.SliderArea.CatA .owl-item.active.center h3 {
  opacity: 1 !important;
}

body {
	padding: 108px 0 0;
}
body.single {
	background: #FFF;
}
body.home {
	padding: 58px 0 0;
}


.PodCartArea {
	width: 100%;
	display: flex;
	/* justify-content: end; */
	border-top: 2px dashed #ccc;
	margin: 20px 0 0;
	padding: 10px 0;
	justify-content: space-between;
}
.CutomIcon {
	display: flex;
	gap: 10px;
	align-items: center;
}
.NewIconUrl {
	display: flex;
}
.NewIconUrl ul{
	display: flex;
	gap: 10px;
	list-style-type: none;
	align-items: center;
}
.NewIconUrl ul li{
	position: relative;
}

.NewIconUrl ul a img {
	width: 100%;
	max-width: 40px;
	height: auto;
}
.DropLink {
  position: absolute;
  top: 100%;
display: none
}


/*
html[lang="en-US"] .PodCartArea {

	direction: rtl;
}
*/
.PodCartArea a img {
	width: 100%;
	height: auto;
	max-width: 50px;
}
.PodCartArea a img.ReadMore {
	max-width: 110px;
	margin-top: 10px;
}
.category .SliderArea.CatA .SliderContent h3 {
	opacity: 1!important
}
.category .PodCartArea  {
	margin-top: 0;
}
.MobileMenu.active li {
	list-style-type: none;
}


.DropLinkTarget {
  position: absolute;
  width: 100%;
  max-width: 200px;
  background: #fff;
  border: 1px solid #ccc;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
  font-size: 14px;
  margin: 15px 0 0 -9%;
  z-index: 9999;
	border-radius: 8px;
}
.DropLinkTarget p {
	padding: 12px;
	margin: 0;
	font-size: 18px;
}
.DropLinkTarget p br {
	display: none;
}

.DropLinkTarget a{
	font-size: 14px;
	color: #000;
	border-bottom: 1px solid #ccc;
	padding: 14px 10px;
	display: block;
}
.DropLinkTarget a img {
	height: 24px;
	object-fit: contain;
	width: 100%;
}
.DropLinkTarget a:last-child{
	border-bottom: 0;
	padding-bottom: 0;
}

/* Arrow at the top */
.DropLinkTarget::before {
  content: '';
  position: absolute;
  top: -8px;
  right: 0; /* Adjust based on where you want the arrow to appear */
  width: 0;
  height: 0;
  border-left: 8px solid transparent;
  border-right: 8px solid transparent;
  border-bottom: 8px solid #ccc; /* Arrow border color */
}

.DropLinkTarget::after {
	content: '';
	position: absolute;
	top: -7px;
	right: 8px;
	width: 0;
	height: 0;
	border-left: 7px solid transparent;
	border-right: 7px solid transparent;
	border-bottom: 7px solid #fff;
}







html[lang="en-US"] .DropLinkTarget {
  margin: 15px 0 0 0%;
	
}


/* Arrow at the top */
html[lang="en-US"] .DropLinkTarget::before {
  right: auto; /* Adjust based on where you want the arrow to appear */
	left: 0;
}

html[lang="en-US"] .DropLinkTarget::after {
	right: auto;
	left: 8px;
}


html[lang="en-US"] .PagesLink ul li {
	border-left: 0;
    border-right: 3px solid #000;
}

html[lang="en-US"] .PagesLink ul li:last-child{
	border: 0;
}



.langIconw {
	display: flex;
	align-items: center;
} 

.MenuIcon {
	display: flex;
	gap: 10px;
	margin: 0 10px 0 0;
}
.MenuIcon a {
	background-color: #f9f9f9;
	color: #333;
	padding: 0;
	font-size: 14px;
	border: 1px solid #ccc;
	cursor: pointer;
	align-items: center;
	gap: 8px;
	box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08);
	transition: background 0.2s;
	border-radius: 100%;
	width: 40px;
	height: 40px;
	text-align: center;
	display: flex;
	justify-content: center;
}
.MenuIcon a img {
	width: 22px;
	height: 23px;
	object-fit: contain;
}


.VideoCover .PodCartArea {
	margin-top: 0;
}



.ShopList_area {
	    border-bottom: 1px solid #ccc;
    padding: 14px 10px;
}
.ShopList_area h2 {
	padding: 0;
	margin: 0;
	font-size: 15px;
}
.ShopList_area h2 a{
	color: blue;
	font-size: 15px;
}
.ShopList_area p{
	padding: 0;
	margin: 0;
	color: #000;
}
.ShopList_area p a {
    font-size: 14px;
    color: blue;
    display: block;
	padding: 0;
	margin: 0;
	border: 0!important;
	line-height: 14px;
}
.ShopList_area a img {
    width: 70px;
    height: 40px;
    margin: 2px 0 1px;
    object-fit: contain;
}
.ShopList_area a{
	border: 0!important;
		padding: 0;
	margin: 0;
}


h3.IconList {
    display: none;
    justify-content: space-between;
    flex-direction: row-reverse;
    margin: 0 0 30px;
}
.CloseIi {
	display: none
}


.page-id-1351 .GreenBox,
.page-id-1351 .HomeBox {
	display: none!important;
}




@media (max-width:1024px) {
  .CatSidebar {
    width: 100%;
    padding: 0 0 0 0px;
  }
  .SliderArea.CategoryWrap .CatListing {
    width: 100%;
    margin: 30px 0 0;
  }
  .SliderArea.CategoryWrap .SliderBox {
    max-width: 48%;
  }
  .ChooseCat {
    display: flex;
  }
  /*
	.CatSidebar ul {
		display: none;
	}
	.CatSidebar ul.ShowCat{
		display: block;
	}
*/
  .CatSidebar ul {
    display: flex;
    flex-wrap: wrap;
    gap: 7px;
  }
  .CatSidebar ul li {
    border: 0;
    padding: 0;
  }
  .CatSidebar ul li a {
    font-size: 12px;
    color: #000;
    display: block;
    padding: 8px 5px!important;
    border: 1px solid #000!important;
    border-radius: 100px;
    /* text-transform: uppercase; */
  }
  .CatSidebar ul li a:hover, .CatSidebar ul li.active a {
    border: 1px solid rgb(255, 136, 128) !important;
  }
	
	h3.IconList {
    display: flex;
		padding:  0 20px;
		cursor: pointer;

}
	body.single {
    padding: 108px 0 0;
}
.catdetail {
    background: #FFF;
    position: fixed;
    right: 0;
    top: 0;
    z-index: 9999999999;
    height: 100%;
    width: 300px;
    box-shadow: 0 0 10px #000000a6;
	display: none;
	gap:0;
}
	span.CloseIi {
    position: absolute;
    left: 10px;
    background: #000;
    width: 30px;
    height: 30px;
    color: #FFF;
    text-align: center;
    line-height: 30px;
    border-radius: 100%;
    top: 10px;
    cursor: pointer;
		display: block;
}
	.single .PostContent {
		margin: 0!important
	}
	.PostContentArea p:first-child{
		padding-top: 0!important
	}
	
	.catdetail.active_sidebar {
		display: flex;
		flex-direction: column;
		padding:40px 0 0 
	}
	.catdetail.active_sidebar .Listcat a {
    text-align: center;
    padding:14px 10px!important;
    justify-content: center;
    align-items: center;
    border-radius: 0;
		border: 0;
    border-bottom: 1px solid #000;
    width: 100%;
    display: block;
}
}
@media (max-width:768px) {
  .MenuOpen {
    display: block;
    cursor: pointer;
  }
  .closemenu {
    position: absolute;
    top: 10px;
    right: 20px;
    color: #000;
    font-size: 26px;
  }
  a.web_sign_up_btn, .langIcon {
    display: none !important;
  }
  .btngroup.desk {
    display: none;
  }
  a.web_sign_in_btn {
    line-height: 42px;
    height: 42px;
    padding: 0 12px;
    width: 100%;
    margin: 20px 0 0;
    text-align: center;
  }
  #header {
    padding: 20px 0;
  }
  .btngroup {
    padding: 0;
  }
  .logo {
    padding: 0;
	     width: 100%;
       max-width: 68%;
       justify-content: space-between;
  }
	.logo .SiteLogo img {
		    width: 130px;
    object-fit: contain;
	}
  .mobMenu {
    padding: 0;
    margin: 30px 0 0;
    list-style-type: none;
    display: flex;
    flex-direction: column;
  }
  .mobMenu li a {
    display: flex;
    align-items: center;
    gap: 20px;
  }
  .mobMenu li a span {
    padding: 12px 0;
    display: block;
    border-bottom: 1px solid #dcdcdc;
    flex: 1;
    color: #000;
    text-transform: capitalize;
  }
  .site-menu-small.site_menu.custom_menu_ul {
    gap: 10px;
    width: 100%;
    justify-content: center;
  }
  .site-menu-small.site_menu.custom_menu_ul li a {
    gap: 6px;
    font-size: 16px;
    display: flex;
    flex-direction: column;
    text-align: center;
  }
  .StannelAd {
    display: flex;
    gap: 15px;
    width: 100%;
    flex-direction: column;
  }
  .AdBoxssd {
    max-width: 100%;
  }
  .fl {
    width: 100%;
    max-width: 100%;
    padding: 0;
  }
  /*
	.PostContentArea p img {

	width: 50%;
}
*/
  .fl.f12 {
    max-width: 100%;
    padding: 0;
  }
  #comments {
    margin-top: 15px;
    max-width: 100%;
    margin-inline: auto;
    padding: 0;
  }
  .comments-area article header cite, .comments-area article header time {
    margin-right: 0 !important;
    margin-left: auto !important;
    font-size: 12px;
  }
  .comment-form textarea {
    height: 100px !important;
  }
  .comment-form p {
    margin: 10px 0 0;
    gap: 0;
  }
  #comments label {
    margin: 0 0 5px !important;
  }
  .comment-respond {
    padding: 15px;
  }
  .comment {
    margin-bottom: 10px;
    padding: 15px;
  }
  .comment-form input[type="text"], .comment-form input[type="email"], .comment-form input[type="url"], .comment-form textarea {
    margin-bottom: 0;
  }
  .CatListing .SliderBox {
    max-width: 100%;
    width: 100%;
  }
  .search-results #searchform div {
    gap: 10px;
    flex-direction: column;
  }
  .search-results #searchform div input[type='text'] {
    width: 100%;
  }
  .search-results #searchform div input[type='submit'] {
    width: 100%;
  }
	/*blog page css */
	body {
    margin: 0;
}
.HeaderWrap {
    padding-right: 10px;
}
	.SliderArea{
		margin-top:0;
	}
#header {
    transition: none;
}
    #footer .footerWrap .fl.f12 {
        padding-left: 30px;
    }
    #footer {
    overflow: hidden;
}
section.category_area {
    overflow: hidden;
}
.SliderArea h2 {
    text-align: center;
    margin-top: 20px;
}
.StannelAd {
        padding: 0 !important;
        margin-top: 0;
    }
    .StannelAd .AdBoxssd h3{
    	margin-top: 0;
    }
   .AdBoxssd {
    padding: 0;
   }
   .category-slider.owl-carousel.owl-rtl .owl-item {
    float: left;
}
	
	.PagesLink ul li {
    border-left: 1px solid #000!important;
    padding:0px 0!important;
}
	.PagesLink ul li a {
		 padding:2px 0!important;
	}
	
	.menuLogo img {
		height: 30px;
		object-fit: contain;
	}
	.stannel_popup_content, .stannel_popup_content2, .stannel_popup_content4 {

    flex-direction: column;
}
}
@media (max-width:640px) {
  .SliderBox .BoxPix a img, .AdBoxssd img {
    height: 100%;
  }
  /*
	.PostContentArea p img {
	height: 140px;
	width: 50%;
}
*/
  .SliderArea.CategoryWrap .SliderBox {
    max-width: 100%;
  }
  .SliderArea.CategoryWrap .SliderBox .BoxPix a img {
    height: 100%;
  }
  .SliderArea h2,
	.single .SliderArea h2{
/*
    margin: 0 10px 9px 10px;
    font-size: 14px;
*/
    line-height: 26px;
    padding: 0 10px;
	  font-size: 18px;
  }
  .category_area .container {
    padding: 0;
  }
  .PostContent .container {
    padding: 0;
  }
  .PostWrap {
    padding: 0;
  }
  .SinglePostWrap {
    padding: 16px;
    border-bottom: 1px solid #eee;
  }
  .catdetail {
    gap: 7px;
    padding: 0 10px;
  }
  .CateSlli a {
    padding:8px 16px;
    border: 1px solid #000;
    font-size: 13px;
  }
  /*
	.SliderArea {
	margin: 20px 0 30px;
}
*/
  .Catstiky .container {
    padding: 0;
  }
  .SliderBox {
    padding: 0;
  }
  a.ViewMore {
    padding: 8px 21px !important;
    font-size: 12px;
    opacity: 0;
    visibility: hidden;
  }
  .PostContent {
    padding: 0;
  }
  .StannelAd {
    padding: 10px;
  }
  .SliderArea.CategoryWrap {
    padding: 20px;
  }
  .Catstiky {
    top: 81px;
	padding-top:50px; 
  }
  .CateSlli .owl-next, .CateSlli .owl-prev {
    background-size: 28px !important;
  }
  .CateSlli .owl-prev {
    left: 0;
  }
  .CateSlli .owl-next {
    right: 0;
  }
  .single .PostContent {
    margin: 40px 0 0;
  }
  .activity_feed_content_image img {
    height: 190px;
  }
  html[lang="en-US"] .logo {
    padding: 0;
  }
/*   .SliderBox h3 {
    opacity: 0;
  } */
  .category .SliderBox h3 {
    opacity: 1;
  }
  .active.center .SliderBox h3 {
    opacity: 1;
  }
  .SliderBox h3 a {
    padding: 0
  }
  .single-item {
    padding: 0;
  }
	.Ivideo {
	padding: 20px;
}
	.Ivideo iframe {
	width: 100%;
	height: 210px;

}
	
	.PodCartArea {
		opacity: 1;
	}
		.owl-item.active.center .PodCartArea {
		opacity: 	1;
	}
	.category .CatListing .PodCartArea {
	opacity: 1;
}
	
	.DropLinkTarget {

	margin: 15px 0 0 -46%;
}
	.SliderBox {
		min-height: auto;
	}
	.MenuIcon {
		display: none;
	}
	.PodCartArea a img {

	max-width: 30px;
}
	.PodCartArea a img.ReadMore {
	max-width: 80px;
}
.SliderBox .BoxPix a img {
	height: auto;
	object-fit: cover;
}
	
	.TravelPanel.ProCard .button-type img {
    width: 230px!important;
    height: auto!important;
		filter: brightness(0) invert(1);
    
}
	
	.TravelPanel.ProCard .Tbox:after {
    background: #00000063;
    height: 100%;
    width: 100%;
    content: "";
    position: absolute;
    left: 0;
    top: 0;
}
	

}

.TravelPanel.ProCard .BoxAr {
	margin:0 auto;
}

	.TravelPanel.ProCard .BoxAr p {
		text-shadow:none!important
	}

html[lang="en-US"] .hhe,
html[lang="he-IL"] .hen{
	display: none;
}