/**
 * Theme Name:     GeneratePress Child
 * Author:         Tom Usborne
 * Template:       generatepress
 * Text Domain:	   generatepress-child
 * Description:    GeneratePress is a lightweight WordPress theme built with a focus on speed and usability. Performance is important to us, which is why a fresh GeneratePress install adds less than 10kb (gzipped) to your page size. We take full advantage of the block editor (Gutenberg), which gives you more control over creating your content. If you use page builders, GeneratePress is the right theme for you. It is completely compatible with all major page builders, including Beaver Builder and Elementor. Thanks to our emphasis on WordPress coding standards, we can boast full compatibility with all well-coded plugins, including WooCommerce. GeneratePress is fully responsive, uses valid HTML/CSS, and is translated into over 25 languages by our amazing community of users. A few of our many features include 60+ color controls, powerful dynamic typography, 5 navigation locations, 5 sidebar layouts, dropdown menus (click or hover), and 9 widget areas. Learn more and check out our powerful premium version at https://generatepress.com
 */

/* Footer Links */
.copyright-bar div {
	margin-bottom: 16px
}

.copyright-bar div a {
	padding: 0 8px;
	border-right: 1px solid var(--base-2);
}

.copyright-bar div a:last-child {
	border: 0;
}

.inside-site-info {
	padding: 20px 0
}

/* End Footer Links */

.hero-section {
	display: flex;
	justify-content: space-around;
	align-items: center;
	background: linear-gradient(to right, #6a11cb, #2575fc);
	margin-top: 20px;
	padding: 50px 40px;
	color: white;
	box-shadow: 0 4px 7px -1px rgba(0, 0, 0, .11), 0 2px 4px -1px rgba(0, 0, 0, .07);
}
.grid-container {width: 96%}
.col-1 {
	width: 70%;
}
.col-2 {
	width: 30%;
	max-width: 60%;
}
.entry-title {margin-bottom: 20px}
.hero-section h2 {
	font-size: 1.5rem;
	margin-bottom: 30px;
}

.hero-section .cta-button {
	background-color: #4caf50;
	color: #fff;
	font-weight: bold;
	padding: 8px 32px;
	font-size: 1.2rem;
	border-radius: 5px;
	box-shadow: 0 4px 7px -1px rgba(0, 0, 0, .11), 0 2px 4px -1px rgba(0, 0, 0, .07);
}

.hero-section .cta-button:hover {
	background-color: #388e3c;
}

.hero-section .features {
	margin-top: 40px;
}

.hero-section .features ul {
	margin: 0;
}

.hero-section .features li {
	list-style: none;
	margin: 16px 0;
}

.hero-section .features li:before {
	content: '\2713';
	background: #fff;
	display: inline-flex;
	justify-content: center;
	align-items: center;
	width: 24px;
	height: 24px;
	margin-right: 8px;
	font-size: 12px;
	font-weight: bold;
	color: #7267eb;
	border-radius: 50%;
	box-shadow: 0 4px 7px -1px rgba(0, 0, 0, .11), 0 2px 4px -1px rgba(0, 0, 0, .07);
}
.hero-section, .inside-article, .inside-right-sidebar aside {
	border-radius: 16px;
}
.generate-back-to-top, .wp-block-search__button {
	box-shadow: 0 4px 7px -1px rgba(0, 0, 0, .11), 0 2px 4px -1px rgba(0, 0, 0, .07);
}
input.wp-block-search__input, .wp-block-search__button {
	border-radius: 8px;
}
/* Responsive */

@media (max-width: 768px) {
	.grid-container {width: 100%}
	.col-1, .col-2 {width: 100%;}
	.hero-section {
		flex-direction: column-reverse;
		align-items: normal;
		margin-top: 0;
		padding: 50px 30px;
	}
	.hero-section, .inside-article, .inside-right-sidebar aside {border-radius: 0;}
}