img{
   height: 700px;
   margin: auto;
   display: flex;
}
.bg-section{
    background-color: #000;
}
#countdown-container {
  display: flex;
  gap: 20px;
  text-align: center;
}

.time-box {
  /* background: rgba(255, 255, 255, 0.1); */
  padding: 20px 25px;
  border-radius: 15px;
  backdrop-filter: blur(8px);
  box-shadow: 0 4px 20px rgba(0,0,0,0.4);
  border: 1px solid #ccc;
}

.time-box span {
  display: block;
  font-size: 48px;
  font-weight: 600;
  margin-bottom: 10px;
  color: #ccc;
}

.time-box label {
  font-size: 14px;
  opacity: 0.8;
  letter-spacing: 1px;
    color: #ccc;
}

.new {
  animation: flip 0.5s ease;
}

/* @keyframes flip {
  0% { transform: rotateX(90deg); opacity: 0; }
  100% { transform: rotateX(0); opacity: 1; }
} */

.right-section{
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
    flex-direction: column;
}

.contact-home{
    position: absolute;
    bottom: 0;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    padding-bottom: 30px;
}
.contact-home i{
    width: 60px;
    height: 60px;
    border: 1px solid #ccc;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    font-size: 23px;
    color: #ccc;
}
.contact-home h5{
    margin: 0;
    font-size: 18px;
    font-weight: 600;
    color: #ccc;
}
.contact-home div{
    padding-left: 10px;
}
.contact-home a{
    color: #ccc;
    text-decoration: none;
}

.right-description{
   
   padding: 0 45px;
    padding-top: 30px;
    width: 100%;
}

.right-description p{
    font-size: 24px;
    color: #ccc;
    font-weight: 600;
    text-align: center;

}
.right-description ul{
    padding: 0;
    
}
.right-description ul li{
    margin: 10px 0;
    font-size: 25px;
    color: #ccc;
}


@media screen and (max-width:1400px){
 img{
        height: unset;
        width: 100%;
    }
}
@media screen and (max-width:1200px){
    .contact-home{
        position: static;
       
    }
    .right-section{
 display: flex;
        flex-direction: column;
        padding-top: 20px;
        gap: 20px;
    }
    .bg-section{
        height: 100% !important;
        min-height: 100vh;
    }
}
@media screen and (max-width:991px){
   
}
@media screen and (max-width:768px){}
@media screen and (max-width:567px){
    #countdown-container{
        gap: 10px;
    }
    .time-box{
        padding: 7px;
        border: 0;

    }
}