@charset "UTF-8";

@import url("https://fonts.googleapis.com/css?family=Rubik:400,400i,500,600,700,800display=swap");
/***transition***/
:root {
  --main-color: #030f22;
  --heading-color: #201654;
  --paragraph-color: #565872;
  --search-bg-color: #086ed5;
  --heading-font: "Rubik", sans-serif;
  --body-font: "Rubik", sans-serif;
  --body-font-size: 16px;
  --line-height30: 1.7;
}

.home-food {
  --main-color: #8cc63f;
  --heading-color: #201654;
  --search-bg-color: #7eb239;
}

html {
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
  overflow-x: hidden;
  font-family: var(--body-font);
}

* {
  box-sizing: border-box;
  outline: none;
  -moz-osx-font-smoothing: grayscale;
  /* Firefox */
  -webkit-font-smoothing: antialiased;
  /* WebKit  */
}

body {
  margin: 0;
  font-family: var(--body-font);
  line-height: var(--line-height30);
  font-size: var(--body-font-size);
}

h1 {
  font-size: 60px;
  line-height: 1.3333333333;
}

h2 {
  font-size: 40px;
  line-height: 1.3380952381;
}

h3 {
  font-size: 36px;
  line-height: 1.3833333333;
}

h4 {
  font-size: 30px;
  line-height: 1.3380952381;
}

h5 {
  font-size: 24px;
  line-height: 1.3380952381;
}

h6 {
  font-size: 18px;
  line-height: 1.3380952381;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  color: var(--heading-color);
  font-family: var(--heading-font);
  font-weight: 500;
}

p {
  color: var(--paragraph-color);
  -webkit-hyphens: auto;
  hyphens: auto;
  margin-bottom: 10px;
}

a {
  color: inherit;
  text-decoration: none;
  transition: 0.4s;
}

a,
a:hover,
a:focus,
a:active {
  text-decoration: none;
  outline: none;
  color: inherit;
}

a:hover {
  color: #14a658;
}
.single-post-wrap.style-white .details .title a:hover{color:#fff}
pre {
  word-break: break-word;
}

a i {
  padding: 0 2px;
}

img {
  max-width: 100%;
}

ol {
  counter-reset: counter;
  padding-left: 0;
}

ol li {
  list-style: none;
  margin-bottom: 1rem;
}

ol li:before {
  counter-increment: counter;
  content: counter(counter);
  font-weight: 500;
  margin-right: 10px;
}

button:hover,
button:active,
button:focus {
  outline: 0;
}

/*input and button type focus outline disable*/
input[type=text]:focus,
input[type=email]:focus,
input[type=url]:focus,
input[type=password]:focus,
input[type=search]:focus,
input[type=tel]:focus,
input[type=number]:focus,
textarea:focus,
input[type=button]:focus,
input[type=reset]:focus,
input[type=submit]:focus,
select:focus {
  outline: none;
  box-shadow: none;
  border: 1px solid #ddd;
}

.no-gutter.row,
.no-gutter.container,
.no-gutter.container-fluid {
  margin-left: 0;
  margin-right: 0;
  padding-left: 0;
  padding-right: 0;
}

.no-gutter > [class^=col-] {
  padding-left: 0;
  padding-right: 0;
}

.no-gutter[class^=col-] {
  padding-left: 0;
  padding-right: 0;
}

.h-100vh {
  height: 100vh;
}

code {
  color: #faa603;
}

.check-list {
  margin: 0;
  padding: 0;
  list-style: none;
}
.check-list li {
  display: block;
  padding-left: 20px;
  position: relative;
  z-index: 0;
}
.check-list li:after {
  position: absolute;
  left: 0;
  top: 0;
  font-family: "fontawesome";
  content: "";
  color: var(--main-color);
}

.site-main .comment-navigation,
.site-main .posts-navigation,
.site-main .post-navigation {
  clear: both;
}

.comment-navigation .nav-previous,
.posts-navigation .nav-previous,
.post-navigation .nav-previous {
  float: left;
  width: 50%;
}

.comment-navigation .nav-next,
.posts-navigation .nav-next,
.post-navigation .nav-next {
  float: right;
  text-align: right;
  width: 50%;
}

.comment-navigation .nav-previous > a,
.posts-navigation .nav-previous > a,
.post-navigation .nav-previous > a,
.comment-navigation .nav-next > a,
.posts-navigation .nav-next > a,
.post-navigation .nav-next > a {
  transition: 0.3s ease-in;
}

.comment-navigation .nav-previous:hover > a,
.posts-navigation .nav-previous:hover > a,
.post-navigation .nav-previous:hover > a,
.comment-navigation .nav-next:hover > a,
.posts-navigation .nav-next:hover > a,
.post-navigation .nav-next:hover > a {
  color: var(--main-color);
}

.comment-list li {
  list-style: none;
}

.h-100vh {
  height: 100vh;
}

.position-relative {
  position: relative;
}

/*--------------------------------------------------------------
# Accessibility
--------------------------------------------------------------*/
/* Text meant only for screen readers. */
.screen-reader-text {
  border: 0;
  clip: rect(1px, 1px, 1px, 1px);
  -webkit-clip-path: inset(50%);
          clip-path: inset(50%);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute !important;
  width: 1px;
  word-wrap: normal !important;
  /* Many screen reader and browser combinations announce broken words as they would appear visually. */
}

.screen-reader-text:focus {
  background-color: #f1f1f1;
  border-radius: 3px;
  box-shadow: 0 0 2px 2px rgba(0, 0, 0, 0.6);
  clip: auto !important;
  -webkit-clip-path: none;
          clip-path: none;
  color: #21759b;
  display: block;
  font-size: 15px;
  font-size: 0.875rem;
  font-weight: bold;
  height: auto;
  left: 5px;
  line-height: normal;
  padding: 15px 23px 14px;
  text-decoration: none;
  top: 5px;
  width: auto;
  z-index: 100000;
  /* Above WP toolbar. */
}

/* Do not show the outline on the skip link target. */
#content[tabindex="-1"]:focus {
  outline: 0;
}

/*--------------------------------------------------------------
# Alignments
--------------------------------------------------------------*/
.alignleft {
  float: left;
  clear: both;
  margin-right: 20px;
}

.alignright {
  float: right;
  clear: both;
  margin-left: 20px;
}

.aligncenter {
  clear: both;
  display: block;
  margin: 0 auto 1.75em;
}

.alignfull {
  margin: 1.5em 0;
  max-width: 100%;
}

.alignwide {
  max-width: 1100px;
}

/*--------------------------------------------------------------
# Clearings
--------------------------------------------------------------*/
.clear:before,
.clear:after,
.entry-content:before,
.entry-content:after,
.comment-content:before,
.comment-content:after,
.site-header:before,
.site-header:after,
.site-content:before,
.site-content:after,
.site-footer:before,
.site-footer:after {
  content: "";
  display: table;
  table-layout: fixed;
}

.clear:after,
.entry-content:after,
.comment-content:after,
.site-header:after,
.site-content:after,
.site-footer:after {
  clear: both;
}

/*--------------------------------------------------------------
## Posts and pages
--------------------------------------------------------------*/
.sticky {
  display: block;
}

.updated:not(.published) {
  display: none;
}

/*--------------------------------------------------------------
# Media
--------------------------------------------------------------*/
.page-content .wp-smiley,
.entry-content .wp-smiley,
.comment-content .wp-smiley {
  border: none;
  margin-bottom: 0;
  margin-top: 0;
  padding: 0;
}

/* Make sure embeds and iframes fit their containers. */
embed,
iframe,
object {
  max-width: 100%;
}

/* Make sure logo link wraps around logo image. */
.custom-logo-link {
  display: inline-block;
}

/*--------------------------------------------------------------
## Captions
--------------------------------------------------------------*/
.wp-caption {
  margin-bottom: 1.5em;
  max-width: 100%;
  clear: both;
}

.wp-caption img[class*=wp-image-] {
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.wp-caption .wp-caption-text {
  margin: 0.8075em 0;
}

.wp-caption-text {
  text-align: center;
}

/*----------------------------------------
    # Unit test
------------------------------------------*/
.wp-link-pages a {
  margin: 0 5px;
  transition: 0.3s ease-in;
}

.wp-link-pages {
  margin-bottom: 30px;
  margin-top: 25px;
}

.wp-link-pages span,
.wp-link-pages a {
  border: 1px solid #e2e2e2;
  padding: 5px 15px;
  display: inline-block;
}

.wp-link-pages .current,
.wp-link-pages a:hover {
  background-color: var(--main-color);
  color: #fff;
  border-color: var(--main-color);
}

.wp-link-pages span:first-child {
  margin-right: 5px;
}

dl,
ol,
ul {
  padding-left: 15px;
}

.post-password-form input {
  display: block;
  border: 1px solid #e2e2e2;
  height: 50px;
  border-radius: 3px;
  padding: 0 20px;
}

.post-password-form label {
  font-weight: 600;
  color: #333;
}

.post-password-form input[type=submit] {
  width: 100px;
  height: 50px;
  background-color: var(--main-color);
  color: #fff;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 1px;
  border: none;
  cursor: pointer;
  transition: 0.3s ease-in;
}

.post-password-form input[type=submit]:hover {
  background-color: #121A2F;
}

.footer-widget .table td,
.footer-widget .table th {
  padding: 0.5rem !important;
}

.custom-gutters-14 > .col,
.custom-gutters-14 > [class*=col-] {
  padding-right: 7px;
  padding-left: 7px;
}

.custom-gutters-20 > .col,
.custom-gutters-20 > [class*=col-] {
  padding-right: 10px;
  padding-left: 10px;
}

@media all and (min-width: 1600px) {
  .container {
    max-width: 1580px !important;
  }

  .home-food .container {
    max-width: 1170px !important;
  }
}
/*---------------------------------------
    ## Button
---------------------------------------*/
.btn {
  height: 48px;
  line-height: 48px;
  padding: 0 35px;
  overflow: hidden;
  position: relative;
  border: 0;
  transition: all 0.5s ease;
  font-weight: 500;
  font-size: 16px;
  display: inline-block;
  transform: perspective(1px) translateZ(0);
  border-radius: 5px;
}
.btn:focus, .btn:active {
  outline: 0;
  box-shadow: none;
}

.btn-base {
  background: var(--main-color);
  color: #fff;
  border: 0;
}
.btn-base:before {
  content: "";
  position: absolute;
  z-index: -1;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: #283f62;
  transform: scaleX(0);
  transform-origin: 0 50%;
  transition-duration: 0.4s;
}
.btn-base:hover, .btn-base:focus {
  color: #fff;
}
.btn-base:hover:before, .btn-base:focus:before {
  transform: scaleX(1);
}

.btn-white {
  background: #fff;
  color: var(--heading-color);
  border: 0;
}
.btn-white:before {
  content: "";
  position: absolute;
  z-index: -1;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: #283f62;
  transform: scaleX(0);
  transform-origin: 0 50%;
  transition-duration: 0.4s;
}
.btn-white:hover, .btn-white:focus {
  color: #fff;
}
.btn-white:hover:before, .btn-white:focus:before {
  transform: scaleX(1);
}

.btn-border {
  background: #fff;
  color: var(--heading-color);
  border: 2px solid #ced2d8;
  line-height: 44px;
  padding: 0 20px;
  border-radius: 0;
}
.btn-border:before {
  content: "";
  position: absolute;
  z-index: -1;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--main-color);
  transform: scaleX(0);
  transform-origin: 0 50%;
  transition-duration: 0.4s;
}
.btn-border:hover, .btn-border:focus {
  color: #fff;
  border: 2px solid var(--main-color);
}
.btn-border:hover:before, .btn-border:focus:before {
  transform: scaleX(1);
}

.btn-blue {
  background: #283f62;
  color: #fff;
  border: 0;
}
.btn-blue:before {
  content: "";
  position: absolute;
  z-index: -1;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: #030f22;
  transform: scaleX(0);
  transform-origin: 0 50%;
  transition-duration: 0.4s;
}
.btn-blue:hover, .btn-blue:focus {
  color: #fff;
}
.btn-blue:hover:before, .btn-blue:focus:before {
  transform: scaleX(1);
}

.tag-base {
  height: 28px;
  line-height: 28px;
  padding: 0 14px;
  display: inline-block;
  border-radius: 3px;
  font-size: 15px;
}
.tag-base .notice {
  height: 28px;
  width: 28px;
  line-height: 28px;
  display: inline-block;
  text-align: center;
  border-radius: 50%;
  font-size: 14px;
  position: absolute;
  right: -9px;
  top: -10px;
}

.tag-blue {
  background: var(--main-color);
  color: #fff;
}
.tag-blue:hover {
  background: #0f68c0;
  color: #fff;
}
.tag-blue .notice {
  background: #0f68c0;
}

.tag-light-blue {
  background: #e6f2fd;
  color: var(--main-color);
}
.tag-light-blue:hover {
  background: #cee3f6;
  color: #fff;
}
.tag-light-blue .notice {
  background: #cee3f6;
}

.tag-orange {
  background: #fa6400;
  color: #fff;
}
.tag-orange:hover {
  background: #fa2000;
  color: #fff;
}
.tag-orange .notice {
  background: #fa2000;
}

.tag-purple {
  background: #7530ff;
  color: #fff;
}
.tag-purple:hover {
  background: #6227da;
  color: #fff;
}
.tag-purple .notice {
  background: #6227da;
}

.tag-red {
  background: #ed1c24;
  color: #fff;
}
.tag-red:hover {
  background: #d21c23;
  color: #fff;
}
.tag-red .notice {
  background: #d21c23;
}

.tag-green {
  background: #00bff3;
  color: #fff;
}
.tag-green:hover {
  background: #18a9d1;
  color: #fff;
}
.tag-green .notice {
  background: #18a9d1;
}

.tag-light-green {
  background: #8dc63f;
  color: #fff;
}
.tag-light-green:hover {
  background: #74ad27;
  color: #fff;
}
.tag-light-green .notice {
  background: #74ad27;
}

.tag-yellow {
  background: #f3b500;
  color: #fff;
}
.tag-yellow:hover {
  background: #d4a10e;
  color: #fff;
}
.tag-yellow .notice {
  background: #d4a10e;
}

/*---------------------------------------
    ## Post meta
---------------------------------------*/
.post-meta-single p {
  font-size: 14px;
}
.post-meta-single p i {
  margin-right: 5px;
}
.post-meta-single ul {
  margin: 0;
  padding: 0;
}
.post-meta-single ul li {
  display: inline-block;
  margin: 0 6px;
  color: var(--heading-color);
  font-size: 14px;
}
.post-meta-single ul li i {
  margin-right: 5px;
}
.post-meta-single ul li:first-child {
  margin-left: 0;
}
.post-meta-single ul li:last-child {
  margin-right: 0;
}

/*------------------------------------------------
    ## Section title
------------------------------------------------*/
.section-title {
  position: relative;
  padding-bottom: 34px;
}
.section-title .title {
  margin-bottom: 0;
  font-size: 20px;
  display: inline-block;
  color: #201654;
}
.section-title.style-two {
  padding-bottom: 15px;
  margin-bottom: 45px;
  border-bottom: 1px solid #b3b3b3;
}
.section-title.style-white .title {
  color: #fff;
}
.section-title.style-white p {
  color: #fff;
}
.section-title.style-white .btn-read-more {
  color: #fff;
}

/*------------------------------------------------
    ## Back Top
------------------------------------------------*/
.back-to-top {
  position: fixed;
  right: 30px;
  bottom: 30px;
  width: 48px;
  height: 48px;
  border-radius: 4px;
  color: #fff;
  background-color: var(--main-color);
  text-align: center;
  line-height: 49px;
  z-index: 99;
  font-size: 16px;
  transition: 0.4s;
  cursor: pointer;
  display: none;
  animation: backto-top-bounce 4s infinite ease-in-out;
}
.back-to-top:hover {
  box-shadow: 0px 3px 7px 0px rgba(254, 242, 46, 0.35);
}
@keyframes backto-top-bounce {
  0% {
    transform: translateY(-5px);
  }
  50% {
    transform: translateY(10px);
  }
  100% {
    transform: translateY(-5px);
  }
}
/*------------------------------------------------
    ## social area
------------------------------------------------*/
.social-area {
  padding: 0;
  margin: 0;
}
.social-area li {
  list-style: none;
  display: inline-block;
  margin: 0 7px;
}
.social-area li a {
  color: rgba(255, 255, 255, 0.8);
}
.social-area li a:hover {
  color: var(--main-color);
}
.social-area li:first-child {
  margin-left: 0;
}
.social-area li:last-child {
  margin-right: 0;
}

.social-area-2 li {
  margin: 0 6px;
}
.social-area-2 li a {
  color: #ffffff;
  width: 32px;
  height: 32px;
  display: inline-block;
  line-height: 33px;
  text-align: center;
  border-radius: 50%;
}
.social-area-2 li a.facebook-icon {
  background: #3b5998;
}
.social-area-2 li a.twitter-icon {
  background: #55acee;
}
.social-area-2 li a.youtube-icon {
  background: #d42428;
}
.social-area-2 li a.instagram-icon {
  background: #6c27b3;
}
.social-area-2 li a.google-icon {
  background: #dc4e41;
}

.social-area-3 li {
  margin: 0 6px;
}
.social-area-3 li a {
  color: #ffffff;
  width: 40px;
  height: 40px;
  display: inline-block;
  line-height: 40px;
  text-align: center;
  border-radius: 50%;
  border: 1px solid #d7d7d7;
  color: #5e697e;
}
.social-area-3 li a:hover {
  color: var(--main-color);
  border: 1px solid var(--main-color);
}

.social-area-list ul {
  margin: 0;
  padding: 0;
}
.social-area-list ul li {
  list-style: none;
  border-bottom: 1px solid #ebebeb;
  padding-bottom: 5px;
  margin-bottom: 5px;
}
.social-area-list ul li .social-icon {
  height: 40px;
  width: 40px;
  line-height: 40px;
  text-align: center;
  border-radius: 50%;
  display: inline-block;
  color: #fff;
}
.social-area-list ul li a {
  font-size: 14px;
}
.social-area-list ul li .facebook i {
  background: #3b5998;
}
.social-area-list ul li .twitter i {
  background: #55acee;
}
.social-area-list ul li .youtube i {
  background: #d42428;
}
.social-area-list ul li .instagram i {
  background: #6c27b3;
}
.social-area-list ul li .google-plus i {
  background: #dc4e41;
}
.social-area-list ul li span {
  margin-left: 18px;
}
.social-area-list ul li .fa-plus {
  color: #3b5998;
  font-size: 14px;
  float: right;
  padding-top: 13px;
  background: none !important;
}
.social-area-list ul li .sr-intro {
  color: #3b5998;
  font-size: 14px;
  float: right;
  margin: 8px 10px 0 0;
  padding-left: 6px;
  background: none !important;
  color: #fff;
  border-left: 1px solid rgba(255, 255, 255, 0.8);
}
.social-area-list ul li:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: 0;
}
.social-area-list.style-two ul {
  margin: 0;
  padding: 0;
}
.social-area-list.style-two ul li {
  list-style: none;
  border-bottom: 0;
  padding-bottom: 0;
  margin-bottom: 10px;
}
.social-area-list.style-two ul li .social-icon {
  height: 40px;
  width: 40px;
  line-height: 40px;
  text-align: center;
  border-radius: 50%;
  display: inline-block;
  color: #fff;
}
.social-area-list.style-two ul li a {
  display: block;
  color: #fff;
}
.social-area-list.style-two ul li .facebook {
  background: #3b5998;
}
.social-area-list.style-two ul li .twitter {
  background: #55acee;
}
.social-area-list.style-two ul li .youtube {
  background: #d42428;
}
.social-area-list.style-two ul li .instagram {
  background: #6c27b3;
}
.social-area-list.style-two ul li span {
  margin-left: 8px;
}
.social-area-list.style-two ul li .fa-plus {
  color: #3b5998;
  font-size: 14px;
  float: right;
  padding-top: 13px;
  background: none !important;
}
.social-area-list.style-two ul li:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: 0;
}

.post-slider .owl-nav {
  display: inline-block;
  position: absolute;
  top: -63px;
  right: -4px;
}
.post-slider .owl-nav button {
  margin-left: 21px;
  background: transparent;
  border: 0;
  cursor: pointer;
  padding: 0;
  color: #030f22;
  font-size: 20px;
}

/*-----------------------------------------
    ## Preloader Css
-------------------------------------------*/
.pre-wrap {
  position: fixed;
  content: "";
  transform: translate(-100%, -240%);
  font-size: 62px;
}

.preloader-inner {
  position: fixed;
  left: 0;
  top: 0;
  z-index: 999999999999;
  background: rgba(16, 41, 80, 0.95);
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.preloader-inner .cancel-preloader {
  position: absolute;
  bottom: 30px;
  right: 30px;
}
.preloader-inner .cancel-preloader a {
  background-color: #fff;
  font-weight: 600;
  text-transform: capitalize;
  color: var(--main-color);
  width: 200px;
  height: 50px;
  text-align: center;
  line-height: 50px;
  border-radius: 30px;
  display: block;
  transition: all 0.4s ease;
}
.preloader-inner .cancel-preloader a:hover {
  background-color: var(--heading-color);
  color: #fff;
}

.spinner {
  margin: 120px auto;
  width: 60px;
  height: 60px;
  position: relative;
  text-align: center;
  animation: sk-rotate 2s infinite linear;
}

.dot1, .dot2 {
  width: 60%;
  height: 60%;
  display: inline-block;
  position: absolute;
  top: 0;
  background-color: var(--main-color);
  border-radius: 100%;
  animation: sk-bounce 2s infinite ease-in-out;
}

.dot2 {
  top: auto;
  bottom: 0;
  animation-delay: -1s;
}
@keyframes sk-rotate {
  100% {
    transform: rotate(360deg);
    -webkit-transform: rotate(360deg);
  }
}
@keyframes sk-bounce {
  0%, 100% {
    transform: scale(0);
    -webkit-transform: scale(0);
  }
  50% {
    transform: scale(1);
    -webkit-transform: scale(1);
  }
}
/*----------------------------------------
  ## Search Popup
----------------------------------------*/
.td-search-popup.active .search-form {
  visibility: visible;
  opacity: 1;
}

.td-search-popup .search-form {
  min-width: 600px;
  position: absolute;
  position: fixed;
  top: 50%;
  left: 50%;
  transition: 0.5s ease;
  visibility: hidden;
  opacity: 0;
  /* IE 9 */
  /* Chrome, Safari, Opera */
  transform: translate(-50%, -50%);
  z-index: 999;
}

.td-search-popup .search-form .form-group .form-control {
  border: none;
  border-top-right-radius: 6px;
  border-bottom-right-radius: 6px;
  height: 54px;
  line-height: 54px;
  padding: 0 100px 0 30px;
  font-size: 18px;
}

.td-search-popup .search-form .submit-btn {
  position: absolute;
  right: 0;
  top: 0;
  width: 60px;
  height: 54px;
  border: 0;
  border-radius: 0 5px 5px 0;
  background: var(--main-color);
  color: #fff;
  transition: 0.4s;
  padding: 0;
  text-align: center;
  cursor: pointer;
  z-index: 1;
}
.td-search-popup .search-form .submit-btn:hover:before {
  opacity: 0.5;
}

.body-overlay {
  position: fixed;
  width: 100%;
  height: 100%;
  display: block;
  background: #1c3459;
  z-index: 991;
  content: "";
  left: 0;
  top: 0;
  visibility: hidden;
  opacity: 0;
  transition: all 0.3s ease-in;
  cursor: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABUAAAAVBAMAAABbObilAAAAMFBMVEVMaXH////////////////////////////////////////////////////////////6w4mEAAAAD3RSTlMAlAX+BKLcA5+b6hJ7foD4ZP1OAAAAkUlEQVR4XkWPoQ3CUBQAL4SktoKAbCUjgAKLJZ2ABYosngTJCHSD6joUI6BZgqSoB/+Shqde7sS9x3OGk81fdO+texMtRVTia+TsQtHEUJLdohJfgNNPJHyEJPZTsWLoxShqsWITazEwqePAn69Sw2TUxk1+euPis3EwaXy8RMHSZBIlRcKKnC5hRctjMf57/wJbBlAIs9k1BAAAAABJRU5ErkJggg==), progress;
}

.body-overlay.active {
  visibility: visible;
  opacity: 0.9;
}

/*********** Magnific-popup style **************/
.mfp-zoom-in {
  /* animate in */
  /* animate out */
}
.mfp-zoom-in .mfp-content {
  opacity: 0;
  transition: all 0.5s ease-in-out;
  transform: scale(0.7);
}
.mfp-zoom-in.mfp-bg {
  opacity: 0;
  transition: all 0.5s ease-in-out;
}
.mfp-zoom-in.mfp-ready .mfp-content {
  opacity: 1;
  transform: scale(1);
}
.mfp-zoom-in.mfp-ready.mfp-bg {
  opacity: 0.7;
}
.mfp-zoom-in.mfp-removing .mfp-content {
  transform: scale(0.7);
  opacity: 0;
}
.mfp-zoom-in.mfp-removing.mfp-bg {
  opacity: 0;
}

/****** video play btn *******/
.play-btn-large {
  height: 80px;
  width: 80px;
  line-height: 80px;
  text-align: center;
  padding-left: 3px;
  border-radius: 50%;
  display: inline-block;
  color: #fff;
  font-size: 20px;
}

.play-btn-medium {
  height: 65px;
  width: 65px;
  line-height: 65px;
  text-align: center;
  padding-left: 3px;
  border-radius: 50%;
  display: inline-block;
  color: #fff;
  font-size: 20px;
}

.play-btn-small {
  height: 40px;
  width: 40px;
  line-height: 40px;
  text-align: center;
  padding-left: 3px;
  border-radius: 50%;
  display: inline-block;
  color: #fff;
  font-size: 14px;
}

.play-btn-yellow {
  background: rgba(255, 190, 0, 0.8);
  color: #fff;
}
.play-btn-yellow:hover {
  color: #fff;
}

.play-btn-gray {
  background: rgba(0, 0, 0, 0.4);
  color: #fff;
}
.play-btn-gray:hover {
  color: #fff;
}

.play-btn-blue {
  background: var(--main-color);
  color: #fff;
}
.play-btn-blue:hover {
  color: #fff;
}

/*--------------------------------------------------------------
# Globals
--------------------------------------------------------------*/
.bg-base {
  background: var(--main-color);
}

.bg-black {
  background: #102950;
}

.bg-sky {
  background: #f7fbff;
}

.bg-yellow {
  background: #11af4b;
}

.bg-blue {
  background: #030f22;
}

.bg-after-sky {
  position: relative;
}
.bg-after-sky:after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  background: #f7fbff;
  z-index: -1;
}

.pd-top-50 {
  padding-top: 50px;
}

.pd-top-70 {
  padding-top: 70px;
}

.pd-top-75 {
  padding-top: 75px;
}

.pd-top-80 {
  padding-top: 80px;
}

.pd-top-82 {
  padding-top: 82px;
}

.pd-top-90 {
  padding-top: 90px;
}

.pd-top-95 {
  padding-top: 95px;
}

.pd-top-100 {
  padding-top: 100px;
}

.pd-bottom-50 {
  padding-bottom: 50px;
}

.pd-bottom-60 {
  padding-bottom: 60px;
}

.pd-bottom-70 {
  padding-bottom: 70px;
}

.pd-bottom-80 {
  padding-bottom: 80px;
}

.pd-bottom-90 {
  padding-bottom: 90px;
}

.pd-bottom-100 {
  padding-bottom: 100px;
}

.pd-bottom-150 {
  padding-bottom: 150px;
}

.mg-top--100 {
  margin-top: -100px;
}

/*------------------------------------------------
    ## widget-style
------------------------------------------------*/
.category-sitebar .widget {
  margin-bottom: 55px;
}
.category-sitebar .widget-title {
  border-bottom: 1px solid #b3b3b3;
  padding-bottom: 16px;
  margin-bottom: 20px;
}

.widget_tag_cloud .tagcloud a {
  margin-right: 5px;
  margin-bottom: 10px;
  display: inline-block;
  transition: 0.4s;
  border: 1px solid #393e75;
  height: 36px;
  line-height: 36px;
  padding: 0 15px;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.8);
}
.widget_tag_cloud .tagcloud a:hover {
  background: var(--main-color);
  border: 1px solid var(--main-color);
}

.widget-category .row {
  padding: 0 8px;
}

.widget-author {
  border: 1px solid #d7d7d7;
  padding: 40px 30px;
  border-radius: 8px;
}
.widget-author .thumb {
  margin-bottom: 15px;
}
.widget-author .thumb img {
  height: 150px;
  width: 150px;
  border-radius: 50%;
  display: inline-block;
  border: 10px solid #f3f9eb;
}
.widget-author .details h5 {
  margin-bottom: 15px;
}
.widget-author .details p {
  margin-bottom: 20px;
}
.widget-author .details ul {
  margin: 0;
  padding: 0;
}
.widget-author .details ul li {
  display: inline-block;
  list-style: none;
  margin: 0 8px;
  color: #9ba1b0;
  line-height: 1;
}
.widget-author .details ul li a {
  font-size: 15px;
}
.widget-author .details .btn {
  border-radius: 40px;
  margin-top: 30px;
}

.widget_nav_menu_food {
  margin: 0;
  padding: 0;
}
.widget_nav_menu_food li {
  position: relative;
  list-style: none;
  color: rgba(255, 255, 255, 0.7);
  padding-left: 17px;
  margin-bottom: 6px;
}
.widget_nav_menu_food li:before {
  content: "";
  position: absolute;
  left: 0;
  top: 9px;
  height: 8px;
  width: 8px;
  border-radius: 50%;
  background: #fff;
  transition: 0.4s;
}
.widget_nav_menu_food li:last-child {
  margin-bottom: 0;
}
.widget_nav_menu_food li:hover:before {
  background: var(--main-color);
}

/*----------------------------------------------
    # top bar 
----------------------------------------------*/
.topbar-area {
  background: #1c3459;
  padding: 18px 0;
}
.topbar-area .topbar-menu ul {
  padding: 0;
  margin: 0;
  display: inline-block;
}
.topbar-area .topbar-menu ul li {
  display: inline-block;
  margin: 0 8px;
}
.topbar-area .topbar-menu ul li a {
  color: rgba(255, 255, 255, 0.8);
  font-size: 14px;
}
.topbar-area .topbar-menu ul li a:hover {
  color: var(--main-color);
}
.topbar-area .topbar-menu ul li:first-child {
  margin-left: 0;
}
.topbar-area .topbar-menu ul li:last-child {
  margin-right: 0;
}
.topbar-area .lang-single-inner {
  display: inline-block;
}
.topbar-area .lang-single-inner .nice-select {
  padding: 0 25px 0 0;
  margin: 0;
  height: auto;
  line-height: 0.6;
  background: transparent;
  color: rgba(255, 255, 255, 0.8);
  border: 0;
}
.topbar-area .lang-single-inner .nice-select ul {
  margin: 0;
  padding: 0;
  margin-top: 6px;
  border-radius: 0;
}
.topbar-area .lang-single-inner .nice-select ul li {
  display: block;
  margin: 0;
  font-size: 13px;
  min-height: 36px;
  line-height: 30px;
  color: var(--main-color);
}
.topbar-area .topbar-social .social-area {
  display: inline-block;
}
.topbar-area .topbar-date {
  display: inline-block;
  color: rgba(255, 255, 255, 0.8);
  font-size: 14px;
  border-right: 1px solid #495d7a;
  padding-right: 20px;
  margin-right: 17px;
}
.topbar-area .topbar-date i {
  margin-right: 6px;
}

/*----------------------------------------------
    # add bar 
----------------------------------------------*/
.adbar-area {
  padding: 25px 0;
}

/*----------------------------------------------
    # Nav bar 
----------------------------------------------*/
.navbar-area {
  padding: 0;
  top: 0;
  z-index: 98;
  width: 100% !important;
  left: 0 !important;
  right: 0 !important;
  transition: all 0.4s;
  padding: 0;
}
.navbar-area .navbar {
  background: var(--main-color);
}
.navbar-area .nav-container {
  background-color: transparent;
  transition: all 0.4s;
}
.navbar-area .nav-container .logo a {
  display: inline-block;
}
.navbar-area .nav-container .logo a img {
  height: auto;
}
.navbar-area .nav-container .navbar-collapse .navbar-nav {
  display: block;
  width: 100%;
}
.navbar-area .nav-container .navbar-collapse .navbar-nav li {
  border-left: 1px solid rgba(255, 255, 255, 0.2);
  display: inline-block;
  font-weight: 400;
  line-height: 52px;
  text-transform: capitalize;
}
.navbar-area .nav-container .navbar-collapse .navbar-nav li:first-child {
  border: 0;
  padding-left: 0;
}
.navbar-area .nav-container .navbar-collapse .navbar-nav li a {
  color: #fff;
  font-weight: 400;
  font-size: 15px;
  text-transform: uppercase;
}
.navbar-area .nav-container .navbar-collapse .navbar-nav li:hover a {
  color: #fff;
}
.navbar-area .nav-container .navbar-collapse .navbar-nav li + li {
  margin-left: 17px;
  padding-left: 20px;
}
.navbar-area .nav-container .navbar-collapse .navbar-nav li.menu-item-has-children {
  position: relative;
  z-index: 0;
  padding-right: 14px;
  transition: all 0.4s ease-in;
  z-index: 9;
}
.navbar-area .nav-container .navbar-collapse .navbar-nav li.menu-item-has-children:before {
  content: "";
  position: absolute;
  right: 3px;
  top: 50%;
  height: 10px;
  width: 2px;
  background: #fff;
  transform: translateY(-50%);
  transition: all 0.3s ease-in;
  z-index: -9;
}
.navbar-area .nav-container .navbar-collapse .navbar-nav li.menu-item-has-children:after {
  content: "";
  position: absolute;
  right: -1px;
  top: 26px;
  height: 2px;
  width: 10px;
  background: #fff;
  transform: translateY(-50%);
  transition: all 0.3s ease-in;
  z-index: -9;
}
.navbar-area .nav-container .navbar-collapse .navbar-nav li.menu-item-has-children:hover {
  transition: all 0.4s ease;
}
.navbar-area .nav-container .navbar-collapse .navbar-nav li.menu-item-has-children:hover:before {
  opacity: 0;
}
.navbar-area .nav-container .navbar-collapse .navbar-nav li.menu-item-has-children:hover > .sub-menu {
  visibility: visible;
  opacity: 1;
}
.navbar-area .nav-container .navbar-collapse .navbar-nav li.menu-item-has-children .sub-menu {
  position: absolute;
  text-align: left;
  min-width: 210px;
  margin: 0;
  padding: 0;
  list-style: none;
  left: 0;
  top: 60px;
  box-shadow: 0 0 15px 0 rgba(0, 0, 0, 0.05);
  background-color: #fff;
  z-index: 9;
  overflow: hidden;
  visibility: hidden;
  opacity: 0;
  transition: all 0.4s ease;
  border-radius: 0;
}
.navbar-area .nav-container .navbar-collapse .navbar-nav li.menu-item-has-children .sub-menu.border-bt0 {
  border-bottom: 0px !important;
}
.navbar-area .nav-container .navbar-collapse .navbar-nav li.menu-item-has-children .sub-menu li {
  display: block;
  margin-left: 0;
  line-height: 22px;
  font-size: 15px;
  transition: all 0.4s ease;
  border: 0;
  padding-left: 0;
  border-bottom: 1px solid #f5f5f5;
}
.navbar-area .nav-container .navbar-collapse .navbar-nav li.menu-item-has-children .sub-menu li a {
  display: block;
  padding: 10px 20px;
  white-space: nowrap;
  transition: all 0.3s;
  color: #767575;
  font-size: 14px;
  transition: all 0.4s ease;
  position: relative;
}
.navbar-area .nav-container .navbar-collapse .navbar-nav li.menu-item-has-children .sub-menu li a:before {
  position: absolute;
  left: 17px;
  top: 50%;
  content: "";
  font-family: "fontawesome";
  /* IE 9 */
  /* Chrome, Safari, Opera */
  transform: translateY(-50%);
  visibility: hidden;
  opacity: 0;
  transition: 0.4s;
  color: #fff;
}
.navbar-area .nav-container .navbar-collapse .navbar-nav li.menu-item-has-children .sub-menu li a span {
  background: #ed1c24;
  float: right;
  font-size: 10px;
  line-height: 1;
  color: #fff;
  padding: 4px 5px 3px 5px;
  margin-top: 2px;
}
.navbar-area .nav-container .navbar-collapse .navbar-nav li.menu-item-has-children .sub-menu li:hover {
  background: var(--main-color);
}
.navbar-area .nav-container .navbar-collapse .navbar-nav li.menu-item-has-children .sub-menu li:hover a {
  color: #fff;
  padding: 10px 20px 10px 30px;
}
.navbar-area .nav-container .navbar-collapse .navbar-nav li.menu-item-has-children .sub-menu li:hover a:before {
  visibility: visible;
  opacity: 1;
}
.navbar-area .nav-container .navbar-collapse .navbar-nav li.menu-item-has-children .sub-menu li:last-child {
  border-bottom: 0;
}
.navbar-area .nav-container .navbar-collapse .navbar-nav li.menu-item-has-children .sub-menu .menu-item-has-children {
  position: relative;
  z-index: 0;
  padding-right: 0px;
}
.navbar-area .nav-container .navbar-collapse .navbar-nav li.menu-item-has-children .sub-menu .menu-item-has-children:before {
  position: absolute;
  right: 15px;
  top: 50%;
  content: "";
  font-family: "fontawesome";
  /* IE 9 */
  /* Chrome, Safari, Opera */
  transform: translateY(-50%);
}
.navbar-area .nav-container .navbar-collapse .navbar-nav li.menu-item-has-children .sub-menu .menu-item-has-children > .sub-menu {
  left: 100%;
  top: 20px;
}
.navbar-area .nav-container .navbar-collapse .navbar-nav li.menu-item-has-children .sub-menu .menu-item-has-children > .sub-menu .sub-menu .sub-menu {
  left: auto;
  right: 100%;
}
.navbar-area .nav-container .navbar-collapse .navbar-nav li.menu-item-has-children .sub-menu .menu-item-has-children:hover > .sub-menu {
  visibility: visible;
  opacity: 1;
}
.navbar-area .nav-container .navbar-collapse .navbar-nav li.menu-item-has-children .sub-menu .menu-item-has-children:hover > .sub-menu li:hover:before {
  color: #fff;
}
.navbar-area.navbar-area-2 .nav-container {
  padding: 15px;
}
.navbar-area.navbar-area-2 .topbar-area {
  background: #102950;
}
.navbar-area.navbar-area-2 .navbar {
  background: #fff;
}
.navbar-area.navbar-area-2 .nav-container .navbar-collapse .navbar-nav > li > a {
  color: #121213;
  font-weight: 600;
}
.navbar-area.navbar-area-2 .nav-container .navbar-collapse .navbar-nav > li.menu-item-has-children:before {
  display: none;
}
.navbar-area.navbar-area-2 .nav-container .navbar-collapse .navbar-nav > li.menu-item-has-children:after {
  content: "";
  color: #121213;
  font-family: "fontAwesome";
  top: 0px;
}

.sticky-active {
  animation: 300ms ease-in-out 0s normal none 1 running fadeInDown;
  left: 0;
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 999;
  box-shadow: 0 10px 50px 0 rgba(46, 56, 220, 0.2);
}

/********** navbar right part **********/
.menu-search-inner {
  background: #0f1c2f;
}
.menu-search-inner input {
  height: 48px;
  padding: 0 0 0 20px;
  border: 0 !important;
  background: transparent;
  color: rgba(255, 255, 255, 0.7);
}
.menu-search-inner input::placeholder {
  color: rgba(255, 255, 255, 0.7);
}
.menu-search-inner button {
  height: 48px;
  line-height: 48px;
  border: 0 !important;
  background: transparent;
  padding: 0 18px;
  color: rgba(255, 255, 255, 0.8);
  cursor: pointer;
}

.menu-open {
  opacity: 1;
  margin-right: 0;
  visibility: visible;
}

.bar1 {
  width: 32px;
  height: 2px;
  margin-bottom: 5px;
  position: absolute;
  background: #fff;
  z-index: 9999;
  top: 10px;
  right: -5px;
}

.bar2 {
  width: 24px;
  height: 2px;
  margin-bottom: 5px;
  position: absolute;
  background: #fff;
  z-index: 9999;
  top: 17px;
  right: -5px;
}

.bar3 {
  width: 18px;
  height: 2px;
  margin-bottom: 5px;
  position: absolute;
  background: #fff;
  z-index: 9999;
  top: 24px;
  right: -5px;
}

.responsive-mobile-menu button:focus {
  outline: none;
  border: none;
}

.toggle-btn {
  left: auto;
  right: -10px;
  position: absolute;
  width: 40px;
  height: 40px;
  transition-duration: 0.5s;
  border: 0;
  background: transparent;
  top: 9px;
}
.toggle-btn .icon-left {
  transition-duration: 0.5s;
  position: absolute;
  height: 2px;
  width: 11px;
  top: 18px;
  background-color: #ffffff;
  left: 7px;
}
.toggle-btn .icon-left:before {
  transition-duration: 0.5s;
  position: absolute;
  width: 11px;
  height: 2px;
  background-color: #ffffff;
  content: "";
  top: -7px;
  left: 0;
}
.toggle-btn .icon-left:after {
  transition-duration: 0.5s;
  position: absolute;
  width: 11px;
  height: 2px;
  background-color: #ffffff;
  content: "";
  top: 7px;
  left: 0;
}
.toggle-btn .icon-left:hover {
  cursor: pointer;
}
.toggle-btn .icon-right {
  transition-duration: 0.5s;
  position: absolute;
  height: 2px;
  width: 11px;
  top: 18px;
  background-color: #ffffff;
  left: 18px;
}
.toggle-btn .icon-right:before {
  transition-duration: 0.5s;
  position: absolute;
  width: 11px;
  height: 2px;
  background-color: #ffffff;
  content: "";
  top: -7px;
  left: 0;
}
.toggle-btn .icon-right:after {
  transition-duration: 0.5s;
  position: absolute;
  width: 11px;
  height: 2px;
  background-color: #ffffff;
  content: "";
  top: 7px;
  left: 0;
}
.toggle-btn .icon-right:hover {
  cursor: pointer;
}
.toggle-btn.open .icon-left {
  transition-duration: 0.5s;
  background: transparent;
}
.toggle-btn.open .icon-left:before {
  transform: rotateZ(45deg) scaleX(1.4) translate(2px, 1px);
}
.toggle-btn.open .icon-left:after {
  transform: rotateZ(-45deg) scaleX(1.4) translate(2px, -1px);
}
.toggle-btn.open .icon-right {
  transition-duration: 0.5s;
  background: transparent;
}
.toggle-btn.open .icon-right:before {
  transform: rotateZ(-45deg) scaleX(1.4) translate(-2px, 1px);
}
.toggle-btn.open .icon-right:after {
  transform: rotateZ(45deg) scaleX(1.4) translate(-2px, -1px);
}
.toggle-btn:hover {
  cursor: pointer;
}

.navbar-area-fixed .icon-left {
  background-color: #fff;
}
.navbar-area-fixed .icon-left:before {
  background-color: #fff;
}
.navbar-area-fixed .icon-left:after {
  background-color: #fff;
}
.navbar-area-fixed .icon-right {
  background-color: #fff;
}
.navbar-area-fixed .icon-right:before {
  background-color: #fff;
}
.navbar-area-fixed .icon-right:after {
  background-color: #fff;
}

.nav-right-part-desktop {
  margin-left: 20px;
}

.nav-right-part-mobile {
  display: none;
}

.sopen {
  display: block !important;
}

@media all and (min-width: 992px) {
  .navbar-area-fixed .nav-container .navbar-collapse .navbar-nav li:hover a,
.navbar-area-fixed .nav-container .navbar-collapse .navbar-nav li.menu-item-has-children:before,
.navbar-area-fixed .nav-container .navbar-collapse .navbar-nav li a {
    color: #fff;
  }
}
@media all and (max-width: 991px) {
  .navbar-area .nav-container {
    padding: 15px;
  }

  .nav-right-part {
    margin-right: 50px;
  }

  .nav-right-part-desktop {
    display: none;
  }

  .nav-right-part-mobile {
    display: block;
  }

  .nav-right-part .btn .right {
    padding-left: 5px;
    font-size: 13px;
  }

  .navbar-area .nav-container {
    position: relative;
    z-index: 0;
  }
  .navbar-area .nav-container .navbar-toggler {
    padding: 0px;
  }
  .navbar-area .nav-container .navbar-collapse {
    margin-top: 13px;
    padding-right: 25px;
  }
  .navbar-area .nav-container .navbar-collapse .navbar-nav {
    display: block;
    margin-top: 20px;
  }
  .navbar-area .nav-container .navbar-collapse .navbar-nav li {
    display: block;
    text-align: left;
    line-height: 30px;
    padding: 10px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  }
  .navbar-area .nav-container .navbar-collapse .navbar-nav li a {
    display: block;
  }
  .navbar-area .nav-container .navbar-collapse .navbar-nav li:last-child {
    border-bottom: none;
  }
  .navbar-area .nav-container .navbar-collapse .navbar-nav li + li {
    margin-left: 0;
  }
  .navbar-area .nav-container .navbar-collapse .navbar-nav li.menu-item-has-children:before {
    top: 26px;
    right: 3px !important;
  }
  .navbar-area .nav-container .navbar-collapse .navbar-nav li.menu-item-has-children .sub-menu {
    position: initial;
    display: block;
    width: 100%;
    border-top: none;
    box-shadow: none;
    margin-left: 0;
    padding-bottom: 0;
    height: auto;
    overflow: hidden;
    max-height: 250px;
    overflow-y: scroll;
    background-color: transparent;
    border-radius: 10px;
    padding: 0px;
    border-bottom: none;
    display: none;
    transition: none;
    visibility: visible;
    opacity: 1;
  }
  .navbar-area .nav-container .navbar-collapse .navbar-nav li.menu-item-has-children .sub-menu .sub-menu .menu-item-has-children:before {
    content: "";
  }
  .navbar-area .nav-container .navbar-collapse .navbar-nav li.menu-item-has-children .sub-menu li {
    padding: 0;
  }
  .navbar-area .nav-container .navbar-collapse .navbar-nav li.menu-item-has-children .sub-menu li.menu-item-has-children:hover:before {
    top: 30px;
    color: #fff;
  }
  .navbar-area .nav-container .navbar-collapse .navbar-nav li.menu-item-has-children .sub-menu li + li {
    border-top: none;
  }

  .navbar-area-2 .nav-right-part .header-search {
    color: #102950;
  }

  .navbar-area-2 .toggle-btn .icon-left {
    background-color: #102950;
    left: 7px;
  }
  .navbar-area-2 .toggle-btn .icon-left:before {
    background-color: #102950;
  }
  .navbar-area-2 .toggle-btn .icon-left:after {
    background-color: #102950;
  }
  .navbar-area-2 .toggle-btn .icon-right {
    background-color: #102950;
  }
  .navbar-area-2 .toggle-btn .icon-right:before {
    background-color: #102950;
  }
  .navbar-area-2 .toggle-btn .icon-right:after {
    background-color: #102950;
  }

  .navbar-area .nav-container .navbar-collapse .navbar-nav li.menu-item-has-children .sub-menu li {
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  }

  .navbar-area .nav-container .navbar-collapse .navbar-nav li:first-child {
    padding-left: 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  }

  .navbar-area .nav-container .navbar-collapse .navbar-nav li.menu-item-has-children .sub-menu li a {
    color: #fff;
  }

  .navbar-area .nav-container .navbar-collapse .navbar-nav li {
    border-left: 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  }

  .navbar-area .nav-container .navbar-collapse .navbar-nav li + li {
    margin-left: 0;
    padding-left: 0;
  }

  .navbar-area .nav-container .navbar-collapse {
    padding-right: 0;
  }

  .navbar-area-2 .nav-container .navbar-collapse .navbar-nav li.menu-item-has-children .sub-menu li a {
    color: #102950;
  }
}
/********** banner style ************/
.banner-inner-1 {
  padding-bottom: 43px;
}

.banner-inner {
  padding-bottom: 70px;
}
.banner-inner .thumb {
  position: relative;
}
.banner-inner .thumb img {
  position: relative;
  z-index: 3;
  border-radius: 5px;
}
.banner-inner .thumb.after-left-top {
  margin-left: 30px;
  margin-top: 30px;
}
.banner-inner .thumb.after-left-top:after {
  content: "";
  background: #11af4b;
  position: absolute;
  left: -30px;
  top: -30px;
  width: 100%;
  height: 100%;
  z-index: 0;
  border-radius: 5px;
}
.banner-inner .banner-details {
  margin-left: 50px;
}
.banner-inner .banner-details .post-meta-single {
  margin-bottom: 38px;
}
.banner-inner .banner-details .post-meta-single li {
  color: #ffffff;
}
.banner-inner .banner-details .post-meta-single li .tag-base {
  font-size: 20px;
  height: 42px;
  line-height: 42px;
  padding: 0 28px;
  border-radius: 5px;
}
.banner-inner .banner-details .post-meta-single li.date {
  font-size: 14px;
  margin-left: 17px;
}
.banner-inner .banner-details p {
  color: #fff;
  margin-top: 27px;
}
.banner-inner .banner-details h2 {
  color: #fff;
}
.banner-inner .banner-details .btn {
  margin-top: 32px;
}

.banner-inner-3 {
  margin-bottom: 58px;
}
.banner-inner-3 .thumb {
  margin-bottom: 20px;
  overflow: hidden;
}
.banner-inner-3 .thumb img {
  transform: scale(1.01);
  transition: 0.8s;
}
.banner-inner-3 .thumb:hover img {
  transform: scale(1.06);
}
.banner-inner-3 .author-meta span {
  color: var(--main-color);
}
.banner-inner-3 .author-meta .media-left img {
  border-radius: 50%;
}
.banner-inner-3 .single-post-wrap {
  margin-bottom: 20px;
}
.banner-inner-3 .single-post-wrap.style-overlay-bg .details {
  position: absolute;
  bottom: 0;
  padding: 18px 30px;
  z-index: 4;
  margin: 0;
  border: 5px solid var(--main-color);
  border-top: 0;
  background-color: rgba(0, 0, 0, 0.502);
  border-radius: 0 0 6px 6px;
  width: 100%;
}
.banner-inner-3 .single-post-wrap.style-overlay-bg .details p,
.banner-inner-3 .single-post-wrap.style-overlay-bg .details .title {
  color: #fff;
}

/*---------------------------------------
    ## Single Post Wrap
---------------------------------------*/
.add-area img {
  width: 100%;
}

.single-post-wrap {
  position: relative;
  margin-bottom: 30px;
  transition: 0.4s;
}
.single-post-wrap .thumb {
  position: relative;
  margin-bottom: 10px;
  overflow: hidden;
  border-radius: 5px;
}
ul{margin:0px;padding:0px}
.single-post-wrap .thumb img {
    transition: 0.8s;
    transform: scale(1.01);
    height: 180px;
    object-fit: cover;
    display: block;
    border-radius: 8px;
}
.single-post-wrap .thumb .tag-base {
  position: absolute;
  left: 17px;
  top: 19px;
  z-index: 3;
}
.single-post-wrap .thumb .btn-date {
  position: absolute;
  left: 17px;
  bottom: 19px;
  z-index: 3;
  height: 40px;
  line-height: 41px;
  padding: 0 22px;
  display: inline-block;
  border-radius: 40px;
  background: #fff;
  color: var(--heading-color);
  margin-bottom: 0;
}
.single-post-wrap .thumb .btn-date i {
  margin-right: 5px;
}
.single-post-wrap .thumb .play-btn-large {
  position: absolute;
  left: 50%;
  margin-left: -40px;
  top: 50%;
  margin-top: -40px;
  z-index: 5;
}
.single-post-wrap .thumb .play-btn-medium {
  position: absolute;
  left: 50%;
  margin-left: -32px;
  top: 50%;
  margin-top: -32px;
  z-index: 5;
  opacity: 0.8;
}
.single-post-wrap .thumb .play-btn-small {
  position: absolute;
  left: 50%;
  margin-left: -20px;
  top: 50%;
  margin-top: -20px;
  z-index: 5;
}
.single-post-wrap .details .title {
  margin-bottom: 0;
}
.single-post-wrap .details p {
  margin-bottom: 0;
  margin-top: 16px;
  color: var(--heading-color);
}
.single-post-wrap .details .btn {
  padding: 0 17px;
  height: 44px;
  line-height: 44px;
  font-weight: 400;
}
.single-post-wrap .spw-bottom {
  border-top: 1px solid #e0e0e0;
  margin-top: 15px;
  padding-top: 18px;
}
.single-post-wrap .spw-bottom ul {
  margin: 0;
  padding: 0;
}
.single-post-wrap .spw-bottom ul li {
  display: inline-block;
  margin: 0 5px;
}
.single-post-wrap .spw-bottom ul li:first-child {
  margin-left: 0;
}
.single-post-wrap .spw-bottom ul li:last-child {
  margin-right: 0;
}
.single-post-wrap .spw-bottom ul li p {
  font-size: 14px;
  margin-top: 0;
}
.single-post-wrap .spw-bottom .media .media-left {
  margin-right: 10px;
}
.single-post-wrap .spw-bottom .media .media-left img {
  height: 30px;
  width: 30px;
  border-radius: 50%;
}
.single-post-wrap .spw-bottom .media .media-body p {
  margin: 0;
}
.single-post-wrap:hover .thumb img {
  transform: scale(1.06);
}
.single-post-wrap.style-white .post-meta-single p,
.single-post-wrap.style-white .post-meta-single li {
  color: rgba(255, 255, 255, 0.8);
}
.single-post-wrap.style-white .details .title {
  color: #fff;
}
.single-post-wrap.style-white .details p {
  color: #fff;
}
.single-post-wrap.style-overlay .thumb {
  margin-bottom: 0;
}
.single-post-wrap.style-overlay .thumb img {
  min-height: 119px;
}
.single-post-wrap.style-overlay .thumb:after {
  content: "";
  background: linear-gradient(to top, rgba(32, 22, 84, 0.6) 52%, rgba(0, 0, 100, 0));
  height: 70%;
  left: 0;
  position: absolute;
  bottom: 0;
  border-radius: 5px;
  width: 100%;
  z-index: 3;
  transition: 0.4s;
}
.single-post-wrap.style-overlay .thumb:before {
  content: "";
  background: linear-gradient(to top, rgba(32, 22, 84, 0.38) 52%, rgba(0, 0, 100, 0));
  height: 75%;
  left: 0;
  position: absolute;
  bottom: 0;
  border-radius: 5px;
  width: 100%;
  z-index: 4;
  transition: 0.4s;
  visibility: hidden;
  opacity: 0;
}
.single-post-wrap.style-overlay .details {
  position: absolute;
  bottom: 0;
  padding: 15px;
  z-index: 4;
}
.single-post-wrap.style-overlay .details .title {
  color: #fff;
}
.single-post-wrap.style-overlay .details .title:hover a {
  color: #11af4b;
}
.single-post-wrap.style-overlay .details p {
  color: #fff;
}
.single-post-wrap.style-overlay .post-meta-single {
  margin-bottom: 8px;
}
.single-post-wrap.style-overlay .post-meta-single p {
  margin-bottom: 10px;
}
.single-post-wrap.style-overlay .post-meta-single li {
  color: #fff;
}
.single-post-wrap.style-overlay:hover .thumb:before {
  visibility: visible;
  opacity: 1;
}
.single-post-wrap.style-overlay-bg .thumb {
  margin-bottom: 0;
}
.single-post-wrap.style-overlay-bg .thumb:after {
  content: "";
  background: linear-gradient(to top, rgba(32, 22, 84, 0.3) 52%, rgba(0, 0, 100, 0));
  height: 70%;
  left: 0;
  position: absolute;
  bottom: 0;
  border-radius: 5px;
  width: 100%;
  z-index: 3;
  transition: 0.4s;
}
.single-post-wrap.style-overlay-bg .thumb:before {
  content: "";
  background: linear-gradient(to top, rgba(32, 22, 84, 0.38) 52%, rgba(0, 0, 100, 0));
  height: 75%;
  left: 0;
  position: absolute;
  bottom: 0;
  border-radius: 5px;
  width: 100%;
  z-index: 4;
  transition: 0.4s;
  visibility: hidden;
  opacity: 0;
}
.single-post-wrap.style-overlay-bg .details {
  position: absolute;
  bottom: 0;
  padding: 18px 18px;
  z-index: 4;
  margin: 15px;
  background-color: rgba(255, 255, 255, 0.9);
  border-radius: 8px;
}
.single-post-wrap.style-overlay-bg:hover .thumb:before {
  visibility: visible;
  opacity: 1;
}
.single-post-wrap.style-box {
  border-radius: 5px;
  overflow: hidden;
  background: #fafafa;
}
.single-post-wrap.style-box .thumb {
  margin-bottom: 0;
  border-radius: 0;
}
.single-post-wrap.style-box .details {
  padding: 25px;
}
.single-post-wrap.style-box:hover {
  box-shadow: 0px 3px 10px 0px rgba(0, 0, 0, 0.09);
}

/***trending post****/
.trending-post .single-post-wrap.style-overlay .post-meta-single p {
  margin-bottom: 7px;
}
.trending-post.style-box {
  background: #fff;
  padding: 33px 23px 23px;
  border-radius: 5px;
  box-shadow: 0px 6px 47px 3px rgba(37, 37, 37, 0.05);
}

/*****single-post-list-wrap*****/
.single-post-list-wrap {
  margin-bottom: 17px;
}
.single-post-list-wrap .media-left {
  position: relative;
}
.single-post-list-wrap .play-btn-small {
  position: absolute;
  left: 50%;
  margin-left: -20px;
  top: 50%;
  margin-top: -20px;
  z-index: 5;
}
.single-post-list-wrap .media .media-left {
  margin-right: 5px;
}
.single-post-list-wrap .media img {
  border-radius: 5px;
}
.single-post-list-wrap .media .media-body .post-meta-single ul li {
  font-size: 14px;
  color: var(--heading-color);
}
.single-post-list-wrap .media .media-body h6 {
  margin-bottom: 0;
}
.single-post-list-wrap .media .media-body p {
  margin-bottom: 0;
}
.single-post-list-wrap.style-white .media .media-body .post-meta-single ul li {
  color: #fff;
}
.single-post-list-wrap.style-white .media .media-body h6 {
  color: #fff;
}
.single-post-list-wrap.style-white .media .media-body p {
  color: rgba(255, 255, 255, 0.8);
  margin-top: 10px;
  margin-bottom: 0;
}
.single-post-list-wrap.style-two {
  margin-bottom: 30px;
}
.single-post-list-wrap.style-two .media .media-left {
  margin-right: 20px;
}

/******** nxp-tab-inner *********/
.nxp-tab-inner ul {
  border: 0 !important;
}
.nxp-tab-inner ul li a {
  background: none !important;
  border: 0 !important;
  padding: 0;
}
.nxp-tab-inner ul li a .single-post-list-wrap {
  display: block;
}
.nxp-tab-inner .nav-link {
  display: block;
  overflow: hidden;
}

.nxp-tab-post ul {
  display: inline-block;
}
.nxp-tab-post ul li {
  margin: 0 10px;
  display: inline-block;
}
.nxp-tab-post ul li:first-child {
  margin-left: 0;
}
.nxp-tab-post ul li:last-child {
  margin-right: 0;
}
.nxp-tab-post ul li a {
  border-radius: 0 !important;
}
.nxp-tab-post ul li a.active {
  color: #102950;
}
.nxp-tab-post.style-two ul li {
  margin: 0 5px;
}
.nxp-tab-post.style-two ul li:first-child {
  margin-left: 0;
}
.nxp-tab-post.style-two ul li:last-child {
  margin-right: 0;
}
.nxp-tab-post.style-two ul li a {
  height: 48px;
  line-height: 48px;
  background: #f4f4f4 !important;
  padding: 0 20px;
  display: inline-block;
}
.nxp-tab-post.style-two ul li a.active {
  background: var(--main-color) !important;
  color: #fff;
}

.nxp-tab-post-two ul {
  border: 1px solid #f1f3f5 !important;
  line-height: 1;
}
.nxp-tab-post-two ul li {
  margin: 0;
  display: inline-block;
  border-right: 1px solid #f1f3f5;
  line-height: 1;
  width: 33.33%;
}
.nxp-tab-post-two ul li:last-child {
  border-right: 0;
}
.nxp-tab-post-two ul li a {
  line-height: 40px;
  height: 40px;
  text-align: center;
  color: var(--heading-color);
  border-radius: 0 !important;
}
.nxp-tab-post-two ul li a.active {
  background: var(--main-color) !important;
  color: #fff !important;
}

.nxp-tab-content-2 {
  margin-bottom: 50px;
}
.nxp-tab-content-2 .tab-pane .single-post-list-wrap {
  border-bottom: 1px solid #f0f2f3;
  padding-bottom: 20px;
  margin-bottom: 20px;
}
.nxp-tab-content-2 .tab-pane .single-post-list-wrap:last-child {
  border-bottom: 0;
  padding-bottom: 0;
  margin-bottom: 0;
}

.single-category-inner {
  position: relative;
  margin-bottom: 15px;
}
.single-category-inner:after {
  content: "";
  background: rgba(0, 0, 0, 0.5);
  height: 100%;
  left: 0;
  position: absolute;
  bottom: 0;
  border-radius: 5px;
  width: 100%;
  z-index: 3;
  transition: 0.4s;
}
.single-category-inner .tag-base {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: 50%;
  margin-top: -14px;
  z-index: 4;
  border-radius: 30px;
  padding: 0 25px;
}
.single-category-inner .total-cat {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translateX(-50%) translateY(-25%);
  top: 50%;
  margin-top: -14px;
  z-index: 4;
  border-radius: 30px;
  padding: 0 25px;
  color: #fff;
  line-height: 1.4;
}

/******* single-input-inner ********/
.single-newsletter-inner {
  padding: 22px 25px 30px 25px;
  border-radius: 5px;
}
.single-newsletter-inner p {
  color: var(--heading-color);
  margin-bottom: 28px;
}
.single-newsletter-inner.bg-blue h5,
.single-newsletter-inner.bg-blue p {
  color: #fff;
}
.single-newsletter-inner.bg-blue input {
  background: transparent;
  color: #fff;
}
.single-newsletter-inner.bg-blue input::placeholder {
  color: rgba(255, 255, 255, 0.702);
}
.single-newsletter-inner.bg-black h5,
.single-newsletter-inner.bg-black p {
  color: #fff;
}
.single-newsletter-inner.bg-black input {
  background: transparent;
  color: #fff;
}
.single-newsletter-inner.bg-black input::placeholder {
  color: rgba(255, 255, 255, 0.702);
}
.single-newsletter-inner.style-food {
  padding: 45px 30px 50px 30px;
}
.single-newsletter-inner.style-food h5,
.single-newsletter-inner.style-food p {
  color: rgba(255, 255, 255, 0.95);
}

.single-input-inner {
  margin-bottom: 12px;
}
.single-input-inner input {
  height: 48px;
  width: 100%;
  border-radius: 5px;
  border: 1px solid rgba(255, 255, 255, 0.5) !important;
  padding: 0 18px;
}

/*---------------------------------------------
  cs-partner-slider-11
----------------------------------------------*/
.most-view-slider {
  width: 100%;
  margin: 0 auto;
}

.most-view-slider .single-most-view-inner {
  transform: scale(0.85);
  transition: 0.4s;
  margin: 30px 0;
}

.most-view-slider .single-most-view-inner .thumb img {
  display: inline-block;
  transform: scale(1.07);
}

.most-view-slider .item {
  transition: 0.6s;
}

.most-view-slider .active.center .single-most-view-inner {
  transform: scale(1.1);
}

.most-view-slider .active.center {
  margin-right: 0;
  z-index: 2;
}
.most-view-slider .active.center .single-post-wrap.style-overlay .details {
  padding: 18px 20px;
}

.most-view-slider .active.center ~ .active {
  margin-left: -36px;
  position: relative;
  z-index: -1;
}
.most-view-slider .active.center ~ .active .single-post-wrap.style-overlay .details {
  padding: 18px 20px 18px 50px;
  transition: 0.4s;
}

.most-view-slider .owl-stage-outer {
  margin: 0 45px;
}

.most-view-slider .active {
  margin-right: -36px;
  position: relative;
  z-index: -1;
}
.most-view-slider .active .single-post-wrap.style-overlay .details {
  padding: 18px 50px 18px 20px;
  transition: 0.4s;
}

.most-view-slider .owl-nav {
  display: none;
}

.most-view-slider .owl-dots {
  text-align: center;
}
.most-view-slider .owl-dots .owl-dot {
  border: 1px solid #909cae;
  height: 12px;
  width: 12px;
  border-radius: 50%;
  margin: 0;
  padding: 0;
  background: transparent;
  margin: 0 5px;
  line-height: 0;
}
.most-view-slider .owl-dots .owl-dot span {
  height: 6px;
  width: 6px;
  background: transparent;
  display: inline-block;
  margin-top: -1px;
  border-radius: 50%;
}
.most-view-slider .owl-dots .owl-dot.active span {
  background: var(--main-color);
}

.video-tab-inner-2 {
  padding: 35px;
  padding: 35px;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
}
.video-tab-inner-2 li {
  border-bottom: 1px solid #53a3f2;
  margin-bottom: 10px !important;
  display: block;
  width: 100%;
}
.video-tab-inner-2 li .single-post-list-wrap {
  margin-bottom: 10px;
}
.video-tab-inner-2 li:last-child {
  margin-bottom: 0 !important;
  border-bottom: 0;
}
.video-tab-inner-2 li:last-child .single-post-list-wrap {
  margin-bottom: 0;
}

.post-slider .single-post-wrap.style-overlay {
  margin-bottom: 25px;
}

.tag-area-shadow {
  box-shadow: 0px 3px 20px 0px rgba(0, 0, 0, 0.06);
  padding: 25px 30px 10px 30px;
  background: #fff;
  border-radius: 6px;
}

.error-area-inner {
  position: relative;
  padding: 230px 0;
}
.error-area-inner h2 {
  color: #e6f2fd;
  font-size: 320px;
  font-weight: 800;
  position: absolute;
  left: 0;
  top: 0;
  line-height: 1;
  top: 50%;
  left: 50%;
  transform: translateX(-50%) translateY(-50%);
  margin-bottom: 0;
  z-index: -1;
}
.error-area-inner h3 {
  margin-bottom: 30px;
}

/*---------------------------------------------------
    #page-title-area
---------------------------------------------------*/
.pagination {
  display: inline-flex;
  text-align: center;
  margin: 0;
}
.pagination .page-item {
  margin: 0 5px;
}
.pagination .page-item .page-link {
  height: 50px;
  width: 50px;
  line-height: 48px;
  padding: 0;
  background: #f3f4f9;
  border-radius: 4px;
  border: 0;
  color: var(--heading-color);
  box-shadow: none;
  background: transparent;
  border: 2px solid #e3e3e3;
}
.pagination .page-item.active .page-link, .pagination .page-item:hover .page-link {
  background: var(--main-color);
  color: #fff;
  border: 2px solid var(--main-color);
}
.pagination .page-item:first-child {
  margin-left: 0;
}
.pagination .page-item:last-child {
  margin-right: 0;
}

.page-title-area {
  padding: 25px 0 22px;
  background: #e6f2fd;
}
.page-title-area .breadcrumb-inner .page-title {
  margin-bottom: 5px;
}
.page-title-area .breadcrumb-inner .page-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.page-title-area .breadcrumb-inner .page-list li {
  font-size: 16px;
  color: #565872;
  font-weight: 400;
  display: inline-block;
}
.page-title-area .breadcrumb-inner .page-list li a {
  position: relative;
  margin-right: 9px;
  padding-right: 11px;
  color: var(--main-color);
}
.page-title-area .breadcrumb-inner .page-list li a:hover {
  color: #565872;
}
.page-title-area .breadcrumb-inner .page-list li a:after {
  position: absolute;
  right: 0;
  top: -4px;
  content: "/";
  height: 15px;
  width: 1px;
}

.single-blog-inner {
  margin-bottom: 55px;
}
.single-blog-inner .thumb {
  position: relative;
}
.single-blog-inner .thumb .video-play-btn {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background-color: white;
  display: inline-block;
  position: absolute;
  z-index: 1;
  left: 50%;
  text-align: center;
  line-height: 100px;
  top: 50%;
  margin: -50px 0 0 -50px;
}
.single-blog-inner .thumb .video-play-btn i {
  font-size: 18px;
  color: var(--main-color);
}
.single-blog-inner .single-blog-details {
  margin: 35px 0;
}
.single-blog-inner .single-blog-details .meta {
  color: #696969;
  font-size: 18px;
  margin-bottom: 10px;
}
.single-blog-inner .single-blog-details .meta span {
  margin-right: 25px;
}
.single-blog-inner .single-blog-details .meta span i {
  color: var(--main-color);
  margin-right: 7px;
}
.single-blog-inner .single-blog-details h3 {
  font-size: 34px;
  font-weight: 600;
}
.single-blog-inner .single-blog-details h3:hover {
  color: var(--main-color);
}
.single-blog-inner .single-blog-details p {
  font-size: 15px;
  color: #696969;
  margin-top: 21px;
}
.single-blog-inner .single-blog-details .btn {
  margin-top: 22px;
}
.single-blog-inner .blockquote {
  padding: 14px 48px 35px 140px;
  background: #f2f8fe;
  position: relative;
}
.single-blog-inner .blockquote i {
  font-size: 70px;
  position: absolute;
  left: 40px;
  top: 50%;
  transform: translateY(-50%);
}
.single-blog-inner .blockquote p {
  margin-bottom: 0;
}

.single-blog-inner-2 {
  padding: 45px 25px 36px 50px;
}
.single-blog-inner-2 .single-blog-details {
  margin: 0;
}
.single-blog-inner-2 .single-blog-details .meta span {
  color: #8394a2;
}
.single-blog-inner-2 .single-blog-details .meta span i {
  color: #ffffff;
}
.single-blog-inner-2 .single-blog-details h3 {
  color: #ffffff;
  font-size: 34px;
  font-weight: 500;
}
.single-blog-inner-2 .single-blog-details h3:hover {
  color: #27debf;
}

.single-blog-inner-3 {
  border: 2px solid #eeeeee;
  padding: 7px 40px 15px 50px;
}

/***blog-details-page***/
.blog-details-page-inner .single-blog-inner h5 {
  margin-top: 35px;
  margin-bottom: 15px;
}
.blog-details-page-inner .single-blog-inner p {
  margin-bottom: 35px;
}
.blog-details-page-inner .meta {
  color: #696969;
  font-size: 18px;
  margin-top: 31px;
}
.blog-details-page-inner .meta span {
  color: #14212b;
  font-size: 18px;
  font-weight: 500;
}
.blog-details-page-inner .meta a:hover {
  color: var(--main-color);
}
.blog-details-page-inner .meta .social-area-2 li {
  margin: 0 2px;
}
.blog-details-page-inner .author-area {
  padding: 40px;
  margin-top: 70px;
}
.blog-details-page-inner .section-title {
  margin-bottom: 28px;
}
.blog-details-page-inner .section-title h3 {
  font-weight: 600;
}

.author-area {
  background: #f2f8fe;
  padding: 40px;
}
.author-area .media-left img {
  border-radius: 50%;
}
.author-area .media-body {
  margin-left: 29px;
}
.author-area .media-body p {
  font-size: 15px;
  color: #696969;
  margin-bottom: 0;
}
.author-area.style-two {
  padding: 0;
  background: none;
}

.related-post {
  margin-top: 70px;
}
.related-post .recent-post-wrap:hover .post-details {
  background-color: white;
  box-shadow: 0px 10px 30px 0px rgba(203, 203, 203, 0.3);
}
.related-post .recent-post-wrap .post-details {
  padding: 34px 30px;
  position: relative;
  background: whitesmoke;
  transition: 0.4s;
}
.related-post .recent-post-wrap .post-details .meta {
  position: absolute;
  left: 30px;
  top: -68px;
  margin: 0;
}
.related-post .recent-post-wrap .post-details .meta span {
  font-size: 14px;
  background-color: #49009b;
  color: #ffffff;
  height: 38px;
  line-height: 40px;
  border-radius: 50px;
  font-weight: 400;
  padding: 0 20px;
}
.related-post .recent-post-wrap .post-details .meta span i {
  margin-right: 10px;
}
.related-post .recent-post-wrap .post-details h5 {
  margin-bottom: 14px;
}
.related-post .recent-post-wrap .post-details h5 a {
  font-size: 24px;
  font-weight: 600;
}
.related-post .recent-post-wrap .post-details a {
  font-size: 18px;
  font-weight: 500;
}
.related-post .recent-post-wrap .post-details a:hover {
  color: var(--main-color);
}

.blog-comment {
  margin-top: 67px;
}
.blog-comment .media {
  align-items: center;
  margin-bottom: 35px;
}
.blog-comment .media a img {
  border-radius: 50%;
}
.blog-comment .media.nesting {
  margin-left: 60px;
}
.blog-comment .media .media-body {
  margin-left: 30px;
}
.blog-comment .media .media-body h5 {
  display: inline-block;
}
.blog-comment .media .media-body h5 a {
  font-size: 18px;
  font-weight: 700;
  color: #14212b;
}
.blog-comment .media .media-body .date {
  font-size: 13px;
  color: #616161;
  margin-left: 14px;
}
.blog-comment .media .media-body p {
  font-size: 15px;
  color: #696969;
}
.blog-comment .media .media-body a {
  font-size: 18px;
  font-weight: 500;
  color: #696969;
}
.blog-comment .media .media-body a:hover {
  color: var(--main-color);
}

.comment-form {
  margin-top: 70px;
}
/*********** ***********/
.single-input-wrap {
  margin-bottom: 30px;
  border: 2px solid #dbdfe5;
}
.single-input-wrap input {
  height: 60px;
  line-height: 60px;
  padding: 0 22px;
  border: 0;
}
.single-input-wrap textarea {
  padding: 18px 22px;
  border: 0;
}
.single-input-wrap .input-group-text {
  background: transparent;
  border: 0;
  padding: 0 20px;
}
.single-input-wrap.message .input-group-text {
  align-items: normal;
  margin-top: 18px;
}
.single-input-wrap .form-control:hover, .single-input-wrap .form-control:active, .single-input-wrap .form-control:focus {
  box-shadow: none !important;
  outline: 0;
}

/*********** banner-food-area **********/
.banner-food-area {
  position: relative;
  padding: 160px 0 200px 0;
}
.banner-food-area:after {
  content: "";
  background: linear-gradient(to top, rgba(32, 22, 84, 0.6) 52%, rgba(0, 0, 100, 0));
  height: 90%;
  left: 0;
  position: absolute;
  bottom: 0;
  border-radius: 5px;
  width: 100%;
  transition: 0.4s;
}
.banner-food-area .banner-inner {
  position: relative;
  z-index: 2;
}
.banner-food-area .banner-inner a {
  height: 38px;
  line-height: 38px;
  border-radius: 4px;
  margin-bottom: 15px;
}
.banner-food-area .banner-inner a:hover {
  background: #74ac2a;
}
.banner-food-area .banner-inner h2 {
  font-size: 36px;
  line-height: 1.3;
}

/*********** food category **********/
.fd-category-inner {
  background: #fff;
  padding: 10px;
  margin-bottom: 30px;
  box-shadow: 0px 3px 20px 0px rgba(0, 0, 0, 0.06);
  border-radius: 6px;
  display: block;
}
.fd-category-inner .thumb {
  margin-bottom: 12px;
  display: block;
  overflow: hidden;
  border-radius: 6px;
}
.fd-category-inner .thumb img {
  transition: 0.8s;
}
.fd-category-inner .details {
  display: block;
}
.fd-category-inner .details h6 {
  color: #292250;
  margin-bottom: 0;
}
.fd-category-inner .details h6 img {
  margin-left: 2px;
  transition: 0.4s;
}
.fd-category-inner:hover .thumb img {
  transform: scale(1.06);
}
.fd-category-inner:hover .details h6 img {
  margin-left: 6px;
}

/*********** single-post-wrap **********/
.single-post-wrap.style-food-overlay-bg {
  margin-bottom: 62px;
}
.single-post-wrap.style-food-overlay-bg .thumb {
  margin-bottom: 0;
}
.single-post-wrap.style-food-overlay-bg .thumb img {
  width: 100%;
}
.single-post-wrap.style-food-overlay-bg .thumb:after {
  content: "";
  background: linear-gradient(to top, rgba(32, 22, 84, 0.2) 52%, rgba(0, 0, 100, 0));
  height: 70%;
  left: 0;
  position: absolute;
  bottom: 0;
  border-radius: 5px;
  width: 100%;
  z-index: 3;
  transition: 0.4s;
  visibility: hidden;
  opacity: 0;
}
.single-post-wrap.style-food-overlay-bg .thumb:before {
  display: none;
}
.single-post-wrap.style-food-overlay-bg .details {
  position: absolute;
  bottom: -30px;
  padding: 18px 18px;
  z-index: 4;
  margin: 35px 35px 0 35px;
  background-color: white;
  border-radius: 8px;
  box-shadow: 3px 0px 7px rgba(0, 0, 0, 0.2);
}
.single-post-wrap.style-food-overlay-bg:hover .thumb:after {
  visibility: visible;
  opacity: 1;
}

/********* food-slider **********/
.food-slider .single-post-list-wrap .media img {
  width: 75px;
  height: 72px;
}

/****** food-about-widget *******/
.food-about-widget {
  margin-top: -33px;
}

/*------------------------------------------------
    ## footer-style
------------------------------------------------*/
.footer-area .widget {
  margin-bottom: 70px;
}
.footer-area .widget-title {
  color: #fff;
  margin-bottom: 27px;
  font-weight: 500;
}
.footer-area .widget_about {
  margin-top: -7px;
}
.footer-area .widget_about p {
  color: rgba(255, 255, 255, 0.8);
}
.footer-area .contact_info_list {
  margin: 0;
  padding: 0;
  margin-top: -7px;
}
.footer-area .contact_info_list li {
  list-style: none;
  color: rgba(255, 255, 255, 0.8);
  padding-left: 0px;
  position: relative;
  margin-bottom: 10px;
}
.footer-area .contact_info_list li i {
  position: absolute;
  left: 0;
  top: 7px;
}
.footer-area .contact_info_list li:last-child {
  margin-bottom: 0;
}
.footer-area .widget_recent_post .media .media-body .post-meta-single ul li {
  color: rgba(255, 255, 255, 0.8);
}
.footer-area .widget_recent_post .media .media-body h6 {
  color: rgba(255, 255, 255, 0.8);
}

.footer-top {
  padding-bottom: 80px;
}
.footer-top .social-area {
  margin-top: 42px;
}
.footer-top .widget_nav_menu {
  margin-top: 33px;
}
.footer-top .widget_nav_menu li:after {
  display: none;
}

.footer-bottom {
  border-top: 1px solid #586a85;
  padding: 25px 0;
}
.footer-bottom p {
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 0;
  margin-top: 5px;
}

.widget_nav_menu {
  margin: 0;
  padding: 0;
}
.widget_nav_menu li {
  display: inline-block;
  position: relative;
  padding: 0 15px 0 10px;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 0;
}
.widget_nav_menu li:after {
  content: "|";
  position: absolute;
  right: 0;
  top: 0px;
}
.widget_nav_menu li:before {
  display: none;
}
.widget_nav_menu li:first-child {
  padding-left: 0;
}
.widget_nav_menu li:last-child {
  padding-right: 0;
}
.widget_nav_menu li:last-child:after {
  display: none;
}

.mainwidgit.style-box {
    background: #fff;
    padding: 33px 23px 23px;
    border-radius: 5px;
    box-shadow: 0px 6px 47px 3px rgba(37, 37, 37, 0.05);
}
.page_titledes{font-size: 2.5em;}
.page_titledes .post-categories{margin: 0px;padding:20px 0px;text-align: center;}
.page_titledes .post-categories li{list-style: none;}
.single-post-wrap img{width: 100%;height: auto;}
.inputgroups i{color: #fff;margin-right: 20px;}
.submit-btn{display: inline-block;}
#searchform{position: relative;}
#searchsubmit{position: absolute;right: 0px;color: transparent;}
/* .td-search-popup{display: none;} */
.footer-area .contact_info_list p{color:rgba(255, 255, 255, 0.8);margin-top:20px}

blockquote{cursor: pointer;}
.urnlinds{;display: block;font-size: 0px;visibility: hidden;}
 blockquote{
  margin: 50px;
  display: block;
}

/* title-tip down */
[title]:hover {
  position: relative;
}
[title]:hover:before {
  position: absolute;
  top: auto;
  bottom: 100%;
  margin-top: 0;
  margin-bottom: 0.5em;
  left: 0;
  z-index: 99999;
  content: attr(title);
  padding: 0.5em;
  width: 120px; 
  overflow: hidden;
  word-wrap: break-word;
  font-size: 12px;
  color: #FFF;
  text-align: center;
  background-color: #000;
  box-sizing: border-box;
  box-shadow: 2px 2px 2px rgba(0, 0, 0, 0.2);
}
[title]:hover:after {
  position: absolute;
 top: -6px;
  bottom: 100%;
    border: 0.50em dashed transparent;
  border-top: 0.50em solid #222;
   left: 60px;
  z-index: 99999;
  content: '';
  margin-left: -0.125em;
  width: 0;
  height: 0;
  font-size: 12px;
}


.tag-purple,.post-meta-single, .single-post-wrap .thumb .tag-base {
 
    display: none;
}
.topbar-area .topbar-menu ul li a:hover{color:green}




/* ==========================================================
   TOPHINDISTATUS — QUOTE CARD UI
   Part 1: Card, Typography & Visual Effects
========================================================== */

.single-post-wrap blockquote,
.single-post-wrap .status-card {
    position: relative;
    isolation: isolate;
    overflow: hidden;

    margin: 30px 0 14px;
    padding: 38px 34px;

    border: 1px solid rgba(15, 23, 42, 0.07);
    border-left: 6px solid #3b82f6;
    border-radius: 18px;

    background: linear-gradient(135deg, #fffdf5 0%, #f4fff8 100%);

    box-shadow:
        0 2px 4px rgba(15, 23, 42, 0.02),
        0 8px 25px rgba(15, 23, 42, 0.07);

    cursor: pointer;

    transition:
        transform .3s cubic-bezier(.2,.8,.2,1),
        box-shadow .3s ease,
        border-color .3s ease;
}


/* ==========================================================
   Decorative Quote Symbol
========================================================== */

.single-post-wrap blockquote::after,
.single-post-wrap .status-card::after {
    content: "❝";

    position: absolute;
    top: 5px;
    left: 18px;

    z-index: -1;

    font-family: Georgia, serif;
    font-size: 76px;
    font-weight: 700;
    line-height: 1;

    color: rgba(15, 23, 42, 0.055);

    pointer-events: none;
    user-select: none;

    transition:
        transform .35s ease,
        opacity .35s ease;
}


/* ==========================================================
   Soft Decorative Glow
========================================================== */

.single-post-wrap blockquote::before,
.single-post-wrap .status-card::before {
    content: "";

    position: absolute;
    width: 150px;
    height: 150px;

    right: -70px;
    bottom: -80px;

    border-radius: 50%;

    background:
        radial-gradient(
            circle,
            rgba(59, 130, 246, .08),
            transparent 70%
        );

    pointer-events: none;
    z-index: -1;
}


/* ==========================================================
   Quote Text
========================================================== */

.single-post-wrap blockquote p,
.single-post-wrap .status-card p {
    position: relative;
    z-index: 2;

    margin: 0;
    padding: 0 20px;

    font-size: clamp(20px, 2vw, 25px);
    line-height: 1.8;

    font-weight: 650;
    text-align: center;

    color: #1e293b;

    letter-spacing: .01em;

    transition:
        color .3s ease,
        transform .3s ease;
}


/* Preserve Bold Content */

.single-post-wrap blockquote p strong,
.single-post-wrap .status-card p strong,
.single-post-wrap blockquote p b,
.single-post-wrap .status-card p b {
    color: inherit;
    font-weight: 700;
}


/* ==========================================================
   Desktop Hover
========================================================== */

@media (hover:hover) {

    .single-post-wrap blockquote:hover,
    .single-post-wrap .status-card:hover {
        transform: translateY(-4px);

        box-shadow:
            0 5px 10px rgba(15, 23, 42, .04),
            0 18px 40px rgba(15, 23, 42, .11);
    }

    .single-post-wrap blockquote:hover::after,
    .single-post-wrap .status-card:hover::after {
        transform: translateY(-3px) rotate(-4deg);
    }

}


/* ==========================================================
   Active / Scroll Highlight
   Used by JS Part 3
========================================================== */

.single-post-wrap blockquote.quote-active,
.single-post-wrap .status-card.quote-active {
    box-shadow:
        0 5px 15px rgba(15, 23, 42, .05),
        0 20px 45px rgba(15, 23, 42, .11);
}


/* ==========================================================
   Copied State
========================================================== */

.single-post-wrap blockquote.copied,
.single-post-wrap .status-card.copied {
    transform: scale(.992);

    box-shadow:
        0 0 0 2px rgba(34, 197, 94, .12),
        0 12px 30px rgba(34, 197, 94, .10);
}


/* ==========================================================
   Quote Number — JS Part 3
========================================================== */

.quote-number {
    position: absolute;

    top: 14px;
    right: 16px;

    z-index: 5;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    min-width: 36px;

    padding: 5px 9px;

    border: 1px solid rgba(15, 23, 42, .06);
    border-radius: 20px;

    background: rgba(255,255,255,.72);

    -webkit-backdrop-filter: blur(8px);
    backdrop-filter: blur(8px);

    box-shadow: 0 3px 10px rgba(15,23,42,.05);

    color: #64748b;

    font-size: 11px;
    font-weight: 700;
    line-height: 1;

    letter-spacing: .04em;

    pointer-events: none;
}


/* ==========================================================
   Ripple — JS Part 3
========================================================== */

.quote-ripple {
    position: absolute;

    width: 20px;
    height: 20px;

    z-index: 10;

    border-radius: 50%;

    background: rgba(255,255,255,.45);

    transform: translate(-50%, -50%);

    pointer-events: none;

    animation: quoteRipple .65s ease-out forwards;
}

@keyframes quoteRipple {

    0% {
        width: 0;
        height: 0;
        opacity: .7;
    }

    100% {
        width: 550px;
        height: 550px;
        opacity: 0;
    }

}


/* ==========================================================
   Mobile
========================================================== */

@media (max-width: 768px) {

    .single-post-wrap blockquote,
    .single-post-wrap .status-card {
        margin: 24px 0 12px;
        padding: 32px 18px 28px;

        border-left-width: 5px;
        border-radius: 15px;
    }

    .single-post-wrap blockquote p,
    .single-post-wrap .status-card p {
        padding: 0 8px;

        font-size: 16px;
        line-height: 1.7;

        font-weight: 600;
    }

    .single-post-wrap blockquote::after,
    .single-post-wrap .status-card::after {
        top: 8px;
        left: 12px;

        font-size: 55px;
    }

    .quote-number {
        top: 10px;
        right: 10px;

        font-size: 10px;
        padding: 4px 8px;
    }

}


/* ==========================================================
   Accessibility
========================================================== */

@media (prefers-reduced-motion: reduce) {

    .single-post-wrap blockquote,
    .single-post-wrap .status-card,
    .single-post-wrap blockquote p,
    .single-post-wrap .status-card p {
        transition: none;
    }

    .quote-ripple {
        display: none;
    }

}
/* ==========================================================
   TOP HINDI STATUS
   Premium Quote System
   PART 2 — Actions, Toast & Responsive
========================================================== */


/* ==========================================================
   ACTION BAR
========================================================== */

.quote-actions{
    display:flex;
    align-items:center;
    justify-content:center;

    gap:8px;

    margin:
        0 0 30px;

    padding:2px 4px;

    flex-wrap:wrap;
}


/* ==========================================================
   BUTTON BASE
========================================================== */

.quote-actions button{
    appearance:none;
    -webkit-appearance:none;

    display:inline-flex;
    align-items:center;
    justify-content:center;

    gap:6px;

    min-height:40px;

    padding:9px 15px;

    border:1px solid rgba(15,23,42,.07);
    border-radius:50px;

    background:rgba(255,255,255,.95);

    box-shadow:
        0 3px 12px rgba(15,23,42,.07);

    color:#475569;

    font-family:inherit;
    font-size:13px;
    line-height:1;

    font-weight:600;

    white-space:nowrap;

    cursor:pointer;

    transition:
        transform .22s ease,
        background-color .22s ease,
        color .22s ease,
        border-color .22s ease,
        box-shadow .22s ease;
}


/* ==========================================================
   GENERAL HOVER
========================================================== */

@media (hover:hover){

    .quote-actions button:hover{
        transform:translateY(-2px);

        box-shadow:
            0 8px 20px rgba(15,23,42,.11);
    }

}


.quote-actions button:active{
    transform:translateY(0) scale(.96);
}


.quote-actions button:focus-visible{
    outline:3px solid rgba(37,99,235,.18);
    outline-offset:2px;
}


/* ==========================================================
   COPY
========================================================== */

.quote-actions .copy-btn{
    color:#2563eb;
}

.quote-actions .copy-btn:hover{
    color:#fff;
    background:#2563eb;
    border-color:#2563eb;
}


/* ==========================================================
   WHATSAPP
========================================================== */

.quote-actions .wa-btn{
    color:#15803d;
}

.quote-actions .wa-btn:hover{
    color:#fff;
    background:#16a34a;
    border-color:#16a34a;
}


/* ==========================================================
   FACEBOOK
========================================================== */

.quote-actions .fb-btn{
    color:#1877f2;
}

.quote-actions .fb-btn:hover{
    color:#fff;
    background:#1877f2;
    border-color:#1877f2;
}


/* ==========================================================
   NATIVE SHARE
========================================================== */

.quote-actions .share-btn{
    color:#7c3aed;
}

.quote-actions .share-btn:hover{
    color:#fff;
    background:#7c3aed;
    border-color:#7c3aed;
}


/* ==========================================================
   COPY LINK
========================================================== */

.quote-actions .link-btn{
    color:#475569;
}

.quote-actions .link-btn:hover{
    color:#fff;
    background:#334155;
    border-color:#334155;
}


/* ==========================================================
   TOAST
========================================================== */

.copy-toast{
    position:fixed;

    left:50%;
    bottom:28px;

    z-index:999999;

    display:flex;
    align-items:center;
    justify-content:center;

    min-height:46px;

    padding:11px 20px;

    border:1px solid rgba(255,255,255,.12);
    border-radius:50px;

    background:rgba(15,23,42,.94);

    backdrop-filter:blur(14px);
    -webkit-backdrop-filter:blur(14px);

    box-shadow:
        0 12px 35px rgba(0,0,0,.22);

    color:#fff;

    font-size:13px;
    line-height:1.3;
    font-weight:600;

    white-space:nowrap;

    opacity:0;

    visibility:hidden;

    pointer-events:none;

    transform:
        translateX(-50%)
        translateY(25px)
        scale(.96);

    transition:
        opacity .28s ease,
        transform .28s ease,
        visibility .28s ease;
}


.copy-toast.show{
    opacity:1;
    visibility:visible;

    transform:
        translateX(-50%)
        translateY(0)
        scale(1);
}


/* ==========================================================
   TABLET
========================================================== */

@media (max-width:900px){

    :root{
        --ths-text-size:22px;
        --ths-card-space:24px;
    }

}


/* ==========================================================
   MOBILE
========================================================== */

@media (max-width:768px){

    .single-post-wrap blockquote{
        margin:24px 0 12px;

        padding:
            32px 18px
            28px;

        border-radius:16px;
    }


    .single-post-wrap blockquote p{
        padding:0 6px;

        font-size:20px;
        line-height:1.7;

        font-weight:600;
    }


    .single-post-wrap blockquote::after{
        top:8px;
        left:12px;

        font-size:48px;
    }


    .single-post-wrap .quote-number{
        top:10px;
        right:10px;

        height:23px;

        padding:0 8px;

        font-size:10px;
    }


    /* Actions */

    .quote-actions{
        gap:6px;

        margin-bottom:24px;

        flex-wrap:nowrap;
    }


    .quote-actions button{
        flex:1 1 0;

        min-width:0;
        min-height:34px;

        padding:8px 7px;

        gap:4px;

        font-size:11px;

        box-shadow:
            0 2px 8px rgba(15,23,42,.06);
    }


    /* Toast */

    .copy-toast{
        bottom:18px;

        max-width:calc(100vw - 30px);

        padding:11px 18px;

        font-size:12px;
    }

}


/* ==========================================================
   SMALL MOBILE
========================================================== */

@media (max-width:480px){

    .single-post-wrap blockquote{
        padding:
            30px 14px
            25px;
    }


    .single-post-wrap blockquote p{
        font-size:18px;
        line-height:1.65;
    }

.quote-actions .link-btn{display:none}
    .quote-actions{
        gap:5px;
    }


    .quote-actions button{
        padding:6px 3px;

        font-size:10px;
    }

}


/* ==========================================================
   REDUCED MOTION
========================================================== */

@media (prefers-reduced-motion:reduce){

    .quote-actions button,
    .copy-toast{
        transition:none;
    }

}



.table-of-contents li p{margin-bottom:0px}
.table-of-contents {
    background: linear-gradient(135deg, #f8faff, #eef4ff);
    border: 1px solid #dbe4ff;
    border-radius: 12px;
    padding: 20px;
    margin: 30px 0;
    box-shadow: 0 3px 10px rgba(0,0,0,.05);
    
    counter-reset: toc-counter;
}

.table-of-contents h2 {
    font-size: 22px;
    margin-bottom: 15px;
    color: #070766;
    font-weight: 700;
}

.table-of-contents p {
    margin: 0;
    counter-increment: toc-counter;
}

.table-of-contents p a {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 5px 12px;
    margin-bottom: 6px;
    text-decoration: none;
    color: #333;
    border-radius: 8px;
    transition: all .25s ease;
}

.table-of-contents p a::before {
    content: counter(toc-counter);
    min-width: 28px;
    height: 28px;
    border-radius: 50%;
    background: #070766;
    color: #fff;
    font-size: 13px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
}

.table-of-contents p a:hover {
    color: #070766;
    transform: translateX(5px);
}
.related-post-item a,
.trending-post-item a{
    display:block;
	padding:3px;
	color:blue;
	font-size:14px;
    text-decoration:none;
}
/* =========================================
   AUTHOR BOX
========================================= */

.author-box{
    width:100%;
    background:#f8f9fa;
    border:1px solid #e5e5e5;
    border-radius:10px;
    padding:25px;
    margin-top:40px;
    box-sizing:border-box;
}

.author-box h3{
    margin-top:0;
    margin-bottom:15px;
    font-size:28px;
    font-weight:700;
    color:#111;
}

.author-box p{
    margin:0;
    font-size:18px;
    line-height:1.9;
    color:#333;
}


/* =========================================
   EDITORIAL NOTE
========================================= */

.article-disclaimer{
    width:100%;
    background:#fafafa;
    border:1px solid #e5e7eb;
    border-radius:6px;
    padding:14px 16px;
    margin-top:25px;
    box-sizing:border-box;
}

.article-disclaimer p{
    margin:0;
    font-size:13px;
    line-height:1.7;
    color:#777;
}

.article-disclaimer strong{
    color:#555;
    font-weight:600;
}
.image-credit p{
    margin-top:10px;
    font-size:12px;
    color:#888;
    line-height:1.6;
    font-style:italic;
}

.image-credit strong{
    color:#666;
    font-weight:600;
}

























