@font-face
{
	font-family: "LeagueSpartan";
	src: url(LeagueSpartan-Bold.otf) ;
}

@font-face
{
	font-family: "Josefin";
	src: url(JosefinSans-VariableFont_wght.ttf) ;
}

/*=========================================================================================*/

/*ScrollBar Start*/

/* width */
::-webkit-scrollbar {
  width: 8px;
  background: transparent;
}

/* Track */
::-webkit-scrollbar-track { 
  background: transparent;
  border-radius: 0;
}
 
/* Handle */
::-webkit-scrollbar-thumb {
  background: rgba(0,0,0,0.3);
  border-radius: 20px;
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
  background: rgba(0,0,0,0.5); 
}

/*ScrollBar End*/

/*=========================================================================================*/

*
{
	margin: 0;
	padding: 0;
	font-family: sans-serif;

}

.topbar
{
	width: 100%;
	height: 20px;
	background-color: #74C9F1;
}

.topbar marquee p
{
	margin: 2px 0px;
	color: #130f40;
	font-family: Josefin;  
}

.header
{
	position: sticky;
	top: 0px;
	width: 100%;
	height: 100px;
	background-color: #fff;
	box-shadow: 0px 5px 3px rgba(0,0,0,0.5);
	z-index: 1000;
}

.logo img
{
	float: left;
	width: 200px;
	height: auto;
	margin-top: 15px;
	margin-left: 10px;
	
}

.nav
{
	float: right;
}

.nav ul
{
	list-style-type: none;
	line-height: 100px;
}

.nav ul li
{
	display: inline-block;
	margin-top: 0px;
	margin-right: 30px;
}

.nav ul li a
{
	text-decoration: none;
	text-align: center;
	vertical-align: middle;
	font-family: Raleway;
	font-size: 18px;
	letter-spacing: 2px;
	border: none;
	padding: 10px 15px;
	color: black;
	border-radius: 3px;
	font-weight: bold;
	transition: 0.3s;
}

.nav ul li a:hover,
.nav ul li a.active
{
	background-color: black;
	color: white;
}

.leftcol
{
	padding: 0;
	position: relative;
	width: 100%;
	height: 180vh;
	background-color: #74C9F1;
}

.leftcol .container{
	position: absolute;
	left: 50%;
	transform: translate(-50%,15px);
	background-color: #F8F8FF;
	width: 99%;
	height: 176vh;
	border-radius: 15px;
	box-shadow: 0px 5px 3px rgba(0,0,0,0.5);
}

.leftcol .container h1{
	position: relative;
	text-align: center;
	margin-top: 30px;
    font-family: Josefin;
	font-size: 50px;
	font-variant: small-caps;
}

.leftcol .container h1 span{
	color: #74C9F1;
	font-weight: normal;
}

.leftcol .container h1::after{
	content: '';
	width: 150px;
	display: block;
	height: 4px;
	background-color: #74C9F1;
	position: relative;
	left: 50%;
	transform: translateX(-50%);
	margin-top: 5px;
}

.leftcol .abtp{
	position: relative;
	text-align: justify;
	padding: 20px 50px;
	top: 130px;
}

.leftcol .abtp p{
	font-size: 20px;
	font-family: Josefin;
	color: #808080;
}

.leftcol .title h1{
	position: relative;
	text-align: center;
	margin-top: 180px;
    font-family: Josefin;
	font-size: 50px;
	font-variant: small-caps;
}

.leftcol .title h1 span{
	color: #74C9F1;
	font-weight: normal;
}

.leftcol .title h1::after{
	content: '';
	width: 150px;
	display: block;
	height: 4px;
	background-color: #74C9F1;
	position: relative;
	left: 50%;
	transform: translateX(-50%);
	margin-top: 5px;
}

.fac{
	display: flex;
	width: 100%;
	justify-content: space-around;
	margin-top: 60px;
}

.card{
	width: 280px;
	height: 360px;
	border-radius: 15px;
	padding: 50px;
	background: white;
	position: relative;
	display: flex;
	align-items: flex-end;
	transition: 0.4s ease-out;
	box-shadow: 0px 10px 10px rgba(0,0,0, 0.5);
}

.card:hover{
	transform: translateY(15px);
}

.card:hover::before{
	opacity: 1;
}

.card:hover .info{
	opacity: 1;
	transform: translateY(0px);
}
.card:before{
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	display: block;
	width: 100%;
	height: 100%;
	border-radius: 15px;
	background: rgba(0,0,0, 0.5);
	z-index: 2;
	transition: 0.5s;
	opacity: 0;
}
.card img{
	width: 100%;
	height: 100%;
	object-fit: cover;
	position: absolute;
	top: 0;
	left: 0;
	border-radius: 15px;
}

.card .info{
	position: relative;
	z-index: 3;
	color: white;
	opacity: 0;
	transform: translateY(50px);
	transition: 0.5s;
}
.card .info h1{
	margin: 0px;
	font-size: 30px;
	font-family: LeagueSpartan;
	letter-spacing: 1px;

}
.card .info p{
	letter-spacing: 1px;
	font-size: 20px;
	margin-top: 8px;
	font-family: Josefin;
}












