/*!
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 
=============================================
***/
.bg-primary , .footer-bottom.footer-bottom-2{
	background-color: var(--theme-color) !important;
}
.bg-secondary{
	background-color: var(--theme-color-2) !important;
}
.text-primary , .header-2 .header-main .main-menu ul li a , .header-2 .header-right .header-contact .info-items .content h6 a ,.header-2 .header-right .header-contact .info-items .content span ,.header-2 .header-main .sidebar__toggle  {
	color: var(--theme-color) !important;
}
.text-secondary{
	color: var(--theme-color-2) !important;
}
/*** 
=============================================
Header Section Css 
=============================================
***/
@media (max-width: 768px){
	.header-1 .header-left{
		gap: 0px;
	}
	.header-logo img{
		height: 70px;
		width:100%;
		object-fit : cover;
	}
}
/*** 
=============================================
BreadCrumb Section Css 
=============================================
***/

@media (max-width: 768px){
	.page-heading h2 {
		font-size: 30px;
	}
}
/*** 
=============================================
Home Page Css 
=============================================
***/
.section-title-area{
	display : block;
}
.choose-us-wrapper-2 .choose-us-content .list-items li{
	color: var(--white);
}
.hero-2 .hero-bg::before{
	background: rgba(4, 2, 0, 0.0);
}
.about-wrapper-2 .about-content .about-list-items{
	display : block;
}
.hero-2 .hero-content h1{
	font-size : 60px;
}
.testimonial-box-item-3 .test-content .star{
	color: #ffc107;
}

@media (max-width: 768px){
	.hero-2 .hero-content h1{
		font-size:40px;
	}

}
/*** 
=============================================
About Page Css 
=============================================
***/
@media (max-width: 768px){
}
/*** 
=============================================
Serivces Page Css 
=============================================
***/
.service-card-items .service-image img {
	height: 350px;
	width: 100%;
	object-fit: cover;
}
.service-box-item .service-image img {
	height: 300px;
	width: 100%;
	object-fit : cover;
}
.service-content p{
	color: white ;
}
@media (max-width: 768px){
}
/*** 
=============================================
Gallery Page Css 
=============================================
***/
.project-wrapper-3 .project-card-item-3 .project-thumb img{
	height: 400px;
	width: 100%;
	object-fit: cover;
}
.project-box-item .project-image img{
	width: 100%;
	height: 350px;
	object-fit : cover;
}
@media (max-width: 768px){
}
/*** 
=============================================
Contact Page Css 
=============================================
***/
.contact-wrapper-2 .contact-left-item .contact-item {
	display : block;
}
@media (max-width: 768px){
}
/*** 
=============================================
Footer Section Css 
=============================================
***/
.back-to-top{
	right: 10px;
}
.footer-widget-wrapper {
	padding: 83px 0 70px;
}
.footer-bottom.footer-bottom-2{
	border-top: 1px solid white;
}
.footer-widget-wrapper.footer-style-2 .single-footer-widget .footer-content .social-icon a:hover , .footer-widget-wrapper.footer-style-2 .single-footer-widget .list-area li a:hover{
	color: var(--secondary-color);
}
@media (max-width: 768px){
	.footer-bottom.footer-bottom-2{
		padding-bottom: 90px;
	}
}
/*** 
=============================================
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(--theme-color);
	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;
	}
}