html {
  box-sizing: border-box;
}

*, *:before, *:after {
  box-sizing: inherit;
  margin:0;
  padding:0;
}

body
{
	justify-content:center;
	align-items:center;
	min-height:100vh;
/*	background:#ebf2fc;  */
	font-family:arial;
}
/*Menu bar starts here. */
.topnav {
  overflow: hidden;
  background-color: #333;
}

.topnav a {
  float: left;
  display: block;
  color: #f2f2f2;
  text-align: center;
  padding: 14px 16px;
  text-decoration: none;
  font-size: 17px;
}

.topnav a:hover {
  background-color: #ddd;
  color: black;
}

.topnav a.active {
  background-color: #04AA6D;
  color: white;
}

.topnav .icon {
  display: none;
}

@media screen and (max-width: 600px) {
  .topnav a:not(:first-child) {display: none;}
  .topnav a.icon {
    float: right;
    display: block;
  }
}

@media screen and (max-width: 600px) {
  .topnav.responsive {position: relative;}
  .topnav.responsive .icon {
    position: absolute;
    right: 0;
    top: 0;
  }
  .topnav.responsive a {
    float: none;
    display: block;
    text-align: left;
  }
}
/*Menu bar Ends here. */

.accordion
{
	width:100%;
	float:left;
}
.accordion .contentbx
{
	position:relative;
	margin: 10px 20px;
}
.achievement-label {
  position: absolute;
	background-image: linear-gradient(to right, #f9d423 0%, #ff4e50 100%);
  padding: 0.4rem 2.8rem;
  transform: rotateZ( -45deg) translateY(-5px) translateX(-40px);
 /* transform: rotateZ( -45deg) translateY(1rem); */
  clip-path: polygon(20% 0, 80% 0, 100% 100%, 0 100%);
}

@-webkit-keyframes flow {
	0% { left:-20px;opacity: 0.1;}
	25% {left:40px;opacity: 0.3;}
	50% {left:80px;opacity: 0.2;}
	75% {left:120px;opacity: 0.1;}
    100%{ left:180px;opacity: 0;}
}
@keyframes flow {
	0% { left:-20px;opacity: 0.1;}
	25% {left:40px;opacity: 0.3;}
	50% {left:80px;opacity: 0.2;}
	75% {left:120px;opacity: 0.1;}
    100%{ left:180px;opacity: 0;}
}


.glow{ 
background: rgb(255,255,255); 
margin:-6px;
width:30px; 
height:100%; 
z-index:999; 
position:absolute;
-webkit-animation: flow 1.8s linear infinite;
-moz-animation: flow 1.8s linear infinite;
-webkit-transform: skew(20deg);
-moz-transform: skew(20deg);
 -o-transform: skew(20deg);
 background: -moz-linear-gradient(left, rgba(255,255,255,0) 0%, rgba(255,255,255,0) 1%, rgba(255,255,255,1) 100%); /* FF3.6+ */
background: -webkit-gradient(linear, left top, right top, color-stop(0%,rgba(255,255,255,0)), color-stop(1%,rgba(255,255,255,0)), color-stop(100%,rgba(255,255,255,1))); /* Chrome,Safari4+ */
background: -webkit-linear-gradient(left, rgba(255,255,255,0) 0%,rgba(255,255,255,0) 1%,rgba(255,255,255,1) 100%); /* Chrome10+,Safari5.1+ */
background: -o-linear-gradient(left, rgba(255,255,255,0) 0%,rgba(255,255,255,0) 1%,rgba(255,255,255,1) 100%); /* Opera 11.10+ */
background: -ms-linear-gradient(left, rgba(255,255,255,0) 0%,rgba(255,255,255,0) 1%,rgba(255,255,255,1) 100%); /* IE10+ */
background: linear-gradient(to right, rgba(255,255,255,0) 0%,rgba(255,255,255,0) 1%,rgba(255,255,255,1) 100%); /* W3C */
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#00ffffff', endColorstr='#ffffff',GradientType=1 ); /* IE6-9 */ 
border-left:0px solid #fff;
}

.accordion .contentbx .label
{
	position:relative;
	padding: 10px;
	font-size:1.1em;
	color:black;
	font-weight:bolder;
	cursor:pointer;
}
.accordion .contentbx .label::before
{
	content:'+';
	position:absolute;
	top:50%;
	right:20px;
	transform:translateY(-50%);
	font-size:1.5em;
}
.accordion .contentbx.active .label::before
{
	content:'-';
}
.accordion .contentbx .content
{
	position:relative;
	background:#fff;
	height:0;
	overflow:hidden;
	transition:0.5s;
	overflow-y:auto;
}
.accordion .contentbx.active .content
{
	height:auto;
	padding:10px;
}

.column {
  float: left;
  width: 20%;
  margin-left:10%;
  margin-bottom: 0px;
  padding: 0 8px;
  height:60vh;
}

.card {
	box-shadow: 5px 5px 10px rgba(0,0,0,0.7);

}
.card:hover{
	transform: scale(1.02);
	box-shadow: 0 0 2px rgba(0, 255, 255, 1), 0 0 5px rgba(0, 255, 255, 0.8), 0 0 10px rgba(0, 255, 255, 0.6);

}
.image img{
  width: 100%;
  height: 35vh;
}

.container {
  padding: 0 16px;
  height: 20vh;
}

.container::after, .row::after {
  content: "";
  clear: both;
  display: table;
}

.title {
  color: indigo;
}

.button {
  border: none;
  margin-top:5px;
  outline: 0;
  display: inline-block;
  padding: 8px;
  color: white;
  background-color: #000;
  text-align: center;
  cursor: pointer;
  width: 100%;
}

.button:hover {
  background-color: #555;
}


@media screen and (max-width: 650px) {
  .column {
    width: 100%;
    display: block;
	margin-left:0%;
  }
}