/*=============================
Table of CSS Content Start Here
===============================
	01. Common Classes
	02. Header Meun
	03. Footer Area
	04. Scroll To Top Button
=============================
Table of CSS Content End Here
===========================*/

/*===============================
01. Common Classes CSS Start Here
===============================*/
.btn {
	position: relative;
	display: inline-block;
	text-decoration: none;
	text-transform: uppercase;
	padding: 8px 36px;
	cursor: pointer;
	border-radius: 50px;
	overflow: hidden;
	z-index: 0;
}

.btn:before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 0;
	height: 100%;
	transition: all 0.4s ease-in-out;
	z-index: -1;
}

.btn:hover:before,
.btn:focus:before {
	width: 100%;
}

.btn a {
	text-decoration: none;
	display: block;
	color: #fff;
}

.strong-text {
	font-family: 'Roboto', sans-serif;
	font-weight: 700;
}

.content-title h3 {
	position: relative;
	display: inline-block;
	margin-bottom: 30px;
}

.content-title h3:after {
	content: "";
	position: absolute;
	left: 0;
	bottom: -5px;
	width: 50%;
	height: 3px;
}
/*=============================
01. Common Classes CSS End Here
=============================*/

/*=================================
02. Header Meun Area CSS Start Here
=================================*/
.header-menu-area {
	background-color: transparent;
	z-index: 99;
	position: relative;
	box-shadow: 0 0 1px 1px #ccc;
}

.header-fixed {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	background-color: #ffffff;
	z-index: 9999;
	box-shadow: 0 3px 2px rgba(0, 0, 0, .1);
}

.admin-bar .header-fixed {
	top: 32px;
}

/* 2.1. Header Logo CSS Start Here */
.header-site-branding-area {
	padding: 5px 15px;
	display: flex;
}

.header-logo {
	margin-right: 20px;
}

.header-logo img {
	height: 70px;
	width: auto;
}

.header-site-title {
	margin: 0;
	font-size: 30px;
}

.header-site-tagline {
	margin: 0;
	font-size: 14px;
}

.header-site-title a {
	text-decoration: none;
}

.header-site-title a:hover {
	text-decoration: underline;
}

.header-site-title a:focus {
	text-decoration: underline overline;
}
/* 2.1. Header Logo CSS End Here */

/* 2.2. Header Mobile Menu CSS Start Here */
.header-mobile-menu-area {
	display: none;
	overflow: hidden;
	padding: 14px;
}

.header-mobile-menu-btn {
	font-size: 20px;
	width: 50px;
	height: 50px;
	padding: 10px 15px;
	color: #ffffff;
	border-radius: 5px;
}

.header-mobile-menu-btn:focus {
	border: 2px solid #fff;
}
/* 2.2. Header Mobile Menu CSS End Here */

/* 2.3. Header Desktop Menu CSS Start Here */
.header-desktop-menu ul {
	padding: 0;
	margin: 0;
	list-style: none;
	background-color: #ccc;
	z-index: 99;
}

.header-desktop-menu ul li {
	float: left;
	height: 100%;
	position: relative;
}

.header-desktop-menu ul li:hover>.dropdown-menu,
.header-desktop-menu ul li:focus-within>.dropdown-menu {
	right: 0;
}

.menu-item-has-children button {
	display: none;
}

.menu-item-has-children button:focus {
	box-shadow: 0 0 5px 5px #fff;
}

.header-desktop-menu ul li a {
	text-decoration: none;
	display: block;
	padding: 28px 10px;
	color: #000;
}

.header-fixed .header-desktop-menu ul li a {
	color: #000;
}

.header-desktop-menu ul li i {
	margin-left: 10px;
	color: #000;
}

.header-desktop-menu ul li .dropdown-menu i,
.header-desktop-menu ul li .multi-dropdown-menu i {
	margin-left: 0;
	margin-right: 10px;
}

.dropdown-menu {
	position: absolute;
	display: block;
	background-color: #fff;
	right: -9999px;
	top: 100%;
	width: 100%;
	min-width: 250px;
	z-index: 999999;
}

.dropdown-menu li {
	text-align: center;
	width: 100%;
}

.dropdown-menu li a {
	text-align: left;
}

.dropdown-menu li:hover>ul,
.dropdown-menu li:focus-within>ul {
	top: 0;
}

.multi-dropdown-menu {
	position: absolute;
	display: block;
	background-color: #fff;
	top: -9999px;
	right: 100%;
	width: 100%;
}
/* 2.3. Header Desktop Menu CSS End Here */

/*====================================
02. Header Meun Area Area CSS End Here
====================================*/

/*============================
03. Footer Area CSS Start Here
============================*/
.footer-area {
	padding: 50px 0;
}

.copyright-text {
	margin-top: 20px;
	text-align: center;
}

.copyright-text a {
	text-decoration: none;
}
/*==========================
03. Footer Area CSS End Here
==========================*/

/*=====================================
04. Scroll To Top Button CSS Start Here
=====================================*/
.scroll-to-top {
	display: none;
	position: fixed;
	font-size: 22px;
	color: #ffffff;
	bottom: 20px;
	right: 20px;
	width: 50px;
	height: 50px;
	line-height: 50px;
	border-radius: 50%;
	text-align: center;
	cursor: pointer;
	-webkit-box-shadow: 0 10px 20px 0 rgba(23, 22, 49, 0.1);
	box-shadow: 0 10px 20px 0 rgba(23, 22, 49, 0.1);
	z-index: 999999;
}

.scroll-to-top:focus {
	border: 2px solid #fff;
}
/*===================================
04. Scroll To Top Button CSS End Here
===================================*/