/*!
Theme Name: Invest75
Theme URI: https://absoluteweb.com/
Author: Yulii. AbsoluteWeb.com
Author URI: https://absoluteweb.com/
Description: Description
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: invest75
Tags: custom-background, custom-logo, custom-menu, featured-images, threaded-comments, translation-ready

html {
	line-height: 1.15;
	-webkit-text-size-adjust: 100%;
}
*/

.home-page {
	height: 100vh;
	/*background-image: url("/wp-content/uploads/2022/03/bg-image-invest.jpg");*/
	background-size: cover;
	background-position: center center;
	position: relative;
	overflow: hidden;
	/*animation: bg-animation 15s infinite;*/
}

.home-page::before {
	content: url("../../uploads/2022/03/Lines.png");
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	/*height: 100vh;*/
	/*width: 100%;*/
	margin: 0 auto;
	z-index: 2;
}

@media (max-width: 1024px) {
	.home-page::before {
		display: none;
	}
}

.home-page__bg-image {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}

.home-page__bg-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	animation: bg-animation 15s infinite;
	position: relative;
	transform: scale(1.1);
}

@media (max-width: 1024px) {
	.home-page__bg-image img {
		animation: none;
	}
}

.home-page__hero {
	padding: 200px 15px;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	position: relative;
	z-index: 2;
}

@media (max-width: 1024px) {
	.home-page__hero {
		padding: 50px 15px;
	}
}

.home-page__logo {
	margin-bottom: 240px;
}

@media (max-width: 1024px) {
	.home-page__logo {
		margin-bottom: 100px;
	}
}

.home-page__title {
	margin: 0 0 20px 0;
	font-weight: 700;
	font-size: 42px;
	line-height: 52px;
	text-align: center;
	letter-spacing: -0.04em;
	color: #FFFFFF;
}

.home-page__description {
	font-weight: 400;
	font-size: 16px;
	line-height: 22px;
	text-align: center;
	color: #FFFFFF;
	margin: 0 0 20px 0;
}

.home-page__emails {
	display: flex;
	align-items: center;
}

@media (max-width: 1024px) {
	.home-page__emails {
		flex-direction: column;
	}
}

.home-page__emails a {
	font-weight: 700;
	font-size: 14px;
	line-height: 17px;
	text-decoration: underline;
	text-transform: uppercase;
	color: #FFFFFF;
}

.home-page__emails span {
	display: block;
	font-weight: 400;
	font-size: 16px;
	line-height: 22px;
	text-align: center;
	color: #FFFFFF;
	margin: 0 20px;
}

@keyframes bg-animation {
	0% {
		left: 0px;
	}

	25% {
		left: -50px;
	}

	75% {
		left: 50px;
	}

	100% {
		left: 0px;
	}
}