/*------------------------------------------------------------------
Project:  ComingSoon (Light Utility)
Autore:   Giorgio Zanetti
-------------------------------------------------------------------*/

/*=== RESET ===*/
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html, body {
  background-color: #fff !important;
  color: #000 !important;
  font-family: "Poppins", sans-serif;
  line-height: 1.6;
}

/*=== STRUTTURA ===*/
.flex-w { display: flex; flex-wrap: wrap; }
.flex-c-m { display: flex; justify-content: center; align-items: center; }
.flex-col-c-m { display: flex; flex-direction: column; justify-content: center; align-items: center; }

.size1, .size2, .size3 { display: flex; background: #fff !important; }

/*=== TESTI ===*/
h1, h2, h3, h4, h5, h6 { color: #000 !important; }
p, span, li { color: #000 !important; }
a { color: #0044cc !important; }
a:hover { color: #000 !important; }

/*=== COUNTDOWN CERCHI ===*/
.bor2 {
  border: 2px solid rgba(0, 0, 0, 0.4) !important;
  border-radius: 50%;
  width: 130px;
  height: 130px;
  display: flex;
  justify-content: center;
  align-items: center;
  background: #fff !important;
}

.cd100 .flex-col-c-m {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  background: #fff !important;
}

.cd100 .l2-txt1 {
  font-family: "Lato", sans-serif;
  font-size: 44px;
  color: #000 !important;
  font-weight: 700;
  background: #fff !important;
}

.cd100 .s2-txt4 {
  font-family: "Lato", sans-serif;
  font-size: 13px;
  color: #000 !important;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-top: 6px;
  background: #fff !important;
}

/*=== SFONDI ===*/
.bg0, .bg-img1, .overlay1, .overlay2, .where1, .where2 {
  background-color: #fff !important;
  background-image: none !important;
}

/*=== OVERLAY FIX ===*/
.overlay1::before, .overlay1::after,
.overlay2::before, .overlay2::after {
  content: none !important;
  background: none !important;
}

/*=== RESPONSIVE ===*/
@media (max-width: 992px) {
  .size1 { flex-direction: column; }
  .size2, .size3 { width: 100%; }
}


