@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-theme-color: #fae169;
  --custom-theme-color-hover: #fff1ab;
  --custom-theme-text: #000;

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

  --custom-navbar-bg: #FFF;
  --custom-navbar-navlink: #474747;
  --custom-navbar-navlink-hover: #111;
  --custom-navbar-social: #474747;
  --custom-navbar-social-hover: #111;

  --custom-primary: #FFF;
  --custom-primary-o: rgba(255, 255, 255, 0.5);  
  --custom-primary-text: #222;
  --custom-primary-link: #000;

  --custom-primary-btn-bg: #212121;
  --custom-primary-btn: #FFF;
  --custom-primary-btn-hover: #FFF;
  --custom-primary-a: #FFF;

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

  --custom-dark-btn-bg: #111;
  --custom-dark-btn: #FFF;
  --custom-dark-btn-hover: #212121;
  --custom-dark-a: #111;

  --custom-navbar-brand-o: rgba(255, 255, 255, 0.7);
  --custom-navbar-brand: #212529;
  --custom-navbar-brand-hover: #fff;
  
  --custom-footer: #e7e7e7;
  --custom-footer-text: #000;
  --custom-footer-link: #000;

  --custom-main-font: 'Nunito', serif;
  --custom-title-font: 'Ubuntu Condensed', serif; /*'Boogaloo';*/

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

  --custom-search-modal: #fff;

  --custom-feedback: #212529;
  --custom-primary-feedback: #EEE;
  --custom-primary-subheading: #CCC;
  --custom-primary-team: #EEE;
  --custom-cf7: #dc3232;
  --custom-slick: #BBB;
  --custom-slider-bg: #212121;

  --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-primary-text);
  text-align: left;
  background-color: var(--custom-body-bg);
  font-family: var(--custom-main-font), serif;
}

.main-gradient {
  background-image: linear-gradient(88deg, #e02a2c -75%, #fae36e, #b6c862 120%);  
}

/* */
.frame {
  position: absolute;
  inset: 0;
  width: calc(100% - 8px);
  margin: 4px;
  height: calc(100% - 8px);
  pointer-events: none;
}

.frame-1 {
  border: 4px solid #ff4d6d;
  padding: 8px;
  margin: 16px;
  width: calc(100% - 32px);
  height: calc(100% - 32px);  
}

.frame-2 {
  border: 3px solid #69db7c;
  padding: 8px;
}

.frame-3 {
  border: 2px solid #4dabf7;
  padding: 60px 40px;
}
/* */

h2 span {
  color: var(--custom-primary);
  font-size: smaller;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--custom-title-font), serif;
}

h2 {
  font-size: 3rem;
}

@-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;
}

.card { border-radius: 0; }
.btn { border-radius: 0; }

.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; }

.card-image-search { border-bottom:1px solid #efefef }
a { color: var(--custom-primary-text); }
p a, li a:not(.nav-link) { text-decoration: underline; }
a:hover { color: #333; }


.bg-primary { background-color: var(--custom-primary) !important; }

.btn-primary { color: var(--custom-theme-text); background-color: var(--custom-theme-color); border-color: var(--custom-theme-color); font-family: var(--custom-title-font), serif; font-size: 1.2rem; border: 1px solid var(--custom-theme-color); text-decoration: none; }
.btn-primary:hover, .btn-primary:active, .btn-primary:not(:disabled):not(.disabled).active, .btn-primary:not(:disabled):not(.disabled):active { color: var(--custom-theme-text); background-color: var(--custom-theme-color-hover); border-color: var(--custom-theme-color-hover); }
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; }

.btn-secondary {
    background-color: #fffbe9 !important;
}
.btn-secondary:hover {
    background-color: #fff !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%;
}

.topmenu-container { display: none; }

h1.custom-main-title {
  padding: 0 30px;
  display: inline-block;
}

h1, h2, h3, h4, h5, h6 { text-transform: none }

.custom-last-articles a:hover { text-decoration: none; }

@media (min-width:992px) { 
  .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: 12px; }  
  .topmenu-container ul.justify-content-end li { padding-left: 12px; }  
  .topmenu-container ul li { font-size: 12px; }
  .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: 20px;*/}
  #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: 28px;
  margin-top: 0;
 }
 .navbar-expand-lg .navbar-nav .dropdown-menu .dropdown-menu {
  top: 25px;
  left: 15px;
  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;  
 }
}

.topmenu-container.custom-primary {
  background-color: #000;
  background-image: linear-gradient(45deg, black 70%, #FFF);  
}
li:hover > ul.dropdown-menu, li:focus > ul.dropdown-menu { display: block; }

@media (max-width:991px) {
  .navbar-brand { margin-left: .4rem; margin-right: .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 { background-position:center center; background-repeat:no-repeat; background-size:cover }
.card-image { width:100%; height:350px; background-position:center center; background-repeat:no-repeat; background-size:contain }
.card { border: 0; text-align: center;     border-bottom-left-radius: 12px; }
.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:160px; height:auto; max-width:100%; padding-top: 8px; padding-bottom: 8px; }
footer img { max-width: 180px; }

.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);
}

.masthead hr.divider {
  width: 3.25rem;
  border-width: 0.2rem;
  border-color: var(--custom-primary);
  display: inline-block;
}

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

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

.btn {  
  padding: 12px 24px;
  border: none;  
  border-radius: 12px;
  letter-spacing: 0.5px;
}

.page-section {
  padding: 6rem 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;
  font-size: 14px;
  letter-spacing: 1px;
  text-transform: none;
  font-family: var(--custom-title-font), sans-serif;
  font-size: 1.3rem;  
  position: relative;
}
#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-nav .menu-item .nav-link::after {
  content: "";
  position: absolute;
  left: 1rem;
  bottom: 0;
  height: 2px;
  width: calc(100% - 2rem);
  background: var(--custom-theme-color-hover);
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform .25s ease;
}
#mainNav .navbar-nav .menu-item .nav-link:hover::after,
#mainNav .navbar-nav .menu-item .nav-link:focus::after,
#mainNav .navbar-nav .menu-item .nav-link.active::after {
  transform: scaleX(1);
}
#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: #000 !important; }
.navbar-light .navbar-nav .nav-link {  }
#mainNav .socials a:hover { color: var(--custom-primary); }

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

.custom-topbar { padding: 4px; font-size: 13px; width: 100%; display: block; color:var(--custom-theme-text); background-image: linear-gradient(88deg, #e02a2c -75%, #fae36e, #b6c862 120%);
}
.custom-topbar p { margin-bottom: 0 ;}
.custom-topbar2 { box-shadow: 0 0.5rem 1rem rgb(0 0 0 / 15%); z-index: 0; position: relative; }

.btn-primary.focus, .btn-primary:focus { box-shadow: none; }
section.related.products {
  width: 100%;
  display: inline-block;
}
.products-loop {
  width: 100%;
  display: inline-block;
}
@media (max-width:1200px) {
  /*.back-menu { height:100px }*/
}
@media (max-width: 992px) {
  #mainNav .navbar-nav .nav-item .nav-link {  }
  .hidden-mobile { display:none }
  .back-menu { height: 110px; }  
  #mainNav { 
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
 
   }
  .navbar-toggler { padding: 0; margin-right: 15px; }
  .navbar-brand { padding-top: 0; padding-bottom: 0; }
  .navbar-brand img { width: 125px; }

  .custom-evidence-image { float:none; width: 100%; margin-bottom: 0px; height: 200px; }
  .custom-evidence-left { width: 100%; float: none; }  

}
@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.6rem 1rem;
  }  
  #mainNav .navbar-nav .nav-item .nav-link, #mainNav .navbar-text a {
    color: var(--custom-navbar-brand-o);
  }
  #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-nav .menu-search-item .nav-link {
    padding-left: 8px;
  } 
  #mainNav.navbar-scrolled {
    box-shadow: 0 0.1rem 1rem rgba(0, 0, 0, 0.15);
    background-color: #FFF;
  }
  #mainNav.navbar-scrolled .navbar-brand {
    color: var(--custom-navbar-brand);
  }
  #mainNav.navbar-scrolled .navbar-brand:hover {
    color: var(--custom-primary);
  }
  #mainNav.navbar-scrolled .navbar-nav .nav-item .nav-link, #mainNav.navbar-scrolled .navbar-text a {
    color: var(--custom-navbar-navlink);
    line-height: 18px;    
    white-space: nowrap;
    text-shadow: 2px 2px 4px #FFFFFF11;
    transition: text-shadow 0.2s ease;
  }
  #mainNav.navbar-scrolled .navbar-nav .nav-item .nav-link:hover, #mainNav.navbar-scrolled .navbar-text a:hover {
    text-shadow: 2px 2px 4px #f9e070;
  }
  #mainNav .navbar-nav .nav-item .nav-link.navbar-btn { font-size: 16px;}
}

header.masthead {
  padding-top: 10rem;
  padding-bottom: calc(10rem - 4.5rem);
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: scroll;
  background-size: cover;
  position:relative;
}
header.masthead .container { padding-right: 65px; }
@media (max-width:1100px) {
  header.masthead .container { padding-right: 40px; }
}
header.masthead h1 {
  font-size: 3rem;
  /*text-shadow: 2px 4px 4px rgba(0,0,0,0.1); */
  font-weight: 100 !important; 
  /*color: #8e8e8e !important;*/
}
@media (min-width: 992px) {
  header.masthead p {
    font-size: 1.15rem;
    /*color:#525252;*/ font-weight:bold;
  }
  header.masthead h1 {
    font-size: 3rem;
  }
  input.form-control { min-height: 60px;}
  .navbar-form input.form-control { min-height: 30px; } 
}

.custom-slider header.masthead, .single-slider header.masthead  {
  min-height: calc(75vh - 138px);
  padding-top: 2rem;
  padding-bottom: 2rem;
  display: flex;
  align-items: center;    
}

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

@media (min-width: 1200px) {
  header.masthead h1 {
    font-size: 3.5rem;
  }
}
@media (max-width: 500px) {
  header.masthead h1 {
      font-size: 2.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: 2rem;
    text-align: left;
}
.team-member img {
  width: 14rem;
  height: 14rem;
  border: 0.5rem solid rgba(0, 0, 0, 0.1);
}

h4.feedback-stars {
  color: #185511;
  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: 0.2rem;
    margin-bottom: 0;
}

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

.team-member-social {
    margin-top: 1rem;
    display: flex;
    align-items: center;
    justify-content: start;
    gap: 8px;
}

.woocommerce .quantity .qty {
    border-radius: 12px;
    height: 54px;
}

.team-member-social .btn-social {
    color: var(--custom-theme-text);
    background-color: var(--custom-theme-color);
    width: 2.5rem;
    height: 2.5rem;
    font-size: 1.2rem;
    text-align: center;
    line-height: 2.5rem;
    border-radius: 50%;
    border: 1px solid transparent;
}
.team-member-social .btn-social:hover {
    color: var(--custom-theme-text);
    background-color: var(--custom-theme-color-hover);
    border-color: var(--custom-theme-color);
}
.team-member-social .btn-social i {
    position: relative;
    left: 1px;
}
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;*/
    background-image: linear-gradient(88deg, #e02a2c -75%, #fae36e, #b6c862 120%);
}

footer.footer { color: var(--custom-footer-text); }
footer.footer .list-unstyled li a { font-size: 14px; color: #FFF; }


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;        
    color: #3d3d3d;
    box-shadow: 0 3px 3px 0 rgba(0,0,0,.1);
    background-color: #fff;
}

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

.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: 15px;
    display: none;
    width: 50px;
    height: 50px;
    text-align: center;
    color: var(--custom-scroll-to-top-text);
    background: var(--custom-scroll-to-top);
    line-height: 50px;
    font-size:13px
}

.service-icon {
    display: block;
    font-size: 2.25rem;
}

.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: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 9999;
  background-color: var(--custom-body-bg);
  display: flex;
  align-items: center;
  justify-content: center;
}
.preloader-inner {
  text-align: center;
}
.preloader-inner img {
  max-width: 220px;
  height: auto;
  display: block;
  margin: 0 auto 12px;
}
.preloader-text {
  font-family: var(--custom-title-font), serif;
  font-size: 1.2rem;
  color: var(--custom-primary-text);
  letter-spacing: .06em;
  animation: loadingPulse 1.2s ease-in-out infinite;
}
@keyframes loadingPulse {
  0% { opacity: .3 }
  50% { opacity: 1 }
  100% { opacity: .3 }
}

@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; }
.slick-next { right: 10px; }
.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-primary-text); }

.custom-dark .service-icon { color: var(--custom-dark); }

.custom-dark a { color: var(--custom-dark-a); }
.custom-primary a { color: var(--custom-theme-text); text-decoration: underline; }
.custom-primary .btn, .custom-dark .btn, .btn-primary:not(:disabled):not(.disabled).active, .btn-primary:not(:disabled):not(.disabled):active { background-color:var(--custom-theme-color); color:var(--custom-theme-text); font-family: var(--custom-title-font); font-size: 1.2rem; border: 1px solid var(--custom-theme-color); text-decoration: none; }

.custom-primary .custom-contact a, .custom-dark .custom-contact a { text-decoration: none !important; padding-top: 30px; padding-bottom: 30px; }
.custom-primary .custom-contact i, .custom-dark .custom-contact i { font-size: 2.25rem; }


.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-primary a.stretched-link {
    text-decoration: none;
}

.custom-dark .btn:hover, .custom-dark .btn:active, .custom-primary .btn:hover, .custom-primary .btn:active { background-color: var(--custom-theme-color-hover); color: var(--custom-theme-text); border: 1px solid var(--custom-theme-color); }

.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; }

.skip-link {
  position: absolute;
  top: -40px;
  left: 0;
  background: #000;
  color: #fff;
  padding: 8px 12px;
  z-index: 1000;
}
.skip-link:focus {
  top: 0;
}
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}
.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(
90deg
, black -100%, transparent 100%);
  /*background-color: rgba(0,0,0,0.4);*/
}

.masthead-gradient-overlay {
  background-image: linear-gradient(to bottom, rgba(92, 77, 66, 0.8) 0%, rgba(92, 77, 66, 0.8) 100%);
}

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

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

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

.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: 24px;
  line-height: 1.2;
  font-weight: 500;
  text-align: center;
  text-shadow: 2px 2px 4px rgba(0,0,0,0.5)
}

.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 .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; border-radius: 12px;  }
.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;}

.img-rounded {
    border-radius: 12px;
}

.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-light .custom-contact {
  padding: 20px;
  margin: 20px;
  background-color: #f8f9fa;
  width: 100%;
  border-radius: 6px;  
}

.custom-light .custom-contact span { display:block; font-weight: bold;}

.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; }

#accordion .card { margin-bottom: 10px;}
#accordion .card h5 button { width: 100%; text-align: left; font-weight:bold }
#accordion .btn-link { color: var(--custom-dark-a); }
#accordion .btn-link:hover { text-decoration: none; color: var(--custom-primary-btn-bg);}

.custom-contact a:hover { text-decoration: none; }

.single-slider header.masthead {
  padding-top: 10rem;
  padding-bottom: 10rem; 
  height: auto;
  min-height: auto;
  background-position: center bottom;
}
.single-slider .section-overlay { background-color: none; }
.single-slider {

}

.custom-light .btn.btn-type-2 { background-color: var(--custom-primary-hover); }

.slick-prev, .slick-next { z-index:100 }
.slick-next:before, .slick-prev:before { font-size: 30px; }
.slick-arrow { font-size: 24px; color: #DDD; height: 40px; top: calc(50% - 5px); }
.slick-next:focus, .slick-next:hover, .slick-prev:focus, .slick-prev:hover { color: #EEE; }
.slick-next:before, .slick-prev:before { content:''; }        

section.custom-partners {
  padding-top: 6rem;
  padding-bottom: 6rem;
}

.partners {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
}

.partners-element {
  width: 190px; margin-bottom: 20px;
}

.custom-article-list-element {
  height: calc(100% - 30px);
}
.custom-article-list-element .card-body h4 {
  color: #000;
  font-size: 16px;
  line-height: 24px;
}
.card-price {
  font-size: 16px;
}

.woocommerce ul.products li.product .woocommerce-loop-product__title {
  color: #000;
  font-size: 22px;
  line-height: 24px;
  min-height: 58px;
  padding: 0 12px;
}

.woocommerce ul.products li.product .price {
  text-align: right;
  color: var(--custom-primary);
  padding: 0 12px;  
}

.woocommerce ul.products li.product .button { margin: 0; margin-bottom: 12px; margin-left: 12px; }

.woocommerce ul.products li.product, .woocommerce-page ul.products li.product {
  border: 1px solid rgba(0,0,0,.125);
  border-radius: 0.25rem;
  word-wrap: break-word;
  background-color: #fff;
  background-clip: border-box;    
}

div#tab-description {
  margin-bottom: 50px;
}
.tagged_as { display: none; }
.custom-price-label { font-size: 16px; }
select#product_tag {
  margin-left: 24px;
}

.dropdown-menu {
  min-width: 13rem;
}

li.nav-item.cart-custom-menu a {
    padding-right: 8px !important;
}

@media (max-width: 992px) {
 .maps-ul li {
    width: 100%;
    float: none;
    margin: 0;
    margin-bottom: 20px;
    margin-top: 20px;
 }
 #mainNav .navbar-nav .nav-item .nav-link {
  padding-top: 4px;
  padding-bottom: 4px;
 }
 /*.navbar-collapse {
  overflow-y: scroll;
  height: calc(100vh - 100px);
 }*/
 .custom-light .custom-contact {
  margin: 0px;
} 

}

/* Woocommerce */

/*.woocommerce #respond input#submit.alt, .woocommerce a.button.alt, .woocommerce button.button.alt, .woocommerce input.button.alt {
  background-color: var(--custom-primary) !important;
}*/

/*
.woocommerce a.button.add_to_cart_button { background-color: var(--custom-primary); color: var(--custom-primary-a); }
.woocommerce a.button.add_to_cart_button:hover { opacity: 0.9;}
.woocommerce .single_add_to_cart_button.button.button.alt:hover { background-color: var(--custom-primary); color: var(--custom-primary-a); opacity: 0.9; }
*/
.woocommerce table.cart td.actions .input-text { width:160px }
.woocommerce .posted_in { display:none }
.woocommerce div.product p.price, .woocommerce div.product span.price { color: #212121; font-size: 30px; font-weight: bold; font-family: var(--custom-main-font); }

.woocommerce-checkout-review-order-table span.woocommerce-Price-currencySymbol { font-size: initial; }
.woocommerce .col-1, .woocommerce .col-2 { flex: none; max-width: 100%; padding: 0; margin-bottom: 30px; }
.woocommerce-input-wrapper { display: block; width: 100%;  }
.select2-container--default .select2-selection--single { height: 36px; line-height: 36px; }
#billing_postcode { width: 130px; }

.cart-custom-menu a {
  font-size: 26px !important;
  position: relative;
  top: -4px;
  display: block;
}
.badge-warning {
    background-color: #fae169;
}
.cart-custom-menu .badge {
  position: absolute;
  font-size: 15px;
  line-height: 11px;
  left: 28px;
  top: 2px;
  width: 19px;
  height: 19px;
  border-radius: 50%;  
}  

.cart-custom-menu-mobile { display:none }  

.woocommerce-info {
  border-top-color: var(--custom-primary);
}

.woocommerce-info::before {
  color: var(--custom-primary);
}

.custom-article-price {
  color: #212121;
  font-weight: 700;
  font-size: 30px;
  text-align: right;
  font-family: var(--custom-main-font);  
}

.woocommerce-terms-and-conditions-wrapper { display: none !important; }

p#privacy_policy_field { display: block; width: 100%; }
p#conditions_field { display: block; width: 100%; }


select {
  background-color: var(--custom-primary);
  padding: 4px 8px;
  border-radius: 12px;

}

li.menu-item a {
  font-size: 14px;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 0 1rem;
  color: var(--custom-navbar-navlink);
  line-height: 18px;
  padding-bottom: 10px !important;
}

button.wc-forward {
  border-radius: 12px;
  font-family: var(--custom-title-font), serif;
  font-size: 1.2rem;
}

.wc-block-components-button {
  border-radius: 12px;
}

.wc-block-cart__submit-button, .wc-block-components-checkout-place-order-button {
  border-radius: 12px;
  font-family: var(--custom-title-font), serif;
  font-size: 1.5rem;
  background-color: var(--custom-theme-color);
  color: var(--custom-theme-text);
  border: 1px solid var(--custom-theme-color); text-decoration: none;  
}

.wc-block-cart__submit-button:hover, .wc-block-cart__submit-button:active, .wc-block-cart__submit-button:focus,
.wc-block-components-checkout-place-order-button:hover, .wc-block-components-checkout-place-order-button:active, .wc-block-components-checkout-place-order-button:focus {
  background-color: var(--custom-theme-color-hover);
  color: var(--custom-theme-text-hover);
  border: 1px solid var(--custom-theme-color);
  text-decoration: none;
}

body:not(.woocommerce-block-theme-has-button-styles) .wc-block-components-button:not(.is-link):focus {
  box-shadow: inset 0 0 0 1px #fff, 0 0 0 2px var(--custom-theme-color);
}

.wc-block-components-product-name {
  font-weight: 600;
}

.wp-block-woocommerce-checkout-additional-information-block h2, 
.wp-block-woocommerce-checkout-additional-information-block .wc-block-components-checkout-step__heading-container { display: none; }
.wc-block-checkout__terms.wc-block-checkout__terms--with-separator.wp-block-woocommerce-checkout-terms-block {
    margin-bottom: 0;
}
.wp-block-woocommerce-checkout-terms-block a {
    text-decoration: underline; font-style: italic;
}

@media (min-width:992px) {
  .woocommerce .input-text,  .woocommerce .input-text:focus-visible { min-height: 36px; border: 1px solid #ccc; border-radius: 4px; outline: 0; }
}

.img-fluid.img-responsive {
  width: 100%;
}

footer ul.list-unstyled { display: flex; flex-wrap: wrap; }
footer ul.list-unstyled li {
  width: 50%;
}
.wpcf7-spinner {
  margin: 8px auto;
  display: block;
}

.masthead {
  position: relative;
  overflow: hidden;
}

.masthead.masthead-decoration {
  background-image: url('https://www.matildaeditrice.com/wp-content/uploads/2026/02/bg_003.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.masthead.masthead-decoration .main-gradient {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0.75;
}

#myVideo {
  position: absolute;
  right: 0;
  bottom: 0;
  min-width: 100%;
  min-height: 100%;
}

.wp-block-button .wp-block-button__link {
  font-family: var(--custom-title-font), serif;
  font-size: 1rem !important;
  padding: 12px 24px;
  border: none;
  border-radius: 12px;
  letter-spacing: 0.5px;  
  color: var(--custom-theme-text);
  background-color: var(--custom-theme-color);  
  text-decoration: none;  
}
.wc-block-grid__product-price .custom-price-label { display: none; }
.wc-block-grid__product-link .wc-block-grid__product-title { text-decoration: none; font-family: var(--custom-title-font), serif;
    font-size: 1.6rem;
    font-weight: 500;
}
.wc-block-grid__product-price .woocommerce-Price-amount { font-size: 1.2rem; }
.wc-block-grid__product a.wc-block-grid__product-link { text-decoration: none; }

@media (max-width:992px) {
  .relative { position: relative; }
  .cart-custom-menu { display: none; }
  .cart-custom-menu-mobile { display: block; position: absolute; right: 65px; top: 22px; }
  .cart-custom-menu-mobile a { font-size: 30px; position: relative; display: block; }  
    .cart-custom-menu-mobile .badge {
      position: absolute;
      font-size: 13px;
      line-height: 11px;
      top: 8px;
      left: 20px;
      width: 19px;
      height: 19px;
      border-radius: 50%;  
    }    
    .showcase .showcase-img {
      min-height: 18rem;
    }    
    section.custom-contact {
      margin-bottom: 30px;
    }    
}

@media (max-width:767px) {
  .custom-article-list-element .card-body h4 {
    min-height: auto;
  }
  p.woocommerce-result-count {
    display: block;
    float: none !important;
  }  
  select#product_tag {
    margin-left:0px;
    margin-bottom: 24px
  }  
}

@media (max-width:600px) {
  header.masthead {
    padding-left:30px; padding-right: 30px;
    padding-top:3rem; padding-bottom: 3rem;
    min-height: 70vh;
  }
  .content-section {
    padding-top: 4rem;
    padding-bottom: 4rem;
  }  
  .woocommerce ul.products[class*=columns-] li.product, .woocommerce-page ul.products[class*=columns-] li.product {
    width: 100%;
    float: none;
  }  
}

@media (max-width:480px) {
  .lead { font-size: 1rem; }
  .single-slider header.masthead {
    padding-top: 6rem;
    padding-bottom: 6rem; 
  }  
}
