/*
Theme Name:     Pollution 2023
Description:    child theme di Adamo
Author:         Alessio De Mauri
Template:       adamo
Text Domain:    pollution
*/

@import url(ui/css/typography.css);
@import url(ui/css/global.css);
@import url(ui/css/header.css);
@import url(ui/css/footer.css);
@import url(ui/css/slick.css);
@import url(ui/css/form.css);
@import url(ui/css/chi-siamo.css);
@import url(ui/css/pagination.css);

/* Color system */
:root {
  
  font-size: 16px;
  
  --blue: #004c97;
  --blue-light: #62b5e5;
  --orange-pollution: #ce7e00;
  --yellow-pollution: #ffd618;
  --red-pollution: #ea5b0c;
  --green-pollution: #6cbe99;
  --green-application: #6eb759;
  --green-bg-slider-dark: #449B23;
  --green-bg-slider-light: #91B508;
  
  --white: #ffffff;
  --gray-100: #faf8f8;
  --gray-200: #f5f4f4;
  --gray-300: #dee2e6;
  --gray-400: #ced4da;
  --gray-500: #adb5bd;
  --gray-600: #707070; /* Body color */
  --gray-700: #495057;
  --gray-800: #343a40;
  --gray-900: #212529;
  --black: #000;
  --blue-gradient: linear-gradient(#64b2ff,#004c97);
  --blue-gradient-inverse: linear-gradient(#004c97, #64b2ff);
  --link-decoration: none;

  // Shadow
    
  --box-shadow: 0 0.5rem 1rem rgba(--black, 0.15);
    
  // Dropdown
    
  --dropdown-padding-y: 1rem;
  --dropdown-padding-x: 0;
  --dropdown-color: --secondary;
  --dropdown-link-hover-color: --black !important;
  --dropdown-item-padding-y: 0.5rem;    
}

@media (min-width: 576px) {
  .container {
    max-width: 540px;
  }
}

@media (min-width: 768px) {
  .container {
    max-width: 720px;
  }
}

@media (min-width: 992px) {
  .container {
    max-width: 960px;
  }
}

@media (min-width: 1200px) {
  .container {
    max-width: 1140px;
  }
}
@media (min-width: 1400px){
  .container {
    max-width: 1320px;
  }
}



