@import url('https://fonts.googleapis.com/css2?family=Comfortaa:wght@300..700&family=Montserrat:ital,wght@0,100..900;1,100..900&family=Playfair+Display:ital,wght@0,400..900;1,400..900&family=Roboto:ital,wght@0,100..900;1,100..900&display=swap');

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Playfair Display", serif;
  background: #f8f9fc;
  text-align: center;
  color: #333;
  background-image: linear-gradient(rgba(255, 255, 255, 0.5), rgba(255, 255, 255, 0.5)), url("./images/buildings.svg");
  background-position: bottom;
  background-repeat: no-repeat;
}

.main_banner header {
  text-align: center;
  z-index: 99;
}

.middle {
  height: 100vh;
  display: flex;
  flex-direction: column !important;
  justify-content: center;
}

header img {
  width: 400px;
}

.logo-text {
  font-weight: 600;
  font-size: 20px;
}

.countdown {
  display: grid;
  gap: 0px;
  margin: 50px 0 20px;
  grid-template-columns: repeat(4, 12%);
  justify-content: center;
}

.countdown div {
  text-align: center;
}

.countdown span {
  font-size: 50px;
  font-family: "Comfortaa", sans-serif;
  color: rgb(25 55 101);
  font-weight: bold;
  line-height: 1;
  text-align: center;
  letter-spacing: 0.025em;
}

.countdown p {
  font-size: 14px;
  font-family: "Roboto", sans-serif;
  color: rgb(136, 155, 183);
  text-transform: uppercase;
  text-align: center;
  font-weight: 600;
  letter-spacing: 2px;
}

.main_banner h1 {
  font-size: 40px;
  font-family: "Montserrat", serif;
  color: rgb(25 55 101);
  line-height: 60px;
  text-align: center;
  font-weight: 300;
  letter-spacing: -0.5px;
  margin-bottom: 25px;
}
.main_banner h5 {
    font-family: "Montserrat", sans-serif;
    background-color: rgb(25 55 101);
    color: #fff;
    padding: 10px 25px;
    width: fit-content;
    margin: 10px auto 50px;
    font-size: 30px;
    text-transform: uppercase;
    font-weight: 400;
    letter-spacing: 9px;
}
.main_banner h1 span{
  font-weight: 800;
}
.main_banner #countdown p {
  font-size: 17px;
  font-family: "Roboto", sans-serif;
  color: rgba(17, 35, 53, 0.6);
  line-height: 1.941;
  text-align: center;
}

.social-icons {
  display: flex;
  gap: 20px;
  /* space between circles */
  justify-content: center;
  align-items: center;
  padding: 20px 0;
  /* optional light bg */
}

.social-icons .icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: #f1f6fb;
  display: flex;
  justify-content: center;
  align-items: center;
  text-decoration: none;
  font-size: 22px;
  color: rgb(25 55 101);
  /* dark navy */
  transition: all 0.3s ease;
}

.social-icons .icon:hover {
  background: rgb(25 55 101);
  color: #fff;
}

footer {
  margin: 20px 0;
  font-size: 14px;
  color: #666;
}

footer p {
  font-size: 18px;
  font-family: "Roboto", sans-serif;
  color: rgba(17, 35, 53, 0.6);
  line-height: 1.941;
  text-align: center;
}

footer p b {
  color: rgb(25 55 101);
}

.cloud-section {
  gap: 30px;
}

.cloud {
  position: absolute;
}

.cloud-1 {
  animation-delay: 0.4s;
  top: 20%;
  left: 10%;
  animation: cloud-1 10s linear infinite;
}

.cloud-2 {
  top: 30%;
  animation: cloud-2 10s linear infinite;
}

.cloud-3 {
  animation: cloud-3 10s linear infinite;
  top: 10%;
}

@keyframes cloud-1 {
  0% {
    left: 10%;
  }

  50% {
    left: 15%;
  }

  100% {
    left: 10%;
  }
}

@keyframes cloud-2 {
  0% {
    right: 5%;
  }

  50% {
    right: 16%;
  }

  100% {
    right: 5%;
  }
}

@keyframes cloud-3 {
  0% {
    right: 25%;
  }

  50% {
    right: 20%;
  }

  100% {
    right: 25%;
  }
}

@keyframes fadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.shape {
  position: absolute;
  left: 0%;
  bottom: 0px;
}

.shape.shape1 {
  right: 0% !important;
  left: inherit !important;
}

@media(max-width:575.98px) {
    body {
    height: 100vh;
    background-size: 100%;
}
  header img {
    width: 250px;
  }

  .footer_side,
  .cloud-section {
    display: none !important;
  }
  .middle{
    height: 100%;
 }
.countdown {
    grid-template-columns: repeat(2, 42%);
}
.main_banner h1 br{
  display: none ;
}
.main_banner h1 {
    font-size: 34px;
}
footer p {
    font-size: 12px;
}
}
@media (min-width:576px) and (max-width:767.98px) {
  body {
    height: 100vh;
    background-size: 100%;
}
  .main_banner header {
    padding-top: 60px;
}
  header img {
    width: 250px;
  }

  .footer_side,
  .cloud-section {
    display: none !important;
  }
  .middle{
    height: 100%;
 }
.countdown {
    grid-template-columns: repeat(2, 42%);
}
.main_banner h1 br{
  display: none ;
}
.main_banner h1 {
    font-size: 34px;
}
footer p {
    font-size: 12px;
}
}
@media (min-width:768px) and (max-width:991.98px) {
  body {
    height: 100vh;
}
  .main_banner header {
    padding-top: 60px;
}
  header img {
    width: 250px;
  }

  .footer_side,
  .cloud-section {
    display: none !important;
  }
  .middle{
    height: 100%;
 }
.countdown {
    grid-template-columns: repeat(4, 25%);
}
.main_banner h1 br{
  display: none ;
}
.main_banner h1 {
    font-size: 34px;
}
footer p {
    font-size: 12px;
}
}