@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700&family=Ubuntu:wght@400;500;700&display=swap');


*{
	margin: 0;
	padding: 0;
	text-decoration: none;
	box-sizing: border-box;
}

html{
    scroll-behavior: smooth;
}

/* custom scroll bar */
::-webkit-scrollbar {
    width: 12px;
}
::-webkit-scrollbar-track {
    background: #f1f1f1;
}
::-webkit-scrollbar-thumb {
    background: #888;
}

::-webkit-scrollbar-thumb:hover {
    background: #111;
}	



/*******Fixed STYLE*********/

h1{
	color: white;
	font-family: 'Ubuntu' , sans-serif;
	
}
h2{
	color: whitesmoke;
	font-family: 'Ubuntu' , sans-serif;
}
h3{
	color: black;
	font-family: 'Ubuntu' , sans-serif;
}
.max-width{
    max-width: 1300px;
    padding: 0 80px;
    margin: auto;
}
.home-container{	
	width: 100%;
	margin: auto;
	height: 720px;	
	padding-top: 4%;
	padding-bottom: 4%;
}
.container{	
	width: 100%;
	margin: auto;	
	padding-top: 4%;
	padding-bottom: 4%;
}
.row{
	width: 100%;
	display: flex;
	flex-wrap: wrap;
	align-items: center;
}

.row::after{
	display: table;
	clear: both;
	content: "";
}

.col-1{width: 8.33%;}
.col-2{width: 16.66%;}
.col-3{width: 25.00%;}
.col-4{width: 33.33%;}
.col-5{width: 41.66%;}
.col-6{width: 50.00%;}
.col-7{width: 58.33%;}
.col-8{width: 66.66%;}
.col-9{width: 75.00%;}
.col-10{width: 83.33%;}
.col-11{width: 91.66%;}
.col-12{width: 100.00%;}
/*****************************/


/**********Navigation Bar***********/
.nav-bar{
	width: 100%;
	position: fixed;
	color: whitesmoke;
	font-family: 'Ubuntu' , sans-serif;
	transition: 0.6s;
	margin: 0px;
	padding: 20px 0;
}

.nav-bar .max-width{
	display: flex;
	align-items: center;
	justify-content: space-between;
}
.nav-bar .nav-menu li{
	list-style: none;
	display: inline-block;
}
.nav-bar .nav-menu li a{
	display: block;
	color: white;
	font-size: 18px;
	font-weight: 500;
	margin-left: 25px;
	transition: color 0.3s ease;
}

.nav-bar .nav-menu li a:hover{
	color: crimson;
}
.nav-bar .nav-menu li a.noHover:hover{
	color: white;
}

.nav-bar .nav-menu li.dropDownIcon{
	display: none;
}

.sticky{
	background-color: black;
	padding-top: 5px;
	padding-bottom: 5px;
	z-index: 999;
}

.scroll-up-btn{
    position: fixed;
    height: 45px;
    width: 45px;
    background: crimson;
    right: 30px;
    bottom: 10px;
    text-align: center;
    line-height: 45px;
    color: #fff;
    z-index: 2;
    font-size: 30px;
    border-radius: 50px;
    border-bottom-width: 2px;
    cursor: pointer;
    opacity: 0;
    pointer-events: none;
    transition: all 0.3s ease;
}
.scroll-up-btn img{
	margin-top: 10px;
	width: 30px;
	height: 30px;
}
.scroll-up-btn.show{
    bottom: 30px;
    opacity: 1;
    pointer-events: auto;
}
.scroll-up-btn:hover{
    filter: brightness(60%);
}
/************************************/

/***************LOGO******************/

.nav-bar .logo a{
	color: white;
	font-size: 35px;
	font-weight: 600;
}
.nav-bar .logo a span{
	color: crimson;
}
/************************************/

/*******Custom STYLE*********/
#home-container{
	display: flex;
	background-image: url(image/background.jpg);
	background-size: cover;
	background-attachment: fixed;
}
.image-container{
	align-items: center;
	text-align: center;
}
.image-container img{
	width: 50%;
	border-radius: 100%;
	margin: 20px;
}
.healine-text{
	margin: 0px;
}
.healine-text h1{
	font-size: 25px;
	text-align: center;
	color: black;
}
.healine-text h2{
	font-size: 20px;
	text-align: center;
	color: crimson;
}
.text-container{
	align-items: center;
	
}
.text-container h2{
	padding: 5px 30px;
	color: black;
}
.text-container h2 span{
	color: crimson;
}
.text-container p{
	text-align: justify;
	padding: 5px 30px;
	font-family: 'Poppins', sans-serif;
	font-size: 16px;
}
.CV-button{
	margin: 20px 20px;
}
.CV-button a{
	border-radius: 25px;
	border: 2px solid crimson;
	padding: 10px 20px;
	background-color: white;
	color: crimson;
	font-size: 15px;
	font-weight: 600;
	transition: all 0.6s ease;
}
.CV-button a:hover{
	background-color: crimson;
	color: white;
}


.skill-item
{
	text-align: center;
	font-family: 'Poppins', sans-serif;
	color: #555;
}

.chart-container
{
	position: relative;
	width: 100%;
	height: 0;
	padding-top: 100%;
}

.skill-item .chart{
	margin: 20px;
	position: absolute;
	top: 0;
	left: 0;
	width: 80% !important;
	height: 80% !important;
}
.skill-item .chart canvas
{
	position: absolute;
	top: 0;
	left: 0;
	width: 100% !important;
	height: 100% !important;
}

.skill-item .chart:before
{
	content: "";
	width: 0;
	height: 100%;

}

.skill-item .chart:before,
.skill-item .percent
{
	display: inline-block;
	vertical-align: middle;
}

.skill-item .percent
{
	position: relative;
	line-height: 1;
	font-size: 40px;
	font-weight: 900;

}

.skill-item  .percent:after
{
	content: attr(data-after);
	font-size: 20px;
}
.skill-item p{
	font-weight: 700;
}

#projects img{
	border-radius: 0px;
}

.pricing{
	margin: 20px 200px;
	align-items: center;
}

.box-container{
	position: relative;
	margin: 20px auto;
	width: 95%;
	height: 500px;
	cursor: pointer;
	text-align: center;
}
.box-container div{
	position: absolute;
	width: 95%;
}
.front-card , .back-card{
	width: 100%;
	height: 100%;
	overflow: hidden;
  	backface-visibility: hidden;
 	position: relative;
 	box-shadow: 1px 1px 8px 1px #888888;
 	transition: transform .6s linear;
}
.front-card{
	background: url("image/background-textures.png");
  transform: perspective(600px) rotateY(0deg);
}
.back-card{
  transform: perspective(600px) rotateY(180deg);
}
.front-card h1{
	position: relative;
	top: 50%;
	color: white;
	text-shadow: 1px 0px 3px #888888;
}
.back-card h2{
	position: relative;
	top: 15%;
	text-transform: uppercase;
	color: crimson;
}
.box-container:hover > .front-card{
  transform: perspective(600px) rotateY(-180deg);
}
.box-container:hover > .back-card{
  transform: perspective(600px) rotateY(0deg);
}
/************************************/



/**********Extra************/
.intro{
	margin-left: 15%;
}
.intro h1{
	text-shadow: 2px 2px 5px black;
	font-size: 45px;
}
.intro h2{
	text-shadow: 1px 1px 3px black;
	font-size: 30px;
}

#name{
	font-size: 60px;
}
.post{
	color: crimson;
}
.home-container a{
	display: inline-block;
	text-decoration: none;
	margin-top:  20px;
	margin-left: 15%;
	padding: 12px 25px;
	font-size: 30px;
	color: white;
	font-family: 'Ubuntu' , sans-serif;
	border: 2px solid crimson;
	border-radius: 25px;
	transition: all 0.6s ease;
}
.home-container a:hover{
	background-color: crimson;
	color: white;

}
/****************************/

/************************Mobile View*******************************/

@media (max-width: 991px){

	.intro h1{
		font-size: 40px;
	}
	.intro h2{
		font-size: 25px;
	}
	#name{
		font-size: 50px;
	}
	.home-container a{
		font-size: 25px;
	}

}

@media  (max-width: 947px){
	.max-width{
        padding: 0 50px;
    }
	.nav-bar ul.nav-menu li{
		display: none;
	}
	
	
	.nav-bar ul.nav-menu li.dropDownIcon{
		display: block;

	}

	/*.nav-bar ul.nav-menu.responsive li.dropDownIcon{
		position: absolute;
		top: 0;
		right: 0;
	}*/
	.nav-bar ul.nav-menu.responsive{
		position: fixed;
		top: 0;
		left: 0;
		height: 720px;
		width: 100%;
		margin-left: 0;
		background: black;
	}
	.nav-bar ul.nav-menu.responsive li{
		display: inline;
	}

	.nav-bar ul.nav-menu.responsive li a{
		display: block;
		text-align: center;
		padding: 15px;
		margin: 0px;
	}
	.max-width{
        max-width: 930px;
    }
	
}
@media  (max-width: 768px){
	.pricing{
		margin: 10px 15px;
	}
.col-2{
	width: 33%;
	margin: 0;
}
.item-container .parcent svg{
	margin-left: 25%;
	}

.col-6 {
		width: 100%;
		margin: 0;
	}

.text-container h2{
	font-size: 16px;
}

.text-container p{
	font-size: 10px;
}
	
}

@media  (max-width: 690px){
	.pricing{
		margin: 0px 130px;
	}

	.col-3 , .col-4 {
		width: 100%;
		margin: 0;
	}
	.max-width{
        padding: 0 23px;
    }

	.intro h1{
		font-size: 30px;
	}
	.intro h2{
		font-size: 16px;
	}
	#name{
		font-size: 40px;
	}
	.home-container a{
		font-size: 16px;
	}
	
	
	
}
@media  (max-width: 500px){
	.pricing{
		margin: 10px 30px;
	}
	.col-2{
	width: 50%;
	margin: 0;
	}
	.item-container .parcent svg{
	margin-left: 15%;
	}

	.intro h1{
		font-size: 30px;
	}
	.intro h2{
		font-size: 16px;
	}
	#name{
		font-size: 40px;
	}
	.home-container a{
		font-size: 16px;
	}
	
	.nav-bar ul.nav-menu li{
		display: none;
	}
	
}

