/*****************************
**** HEADER STYLE | BEGIN ****
*****************************/

.header {
	top: 0;
	position: absolute;
	width: 100%;
	z-index: 5;
	/* backdrop-filter: blur(30px);
	-webkit-backdrop-filter: blur(10px); */
	height: 100px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	color: var(--primary-foreground);
}

.header__bg {
	background-color: black;
	height: 100px !important;
	width: 100%;
	object-fit: cover;
}

.header.sticky {
	animation-duration: 0.2s;
	animation-name: slidein;
	position: fixed;
	height: 80px;
	background-color: var(--primary);
}

@keyframes slidein {
	from {
		transform: translateY(-100px);
	}

	to {
		transform: translateY(0);
	}
}

.header.sticky .logo {
	width: 207px;
	display: flex;
	text-align: center;
	align-items: center;
	justify-content: center;
}

.header.sticky .logo img {
	height: 40px;
}

.header__lang {
	background-color: transparent;
}

.header__lang option {
	color: var(--primary);
}

.header__cart {
	position: relative;
}

.header__cart-number {
	height: 18px;
	width: 18px;
	background-color: var(--danger);
	border-radius: 100%;
	position: absolute;
	bottom: 15px;
	left: 100%;
	text-align: center;
	font-size: 10px;
	align-items: center;
	display: flex;
	justify-content: center;
}

.burger-button {
	display: none;
}

.repair__elements .heading {
	color: white;
	margin: auto;
	width: fit-content;
}

.header .repair__elements {
	padding-top: 30px;
	backdrop-filter: blur(30px);
	-webkit-backdrop-filter: blur(10px);
	position: absolute;
	top: 100px;
	left: 0;
	width: 100%;
	height: 100vh;
	opacity: 0;
	text-transform: none;
	transition: visibility 0s 0.2s, opacity 0.2s linear;
	pointer-events: none;
}

.header::before {
	position: absolute;
	content: "";
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	backdrop-filter: blur(30px);
	z-index: -1;
	-webkit-backdrop-filter: blur(10px);
}


.menu__repair:hover {
	color: white;
}

.menu .menu__repair>a::after {
	content: "";
	border: solid white;
	border-width: 0 2px 2px 0;
	display: inline-block;
	padding: 3px;
	transform: rotate(45deg);
	-webkit-transform: rotate(45deg);
	transition: 0.2s all;
	margin-left: 5px;
	margin-bottom: 3px;
}

.menu .menu__repair>a:hover::after {
	border-color: var(--hover);
}

.menu__repair .heading {

	text-align: center;
}

.header.sticky .repair__elements {
	top: 80px;
}

.enable-section .popup__header {
	opacity: 1 !important;
	transition: all 0.2s linear !important;
	pointer-events: auto !important;
}

.enable-section>a {
	text-decoration: underline;
}

.enable-section>a::after {
	transform: rotate(-135deg) !important;
	-webkit-transform: rotate(-135deg) !important;
	margin-bottom: 0px !important;
}

.open__header a {
	cursor: pointer;
}

.menu__repair:hover+body {
	overflow: hidden;
}

.enable-section .services__container--header>* {
	pointer-events: all;
}

.services__container--header {
	pointer-events: none;
	position: absolute;
	z-index: 2;
	width: 100%;
	left: 0;
	top: 45vh;
	transform: translateY(-50%);
}


.services__card--header:hover {
	transform: translateY(-50px);
}

.services__card--header {
	transition: all 0.3s;
	cursor: pointer !important;
	color: white;
}

.services__container--header:hover {
	display: flex;
}

.menu-menu-principal-container ul {
	display: flex;
	font-size: var(--font-size-s);
	gap: 50px;
	text-transform: uppercase;
	letter-spacing: var(--leading-header);
}

.menu-menu-principal-container ul li {
	display: flex;
	align-items: center;
}

.menu-menu-principal-container ul li a:hover {
	color: var(--hover);
}

.menu-menu-principal-container ul li a {
	font-weight: 600;
	transition: 0.2s ease;
}

.header__right {
	align-items: center;
	display: flex;
	font-size: var(--font-size-s);
	gap: 15px;
}

.bottom-bar {
	display: flex;
	gap: 30px;
}

.bottom-bar a {
	display: flex;
	justify-content: center;
	align-items: center;
}

.header__img {
	height: 20px !important;
}

.header__search-button {
	cursor: pointer;
}

.header__searchbar {
	position: absolute;
	pointer-events: none;
	transition: 0.3s all;
	width: 100%;
	height: 100vh;
	top: 0;
	left: 0;
	z-index: 21;
}

.header__searchbar.active {
	background-color: rgba(0, 0, 0, 1);
	display: flex;
	gap: 50px;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	pointer-events: all;
}

.header__searchbar.active form {
	display: block;
	pointer-events: all;
}

.header__searchbar p {
	display: none;
	font-size: var(--font-size-4xl);
	font-weight: 600;
}

.header__searchbar.active p {
	display: block;
	animation: slideUp 0.6s forwards;
}

.header__searchbar form {
	display: none;
	animation: slideUp 0.6s forwards;
	color: black;
	width: 33%;
}

@keyframes slideUp {
	from {
		transform: translateY(50px);
		opacity: 0;
	}

	to {
		transform: translateY(0);
		opacity: 1;
	}
}

.searchbar__content {
	background-color: white;
	padding-inline: 25px 5px;
	padding-block: 5px;
	width: 100%;
	border-radius: 70px;
	display: flex;
	justify-content: space-between;
	gap: 10px;
}

.searchbar__content .enter:hover {
	background-color: var(--blue-hover);
}

.searchbar__content .enter {
	content: "";
	margin-block: 0px;
	width: 52px;
	height: 50px;
	cursor: pointer;
	transition: 0.2s all;
	background-image: url("../icons/search.svg");
	background-position: 15px 15px;
	background-size: 20px;
	background-repeat: no-repeat;
	background-color: var(--blue);
	border-radius: 70px;
	padding: 10px;
	display: block;
}

.searchbar__content input:not(.enter) {
	width: 100%;
}

.searchbar__content input:focus {
	outline: none;
}

.burger-menu__searchbox {
	display: none;
}

.burger-menu__icons {
	display: none;
}

.burger-menu .header__lang {
	display: none;
}

.footer__menu--header {
	display: none !important;
}

.header__bottom {
	display: none;
}

.wpml-ls-item-toggle {
	background-color: transparent !important;
	color: var(--primary-foreground) !important;
	border: none !important;
}

.wpml-ls-legacy-dropdown-click {
	width: auto;
}

a.logo img,
.footer_logo img {
	max-height: 60px;
}

.networks__share {
	position: relative;
	cursor: pointer;
	width: 42px;
}

.networks__share svg {
	height: 23px;
}

.networks__menu {
	display: none;
	opacity: 0;
}

.networks__menu a {
	background-color: #000;
	border-radius: 50%;
}

.networks__menu a:hover {
	color: var(--hover);
}

svg path {
	fill: currentColor;
}

.networks__menu.show {
	display: flex;
	flex-direction: column;
	gap: 10px;
	position: absolute;
	margin-top: 10px;
	opacity: 1;
	transition: opacity .5s ease;
}

.networks__share::after {
	content: '';
	position: absolute;
	bottom: 4px;
	right: 0;
	width: 0;
	height: 0;
	border: solid white;
	border-width: 0 2px 2px 0;
	display: inline-block;
	padding: 3px;
	transform: rotate(45deg);
	-webkit-transform: rotate(45deg);
	transition: 0.2s all;
	margin-left: 5px;
	margin-bottom: 3px;
}


body .wpml-ls-legacy-dropdown-click a.wpml-ls-item-toggle::after {
	border: solid white;
	border-width: 0 2px 2px 0;
	display: inline-block;
	padding: 3px;
	transform: rotate(45deg);
	-webkit-transform: rotate(45deg);
	transition: 0.2s all;
	margin-left: 5px;
	margin-bottom: 3px;
	right: 20%;
}

@media screen and (-webkit-min-device-pixel-ratio:0) {

	select,
	textarea,
	input {
		font-size: 16px;
	}
}

@media screen and (max-width: 1400px) {

	a.logo img,
	.footer_logo img {
		max-height: 45px;
	}

}



@media screen and (max-width: 1024px) {

	.header__searchbar form {
		width: 60%;
	}

	.header.sticky .header__searchbar {
		top: -10px;
		left: -2%;
		width: 100vw;
	}

	.header__bg {
		height: 70px !important;
	}

	.menu-menu-principal-container ul {
		gap: 0;
	}


	.header.sticky::before {
		display: none;
	}

	header {
		width: 100%;
		height: 100%;
		display: flex;
		justify-content: center;
	}

	.header.sticky {
		width: 96%;
		margin-top: 10px;
		height: 50px !important;
		border-radius: 10px;
		z-index: 5;
	}

	.header {
		height: 70px !important;
	}

	.header.sticky .logo {
		width: 100px;
	}

	.logo {
		z-index: 3;
	}

	.header .logo img {
		height: 36px;
	}

	.header.sticky .logo img {
		height: 26px;
	}

	.header__lang {
		display: block !important;
		z-index: 2;
	}

	.burger-button {
		z-index: 10;
		display: flex;
		flex-direction: column;
		align-items: center;
		justify-content: center;
		row-gap: 7px;
		height: 57px;
		width: 57px;
		cursor: pointer;
		position: relative;
	}

	.burger-button>span {
		width: 30px;
		height: 2px;
		border-radius: 10px;
		background: white;
		-webkit-transition: opacity 0.2s, -webkit-transform cubic-bezier(0.165, 0.84, 0.44, 1) 0.4s;
		transition: opacity 0.2s, -webkit-transform cubic-bezier(0.165, 0.84, 0.44, 1) 0.4s;
		-o-transition: transform cubic-bezier(0.165, 0.84, 0.44, 1) 0.4s, opacity 0.2s;
		transition: transform cubic-bezier(0.165, 0.84, 0.44, 1) 0.4s, opacity 0.2s;
		transition: transform cubic-bezier(0.165, 0.84, 0.44, 1) 0.4s, opacity 0.2s, -webkit-transform cubic-bezier(0.165, 0.84, 0.44, 1) 0.4s;
		z-index: 3;
	}

	.burger-button.open-btn>span:nth-child(1) {
		-webkit-transform: translateY(9px) rotate(45deg);
		-ms-transform: translateY(9px) rotate(45deg);
		transform: translateY(9px) rotate(45deg);
		z-index: 3;
	}

	.burger-button.open-btn>span:nth-child(2) {
		opacity: 0;
		-webkit-transform: translateX(100%);
		-ms-transform: translateX(100%);
		transform: translateX(100%);
		z-index: 3;
	}

	.burger-button.open-btn>span:nth-child(3) {
		-webkit-transform: translateY(-9px) rotate(-45deg);
		-ms-transform: translateY(-9px) rotate(-45deg);
		transform: translateY(-9px) rotate(-45deg);
		z-index: 3;
	}

	.burger-menu {
		transition: all 0.3s;
		position: absolute;
		top: -105vh;
		left: 0;
		height: 101vh;
		width: 100vw;
		background-color: var(--primary);
		background-size: cover;
		background-image: url("../img/services_bg.webp");
		z-index: 2;
		display: flex;
		flex-direction: column;
		align-items: baseline;
		gap: 100px;
		padding-block: 80px;
		font-size: var(--font-size-lg);
		overflow: hidden;
	}

	.open-menu {
		transform: translateY(103vh);
	}

	.header.sticky .burger-menu {
		left: -2%;
	}

	.open-menu .header__lang {
		display: block;
		align-self: baseline;
		position: absolute;
		top: 35px;
		left: 50px;
	}

	.burger-menu__top {
		display: flex;
		gap: 50px;
		flex-direction: column;
		justify-content: center;
		align-items: center;
		z-index: 20;
	}

	.burger-menu__icons {
		display: flex;
		gap: 50px;
	}

	.burger-menu .menu-menu-principal-container {
		height: 100%;
		display: flex;
		flex-direction: column;
		width: 100%;
		text-align: center;
		align-items: center;
	}

	.menu-menu-principal-container ul {
		display: flex;
		justify-content: center;
		flex-direction: column;
		width: 100%;
	}

	.menu-menu-principal-container ul li {
		border-top: 1px #2768AD solid;
		width: 100%;
		padding-left: var(--spacing);
		padding-block: 30px;
	}

	.footer__menu--header {
		padding-top: 50px;
		border-top: 1px #2768AD solid;
		align-items: baseline !important;
		padding-left: var(--spacing);
		font-size: var(--font-size-base);
		width: 100%;
		display: flex !important;
	}

	.footer__menu--header .footer__menu__title,
	.footer__menu--header .footer__menu__content {
		width: 100%;
		display: inline-block;
	}

	.burger-menu__searchbox {
		display: flex;
		gap: 10px;
	}

	.burger-menu__searchbox input {
		background-color: var(--primary);
		border-bottom: 2px solid;
		border-radius: 0;
		width: 200px;
		font-family: var(--inter-tight);
		font-size: var(--font-size-lg);
	}

	.burger-menu__searchbox input::placeholder {
		transition: all 0.2s;
		font-family: var(--inter-tight);
		color: var(--primary-foreground);
		font-size: var(--font-size-lg);
	}

	.burger-menu__searchbox input:focus {
		outline: none;
	}

	.burger-menu__searchbox input:focus::placeholder {
		color: var(--primary);
	}

	.services__container--header {
		position: static;
		transform: none;
		flex-wrap: nowrap !important;
		flex-direction: column;
		pointer-events: all;
		padding: 0 !important;
		align-items: center;
	}

	.open__header .heading-h3 {
		font-size: var(--font-size-xl);
	}

	.services__content {
		padding-inline: 0;
	}

	.services__container--header img {
		display: none;
	}

	.services__container--header a {
		background-color: transparent;
		max-width: fit-content;
		padding-block: 0;
	}

	.menu-menu-principal-container ul li {
		position: relative;
	}

	.header .repair__elements {
		backdrop-filter: none;
		padding-top: 0;
		z-index: 100;
		opacity: 1;
		transition: all 0.3s;
		position: static;
		height: 0;
		overflow: hidden;
	}

	.header .repair__elements .heading {
		display: none;
	}

	.services__card--header:hover {
		transform: none;
	}

	.menu-menu-principal-container ul li a {
		width: 100%;
	}

	.open__header {
		flex-direction: column;
	}

	.enable-section .popup__header {
		height: 100%;
		margin-top: 30px;
	}

	.popup__header h3 {
		font-size: var(--font-size-xl);
	}
}


@media screen and (min-width: 600px) {

	.admin-bar .header.sticky {
		top: var(--wp-admin--admin-bar--height);
	}
}

@media screen and (max-width: 747px) {

	.searchbar__content .enter {
		background-size: 20px;
		background-position: 10px 10px;
		height: 40px;
		width: 42px;
	}

	.services__container--header {
		align-items: start;
	}

	.header__cart-number {
		bottom: 15px;
	}

	.header__searchbar form {
		width: 80%;
	}

	.header__cart-number {
		color: var(--primary-foreground);
	}

	.bottom-bar .header__img,
	.bottom-bar a {
		display: none;
	}


	.header__bottom {
		display: flex;
		align-items: center;
		position: fixed;
		bottom: 0;
		z-index: 5;
		width: 96%;
		left: 50%;
		transform: translateX(-50%);
		border-radius: 10px;
		margin-bottom: 10px;
		background-color: var(--primary);
		height: 50px;
		justify-content: space-around;
	}

	header:has(.active) .header__bottom {
		z-index: 4;
	}

	.header__bottom a img {
		height: 20px;
	}

	.burger-menu .menu-menu-principal-container {
		text-align: left;
	}

}

@media screen and (max-width: 600px) {

	.burger-menu {
		background-position: -350px;
	}

	.header__img {
		height: 15px;
	}

	.header__cart-number {
		height: 15px;
		width: 15px;
		font-size: 8px;
	}

	.burger-button.open-btn>span:nth-child(1) {
		transform: translateY(5px) rotate(45deg);
	}

	.burger-button {
		width: 30px;
		row-gap: 5px;
	}

	.burger-button>span {
		width: 25px;
	}

	.header__right {
		gap: 25px;
	}

	.header.sticky .logo {
		justify-content: start;
	}

	.logo {
		width: fit-content !important;
	}

}


@media screen and (min-width: 1025px) and (max-width: 1199px) {
	.logo img {
		max-width: 100px;
	}
}

@media screen and (min-width: 1025px) and (max-width: 1399px) {
	.header {
		padding-inline: calc(var(--spacing) / 2);
	}

	.menu-menu-principal-container ul {
		gap: 30px;
	}

	.header__right {
		gap: 10px;
	}

	.bottom-bar {
		gap: 30px;
	}
}

@media screen and (min-width: 1200px) and (max-width: 1399px) {
	.logo img {
		max-width: 150px;
	}
}

/***************************
**** HEADER STYLE | END ****
***************************/