
@import url('https://fonts.googleapis.com/css?family=Poppins:400,500,600,700&display=swap');

* {
  margin: 0;
  padding: 0;
  outline: none;
  box-sizing: border-box;
  font-family: 'Poppins', sans-serif;
}

body {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  background-image: url(images/web-bg-n-opening.jpg);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
}

.container {
  width: 600px;
  max-width: 100%;
  padding: 4em;
  padding-top: 0px;
  text-align: center;
 
  padding-left: 5em;
  /* max-height: 230px; */
  overflow-y: auto;
  

}






@media screen and (max-width: 640px) {
  .container{
    padding-left: 23px;
    padding-right: 23px;
    /* max-width: 90%; */
    
  }

  body{
    background-image: url(images/mobile-bg-opening.jpg);
  }

  .card{
    width: 18rem !important;
  }

  
} 




.container .but button{
  position: relative;
 
  border-radius: 7px;
  padding: 4px 20px;
  border: 2px solid #ffffff;
  color: #7dc600;
  background: white;
  transition: all 0.3s ease;
  cursor: pointer;
  overflow: hidden;
}


.container .but button:hover{
  color: #76ba00;
}

.container .but button::before{
  content: "";
  position: absolute;
  right: 0;  
  top: 0;
  width: 0%;
  height: 110%;
  background: #ffffff;
  z-index: -1;
  transition: 0.3s ease;
  
}

.container  .but button:hover::before{
  width: 200%;
  color: rgb(0, 0, 0);
} 



.card-body{
  padding: 2px !important;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.9);
}


 .card-hover-scale {
    transition: transform 0.3s ease;
  }

  .card-hover-scale:hover {
    transform: scale(1.05);
  }
