/*!
Theme Name: webizseo
Theme URI: http://underscores.me/
Author: webizseo
Author URI: https://www.webizseo.com/
Description: A wordpress theme by WebizSEO.
Version: 1.0.0
Tested up to: 5.4
Requires PHP: 5.6
License: GNU General Public License v2 or later
License URI: LICENSE
Text Domain: webizseo
Tags: custom-background, custom-logo, custom-menu, featured-images, threaded-comments, translation-ready

This theme, like WordPress, is licensed under the GPL.
Use it to make something cool, have fun, and share what you've learned.

webizseo is based on Underscores https://underscores.me/, (C) 2012-2020 Automattic, Inc.
Underscores is distributed under the terms of the GNU GPL v2 or later.

Normalizing styles have been helped along thanks to the fine work of
Nicolas Gallagher and Jonathan Neal https://necolas.github.io/normalize.css/
*/
/* Webizseo CSS */

/*** 
=============================================
  Color Css 
=============================================
***/

/*** 
=============================================
  Header Section Css 
=============================================
***/
.off-canvas-close{
	color: black;
	top:40px;
}
#sidebar-wrapper{
	display:none;
}
.off-canvas-toggle-cover.d-inline-block{
	display:none !important;
}
.header-top{
background: #56D5E2;
background: -webkit-linear-gradient(90deg, rgba(92, 223, 229) 10%, rgba(3, 74, 175) 16%);
background: -moz-linear-gradient(90deg, rgba(92, 223, 229) 10%, rgba(3, 74, 175) 16%);
background: linear-gradient(90deg, rgba(92, 223, 229) 10%, rgba(3, 74, 175) 16%);
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#56D5E2", endColorstr="#0C5EB5", GradientType=1);
}
.logo{
	height: 110px;
}
.main-menu a{
	color: var(--color-white);
}
.slider-content h1{
	background-color: black;
	padding: 10px 10px;
}


@media (max-width: 768px){
	.slicknav_nav{
	margin-right: 20px;
	padding: 0px;
}
	
}
/*** 
=============================================
  BreadCrumb Section Css 
=============================================
***/
.breadcrumb a{
	color: var(--color-primary);
}
.breadcrumb {
    display: inline-block;
    width: 100%;
    text-align: left;
}

.breadcrumb a {
    display: inline-block;
}

.breadcrumb span {
    margin: 0 6px;
}

/* Mobile Fix */
@media (max-width: 767px) {
    .entry-header .entry-header-content {
        text-align: left !important;
    }
    .breadcrumb {
        margin-top: 10px;
        font-size: 14px;
    }
}

@media (max-width: 768px){
}
/*** 
=============================================
  Home Page Css 
=============================================
***/
@media (max-width: 768px){
}
/*** 
=============================================
  About Page Css 
=============================================
***/
figure.kw-img.image img {
    height: 600px;
    width: 1000px;
    object-fit: cover;
}

.kw-team.about-author-img{
	text-align: center;
}
@media (max-width: 768px){
}
/*** 
=============================================
  Blog Page Css 
=============================================
***/
.kw-feature.image img{
	width: 1000px;
	height: 600px;
}
.entry-meta.meta-0 span.post-cat::after {
    content: "" !important;
	width: 0px;
}
.category-filter ul{
	display:inline-flex; 
list-style:none;
 padding:0;
	gap:50px;
}
.category-filter ul li {
	background: #5cdfe5;
	padding: 10px 10px;
}
.category-filter ul li a:hover{
	color: var(--color-secondary);
	
}
/* Mobile only */
@media (max-width: 768px) {
  .category-filter ul {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    gap: 15px;
    padding: 0 10px;
  }

  .category-filter ul li {
    flex: 0 0 auto; /* Prevent items from stretching */
    scroll-snap-align: start;
  }

  /* Optional: hide scrollbar */
  .category-filter ul::-webkit-scrollbar {
    display: none;
  }
}

/*** 
=============================================
  Gallery Page Css 
=============================================
***/
@media (max-width: 768px){
}
/*** 
=============================================
  Contact Page Css 
=============================================
***/
@media (max-width: 768px){
}
/*** 
=============================================
  Footer Section Css 
=============================================
***/
@media (max-width: 768px){
}
/*** 
=============================================
  Floating button Area Css 
=============================================
***/
.mu-single-call-box {
  max-width: 100%;
  height: 150px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 25px;
  padding: 0 50px;
}
.mu-single-call-box .mu-btn {
  text-align: center;
  font-size: 20px;
  font-weight: bold;
  text-decoration: none;
  transition: 0.1s;
  margin: 0 auto;
}
.floating-btn, .floating-btn-2{
	display: none;
}
.floating-btn , .floating-btn-2 
{
  background:  var(--color-secondary);
  border-radius: 10px;
  box-shadow:    0 5px #000000;
  padding:       15px 15px;
  color:         #ffffff;
  font:          normal bold 20px/1 "Open Sans", sans-serif;
  text-align:    center;
}
/*Mobile Css Start*/
@media (max-width: 768px){
	.mu-single-call-box {
		display: none;
	}
	.floating-btn, .floating-btn-2 {
	  position: fixed;
		bottom: 20px;
		display: block !important;
		z-index: 999;
	}
	.floating-btn{
		left: 10px;
	}
	.floating-btn-2{
		right: 70px;
	}
	.floating-btn a, .floating-btn-2 a {
		color: white !important;
		font-size: 20px;
	}
}