/*
Theme Name: Child Theme Hello Graphica
Template: hello-elementor
Author: Graphica Digital Projects
Description: Theme for Elementor page builder
Tags: flexible-header,custom-colors,custom-menu,custom-logo,featured-images,rtl-language-support,threaded-comments,translation-ready
Version: 3.1
Updated: 30-01-26 17:04:05

*/


/* RESET */

*,
*::before,
*::after{
	margin:0;
	padding:0;
	box-sizing:border-box;
}

img{
	max-width:100%;
	display:block;
}

a{
	text-decoration:none;
	color:inherit;
}

button{
	border:none;
	background:none;
	cursor:pointer;
	font-family:inherit;
}

/* BASE */

body{
	font-family:'Sora',sans-serif;
}

/* HERO */

.hero-header{
	position:relative;
	height:auto;
	top:0;
	left: 0;
	width:100%;
}
.img-hero{
	display: none;
	position:relative;
	height: 350px;
	width:100%;
	background-color: #000;
	background-position: top center;
	background-size: cover;
	background-repeat: no-repeat;
}
/* OVERLAY 50% */

.img-hero::before{
	content:"";
	position:absolute;
	top:0;
	left:0;
	width:100%;
	height:100%;
	background:linear-gradient(to bottom, rgba(0,0,0,.7), rgba(0,0,0,0));
	z-index:1;
}

/* TOP BAR */

.top-bar{
	position:relative;
	z-index:2;
	display:flex;
	justify-content:space-between;
	align-items:center;
	padding:28px 6%;
}

/* LOGO */

.logo img{
	height:60px;
}

/* BOTON */
.btn-contact{
	display:inline-flex;
	align-items:center;
	justify-content:center;
	background:white;
	color:black;
	padding:8px 25px;
	font-size:14px;
	font-weight:400;
	border-radius:0;
	transition:all .25s;
}

.btn-contact:hover{
	background:black;
	color:white;
}

.btn-icon{
	display:none;
	width:22px;
	height:22px;
}

.btn-icon svg{
	width:100%;
	height:100%;
}

/* MOBILE */

@media (max-width:768px){

	.btn-contact{
		background:transparent;
		color:white;
		padding:8px;
	}

	.btn-contact:hover{
		background:transparent;
		color:white;
		opacity:.8;
	}

	.btn-text{
		display:none;
	}

	.btn-icon{
		display:block;
	}

}

/* RESPONSIVE */

@media (max-width:768px){

	.logo img{
		height:42px;
	}

}