
@import url('https://fonts.googleapis.com/css2?family=Didact+Gothic&family=League+Spartan:wght@200;300;400;500;600;700&family=Poppins:wght@300;400;500;600&display=swap');

body,
html {
    color: rgba(254, 254, 254, 0.7);
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.6em;
    overflow-x: hidden;
    background-color: #f5f5f5;
}
.container {
    height: 100%;
}
.row {
    align-items: center;
    text-align: center;
    height: 100%;
}
.s-one {
    color: #fe0000;
    background-color: #f5f5f5;
}
.s-one img{
    height: 200px;
}
.s-one h1{
    margin-top: 35px;
    font-size: 55px;
    font-weight: 600;
}
#maincountdown{
    font-size: 200px;
    color: #fe0000;
    font-weight: bold;
    margin-top: 20px;
    
}
#example{
    font-size: 40px;
    color: #000;
    font-weight: bold;
    padding-bottom: 80px;
    min-height: 170px;
}
#example2{
    position: absolute;
}
.s-two {
    color: #fff;
    background-color: #f5f5f5;
    /* background-image: url(/assets/img/back.jpg);
    background-size: cover;
    background-repeat: no-repeat; */
}
/* .s-one a{
    border: 1px solid black;
    color: red;
    padding: 10px 12px;
    font-size: 16px;
    font-weight: bold;
   
}
.s-one a:hover{
    text-decoration: none;
} */
.scroll-control {
    position: fixed;
    right: 20px;
    top: 50%;
    transform: translateX(-50%);
    z-index: 999;
}
.scroll-control span {
    cursor: pointer;
    display: block;
    width: 14px;
    height: 14px;
    border-radius: 50%;
    margin: 10px 0;
    background-color: #000;
    opacity: 0.7;
}
.scroll-control span:hover {
    opacity: 1;
}
@media all and (max-width: 1023px) {
    .scroll-control span {
        display: none;
    }
}
/* === removing default button style ===*/
.button {
    -moz-appearance: none;
    -webkit-appearance: none;
    appearance: none;
    border: none;
    background: none;
    color: #0f1923;
    cursor: pointer;
    position: relative;
    padding: 8px;
    margin-bottom: 20px;
    text-transform: uppercase;
    font-weight: bold;
    font-size: 14px;
    transition: all .15s ease;
  }
  
  .button::before,
  .button::after {
    content: '';
    display: block;
    position: absolute;
    right: 0;
    left: 0;
    height: calc(50% - 5px);
    border: 1px solid #7D8082;
    transition: all .15s ease;
  }
  
  .button::before {
    top: 0;
    border-bottom-width: 0;
  }
  
  .button::after {
    bottom: 0;
    border-top-width: 0;
  }
  
  .button:active,
  .button:focus {
    outline: none;
  }
  
  .button:active::before,
  .button:active::after {
    right: 3px;
    left: 3px;
  }
  
  .button:active::before {
    top: 3px;
  }
  
  .button:active::after {
    bottom: 3px;
  }
  
  .button_lg {
    position: relative;
    display: block;
    padding: 10px 20px;
    color: #fff;
    background-color: #0f1923;
    overflow: hidden;
    box-shadow: inset 0px 0px 0px 1px transparent;
  }
  
  .button_lg::before {
    content: '';
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 2px;
    height: 2px;
    background-color: #0f1923;
  }
  
  .button_lg::after {
    content: '';
    display: block;
    position: absolute;
    right: 0;
    bottom: 0;
    width: 4px;
    height: 4px;
    background-color: #0f1923;
    transition: all .2s ease;
  }
  
  .button_sl {
    display: block;
    position: absolute;
    top: 0;
    bottom: -1px;
    left: -8px;
    width: 0;
    background-color: #fe0000;
    transform: skew(-15deg);
    transition: all .2s ease;
  }
  
  .button_text {
    position: relative;
  }
  
  .button:hover {
    color: #0f1923;
  }
  
  .button:hover .button_sl {
    width: calc(100% + 15px);
  }
  
  .button:hover .button_lg::after {
    background-color: #fff;
  }