@charset "UTF-8";
:root {
  --blue: #007bff;
  --indigo: #6610f2;
  --purple: #6f42c1;
  --pink: #e83e8c;
  --red: #dc3545;
  --orange: #f4623a;
  --yellow: #ffc107;
  --green: #28a745;
  --teal: #20c997;
  --cyan: #17a2b8;
  --white: #fff;
  --gray: #6c757d;
  --gray-dark: #343a40;
  --primary: #007bff;
  --secondary: #6c757d;
  --success: #28a745;
  --info: #17a2b8;
  --warning: #ffc107;
  --danger: #dc3545;
  --light: #f8f9fa;
  --dark: #343a40;
  --breakpoint-xs: 0;
  --breakpoint-sm: 576px;
  --breakpoint-md: 768px;
  --breakpoint-lg: 992px;
  --breakpoint-xl: 1200px;

  --custom-body-bg: #000;
  --custom-body-color: #FFF;

  --custom-navbar-bg: #000;
  --custom-navbar-navlink: #FFF;
  --custom-navbar-navlink-hover: #68BD42;
  --custom-navbar-social: #40a629;
  --custom-navbar-social-hover: #215516;

  --custom-primary: #68BD42;
  --custom-primary-light: #57e437;
  --custom-primary-o: rgb(246, 242, 237,0.5);
  --custom-primary-hover: #FFF;
  --custom-primary-text: #fff;
  --custom-secondary: #000;
  --custom-secondary-hover: #545b62;  
  --custom-bg-primary-hover: #ee3e0d;

  --custom-primary-btn-bg: #000;
  --custom-primary-btn: #FFF;
  --custom-primary-btn-hover: #FFF;
  --custom-primary-a: #215516;

  --custom-light: #000;
  --custom-light-o: rgba(0,0,0,0.6);
  --custom-light-f: #f6f2ed;
  --custom-light-color: #d9d9d9;
  --custom-light-text: #d9d9d9;
  --custom-light-banner: #e9ecef;
  --custom-light-btn-bg: #40a629;
  --custom-light-btn: #262626;
  --custom-light-btn-hover: #40a629;
  --custom-light-a: #68BD42;

  --custom-dark: #000;
  --custom-dark-o: rgba(0,0,0,0.5);
  --custom-dark-text: #FFF;

  --custom-dark-btn-bg: #f8f9fa;
  --custom-dark-btn: #000;
  --custom-dark-btn-hover: #000;
  --custom-dark-a: #CCC;

  --custom-navbar-brand-o: rgba(255, 255, 255, 0.9);
  --custom-navbar-brand: #FFF;
  --custom-navbar-brand-hover: #40a629;
  
  --custom-footer: rgba(0,0,0,1);
  --custom-footer-text: #d0d0d0;
  --custom-footer-link: #adadad;

  --custom-main-font: 'Roboto', sans-serif;
  --custom-menu-font: 'Roboto', sans-serif; 

  --custom-scroll-to-top: rgba(52,58,64,.5);
  --custom-scroll-to-top-text: #fff;

  --custom-search-modal: #fff;

  --custom-feedback: #6c757d;
  --custom-primary-feedback: #EEE;
  --custom-primary-subheading: #CCC;
  --custom-primary-team: #EEE;
  --custom-cf7: #dc3232;
  --custom-slick: #BBB;
  --custom-slider-bg: #000;

  --custom-block-square: #222;
  --custom-block-square-color: #f9f9f9;  
}

body {
  margin: 0;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
  color: var(--custom-body-color);
  text-align: left;
  background-color: var(--custom-body-bg);
  font-family: var(--custom-main-font);
}

.custom-manteinance {
  background-color: var(--custom-primary);
  color: var(--custom-primary-a);
}
header nav { font-family: var(--custom-menu-font); }

.custom-manteinance-obj { min-height: 100vh; display: flex; flex-direction: column; align-items: center; justify-content: center; padding: 50px; }

.custom-manteinance-obj img {
  max-width: 300px;
  margin-bottom: 30px;  
  
}

.custom-manteinance-obj a { text-decoration: none !important; }

@-webkit-keyframes spinner-border {
  to {
    transform: rotate(360deg);
  }
}

@keyframes spinner-border {
  to {
    transform: rotate(360deg);
  }
}
.spinner-border {
  display: inline-block;
  width: 2rem;
  height: 2rem;
  vertical-align: text-bottom;
  border: 0.25em solid currentColor;
  border-right-color: transparent;
  border-radius: 50%;
  -webkit-animation: spinner-border 0.75s linear infinite;
          animation: spinner-border 0.75s linear infinite;
}

.spinner-border-sm {
  width: 1rem;
  height: 1rem;
  border-width: 0.2em;
}

@-webkit-keyframes spinner-grow {
  0% {
    transform: scale(0);
  }
  50% {
    opacity: 1;
    transform: none;
  }
}

@keyframes spinner-grow {
  0% {
    transform: scale(0);
  }
  50% {
    opacity: 1;
    transform: none;
  }
}
.spinner-grow {
  display: inline-block;
  width: 2rem;
  height: 2rem;
  vertical-align: text-bottom;
  background-color: currentColor;
  border-radius: 50%;
  opacity: 0;
  -webkit-animation: spinner-grow 0.75s linear infinite;
          animation: spinner-grow 0.75s linear infinite;
}

.spinner-grow-sm {
  width: 1rem;
  height: 1rem;
}

.custom-last-articles:hover { text-decoration: none !important; }
.custom-last-articles:hover .card-image, .custom-last-articles:hover .card-body, .custom-article-image:hover, .mode1:hover h3, .mode1:hover p, .mode1:hover .btn  { opacity: 0.8; }
.album .card-image { border-top-right-radius:.25rem; border-top-left-radius:.25rem; }
.card-image-search { border-bottom:1px solid #efefef }
a { color: var(--custom-primary); }
a:hover { color: var(--custom-primary-hover); }
.bg-primary { background-color: var(--custom-primary) !important; }

.btn-primary { color: var(--custom-primary-text); background-color: var(--custom-primary); border-color: var(--custom-primary); }
.btn-primary:hover, .btn-primary:active { color: var(--custom-primary); background-color: var(--custom-primary-hover) !important; border-color: var(--custom-primary-hover) !important; }
a.bg-primary:hover, a.bg-primary:focus, a.bg-primary:active, button.bg-primary:hover, button.bg-primary:focus, button.bg-primary:active { background-color: var(--custom-bg-primary-hover) !important; }
.bg-secondary { background-color: var(--custom-secondary) !important; }

a.bg-secondary:hover, a.bg-secondary:focus, button.bg-secondary:hover, button.bg-secondary:focus { background-color: var(--custom-secondary-hover) !important; }

.lead2 { font-size:1rem; font-weight:400 }

.bg-success { background-color: #28a745 !important; }

a.bg-success:hover, a.bg-success:focus, button.bg-success:hover, button.bg-success:focus { background-color: #1e7e34 !important; }

.bg-info { background-color: #17a2b8 !important; }

a.bg-info:hover, a.bg-info:focus, 
button.bg-info:hover,
button.bg-info:focus {
  background-color: #117a8b !important;
}

.bg-warning {
  background-color: #ffc107 !important;
}

a.bg-warning:hover, a.bg-warning:focus,
button.bg-warning:hover,
button.bg-warning:focus {
  background-color: #d39e00 !important;
}

.bg-danger {
  background-color: #dc3545 !important;
}

a.bg-danger:hover, a.bg-danger:focus,
button.bg-danger:hover,
button.bg-danger:focus {
  background-color: #bd2130 !important;
}

.bg-light {
  background-color: #f8f9fa !important;
}

a.bg-light:hover, a.bg-light:focus,
button.bg-light:hover,
button.bg-light:focus {
  background-color: #dae0e5 !important;
}

.bg-dark {
  background-color: #343a40 !important;
}

.bg-black {
  background-color: #333333 !important;
}

a.bg-dark:hover, a.bg-dark:focus,
button.bg-dark:hover,
button.bg-dark:focus {
  background-color: #1d2124 !important;
}

.bg-white {
  background-color: #fff !important;
}


.text-white {
  color: #fff !important;
}

.text-primary {
  color: var(--custom-light-a) !important;
}

a.text-primary:hover, a.text-primary:focus {
  color: #d6370c !important;
}

.text-secondary {
  color: #6c757d !important;
}

a.text-secondary:hover, a.text-secondary:focus {
  color: #494f54 !important;
}

.text-success {
  color: #28a745 !important;
}

a.text-success:hover, a.text-success:focus {
  color: #19692c !important;
}

.text-info {
  color: #17a2b8 !important;
}

a.text-info:hover, a.text-info:focus {
  color: #0f6674 !important;
}

.text-warning {
  color: #ffc107 !important;
}

a.text-warning:hover, a.text-warning:focus {
  color: #ba8b00 !important;
}

.text-danger {
  color: #dc3545 !important;
}

a.text-danger:hover, a.text-danger:focus {
  color: #a71d2a !important;
}

.text-light {
  color: #f8f9fa !important;
}

a.text-light:hover, a.text-light:focus {
  color: #cbd3da !important;
}

.text-dark {
  color: #343a40 !important;
}

a.text-dark:hover, a.text-dark:focus {
  color: #121416 !important;
}

.text-body {
  color: #212529 !important;
}

.text-muted {
  color: #6c757d !important;
}

.text-black-50 {
  color: rgba(0, 0, 0, 0.5) !important;
}

.text-white-50 {
  color: rgba(255, 255, 255, 0.5) !important;
}

.text-hide {
  font: 0/0 a;
  color: transparent;
  text-shadow: none;
  background-color: transparent;
  border: 0;
}



body,
html {
  width: 100%;
  height: 100%;
}

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

.topmenu-container { display: none; }

@media (min-width:992px) { 
  .section-obj { padding-top:35px !important; padding-bottom: 35px !important }
  .hidden-desktop { display: none;} 
  #mainNav { padding: 0 !important; }
  .topmenu-container { display: block; width: 100%; }
  .topmenu-container ul { padding: 0; margin-top: 5px; margin-bottom: 5px; }
  .topmenu-container ul.justify-content-start li { padding-right: 20px; }  
  .topmenu-container ul.justify-content-end li { padding-left: 20px; }  
  .topmenu-container ul li { font-size: 13px; }
  .topmenu-container ul li a { font-weight: 600; }  
  .topmenu-container a { text-decoration:none !important; }
  .topmenu-container.custom-dark a { color: var(--custom-dark-btn-bg) !important; }
  .topmenu-container.custom-dark a svg, .topmenu-container.custom-dark svg { color: var(--custom-dark-a); }
  .navbar-expand-lg { -ms-flex-flow: column; flex-flow: column; }  
  .navbar-collapse { padding-top: 5px;}
  #mainNav .navbar-nav .nav-item .nav-link {
    padding-bottom: 10px !important;
  }  
  #mainNav .navbar-nav .nav-item .nav-link .dropdown-menu .nav-link {
    padding-bottom: 0px !important;
  }  
 .navbar-expand-lg .navbar-nav .dropdown-menu {
  border-top: 0;
  border-top-left-radius: 0;
  border-top-right-radius: 0;
  top: 30px;
 }
 .navbar-expand-lg .navbar-nav .dropdown-menu .dropdown-menu {
  top: -10px;
  border: 1px solid rgba(0,0,0,.15);
  border-radius: .25rem;  
  border-top-left-radius: 0;
 }

 ul.dropdown-menu li > ul.dropdown-menu {
  left: 100%;
  top: 0px;  
 }
 li:hover > ul.dropdown-menu, li:focus > ul.dropdown-menu { display: block; }
}

@media (max-width:991px) {
  .navbar-brand { margin-left: .4rem;}
  .navbar-collapse { text-align:center }
  .navbar-collapse ul.dropdown-menu { margin-top: 0; padding: 0; } 
  ul.dropdown-menu li > ul.dropdown-menu {
    position: relative !important;
    display: block;
    left: 0px;
    top: 0;
  }
  ul.dropdown-menu { border:0; text-align:center }
  /*li > ul.dropdown-menu { display: block; }*/
}

.bd-placeholder-img, .custom-slider-side-image { background-position:center center; background-repeat:no-repeat; background-size:cover }
.custom-slider-side-image { width:100%; height: 100%; overflow: hidden; }
.custom-slider-side-image img { visibility: hidden; height: 100%; width: auto; }
.card-image { width:100%; height:225px; background-position:center center; background-repeat:no-repeat; background-size:cover }
.custom-evidence-image { background-color: #FFF; float: right; width: 220px; min-height: 220px; height: 100%; background-position:center center; background-repeat:no-repeat; background-size:cover }
.custom-evidence-image:hover { opacity: 0.8; }
.custom-evidence-left { width: calc(100% - 220px); float: left; }
.custom-dark .mode2 { color: var(--custom-dark-btn); background-color: var(--custom-dark-btn-bg); }
.custom-dark .mode2 h3 { color: var(--custom-dark-a); }
.custom-primary .mode2 { color: var(--custom-primary-btn-bg); background-color: var(--custom-primary-btn); }
.custom-primary .mode2 h3 { color: var(--custom-primary); }

.navbar-brand img { width:150px; height:auto; max-width:100% }

.ol-corsi-formazione { font-size:14px; padding-left: 12px; font-weight:bold }

hr.divider {
  max-width: 3.25rem;
  border-width: 0.2rem;
  border-color: var(--custom-primary);
  visibility: hidden;
}

.page-link {  color: var(--custom-primary); }

hr.light { border-color: #fff; }

.btn-xl {
  padding: 0.5rem 2.25rem;
  font-size: 24px;
  font-weight: 500;
  text-transform: uppercase;
  border: none;
  border-radius: 10rem;
}

.page-section {
  padding: 8rem 0;
}

#mainNav {
  box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
  background-color: var(--custom-navbar-bg);
  transition: background-color 0.2s ease;
  font-family: var(--custom-main-font), sans-serif;
}
#mainNav .navbar-nav .nav-item .nav-link {
  color: var(--custom-navbar-navlink);
  padding: 0.75rem 0;
}
#mainNav .navbar-text a {
    color: var(--custom-navbar-navlink);
}
#mainNav .navbar-nav .nav-item .nav-link:hover, #mainNav .navbar-nav .nav-item .nav-link:active {
  color: var(--custom-navbar-navlink-hover);
}
#mainNav .navbar-text a:hover {
    color: var(--custom-primary);
}
#mainNav .navbar-nav .nav-item .nav-link.active {
  color: var(--custom-primary) !important;
}
#mainNav .navbar-nav .active>.nav-link { /*color: var(--custom-primary) !important;*/ }

#mainNav .socials a {  }
#mainNav .socials a:hover {  }

.back-menu { width:100%; height:75px }

.custom-topbar { padding: 10px; font-size: 13px; width: 100%; display: block; }
.custom-topbar p { margin-bottom: 0 ;}
.custom-topbar2 { box-shadow: 0 0.5rem 1rem rgb(0 0 0 / 15%); z-index: 0; position: relative; }
.custom-topbar.custom-light { background-color:var(--custom-light); color:var(--custom-light-text) }
.custom-topbar.custom-dark { background-color:var(--custom-dark); color: var(--custom-dark-text); }
.custom-topbar.custom-primary { background-color:var(--custom-primary); color:var(--custom-primary-text) }

.custom-menu-mobile { display: none; }
.relative { position: relative; }

.download-column { padding:5px; text-align: center; }
.download-column .download-image img { max-width: 200px; height: auto; width: 100%; margin: 0 auto; }
.download-column a:hover .download-image { opacity: 0.8; }

.custom-primary .custom-contact a { color: var(--custom-dark); }
.custom-dark strong { color: var(--custom-primary); }

#kit-prova img { border-top-left-radius: 30px; border-bottom-right-radius: 30px; }
#come-funziona strong { color: var(--custom-primary); }

.column-1234 { margin-bottom: 40px; }
/*.column-1234-1, .column-1234-4 { width: 100%; display: block; float: left; }*/
.column-1234-title { font-size: 22px; margin-bottom: 5px; }
.column-1234-content { max-width: 300px; margin: 0 auto; text-align: center; }
/*.column-1234-2 { float: right; display: block; width: 33.3%; }
.column-1234-3 { float: left; display: block; width: 33.3%; }*/
.column-1234-center .column-1234-content {  /*float: left; display: block; width: 33.3%;*/ background-color: var(--custom-primary); width:200px; height:200px; margin: 0 auto; position: relative; border-radius:50% }

.number-1 { position: absolute;
  top: -50px;
  left: calc(50% - 25px);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  text-align: center;
  /* background-color: #000; */
  font-weight: bold;
  font-size: 36px; 
}

.number-3 { position: absolute;
  bottom: -45px;
  left: calc(50% - 25px);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  text-align: center;
  /* background-color: #000; */
  font-weight: bold;
  font-size: 36px; 
}

.number-2 { position: absolute;
  top: calc(50% - 25px);
  right: -45px;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  text-align: center;
  /* background-color: #000; */
  font-weight: bold;
  font-size: 36px; 
}

.number-4 { position: absolute;
  top: calc(50% - 25px);
  left: -45px;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  text-align: center;
  /* background-color: #000; */
  font-weight: bold;
  font-size: 36px; 
}

@media (min-width:992px) {
  .column-1234-2, .column-1234-3, .column-1234-4 { padding-top: 25px; } 
}


@media (max-width: 992px) {

  /*.column-1234-1, .column-1234-4, .column-1234-2, .column-1234-3  { width: 100%; display: block; float: none; }*/
  .column-1234-content { max-width: 500px; margin: 0 auto }
  .column-1234-center {  display: none; }  
  
  .hidden-mobile { display:none }
  .back-menu { height: 65px; }  
  #mainNav { padding-right: 0; }
  .navbar-toggler { padding: 0; margin-right: 19px; margin-top: 1px; font-size: 26px; color: #FFF !important; }
  .navbar-brand { max-width: calc(100% - 100px); min-height: 50px; }

  .custom-evidence-image { float:none; width: 100%; margin-bottom: 0px; height: 200px; }
  .custom-evidence-left { width: 100%; float: none; } 
  
  nav .socials { display: none; }  
  .custom-menu-mobile {
    display: block;
    position: absolute;
    right: 50px;
    top: 8px;
    font-size: 26px;
  }
  .custom-menu-mobile a { color: var(--custom-primary-text); margin-right: 5px; }
  .custom-menu-mobile a:hover { color: var(--custom-primary); }
  .navbar-dark .navbar-toggler { border: 0; outline: 0 !important; }  
  .custom-contact { margin-bottom:20px }
  .section-obj { padding-top:50px !important; padding-bottom:50px !important }
}
@media (min-width: 992px) {  
  #mainNav {
    box-shadow: none;
    background-color: transparent;
  }

  #mainNav .navbar-brand {
    color: var(--custom-navbar-brand-o);
  }
  #mainNav .navbar-brand:hover {
    color: var(--custom-navbar-brand-hover);
  }
  #mainNav .navbar-nav .nav-item .nav-link {    
    padding: 0 1rem;
  }  
  #mainNav .navbar-nav .nav-item .nav-link, #mainNav .navbar-text a {
    color: var(--custom-navbar-brand);
    text-transform: uppercase;
    font-size: 15px;
    font-weight: 400;  
  }
  #mainNav .navbar-nav .nav-item .nav-link:hover, #mainNav .navbar-text a:hover {
    color: var(--custom-navbar-brand-hover);
  }
  #mainNav .navbar-nav .nav-item:last-child .nav-link {
    padding-right: 0;
  }
  #mainNav.navbar-scrolled {
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
    background-color: var(--custom-navbar-bg);
  }
  #mainNav.navbar-scrolled .navbar-brand {
    color: var(--custom-navbar-brand);
  }
  #mainNav.navbar-scrolled .navbar-brand:hover {
    color: var(--custom-primary-light);
  }
  #mainNav.navbar-scrolled .navbar-nav .nav-item .nav-link, #mainNav.navbar-scrolled .navbar-text a {
    color: var(--custom-navbar-navlink);
  }
  #mainNav.navbar-scrolled .navbar-nav .nav-item .nav-link:hover, #mainNav.navbar-scrolled .navbar-text a:hover {
    color: var(--custom-primary-light);
  }
}

header.masthead {
  padding-top: 10rem;
  padding-bottom: calc(10rem - 4.5rem);
  background: linear-gradient(to bottom, rgba(92, 77, 66, 0.8) 0%, rgba(92, 77, 66, 0.8) 100%);
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: scroll;
  background-size: cover;
  position:relative;
}
header.masthead .container { padding-left: 65px; padding-right: 65px; }
@media (max-width:1100px) {
  header.masthead .container { padding-left: 40px; padding-right: 40px }  
}
header.masthead h1 {
  font-size: 2.25rem;
  /*color: #8e8e8e !important;*/
}
@media (min-width: 992px) {
  header.masthead {
    height: 100vh;
    min-height: 40rem;
    padding-top: 4.5rem;
    padding-bottom: 0;
  }
  header.masthead p {
    font-size: 1.15rem;
    /*color:#525252; font-weight:bold;*/
  }
  header.masthead h1 {
    font-size: 3rem;
  }
  .custom-slider header.masthead, .single-slider header.masthead  {
    height: 100vh;
    min-height: 40rem;
    padding-top: 10rem;
    padding-bottom: 10rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
  input.form-control { min-height: 60px;}
  .navbar-form input.form-control { min-height: 30px; }
  .single-slider header.masthead  {
    height: 70vh;
  } 
}

.wpcf7-list-item { margin: 0; }

@media (min-width: 1200px) {
  header.masthead h1 {
    font-size: 3.5rem;
  }
}

.portfolio .container-fluid { padding-left: 0; padding-right:0; }

.portfolio .portfolio-box {
  position: relative;
  display: block;
}
.portfolio .portfolio-box .portfolio-box-caption {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  width: 100%;
  height: 100%;
  position: absolute;
  bottom: 0;
  text-align: center;
  opacity: 0;
  transition: opacity 0.25s ease;
  text-align: center;
}

.custom-light.portfolio .portfolio-box .portfolio-box-caption { background-color:var(--custom-light-o); color:var(--custom-primary) }
.custom-dark.portfolio .portfolio-box .portfolio-box-caption { background-color:var(--custom-dark-o); color: var(--custom-dark-text); }
.custom-primary.portfolio .portfolio-box .portfolio-box-caption { background-color:var(--custom-primary-o); color:var(--custom-primary-text) }

.portfolio .portfolio-box .portfolio-box-caption .project-category {
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
}
.portfolio .portfolio-box .portfolio-box-caption .project-name {
  font-size: 1.2rem;
}
.portfolio .portfolio-box:hover .portfolio-box-caption {
  opacity: 1;
}

.text-white-75 {
  color: rgba(255, 255, 255, 0.75);
}

/* Center align the text within the three columns below the carousel */
.marketing .col-lg-4 {
  margin-bottom: 1.5rem;
  text-align: center;
}
.marketing h2 {
  font-weight: 400;
}
.marketing .col-lg-4 p {
  margin-right: .75rem;
  margin-left: .75rem;
}

.socials { height:35px; font-size:20px }
.socials a { padding-left:6px; }

.team-member {
    margin-bottom: 3rem;
    text-align: center;
}
.team-member img {
  width: 14rem;
  height: 14rem;
  border: 0.5rem solid rgba(0, 0, 0, 0.1);
}

h4.feedback-stars {
  color: #fdfd07;
  font-size: 16px;
}

.team-member.home-team-member img {
    width: 9rem;
    height: 9rem;
    border: 0.5rem solid rgba(0, 0, 0, 0.1);
}

.team-member h4 {
    margin-top: 1.5rem;
    margin-bottom: 0;
}

.btn:not(:disabled):not(.disabled) {
    cursor: pointer;
}
.btn-social {
    height: 2.5rem;
    width: 2.5rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    border-radius: 100%;
}

section#contact-form {
    background-color: #212529;    
    background-repeat: no-repeat;
    background-position: center;
}
section#contact-form form#contactForm .form-group {
    margin-bottom: 1.5rem;
}
section#contact-form form#contactForm .form-group input.form-control {
    height: auto;
}
section#contact-form form#contactForm .form-group input, section#contact-form form#contactForm .form-group textarea {
    padding: 1.25rem;
}
section#contact-form form#contactForm .form-group-textarea {
    height: 100%;
}
section#contact-form form#contactForm .form-group-textarea textarea {
    height: 100%;
    min-height: 10rem;
}
/* Featurettes
------------------------- */

.featurette-divider {
  margin: 5rem 0; /* Space out the Bootstrap <hr> more */
}

.jumbotron {
  padding-top: 3rem;
  padding-bottom: 3rem;
  margin-bottom: 0;
  /*background-color: #fff;*/
}
@media (min-width: 768px) {
  .jumbotron {
    padding-top: 6rem;
    padding-bottom: 6rem;
  }
}

.jumbotron h1 {
  font-weight: 300;
}

.jumbotron .container {
  max-width: 40rem;
}

.map {
    height: 30rem;
}

.map iframe {
    height: 100%;
    width: 100%;
    border: 0;
}
.map iframe {
    /*pointer-events: none;*/
}

footer.footer {
    padding-top: 20px;
    padding-bottom: 20px;
    background-color: var(--custom-footer) !important;
}

footer.footer { color: var(--custom-footer-text); }
footer.footer h5 { color: var(--custom-primary); }
footer.footer hr { background-color: var(--custom-footer-text); opacity: 0.6; }
footer.footer .list-unstyled li a { font-size: 14px; color: var(--custom-footer-link); }


footer.footer p { margin-bottom: 0; font-size:14px }
footer.footer .list-unstyled li a { font-size: 14px; }

footer.footer .social-link {
    display: block;
    height: 4rem;
    width: 4rem;
    line-height: 4.1rem;
    font-size: 1.5rem;
    background-color: var(--custom-primary);
    color: var(--custom-primary-hover);
    transition: background-color .15s ease-in-out;
    box-shadow: 0 3px 3px 0 rgba(0,0,0,.1);
}

footer.footer .social-link:hover {    
    text-decoration: none;
    color: var(--custom-primary-text);
}

footer .footer-copyright a:hover, footer .footer-policy a:hover { color: #DDD; }
footer.footer .footer-policy p { font-size: 12px;}

footer img { max-height: 50px; margin-top: -5px !important; }

.content-section {
    padding-top: 7.5rem;
    padding-bottom: 7.5rem;
}

.content-section-heading h3 {
    font-size: 1rem;
    text-transform: uppercase;
}

.portfolio-item {
    display: block;
    position: relative;
    overflow: hidden;
    max-width: 530px;
    margin: auto auto 1rem;
}

.portfolio-item .caption {
    display: flex;
    height: 100%;
    width: 100%;
    background-color: rgba(33,37,41,.2);
    position: absolute;
    top: 0;
    bottom: 0;
    z-index: 1;
}
.portfolio-item .caption .caption-content {
    color: #fff;
    margin: auto 2rem 2rem;
}
.portfolio-item .caption .caption-content p {
    font-weight: 300;
    font-size: 1.2rem;
}

.scroll-to-top {
    position: fixed;
    right: 15px;
    bottom: 30px;
    display: none;
    width: 50px;
    height: 50px;
    text-align: center;
    color: var(--custom-scroll-to-top-text);
    background: var(--custom-scroll-to-top);
    line-height: 45px;
}

.service-icon {
    background-color: #fff;
    color: #74423b;
    height: 7rem;
    width: 7rem;
    display: block;
    line-height: 6.8rem;
    font-size: 2.25rem;
    box-shadow: 0 3px 3px 0 rgba(0,0,0,.1);
}
.showcase .showcase-img {
    min-height: 30rem;
    background-size: cover;
}
.showcase .showcase-text {
    padding: 3rem;
}

#mySearchModal .modal-header {
  border-bottom: none;
}

#mySearchModal .modal-dialog {
  width: 100%; max-width:100%;
  height: 100%;
  margin: 0;
  padding: 0;
}

#mySearchModal {
background-color:var(--custom-search-modal);
  opacity:0.9
}

.custom-slider .image-background, .single-slider .image-background {
  width: 100%; 
  background-position: 50% 50% !important;
  background-size: cover; 
  background-color: var(--custom-slider-bg) !important;
  text-align:center;
  
}

.slick-dotted.slick-slider {
    margin-bottom: 0px;
}
.slick-dots {
    bottom: 20px;
}

.slick-prev, .slick-next { z-index:100 }
.slick-prev {
    left: 25px;
}
.slick-next {
    right: 25px;
}
.slick-next:before, .slick-prev:before {
    font-size: 30px;
}

#mySearchModal .modal-content {
  height: auto;
  min-height: 100%;
  border-radius: 0;
  background: none;
  box-shadow: none;
}

#mySearchModal .modal-body {
  text-align: center;
}

#mySearchModal .modal-body form {
  margin: 0 auto;
  float: none;
  width: 300px;
}

#mySearchModal .modal-content .close {
  opacity: 1;
  font-size: 30px;
}

.preloader {
   position: absolute;
   top: 0;
   left: 0;
   width: 100%;
   height: 100%;
   z-index: 9999;
   background-image: url('../images/preloader.png');
   background-repeat: no-repeat; 
   background-color: var(--custom-body-bg);
   background-position: center;
}

@media (min-width: 768px) {
.showcase .showcase-text { padding: 7rem; }
}
@media (min-width: 992px) {
	.portfolio-item {
		max-width: none;
		margin: 0;
	}
	.portfolio-item .caption {
		transition: background-color .7s,-webkit-clip-path .25s ease-out;
		transition: clip-path .25s ease-out,background-color .7s;
		transition: clip-path .25s ease-out,background-color .7s,-webkit-clip-path .25s ease-out;
		-webkit-clip-path: inset(0);
		clip-path: inset(0);
	}	

	.portfolio-item img {
		transition: -webkit-clip-path .25s ease-out;
		transition: clip-path .25s ease-out;
		transition: clip-path .25s ease-out,-webkit-clip-path .25s ease-out;
		-webkit-clip-path: inset(-1px);
		clip-path: inset(-1px);	
	}
	.portfolio-item .caption .caption-content {
		transition: opacity .25s;
		margin-left: 5rem;
		margin-right: 5rem;
		margin-bottom: 5rem;
	}	
	.portfolio-item img{transition:-webkit-clip-path .25s ease-out;transition:clip-path .25s ease-out;transition:clip-path .25s ease-out,-webkit-clip-path .25s ease-out;-webkit-clip-path:inset(-1px);clip-path:inset(-1px)}
	.portfolio-item:hover img{-webkit-clip-path:inset(2rem);clip-path:inset(2rem)}
	.portfolio-item:hover .caption{background-color:rgba(29,128,159,.9);-webkit-clip-path:inset(2rem);clip-path:inset(2rem)}
}
@media (max-width: 767px) {
.slick-prev { left: 10px; display: none !important; }
.slick-next { right: 20px; display: none !important; }
.slick-next:before, .slick-prev:before { font-size: 20px; } 
}

.icon-with-bg { background-repeat: no-repeat; background-size: cover; background-position:center center;}
.custom-light { background-color:var(--custom-light); color:var(--custom-light-color); }
.custom-light.feedback-obj { background-color:var(--custom-light-f) }
.custom-dark { background-color:var(--custom-dark); color:var(--custom-dark-text); }
.custom-primary { background-color:var(--custom-primary); color: var(--custom-secondary); font-weight:bold; }
.custom-primary .divider.light { border-color: var(--custom-secondary);}


.custom-dark .service-icon { color: var(--custom-dark); }
.custom-light .btn { background-color:var(--custom-light-btn-bg); color: var(--custom-light-btn); }
.custom-dark .btn { background-color:var(--custom-primary); color:var(--custom-dark-btn); font-weight: 700; }
.custom-primary .btn { background-color:var(--custom-secondary); color:var(--custom-primary) }
.custom-light a { color: var(--custom-light-a); }
.custom-dark a { color: var(--custom-dark-a); }
.custom-primary a { color: var(--custom-primary-a); }

.custom-article-list-element p { font-size: 14px; }
.custom-light .custom-article-list-element p { color: var(--custom-light-text); }

.custom-dark .custom-article-list-element p { color: var(--custom-dark); }
.custom-dark .custom-article-list-element, .custom-primary .custom-article-list-element { border: 0; }

.custom-dark .custom-article-list-element.mode1 p { color: var(--custom-dark-text); }

.custom-primary .custom-article-list-element h4 { color: var(--custom-primary); }
.custom-primary .custom-article-list-element p { color: var(--custom-primary-btn-bg); }

.custom-primary .custom-article-list-element.mode1 p { color: var(--custom-primary-text); }

.custom-dark .custom-article-list-element .btn { background-color: var(--custom-dark-btn); border-color: var(--custom-dark-btn); color: var(--custom-dark-btn-bg); }
.custom-dark .custom-article-list-element.mode1 .btn { background-color: var(--custom-dark-a); border-color: var(--custom-dark-a); color: var(--custom-dark-text); }

.custom-primary a:not(.btn) { text-decoration: underline; }
.custom-primary a.custom-last-articles:not(.btn) { text-decoration: none; }
.custom-light .btn:hover, .custom-light a:hover, .custom-dark .btn:hover, .custom-dark a:hover, .custom-primary .btn:hover, .custom-primary a:hover { opacity: 0.8; }

.custom-light .btn:hover, .custom-light .btn:active { background-color: var(--custom-light-btn-bg) !important; border-color: var(--custom-light-btn-bg) !important; }
.custom-dark .btn:hover, .custom-dark .btn:active { background-color: var(--custom-dark-btn-bg) !important; border-color: var(--custom-dark-btn-bg) !important; }
.custom-primary .btn:hover, .custom-primary .btn:active { color: var(--custom-primary-btn); background-color: var(--custom-secondary) !important; border-color: var(--custom-secondary) !important; }

.custom-dark .custom-article-list-element .btn:hover, .custom-dark .custom-article-list-element .btn:active { background-color: var(--custom-dark-btn) !important; border-color: var(--custom-dark-btn) !important; color: var(--custom-dark-btn-bg) !important;}
.custom-dark .custom-article-list-element.mode1 .btn:hover, .custom-dark .custom-article-list-element.mode1 .btn:active { background-color: var(--custom-dark-a) !important; border-color: var(--custom-dark-a) !important; color: var(--custom-dark-text) !important;}

.custom-article-image { width: 100%; height: 100%; background-repeat: no-repeat; background-size: cover; background-position: center center; min-height: 250px; }

.services-left span { font-size: 35px; }
.col-grid { display: inline-flex; }
.col-left { margin: 2px; margin-right: 20px; }
.col-left span { font-size: 35px; }
.section-obj { background-size: cover; background-position:center center; background-repeat:no-repeat; position:relative; }
.section-overlay { position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  /*background-image: linear-gradient(
360deg
, black -100%, transparent 100%);*/
  background-color: rgba(0,0,0,0.7);
}

.banner-obj .custom-light { background-color:var(--custom-light-banner); color:var(--custom-light-color); }

.block-column { 
  min-height: 200px;
}

.btn:focus { box-shadow: none; }

.block-square {
  position: relative;
  display: flex;
  overflow: hidden;
  min-height: 350px;
  margin-bottom: 45px;
  justify-content: center;
  align-items: center;
  border-radius: 5px;
  background-color: var(--custom-block-square);
}

.block-square-number {
  position: absolute;
  left: 10%;
  top: 10%;
  right: auto;
  bottom: auto;
  color: var(--custom-block-square-color);
  font-size: 40px;
  font-weight: 700;
}

.block-square-text {
  color: var(--custom-block-square-color);
  font-size: 40px;
  line-height: 1.2;
  font-weight: 700;
  text-align: center;
  text-transform: uppercase;
}

.block-square-image {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 25%;
  height: auto;
}

.block-square-icon {
  position: absolute;
  right: 10px;
  bottom: 5px;
  font-size: 45px; 
}

@media (max-width:420px) {
  .col-grid { display: block; text-align: center; }
}

.slick-prev:before { /*content: ""; font-size: 30px;*/ }
.slick-next:before { /*content: ""; font-size: 30px;*/ }

.partners-logo { padding: 15px; }
.partners-slider { padding-left:40px; padding-right: 40px; }
.partners-slider .slick-next:before, .partners-slider .slick-prev:before { color: var(--custom-slick); }
.partners-slider .slick-prev { left:10px }
.map { width:100%; text-align:center }

ul.maps-ul { padding: 0; margin: 0; list-style: none; }
.maps-ul li {
  width: calc(50% - 40px);
  margin: 20px;
  padding: 20px;  
  float: left;
  line-height: 19px;
}
.maps-ul li.full {
  width: calc(100% - 40px);
  margin: 20px;
  padding: 20px;  
  float: none;
  line-height: 19px;
}
.maps-ul li .address { margin-bottom: 12px; }
.maps-ul li span { float: left; position: relative; top: 0px; margin-right: 10px; font-size: 38px; }

.custom-light .maps-ul li { background-color: rgba(0,0,0,0.05); color: var(--custom-light-color) }
/*.custom-dark .maps-ul li { background-color: #000;  color: #FFF; }
.custom-primary .maps-ul li { background-color: #ed3128; color: #FFF; }*/

.showcase-img { background-size: cover; background-repeat: no-repeat; background-position: center center; }

.team-member-image {
  width: 9rem;
  height: 9rem;
  border-radius: 50%;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
}

.feedback-text { color:var(--custom-feedback) }
.custom-primary .feedback-text { color: var(--custom-primary-feedback);} 
.custom-primary .section-subheading { color: --custom-primary-subheading !important;}
.custom-primary.team-obj .text-muted { color: --custom-primary-team !important } 
.portfolio-image { width:100%; height:200px; background-size: cover; background-repeat:no-repeat; background-position:center center;  }
.custom-light.form-obj { background-color:var(--custom-light-f) }
.custom-light .wpcf7-not-valid-tip { color: var(--custom-cf7); font-size: 0.8em; padding-top: 3px;}
.custom-dark .wpcf7-not-valid-tip { color: var(--custom-cf7); font-size: 0.8em; padding-top: 3px;}
.custom-primary .wpcf7-not-valid-tip { color: var(--custom-primary-text); font-size: 0.8em; padding-top: 3px;}

.feedback-box { background-color: var(--custom-light-f); border-radius: 10px; padding: 20px; margin-bottom: 25px; }
.archivio-obj .team-member-image {
  width: 5rem;
  height: 5rem;
  float: left;
  margin-right: 20px !important;
}
.archivio-obj .feedback-text { font-size: 14px; }

.navbar-light .navbar-toggler { border: 0; }
.navbar-light .navbar-toggler:focus { outline: 0;}

.custom-single-course { 
  background-color: var(--custom-light-btn-bg); 
  padding: 12px; 
  color: var(--custom-light-btn-hover) !important; 
  font-weight: bold; 
  font-size:16px; 
  width: 100%; 
  display: block;
  border-radius: 5px;
  min-height: 60px;
  display: flex;
  align-items: center;
  padding-right: 20px;
  position: relative;
}
.custom-single-course svg {
  position: absolute;
  right: 10px;
  font-size: 22px;
}
.custom-single-course:hover { text-decoration: none; }

.so-widget-custom_theme_servizi .custom-primary a:not(.btn), .so-widget-custom_theme_banner .custom-primary a:not(.btn) { text-decoration: none; }
.so-widget-custom_theme_servizi a:hover, .so-widget-custom_theme_banner a:hover { text-decoration: none; }

@-webkit-keyframes fadeInUpSD {
  0% {
    opacity: 0;
    -webkit-transform: translateY(100px);
    transform: translateY(100px);
  }

  100% {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}

@keyframes fadeInUpSD {
  0% {
    opacity: 0;
    -webkit-transform: translateY(100px);
    transform: translateY(100px);
  }

  100% {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}

.fadeInUpSD {
  -webkit-animation-name: fadeInUpSD;
  animation-name: fadeInUpSD;
}

.custom-slider-item.slick-active h1 {
  animation-name: fadeInUpSD;
  animation-duration: 1s;
  opacity: 1;
}

.custom-slider-item.slick-active p {
  animation-name: fadeInUpSD;
  animation-duration: 1.5s;
  opacity: 1;
}

.custom-slider-item.slick-active a {
  animation-name: fadeInUpSD;
  animation-duration: 2s;
  opacity: 1;
}

.custom-slider header.masthead  {
  transition: all 1s cubic-bezier(0.7, 0, 0.3, 1);
  transform: scale(1.2);    
}

.custom-slider .slick-active header.masthead {
  transform: scale(1);
}

.logo-white { display: inline-block; }
.logo-dark { display: none; }
.navbar-scrolled .logo-dark { display: inline-block; }
.navbar-scrolled .logo-white { display: none; }

.banner-obj {
  min-height: 500px;
  display: flex;
  justify-content: center;
  flex-direction: column;  
}

.banner-obj a {
  background-color: transparent !important;
  color: var(--custom-light-btn);
  text-transform: uppercase;
  font-size: 24px;
  border: 1px solid;  
  border-radius: 0;
}

.banner-obj .custom-light .btn:hover, .banner-obj .custom-light .btn:active {
  background-color: transparent !important;
  border: 1px solid;  
  border-radius: 0;
}

.widget_custom_theme_contatti a { text-decoration: none !important;}
.wpcf7 .ajax-loader { display: block; }
/*#cookie-law-info-bar { bottom: 100px !important; }*/

.dropdown-item {
  color:var(--custom-navbar-navlink);  
}
.dropdown-item:focus, .dropdown-item:hover {
  color: var(--custom-navbar-navlink-hover);
  text-decoration: none;
  background-color: transparent;
}
.dropdown-flags .dropdown-item img { margin-right: 5px; }
.navbar-expand-lg .navbar-nav .dropdown-flags .dropdown-menu {
  background-color: #f6f2ed;
  font-size: 14px;
 }

 .slick-prev:before { content: "‹"; font-size: 60px; line-height: inherit; }
 [dir="rtl"] .slick-prev:before { content: "›"; font-size: 60px; line-height: inherit; } 
 .slick-next:before { content: "›"; font-size: 60px; line-height: inherit; }
 [dir="rtl"] .slick-next:before { content: "‹"; font-size: 60px; line-height: inherit; }

@media (min-width: 992px) {
 .hidden-desktop { display: none; }
 .dropdown-flags { line-height: 20px; }
}
@media (max-width: 992px) {
  .dropdown-flags .dropdown-menu { text-align: center; }
  .navbar-expand-lg .navbar-nav .dropdown-flags .dropdown-menu {
    border: 0;
   }
   .dropdown-flags span   { margin-left: 5px; }
}

.modal-content {
  background-color: #111111;
  border: 0;
  color: #d9d9d9;  
}

.modal-footer {
  flex-direction: column;
}

.wpcf7-spinner {
  height: auto;
}

.btn-submit {
  width: 100%;
  background-color: var(--custom-primary);
}

.btn-submit:hover {
  color: #FFF;
}

.font-normal { font-weight: 400; }
.font-500 { font-weight: 500; }
.green-bar { max-width: 400px; width: 100%; margin: 0 auto; height: 6px; background-color: #68BD42; }
.custom-primary .green-bar { background-color: #000; }
.services-section ul { padding: 0; margin: 0; list-style: none; display: flex; flex-direction: row; flex-wrap: wrap; }
.services-section ul li { display: inline-block; width: 25%; text-align: center; padding-left: 28px; padding-right: 28px; }
.service-content h4 { color: #68BD42; font-size: 22px; margin-bottom: 30px; }
.services-elements { margin-top: 30px; margin-bottom: 30px; }
.services-elements a { color: #FFF; }
.services-elements a:hover { color: #68BD42; }

.download-elements { margin: 0; padding: 0; list-style: none; }

.scarica-section .bg-image { position: absolute; bottom: -10px; left: 66.7%; width: 33.3%; height: 100%; text-align: right; overflow: hidden; }
.scarica-section .bg-image img { width: auto; height: 100%; }

.service-image { margin-bottom: 30px; }
.service-image img { max-width: 110px; }

.left-mode-image { width: 50%; text-align: left; padding: 15px; }
.left-mode-content { width: 50%; text-align: left; padding: 15px; }

.left-mode-image img { margin-right: 25px; width: 100%; }

.custom-flex { display: flex; flex-direction: row; justify-content: center; width: 100%; align-items: center; }
.section-right-mode .custom-flex, .section-right-mode-sign .custom-flex { flex-direction: row-reverse; }
.left-mode-content p { font-size: 35px; font-weight: 400; line-height: 41px; }

.section-right-mode-absolute { overflow: hidden ;}

.section-right-mode-absolute .left-mode-image {
  padding: 0;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  height: 100%;
  text-align: right;
  background-repeat: no-repeat; background-size: contain; background-position: top center;
}
.left-mode-image a:hover { opacity: 0.95; }
.section-right-mode-absolute .left-mode-image img {
  margin-right:0;
  width: auto; max-width:none;
  height: 100%;
}

.section-right-mode-absolute .left-mode-content {
  margin-left: 50%;
}

.section-right-mode-absolute .left-mode-content p {
  font-size: 24px;
  font-weight: 400;
  line-height: 26px;
}

.section-right-mode-sign h1 {
  color: #68bd42;
  font-size: 34px;
}
.section-right-mode-sign h1 div {
  font-size: 80px;
  display: inline-block;
  height: 30px;
  line-height: 30px;
  position: relative;
  top: 30px;
  left: -5px;
  padding-right: 10px
}

.section-right-mode-sign .left-mode-content p {
  font-size: 14px;
  font-weight: 400;
  line-height: 24px;
}

.section-right-mode-sign .green-bg {
  width: 100%;
  height: 100%;
  position: absolute;  
  background-repeat: no-repeat; background-size: cover; background-position: center center;
  z-index: -1;
  top: -35px;
  left: -50%;  
}

.green-image { background-color: rgb(104 189 66 / 60%); width: 100%; height: 100%; }

.section-right-mode-sign .left-mode-image { min-height: 640px; }

.section-left-mode-top { padding-top: 80px !important; }
.left-modo-logo { max-width: 250px; margin-bottom: -10px; }
.left-mode-title { color: #67bc41; font-size: 17px; }
.section-left-mode-top { overflow: hidden; }
.section-left-mode-top .left-mode-content p { font-size: 16px; line-height: 20px; }
.section-left-mode-top .green-bg {
  width: 100%;
  height: 100%;
  position: absolute;  
  top: -80px;
  right: -50%;
  background-color: #67bc41;
  min-height:590px;
  z-index: -1;
}

#mainNav { padding-top: 25px !important; border-bottom: 6px solid #67bb41; padding-bottom: 5px !important; }
.socials { height: 20px; }

.section-articles h1 { font-weight: 400; font-style: italic; }
.section-articles h1 span { color: #67bb41; display: block; font-size: 28px; }
.list-article { background-color: #FFF; margin-bottom: 30px; }
.list-article-image { 
  width: 212px;
  height: 212px;
  margin-top: 20px;
  padding-top: 30px;
  padding-left: 60px; background-repeat: no-repeat;
  position: relative;
  z-index: 1;
 }
.list-green {
  position: absolute;
  top: 0;
  height: 140px;
  background-color: #67bb41;
  width: calc(100% - 30px);
}
.list-kcal {
  width: 100%;
  text-align: right;
  padding: 10px;
  font-size: 13px;
  font-style: italic;
}
.list-article-image img {
  width: 100%;
  margin-left: -23px;
}

.list-article-body {
  color: #000;
  padding-left: 30px;
  padding-right: 30px;
  padding-top: 10px;
  padding-bottom: 30px;
  font-size: 16px;
  font-style: italic;
  font-weight: 500;
}
h4.list-article-category {
  font-size: 17px;
  margin-bottom: 0px;
}

.list-article-price {
  text-align: right;
  font-style: normal !important;
  margin-top: 10px;
  font-weight: bold;
  color: var(--custom-primary);  
}

@media (max-width:1200px) {
  .section-right-mode-absolute .left-mode-image {
    left: -50%;
    width:100%;
  }
}

@media (max-width:1024px) {
  .services-section ul li {
    width: 50%;
    padding-bottom: 50px;
  }  
}

@media (max-width: 992px) {
 .left-modo-logo { margin-bottom: -5px; }
 .section-right-mode-sign .left-mode-image { min-height: 0; }
 .custom-flex, .section-right-mode .custom-flex, .section-right-mode-sign .custom-flex { flex-direction: column-reverse;  }
 .left-mode-content { text-align:center; padding:20px; padding-left: 12px; padding-right: 12px; width: 100%;  }

 .scarica-section .bg-image { left: 75%; width: 25%; }

 .maps-ul li {
    width: 100%;
    float: none;
    margin: 0;
    margin-bottom: 20px;
    margin-top: 20px;
 }
 .single-slider, .custom-slider { margin-top: 65px; }
 .logo-white { display: none; }
 .logo-dark { display: inline-block; }
 .navbar-scrolled .logo-dark { display: inline-block; }
 .navbar-scrolled .logo-white { display: none; } 
 header.masthead { 
  min-height: calc(100vh - 210px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;   
  }  
  header.masthead {
    padding-top: 0;
    padding-bottom: 0;
  }

  .section-right-mode-absolute .left-mode-content {
    margin-left: 40%;
    width: 60%;
    text-align: left;
    padding: 0;
  }
  .section-right-mode-sign .green-bg {
    width: 140%;
    height: 100%;
    position: absolute;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
    z-index: -1;
    top: 0;
    left: -20%;
  }
  .section-right-mode-sign { overflow: hidden; }
  .section-right-mode-sign .left-mode-image { width: 100%; }
  .green-image { background-color: rgb(104 189 66 / 85%); }

  .left-modo-logo {
    max-width: 100%;
    width: 100%;
    text-align: center;
  }
  .left-modo-logo img { max-width: 250px; }
  .section-left-mode-top .green-bg {
    width: 140%;
    height: calc(100% + 25px);
    position: absolute;
    top: -20px;
    right: auto;
    background-color: #67bc41;
    min-height: 0;
    z-index: -1;
    left: -20%;
  }
  #mainNav {
    padding-top: 5px !important;
    border-bottom: 2px solid #67bb41;
    padding-bottom: 5px !important;
  }
  .left-mode-image {  width: 100%; }
}

@media (max-width:767px) {
  .page-section {
    padding: 0;
    padding-top: 30px;
    padding-bottom: 30px;
  }
  .scarica-section .bg-image {
    bottom: -30%;
  }  
  .scarica-section .bg-image img {
    width: auto;
    height: 70%;
  }
  .left-mode-image {
    width: 100%;
  }
  footer ul { margin-bottom: 0 !important; }
  footer .my-md-0:nth-child(3) h5 { display: none; }
  footer .my-md-0 { margin-bottom: 0 !important; }
  footer .my-md-0:first-child { margin-bottom: 1rem !important; }

  .section-right-mode-absolute .left-mode-image {
    position: relative;
    text-align: center;
    width: 100%;
    left: 0;
    top: -50px;
  }
  .section-right-mode-absolute .left-mode-image img {
    margin-right: 0;
    width: 100%;
    max-width: 100%;
    height: auto;
  }
  .section-right-mode-absolute .left-mode-content {
    margin-left: 0;
    width: 100%;
    text-align: center;
    padding: 0;
    padding-left: 12px;
    padding-right: 12px;    
  }  
}

@media (max-width:478px) {
  .services-section ul li {
    width: 100%;
  }  
  .scarica-section .bg-image {
    left: 0;
    width: 100%;
    position: initial;  
  }
  .scarica-section .bg-image img {
    width: 100%;
    max-width: 320px;
    margin: 0 auto;     
    height: auto;
  }
  .service-image {
    margin-bottom: 10px;
  }
  .left-mode-content p {
    font-size: 26px;    
    line-height: 32px;
  }
  .section-obj {
    padding-top: 35px !important;
    padding-bottom: 35px !important;
  }  
  .scarica-section { padding-bottom:0 !important } 
  .section-right-mode-sign .left-mode-content { text-align: left; }
  .section-right-mode-sign .left-mode-content h1 br, .section-right-mode-sign .left-mode-content h1 br:after{content:' '}
  .section-right-mode-sign .left-mode-content h1 div { display: none; }
  .section-left-mode-top { padding-top: 60px !important; }
}