@font-face {
    font-family: Poppins;
    src: url(../Poppins/Poppins-SemiBold.ttf);
 }
 
 * {
    font-family: 'Poppins';
 }

.bg-color {
    background-color: #f8f9fa;
    /* background-image: url(../images/bg-photo2.jpeg); */
    /* background-repeat:no-repeat;
    background-size:auto;
    background-position:left; */
}

.text-gradient {
    background: #CF4A11;
    background: -webkit-linear-gradient(to right, #CF4A11 0%, #753849 50%, #403E39 100%);
    background: -moz-linear-gradient(to right, #CF4A11 0%, #753849 50%, #403E39 100%);
    background: linear-gradient(to right, #CF4A11 0%, #753849 50%, #403E39 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.text-color {
    color: #562125;
}

.mt-20 {
    margin-top: 145px;
}

@media (max-width: 576px) { 
  .size-img {
    background-color: #dc3545;
    border-radius: 10px;
    margin-right: 50px;
    margin-left: 50px;
    width: 220px;
    height: 90px;
  }
}

/* contdown */

.container h2 {
  text-align: center;
  font-size: 10em;
  font-weight: 600;
  line-height: 0.7em;
  color: #f8f8f8;
  margin-top: -80px;
}

.container h2 span {
  display: block;
  font-weight: 300;
  letter-spacing: 6px;
  font-size: 0.2em;
  color: #fff;
}

.countdown {
  display: flex;
  margin-top: 50px;
}

.countdown div {
  border-top-left-radius: 8px;
  border-top-right-radius: 8px;
  position: relative;
  width: 100px;
  height: 100px;
  line-height: 100px;
  /* text-align: center; */
  background: #240c0c;
  color: #fff;
  margin: 0 15px;
  font-size: 3em;
  /* font-weight: 500; */
}

.countdown div:before {
  border-bottom-left-radius: 8px;
  border-bottom-right-radius: 8px;
  content: "";
  position: absolute;
  bottom: -30px;
  left: 0;
  width: 100%;
  height: 35px;
  background: #42261f;
  color: #fff;
  font-size: 0.35em;
  line-height: 35px;
  font-weight: 300;
}

.countdown div#day:before {
  content: "Hari";
}

.countdown div#hour:before {
  content: "Jam";
}

.countdown div#minute:before {
  content: "Menit";
}

.countdown div#second:before {
  content: "Detik";
}

.bg-none {
  background: none !important;
}