
/*
* GURD-CUSTOM
* build: 24.07.2018
*/
/*
* Table of Contents:
*
* 1.0 - General
* 2.0 - Button
* 3.0 - Header
* 4.0 - Post
* 5.0 - Sidebar
* 6.0 - Footer
* 7.0 - Responsive
*/
/*
* 1.0 - General
*/
.gutengard_btn, .btn_gurd {
  background-color: #fecb2f;
  color: #fff;
  /*padding: 10px 20px;*/
  border-radius: 3px;
  display: inline-block;
  text-transform: uppercase;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 1px;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.gutengard_btn:hover, .btn_gurd:hover {
  background-color: #333;
  color: #fff;
}

.bodypadding {
  padding-top: 80px;
}

.no_padding {
  padding-left: 0;
  padding-right: 0;
}

.scroll_up {
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 40px;
  height: 40px;
  line-height: 40px;
  text-align: center;
  z-index: 999;
  cursor: pointer;
  display: none;
}
.scroll_up i {
  font-size: 20px;
}

/*
* 2.0 - Button
*/
.btn_load_post {
  margin-top: 30px;
}

/*
* 3.0 - Header
*/
.main_header {
  padding: 15px 0;
  background-color: #fff;
  -webkit-box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  -moz-box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}
.main_header.fixed_header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 999;
}
.main_header .logo_head {
  float: left;
  margin-top: 5px;
}
.main_header .logo_head img {
  max-height: 40px;
}
.main_header .righthead_block {
  float: right;
}
.main_header .righthead_block .top_nav_links {
  float: left;
}
.main_header .righthead_block .search_btn {
  float: left;
  margin-left: 20px;
}
.main_header .righthead_block .search_btn a {
  font-size: 20px;
  color: #333;
  line-height: 50px;
}
.main_header .righthead_block .sidebar_btn {
  float: left;
  margin-left: 20px;
}
.main_header .righthead_block .sidebar_btn a {
  font-size: 20px;
  color: #333;
  line-height: 50px;
}

.top_nav_links .navbar-nav .nav-item {
  margin: 0 10px;
}
.top_nav_links .navbar-nav .nav-item .nav-link {
  color: #333;
  font-weight: 700;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 15px 0;
}
.top_nav_links .navbar-nav .nav-item .nav-link span {
  position: relative;
}
.top_nav_links .navbar-nav .nav-item .nav-link span:after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background-color: #fecb2f;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.top_nav_links .navbar-nav .nav-item:hover .nav-link span:after, .top_nav_links .navbar-nav .nav-item.current-menu-item .nav-link span:after {
  width: 100%;
}
.top_nav_links .navbar-nav .nav-item .sub-menu {
  position: absolute;
  top: 100%;
  left: 0;
  width: 200px;
  background-color: #fff;
  -webkit-box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  -moz-box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  padding: 10px 0;
  list-style: none;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.top_nav_links .navbar-nav .nav-item:hover .sub-menu {
  opacity: 1;
  visibility: visible;
}
.top_nav_links .navbar-nav .nav-item .sub-menu li {
  margin: 0;
}
.top_nav_links .navbar-nav .nav-item .sub-menu li a {
  padding: 10px 20px;
  display: block;
  color: #333;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.top_nav_links .navbar-nav .nav-item .sub-menu li a:hover {
  background-color: #f5f5f5;
}

/*
* 4.0 - Post
*/
.post_preview_image {
  margin-bottom: 30px;
}
.post_preview_image img {
  width: 100%;
}

.post_single_container {
  background-color: #fff;
  padding: 30px;
  -webkit-box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  -moz-box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}
.post_single_container .single_post_content {
  padding-bottom: 30px;
  border-bottom: 1px solid #eee;
}
.post_single_container .single_post_content h1 {
  font-size: 30px;
  font-weight: 700;
  margin-bottom: 20px;
}
.post_single_container .single_post_content h2 {
  font-size: 24px;
  font-weight: 700;
  margin-top: 30px;
  margin-bottom: 20px;
}
.post_single_container .single_post_content p {
  line-height: 1.8;
}
.post_single_container .single_post_content blockquote {
  border-left: 3px solid #fecb2f;
  padding-left: 20px;
  margin: 30px 0;
}
.post_single_container .single_post_content blockquote p {
  font-style: italic;
  font-size: 18px;
}
.post_single_container .post_datainfo {
  margin-top: 30px;
}
.post_single_container .post_datainfo .post_datainfo_item {
  margin-bottom: 10px;
}
.post_single_container .post_datainfo .post_datainfo_item .catspostname, .post_single_container .post_datainfo .post_datainfo_item .tagpostname {
  font-weight: 700;
  margin-right: 10px;
}
.post_single_container .post_datainfo .post_datainfo_item a {
  color: #fecb2f;
}
.post_single_container .post_datainfo .post_datainfo_item a:hover {
  text-decoration: underline;
}

.post_navigation {
  margin-top: 30px;
  display: flex;
  justify-content: space-between;
}
.post_navigation .prevous_post, .post_navigation .next_post {
  width: 48%;
  display: flex;
  align-items: center;
}
.post_navigation .prevous_post .prev_img, .post_navigation .next_post .prev_img {
  margin-right: 15px;
}
.post_navigation .prevous_post .prev_img img, .post_navigation .next_post .prev_img img {
  border-radius: 50%;
}
.post_navigation .prevous_post .link_post a, .post_navigation .next_post .link_post a {
  color: #333;
  font-weight: 700;
}
.post_navigation .prevous_post .link_post a .nav_arrow, .post_navigation .next_post .link_post a .nav_arrow {
  display: block;
  font-size: 12px;
  color: #999;
  font-weight: 400;
}

/*
* 5.0 - Sidebar
*/
.sidebar_post {
  padding-left: 20px;
}
.sidebar_block {
  margin-bottom: 30px;
  background-color: #fff;
  padding: 20px;
  -webkit-box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  -moz-box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}
.sidebar_block .widget_title {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 1px;
  position: relative;
  padding-bottom: 10px;
}
.sidebar_block .widget_title:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 30px;
  height: 2px;
  background-color: #fecb2f;
}
.sidebar_block .widget_recent_post ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.sidebar_block .widget_recent_post ul li {
  display: flex;
  align-items: center;
  margin-bottom: 15px;
}
.sidebar_block .widget_recent_post ul li:last-child {
  margin-bottom: 0;
}
.sidebar_block .widget_recent_post ul li .post_thumb {
  margin-right: 15px;
}
.sidebar_block .widget_recent_post ul li .post_thumb img {
  border-radius: 50%;
}
.sidebar_block .widget_recent_post ul li .post_name a {
  color: #333;
  font-weight: 700;
}

/*
* 6.0 - Footer
*/
.footer_main {
  background-color: #222;
  color: #fff;
  padding: 50px 0;
}
.footer_main .footer_widget .widget_title {
  color: #fff;
}
.footer_main .footer_widget .widget_title:after {
  background-color: #fecb2f;
}
.footer_main .footer_widget ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.footer_main .footer_widget ul li a {
  color: #ccc;
}
.footer_main .footer_widget ul li a:hover {
  color: #fff;
}

.footer_bottom {
  background-color: #111;
  padding: 20px 0;
  color: #ccc;
}
.footer_bottom .copyright a {
  color: #fecb2f;
}

/* Fix for recent post widget image size */
.widget_recent_post ul li {
    display: flex;
    align-items: center;
}

.widget_recent_post .post_thumb {
    flex-shrink: 0; /* Prevents the image container from shrinking */
    margin-right: 15px;
}

.widget_recent_post .post_name {
    flex-grow: 1; /* Allows the title to take up the remaining space */
}

/*
* 7.0 - Responsive
*/
@media (max-width: 991px) {
  .main_header .righthead_block .top_nav_links {
    display: none;
  }
  .main_header .righthead_block .nav_btn_toggle {
    display: block;
    float: left;
  }
  .main_header .righthead_block .nav_btn_toggle .navbar-toggler {
    padding: 0;
    border: 0;
    outline: none;
    margin-top: 10px;
  }
  .main_header .righthead_block .nav_btn_toggle .navbar-toggler .butline {
    width: 25px;
    height: 2px;
    background-color: #333;
    display: block;
    margin: 5px 0;
  }
  .sidebar_post {
    padding-left: 0;
    margin-top: 30px;
  }
}

/* FAQ Accordion */
.faq-accordion {
    margin: 40px 0;
}
.faq-accordion .card {
    border: 1px solid #e5e5e5;
    border-radius: 0;
    margin-bottom: 10px;
    box-shadow: none;
}
.faq-accordion .card-header {
    background-color: #f9f9f9;
    border-bottom: none;
    padding: 0;
}
.faq-accordion .card-header h2 {
    margin: 0;
}
body .faq-accordion .card .card-header .btn-link {
    width: 100%;
    text-align: left;
    padding: 15px 20px;
    color: #fecb2f !important;
    font-weight: 700;
    font-size: 16px;
    text-decoration: none;
    position: relative;
}
body .faq-accordion .card .card-header .btn-link:before {
    content: "\2022";
    margin-right: 10px;
}

.faq-accordion .card-header .btn-link:after {
    content: '\f107';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    transition: all 0.3s;
}
.faq-accordion .card-header .btn-link[aria-expanded="true"]:after {
    transform: translateY(-50%) rotate(180deg);
}
.faq-accordion .card-body {
    padding: 15px 20px;
    line-height: 1.8;
}
