* {
	box-sizing: border-box;
	margin: 0;
	padding: 0;
	text-decoration: none;
	outline: none;
} 

html {
	scroll-behavior: smooth;
} 

html, body {
	margin: 0;
	font-family: 'Poppins', sans-serif;  
	overflow-x: hidden;  
	width: 100%;  
	background: #0B1C32;
}  

/*scrollTop*/
.scrollTop {  
	position: fixed;
	bottom: 800px;
	left: 15px;
	width: 35px;
	height: 35px;
	background: #ffa500 url(images/right-arrow2.png);
	-moz-border-radius: 10px;
	border-radius: 10px; 
	background-size: 20px;
	background-position: center;
	background-repeat: no-repeat;
	cursor: pointer;
	z-index: 100000;
	visibility: hidden;
	opacity: 0;
	transition: 0.5s;
	font-weight: 600;  
}

.scrollTop.active {  
	bottom: 60px;
	visibility: visible;
	opacity: 1;
}

.scrollTop:hover {
	-moz-border-radius: 12px;
	border-radius: 12px; 
}
/*section-title*/
.section-title {  
	-ms-flex: 0 0 100%;
	flex: 0 0 100%;
	max-width: 100%;
	max-width: 100%;
	margin-bottom: 40px; 
}

.section-title h1 { 
	display: inline-block;
	font-size: 35px;
	text-transform: uppercase;
	font-weight: 700;
	color: #000000;
	margin: 0 0 10px;
	position: relative;
	-moz-transform: skew(-24deg, 0deg);
	-webkit-transform: skew(-24deg, 0deg);
	-o-transform: skew(-24deg, 0deg);
	-ms-transform: skew(-24deg, 0deg);
	transform: skew(-24deg, 0deg);
	color: #e7eaf6;
}

.section-title h1::before {
	content: "";
	left: 0;
	position: absolute;
	height: 4px;
	right: 30%;
	background-color: #D90D32;
	bottom: 0px;
} 

/*for sub title insection-title*/
.section-title h4 {
	color: #e7eaf6;
}

.text-center {
	text-align: center;
}

.text-left {
	text-align: left;
}

.text-right {
	text-align: right;
}

/*header*/
header { 
	position: absolute;
	left: 0;
	right: 0;
	/*border-bottom: 1px solid #0B1C32;  #423940;*/
	padding: 0 15px;
	z-index: 10;
	height: 75px; 
	width: 100%;   
}

header.fixed {
	background-color: #0B1C32;
	position: fixed;
	border-color: #0B1C32;
	z-index: 11;
	-webkit-animation: fixHeader 1s ease;
	animation: fixHeader 1s ease;  
}

@-webkit-keyframes fixHeader {
	0% {
		-webkit-transform: translateY(-100%);
		        transform: translateY(-100%)
	}
	100% {
		-webkit-transform: translateY(-%);
		        transform: translateY(-%)
	}
}
@keyframes fixHeader {
	0% {
		-webkit-transform: translateY(-100%);
		        transform: translateY(-100%)
	}
	100% {
		-webkit-transform: translateY(-%);
		        transform: translateY(-%)
	}
}

.container {
	max-width: 1140px; 
	margin: auto;
	width: 100%;   
}

.row {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
}

header .row {
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
}

header .brand-name img { 
	width: 130px;
	height: 120px; 
	position: absolute;
	top: 5px;    
}   

header .navbar ul {
	list-style: none;
	padding: 0;
	margin: 0;  
}

header .navbar ul li {
	display: inline-block;
	margin-left: 35px; 
}

header .navbar ul li a {
	font-size: 15px;
	text-decoration: none;
	line-height: 72px;
	color: #e7eaf6;  
	display: block;
	font-weight: 700;
	position: relative;
}

header.fixed .navbar ul li a {
	color: #e7eaf6;
}

header .navbar ul li a::before {
	content: "";
	height: 3px;
	background-color: #e7eaf6; 
	width: 0;
	position: absolute;
	right: 0;
	bottom: 22px; 
	-webkit-transition: all .5s ease; 
	-o-transition: all .5s ease;
	transition: all .5s ease;
} 

header.fixed .navbar ul li a::before {
	background-color: #D90D32;
}

header .navbar ul li a:hover::before,
header .navbar ul li a.active::before {
	width: 100%;
	left: 0;
}

/*home*/
.home { 
	min-height: 100vh;
	position: relative;
	clip-path: polygon(100% 0%,100% 80%, 50% 100%,0 80%,0 0); 
	background-image: url("images/hero8.png"); 
	background-size: cover;	
	background-position: center;
	
} 

.home .full-screen { 
	min-height: 100vh;  
}

.home .home-content {
	-webkit-box-flex: 0;
	-ms-flex: 0 0 100%;
	flex: 0 0 100%;
	min-height: 100vh;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center; 
}

/*clip-path*/ 

.home .home-content .block {  
	position: relative;
	width: 100%;
	height: 100%;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column; 
	text-align: center;   
} 

.home .home-content .block h6 {
	color: #e7eaf6;  
	font-size: 23px;
	font-weight: 700;
	padding: 0;
	margin: 0; 
	margin-bottom: 8px;
}

.home .home-content .block h1 {
	color: #fff;
	font-size: 70px;
	font-weight: 600; 
	padding: 0; 
	margin: 0;   
	letter-spacing: 7px;
	-webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-shadow:   0px -6px 0 #e7eaf6,  
                 0px -6px 0 #e7eaf6,
                 0px  6px 0 #e7eaf6,
                 0px  6px 0 #e7eaf6,
                -6px  0px 0 #e7eaf6,  
                 6px  0px 0 #e7eaf6,
                -6px  0px 0 #e7eaf6,
                 6px  0px 0 #e7eaf6,
                -6px -6px 0 #e7eaf6,  
                 6px -6px 0 #e7eaf6,
                -6px  6px 0 #e7eaf6,
                 6px  6px 0 #e7eaf6,
                -6px  14px 0 #e7eaf6,
                 0px  14px 0 #e7eaf6,
                 6px  14px 0 #e7eaf6,
                 0 19px 1px rgba(0,0,0,.1),
                 0 0 6px rgba(0,0,0,.1),
                 0 6px 3px rgba(0,0,0,.3),
                 0 12px 6px rgba(0,0,0,.2),
                 0 18px 18px rgba(0,0,0,.25),
                 0 24px 24px rgba(0,0,0,.2),
                 0 36px 36px rgba(0,0,0,.15);

}

.home .home-content .block h1 .red {
	color: #D90D32;
}

.home .home-content .block h1 .yellow {
	color: #ffa500;
}

.home .home-content .block h3 {
	font-size: 33px;
	font-weight: 700;
	letter-spacing: 1px;
    text-transform: uppercase;
	padding: 0;
	margin: 0;
	margin-top: 10px;
	color: #fff;  
}


.home .home-content .block .cv-btn {
	padding-top: 20px;
}

.home .home-content .block .cv-btn a {
	-moz-border-radius: 50px;
	border-radius: 50px;
	color: #e7eaf6;
	padding: 10px 12px;
  	text-decoration: none;
 	display: inline-block;
  	font-size: 15px;
	text-transform: uppercase;
	font-weight: 600;
	-webkit-transition: all .5s ease; 
	-o-transition: all .5s ease;
	transition: all .5s ease;
	background-color: #D90D32;
}

.home .home-content .block .cv-btn a:hover { 
	background-color: #ffa500; 
}

.img-language {  
	position: absolute;
	width: 18px;
	height: 18px;
	top: 80px;
	right: 0px; 
	margin-bottom: 1px; 
}

.img-language img{  
	width: 100%;
	height: 100%;
	-moz-border-radius: 4px;
	border-radius: 4px;
} 

 


/*css Scroll Indicator Animation*/
.box1 { 
	z-index: 5000; 
	position: absolute;
	top: 80%;
	left: 50%;
	transform: translate(-50%,0); 
}

.box1 span {
	display: block;
	width: 20px;
	height: 20px;
	border-bottom: 3px solid #e7eaf6;
	border-right: 3px solid #e7eaf6;
	transform: rotate(45deg);
	margin: -8px;
	animation: animate 2s infinite;
}

.box1 span:nth-child(2) {
	animation-delay: -0.2s;
}

.box1 span:nth-child(3) {
	animation-delay: -0.4s;
}

@keyframes animate {
	0% {
		opacity: 0;
		transform: rotate(45deg) translate(-20px, -20px);
	}
	50% {
		opacity: 1;
	}
	100% {
		opacity: 0;
		transform: rotate(45deg) translate(20px, 20px);
	}
}

/*about*/
.about-me {
	padding: 100px 15px;
	background-color: #0B1C32;
}  

.about-me .section-title h1::before {
	left: 30%;
}

.text-uppercase {
	text-transform: uppercase !important;
} 

.about-me .about-content .img {
	display: flex;
	flex: 0 0 33.33%;
	max-width: 33.33%; 
	height: 500px;  
	justify-content: center;
}

.about-me .about-content .img img {
	width: 96%;
  	height: 94%;
	display: block;
	-moz-border-radius: 4px;
	border-radius: 4px;   
  	margin: auto; 
} 

.about-me .about-content .text { 
	-webkit-box-flex: 0;
	-ms-flex: 0 0 66.66%;
	flex: 0 0 66.66%;
	max-width: 66.66%;
	padding-left: 30px;
	padding-top: 15px;
}

/*.about-me .about-content .text .iAm {
	color: #e7eaf6; 
	font-weight: 700; 
	font-size: 15px;
}*/

.about-me .about-content .text .myName {
	color: #ffa500; 
	font-weight: 700;
	/*text-transform: uppercase;*/
	font-size: 30px;
}

.about-me .about-content .text h6 {
	font-size: 18px;
	font-weight: 700;
	margin: 0 0 15px;
	color: #000;
}

.about-me .about-content .text h6 span {
	color: #D90D32;
	font-size: 30px;
	font-weight: 900;
}

.about-me .about-content .text p {
	font-size: 15px;
	font-weight: 700;
	line-height: 24px;
	color: #e7eaf6;
	margin: 0 0 20px; 
    text-align: justify;
}

.about-me .about-content .text .info {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
	margin-top: 10px; 
	padding: 20px 20px ;  
}

.about-me .about-content .text .info .list {
	-webkit-box-flex: 0;
	-ms-flex: 0 0 calc(50% - 15px);
	flex: 0 0 calc(50% - 15px);
	max-width: calc(50% - 15px);
	margin-top: 10px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	border-bottom: 1px solid #e7eaf6;
	padding-bottom: 10px;
}

.about-me .about-content .text .info .list .fa {
	font-size: 20px;
	margin-right: 4px;
	color: #ffa500;
	font-weight: 700;
}

.about-me .about-content .text .info .list label {
	padding-right: 10px;
	color: #000;
	font-weight: 500;
	font-size: 15px;
}

.about-me .about-content .text .info .list label span{
	font-weight: 700;
	font-size: 15px;
	color: #e7eaf6;
}

.about-me .about-content .text .info .list p {
	margin: 0;
	font-weight: 700; 
	font-size: 15px;
}

/*social-links*/
.about-me .about-content .text .social-links {
	padding-top: 30px;
}

.about-me .about-content .text .social-links a {
	height: 35px;	
	width: 35px;  
	/*background-color: #ff3333;*/
	/*-moz-border-radius: 3px;*/ 
	/*border-radius: 3px;*/ 
	/*border: 1px solid #ff3333;*/ 
	display: inline-block;
	line-height: 35px;
	text-align: center;
	margin: 0 1px;
	-webkit-transition: all .5s ease; 
	-o-transition: all .5s ease;
	transition: all .5s ease; 
}

.about-me .about-content .text .social-links a:hover {
	-webkit-transform: translateY(-2px); 
	-ms-transform: translateY(-2px); 
	transform: translateY(-2px);
}

.about-me .about-content .text .social-links a .fa-brands {     
	color: #e7eaf6;
	font-size: 20px;
	-webkit-transition: all .5s ease; 
	-o-transition: all .5s ease;
	transition: all .5s ease; 
}  

/*font awesome 4.7*/

.about-me .about-content .text .social-links a .fa-whatsapp { 
	color: #3BBE22;
} 

.about-me .about-content .text .social-links a .fa-linkedin { 
	color: #007BB6;
} 

.about-me .about-content .text .social-links a .fa-instagram { 
	color: #AC07EA;
} 

.about-me .about-content .text .social-links a .fa-facebook-f { 
	color: #0866FF;
} 

/*font awesome 6.0*/
.about-me .about-content .text .social-links a .fa-tiktok { 
	color: #000000;
	text-shadow: 1px 1px 2px #e7eaf6;
} 

.about-me .about-content .text .social-links a .fa-youtube { 
	color: #D90D32;
	text-shadow: 1px 1px 2px #e7eaf6;
} 

.about-me .about-content .text .social-links a .fa-facebook-f { 
	color: #0866FF;
	text-shadow: 1px 1px 2px #e7eaf6;
} 


/*service*/
.services { 
	padding: 100px 15px 70px;  
}

.services .section-title h1::before {
	left: 30%;
}

.services .service-content {
	-webkit-box-flex: 0;
	-ms-flex: 0 0 100%;
	flex: 0 0 100%;
	max-width: 100%;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
}

.services .service-content .box {
	background-color: #0B1C32;
	padding: 30px;
	-webkit-box-flex: 0;
	-ms-flex: 0 0 calc(33.33% - 20px);
	flex: 0 0 calc(33.33% - 20px);
	max-width: calc(33.33% - 20px);
	margin-bottom: 30px;
	border: 2px solid #e7eaf6;
	text-align: center;
	position: relative;
	-moz-border-radius: 50px;
	border-radius: 50px;
	-webkit-box-shadow: 0 0 20px rgba(48, 46, 77, .15);
	box-shadow: 0 0 20px rgba(48, 46, 77, .15);
	-webkit-transition: -webkit-transform .8s ease;
	transition: -webkit-transform .8s ease;
	-o-transition: transform .8s ease;
	transition: transform .8s ease;
	transition: transform .8s ease, -webkit-transform .8s ease;
}

.services .service-content .box::before {
	content: "";
	height: 3px;
	background-color: #D90D32;
	position: absolute;
	bottom: -2px;
	width: 50px;
	left: 0;
	right: 0;
	margin: auto;
	transition: all .8s ease;  
} 

.services .service-content .box::after {
	content: "";
	height: 3px;
	background-color: #D90D32;
	position: absolute;
	top: -2px;
	width: 50px;
	left: 0;
	right: 0;
	margin: auto;
	-webkit-transition: all .8s ease;
	-o-transition: all .8s ease;
	transition: all .8s ease;
}

.services .service-content .box:hover::before,
.services .service-content .box:hover::after {
	width: 50px;
	background-color: #ffa500;
}

.services .service-content .box:hover {
	-webkit-transform: translateY(-10px);
	-ms-transform: translateY(-10px);
	transform: translateY(-10px);
}

.services .service-content .box .icon {
	width: 60px;
	height: 60px;
	background-color: #D90D32;
	margin: 15px auto 20px; 
	-moz-border-radius: 50%;
	border-radius: 50%;
	text-align: center;
	-webkit-transition: all .8s ease;
	-o-transition: all .8s ease;
	transition: all .8s ease;
}

.services .service-content .box .icon .fa-solid
{
	font-size: 34px;
	color: #e7eaf6;
	line-height: 60px; 
}

.services .service-content .box:hover h5 {
	/*color: #ff3333;*/
}

.services .service-content .box h5 {
	font-size: 22px;
	font-weight: 900;
	color: #ffa500;
	margin: o;
}

.services .service-content .box p {
	font-size: 15px;
	font-weight: 900;
	line-height: 24px;
	color: #e7eaf6;
	margin: 10px 0 10px;  
	line-height: 1.7;
	letter-spacing: 1px; 
	text-align: justify;
}

/*skills*/
.skills {
	padding: 100px 15px;
	background: #0B1C32;
}


.skills .section-title h1::before {
	left: 30%;
}

.skills .skills-content { 
	-webkit-box-flex: 0;
	-ms-flex: 0 0 50%;
	flex: 0 0 50%;
	max-width: 50%;
	padding: 0px 40px;
}

.skills .img {
	-webkit-box-flex: 0;
	-ms-flex: 0 0 50%;
	flex: 0 0 50%;
	max-width: 50%;
	height: 570px;
	padding: 22px;
}

.skills .img img {
	width: 100%;
	height: 100%;
	-moz-border-radius: 4px;
	border-radius: 4px;
	display: block;
	-o-object-fit: cover;
	object-fit: cover;
}

.align-items-center {
	align-items: center;
} 

.skills .skills-content .section-title p{
	font-size: 15px;
	font-weight: 700;
	line-height: 24px;
	color: #e7eaf6;
	margin: 15px 0 0;
	line-height: 1.7;
	letter-spacing: 1px; 
	text-align: justify;
}

.skills .skills-content .skill-box {
	-webkit-box-flex: 0;
	-ms-flex: 0 0 100%;
	flex: 0 0 100%;
	max-width: 100%;
	margin-bottom: 30px;
	-webkit-box-shadow: 0 4px 20px rgba(14, 36, 49, 0.15);
	box-shadow: 0 4px 20px rgba(14, 36, 49, 0.15);
	padding: 5px 6px; 
}

.skills .skills-content .skill-box h6 {
	font-size: 17px;
	font-weight: 700;
	color: #D90D32;
	margin: 0 0 10px; 
}

.skills .skills-content .skill-box .skill-bar {
	height: 6px;
	background-color: #e7eaf6;
	position: relative;
	-moz-border-radius: 4px;
	border-radius: 4px; 
}

.skills .skills-content .skill-box .skill-bar .skill-bar-in {
	background-color: #ffa500;
	position: absolute;
	left: 0;
	top: 0;
	height: 100%;
	-moz-border-radius: 4px;
	border-radius: 4px;  
}

.skills .skills-content .skill-box .skill-bar .skill-bar-in span {
	color: #e7eaf6;
	font-size: 16px;
	font-weight: 900;
	position: absolute;
	right: -10px;
	top: -30px;
}

.skills .img {
	-o-object-fit: cover;
	object-fit: cover; 
}

/*portfolio work*/
.portfolio { 
	padding: 100px 7px;
}

.portfolio .section-title h1::before {
	left: 30%;
}

.portfolio .filter-buttons {
	-webkit-box-flex: 0;
	-ms-flex: 0 0 100%;
	flex: 0 0 100%;
	max-width: 100%;
	margin-bottom: 25px;
}
 
.portfolio .filter-buttons ul {
	list-style: none;
	text-align: center;
	padding: 0;
}

.portfolio .filter-buttons ul li { 
	color: #e7eaf6;
	font-size: 16px;
	font-weight: 600;
	display: inline-block;
	margin: 0 8px;
	text-transform: uppercase;
	cursor: pointer;
	padding-bottom: 0;
}

.portfolio .filter-buttons ul li.active {
	color: #ffa500;
	border-bottom: 2px solid #ffa500;
} 

.portfolio .portfolio-gallery {
	-webkit-box-flex: 0;
	-ms-flex: 0 0 100%;
	flex: 0 0 100%;
	max-width: 100%;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap; 
}

.portfolio .portfolio-gallery .item {
	-webkit-box-flex: 0;
	-ms-flex: 0 0 33%;
	flex: 0 0 33%;
	max-width: 33%;
	position: relative;
	padding: 8px;
	-webkit-box-shadow: 0 0 20px rgba(48, 46, 77, .15);
	box-shadow: 0 0 20px rgba(48, 46, 77, .15);
	margin-bottom: 7px;
}

.portfolio .portfolio-gallery .item .inner {
	position: relative;
	height: 250px; 
}

.portfolio .portfolio-gallery .item img {
	width: 100%;
	height: 100%;
	display: block; 
	-moz-border-radius: 35px;
	border-radius: 35px;
}

.portfolio .portfolio-gallery .item .overlay {
	position: absolute;
	left: 0;
	right: 0;
	top: 0;
	bottom: 0;
	background-color: rgba(0, 0, 0, .5);
	z-index: 10;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: nowrap;
	flex-wrap: nowrap;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	filter:Alpha(opacity=0);
	opacity: 0;
	visibility: hidden;
	-webkit-transition: all .5s ease;
	-o-transition: all .5s ease;
	transition: all .5s ease;
	-moz-border-radius: 35px;
	border-radius: 35px;
}

.portfolio .portfolio-gallery .item:hover .overlay {
	filter:Alpha(opacity=100);
	opacity: 1;
	visibility: visible; 
}

.portfolio .portfolio-gallery .item .overlay .fa {
	width: 50px;
	height: 50px;
	background-color: #D90D32;
	color: #fff;
	display: inline-block;
	text-align: center;
	line-height: 50px;
	-moz-border-radius: 50%
	border-radius: 50%;
	cursor: pointer;
	-moz-border-radius: 20px;
	border-radius: 20px;
}

.portfolio .portfolio-gallery .item:hover .overlay .fa {
	-webkit-animation: galleryicon .8s ease; 
	animation: galleryicon .8s ease; 
}

@-webkit-keyframes galleryicon {
	0% {
		-webkit-transform: translateY(-20px);
		transform: translateY(-20px);
		filter:Alpha(opacity=0);
		opacity: 0;
	}

	100% {
		-webkit-transform: translateY(0);
		transform: translateY(0);
		filter:Alpha(opacity=100);
		opacity: 1;
	}
}

@keyframes galleryicon {
	0% {
		-webkit-transform: translateY(-20px);
		transform: translateY(-20px);
		filter:Alpha(opacity=0);
		opacity: 0;
	}

	100% {
		-webkit-transform: translateY(0);
		transform: translateY(0);
		filter:Alpha(opacity=100);
		opacity: 1;
	}
}

.portfolio .portfolio-gallery .item .overlay h4 {
	margin-top: 15px;
	font-size: 25px;
	color: #fff;
	font-weight: 600; 
}

.portfolio .portfolio-gallery .item:hover .overlay h4 {
	-webkit-animation: galleryicon .8s ease; 
	animation: gallerytext .8s ease; 
}

@-webkit-keyframes gallerytext {
	0% {
		-webkit-transform: translateY(20px);
		transform: translateY(20px);
		filter:Alpha(opacity=0);
		opacity: 0;
	}

	100% {
		-webkit-transform: translateY(0);
		transform: translateY(0);
		filter:Alpha(opacity=100);
		opacity: 1;
	}
}

@keyframes gallerytext {
	0% {
		-webkit-transform: translateY(20px);
		transform: translateY(20px);
		filter:Alpha(opacity=0);
		opacity: 0;
	}

	100% {
		-webkit-transform: translateY(0);
		transform: translateY(0);
		filter:Alpha(opacity=100);
		opacity: 1;
	}
}

/*light-box*/
.light-box {
	position: fixed;
	left: 0;
	top: 0;
	right: 0;
	bottom: 0;
	z-index: 100;
	background-color: rgba(0, 0, 0, 0.6);
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
}

.light-box.show {
	display: flex;
}

.light-box.hide {
	display: none;
}

.light-box .close-light-box {
	width: 35px;
	height: 35px;
	background-color: #fff;
	color: #D90D32;
	text-align: center;
	line-height: 35px;
	position: absolute;
	right: 10px;
	top: 10px;
	cursor: pointer;
	-moz-border-radius: 50%;
	border-radius: 50%;
	z-index: 101;
}

.light-box img {
	max-width: 90%;
	max-height: 80%;
	display: block;
}

/*get in touch*/
.message-text {
	/*background-color: #1d2125;*/
	/*padding: 50px 15px; */
	background-image: url("images/hero3.png"); 
	padding: 50px 20px 50px 20px;
	background-size: cover;	
	background-position: center;
}

.message-text .text { 
	-ms-flex: 0 0 66.66%;
	flex: 0 0 66.66%;
	max-width: 66.66%;  
}

.message-text .text h1 {
	font-size: 20px;
	font-weight: 700; 
	margin: 0;
	margin-bottom: 10px;
	padding: 0;
	line-height: 35px;
	text-align: justify; 
	color: #ffa500;
} 

.message-text .text ul li #checkmark {
    font-size: 20px;
	color: #ffa500;
}

.message-text .text ul li {
	font-size: 15px;
	font-weight: 700;
	color: #e7eaf6;
	margin: 0;
	/*margin-left: 10px;*/
	padding: 0;
	line-height: 35px;
	text-align: justify;
}

/*.message-text .text ul li::marker {
	color: #ffa500; 
	-moz-border-radius: 50px;
	border-radius: 50px;
}*/

.message-text .button { 
	-ms-flex: 0 0 33.33%;
	flex: 0 0 33.33%;
	max-width: 33.33%;
	text-align: right;  
}

.message-text .button a { 
	color: #e7eaf6;
	padding: 12px 19px;
	text-decoration: none;
	display: inline-block;
	font-size: 16px;
	text-transform: uppercase;
	font-weight: 700;
	-webkit-transition: all .8s ease;
	-o-transition: all .8s ease;
	transition: all .8s ease;
	background-color: #D90D32;
	-moz-border-radius: 50px;
	border-radius: 50px;
    
}
	
.message-text .button a:hover { 
	background-color: #ffa500; 
}

/*testimonials*/
.testimonials {  
	margin-top: 80px;
	background: #0B1C32; 
}

.testimonials .section-title h1::before {
	left: 30%;
}  

.testimonials .testimonials-content {
	width: 100%;
} 

.testimonials .testimonials-content .testi-slider {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between; 
}

.testimonials .testimonials-content .testi-slider .slide { 
	border: 2px solid #e7eaf6;
	padding: 40px 20px 25px;
	-moz-border-radius: 50px;
	border-radius: 50px;
	width: 30%;
	outline: none;
	margin: 15px;
	text-align: center;
	-webkit-box-shadow: 0 0 20px rgba(48, 46, 77, .15);
	box-shadow: 0 0 20px rgba(48, 46, 77, .15);
} 

.testimonials .testimonials-content .testi-slider .slide .fa.fa-quote-left {
	font-size: 50px;
	font-weight: 600;
	color: #D90D32; 
}

.testimonials .testimonials-content .testi-slider .slide .testemonial-p {
	font-size: 15px;
	font-weight: 700;
	margin: 12px 0;
	color: #e7eaf6;
	line-height: 1.7;
	letter-spacing: 1px;  
	text-align: justify;
}

.testimonials .testimonials-content .testi-slider .slide .rating .fa {
	color: #ffa500;  
}

/*.testimonials .testimonials-content .testi-slider .slide img {
	width: 100px; 
	-moz-border-radius: 50%;
	border-radius: 50%;
	display: block;
	margin: 20px auto; 
}*/

.testimonials .testimonials-content .testi-slider .slide h3 {
	font-weight: 700;
	color: #e7eaf6;  
	font-size: 18px;
	margin-top: 20px;
}

/*.testimonials .testimonials-content .testi-slider .slide .job {
	color:#ffb133; 
	font-size: 18px;
	font-weight: 700;
	margin-top: 1px;
} */

.slick-dots li button:before {  
		color: #e7eaf6 ! important;   
	}

/*pricing*/
.Pricing {   
	padding: 100px 0px; 
	background: #0B1C32;
}

.Pricing .row { 
}

.Pricing .section-title h1::before {
	left: 30%;
}  

.package-container {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	width: 100%;
}

.packages {
	-webkit-box-flex: 0;
	-ms-flex: 0 0 32%;
	flex: 0 0 32%;
	max-width: 32%;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	text-align: center;
	-moz-border-radius: 50px;
	border-radius: 50px;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	border: 2px solid #e7eaf6;
	-webkit-transition: -webkit-transform .8s ease;
	transition: -webkit-transform .8s ease;
	-o-transition: transform .8s ease;
	transition: transform .8s ease;
	transition: transform .8s ease, -webkit-transform .8s ease;
	outline: none;
	-webkit-box-shadow: 0 0 20px rgba(48, 46, 77, .15);
	box-shadow: 0 0 20px rgba(48, 46, 77, .15); 
}


.packages:hover {
	-webkit-transform: translateY(-8px);
	-ms-transform: translateY(-8px);
	transform: translateY(-8px);
}

.packages .hour { 
	margin-top: 30px;
	color: #D90D32;  
}

.packages .duration {  
	color: #D90D32;   
}
 

.packages .text2 {  
	color: #ffa500;
	margin-top: 20px;  
	margin-bottom: 20px; 
	font-size: 30px; 
}   

.packages .text2 .dh {  
	font-size: 12px;  
}  

.packages .list li {
	color: #e7eaf6;
	font-size: 15px;
	font-weight: 700;
	list-style: none;
	border-bottom: 2px solid #e7eaf6; 
	border-width: 1px;
	padding: 10px;
}

.first
{
    margin-top: 20px;
    border-top: 2px solid #e7eaf6;
}
.packages .list
{
    width: 80%;
}
ul
{
    padding: 0;
}
.packages h1,
.packages h2
{
    font-size: 25px;
}

.packages .button { 
	-moz-border-radius: 50px;
    border-radius: 50px;
	color: #e7eaf6; 
	padding: 10px 20px;
	margin: 0px 15px 25px;
	text-decoration: none;
	font-size: 14px;
	text-transform: uppercase;
	font-weight: 600;
	-webkit-transition: all .8s ease;
	-o-transition: all .8s ease;
	transition: all .8s ease;
	background-color: #D90D32; 
	
}

.packages .button:hover
{
    background-color: #ffa500;
} 

/*contact us*/
.contact-us {
	padding: 100px 5px; 
}

.contact-us .section-title h1::before {
	left: 30%;
}

.contact-us .contact-form {
	background-color: #fff;
	-webkit-box-flex: 0;
	-ms-flex: 0 0 100%;
	flex: 0 0 100%;
	max-width: 100%;
	padding: 50px;
	border: 2px solid #e7eaf6;
	-moz-border-radius: 50px;
	border-radius: 50px;
	background: #0B1C32;
}

/*.contact-us .contact-form .text {
	-webkit-box-flex: 0;
	-ms-flex: 0 0 100%;
	flex: 0 0 100%;
	max-width: 100%;
	padding-bottom: 20px;
}

.contact-us .contact-form .text h2 {
	font-size: 25px;
	font-weight: 700; 
	margin: 0;
	padding: 0;
	color: #e7eaf6;
}

.contact-us .contact-form .text p {
	font-size: 15px;
	font-weight: 700;
	line-height: 24px;
	color: #e7eaf6;
	margin: 0;
}*/

.contact-us .contact-form .contact-info {
	-ms-flex-pack: distribute;
	justify-content: space-around;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	margin-bottom: 30px;
}

.contact-us .contact-form .contact-info .inner-contact { 
	padding: 20px; 
	text-align: center;  
}

.contact-us .contact-form .contact-info .inner-contact .fa {
	font-size: 30px;
	color: #D90D32; 
	font-weight: 600;
}

.contact-us .contact-form .contact-info .inner-contact h3 {
	margin: 7px 0;
	color: #ffa500; 
	font-weight: 700;
}

.contact-us .contact-form .contact-info .inner-contact p {
	color: #e7eaf6; 
	font-size: 16px;
	font-weight: 700; 
}

.contact-us .contact-form .space-between {
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
}

.contact-us .contact-form .col-6 {
	-webkit-box-flex: 0;
	-ms-flex: 0 0 calc(33.33% - 15px);
	flex: 0 0 calc(33.33% - 15px);
	max-width: calc(50% - 15px); 
}

.contact-us .contact-form .col-12 {
	-webkit-box-flex: 0;
	-ms-flex: 0 0 100%;
	flex: 0 0 100%;
	max-width: 100%; 
} 

.contact-us .contact-form .form-control {
	height: 45px;
	width: 100%;
	margin-bottom: 15px;
	border: 2px solid #e7eaf6;
	-moz-border-radius: 50px;
	border-radius: 50px;
	padding: 6px 12px;
	font-size: 14px;
	font-weight: 400;
	font-family: "Poppins", sans-serif;
	-webkit-box-shadow: 0 0 20px rgba(48, 46, 77, .15);
	box-shadow: 0 0 20px rgba(48, 46, 77, .15);
	background: #0B1C32;
} 

.contact-us .contact-form textarea.form-control {
	height: 140px; 
	display: block;
	overflow: hidden;
	resize: none;
	margin-bottom: 25px; 
} 

.contact-us .contact-form textarea.form-control { 
	padding-left: 25px; 
} 

.contact-us .contact-form .form-control::placeholder {
	color:  #e7eaf6;
	font-weight: 900;
}

.contact-us .contact-form textarea.form-control:focus,
.contact-us .contact-form input.form-control:focus {
    color: #FAF9F6; 
} 

textarea:focus, input:focus{
    outline: none;
}

.contact-us .contact-form .button {
	-webkit-box-flex: 0;
	-ms-flex: 0 0 100%;
	flex: 0 0 100%;
	max-width: 100%;
	border: none;
} 

.contact-us .contact-form .button .button {
	-moz-border-radius: 50px;
	border-radius: 50px;
	border: none;
	color: #e7eaf6;
	padding: 12px 25px;
	text-decoration: none;
	font-size: 14px;
	text-transform: uppercase;
	font-weight: 600;
	-webkit-transition: all .8s ease;
	-o-transition: all .8s ease;
	transition: all .8s ease;
	background-color: #D90D32; 
}
	
.contact-us .contact-form .button .button:hover { 
	background-color:#ffa500;
}

.contact-us .form { 
	background-color:#0B1C32;
}

/*footer*/
footer {
	padding: 30px 15px;
	/*background-color: #1d2125;*/
	background-image: url("images/footerbg.png");
}

footer .brand-name { 
	width: 100px;
	height: 100px;
	margin: 0 auto 10px;
}

footer .brand-name img {
	width: 100%;
	height: 100%;
} 

footer .social {
	-webkit-box-flex: 0;
	-ms-flex: 0 0 100%;
	flex: 0 0 100%;
	max-width: 100%;
	text-align: center;
	padding-top: 15px;
}

footer .social a {
	color: #FFF;
	font-size: 25px;
	text-decoration: none;
	display: inline-block;
	margin: 0 12px;
	-webkit-transition: all .5s ease;
	-o-transition: all .5s ease;
	transition: all .5s ease;
}

footer .social a:hover {
	-webkit-transform: scale(1.2);
	-ms-transform: scale(1.2);
	transform: scale(1.2);
}


footer .social .fa-twitter {
	color: #55acee;
}


footer .social .fa-linkedin {
	color: #007BB6;
}

footer .social .fa-whatsapp {
	color: #3BBE22;
}

footer .social .fa-instagram {
	color: #AC07EA;
}

footer .social .fa-tiktok {
	color: #000000;
	text-shadow: 1px 1px 2px #e7eaf6;
}

footer .social .fa-youtube {
	color: #D90D32;
	text-shadow: 1px 1px 2px #e7eaf6;
}

footer .social .fa-facebook-f {
	color: #0866FF;
	text-shadow: 1px 1px 2px #e7eaf6;
}

/*copyright*/
.copyright {
	/*background-color: #1d2125;*/
	background-image: url("images/footerbg.png");
	border-top: 1px solid #0B1C32; 
	padding: 15px;
}

.copyright p{
	color: #e7eaf6;
	margin: 0;
	text-align: center;
	font-size: 15px;
	font-weight: 700;
}   

.ham-burger #sign-one,
.ham-burger #sign-two {
	font-size: 34px; 
	height: 35px;
	width: 35px;
	margin-right:10px; 
	color: #e7eaf6;
	text-align: center;
	line-height: 40px;
	-moz-border-radius: 3px;
	border-radius: 3px;
	cursor: pointer; 
	display: none; 
}

#res-menu {
	display: none;
}

/*success page*/  
.success { 
	margin: auto; 
	padding: 20px;   
}  

.success h1 {
	color: #ffa500;
}

.success p,
.success a {
	color: #ff3333;
	font-weight: 500; 
} 
 

/*Responsive 1*/
@media(max-width: 991px) {  
	
	.home .home-content .block h6 {
		font-size: 20px;
	}
	
	.home .home-content .block h1 { 
    font-size: 50px; 
	}
	
	.home .home-content .block h3 { 
    	font-size: 25px; 
	}
	
	  .home .home-content .block .cv-btn a {
    padding: 6px 15px;
    font-size: 14px;
  }
}

/*Responsive 2*/
@media(max-width: 802px) {  /*@media(max-width: 767px) {*/
	
	/*scrollTop*/
	.scrollTop {   
		left: 5px;
		width: 25px;
		height: 25px; 
		background-size: 14px; 
	}

	.scrollTop.active {  
		bottom: 20px; 
	}
	
	 /*make section title smaller*/ 
	.section-title h1 {  
		font-size: 25px;
  		padding: 20px; 
	}  
	
	/*.home .home-content .block h6 {
		font-size: 18px; 
		border: 2px solid green
	}
	
	.home .home-content .block h1 { 
    font-size: 44px; 
		border: 2px solid green
	}
	
	.home .home-content .block h3 { 
    font-size: 22px; 
		border: 2px solid green
	}
	
		
	.home .home-content .block .cv-btn a { 
		padding: 12px 25px; 
		font-size: 12px; 
		border: 2px solid green
	}*/
	
	header {
		padding: 15px;
		position: fixed;
		/*background-color: #0B1C32;*/
		border: none;
		/*border-bottom: 1px solid #0B1C32;*/
		z-index: 11;
		width: 100%;   
	}	
	
	header.fixed {
	background-color: transparent; 
	border-color: none; 
}

	header .brand-name img {
		width: 100px;
		height: 100px; 
		z-index: 100; 
	}  
	
	.ham-burger #sign-one {
		display: block;
	}
	
	#res-menu:checked ~ .navbar { 
		right: 0;  
	}
	
	#res-menu:checked ~ .ham-burger #sign-one {
		display: none;
	}
	
	#res-menu:checked ~ .ham-burger #sign-two {
		display: block;
	}

	.navbar {
		position: absolute;
		background-color: #0B1C32;
		right: -100%;
		top: 75px;
		padding: 15px;
		/*border-bottom: 1px solid #e7eaf6;*/
		width: 40%;
		text-align: center;
		-webkit-transition: all .8s ease;
		-o-transition: all .8s ease;
		transition: all .8s ease; 
	}
	
	.navbar.show {
		display: block;
	}
	
	header .navbar ul li {
		display: block;
		margin-left: 0; 
		border-bottom: 1px solid #e7eaf6;  
		-webkit-transition: all .5s ease;
		-o-transition: all .5s ease;
		transition: transform .5s ease;
	} 
	
	header .navbar ul li a {
		line-height: 42px;
		color: #e7eaf6;
		-webkit-transition: all .5s ease;
		-o-transition: all .5s ease;
		transition: all .5s ease; 
	}
	
	header .navbar ul li a:hover {
		-webkit-transform: scale(1.05);
		-ms-transform: scale(1.05);
		transform: scale(1.05);
		color: #ffa500;
	}
	
	header .navbar ul li:last-child {
		border-bottom: none;
	}
	
	header .navbar ul li a::before {
	/*to hide red line on home link*/
		content: none; 
	}
	
	.img-language {  
		position: absolute; 
		top: 78px;
    	right: 32px;
	}
	
	.about-me .about-content .text {
		-webkit-box-flex: 0;
		-ms-flex: 0 0 100%;
		flex: 0 0 100%;
		max-width: 100%;
		padding-left: 0px;
		padding-top: 30px;
	}
	
	.about-me .about-content .img {
		-webkit-box-flex: 0;
		-ms-flex: 0 0 100%;
		flex: 0 0 100%;
		max-width: 100%;
	} 

	.about-me .about-content .text .myName { 
		font-size: 25px;
	}  

	.about-me .about-content .text p {
		font-size: 14px;  
	}
	
	.about-me .about-content .text .social-links {
		text-align: center;
		
	} 
	
	.services .service-content .box {
		/*background-color: #fff;*/
		padding: 30px;
		-webkit-box-flex: 0;
		-ms-flex: 0 0 49%;
		flex: 0 0 49%;
		max-width: 49%;
	}
	
	.services .service-content .box p {
	font-size: 13px;   
	}
	
	.skills .skills-content {
		-webkit-box-flex: 0;
		-ms-flex: 0 0 100%;
		flex: 0 0 100%;
		max-width: 100%;
		padding: 00px;
	}
	
	.skills .skills-content .section-title p{
	font-size: 14px;  
}
	
	.skills .img {
		-webkit-box-flex: 0;
		-ms-flex: 0 0 100%;
		flex: 0 0 100%;
		max-width: 100%;
		padding: 22px 0px;
	}
	
	.portfolio .portfolio-gallery .item {
		-webkit-box-flex: 0;
		-ms-flex: 0 0 49.5%;
		flex: 0 0 49.5%;
		max-width: 50%;
		position: relative;
		padding: 8px;
		margin-bottom: 8px;
	}
	
	.message-text .text {
		-webkit-box-flex: 0;
		-ms-flex: 0 0 100%;
		flex: 0 0 100%;
		max-width: 100%;
	}
	
	.message-text .text h1 { 
		font-size: 17px;
		font-weight: 700;
		color: #fff;
		margin: 0;
		padding: 0;
		line-height: 35px;
		color: #ffa500; 
	} 
	
	.message-text .button {
		-webkit-box-flex: 0;
		-ms-flex: 0 0 100%;
		flex: 0 0 100%;
		max-width: 100%;
		text-align: center;
		padding-top: 20px;
	}
	
	.message-text .button a { 
		padding: 10px 22px; 
		font-size: 11px; 
	}
	
	  .package-container {
	  	-webkit-box-orient: horizontal;
	  	-webkit-box-direction: normal;
	  	-ms-flex-direction: row;
	  	flex-direction: row;
	  	-ms-flex-wrap: wrap;
	  	flex-wrap: wrap;
	  	padding: 8px;
	  }
	
	.packages .button {   
		padding: 10px 15px;   
		font-size: 11px;  
	}
	
	.packages {
		-webkit-box-flex: 0;
		-ms-flex: 0 0 100%;
		flex: 0 0 100%;
		max-width: 100%;
		position: relative;
		margin-bottom: 40px;
	}  
	
	.slick-dots li button:before {
		display: none;
	}
	
	.contact-us .contact-form .text { 
		text-align: center;
	}
	
	.contact-us .contact-form .contact-info .inner-contact {  
		width: 100%;
	}
	
	.contact-us .contact-form { 
		padding: 40px 20px; 
	}
	
	.contact-us .contact-form .col-6 {
		-webkit-box-flex: 0;
		-ms-flex: 0 0 100%;
		flex: 0 0 100%;
		max-width: 100%;
	}
	
		.contact-us .contact-form .button  {   
		text-align: center;
	}
	
	.contact-us .contact-form .button .button {  
		padding: 10px 15px; 
		font-size: 12px; 
		width: 90%;   
	}
}

/*media 650px*/
@media(max-width: 650px) { 

	.home .home-content .block h6 {
		font-size: 18px;  
	}
	
	.home .home-content .block h1 { 
    font-size: 44px;  
	}
	
	.home .home-content .block h3 { 
    font-size: 22px;  
	}
	
		
	.home .home-content .block .cv-btn a { 
		padding: 12px 25px; 
		font-size: 12px;  
	}
}

/*Responsive 500px*/
@media(max-width: 500px) {  
	
	.home {  
	background-image: url("images/hero8resp.png"); 
		
}
	
	.about-me .about-content .text .info .list p {
		-webkit-box-flex: 0;
		-ms-flex: 0 0 100%;
		flex: 0 0 100%;
	} 
	
	.services .service-content .box { 
		padding: 30px;
		-webkit-box-flex: 0;
		-ms-flex: 0 0 100%;
		flex: 0 0 100%;
		max-width: 100%; 
	}
	
	
	.portfolio .portfolio-gallery .item {
		-webkit-box-flex: 0;
		-ms-flex: 0 0 100%;
		flex: 0 0 100%;
		max-width: 100%;
		margin-bottom: 10px;
	}
	
	.portfolio .portfolio-gallery .item img {
		width: 98%;
		display: block;
		margin: 0 auto;
	}  
	
	.message-text {
	/*background-color: #1d2125;*/
	/*padding: 50px 15px; */
	background-image: url("images/hero3resp.png");  
}
	
	.message-text .text ul li { 
	text-align: inherit;
}
	
	.contact-us .contact-form .button a {
		display: block;
		text-align-last: center;
	} 

} 

