*{
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  line-height: 1.2;
}

body, html {
  font-family: "Libre Franklin", sans-serif;
  font-optical-sizing: auto;
  height: 100%;
  font-style: normal;
  color: #000;
  
}

h1{
  font-size: 50px;
}

h2{
  font-size: 30px;
}

.split{
  display: flex;
  min-height: 100%;
  flex-wrap: wrap;
}

.left{
  width: 50%; 
  background: url(../images/bg.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;

}
.left:after{
  position: absolute;
  content: '';
  height: 100%;
  width: 100%;
  background-color: #00a8ff7a;
  left: 0;
  top: 0;
}
.right{
  width: 50%;
  min-height: 100%;
  display: flex;
  align-items: center;
 
 
}
.inner{
  padding: 50px 30px; 
}

.countdown {
  display: flex;
  justify-content: center;
  gap: 15px;
  position: relative;
  z-index: 99;
  top: 50%;
  left: 50%;
  transform: translate(-50%,-50%);
}

.time-box {
  background-color: rgb(255 255 255);
  padding: 15px 20px;
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 90px;
    height: 90px;
}

.time-box span {
  font-size: 40px;
    font-weight: 600;
    color: #007acc;
    line-height: 1;
}

.time-box small {
  font-size: 12px;
  text-transform: uppercase;
  margin-top: 5px;
  font-weight:600 ;
  color: #f3690c;
}
.page-brand{
  margin-bottom:15px;
  display: block;
  max-width: 150px;
}
.page-title{
  color: #f3690c;
  margin-bottom:15px;
  font-size: 40px;
}
.page-description{
  font-size: 16px;
  margin-bottom: 10px;
  line-height: 1.3;
}
.page-name{
color: #007acc;
font-size: 20px;
margin-bottom: 3px;
font-weight: 600;
}
.address p {
  font-size: 16px;
  line-height: 1.5;
  padding-left: 30px;
  position: relative;
}
.address p  img{
  position: absolute;
    width: 18px;
    left: 0;
    top: 3px;
    margin-bottom: 0;
}
.address a {
  display: inline-block;
  color: #007acc;
  text-decoration: none;
  font-weight:500;
  line-height: 1;
}
.address a:hover{
  color: #f3690c;
}
@media(max-width:992px){
  .split{
    display: block;
  }
  .left{
    width: 100%; 
    
  }
  .countdown{
    top: 0;
    left: 0;
    transform: none;
    padding: 120px 0px;
  }
  .right{
    width:100%;
    text-align: center;
    
  }
  .page-brand{
    margin: 0 auto;
  }
  .inner{
    max-width: 600px;
    margin: 0 auto;
    padding: 30px 15px;
  }
  .address p { 
    padding-left: 0;
    position: initial;
  }
  .address p  img{
    display: none;
      
  }
}

@media(max-width:600px){
  .countdown{
    gap: 8px;
  }
  .time-box {
    width: 70px;
    height: 70px;
  }
  .time-box span {
    font-size: 30px;
     
}
.time-box small {
  font-size: 10px;
  margin-top: 2px;
}
}
