/*
	Theme Name: Theme Base
	Theme URI: 
	Author:  Veronika Udod
	Author URI: 
	Version: 2.0
	Description: 
	Tags: 
	Licence: GPL v2 or later
	License URI: http://www.gnu.org/licenses/gpl-2.0.html
	Text Domain: ecoffset.it
*/

/* MAIN SETTINGS */
body {
	width: 100%;
	overflow-x: hidden;
	margin: 0;
	 font-family: 'Alliance No.2', sans-serif;
}

html {
	overflow-x: hidden;
}

:root{
    --blue: #182240;
	--grey: #8F8F8F;
	--white: #ffffff;
	--beige: #F3EFE8; 
}

*{
}
.container {
	max-width: 1280px;
}

h1 {
	font-family: 'Klapt';
font-weight: 700;
font-size: 67px;
line-height: 67px;


}

h2 {
	font-family: 'Klapt';
font-weight: 700;
font-size: 44px;
line-height: 50px;

}
h4 {
	font-family: 'Klapt';
font-weight: 700;
font-size: 35px;
line-height: 38px;


}

h5 {
font-size: 29px;
	font-weight: 400;
line-height: 35px;


}

h6 {
font-size: 21px;
	font-weight: 400;
line-height: 25px;


}
.btn {
	--bs-btn-padding-x: 25px;
	--bs-btn-padding-y: 12px;
	--bs-btn-font-size: 18px;
	--bs-btn-font-weight: 300;
	--bs-btn-line-height: 1.5;
	--bs-btn-color: var(--bs-body-color);
	--bs-btn-bg: transparent;
	--bs-btn-border-width: var(--bs-border-width);
	--bs-btn-border-color: transparent;
	--bs-btn-border-radius: var(--bs-border-radius);
	--bs-btn-hover-border-color: transparent;
	--bs-btn-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.15),0 1px 1px rgba(0, 0, 0, 0.075);
	--bs-btn-disabled-opacity: 0.65;
	--bs-btn-focus-box-shadow: 0 0 0 0.25rem rgba(var(--bs-btn-focus-shadow-rgb), .5);
	display: inline-block;
	padding: var(--bs-btn-padding-y) var(--bs-btn-padding-x);
	font-family: var(--bs-btn-font-family);
	font-size: var(--bs-btn-font-size);
	font-weight: var(--bs-btn-font-weight);
	line-height: var(--bs-btn-line-height);
	color: var(--bs-btn-color);
	text-align: center;
	text-decoration: none;
	vertical-align: middle;
	cursor: pointer;
	-webkit-user-select: none;
	-moz-user-select: none;
	user-select: none;
	border: var(--bs-btn-border-width) solid var(--bs-btn-border-color);
	border-radius: 0;
	background-color: var(--bs-btn-bg);
	transition: color .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out;
}
.btn-primary {
	--bs-btn-color: #182240;
	--bs-btn-bg: #F3EFE8;
	--bs-btn-border-color: #F3EFE8;
	--bs-btn-hover-color: #fff;
	--bs-btn-hover-bg: #182240;
	--bs-btn-hover-border-color: #182240;
	--bs-btn-focus-shadow-rgb: 49,132,253;
	--bs-btn-active-color: #182240;
	--bs-btn-active-bg: #F3EFE8;
	--bs-btn-active-border-color: #E88639;
	--bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
	--bs-btn-disabled-color: #182240;
	--bs-btn-disabled-bg: #F3EFE8;
	--bs-btn-disabled-border-color: #0d6efd;
}


/***ICON***/



/**HEADER**/

.site-header {
	background-color: var(--blue);

}
.navbar-site {
	padding-top: 30px;
	padding-bottom: 30px;
}
.navbar-nav a {
	color: var(--beige) !important;
	text-decoration: none !important;
	font-size: 16px !important;
	text-transform: uppercase;
	transition: .2s;
}

.primary-nav .nav-link:hover,
.primary-menu .dropdown-menu .dropdown-item:hover,
.primary-nav .nav-link.active,
.primary-menu .dropdown-menu .dropdown-item.active{
    color: #8B909F !important;
}

.logo-black{
	max-width: 180px;
}

@media only screen and (max-width: 768px){
	.logo-black{
		max-width: 140px;
	}
}

/*****SUB MENU*****/
/* Show submenu on hover */
.primary-menu .dropdown-menu {
	position: absolute;
	border: 0 !important;
	-webkit-box-shadow: -0px 15px 25px 0px rgb(92 92 92 / 15%) !important;
	-moz-box-shadow: 0px 15px 25px 0px rgb(92 92 92 / 15%) !important;
	box-shadow: 0px 15px 25px 0px rgb(92 92 92 / 15%) !important;
	padding: 24px;
}
.primary-menu li:hover .dropdown-menu {
	opacity: 1 !important;
	transform: translateY(1px) !important;
	z-index: 99;
	padding: 18px 18px 30px 18px !important;
	transition: max-height 1s ease-in-out;
	max-height: unset !important;
}
.primary-menu .dropdown-menu .dropdown-item {
	background: transparent !important;
}


.primary-menu .dropdown-menu {
	transition: .4s opacity, .2s transform !important;
	-o-transition: .4s opacity, .2s transform !important;
	-ms-transition: .4s opacity, .2s transform !important;
	-moz-transition: .4s opacity, .2s transform !important;
	-webkit-transition: .4s opacity, .2s transform !important;
	display: block !important;
	transform: translateY(30px) !important;
	left: -33px;
	opacity: 0 !important;
	max-height: 0;
	overflow: hidden;
	padding: 0 !important;
	background-color: var(--blue);
	border-radius: 0;
}
.navbar-nav .dropdown-menu a {
  text-transform: none !important;
	line-height: 28px;
}
.primary-menu .dropdown-toggle {
  position: relative;
  padding-right: 1.2em; /* space for the arrow */
  display: inline-block;
  color: #fff;
  text-decoration: none;
}


/* Chevron lines */
.primary-menu .dropdown-toggle::after {
	content: "";
	position: absolute;
	right: 0;
	top: 38%;
	transform: translateY(-50%) rotate(45deg);
	width: 11px;
	height: 11px;
	border-right: 2px solid white;
	border-bottom: 2px solid white;
	transition: transform 0.3s ease;
	border-top: none;
	border-left: none;
}
.primary-menu .dropdown-toggle:hover::after {
    transform: translateY(20%) rotate(-135deg);
    border-right: 2px solid #8B909F;
    border-bottom: 2px solid #8B909F;
}



/****CONTACT NEWSLETTER ****/

.newsletter_input {
    width: 82% !important;
   
}
.newsletter_footer .wpcf7-email {
  border: none;
  padding: 18px 15px;
  font-size: 14px;
  line-height: 1.4;
  outline: none;
  flex: 1;
	background: #f3efe8;
	width: 100%;
}

.newsletter_footer .wpcf7-submit {
	background: #182240 !important;
	color: #f3efe8 !important;
	border: 1px solid #182240;
	/* font-size: 14px; */
	padding: 8px 20px;
	cursor: pointer;
	transition: background 0.3s, color 0.3s;
	position: absolute;
	right: 97px;
	top: 7px;
}
.newsletter_footer .wpcf7-submit:hover {
  background: #f3efe8 !important;
  color: #182240 !important;
}


/***CONTACT US PAGE ***/

.contact-us-form .form-control {
	padding: 12px;
	border-radius: 0;
	color: var(--blue);
	background-color: #EAE4D9;
	border: 1px solid #E2D9CA;
}
.contact-us-form label {
	padding-bottom: 10px;
}
.contact-us-form textarea.form-control {
  height: 100px;
  resize: none;
}

p {
	margin-top: 0;
	margin-bottom: 1.5rem;
	/* margin-bottom: 25px; */
}

.contact-us-form .submit-form-btn {
	background: var(--white);
	color: var(--blue);
	font-size: 16px;
	font-weight: 400;
	line-height: 1;
	padding: 12px 16px;
	border: 1px solid #182240;
		transition: all .3s;

}
.contact-us-form .submit-form-btn:hover {
	background: var(--blue);
	color: var(--white);

}
.elementor-element.contact-z-index {
	z-index: 1;
}


/**GENERAL***/
.custom-counter .elementor-counter-title {
	border-top: 2px solid #F3EFE8;
	padding-top: 20px !important;
}
/**Footer UP ARROW***/
.scroll-up-arrow {
	border: 2px solid #F3EFE8;
	padding: 4px;
	transition: all .3s;
}

.scroll-up-arrow svg {
    stroke: #F3EFE8;
}

.scroll-up-arrow:hover {
      background: #F3EFE8;
}
.scroll-up-arrow:hover svg {
    stroke: #182240;
	transition: all .3s;
}

@media only screen and (max-width: 767px) {
	.newsletter_input {
	width: 100% !important;
}
	.newsletter_footer .wpcf7-submit {
	right: 10px !important;
	
}
	h1 {
font-size: 40px;
line-height: 43px;


}
		h2 {
font-size: 35px;
line-height: 38px;


}
	h4 {
	
	font-size: 25px;
	line-height: 29px;
}
	h6 {
	font-size: 19px;
	line-height: 23px;
}
	
	/**Mobile menu**/
	
	.offcanvas {
	background-color: #182240;

}
	.navbar {
	--bs-navbar-toggler-icon-bg: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(255, 255, 255, 1)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
	}
	.btn-close {
	background: transparent url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23fff'%3e%3cpath d='M.293.293a1 1 0 0 1 1.414 0L8 6.586 14.293.293a1 1 0 1 1 1.414 1.414L9.414 8l6.293 6.293a1 1 0 0 1-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 0 1-1.414-1.414L6.586 8 .293 1.707a1 1 0 0 1 0-1.414z'/%3e%3c/svg%3e") center/1em auto no-repeat;
		opacity: 0.9;
	}
	
	.primary-menu .dropdown-toggle {
	padding-right: 2.2em;

}
	.primary-menu .dropdown-toggle::after {
	top: 43%;
	
}
	.scroll-down-arrow {
	
	bottom: 60px !important;
	right: 25px !important;

}
	.accordion-body {
	padding: 0;
}
	.contact-us-form p {
	
	margin-bottom: 0.5rem;
}
	.navbar-nav {
	line-height: 60px;
}
	.navbar-nav a {
		display: inline-block;
		font-size: 25px !important;
	}
	.primary-menu .dropdown-toggle::after {
	width: 18px;
	height: 18px;
}
	.primary-menu .dropdown-menu {
		position: static !important;
	}
}

body.page-id-324 .elementor-249 .elementor-element.elementor-element-43f83bf {
	display: none;
}	

/**** polylang ***/

.pll-parent-menu-item img {
	width: 20px !important;
	height: 15px !important;
	margin-bottom: 7px;
	object-fit: cover;
}