/*!
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-gradiant {
	background: linear-gradient(30deg, rgba(68, 157, 223, 1) 40%, rgba(0, 0, 0, 1) 70%) !important;
}
.bg-gradiant-sec {
	background: linear-gradient(30deg, rgba(68, 157, 223, 1) 40%, rgba(0, 0, 0, 1) 50%) !important;
}

.btn-default {
	background: linear-gradient(30deg, rgba(68, 157, 223, 1) 40%, rgba(0, 0, 0, 1) 70%) !important;
	color: #fff;
	border: 1px solid #fff;
	&:hover {
		border: 1px solid #fff;
	}
}
.btn-default::before {
	filter: brightness(0) invert(1);
}
.btn-default::after {
	background: linear-gradient(30deg, rgba(0, 0, 0, 1) 40%, rgba(68, 157, 223, 1) 70%) !important;
}

/*** 
=============================================
  Header Section Css 
=============================================
***/
.topbar {
	background: linear-gradient(30deg, rgba(68, 157, 223, 1) 40%, rgba(0, 0, 0, 1) 70%) !important;
	margin: 0 15px;
}
.topbar-contact-info ul li a, .topbar-social-links ul li a i {
	color: var(--white-color);
}
.topbar-social-links ul li {
	border-right: 1px solid #fff;
}
.topbar-contact-info ul li a img {
	filter: brightness(0) invert(1);
}
.main-menu ul li a, .header-contact-now {
	color: var(--accent-secondary-color);
}
@media (max-width: 768px){
	.topbar {
		margin: 0;
	}
}
/*** 
=============================================
  BreadCrumb Section Css 
=============================================
***/
@media (max-width: 768px){
}
/*** 
=============================================
  Home Page Css 
=============================================
***/
.project-complete-item img, .contact-now-box .icon-box img, .why-choose-item .icon-box img {
	filter: brightness(0) invert(1);
}
.project-complete-item p {
	color: #fff;
}
.why-choose-item {
	background: var(--accent-secondary-color);
}
.values-counter-item {
	border-bottom: 1px solid #000;
	border-right: 1px solid #000;
}
.why-choose-us .values-counter-item p {
	color: var(--accent-secondary-color);
}
.cta-box {
	padding: 120px 0;
}
@media (max-width: 768px){
	.trusted-expert-footer {
		gap: 0px;
		justify-content: space-between;
	}
	.cta-box {
		padding: 50px 0 0;
	}
}
/*** 
=============================================
  About Page Css 
=============================================
***/
@media (max-width: 768px){
}
/*** 
=============================================
  Serivces Page Css 
=============================================
***/
@media (max-width: 768px){
}
/*** 
=============================================
  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(--theme-color);
  border-radius: 1000px;
  box-shadow:    0 5px #000000;
  padding:       20px 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;
	}
}