@import url('https://fonts.googleapis.com/css?family=Poppins:200,300,400,500,600,700,800,900&display=swap');
html{
  scroll-behavior: smooth;
}
*
{
	font-family: 'Poppins', sans-serif;
	margin: 0;
	padding: 0;
	box-sizing: border-box;

}
section
{
	position: relative;
	width: 100%;
	min-height: 100vh;
	padding: 100px;
	display: flex;
	justify-content: center;
	align-items: center;
	overflow-x: hidden;
}
.bg
{
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: blue;
	transition: .75s;
}
.bg::before
{
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 80%;
	height: 100%;
	background: rgba(0,0,0,.1);
}
header{
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	padding: 20px 100px;
	display: flex;
	justify-content: space-between;
	align-items: center;
}
header .logo{
	position: relative;
	font-weight: 600;
	color: white;
	text-decoration: none;
	font-size: 2em;
}
header .navigation{
	position: relative;
	display:flex;
}
header .navigation li{
	list-style: none;
}
header .navigation li a
{
	display: inline-block;
	color: white;
	font-weight: 400;
	margin-left: 10px;
	padding: 8px 15px;
	border-radius: 40px;
	text-decoration: none;
}
header .navigation li a.active,
header .navigation li a:hover
{
	background: #fff;
	color: #333;
}
.content{
	position: relative;
	width: 100%;
	display: flex;
	justify-content: center;
	align-items: center;

}
.content .textBox
{
	position: relative;
	max-width: 600px;
}
.content .textBox h1{
	color: #fff;
	font-size: 4em;
	line-height: 1.2em;
	font-weight: 700;
}
.content .textBox p{
	color: #fff;
	margin-top: 20px;
}
.content .textBox a{

	display: inline-block;
	margin-top: 20px;
	padding: 8px 20px;
	background: #fff;
	color: #333;
	border-radius: 40px;
	font-weight: 500;
	letter-spacing: 1px;
	text-decoration: none;
}
.content .imgBox
{
	position: relative;
	z-index: 1;
	width: 600px;
	display: flex;
	justify-content: flex-end;
}
.content .imgBox img{
	max-width: 400px;
}
.thumb{
	position: absolute;
	left: 50%;
	bottom: 20px;
	transform: translate(-50%);
	display: flex;

}
.thumb li{
	list-style: none;
	display: inline-block;
	margin: 0 10px;
	cursor: pointer;
	transition: 0.5s;
	height: 70px;
	background: rgba(255, 255, 255, 0.25);
	padding: 5px;
	border: 2px solid rgba(255,255,255,.25);
}
.thumb li.active{
	border: 2px solid rgba(255,255,255,1);
}
.thumb li::before
{
	content: attr(data-text);
	top: -200px;
	left: -100px;
	position: absolute;
	white-space: nowrap;
	font-size: 8em;
	color: rgba(0,0,0,.05);
	opacity: 0;
	font-weight: 700;
	pointer-events: none;
}
.thumb li.active::before
{
	opacity: 1;
}
.thumb li img{
	max-width: 60px;
}
.sci{
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	right: 30px;
	display: flex;
	justify-content: center;
	align-items: center;
	flex-direction: column;
}
.sci li{
	list-style: none;
}
.sci li a{
	display: inline-block;
	margin: 5px 0;
	transform: scale(0.6);
	filter: invert(1);
}
@media (max-width: 991px){
	.bg::before{
		display: none;
	}
	header{
		padding: 20px;
	}
	section
	{
		padding: 20px;
		padding-bottom: 120px;
	}
	.content{
			margin-top: 100px;
			flex-direction: column;
	}
	.content .textBox
	{
		max-width: 75%;

	}
	.content .textBox h1{
		font-size: 2.5em;
		margin-bottom: 15px;


	}
	.content img
	{
		max-width: 100%;
		justify-content: center;
	}
	.content .imgBox img{
		max-width: 300px;
	}
	.thumb li{
		margin: 0 3px;
		height: 55px;
	}
	.thumb li img{
		max-width: 40px;
	}
	.thumb li::before{
			position: absolute;
			top: -150px;
			left: 0;
			font-size: 6em;
	}
	.sci{
		background: rgba(0,0,0,.1);
		right: 0;
		width: 50px;
		border-top-left-radius: 5px;
		border-bottom-left-radius: 5px;
	}
	header .navigation{
		display: none;

	}
	header .navigation.active
	{
		position: fixed;
		top: 0;
		left: 0;
		width: 100%;
		height: 100%;
		display: flex;
		justify-content: center;
		align-items: center;
		align-items: center;
		background: blue;
		z-index: 10;
		flex-direction: column;
	}
	header .navigation li a
	{
		font-size: 1.2em;
		margin: 5px 0;
	}
	.toggle
	{
		position: relative;
		width: 30px;
		height: 30px;
		cursor: pointer;
		background: url(menu-new.png);
		background-size: 30px;
		background-position: center;
		background-repeat: no-repeat;
		z-index: 10000;
	}
	.toggle.active{
		position: fixed;
		right: 20px;
		background: url(close.png);
		background-size: 25px;
		background-position: center;
		background-repeat: no-repeat;
	}
}




















* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}
.container {
  width: 100vw;
  height: 100vh;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  padding: 20px;
  
}

.block {
  width: 300px;
  height: 300px;
  margin: 20px;
  position: relative;
  overflow: hidden;
  box-shadow: 2px 2px 15px 2px #111;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  perspective: 2000px;
  background-color: #666;
}

.block--img {
  width: 100%;
  height: 100%;
  background-position: center;
  background-size: cover;
  transform: rotateX(0deg);
  transform-origin: top center;
  transition: all 300ms ease-out;
}

.block1 {
  background-image: url("anelia-shirt.jpg");
}

.block2 {
  background-image: url("children.jpg");
}

.block3 {
  background-image: url("https://images.unsplash.com/photo-1536602012356-86c345795580?ixid=MnwxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8&ixlib=rb-1.2.1&auto=format&fit=crop&w=1050&q=80");
}

.block--text {
  position: absolute;
  width: 100%;
  height: 100%;
  padding: 20px;
  background-color: #111;
  color: antiquewhite;
  transform: rotateX(120deg);
  transform-origin: bottom center;
  transition: all 300ms ease-in;
}

.block:hover .block--text {
  transform: rotateX(0deg);
}

.block:hover .block--img {
  transform: rotateX(-120deg);
}

.text--head {
  text-align: center;
  font-size: 30px;
  padding-top: 20px;
  padding-bottom: 20px;
  text-transform: uppercase;
  color: skyblue;
}

.text--quote {
  padding: 20px 10px 0px;
  font-size: 18px;
}

.text--person {
  position: relative;
  bottom: -40px;
  text-align: end;
  font-weight: 600;
  color: skyblue;
}













.box .front-face .icon{
  height: 80px;
   text-align: center;
}
.box .front-face .icon i{
  font-size: 65px;
   text-align: center;
}
.box .front-face span,
.box .back-face span{
  font-size: 22px;
   text-align: center;
  font-weight: 600;
  text-transform: uppercase;
}
.box .front-face .icon i,
.box .front-face span{
   text-align: center;
  background: linear-gradient(-135deg, #c850c0, #4158d0);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.box .back-face{
   text-align: center;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  height: 220px;
  width: 100%;
  padding: 30px;
  color: #fff;
  opacity: 0;
  transform-style: preserve-3d;
  backface-visibility: hidden;
  background: linear-gradient(-135deg, #c850c0, #4158d0);
  transform: translateY(110px) rotateX(-90deg);
  box-shadow: 0px 5px 20px 0px rgba(0, 81, 250, 0.1);
  transition: all 0.5s ease;
}
.box .back-face p{
  margin-top: 10px;
   text-align: center;
}
.box:hover .back-face{
  opacity: 1;
   text-align: center;
  transform: rotateX(0deg);
}
.box:hover .front-face{
  opacity: 0;
   text-align: center;
  transform: translateY(-110px) rotateX(90deg);
}




.stats
{
  background: #000;
  padding-top: 250px;
  margin-top: -250px;
}
.stats h3,
.stats p
{
  color: #fff;
}
.statsBox
{
  position: relative;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  grid-gap: 20px;
  max-width: 100%;
  margin-top: 40px;
}
.statsBox h1
{
  color: #fff;
  font-size: 36px;
}
.statsBox h4
{
  color: #fff;
  font-size: 16px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 2px;
}















html {
  background-color: powderblue;
}



.main{
  max-width: 1200px;
  margin: 0 auto;
}

h1 {
    font-size: 24px;
    font-weight: 400;
    text-align: center;
}

img {
  height: auto;
  max-width: 100%;
  vertical-align: middle;
}

.btn {
  color: #ffffff;
  padding: 0.8rem;
  font-size: 14px;
  text-transform: uppercase;
  border-radius: 4px;
  font-weight: 400;
  display: block;
  width: 100%;
  cursor: pointer;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: transparent;
}

.btn:hover {
  background-color: rgba(255, 255, 255, 0.12);
}

.cards {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  margin: 0;
  padding: 0;
}

.cards_item {
  display: flex;
  padding: 1rem;
}

@media (min-width: 40rem) {
  .cards_item {
    width: 50%;
  }
}

@media (min-width: 56rem) {
  .cards_item {
    width: 33.3333%;
  }
}

.card {
  background-color: blue;
  border-radius: 0.25rem;
  box-shadow: 0 20px 40px -14px rgba(0, 0, 0, 0.25);
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.card_content {
  padding: 1rem;
  background: linear-gradient(to bottom left, blue 40%, hotpink 100%);
}

.card_title {
  color: #ffffff;
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: capitalize;
  margin: 0px;
}

.card_text {
  color: #ffffff;
  font-size: 0.875rem;
  line-height: 1.5;
  margin-bottom: 1.25rem;    
  font-weight: 400;
}
.made_by{
  font-weight: 400;
  font-size: 13px;
  margin-top: 35px;
  text-align: center;
}














section video{
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
  padding-top: 50px;

}
section h2{
  position: absolute;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  flex-direction: column;
  text-transform: uppercase;
  font-size: 25vw;
  text-align: center;
  font-weight: 000;
  line-height: .85rem;
  color: #fff;
  
  background: rgba(0,0,0,.95);
  mix-blend-mode: multiply;
}









.gallery{
  display: flex;
}









.profile{
  flex-basis:260px;
  margin-bottom:50px;
}
.profile .profile-img{
  height:260px;
  width:100px;
  border-radius:50%;
  filter: grayscale(100%);
  
  transition:400ms;

}
.profile:hover .profile-img{
  filter:grayscale(0);
}
.user-name{
  margin-top:30px;
  font-size:35px;
}
.profile p{
  font-size:16px;
  margin-top:20px;
  text-align: center;
}
@media only screen and (max-width: 1150px) {
  .profiles{
    flex-direction:column;
  }
  .profile{
    display:flex;
    flex-direction:column;
    align-items:center;

  }
}
@media only screen and (max-width:900px) {
  .heading{
    font-size:40px;
    color:white;
    text-align:center;
  }
  .heading span{
    font-size: 45px;
  }
  .profiles{
    margin:20px 0;
  }
  .profile p{
    margin:20px 10px 80px 10px;
  }
}
}


















@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@200;300;400;500;600;700&display=swap');
*{
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Poppins" , sans-serif;
}
body{
  min-height: 100vh;
  width: 100%;
  
}
footer{
 
  background: blue;
  width: 100%;
  bottom: 0;
  left: 0;
}
footer::before{
  content: '';
  position: absolute;
  left: 0;
  top: 100px;
  height: 1px;
  width: 100%;
  background: #000;
}
footer .content{
  max-width: 1250px;
  margin: auto;
  padding: 30px 40px 40px 40px;
}
footer .content .top{
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 50px;
}
.content .top .logo-details{
  color: #fff;
  font-size: 30px;
}
.content .top .media-icons{
  display: flex;
}
.content .top .media-icons a{
  height: 40px;
  width: 40px;
  margin: 0 8px;
  border-radius: 50%;
  text-align: center;
  line-height: 40px;
  color: #fff;
  font-size: 17px;
  text-decoration: none;
  transition: all 0.4s ease;
}
.top .media-icons a:nth-child(1){
  background: #4267B2;
}
.top .media-icons a:nth-child(1):hover{
  color: #4267B2;
  background: #fff;
}
.top .media-icons a:nth-child(2){
  background: #1DA1F2;
}
.top .media-icons a:nth-child(2):hover{
  color: #1DA1F2;
  background: #fff;
}
.top .media-icons a:nth-child(3){
  background: #E1306C;
}
.top .media-icons a:nth-child(3):hover{
  color: #E1306C;
  background: #fff;
}
.top .media-icons a:nth-child(4){
  background: #0077B5;
}
.top .media-icons a:nth-child(4):hover{
  color: #0077B5;
  background: #fff;
}
.top .media-icons a:nth-child(5){
  background: #FF0000;
}
.top .media-icons a:nth-child(5):hover{
  color: #FF0000;
  background: #fff;
}
footer .content .link-boxes{
  width: 100%;
  display: flex;
  justify-content: space-between;
}
footer .content .link-boxes .box{
  width: calc(100% / 5 - 10px);
}
.content .link-boxes .box .link_name{
  color: #fff;
  font-size: 18px;
  font-weight: 400;
  margin-bottom: 10px;
  position: relative;
}
.link-boxes .box .link_name::before{
  content: '';
  position: absolute;
  left: 0;
  bottom: -2px;
  height: 2px;
  width: 35px;
  background: #fff;
}
.content .link-boxes .box li{
  margin: 6px 0;
  list-style: none;
}
.content .link-boxes .box li a{
  color: #fff;
  font-size: 14px;
  font-weight: 400;
  text-decoration: none;
  opacity: 0.8;
  transition: all 0.4s ease
}
.content .link-boxes .box li a:hover{
  opacity: 1;
  text-decoration: underline;
}
.content .link-boxes .input-box{
  margin-right: 55px;
}
.link-boxes .input-box input{
  height: 40px;
  width: calc(100% + 55px);
  outline: none;
  border: 2px solid #AFAFB6;
  background: #140B5C;
  border-radius: 4px;
  padding: 0 15px;
  font-size: 15px;
  color: #fff;
  margin-top: 5px;
}
.link-boxes .input-box input::placeholder{
  color: #AFAFB6;
  font-size: 16px;
}
.link-boxes .input-box input[type="button"]{
  background: #fff;
  color: #140B5C;
  border: none;
  font-size: 18px;
  font-weight: 500;
  margin: 4px 0;
  opacity: 0.8;
  cursor: pointer;
  transition: all 0.4s ease;
}
.input-box input[type="button"]:hover{
  opacity: 1;
}
footer .bottom-details{
  width: 100%;
background: hotpink;
}
footer .bottom-details .bottom_text{
  max-width: 1250px;
  margin: auto;
  padding: 20px 40px;
  display: flex;
  justify-content: space-between;
}
.bottom-details .bottom_text span,
.bottom-details .bottom_text a{
  font-size: 14px;
  font-weight: 300;
  color: #fff;
  opacity: 0.8;
  text-decoration: none;
}
.bottom-details .bottom_text a:hover{
  opacity: 1;
  text-decoration: underline;
}
.bottom-details .bottom_text a{
  margin-right: 10px;
}
@media (max-width: 900px) {
  footer .content .link-boxes{
    flex-wrap: wrap;
  }
  footer .content .link-boxes .input-box{
    width: 40%;
    margin-top: 10px;
  }
}
@media (max-width: 700px){
  footer{
    position: relative;
  }
  .content .top .logo-details{
    font-size: 26px;
  }
  .content .top .media-icons a{
    height: 35px;
    width: 35px;
    font-size: 14px;
    line-height: 35px;
  }
  footer .content .link-boxes .box{
    width: calc(100% / 3 - 10px);
  }
  footer .content .link-boxes .input-box{
    width: 60%;
  }
  .bottom-details .bottom_text span,
  .bottom-details .bottom_text a{
    font-size: 12px;
  }
}
@media (max-width: 520px){
  footer::before{
    top: 145px;
  }
  footer .content .top{
    flex-direction: column;
  }
  .content .top .media-icons{
    margin-top: 16px;
  }
  footer .content .link-boxes .box{
    width: calc(100% / 2 - 10px);
  }
  footer .content .link-boxes .input-box{
    width: 100%;
  }
}
