@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,500;0,600;0,700;0,800;0,900;1,500;1,600;1,700;1,800;1,900&display=swap');
*
{
	margin: 0;
	padding: 0;
	font-family: 'poppins';
	box-sizing: border-box;
	list-style: none;
	text-decoration: none;
}
html{
		scroll-behavior: smooth;
}
.banner{
	width: 100%;
	height: 100vh;
	display: flex;
	padding: 50px 200px;
	align-items: center;
	justify-content: space-between;
	position: relative;
	overflow: hidden;
	z-index: 7;
}
.content{
	position: relative;
	z-index: 12;
	max-width: 700px;
	margin-right: 50px;
}
.content h2{
	font-size: 3.4em;
	color: #56cbd5;
	font-weight: 500;
}
.content p{ 
	font-size: 1.6em;
}
.menu{
	position: fixed;
	background: rgba(255, 255, 255, 0.1);
	top: 0;
	left: 0;
	width: 100%;
	padding: 15px 200px;
	display: flex;
	justify-content: space-between;
	align-items: center;
	z-index: 100;
	backdrop-filter: blur(2px);
	box-shadow: 0 0 20px rgba(0, 0, 0, 0.3);
}
.menu:before{
	content: '';
	position: absolute;
	bottom: 0;
	left: 0;
	filter: blur(2px);
	background: rgba(255, 255, 255, 0.5);
	width: 100%;
	height: 2px;
}
.menu .title{
	font-size: 2em;
	letter-spacing: 1px;
	font-weight: 800;
	z-index: 565;
}
.menu .title span{
	color: #56cbd5;
}
.menu .title img{
	height: 23px;
	margin-right: 2px;
}
.menu_box { 
	display: flex;
	justify-content: space-between;
	text-decoration: none; 
	width: 45%;
}
.menu_item{
	color: #000; 
	font-size: 18px; 
}
.btn{
  background: linear-gradient(70deg, #236eff, #6df7c2);
  border: none;
  border-radius: 10px;
  color: #fff;
  cursor: pointer;
  text-align: center;
  font-size: 20px;
  margin-top: 20px;
  padding: 10px 20px;
  text-decoration: none;
  font-weight: 500;
  transition: 0.3s;
}
.btn:hover{
  outline: 0;
  opacity: 0.8;
}
.sci{
	background: linear-gradient(70deg, #236eff, #6df7c2);
	position: fixed;
	right: 0;
	display: flex;
	border-radius: 10px 0px 0px 10px;
	overflow: hidden;
	flex-direction: column;
}
.sci li{
	list-style: none;
}
.sci li a{
	width: 50px;
	height: 50px;
	display: flex;
	justify-content: center;
	align-items: center;
	transition: 0.2s ease-in-out;
}
.sci li a img{
	width: 20px;
	height: 20px;
}
.sci li a:hover{
	background: rgba(0, 0, 0, 0.1);
}
.banner .imgBx{
	min-width: 350px;
	display: flex;
	justify-content: center;
	min-height: 350px;
	background: linear-gradient(70deg, #236eff, #6df7c2);
	border-radius: 58% 42% 52% 48% / 32% 36% 64% 68%;
	overflow: hidden;
}
.banner .imgBx img{
	height: 350px;
	position: relative;
	top: 55px;
}
.heading{
	font-size: 2em;
	font-weight: 400;
}
.about{
	width: 100%;
	display: flex;
	padding: 50px 200px;
	align-items: center;
	justify-content: space-between;
	position: relative;
	overflow: hidden;
	z-index: -1;
}
.about .content h2{
	font-size: 3em;
	font-weight: 500;
}
.about .content p{
	font-size: 1.3em;
}
.about_img{
	width: 450px;
}
.myskills{
	width: 100%;
	padding: 200px;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
}
.skills{
	width: 100%;
}
.skill-name{
	font-size: 18px;
	font-weight: 400;
	text-transform: uppercase;
	margin: 20px 0;
}
.skill-bar{
	height: 14px;
	background: #f1f1f1;
	border-radius: 3px;
}
.skill-per{
	background: linear-gradient(70deg, #236eff, #6df7c2);
	height: 14px;
	border-radius: 3px;
	position: relative; 
	animation: fillbars 2.5s 1;
}
.skill-per::before{
	content: attr(per);
	position: absolute;
	background: #f1f1f1;
	padding: 4px 6px;
	border-radius: 4px;
	font-size: 12px;
	top: -40px;
	right: 0;
	transform: translate(50%);
}
.skill-per::after{
	content: '';
	transform: translate(50%) rotate(45deg);
	position: absolute;
	background: #f1f1f1;
	top: -20px;
	right: 0;
	width: 10px;
	height: 10px;
}
.portfolios{
	width: 100%;
	display: flex;
	padding: 50px 200px;
	align-items: center;
	flex-direction: column;
	justify-content: center;
}
.portfolio_continer{
	width: 100%;
	display: grid;
	grid-gap: 20px;
	grid-template-columns: repeat(auto-fit, minmax(500px,1fr));
	align-items: center;
	justify-content: center;
}
.portfolio{
	border-radius: 15px;
	overflow: hidden;
	width: 100%;
	height: 100%;
}
.portfolio img{
	width: 100%;
	height: 100%;
}
.h{
	margin-bottom: 40px;
}
.coments{
	position: relative;
	padding: 50px 200px;
	text-align: center;
}
.coments .container{
	width: 100%;
	display: grid;
	grid-gap: 20px;
	grid-template-columns: repeat(auto-fit, minmax(500px,1fr));
	align-items: center;
	justify-content: center;
}
.coments .container .contentBx{
	background: #f2f2f2;
	border-radius: 15px;
	padding: 30px;
	display: flex;
	justify-content: center;
	flex-direction: column;
	text-align: left;
}
.coments .container .contentBx .top{
	display: flex;
	align-items: center;
	margin-bottom: 20px;
}
.coments .container .contentBx .top div{
	display: flex;
	flex-direction: column;
}
.coments .container .contentBx .top .line{
	content: '';
	margin: 0 20px;
	width: 3px;
	height: 70px;
	background: linear-gradient(70deg, #236eff, #6df7c2);
}
.coments .container .contentBx img{
	width: 90px;
	height: 90px;
	border-radius: 50%;
}

.footer{
	border-top: 1px solid #c7c7c7;
	padding: 200px;
}
.container{
	width: 100%;
}
.row{
	display: flex;
	width: 100%;
	justify-content: space-between;
	flex-wrap: wrap;
}
.footer-col{
	padding: 0 15px;
	margin-bottom: 30px;
}
.footer-col h4{
	font-size: 18px;
	text-transform: capitalize;
	margin-bottom: 30px;
	font-weight: 500;
	position: relative;
	box-sizing: border-box;
	transition: 0.3s;
}
.footer-col h4:hover{
	color: #4a88ff;
}
.footer-col h4:before{
	content: '';
	position: absolute;
	left: 0;
	bottom: -10px;
	height: 2px;
	background: linear-gradient(70deg, #236eff, #6df7c2);
	width: 50px;
}
.footer-col ul li:not(:last-child){
	margin-bottom: 10px;
}
.footer-col ul li a{
	font-size: 16px;
	font-weight: 300;
	text-decoration: none;
	text-transform: capitalize;
	color: #222;
	transition: 0.3s;
}
#menu_toggle {
	position: absolute;
	right: 30px;
	width: 28px;
	height: 28px;
	opacity: 0;
	cursor: pointer;
}
#menu_toggle:checked {
	position: absolute;
	right: 30px;
	width: 28px;
	height: 28px;
	opacity: 0;
	cursor: pointer;
	z-index: 570;
}
@media (max-width: 1400px){
.portfolios{
	padding: 50px 100px;
}
.menu{
	padding: 15px 100px;
}
.banner{
	padding: 50px 100px;
}
.myskills{
	padding: 200px 100px;
}
.about{
	padding: 0 100px;
}
.coments{
	padding: 50px 100px;
}
}
@media (max-width: 1000px){
.portfolios{
	padding: 50px;
}
.coments{
	padding: 50px;
}
.about{
	width: 100%;
	display: flex;
	padding: 0 50px;
	align-items: center;
	justify-content: center;
	position: relative;
	overflow: hidden;
	z-index: -1;
}
.about .content h2{
	font-size: 2.5em;
	font-weight: 500;
}
.about .content p{
	font-size: 1.2em;
}
.about_img{
	width: 300px;
}
	.myskills{
	width: 100%;
	padding: 100px 50px;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
}
.content h2{
	font-size: 2.8em;
	font-weight: 500;
}
.content p{
	font-size: 1em;
}
	.menu{
		padding: 15px 50px;
	}
.banner{
	padding: 220px 50px;
}
.banner .imgBx{
	min-width: 250px;
	display: flex;
	justify-content: center;
	min-height: 250px;
	background: linear-gradient(70deg, #236eff, #6df7c2);
	border-radius: 58% 42% 52% 48% / 32% 36% 64% 68% ;
	overflow: hidden;
}
.banner .imgBx img{
	height: 250px;
	position: relative;
	top: 45px;
}
.menu_box { 
	display: flex;
	justify-content: space-between;
	text-decoration: none; 
	width: 60%;
}
}
@media (max-width: 768px){
.portfolio_continer{
	width: 100%;
	display: grid;
	grid-gap: 20px;
	grid-template-columns: repeat(auto-fit, minmax(310px,1fr));
	align-items: center;
	justify-content: center;
}
.coments .container{
	width: 100%;
	display: grid;
	grid-gap: 20px;
	grid-template-columns: repeat(auto-fit, minmax(310px,1fr));
	align-items: center;
	justify-content: center;
}
.coments .container .contentBx{
	background: #f2f2f2;
	border-radius: 10px;
	padding: 20px;
	display: flex;
	justify-content: center;
	flex-direction: column;
	text-align: left;
}
.coments .container .contentBx .top{
	display: flex;
	align-items: center;
	margin-bottom: 20px;
}
.coments .container .contentBx .top div{
	display: flex;
	flex-direction: column;
}
.coments .container .contentBx .top .line{
	content: '';
	margin: 0 10px;
	width: 3px;
	height: 60px;
	background: linear-gradient(70deg, #236eff, #6df7c2);
}
.coments .container .contentBx img{
	width: 70px;
	height: 70px;
	border-radius: 50%;
}
.coments .container .contentBx .top div h3{
	font-size: 1.1em;
}
.coments .container .contentBx .top div span{
	font-size: 0.9em;
}
.coments .container .contentBx p{
	font-size: 0.9;
}
.menu_btn{
	background: black;
	width: 28px;
	cursor: pointer;
	transition: 0.3s;
	z-index: 10;
}
.menu_btn > span,
.menu_btn > span:before,
.menu_btn > span:after{
	display: block;
	position: absolute;
	width: 28px;
	height: 2px;
	background-color: #000;
	transition-duration: 0.25s;
}
.menu_btn > span:before{
	content: "";
	top: -7px;
}
.menu_btn > span:after{
	content: "";
	top: 7px;
}
.menu_box{ 
	position: fixed; 
	visibility: hidden; 
	background: rgba(255, 255, 255, 0.4uh);
	backdrop-filter: blur(2px);
	box-shadow: 0 0 20px rgba(0, 0, 0, 0.3);
	border-radius: 0 0 20px 0;
	overflow: hidden;
	padding: 100px 0px;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	left: -100%;
	top: 0;  
	width: 210px; 
	height: 60vh; 
	transition: 0.6s;

}
.menu_box:before{
	content: '';
	position: absolute;
	bottom: 0;
	left: 0;
	filter: blur(2px);
	background: rgba(255, 255, 255, 0.5);
	width: 100%;
	height: 2px;
}
.menu_box:after{
	content: '';
	position: absolute;
	top: 0;
	right: 0;
	filter: blur(2px);
	background: rgba(255, 255, 255, 0.5);
	width: 2px;
	height: 100%;
}
.menu_item{   
	cursor: pointer;
	font-size: 1.4em;
	transition: 0.2s;
	border-bottom: 3px solid rgba(0, 0, 0, 0.0);
}
.menu_item:hover{
	border-bottom: 3px solid rgba(0, 0, 0, 1.0);
}
#menu_toggle:checked ~ .menu_btn > span { 
	transform: rotate(45deg); 
} 

#menu_toggle:checked ~ .menu_btn > span::before {
	top: 0;
	transform: rotate(0); 
} 

#menu_toggle:checked ~ .menu_btn > span::after { 
	top: 0;
	transform: rotate(90deg); 
} 
#menu_toggle:checked ~ .menu_box { 
	visibility: visible;
	left: 0; 
}
.menu{
	padding: 15px 30px;
}
.banner{
	padding: 50px;
	flex-direction: column-reverse;
	justify-content: center;
}
.content{
	z-index: 12;
	width: 100%;
	margin-right: 0;
	margin-top: 40px;
}
.content h2{
		font-size: 2em;
	}
.content p{
		font-size: 1em;
	}
	.about{
	padding: 50px;
	flex-direction: column-reverse;
	justify-content: center;
}
.about .content{
	z-index: 12;
	width: 100%;
	margin-right: 0;
	margin-top: 40px;
}
.about .content h2{
		font-size: 2em;
	}
.about .content p{
		font-size: 1em;
	}
	.about_img{
	width: 100%;
}
.myskills{
	padding: 50px;
}
.footer{
	padding: 100px;
}
}
.wrapper{
  height: 100vh;
  width: 100%;
}
.wrapper .container3{
	width: 100%;
	height: 100%;
	display: flex;
	justify-content: center;
	align-items: center;
}
.wrapper .container3:before{
	content: '';
	width: 600px;
	height: 600px;
	background: linear-gradient(70deg, #6df7c2, #236eff);;
	position: absolute;
	top: 10%;
	border-radius: 50%;
	left: 50px;
}
.wrapper .container3:after{
	content: '';
	width: 600px;
	height: 600px;
	background: linear-gradient(70deg, #6df7c2, #236eff);;
	position: absolute;
	bottom: 10%;
	border-radius: 50%;
	right: 50px;
	z-index: -1;
} 
.wrapper .container3 .formBx{
	width: 50%;
	background: rgba(255, 255, 255, 0.1);
	border-radius: 20px;
	box-shadow: 15px 15px 25px rgba(0, 0, 0, 0.3);
	backdrop-filter: blur(4px);
	margin: 200px 0;
	padding: 40px;
	overflow: hidden;
}
.wrapper .container3 .formBx:after{
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	filter: blur(2px);
	background: rgba(255, 255, 255, 0.5);
	width: 2px;
	height: 100%;
}
.wrapper .container3 .formBx:before{
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	filter: blur(2px);
	background: rgba(255, 255, 255, 0.5);
	width: 100%;
	height: 2px;
}
.wrapper .container3 .formBx h2{
	color: #3b3b4f;
	font-size: 1.5em;
	font-weight: 600;
	border-bottom: 4px solid #6df7c2;
	display: inline-block;
	letter-spacing: 1px;
	margin-bottom: 20px;
	text-transform: uppercase;
}
.wrapper .container3 .formBx .inputBx{
	margin-bottom: 20px;
}
.btn2{
  background: linear-gradient(70deg, #236eff, #6df7c2);
  border: none;
  border-radius: 50px;
  color: #fff;
  cursor: pointer;
  text-align: center;
  font-size: 20px;
  width: 100%;
  margin-top: 20px;
  padding: 7px 0;
  text-decoration: none;
  font-weight: 500;
  transition: 0.3s;
}
.btn2:hover{
  outline: 0;
  opacity: 0.8;
}
.wrapper .container3 .formBx .inputBx span{
	font-size: 16px;
	margin-bottom: 5px;
	display: inline-block;
	color: #3b3b4f;
	font-weight: 300;
	letter-spacing: 1px;
}
.wrapper .container3 .formBx .inputBx input{
	outline: none;
	border-radius: 50px;
	padding: 10px 20px;
	width: 100%;
	font-weight: 400;
	letter-spacing: 1px;
	border: 2px solid #6df7c2; 
	background: transparent;
	color: #3b3b4f;
	transition: 0.3s;
}
@media (max-width: 1400px){
.wrapper .container3 .formBx{
	margin: 200px 0;
}
.wrapper .container3:before{
	content: '';
	width: 400px;
	height: 400px;
	top: 30px;
	left: 50px;
}
.wrapper .container3:after{
	content: '';
	width: 400px;
	height: 400px;
	bottom: 30px;
	right: 50px;
}
}
@media (max-width: 768px){
	.wrapper .container3{
		z-index: 1;
		display: flex;
		justify-content: center;
		align-items: center;
		width: 100%;
		height: 100%;
	}
	.wrapper .container3 .formBx{
		background: rgba(255, 255, 255, 0.1);
		border-radius: 20px;
		box-shadow: 0 0 25px rgba(0, 0, 0, 0.3);
		margin: 50px;
		padding: 40px;
		width: 100%;
	}
.wrapper .container3:before{
	content: '';
	width: 300px;
	height: 300px;
	top: 5%;
	left: 0px;
}
.wrapper .container3:after{
	content: '';
	width: 300px;
	height: 300px;
	bottom: 5%;
	right: 0px;
}
}