/*!
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 
=============================================
***/
:root {
	--Extra-color: #fd9d00;
}
.mu-clr-extra {
	color: var(--Extra-color);
}
.mu-bg-extra {
	background-color: var(--Extra-color);
}
.th-btn.style7 {
	background-color: var(--Extra-color);
	color: var(--white-color);
}
/*** 
=============================================
  Header Section Css 
=============================================
***/
.header-layout9 .logo-bg::before {
	background-color: var(--white-color);
}
.header-layout13 .logo-bg::after {
	background-color: var(--theme-color);
}
.sticky-wrapper, .sticky-wrapper.sticky {
	background: var(--theme-color);
}
.header-layout13 .main-menu {
	margin-left: 130px;
}
.main-menu > ul > li {
	margin: 0 10px;
}
.main-menu a {
	color: var(--white-color);
	&:hover {
		color: var(--title-color) !important;
	}
}
.header-button .th-btn {
	margin-left: 0px;
	border: 1px solid #fff;
}
@media (max-width: 768px){
	.header-layout13 .logo-bg::after {
		background-color: var(--white-color);
	}
	.sticky-wrapper, .sticky-wrapper.sticky {
		background: var(--white-color);
	}
}
/*** 
=============================================
  BreadCrumb Section Css 
=============================================
***/
@media (max-width: 768px){
}
/*** 
=============================================
  Home Page Css 
=============================================
***/
.hero-style10 .hero-subtitle, .hero-style11 .hero-subtitle, .hero-style12 .hero-subtitle {
	background: var(--Extra-color);
	width: fit-content;
	padding: 10px 15px;
	color: var(--black-color);
}
.hero-style11 .hero-title {
	width: 75%;
}
.counter-card.style2 .counter-number, .counter-card_number {
	color: var(--Extra-color);
}
@media (max-width: 768px){
	.hero-style10, .hero-style11, .hero-style12 {
		text-align: left;
	}
	.hero-style11 .hero-title {
		width: 100%;
	}
	.hero-style11 .btn-group {
		display: none;
	}
}
/*** 
=============================================
  About Page Css 
=============================================
***/
@media (max-width: 768px){
}
/*** 
=============================================
  Serivces Page Css 
=============================================
***/
@media (max-width: 768px){
}
/*** 
=============================================
  Courses Page Css 
=============================================
***/
.course-card .price-wrap::before {
	background-color: var(--theme-color);
}
.course-card .price {
	font-size: 16px;
}
@media (max-width: 768px){
}
/*** 
=============================================
   Location Css
=============================================
***/
.mu-location-pg-btn {
	display: grid;
	grid-template-columns: 1fr 1fr 1fr 1fr;
	column-gap: 20px;
}
.frm-location input[type="submit"] {
	position: relative;
	padding: 7px 16px;
	display: inline-block;
	color: var(--white-color);
	text-decoration: none;
	transition: all 0.5s ease;
	z-index: 0;
	background: var(--theme-color);
	border-radius: 0;
	width: 100%;
	border-radius: 5px;
}
.frm-location.active input[type="submit"] {
	background: var(--Extra-color);
	color: var(--white-color);
	font-weight: bold;
}
@media ( max-width:769px) {
	.mu-location-pg-btn {
		grid-template-columns: 1fr;
	}
}
/*** 
=============================================
  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%;
  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(--theme-color);
  border-radius: 5px;
  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;
	}
}