/* :: 1.0 Import Fonts */
@import url('https://fonts.googleapis.com/css2?family=Lora:ital,wght@0,400;0,500;0,700;1,400;1,500;1,700&display=swap');

/* :: 3.0 Base CSS */
* {
  margin: 0;
  padding: 0; }

body {
  font-family: 'Lora', serif;
  font-size: 14px;
  font-weight: 400;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  color: #191919;
  line-height: 1.3;
}

p {
  font-family: 'Lora', serif;
  color: #595959;
  font-size: 16px;
  }

a,
a:hover,
a:focus {
  -webkit-transition-duration: 500ms;
  transition-duration: 500ms;
  text-decoration: none;
  outline: 0 solid transparent;
  color: #F2AF1C;
}

ul,
ol {
  margin: 0; }
  ul li,
  ol li {
    list-style: none; }

img {
  height: auto;
  max-width: 100%; }

/* :: 3.1.0 Spacing */
.p-20{
  padding: 20px 0 !important;
}
.mt-8 {
  margin-top: 8px !important; }

.mt-15 {
  margin-top: 15px !important; }

.mt-30 {
  margin-top: 30px !important; }

.mt-50 {
  margin-top: 50px !important; }

.mt-70 {
  margin-top: 70px !important; }

.mt-100 {
  margin-top: 100px !important; }

.mb-15 {
  margin-bottom: 15px !important; }

.mb-30 {
  margin-bottom: 30px !important; }

.mb-50 {
  margin-bottom: 50px !important; }

.mb-70 {
  margin-bottom: 70px !important; }

.mb-100 {
  margin-bottom: 100px !important; }

.ml-15 {
  margin-left: 15px !important; }

.ml-30 {
  margin-left: 30px !important; }

.ml-50 {
  margin-left: 50px !important; }

.mr-15 {
  margin-right: 15px !important; }

.mr-30 {
  margin-right: 30px !important; }

.mr-50 {
  margin-right: 50px !important; }

/* :: 3.2.0 Height */
.height-400 {
  height: 400px; }

.height-500 {
  height: 500px; }

.height-600 {
  height: 600px; }

.height-700 {
  height: 700px; }

.height-800 {
  height: 800px; }

/* :: 3.3.0 Section Padding */
.section-padding-50 {
  padding-top: 50px;
  padding-bottom: 50px; }
.section-padding-100 {
  padding-top: 100px;
  padding-bottom: 100px; }

.section-padding-100-0 {
  padding-top: 100px;
  padding-bottom: 0; }

.section-padding-0-100 {
  padding-top: 0;
  padding-bottom: 100px; }

.section-padding-100-70 {
  padding-top: 100px;
  padding-bottom: 70px; }

/* :: 3.4.0 Section Heading */
.section-heading {
  position: relative;
  z-index: 1;
  margin-bottom: 50px;
  text-align: center; }
  .section-heading h2 {
    font-size: 36px;
    font-family: "Merriweather", serif;
    font-weight: 300; }
    @media only screen and (max-width: 767px) {
      .section-heading h2 {
        font-size: 24px; } }
  .section-heading span {
    color: #41ad33;
    margin-bottom: 0;
    font-family: "Merriweather", serif;
    font-weight: 400; }
  .section-heading p {
    font-size: 16px;
    color: #595959;
    margin-bottom: 0; }

/* :: 3.5.0 Preloader */
.preloader {
  background-color: #ffffff;
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 999999;
  overflow: hidden; }
  .preloader .circle-preloader {
    text-align: center;
    overflow: hidden; }
    .preloader .circle-preloader .foode-preloader {
      position: relative;
      z-index: 10;
      width: 160px;
      height: 4px;
      border-radius: 2px;
      margin-top: 30px;
      background-color: #ebebeb;
      overflow: hidden; }
      .preloader .circle-preloader .foode-preloader span {
        width: 80px;
        height: 100%;
        position: absolute;
        background-color: #41ad33;
        top: 0;
        left: 0;
        border-radius: 2px;
        z-index: 100;
        -webkit-animation: line 1000ms infinite linear;
        animation: line 1000ms infinite linear; }

@-webkit-keyframes line {
  0% {
    left: -80px; }
  100% {
    left: 160px; } }
@keyframes line {
  0% {
    left: -80px; }
  100% {
    left: 160px; } }
/* :: 3.6.0 Miscellaneous */
.bg-img {
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat; }

.bg-white {
  background-color: #ffffff !important; }

.bg-dark {
  background-color: #000000 !important; }

.bg-transparent {
  background-color: transparent !important; }

.font-bold {
  font-weight: 700; }

.font-light {
  font-weight: 300; }

.bg-overlay {
  position: relative;
  z-index: 2;
  background-position: center center;
  background-size: cover; }
  .bg-overlay::after {
    background-color: rgba(21, 4, 48, 0.89);
    position: absolute;
    z-index: -1;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    content: ""; }

.bg-fixed {
  background-attachment: fixed !important; }

/* :: 3.7.0 ScrollUp */
#scrollUp {
  background-color: #41ad33;
  border-radius: 0;
  bottom: 0;
  box-shadow: 0 2px 6px 0 rgba(0, 0, 0, 0.3);
  color: #ffffff;
  font-size: 24px;
  height: 40px;
  line-height: 40px;
  right: 50px;
  text-align: center;
  width: 40px;
  -webkit-transition-duration: 500ms;
  transition-duration: 500ms; }
  #scrollUp:hover {
    background-color: #191919; }

/* :: 3.8.0 foode Button */
.foode-btn {
  -webkit-transition-duration: 500ms;
  transition-duration: 500ms;
  position: relative;
  z-index: 1;
  display: inline-block;
  min-width: 180px;
  height: 45px;
  color: #191919;
  background-color: #ffffff;
  border: 1px solid #191919;
  border-radius: 3px;
  padding: 0 30px;
  font-size: 14px;
  line-height: 43px;
  text-transform: uppercase;
  font-weight: 400; }
  .foode-btn.active, .foode-btn:hover, .foode-btn:focus {
    font-size: 14px;
    color: #ffffff;
    font-weight: 400;
    background-color: #191919; }
  .foode-btn.btn-sm {
    min-width: 80px;
    height: 30px;
    line-height: 28px; }

/* :: 4.0 Header Area CSS */
.header-area {
  position: relative;
  width: 100%;
  z-index: 100;
  background-color: #ffffff; }
  .header-area .top-header {
    position: relative;
    z-index: 1;
    background-color: #ffffff;
    width: 100%;
    height: 60px;
    box-shadow: 0 3px 10px 2px rgba(0, 0, 0, 0.15); }
    @media only screen and (min-width: 768px) and (max-width: 991px) {
      .header-area .top-header {
        border-bottom: 1px solid #f2f4f5; } }
    @media only screen and (max-width: 767px) {
      .header-area .top-header {
        border-bottom: 1px solid #f2f4f5; } }
    .header-area .top-header .search-form form {
      position: relative;
      z-index: 1; }
      .header-area .top-header .search-form form input.form-control {
        width: 200px;
        height: 40px;
        border: none;
        background-color: #ffffff;
        font-size: 12px;
        font-style: italic;
        color: #a6a6a6;
        padding: 0;
        font-weight: 500;
        -webkit-transition-duration: 500ms;
        transition-duration: 500ms; }
        .header-area .top-header .search-form form input.form-control::placeholder {
          color: #a6a6a6; }
        .header-area .top-header .search-form form input.form-control:focus {
          box-shadow: none; }
        @media only screen and (max-width: 767px) {
          .header-area .top-header .search-form form input.form-control {
            width: 160px;
            font-size: 10px; } }
        @media only screen and (min-width: 480px) and (max-width: 767px) {
          .header-area .top-header .search-form form input.form-control {
            width: 200px;
            font-size: 12px; } }
      .classy-navbar a img{
        width: 146px;
      }
      .header-area .top-header .search-form form button {
        -webkit-transition-duration: 500ms;
        transition-duration: 500ms;
        position: absolute;
        width: 40px;
        height: 40px;
        right: 0;
        top: 0;
        z-index: 10;
        border: none;
        background-color: #ffffff; }
        .header-area .top-header .search-form form button:hover {
          color: #41ad33;
          cursor: pointer; }
    .header-area .top-header .top-header-content {
      height: 60px; }
      .header-area .top-header .top-header-content .top-social-info a {
        display: inline-block;
        padding: 0 10px;
        font-size: 14px; }
        .header-area .top-header .top-header-content .top-social-info a:hover {
          color: #41ad33; }
        @media only screen and (max-width: 767px) {
          .header-area .top-header .top-header-content .top-social-info a {
            padding: 0 5px; } }
        @media only screen and (min-width: 480px) and (max-width: 767px) {
          .header-area .top-header .top-header-content .top-social-info a {
            padding: 0 10px; } }
  .header-area .logo-area {
    z-index: 1;
    padding: 20px 0;
  }
    @media only screen and (min-width: 768px) and (max-width: 991px) {
      .header-area .logo-area {
        display: none; } }
    @media only screen and (max-width: 767px) {
      .header-area .logo-area {
        display: none; } }
  .header-area .foode-main-menu {
    -webkit-transition-duration: 200ms;
    transition-duration: 200ms; }
    .header-area .foode-main-menu .classy-navbar {
      padding: 0;
      line-height: 50px;
      -webkit-transition-duration: 500ms;
      transition-duration: 500ms; }
      @media only screen and (min-width: 768px) and (max-width: 991px) {
        .header-area .foode-main-menu .classy-navbar {
          -webkit-box-pack: justify;
          -ms-flex-pack: justify;
          justify-content: space-between; } }
      @media only screen and (max-width: 767px) {
        .header-area .foode-main-menu .classy-navbar {
          -webkit-box-pack: justify;
          -ms-flex-pack: justify;
          justify-content: space-between; } }
      .header-area .foode-main-menu .classy-navbar .nav-brand {
        display: none;
        -webkit-transition-duration: 500ms;
        transition-duration: 500ms; }
        @media only screen and (min-width: 768px) and (max-width: 991px) {
          .header-area .foode-main-menu .classy-navbar .nav-brand {
            display: block; } }
        @media only screen and (max-width: 767px) {
          .header-area .foode-main-menu .classy-navbar .nav-brand {
            display: block; } }
    .header-area .foode-main-menu .classynav ul li a {
      padding: 0 20px 0 0;
      font-weight: 500;
      }
      @media only screen and (min-width: 992px) and (max-width: 1199px) {
        .header-area .foode-main-menu .classynav ul li a {
          padding: 0 15px; } }
      .header-area .foode-main-menu .classynav ul li a:hover, .header-area .foode-main-menu .classynav ul li a:focus {
        color: #000; }
    .header-area .foode-main-menu .classynav ul li ul li a {
      padding: 0 20px;
      letter-spacing: 0; }
      @media only screen and (min-width: 768px) and (max-width: 991px) {
        .header-area .foode-main-menu .classynav ul li ul li a {
          padding: 0 30px; } }
      @media only screen and (max-width: 767px) {
        .header-area .foode-main-menu .classynav ul li ul li a {
          padding: 0 30px; } }
    .header-area .foode-main-menu .classynav ul li .megamenu {
      background-image: url(img/blog-img/1.jpg);
      background-position: center center;
      background-size: cover; }
      .header-area .foode-main-menu .classynav ul li .megamenu .single-mega {
        background-color: rgba(255, 255, 255, 0.95); }
  .header-area .is-sticky .foode-main-menu {
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 9999;
  }
    .header-area .is-sticky .foode-main-menu .classy-navbar {
      -webkit-transition-duration: 500ms;
      transition-duration: 500ms;
      -webkit-box-pack: justify;
      -ms-flex-pack: justify;
      justify-content: space-between; }
      .header-area .is-sticky .foode-main-menu .classy-navbar .nav-brand {
        display: block; }

/* :: 5.0 Hero Slides Area */
.hero-area,
.hero-post-slides {
  position: relative;
  z-index: 1; }

.single-hero-post {
  width: 100%;
  height: 480px;
  position: relative;
  z-index: 3;
  overflow: hidden; }
  @media only screen and (max-width: 767px) {
    .single-hero-post {
      height: 400px; } }
  .single-hero-post::after {
    content: "";
    position: absolute;
    height: 50%;
    width: 100%;
    z-index: -1;
    top: 50%;
    left: 0;
    background: rgba(0, 0, 0, 0.7);
    background: -webkit-linear-gradient(bottom, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.01) 90%, rgba(0, 0, 0, 0) 100%);
    background: linear-gradient(to top, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.01) 90%, rgba(0, 0, 0, 0) 100%); }
  .single-hero-post .slide-img {
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: -10;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0; }
  .single-hero-post .hero-slides-content {
    position: absolute;
    z-index: 30;
    bottom: 25px;
    left: 30px;
    right: 20px; }
    .single-hero-post .hero-slides-content p {
      font-size: 13px;
      color: #ffffff;
      letter-spacing: 2px; }
      @media only screen and (min-width: 768px) and (max-width: 991px) {
        .single-hero-post .hero-slides-content p {
          letter-spacing: 1px;
          font-size: 12px; } }
    .single-hero-post .hero-slides-content .post-title h4 {
      -webkit-transition-duration: 500ms;
      transition-duration: 500ms;
      color: #ffffff;
      font-weight: 300;
      line-height: 1.5;
      margin-bottom: 0; }
      .single-hero-post .hero-slides-content .post-title h4:hover {
        color: #41ad33; }
      @media only screen and (min-width: 768px) and (max-width: 991px) {
        .single-hero-post .hero-slides-content .post-title h4 {
          font-size: 20px; } }
      @media only screen and (max-width: 767px) {
        .single-hero-post .hero-slides-content .post-title h4 {
          font-size: 20px; } }

.hero-post-slides .owl-item.center .single-hero-post .slide-img {
  -webkit-animation: slide 24s linear infinite;
  animation: slide 24s linear infinite; }

@-webkit-keyframes slide {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1); }
  50% {
    -webkit-transform: scale(1.3);
    transform: scale(1.3); }
  100% {
    -webkit-transform: scale(1);
    transform: scale(1); } }
@keyframes slide {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1); }
  50% {
    -webkit-transform: scale(1.3);
    transform: scale(1.3); }
  100% {
    -webkit-transform: scale(1);
    transform: scale(1); } }
/* :: 6.0 About Us Area CSS */
.about-content {
  position: relative;
  z-index: 1; }
  .about-content img {
    margin-bottom: 30px; }
  .about-content p {
    font-size: 16px; }
  .about-content blockquote h5 {
    font-size: 18px;
    color: #41ad33;
    line-height: 1.8;
    font-weight: 300;
    font-style: italic; }
  .about-content ul {
    position: relative;
    z-index: 1;
    margin-left: 10%; }
    .about-content ul li {
      font-size: 16px;
      color: #595959;
      margin-bottom: 15px;
      display: block; }
      .about-content ul li i {
        position: relative;
        z-index: 1;
        top: -2px;
        font-size: 8px;
        color: #191919;
        margin-right: 10px; }
  .about-content .signature {
    text-align: center; }

/* :: 7.0 Featured Post Sildes CSS */
.featured-post-area {
  position: relative;
  z-index: 1;
  box-shadow: 0 0 10px 3px rgba(0, 0, 0, 0.15); }
  .featured-post-area .carousel-inner {
    position: relative;
    z-index: 3;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 66.6667%;
    flex: 0 0 66.6667%;
    min-width: 66.6667%;
    width: 66.6667%;
    height: 502px; }
    @media only screen and (max-width: 767px) {
      .featured-post-area .carousel-inner {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 100%;
        flex: 0 0 100%;
        min-width: 100%;
        width: 100%; } }
    .featured-post-area .carousel-inner .carousel-item {
      position: relative;
      z-index: 5;
      width: 100%;
      height: 100%; }
      .featured-post-area .carousel-inner .carousel-item::after {
        content: "";
        position: absolute;
        height: 50%;
        width: 100%;
        z-index: -1;
        top: 50%;
        left: 0;
        background: rgba(0, 0, 0, 0.8);
        background: -webkit-linear-gradient(bottom, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0.01) 90%, rgba(0, 0, 0, 0) 100%);
        background: linear-gradient(to top, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0.01) 90%, rgba(0, 0, 0, 0) 100%); }
      .featured-post-area .carousel-inner .carousel-item .featured-post-content {
        position: absolute;
        bottom: 20px;
        left: 30px;
        z-index: 30;
        right: 50px; }
        .featured-post-area .carousel-inner .carousel-item .featured-post-content p {
          font-weight: 500;
          font-size: 13px;
          color: #ffffff;
          text-transform: uppercase;
          letter-spacing: 2px; }
        .featured-post-area .carousel-inner .carousel-item .featured-post-content .post-title h2 {
          -webkit-transition-duration: 500ms;
          transition-duration: 500ms;
          font-size: 36px;
          color: #ffffff;
          font-weight: 300;
          line-height: 1.5;
          margin-bottom: 0; }
          .featured-post-area .carousel-inner .carousel-item .featured-post-content .post-title h2:hover {
            color: #41ad33; }
          @media only screen and (min-width: 768px) and (max-width: 991px) {
            .featured-post-area .carousel-inner .carousel-item .featured-post-content .post-title h2 {
              font-size: 30px; } }
          @media only screen and (max-width: 767px) {
            .featured-post-area .carousel-inner .carousel-item .featured-post-content .post-title h2 {
              font-size: 24px; } }
  .featured-post-area .carousel-indicators {
    height: 502px;
    position: relative;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 15;
    padding-left: 0;
    margin-right: 0;
    margin-left: 0;
    list-style: none;
    background-color: #f8f2ef;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 33.3333%;
    flex: 0 0 33.3333%;
    min-width: 33.3333%;
    width: 33.3333%; }
    @media only screen and (max-width: 767px) {
      .featured-post-area .carousel-indicators {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 100%;
        flex: 0 0 100%;
        min-width: 100%;
        width: 100%; } }
    .featured-post-area .carousel-indicators li {
      -webkit-transition-duration: 500ms;
      transition-duration: 500ms;
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-align: center;
      -ms-flex-align: center;
      -ms-grid-row-align: center;
      align-items: center;
      -webkit-box-flex: 0;
      -ms-flex: 0 0 100%;
      flex: 0 0 100%;
      min-width: 100%;
      width: 100%;
      height: 20%;
      margin-right: 0;
      margin-left: 0;
      text-indent: 0;
      border-left: 4px solid transparent;
      padding: 0 20px; }
      .featured-post-area .carousel-indicators li h2 {
        font-size: 38px;
        color: #a6a6a6;
        margin-bottom: 0;
        margin-right: 30px; }
        @media only screen and (min-width: 768px) and (max-width: 991px) {
          .featured-post-area .carousel-indicators li h2 {
            font-size: 24px;
            margin-right: 15px; } }
        @media only screen and (max-width: 767px) {
          .featured-post-area .carousel-indicators li h2 {
            font-size: 24px;
            margin-right: 15px; } }
      .featured-post-area .carousel-indicators li .post-title h5 {
        -webkit-transition-duration: 500ms;
        transition-duration: 500ms;
        font-size: 18px;
        font-weight: 300;
        line-height: 1.5;
        margin-bottom: 0; }
        .featured-post-area .carousel-indicators li .post-title h5:hover {
          color: #41ad33; }
        @media only screen and (min-width: 992px) and (max-width: 1199px) {
          .featured-post-area .carousel-indicators li .post-title h5 {
            font-size: 16px; } }
        @media only screen and (min-width: 768px) and (max-width: 991px) {
          .featured-post-area .carousel-indicators li .post-title h5 {
            font-size: 14px; } }
        @media only screen and (max-width: 767px) {
          .featured-post-area .carousel-indicators li .post-title h5 {
            font-size: 14px; } }
      .featured-post-area .carousel-indicators li.active {
        border-left: 4px solid #41ad33;
        box-shadow: 0 0 5px 3px rgba(0, 0, 0, 0.15); }

.featured-posts {
  position: relative;
  z-index: 2; }
  .featured-posts::after {
    content: "";
    position: absolute;
    height: 50%;
    width: 100%;
    z-index: 2;
    top: 50%;
    left: 0;
    background: rgba(0, 0, 0, 0.8);
    background: -webkit-linear-gradient(bottom, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0.01) 90%, rgba(0, 0, 0, 0) 100%);
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0.01) 90%, rgba(0, 0, 0, 0) 100%); }
    @media only screen and (max-width: 767px) {
      .featured-posts::after {
        height: 90%;
        top: 10%; } }
  .featured-posts .featured-post-content {
    position: absolute;
    bottom: 20px;
    left: 30px;
    z-index: 30;
    right: 50px; }
    .featured-posts .featured-post-content p {
      font-weight: 500;
      font-size: 13px;
      color: #ffffff;
      text-transform: uppercase;
      letter-spacing: 2px; }
    .featured-posts .featured-post-content .post-title h2 {
      -webkit-transition-duration: 500ms;
      transition-duration: 500ms;
      font-size: 36px;
      color: #ffffff;
      font-weight: 300;
      line-height: 1.5;
      margin-bottom: 0; }
      .featured-posts .featured-post-content .post-title h2:hover {
        color: #41ad33; }
      @media only screen and (min-width: 768px) and (max-width: 991px) {
        .featured-posts .featured-post-content .post-title h2 {
          font-size: 30px; } }
      @media only screen and (max-width: 767px) {
        .featured-posts .featured-post-content .post-title h2 {
          font-size: 16px; } }

.post-sidebar-area,
.contact-information {
  position: relative;
  z-index: 1; }
  @media only screen and (min-width: 768px) and (max-width: 991px) {
    .post-sidebar-area,
    .contact-information {
      margin-top: 50px; } }
  @media only screen and (max-width: 767px) {
    .post-sidebar-area,
    .contact-information {
      margin-top: 50px; } }

/* :: 8.0 Instagram Area CSS */
.single-instagram-slide {
  position: relative;
  z-index: 2;
  overflow: hidden; }
  .single-instagram-slide::after {
    -webkit-transition-duration: 500ms;
    transition-duration: 500ms;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 5;
    background-color: rgba(255, 255, 255, 0.7);
    content: '';
    position: absolute;
    opacity: 0;
    visibility: hidden; }
  .single-instagram-slide img {
    -webkit-transition-duration: 1000ms;
    transition-duration: 1000ms; }
  .single-instagram-slide a {
    -webkit-transition-duration: 500ms;
    transition-duration: 500ms;
    text-align: center;
    display: inline-block;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    position: absolute;
    z-index: 30;
    width: 100%;
    top: 50%;
    left: 0;
    font-size: 14px;
    font-weight: 500;
    color: #191919;
    text-transform: uppercase;
    opacity: 0;
    visibility: hidden; }
    .single-instagram-slide a:hover {
      color: #191919; }
    .single-instagram-slide a i {
      margin-right: 5px; }
  .single-instagram-slide:hover img {
    transform: scale(1.2) rotate(5deg); }
  .single-instagram-slide:hover::after, .single-instagram-slide:hover a {
    opacity: 1;
    visibility: visible; }

/* :: 9.0 Footer Area CSS */
.footer-area {
  position: relative;
  z-index: 1;
  margin-top: 20px; }
  .footer-area .footer-social-info {
    position: relative;
    z-index: 1;
    padding: 30px 0; }
    .footer-area .footer-social-info a {
      display: inline-block;
      text-transform: uppercase;
      font-weight: 400;
      letter-spacing: 1px; }
      .footer-area .footer-social-info a span {
        margin-left: 10px; }
        @media only screen and (max-width: 767px) {
          .footer-area .footer-social-info a span {
            display: none; } }
        @media only screen and (min-width: 768px) and (max-width: 991px) {
          .footer-area .footer-social-info a span {
            display: none; } }
      .footer-area .footer-social-info a:hover, .footer-area .footer-social-info a:focus {
        color: #41ad33; }
  .footer-area .copywrite-text {
    position: relative;
    z-index: 1;
    padding: 20px 0;
    text-align: center; }
    .footer-area .copywrite-text p {
      font-size: 14px;
      color: #a6a6a6;
      font-weight: 400; }
      @media only screen and (max-width: 767px) {
        .footer-area .copywrite-text p {
          font-size: 12px; } }
      .footer-area .copywrite-text p a {
        font-size: 14px;
        color: #a6a6a6;
        font-weight: 400; }
        .footer-area .copywrite-text p a:hover, .footer-area .copywrite-text p a:focus {
          color: #41ad33; }
        @media only screen and (max-width: 767px) {
          .footer-area .copywrite-text p a {
            font-size: 12px; } }

/* :: 10.0 Breadcumb Area CSS */
.breadcrumb-area {
  position: relative;
  z-index: 10;
  width: 100%;
  padding-bottom: 15px;
  padding-top: 15px; }
  .breadcrumb-area .breadcrumb {
    margin: 0;
    padding: 0;
    background-color: transparent; }
    .breadcrumb-area .breadcrumb .breadcrumb-item {
      font-size: 14px;
      color: #a6a6a6; }
      .breadcrumb-area .breadcrumb .breadcrumb-item a {
        font-size: 14px;
        color: #191919; }
        .breadcrumb-area .breadcrumb .breadcrumb-item a:hover, .breadcrumb-area .breadcrumb .breadcrumb-item a:focus {
          color: #41ad33; }
    .breadcrumb-area .breadcrumb .breadcrumb-item + .breadcrumb-item::before {
      color: #191919;
      content: ">"; }

/* :: 11.0 Blog Area CSS */

  .post-content{
    padding: 20px 5px;
    background: #fff;
  }

  .post-content p{
    font-size: 14px;
    line-height: 24px;
  }

  .post-content h2{
    font-size: 22px;
    font-weight: bold;
  }

  .single-blog-post {
    background: #fff;
    position: relative;
    z-index: 1;
    margin-top: 20px;
    margin-bottom: 40px;
    border-bottom: 1px dotted #ddd;
  }

  .single-blog-post .post-thumbnail, .single-blog-post .post-thumbnail a {
    width: 100%;
    display: block;
  }

  .single-blog-post .post-thumbnail a img {
    border-radius: 10px;
  }

.post-content-detail{
  width: 50%;
}

  @media only screen and (max-width: 767px) {
    .single-blog-post .post-thumbnail {
      -webkit-box-flex: 0;
      -ms-flex: 0 0 100%;
      flex: 0 0 100%;
      min-width: 100%;
      width: 100%;
      margin-right: 0; } 

    .single-blog-post .post-thumbnail a img{
      padding:10px 0;
    }
    .foode-main-menu .classy-nav-container {padding-top: 14px;}
  }

  .single-blog-post .post-content {
    -webkit-box-flex: 0;
  }
    @media only screen and (max-width: 767px) {
      .single-blog-post .post-content {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 100%;
        flex: 0 0 100%;
        min-width: 100%;
        padding:0 8px !important;
        width: 100%; } }
    .single-blog-post .post-content .post-date {
      font-weight: 100;
      font-size: 11px;
      color: #ffffff;
      margin-bottom:5px;
      text-transform: uppercase;
      letter-spacing: 2px;
      color: #666; }
    .single-blog-post .post-content .post-title h4 {
      -webkit-transition-duration: 500ms;
      transition-duration: 500ms;
      font-weight: 300;
      margin-bottom: 15px; }
      .single-blog-post .post-content .post-title h4:hover {
        color: #41ad33; }
      @media only screen and (min-width: 768px) and (max-width: 991px) {
        .single-blog-post .post-content .post-title h4 {
          font-size: 20px; } }
      @media only screen and (max-width: 767px) {
        .single-blog-post .post-content .post-title h4 {
          font-size: 20px; } }
    .single-blog-post .post-content .post-meta {
      position: relative;
      z-index: 1;
      margin-bottom: 15px; }
      .single-blog-post .post-content .post-meta a {
        display: inline-block;
        font-size: 14px;
        color: #191919;
        margin-right: 15px; }
        .single-blog-post .post-content .post-meta a:first-child {
          font-style: italic; }
        .single-blog-post .post-content .post-meta a span,
        .single-blog-post .post-content .post-meta a i {
          color: #a6a6a6;
          margin-left: 3px; }
        .single-blog-post .post-content .post-meta a:hover {
          color: #41ad33; }
    .single-blog-post .post-content .post-excerpt {
      font-size: 16px;
      color: #595959;
      margin-bottom: 30px; }
    .single-blog-post .post-content .read-more-btn {
      color: #a6a6a6;
      font-size: 13px;
      padding: 10px 20px;
      border: 1px solid #ccc;
      border-radius: 50px;
      margin: 10px 0;
      text-transform: uppercase;
    }

    .single-blog-post .post-content .read-more-btn:hover {
      border: 1px solid #41ad33;
    }
      .single-blog-post .post-content .read-more-btn i {
        -webkit-transition-duration: 300ms;
        transition-duration: 300ms;
        color: #41ad33; }
      .single-blog-post .post-content .read-more-btn:hover, .single-blog-post .post-content .read-more-btn:focus {
        color: #41ad33; }
        .single-blog-post .post-content .read-more-btn:hover i, .single-blog-post .post-content .read-more-btn:focus i {
          margin-left: 5px; }
  .single-blog-post.related-post .post-thumbnail {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    max-width: 100%;
    width: 100%;
    margin-right: 0;
    margin-bottom: 30px !important; }
  .single-blog-post.related-post .post-content {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    max-width: 100%;
    width: 100%; }

/* :: 12.0 Comment Area */
.comment_area {
  background: #fff;
  position: relative;
  z-index: 1;
  padding: 50px 0;
  padding: 8px;
}
  .comment_area .headline {
    margin-bottom: 30px; }
  .comment_area .single_comment_area {
    position: relative;
    z-index: 1; }
    .comment_area .single_comment_area::after {
      position: absolute;
      width: 1px;
      height: 90%;
      background-color: #ebebeb;
      left: 100px;
      top: 0;
      z-index: 2;
      content: ''; }
      @media only screen and (max-width: 767px) {
        .comment_area .single_comment_area::after {
          display: none; } }
    .comment_area .single_comment_area .comment-wrapper {
      margin-bottom: 30px; }
      .comment_area .single_comment_area .comment-wrapper .comment-author {
        width: 70px;
        height: 70px;
        border-radius: 50%;
        margin-right: 60px; }
        @media only screen and (max-width: 767px) {
          .comment_area .single_comment_area .comment-wrapper .comment-author {
            margin-right: 20px; } }
        .comment_area .single_comment_area .comment-wrapper .comment-author img {
          width: 100%;
          height: 100%;
          border-radius: 50%; }
      .comment_area .single_comment_area .comment-wrapper .comment-content {
        -webkit-box-flex: 0;
        -ms-flex: 1;
        flex: 1; }
        .comment_area .single_comment_area .comment-wrapper .comment-content .comment-date {
          font-size: 12px;
          text-transform: uppercase;
          letter-spacing: 1px;
          color: #41ad33; }
        .comment_area .single_comment_area .comment-wrapper .comment-content h5 {
          font-size: 18px;
          margin: 5px 0; }
        .comment_area .single_comment_area .comment-wrapper .comment-content p {
          font-size: 16px; }
        .comment_area .single_comment_area .comment-wrapper .comment-content a {
          min-width: 80px;
          height: 30px;
          border: 1px solid #ebebeb;
          line-height: 28px;
          font-size: 12px;
          text-align: center;
          color: #191919;
          display: inline-block; }
          .comment_area .single_comment_area .comment-wrapper .comment-content a:hover {
            border-color: #191919;
            color: #ffffff;
            background-color: #191919; }

.single_comment_area ol li.single_comment_area {
  margin-left: 130px; }
  .single_comment_area ol li.single_comment_area::after {
    display: none; }
  @media only screen and (max-width: 767px) {
    .single_comment_area ol li.single_comment_area {
      margin-left: 40px; } }
  .single_comment_area ol li.single_comment_area .comment-wrapper .comment-author {
    margin-right: 30px; }
    @media only screen and (max-width: 767px) {
      .single_comment_area ol li.single_comment_area .comment-wrapper .comment-author {
        margin-right: 15px; } }

/* :: 13.0 Leave A Reply Area CSS */
.leave-comment-area {
  background: #fff;
  position: relative;
  z-index: 1;
  padding: 8px;
}
  .leave-comment-area h4 {
    margin-bottom: 30px; }
  .leave-comment-area form .form-control {
    width: 100%;
    height: 40px;
    border: 1px solid #ebebeb;
    font-size: 14px;
    color: #a6a6a6;
    padding: 10px 20px;
    margin-bottom: 20px;
    -webkit-transition-duration: 500ms;
    transition-duration: 500ms; }
    .leave-comment-area form .form-control:focus {
      box-shadow: none;
      border-color: #41ad33; }
  .leave-comment-area form textarea.form-control {
    width: 100%;
    height: 120px; }

/* :: 14.0 Pager CSS */
.foode-pager {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between; }
  .foode-pager li a {
    width: 130px;
    height: 44px;
    border: 1px solid #ebebeb;
    display: inline-block;
    font-size: 13px;
    color: #a6a6a6;
    text-transform: uppercase;
    letter-spacing: 1px;
    line-height: 42px;
    text-align: center; }
    .foode-pager li a:hover, .foode-pager li a:focus {
      color: #191919; }

/* :: 15.0 Sidebar Area CSS */
.single-widget-area {
  position: relative;
  z-index: 1;
  margin-top: 20px;
  background: #fff;
  padding: 8px;
}
  .single-widget-area .widget-title {
    width: 100%;
    position: relative;
    border-bottom: 1px solid;
    z-index: 2;
    margin-bottom: 17px;
    text-align: center;
    line-height: 35px;
  }
    .single-widget-area .widget-title::before {
      width: 100%;
      height: 14px;
      background-position: center center;
      background-repeat: repeat;
      position: absolute;
      top: 4px;
      left: 0;
      z-index: 1;
      content: ''; }
    .single-widget-area .widget-title h6 {
      position: relative;
      z-index: 5;
      font-size: 14px;
      text-transform: uppercase;
      letter-spacing: 1px;
      margin-bottom: 0;
      line-height: 1;
      background-color: #ffffff;
      padding: 0 25px;
      display: inline-block; }
  .single-widget-area .about-thumbnail {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    margin: 0 auto;
    display: block; }
    .single-widget-area .about-thumbnail img {
      border-radius: 50%; }
  .single-widget-area .widget-content img {
    margin-top: 20px;
    margin-bottom: 15px; }
  .single-widget-area .widget-content p {
    margin-bottom: 0;
    font-size: 16px;
    line-height: 1.6; }
  .single-widget-area .widget-social-info a {
    display: inline-block;
    padding: 0 10px;
    font-size:18px; }
    .single-widget-area .widget-social-info a:hover, .single-widget-area .widget-social-info a:focus {
      color: #41ad33 !important; }
  .single-widget-area .single-latest-post {
    position: relative;
    z-index: 1;
    margin-bottom: 15px;
    padding-bottom: 15px; }
    .single-widget-area .single-latest-post:last-child {
      margin-bottom: 0; }
    .single-widget-area .single-latest-post .post-thumb {
      -webkit-box-flex: 0;
      -ms-flex: 0 0 35%;
      flex: 0 0 35%;
      max-width: 35%;
      width: 35%;
      margin-right: 10%; }
    .single-widget-area .single-latest-post .post-thumb a img { border-radius: 5px; }
    .single-widget-area .single-latest-post .post-content {
      -webkit-box-flex: 0;
      -ms-flex: 0 0 55%;
      flex: 0 0 55%;
      max-width: 55%;
      width: 55%; }
      .single-widget-area .single-latest-post .post-content .post-title h6 {
        -webkit-transition-duration: 300ms;
        transition-duration: 300ms;
        font-size: 18px;
        margin-bottom: 15px;
        line-height: 1.5; }
        .single-widget-area .single-latest-post .post-content .post-title h6:hover, .single-widget-area .single-latest-post .post-content .post-title h6:focus {
          color: #41ad33; }
      .single-widget-area .single-latest-post .post-content .post-author {
        display: block;
        font-size: 14px;
        font-style: italic; }
        .single-widget-area .single-latest-post .post-content .post-author span {
          color: #a6a6a6; }
  .single-widget-area .newsletter-content {
    position: relative;
    z-index: 1; }
    .single-widget-area .newsletter-content p {
      margin-bottom: 30px;
      font-size: 16px;
      line-height: 1.5; }
    .single-widget-area .newsletter-content form {
      position: relative;
      z-index: 2; }
      .single-widget-area .newsletter-content form input {
        background-color: #f2f4f5;
        padding: 0 20px;
        width: 100%;
        height: 50px;
        font-size: 14px;
        color: #a6a6a6;
        border: none;
        border-radius: 0; }
        .single-widget-area .newsletter-content form input:focus {
          box-shadow: none; }
      .single-widget-area .newsletter-content form button {
        position: absolute;
        top: 0;
        right: 0;
        width: 50px;
        height: 50px;
        z-index: 10;
        border: none;
        background-color: #41ad33;
        cursor: pointer;
        color: #ffffff; }
        .single-widget-area .newsletter-content form button:hover {
          -webkit-transition-duration: 300ms;
          transition-duration: 300ms;
          background-color: #191919; }
  .single-widget-area .popular-tags li a {
    display: inline-block;
    margin: 4px;
    border: 1px solid #ebebeb;
    padding: 10px 15px;
    line-height: 1;
    font-size: 13px;
    color: #191919; }
    .single-widget-area .popular-tags li a:hover, .single-widget-area .popular-tags li a:focus {
      color: #41ad33; }
  .single-widget-area .foode-catagories {
    position: relative;
    z-index: 1; }
    .single-widget-area .foode-catagories li a {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-pack: justify;
      -ms-flex-pack: justify;
      justify-content: space-between;
      border-bottom: 1px dotted #ebebeb;
      padding: 15px 0;
      font-size: 16px;
      line-height: 1;
      font-family: "Merriweather", serif;
      font-weight: 300; }
      .single-widget-area .foode-catagories li a span {
        color: #191919;
        -webkit-transition-duration: 500ms;
        transition-duration: 500ms; }
        .single-widget-area .foode-catagories li a span i {
          position: relative;
          top: -3px;
          font-size: 8px;
          margin-right: 8px; }
        .single-widget-area .foode-catagories li a span:last-child {
          color: #a6a6a6;
          font-weight: 400; }
      .single-widget-area .foode-catagories li a:hover span, .single-widget-area .foode-catagories li a:focus span {
        color: #41ad33; }
    .single-widget-area .foode-catagories li:last-child a {
      border-bottom: none; }
  .single-widget-area .foode-archives {
    position: relative;
    z-index: 1; }
    .single-widget-area .foode-archives li a {
      display: block;
      border-bottom: 1px dotted #ebebeb;
      padding: 15px 0;
      font-size: 16px;
      line-height: 1;
      font-family: "Merriweather", serif;
      font-weight: 300; }
      .single-widget-area .foode-archives li a span {
        color: #191919;
        -webkit-transition-duration: 500ms;
        transition-duration: 500ms; }
        .single-widget-area .foode-archives li a span i {
          position: relative;
          top: -3px;
          font-size: 8px;
          margin-right: 8px; }
      .single-widget-area .foode-archives li a:hover span, .single-widget-area .foode-archives li a:focus span {
        color: #41ad33; }
    .single-widget-area .foode-archives li:last-child a {
      border-bottom: none; }
  .single-widget-area .search-form {
    position: relative;
    z-index: 2; }
    .single-widget-area .search-form input {
      background-color: #f2f4f5;
      padding: 0 20px;
      width: 100%;
      height: 50px;
      font-size: 14px;
      color: #a6a6a6;
      border: none;
      border-radius: 0; }
      .single-widget-area .search-form input:focus {
        box-shadow: none; }
    .single-widget-area .search-form button {
      position: absolute;
      top: 0;
      right: 0;
      width: 50px;
      height: 50px;
      z-index: 10;
      border: none;
      background-color: #41ad33;
      cursor: pointer;
      color: #ffffff; }
      .single-widget-area .search-form button:hover {
        -webkit-transition-duration: 300ms;
        transition-duration: 300ms;
        background-color: #191919; }
  .single-widget-area img {
    width: 100%; }

.single-post-details-area {
  position: relative;
  z-index: 1;
  }
.single-post-details-area .post-thumbnail img {
  border-radius: 10px;
}
  .single-post-details-area .post-content .post-date {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 2px;
 }
  .single-post-details-area .post-content .post-title {
    -webkit-transition-duration: 500ms;
    transition-duration: 500ms;
    font-weight: 300;
    line-height: 1.5;
    margin-bottom: 15px;
    font-size: 30px; }
    @media only screen and (max-width: 767px) {
      .single-post-details-area .post-content .post-title {
        font-size: 24px; } }
  .single-post-details-area .post-content .post-meta {
    position: relative;
    z-index: 1;
    margin-bottom: 30px; }
    .single-post-details-area .post-content .post-meta a {
      display: inline-block;
      font-size: 14px;
      color: #191919;
      margin-right: 15px; }
      .single-post-details-area .post-content .post-meta a:first-child {
        font-style: italic; }
      .single-post-details-area .post-content .post-meta a span,
      .single-post-details-area .post-content .post-meta a i {
        color: #a6a6a6;
        margin-left: 3px; }
      .single-post-details-area .post-content .post-meta a:hover {
        color: #41ad33; }
  .single-post-details-area .post-content p {
    font-size: 16px;
    color: #595959; }
  .single-post-details-area .post-content blockquote {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    position: relative;
    z-index: 1;
    padding: 15px 0 10px 0; }
    .single-post-details-area .post-content blockquote .blockquote-icon {
      position: relative;
      z-index: 1;
      margin-right: 20px; }
      .single-post-details-area .post-content blockquote .blockquote-icon img {
        width: 40px;
        height: auto; }
    .single-post-details-area .post-content blockquote .blockquote-text h6 {
      font-weight: 300;
      line-height: 1.9; }
      .single-post-details-area .post-content blockquote .blockquote-text h6:first-child {
        font-style: italic; }
      .single-post-details-area .post-content blockquote .blockquote-text h6:last-child {
        color: #41ad33; }

.post-tags-share {
  position: relative;
  padding: 12px 8px;
  z-index: 1;
  margin-bottom: 50px;
  background: #fff;
 }
  .post-tags-share .popular-tags li a {
    display: inline-block;
    margin: 4px;
    border: 1px solid #ebebeb;
    padding: 10px 15px;
    line-height: 1;
    text-transform: uppercase;
    font-size: 13px;
    color: #191919; }
    .post-tags-share .popular-tags li a:hover, .post-tags-share .popular-tags li a:focus {
      color: #41ad33; }
  .post-tags-share .post-share span {
    font-family: "Merriweather", serif;
    font-size: 14px; }
  .post-tags-share .post-share a {
    font-size: 14px;
    display: inline-block;
    padding: 0 10px; }
    .post-tags-share .post-share a:hover, .post-tags-share .post-share a:focus {
      color: #41ad33; }
    @media only screen and (max-width: 767px) {
      .post-tags-share .post-share a {
        padding: 0 5px; } }

.related-posts {
  position: relative;
  z-index: 1; }
  .related-posts .curve-line {
    width: 100%;
    height: 6px; }
  .related-posts .headline {
    margin-bottom: 30px; }

.map-area {
  position: relative;
  z-index: 2; }
  .map-area iframe {
    width: 100%;
    height: 530px;
    border: none;
    margin-bottom: 0; }
    @media only screen and (max-width: 767px) {
      .map-area iframe {
        height: 300px; } }

/* :: 16.0 Contact Area CSS */
.contact-content-area {
  position: relative;
  z-index: 50;
  padding: 8%;
  box-shadow: 0 5px 30px 0 rgba(0, 0, 0, 0.15);
  top: -100px;
  background-color: #ffffff; }

.contact-content {
  position: relative;
  z-index: 2; }
  .contact-content h4 {
    font-weight: 300;
    text-transform: uppercase;
    margin-bottom: 50px; }
  .contact-content .single-contact-info {
    position: relative;
    margin-bottom: 20px; }
    .contact-content .single-contact-info:last-child {
      margin-bottom: 0; }
    .contact-content .single-contact-info .icon {
      -webkit-box-flex: 0;
      -ms-flex: 0 0 40px;
      flex: 0 0 40px;
      max-width: 40px;
      width: 40px; }
      .contact-content .single-contact-info .icon i {
        font-size: 16px;
        margin-top: 8px; }
    .contact-content .single-contact-info p {
      margin-bottom: 0;
      font-size: 16px; }
  .contact-content .contact-social-info a {
    display: inline-block;
    margin-right: 25px; }
    .contact-content .contact-social-info a:hover, .contact-content .contact-social-info a:focus {
      color: #41ad33; }
    @media only screen and (max-width: 767px) {
      .contact-content .contact-social-info a {
        margin-right: 15px; } }
  .contact-content .contact-form-area .form-control {
    position: relative;
    z-index: 2;
    height: 45px;
    width: 100%;
    background-color: #ffffff;
    font-size: 12px;
    margin-bottom: 15px;
    border: 1px solid #ebebeb;
    border-radius: 0;
    padding: 15px 30px;
    font-style: italic;
    font-weight: 700;
    color: #bbbbbb;
    -webkit-transition-duration: 500ms;
    transition-duration: 500ms; }
    .contact-content .contact-form-area .form-control:focus {
      box-shadow: none;
      border-color: #41ad33; }
  .contact-content .contact-form-area textarea.form-control {
    height: 120px; }

/* :: 17.0 Typography CSS */
h4{
  font-size:2rem;
}

.f12 {
  font-size:12px !important; 
}

.f16 {
  font-size:16px !important; 
}

.type-face {
  position: relative;
  z-index: 1; }
  .type-face p {
    font-size: 16px; }

.foode-image,
.foode-blockquote {
  position: relative;
  z-index: 1;
  padding: 50px 0; }

.foode-list-area {
  position: relative;
  z-index: 1; }

.foode-list {
  position: relative;
  z-index: 1; }
  .foode-list li {
    font-size: 16px;
    color: #595959;
    margin-bottom: 15px;
    display: block; }
    .foode-list li:last-child {
      margin-bottom: 0; }
    .foode-list li i {
      position: relative;
      z-index: 1;
      top: -2px;
      font-size: 8px;
      color: #191919;
      margin-right: 10px; }

blockquote {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  z-index: 1;
  padding: 15px 0 10px 0; }
  blockquote .blockquote-icon {
    position: relative;
    z-index: 1;
    margin-right: 20px; }
    blockquote .blockquote-icon img {
      width: 40px;
      height: auto; }
  blockquote .blockquote-text h6 {
    font-weight: 300;
    line-height: 1.9; }
    blockquote .blockquote-text h6:first-child {
      font-style: italic; }
    blockquote .blockquote-text h6:last-child {
      color: #41ad33; }

.contact-form-area .form-control {
  position: relative;
  z-index: 2;
  height: 45px;
  width: 100%;
  background-color: #ffffff;
  font-size: 12px;
  margin-bottom: 15px;
  border: 1px solid #ebebeb;
  border-radius: 0;
  padding: 15px 30px;
  font-style: italic;
  font-weight: 700;
  color: #bbbbbb;
  -webkit-transition-duration: 500ms;
  transition-duration: 500ms; }
  .contact-form-area .form-control:focus {
    box-shadow: none;
    border-color: #41ad33; }
.contact-form-area textarea.form-control {
  height: 120px; }


.pagination-container {
  width: fit-content;
  margin: 20px auto;
}

.page-item.active .page-link {
  color: #fff;
  background-color: #41ad33;
  border-color: #41ad33;
}

ul.pagination li a {
  color:#000;
}

/* ======= The End ======= */

/*# sourceMappingURL=style.css.map */
.sb-social {
  width: fit-content;
  display: inline-block;
  float: right;
  line-height: 50px;
  padding-right: 25px;
}
.sb-social a {
  font-size:16px;
  padding:0 4px;
}

.sb-social a:hover {
  color:#41ad33 !important;
  font-size:16px;
}

.thumb-detail{
  padding: 8px;
}

.thumb-detail .t-content a {
  font-size: 14px;
  color:#595959;
}

.thumb-detail .t-content a:hover{
  color:#41ad33;
}

.thumb-detail .t-content p {
  font-size: 14px;
}

#no-comment{
  padding: 12px;
  background:rgba(88,161,53, 0.3);
}

.follow-us-instagram{
  display: block;
  width: 95%;
  margin: 0 auto;
}

blockquote{
  margin: -6px 0 8px 18px;
  padding-left: 18px !important;
  font-family: "Merriweather", serif;
  font-style: italic;
  font-size: 18px;
  color: #6e6e6e;
}

blockquote:before {
  width: 28px;
  content: " ";
  background-image: url(../img/quote.png);
  background-repeat: no-repeat;
  position: absolute;
  left: -20px;
  top: 0px;
  height: 24px;
}

/*Post Detail Content*/

.detail-content ul, .detail-content ol {margin: 20px 0;}

.detail-content ul li {
  list-style-type: square !important;
  margin-left:40px;
}

.detail-content ol li {
  list-style-type: decimal !important;
  margin-left:40px;
}