/*!
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 */

/*** 
=============================================
  Header Section Css 
=============================================
***/
.navbar-brand img {
  width: 290px;
  height: 80px;
}
.header {
  background: rgba(20, 83, 136, 1);
}
.header-top-contact a {
  color: var(--color-white);
}
.header-top-social a {
  color: var(--theme-color) !important;
}
@media (max-width: 768px){
	.navbar-brand img {
		width: 250px;
		height: 70px;
	}
}
/*** 
=============================================
  BreadCrumb Section Css 
=============================================
***/
@media (max-width: 768px){
  .site-breadcrumb {
    padding-top: 150px;
    padding-bottom: 90px;
  }
}
/*** 
=============================================
  Home Page Css 
=============================================
***/
.home-3 .hero-single .hero-title span {
    -webkit-text-stroke: 0px var(--theme-color);
    -webkit-text-fill-color: var(--theme-color);
}
.ts-bg {
	background-image: url(assets/mu-images/home-page/mu-testimonials-bg.jpg);
}
@media (max-width: 768px){
	.hero-single .hero-content .hero-title {
		font-size: 35px;
	}
	.hero-btn a.theme-btn {
		display: none;
	}
	.site-title {
		font-size: 45px;
	}
	.cta-number {
		font-size: 25px;
	}
	.quote-content {
		padding: 0px;
	}
}
/*** 
=============================================
  About Page Css 
=============================================
***/
@media (max-width: 768px){
}
/*** 
=============================================
  Serivces Page Css 
=============================================
***/
@media (max-width: 768px){
}
/*** 
=============================================
  Single Services Css 
=============================================
***/
@media (max-width: 768px){
}
/*** 
=============================================
  Gallery Page Css 
=============================================
***/
.portfolio-img img {
  height: 400px;
}
@media (max-width: 768px){
}
/*** 
=============================================
  Contact Page Css 
=============================================
***/
.form-group .form-control, .form-group .form-select {
  padding: 15px 22px;
  background-color: var(--theme-bg-light);
  border: none;
  box-shadow: none;
  border-radius: 0px;
}
@media (max-width: 768px){
}
/*** 
=============================================
  Footer Section Css 
=============================================
***/
.footer-area {
  background: var(--color-dark);
}
.footer-logo img {
  width: 300px;
}
.footer-widget-title {
  color: var(--theme-color);
}
.footer-social {
  justify-content: start;
}
.footer-social li a i {
  background: var(--theme-color);
  color: var(--color-white);
}
.footer-social li a i:hover {
	background: var(--color-dark);
	color: var(--color-white);
	border: 1px solid var(--theme-color)
}
.copyright {
  position: relative;
  padding: 10px 0;
  background: var(--color-dark);
  border-top: 4px solid var(--theme-color);
  z-index: 1;
}
@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);
  box-shadow:    0 5px #000000;
  padding:       15px;
  color:         #ffffff;
  font:          normal bold 20px/1 "Open Sans", sans-serif;
  text-align:    center;
}
/*Mobile Css Start*/
@media (max-width: 768px){
  #scroll-top.active {
    box-shadow: 0 5px #000000;
  }
  #scroll-top {
    right: 5px;
    border-radius: 0;
  }
  .mu-single-call-box {
    display: none;
  }
  .floating-btn, .floating-btn-2 {
    position: fixed;
    bottom: 20px;
    display: block !important;
    z-index: 999;
  }
  .floating-btn{
    left: 05px;
  }
  .floating-btn-2{
    right: 65px;
  }
  .floating-btn a, .floating-btn-2 a {
    color: white !important;
    font-size: 20px;
  }
}