body {
  font-family: "Outfit", sans-serif;
  text-align: center;
  color: #fff;
}

.main {
  background: url("../images/bg.png") no-repeat center center fixed;
  background-size: cover;
  /* min-height: 100vh;
  max-height: 100vh; */
}

.logo {
  margin-top: 50px;
  max-width: 350px;
}

.video-container {
  position: relative;
  height: fit-content;
  overflow: hidden;
  margin: 6px auto;
  max-width: 700px;
 
  border-radius: 8px;
}

.video-container video {
    border-radius: 8px;
  border: 4px solid #fff;
}

.countdown-box {
  padding-bottom: 50px;
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 20px;
}

.countdown-segment_box {
  background-color: white;
  color: #d62828;
  border-radius: 6px;
  min-width: 90px;
  height: 90px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 42px;
  font-weight: 700;
  position: relative;
}

.countdown-segment_box::after {
  content: "";
  position: absolute;
  top: calc(50% - 10px);
  left: 100%;
  width: 20px;
  height: 20px;
  background: url("../images/dots.png") no-repeat center center;
  background-size: contain;
}

.countdown-box .countdown-segment:last-child .countdown-segment_box::after {
  display: none;
}

.countdown-segment small {
  font-size: 16px;
  font-weight: 400;
  display: block;
  margin-top: 4px;
}

.footer {
  background: rgba(0, 0, 0, 0.6);
  padding: 10px;
  margin-top: 40px;
  /* position: fixed;
  width: 100%;
  bottom: 0;
  left: 0; */
  font-weight: 400;
}

.footer a {
  color: #f0f0f0;
  text-decoration: underline;
}

.footer_right a {
  color: #b10021;
}
.footer_right {
  white-space: nowrap;
  font-size: 19px;
  text-align: end;
}

.footer_left {
  font-size: 20px;
}
.date {
  font-size: 30px;
  font-weight: 400;
  margin-bottom: 0;
}
a.social-icons_box {
  text-decoration: none;
  height: 42px;
  width: 42px;
  border: 1px solid rgba(255, 255, 255, 0.38);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

@media (min-width: 992px) and (max-width: 1450px) {

    .date {
    font-size: 26px;}
.countdown-segment small {
    font-size: 14px;}
    .countdown-box{
        margin-top: 10px;
    }
  .countdown-segment_box {
    min-width: 50px;
    height: 50px;
    font-size: 24px;
  }
  .footer_left {
    font-size: 16px;
  }

  .logo {
    margin-top: 28px;
    max-width: 280px;
  }
}
@media (max-width: 992px) {
  .footer_right {
    text-align: center;
  }
  a.social-icons_box {
    height: 26px;
    width: 26px;
    font-size: 10px;
  }

  .footer_left {
    font-size: 16px;
  }
  .footer_right a {
    font-size: 14px;
  }
  .footer_right {
    font-size: 14px;
  }
  .date {
    font-size: 16px;
  }
  .logo {
    margin-top: 20px;
    max-width: 250px;
  }
  .countdown-segment_box {
    min-width: 60px;
    height: 60px;
    display: flex;
    font-size: 28px;
  }
}


@media (max-width: 600px) {

    .footer_left{

        display: flex;
        justify-content: center;
        align-items: center;
        flex-direction: column;
        gap: 10px;
        margin-bottom: 10px;
    }
  .footer_right {
    white-space: normal;
  }
}
