@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@200;300;400;500&display=swap');

*{
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}

body{
  font-family: 'Montserrat';;
}

h2{
  font-family: 'Montserrat';
}

li{
  list-style-type: none;
}

a{
  text-decoration: none;

}


.flex{
    display: flex;
  }
  .flex-column{
    flex-direction: column;
  }
  
  .justify-center{
    justify-content: center;
  }
  
  .justify-between{
    justify-content: space-between;
  }
  
  .align-center{
    align-items: center;
  }
  
  .text-center{
    text-align: center;
  }
  
  .flex-column{
    flex-direction: column;
  
  }
  
  .btn{
    outline: none;
    border: none;
    padding: 20px 50px;
    background-color: transparent;
    border: 2px solid white;
    cursor: pointer;
    color: white;
    font-size: 15px;
    font-weight: bold;
    margin-top: 20px;
    margin-right: 30px;
    border-radius: 30px;
    position: relative;
    overflow: hidden;
    z-index: 1;
    letter-spacing: 3px;
  }

  .btn.active{
    background-color: white;
    color: tomato;
  }

  .btn::before{
    position: absolute;
    content: '';
    width: 100%;
    height: 100%;
    background-color: white;
    border-radius: 30px;
    color: black;
    top: 0;
    right: 0;
    transform: translateX(-100%);
    z-index: -1;
    transition: transform .3s ease;
  }

  .btn:hover{
    color: tomato;
  }
  
  .btn:hover::before{
    transform: translateX(0%);
 
  }

  /* section  */
  section{
    height: 700px;
    padding: 80px 10px;
    padding-top: 120px;
  }


  .counter-container{
    display: flex;
    flex-direction: column;
    justify-self: center;
    text-align: center;
    margin: 30px 50px;
  }
  
  .counter{
    font-size: 60px;
    margin-top: 10px;
    letter-spacing: 5px ;
  }
  
  @media(max-width: 500px){
    body{
      flex-direction: column;
    }
  }
  