@charset "utf-8";

/*  Sezioni
============================================================================

GENERALE
ERROR_404
MODAL_LOGIN_LOGOUT
SCELTA_LINGUA

FASCIA_HEADER
HOME_PAGE

FORM_CONTATTO

============================================================================ */


/* GENERALE
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ */
:root {
	--colore_primario: 174, 44, 34; /* #ae2c22 | rgba(var(--colore_primario), 1) */
	--colore_secondario: 211, 71, 15; /* #d3470f | rgba(var(--colore_secondario), 1) */
	--colore_testo: 85, 85, 85; /* #555555 | rgba(var(--colore_testo), 1) */
}

html {
  /* base di partenza: 100% / 16 px
	 min = 0.875rem → 14px
     ﬂuido =   1.5vw →  1.5% larghezza schermo
     max =   1.125rem → 18px */
	font-size: clamp(0.875rem, 1.5vw, 1.125rem);
}
body {
	font-family: 'Lato', sans-serif;
	color: rgb(var(--colore_testo));
	background-color: #ffffff;
	font-size: 1rem;
	line-height: normal;
	margin: 0;
    min-height: 100vh;
	display: flex;
    flex-direction: column;
	font-weight: 300;
}
main {
	flex: 1;
}
a {
	color: rgb(var(--colore_primario));
	text-decoration: none;
}
#system-message .close {
    cursor: pointer;
}
a:hover,
a:focus {
	color: #444;
	text-decoration: none;
	outline: none;
}

h1, h2, h3, h4, h5, h6 {
	font-weight: 300;
}

h1 a:hover, h2 a:hover, h3 a:hover, h4 a:hover, h5 a:hover, h6 a:hover {
	text-decoration: none;
}

p {
	margin: 0;
}

hr {
 	margin: 20px 0;
	border: 0;
	border-top: 1px solid #DDDDDD;
	border-bottom: 1px solid #fff;
	border: #DDDDDD -moz-use-text-color #FFFFFF !important;
}

img {
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	max-width: 100%;
	height: auto;
}
picture {
	display: block;
}

input::placeholder,
textarea::placeholder {
    transition: opacity 0.5s ease;
}

input:focus::placeholder,
textarea:focus::placeholder {
    opacity: 0;
}

.transition_all_5 {
	-webkit-transition: all 0.5s ease;
	-moz-transition: all 0.5s ease;
	-o-transition: all 0.5s ease;
	transition: all 0.5s ease;
}
.copyright {
	text-align: center;
}
.navbar-toggler:focus {
    box-shadow: 0 0 0 .25rem;
}
.grazie_form {
    text-align: center;
    font-size: 1.5rem;
    line-height: 2rem;
    margin-bottom: 2rem;
}
.rsfp_thankyou_popup_inner button {
    display: block;
    margin: auto;
    text-transform: uppercase;
    border-radius: 0;
	background-color: rgb(var(--colore_primario));
	border: 0;
}
#back-to-top {
	position: fixed;
	bottom: 20px;
	right: 20px;
	display: none;
	background: rgb(var(--colore_primario));
	color: #fff;
	z-index: 9999;
	width: 50px;
    height: 50px;
	border: 1px solid #fff;
}
#back-to-top::after {
    content: '';
    border: solid #fff;
    border-width: 0 3px 3px 0;
    padding: 10px;
    -webkit-transform: rotate(-135deg);
    transform: rotate(-135deg);
    position: absolute;
    top: 18px;
    left: 13px;
}
#back-to-top:hover {
  background: #666;
}
.ul_neutro {
	padding: 0;
	list-style: none;
}
.hover_white:hover {
	color: #fff;
}
.hover_bg_gray:hover {
	background-color: #666;
}
.no_underline {
	text-decoration: none;
}
.max_width_70 {
	max-width: 70%;
}
.divisorio_grande {
	height: clamp(3.5rem, 8vw, 9rem);
}
.max_width_70 {
	max-width: 70%;
}



/* ERROR_404
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ */
.error_container {
    position: relative;
    padding: 15px;
}
.error_container .error_image {
    display: block;
    margin: auto;
}
.error_container h1 {
    text-align: center;
    font-size: 38px;
    line-height: 38px;
}



/* MODAL_LOGIN_LOGOUT
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ */
.modal_login_container .modal_login_trigger, .logout-button {
	position: absolute;
    right: 15px;
    top: 15px;
    z-index: 10;
}
.modal_login_container .modal_login_trigger:hover, .logout-button .btn:hover {
	color: #ccc;
}
.modal_login_container .modal_login_trigger:focus, .logout-button .btn:focus {
	color: #0099ff;
	box-shadow: none;
}
.logout-button .btn {
	padding: 0;
    background-color: transparent;
    border: 0;
    color: #0d6efd;
}
#modal-login .mod-login__password input:focus {
    box-shadow: none;
}
.modal_login_container .mod-login__username,
.modal_login_container .mod-login__password {
	margin-bottom: 15px;
}
.modal_login_container .mod-login__submit button {
    display: block;
    margin: auto;
}
.mod-login-logout {
    display: inline-block;
}
.modal_login_container .modal_login_trigger, .logout-button {
    position: relative;
    right: auto;
    top: auto;
}
.logout-button .btn {
    color: rgba(var(--colore_primario), 1);
	font-size: 1rem;
	position: relative;
    top: -2px;
}



/* SCELTA_LINGUA
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ */
.header .mod-languages {
    position: absolute;
    right: 50px;
    top: 8px;
	-webkit-transition: all 0.5s ease;
	-moz-transition: all 0.5s ease;
	-o-transition: all 0.5s ease;
	transition: all 0.5s ease;
}
.header .mod-languages .btn-secondary:focus {
    box-shadow: none;
}
.header div.mod-languages a {
    display: block;
	text-align: right;
    padding-right: 23px;
}
.header div.mod-languages .dropdown-menu {
    padding: 0;
}
.header div.mod-languages ul.lang-block li {
    margin: 0;
	padding: 0;
}
.header div.mod-languages .btn-group .btn {
    padding-bottom: 2px;
    padding-top: 5px;
}



/* FASCIA_HEADER
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ */
/*header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: #fff;
	height: 85px;
	z-index: 100;
}
header .container_header {
    height: 85px;
}
.container_header {
    padding-top: 19px;
    height: 90px;
    position: fixed;
    clear: both;
    width: 100%;
    margin-bottom: -20px;
}
.logo_header {
    width: 20%;
    float: left;
}
.logo {
    float: left;
    display: inline;
    position: relative;
    z-index: 99999999;
}
.logo span img {
    width: 223px;
    display: inline;
    float: left;
}
.link_header {
    width: 70%;
    float: left;
}
.link_header ul {
    list-style-type: none;
    margin-bottom: 0;
    position: relative;
    top: 4px;
    margin: 0 auto;
    width: 650px;
}
.link_header ul li {
    display: inline-block;
    padding: 15px 15px;
    text-transform: uppercase;
    font-weight: 500;
    font-size: 13px;
    letter-spacing: 1px;
}
.link_header ul li a {
    color: #333;
	text-decoration: none;
}
.button_header {
    width: 10%;
    float: left;
}
.button_header img {
    position: relative;
    top: 8px;
    float: right;
    width: 40px;
    height: 40px;
}
.menu_i {
    cursor: pointer;
}*/



/* HOME_PAGE
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ */
/*.slide_container {
    margin-top: 90px;
	height: 500px;
	position: relative;
}
.swiper.swiper-container-home {
	padding: 0 30%;
}
.slide_container .immagine_slide {
    height: 500px !important;
}
.slide_container .swiper-slide img {
    height: 100%;
	width: 100%;
    object-fit: cover;
}
.slide_container .swiper-slide {
    -webkit-filter: grayscale(100%);
    filter: grayscale(100%);
    transition: all .6s;
	opacity: 0.6;
}
.immagine_slide p {
    position: absolute;
    color: #fff;
    text-transform: uppercase;
    font-weight: bold;
    font-size: 13px;
    right: 15px;
    bottom: 10px;
}
.slide_container .swiper-slide-active {
    -webkit-filter: grayscale(0%);
    filter: grayscale(0%);
    transition: all .6s;
	opacity: 1;
}
.hero_text_2019 {
	position: relative;
    clear: both;
    z-index: 2;
}
.hero_text_2019 h1 {
    margin-top: 5px;
    margin-bottom: -10px;
	font-size: 78px;
    text-align: center;
    text-transform: uppercase;
    font-family: 'Sorts Mill Goudy', serif;
    color: #ae2c22;
	position: relative;
    top: -50px;
	line-height: 1.1
}
.hero_text_2019 h1 span {
    display: inline-block;
}
.m_1, .m_2, .m_3, .m_4, .m_5 {
    overflow: hidden;
}
.hero_text_2019 h1 span span {
    position: relative;
    transform: translate(0px, 15px);
    display: inline-block;
}
.testo_goodwill_home {
	margin-bottom: 50px;
    position: relative;
    padding-top: 15px;
    padding-bottom: 15px;
    float: left;
    width: 100%;
	margin-top: -70px;
}
.testo_goodwill_home p {
    max-width: 900px;
    width: 75% !important;
    font-family: 'Lato', sans-serif !important;
    font-size: 16px !important;
    line-height: 1.35 !important;
    font-weight: 500;
    margin-top: 0;
    margin: auto;
    text-align: center;
    margin-bottom: 10px;
}
#servizi_home, #clients {
    padding: 0;
}
.servizi_home_2019 {
    margin-bottom: 0 !important;
    padding-bottom: 0 !important;
}*/




/* FORM_CONTATTO
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ */
.contact_form .formError {
	padding-left: 0.75rem;
	margin-top: 2px;
    display: block;
}
.contact_form .rsform-block {
	margin-bottom: 1.5rem !important;
}
.contact_form label {
	font-size: 1rem;
    line-height: 1rem;
    padding-left: 0.75rem;
    margin-bottom: 0.3rem;
}
.contact_form .rsform-block-privacy .form-check-inline {
	display: block;
    min-height: unset;
	padding-left: 0;
	margin: 0;
}
.contact_form .rsform-block-privacy .form-check .form-check-input {
	float: none;
    margin: 0;
    margin-right: 5px;
    width: 20px;
    height: 20px;
    border-radius: 0;
}
.contact_form .rsform-block-privacy .form-check-label {
	font-size: 0.75rem;
	line-height: 0.75rem;
	vertical-align: top;
    padding-top: 4px;
	padding-left: 0;
	display: inline-block;
}
.contact_form .rsform-block-privacy .form-check-label a {
	color: #333;
}
.contact_form input,
.contact_form  textarea {
	border-radius: 0;
}
.contact_form .rsform-block-invio {
	position: relative;
}
.contact_form .rsform-block-invio .rsform-submit-button {
	position: absolute;
    right: 0;
    top: 0;
    background-color: transparent;
    color: rgba(var(--colore_primario), 1);
    border: 1px solid rgba(var(--colore_primario), 1);
	padding: 8px 27px;
    font-size: 15px;
}
.grazie_form {
    text-align: center;
    font-size: 24px;
    line-height: 30px;
}
.rsfp_thankyou_popup_inner button {
    display: table;
    margin: auto;
    margin-top: 12px;
    text-transform: uppercase;
    border-radius: 0;
    background-color: rgb(var(--colore_primario));
    border: 0;
}
.rsfp_thankyou_popup_inner button:hover {
	background-color: #666;
}
input[type="email"]::placeholder,
input[type="text"]::placeholder,
textarea::placeholder {
    color: #999 !important;
}
/*.contact_form select { color: red; }
select.has-value { color: green; }*/







