/* Default */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  overflow: hidden;
}
ul {
  list-style-type: none;
}
/* Font */
@font-face {
  font-family: "Montserrat";
  src: url(../fonts/Montserrat/static/Montserrat-Regular.ttf) format("truetype");
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: "Montserrat";
  src: url(../fonts/Montserrat/static/Montserrat-Bold.ttf) format("truetype");
  font-weight: bold;
  font-style: normal;
}
.font-normal {
  font-family: "Montserrat", sans-serif;
  font-weight: normal;
}
.font-bold {
  font-family: "Montserrat", sans-serif;
  font-weight: bold;
}
/* Main part */
#comming-soon {
  background-image: url(../img/bg.png);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  height: 100vh;
  color: #ffffff;
}
#comming-soon .main-part {
  padding: 40px 0;
}
#comming-soon .main-part .content {
  margin: auto 0;
}
#comming-soon .main-part .content h1 {
  transform: translateY(-24px);
}
#comming-soon p.first {
  font-size: 36px;
}
#comming-soon p.second {
  font-size: 22px;
  margin-top: 36px;
}
#comming-soon ul#countdown {
  gap: 40px;
}
#comming-soon ul#countdown .number {
  font-size: 58px;
}
#comming-soon ul#countdown .label {
  font-size: 12px;
}
#comming-soon .socials ul {
  gap: 10px;
}
#comming-soon .socials li a {
  color: #ffffff;
}
#comming-soon .socials li svg {
  font-size: 28px;
}
@media (max-width: 992px) and (min-width: 576px) {
  #comming-soon h1 img {
    width: 66%;
  }
  #comming-soon p.first {
    font-size: 30px;
  }
  #comming-soon p.second {
    font-size: 18px;
    margin-top: 20px;
  }
}
@media (max-width: 576px) {
  #comming-soon h1 img {
    width: 50%;
  }
  #comming-soon p.first {
    font-size: 20px;
  }
  #comming-soon p.second {
    font-size: 12px;
    margin-top: 0px;
  }
  #comming-soon ul#countdown .number {
    font-size: 30px;
  }
}
