@import url('https://fonts.googleapis.com/css?family=Rubik');


body {
    background-color: #262836;
    font-family: 'Rubik';
    overflow: hidden;
}

section {
    position: relative;
    width: 100%;
    min-height: 100vh;
    padding: 100px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #262836;
    box-sizing: border-box;
    font-family: 'Rubik', sans-serif;
}
header {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    padding: 20px 100px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-sizing: border-box;
    font-family: 'Rubik', sans-serif;
}
header .logo {
    position: relative;
    max-width: 80px;
}
header u1 {
    position: relative;
    display: flex;
}
header ul li {
    float: left;
    list-style: none;
}
header ul li a {
   display: inline-block;
   color: #fff;
   font-weight: 400;
   margin-left: 40px;
   text-decoration: none;
}


.head {
    text-align: center;
    font-size: 50px;
    font-weight: bold;
    color: white;
    margin-top: 100px;
    display: inline
}


*{
	margin: 0;
	padding: 0;
	box-sizing: border-box;
    font-family: 'Rubik';
}

body{
	display: flex;
	justify-content: center;
	align-items: center;
	min-height: 100vh;
	background: #262836;
}

body::before{
	content: '';
	position: absolute;
	top: 263px;
	right: 0;
	width: 60%;
	height: 60%;
	background: linear-gradient(#FD968A, #E24867);
	clip-path: circle(30% at right 50%);
}

body::after{
	content: '';
	position: absolute;
	top: 300;
	left: 0;
	width: 50%;
	height: 50%;
	background: linear-gradient(#86C0EB, #86A9C2);
	clip-path: circle(20% at left 40%);
}

.container{
	position: relative;
	display: flex;
	justify-content: center;
	align-items: center;
	max-width: 1200px;
	flex-wrap: wrap;
	z-index: 1;
}

.container .card{
	position: relative;
	width: 280px;
	height: 400px;
	margin: 30px;
	box-shadow: 20px 20px 50px rgba(0, 0, 0, 0.5);
	border-radius: 15px;
	background: rgba(255, 255, 255, 0.1);
	overflow: hidden;
	display: flex;
	justify-content: center;
	align-items: center;
	border-top: 1px solid rgba(255, 255, 255, 0.5);
	border-left: 1px solid rgba(255, 255, 255, 0.5);
	backdrop-filter: blur(5px);
}

.container .card .content{
	padding: 20px;
	text-align: center;
	transform: translateY(100px);
	opacity: 1;
	transition: 0.5s;
}

.container .card .content .first .imgBx{
	position: relative;
	width: 150px;
	height: 150px;
	border-radius: 50%;
	overflow: hidden;
	box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
	margin: 20px auto;
}

.container .card .content .first .imgBx img{
	position: absolute;
	top: 15px;
	left: 10px;
	width: 80%;
	height: 80%;
	object-fit: cover;
}

.container .card:hover .content{
	transform: translateY(0px);
	opacity: 1;
}

.container .card .content h2{
	position: absolute;
	top: -50px;
	right: 30px;
	font-size: 3em;
	color: rgba(255, 255, 255, 0.05);
	pointer-events: none;
}

.container .card .content h3{
	font-size: 1.8em;
	color: #fff;
	z-index: 1;
}

.container .card .content p{
	font-size: 1em;
	color: #fff;
	font-weight: 300;
}

.container .card .content a{
	position: relative;
	display: inline-block;
	padding: 8px 20px;
	margin-top: 15px;
	background: #fff;
	color: #000;
	border-radius: 20px;
	text-decoration: none;
	font-weight: 500;
	box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.container .card .content .first{
	position: relative;
	top: -100px;
	left: 0;
	display: block;
}

.container .card:hover .content .first{
	display: none;
}

.container .card .content .second{
	display: none;
}

.container .card:hover .content .second{
	display: block;
}

.box {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    flex-direction: column;
    text-align: left;
    width: 1000px;
    height: 400px;
    margin: 25px;
    padding: 15px;
    background-color: #1d1d2a;
    border-radius: 10px;
    margin-top: 200px;
    box-shadow: 0 12px 26px rgb(0 0 0 / 40%);
    line-height: 23px;
    color: white;
    font-weight: lighter;
    font-family: 'Rubik';
}
