@import url('https://fonts.googleapis.com/css?family=Poppins:200,300,400,500,600,700,800,900&display-swap');
:root
{
	
	/* thses variables control logo sizes */
	/* --logo-width : 880px;*/
	/* --logo-height: 170px;*/
	--logo-width : 616px;
	--logo-height: 119px;
	--logo-ratio : .75;
	--logo-w     : calc(var(--logo-width) * var(--logo-ratio));
	--logo-h     : calc(var(--logo-height) * var(--logo-ratio));
	--logo-wrap-w: calc(var(--logo-w) + 10px);
	--logo-wrap-h: calc(var(--logo-h) + 10px);
	
}

*
{
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Poppins', sans-serif;
}
body
{

  justify-content: center;

  min-height: 100vh;
  background: url(../images/bg001.jpg);
  background-repeat: repeat;

}

.container
{
  position: relative;
  top:10px;
  display: flex;
  justify-content: center;
  /* max-width: 1500px; */
  z-index: 1;
  flex-wrap: wrap;
}
.container .card
{
  position: relative;
  width: 300px;
  height: 400px;
  margin: 20px;
  box-shadow: 20px 20px 50px rgba(0, 0, 0, 0.51);
  border-radius: 15px;
  background: rgba(196, 10, 212, 0.2);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  border-top: 2px solid rgba(255, 255, 255, 0.5);
  border-left: 2px solid rgba(255, 255, 255, 0.5);
  backdrop-filter: blur(10px);
  opacity: 0.7;
}
.container .card .content
{
  padding: 20px;
  text-align: center;
  transform: translateY(100px);
  opacity: 0;
  transition: 0.5s;
}
.container .card:hover .content
{
  transform: translateY(0px);
  opacity: 1;
}
.container .card .title
{
  position: absolute;
  top: 10px;
  text-align: center;
  justify-content: center;
  align-items: center;
}

.container .card .title h2
{
  font-size: 48px;
  color: rgba(158, 20, 158, 0.4);
  pointer-events: none;
}
.container .card .content p
{
  font-size: 20px;
  color: rgba(0, 0, 0, 1);
  pointer-events: none;
}
.container .card .content h3
{
  font-size: 1.8em;
  color: rgb(50, 100, 255);
  z-index: 1;
  pointer-events: none;
}
.container .card .content a
{
  position: relative;
  display: inline-block;
  padding: 8px 20px;
  margin-top: 15px;
  background: rgb(142, 187, 230);
  color: #000;
  border-radius: 20px;
}

.container .card .content input
{
  position: relative;
  display: inline-block;
  margin-top: 10px;
  background: rgb(142, 187, 230);
  color: #000;
  border-radius: 25px;
  width:100px;
  height:40px;
  font-size:20px;
  vertical-align:middle;
}

.logo-wrapper
{
    position: relative;
    top: 30%;
    left: 50%;
	  padding: 2px;
    transform: translate(-50%, 30%);
    width: var(--logo-wrap-w);
	height: var(--logo-wrap-h);
    box-sizing: border-box;
    box-shadow: 0 10px 20px rgba(0,0,190, 0.3);
    border: 2px solid rgba(0,0,255,.7);
}
.logo
{
    position: relative;
    top: 50%;
    left: 50%;
	padding: 0px;
    transform: translate(-50%, -50%);
    width: var(--logo-w);
	height: var(--logo-h);
    box-sizing: border-box;
    border: 1px solid rgba(255,255,0,.9);
    background:url(../images/ncaclsBanner.png); 
    background-size: cover; 
    background-position:center;
}

