/*
Theme Name: lightningbiz
Theme URI: https://github.com/tidythemes/lightningbiz
Author: TidyThemes
Author URI: http://tidythemes.com/
Description: Please read: tidythemes.com/concept. Donations: https://calmestghost.com/donate. lightningbiz is the definitive WordPress boilerplate starter theme. We've carefully constructed the most clean and minimalist theme possible for designers and developers to use as a base to build websites for clients or to build completely custom themes from scratch. Clean, simple, unstyled, semi-minified, unformatted, and valid code, SEO-friendly, jQuery-enabled, no programmer comments, standardized and as white label as possible, and most importantly, the CSS is reset for cross-browser-compatability and no intrusive visual CSS styles have been added whatsoever. A perfect skeleton theme. For support and suggestions, go to: https://github.com/tidythemes/lightningbiz/issues. Thank you.
Tags: accessibility-ready, one-column, two-columns, custom-menu, featured-images, microformats, sticky-post, threaded-comments, translation-ready
Version: 2022.4
Requires at least: 5.2
Tested up to: 5.9
Requires PHP: 7.0
License: GNU General Public License v3 or Later
License URI: https://www.gnu.org/licenses/gpl.html
Text Domain: lightningbiz

lightningbiz WordPress Theme © 2011-2022 TidyThemes
lightningbiz is distributed under the terms of the GNU GPL
*/

/* CSS by P */
@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,400;0,700;1,400;1,700&display=swap');

* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
	font-family: 'Poppins', sans-serif;
}

body {
	background: #000;
}

.home-page {
	height: 100vh;
	width: 100%;
	max-width: 100%;
}

.home-page .p_container {
	height: 100%;
	width: 100%;
	position: relative;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
}

.home-page .p_container img {
	width: 100%;
	height: auto;
	display: none;
	margin-top: 123px;

}

.home-page .p_container .banner-content {
    position: absolute;
    top: 90%;
    left: 50%;
    text-align: center;
    transform: translateX(-50%);
}

.home-page .p_container .banner-content p {
    font-size: 24px;
    font-weight: 700;
    color: #fff;
}

.home-page .p_container .banner-content a {
	text-decoration: none;
	font-size: 16px;
	color: #fff;
	margin-top: 12px;
	display: inline-block;
}

@media screen and (max-width: 767px) {
	.home-page, .home-page .p_container {
		width: 100%;
		height: auto;
		background: none;
		background-image: none !important;
		background-color: #000;
	}

	.home-page .p_container img {
		display: block;
	}

	.home-page .p_container .banner-content {
		position: initial;
		transform: none;
	}
}