
@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;1,400;1,500;1,600;1,700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@300;400;500;600;700&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;1,400;1,500;1,600;1,700&display=swap');

:root
{
	--font-color: #ffffff;
	--dark-font-color: #858792;
	--dark-grey-color: #252734;
	--light-grey-color: #2a2c39;
	--medium-grey-color: #282a37;
}
a:hover{
	color: var(--font-color);
}
a{
	transition: all .3s;
}

body
{
	font-family: 'Poppins', sans-serif;
	font-weight: 400;
	background-color: var(--light-grey-color);
	scroll-behavior: smooth;
	color: var(--dark-font-color);
}

h1, h2, h3, h4, h5, h6
{
	color: var(--font-color);
	font-family: "Cormorant Garamond",serif;
	letter-spacing: 0;
	font-weight: 700;
	text-decoration: none;
}

h1
{
	font-size: 110px;
}
h2
{
	font-size: 85px;
}
h3
{
	font-size: 70px;
}
h5
{
	font-size: 28px;
}
p
{
	font-size: 18px;
}
img
{
	max-width: 100%;
}
a
{
	color: var(--dark-font-color);
	text-decoration: none;
}

/*  ---------------------------- NAVBAR ----------------------------  */

.navbar
{
	background-color: transparent;
	padding: 0;
	border: none;
	position: fixed;
	transition: 0.4s;
}
.navbar--size--xl 
{
	padding: 15px 0;
}
.navbar--size--lg 
{
	padding: 10px 0;
}
.navbar--size--md 
{
	padding: 5px 0;
}
.navbar--size--sm 
{
	padding: 0;
}
.navbar--color--secondary
{
	background: var(--dark-grey-color);
}
.navbar--color--ghost
{
	background: transparent;
}
.navbar--color--white
{
	background: #252734bf;
}
.navbar--color--primary
{
	background: #25273482;
}
.nav-item
{
	padding: 0 30px;
	position: relative;
}
.nav-link
{
	font-size: 18px;
	line-height: 120px;
	color: var(--dark-font-color);
	display: inline-block;
	position: relative;
	-webkit-transition: all .5s ease;
	transition: all .5s ease;
}
.nav-link:after
{
	position: absolute;
	content: '';
	top: 50%;
	-webkit-transform: translate(-50%,-50%) scale(.9);
	transform: translate(-50%,-50%) scale(.9);
	left: auto;
	left: 50%;
	width: 120px;
	height: 60px;
	background-image: url('../img/sign.png');
	visibility: hidden;
	opacity: 0;
	-webkit-transition: all .3s ease;
	transition: all .3s ease;
}
.nav-link:focus, .nav-link:hover, .nav-item.active .nav-link
{
	color: var(--font-color);
}
.nav-link:hover:after
{
	-webkit-transform: translate(-50%,-50%) scale(1);
	transform: translate(-50%,-50%) scale(1);
	visibility: visible;
	opacity: 1;
}
.nav-item.active .nav-link:after{
	-webkit-transform: translate(-50%,-50%) scale(1);
	transform: translate(-50%,-50%) scale(1);
	visibility: visible;
	opacity: 1;
}
.btn
{
	color: var(--font-color);
	border: 1px solid #3b3d49;
	font-size: 15px;
	text-align: center;
	position: relative;
	z-index: 9;
	text-decoration: none;
	overflow: hidden;
	width: fit-content;
	display: block;
	-webkit-box-shadow: none!important;
	box-shadow: none!important;
	outline: 0!important;
	height: 85px;
	line-height: 70px;
	padding-left: 60px;
	padding-right: 60px;
	border-radius: 42.5px;
}
.btn:after
{
	position: absolute;
	content: "";
	top: 50%;
	left: 50%;
	-webkit-transform: translate(-50%,-50%) scaleX(.8);
	transform: translate(-50%,-50%) scaleX(.8);
	width: 100%;
	height: 100%;
	background: 0 0;
	-webkit-transition: all .5s ease;
	transition: all .5s ease;
	z-index: -1;
}
.btn:hover:after
{
	-webkit-transform: translate(-50%,-50%) scaleX(1.2);
	transform: translate(-50%,-50%) scaleX(1.2);
	background: #3b3d49;
}
.btn:hover 
{
	color: var(--font-color);
}

/*  ---------------------------- HOME ----------------------------  */

.home-section
{
	padding-top: 136px;
	height: 100vh;
	background-color: var(--dark-grey-color);
	position: relative;
	overflow: hidden;
}
.home-content h2
{
	margin-top: 80px;
}
.home-content h1
{
	margin-top: 0;
	margin-bottom: 40px;
	line-height: 1.2;
}
.home-content p
{
	width: 400px;    
	margin-bottom: 60px;
}
.home-content span
{
	position: relative;
}
.home-content span:after
{	
	position: absolute;
	content: "";
	background: url('../img/lastname.png');
	width: 100%;
	height: 22px;
	left: 0;
	bottom: -10px;
	background-repeat: no-repeat;
}
.home-top-shape
{
	position: absolute;
	top: -100px;
	left: 0;
}
.home-top-shape span 
{
	position: absolute;
	border: 1px solid rgba(255,255,255,.1);
	border-radius: 50%;
	display: block;
	top: 50%;
	left: 50%;
	-webkit-transform: translate(-50%,-50%);
	transform: translate(-50%,-50%);
	pointer-events: none;
}
.home-top-shape span:nth-child(1) 
{
	width: 440px;
	height: 440px;
}
.home-top-shape span:nth-child(2) 
{
	width: 560px;
	height: 560px;
}
.home-top-shape span:nth-child(3) 
{
	width: 700px;
	height: 700px;
}
.home-bot-shape
{
	position: absolute;
	bottom: 0;
	right: 100px;
}
.home-bot-shape span 
{
	position: absolute;
	border: 1px solid rgba(255,255,255,.1);
	border-radius: 50%;
	display: block;
	top: 50%;
	left: 50%;
	-webkit-transform: translate(-50%,-50%);
	transform: translate(-50%,-50%);
	pointer-events: none;
}
.home-bot-shape span:nth-child(1) 
{
	width: 440px;
	height: 440px;
}
.home-bot-shape span:nth-child(2) 
{
	width: 625px;
	height: 625px;
}
.home-bot-shape span:nth-child(3) 
{
	width: 825px;
	height: 825px;
}
.home-social-media 
{
	display: flex!important;
	pointer-events: all!important;
}
.home-social-media .home-icon:nth-child(1) 
{
	transform: translate(25%, 125%);
}
.home-social-media .home-icon:nth-child(2) 
{
	transform: translate(50%, -15%);
}
.home-icon
{
	width: 75px;
	height: 75px;
	font-size: 20px;
	border-radius: 50%;
	border: 1px solid;
	color: var(--dark-font-color);
	display: flex;
	justify-content: center;
	align-items: center;
	text-decoration: none;
	margin-right: 25px;
	transition: all .3s ease;
	background-color: var(--dark-grey-color);
}
.home-icon i
{
	text-decoration: none;
	transition: all .3s ease;
	color: var(--dark-font-color);
}
.home-social-media a:hover i
{
	color: var(--font-color);
}

.home-social-media a:hover
{
	border-color: var(--font-color);
}


/*  ---------------------------- ABOUT ----------------------------  */

.about-section
{
	display: flex;
	justify-content: center;
	align-items: center;
	padding: 100px 0;
}
.about-section .col-lg-3
{
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
}
.about-heading
{
	padding-bottom: 50px;
}
.about-item
{    
	padding: 70px;
	width: 90%;
	min-height: 550px;
	background-color: var(--dark-grey-color);
	overflow: hidden;
	position: relative;
}
.about-item h5
{
	font-family: Poppins,sans-serif;
	font-weight: 500;
	margin-bottom: 45px;
	height: 50px;
	position: relative;
}
.about-icon
{    
	width: 56px;
	height: 56px;
	margin-bottom: 60px;
}
.about-list
{    
	margin: 0;
	padding: 0;
	list-style: none;
}
.about-list li
{    
	position: relative;
	margin-bottom: 15px;
	display: block;
	padding-left: 40px;
}
.about-list li:before
{    
	position: absolute;
	left: -5px;
	content: '>>';
	top: 0;
	font-size: 10px;
	font-weight: 700;
	bottom: 0;
}
.about-item .inner-shape
{
	transform: scale(.85); 
	transition: all .5s ease;
	visibility: hidden; 
	opacity: 0; 
}
.about-item .inner-shape-top-right
{
	position: absolute;
	width: 345px;
	height: 345px;
	border-radius: 50%;
	border: 1px solid rgba(255,255,255,.05);
	top: -230px;
	right: -230px;
}
.about-item .inner-shape-bot-right
{
	position: absolute;
	width: 345px;
	height: 345px;
	border-radius: 50%;
	border: 1px solid rgba(255,255,255,.05);
	bottom: -230px;
	right: -230px;
}
.about-item .inner-shape-top-right:before
{
	position: absolute;
	content: "";
	width: 400px;
	height: 400px;
	border-radius: 50%;
	border: 1px solid rgba(255,255,255,.05);
	top: -20px;
	right: -20px;
}
.about-item .inner-shape-top-right:after
{
	position: absolute;
	content: "";
	width: 460px;
	height: 460px;
	border-radius: 50%;
	border: 1px solid rgba(255,255,255,.05);
	top: -40px;
	right: -40px;
}
.about-item .inner-shape-bot-right:before
{
	position: absolute;
	content: "";
	width: 400px;
	height: 400px;
	border-radius: 50%;
	border: 1px solid rgba(255,255,255,.05);
	bottom: -20px;
	right: -20px;
}
.about-item .inner-shape-bot-right:after
{
	position: absolute;
	content: "";
	width: 460px;
	height: 460px;
	border-radius: 50%;
	border: 1px solid rgba(255,255,255,.05);
	bottom: -40px;
	right: -40px;
}
.about-item:hover .inner-shape
{
	transform: scale(1);
	visibility: visible;
	opacity: 1;
}
/*  ---------------------------- SKILLS ----------------------------  */

.skills-section
{
	background-color: var(--dark-grey-color);
	height: 100vh;
	display: flex;
	justify-content: center;
	align-items: center;
}
.skills-heading, .clients-heading
{
	padding: 50px;
}
.skills-subheading, .portfolio-subheading, .clients-subheading,
.contact-subheading, .about-subheading
{
	font-size: 18px;
	font-weight: 300;
	position: relative;
	display: inline-block;
	padding-left: 27px;
}
.skills-subheading:before, .portfolio-subheading:before, .clients-subheading:before,
.contact-subheading:before, .about-subheading:before
{
	position: absolute;
	content: "||";
	top: 0;
	left: 0;
}
.skill-display-wrapper
{
	margin-right: 130px;
}
.skill-progress-single-item
{
	background-color: var(--light-grey-color);
	padding: 45px 45px 50px 45px;
	margin-bottom: 25px;
}
.skill-progress-single-item .tag
{
	margin-bottom: 25px;
	display: inline-block;
	background: #2a2c39;
	position: relative;
	z-index: 2;
}
.skill-progress-single-item .skill-box
{
	width: 100%;
	height: 5px;
	background: rgba(255,255,255,.1);
	position: relative;
}
.skill-progress-single-item .progress-line
{
	position: absolute;
	top: 0;
	left: 0;
	height: 100%;
	background-color: #fff;
	-webkit-transition: all 1s linear;
	transition: all 1s linear;
	width: 0;
}
.skill-progress-single-item .progress-line .skill-percentage
{
	font-size: 15px;
	text-transform: uppercase;
	position: absolute;
	right: -15px;
	top: -45px;
	z-index: 1;
}


/*  ---------------------------- COUNTER ----------------------------  */

.counter-section
{
	padding: 150px 0;
	background-color: var(--medium-grey-color);
}
.counterup-single-item .content .number
{
	font-family: Poppins,sans-serif;
	font-size: 5vh;
	font-weight: 300;
	margin-top: -10px;
	margin-bottom: 25px;
}
.counterup-single-item
{
	display: flex;
}
.counterup-single-item .icon
{
	width: 70px;
	height: 70px;
	border: 1px solid #40424d;
	border-radius: 15px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	margin-right: 50px;
	font-size: 24px;
	color: var(--font-color);
}


/*  ---------------------------- PORTFOLIO ----------------------------  */

.portfolio-section
{
	padding: 160px 0;
}
.portfolio-section h3
{
	padding-bottom: 50px;
}
.swiper-navigation
{
	display: flex;
	justify-content: center;
	align-items: center;
	margin: 0;
}
.swiper-navigation .swiper-button-prev, .swiper-navigation .swiper-button-next
{
	position: relative;
	background: var(--light-grey-color);
	color: var(--dark-font-color);
	width: 85px;
	height: 85px;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	border-radius: 50%;
	border: 1px solid rgba(255,255,255,.1);
	margin-right: 20px;
	-webkit-transition: all .5s ease;
	transition: all .5s ease;
	outline: 0;
}
.swiper-navigation .swiper-button-prev:after, .swiper-navigation .swiper-button-next:after
{
	content: '';
}
.swiper-button-next
{
	margin-left: 10px;
}
.swiper-button-next:hover, .swiper-button-next:focus, .swiper-button-prev:hover, .swiper-button-prev:focus
{
	color:var(--light-grey-color);
	background: var(--font-color);
}
.swiper
{
	width: 100%;
	padding: 0;
	z-index: 1;
}
.portfolio-section .swiper-wrapper
{
	width: 100%;
	margin-inline-start: -235px;
}
.portfolio-single-item
{
/*	width: 650px;*/
/*	margin-right: 50px;*/
padding: 0 15px;
}
.portfolio-single-item .img-box 
{
/*	padding: 100px 100px 0 100px;*/
/*	max-height: 500px;  */
position: relative;
overflow: hidden;
z-index: 1;
}
.portfolio-single-item .img-box:before
{
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	content: '';
	height: 100%;
	background: rgba(37,39,52,.95);
}
.portfolio-single-item .img-box .bg-image
{
	position: absolute;
	-webkit-transform: translate(-50%,-50%) rotate(-45deg);
	transform: translate(-50%,-50%) rotate(-45deg);
	top: 50%;
	left: 50%;
	z-index: -1;
}
.portfolio-single-item .img-box .image
{
	position: relative;
	z-index: 1;
}
.portfolio-single-item .img-box .image img
{
	width: 100%;
}
.project-category
{
	padding: 0;
}
.project-category li
{
	display: inline-block;
	margin-right: 15px;
	position: relative;
	list-style: none;
}
.project-category li:after
{
	position: absolute;
	top: 0;
	right: -14px;
	content: '/';
	color: var(--dark-font-color);
}
.project-category li:last-child:after
{
	content: '';
}
.portfolio-single-item .project-content a
{
	text-decoration: none;
	color: var(--dark-font-color);
	transition: all .3s ease;
}
.portfolio-single-item .project-content h4
{
	font-size: 28px;
	padding: 35px 0 15px;
	color: #fff;
	font-family: Poppins,sans-serif;
	font-weight: 400;
}


/*  ---------------------------- CLIENTS ----------------------------  */

.clients-section
{
	padding: 100px 0;
	background-color: var(--medium-grey-color);
}

.clients-swiper .swiper-slide a
{ 
	width: 225px;
	height: 245px;
	display: block;
	text-align: center;
	position: relative;
	border: 1px solid #41464b;
	padding-top: 50px;
	padding-bottom: 50px;
	display: flex;
	align-items: center;
	justify-content: center;
}
.clients-swiper .swiper-slide a img
{ 
	opacity: .25;
	transition: all .3s ease;
	object-fit: contain;
	width: 150px;
	height: 150px;
	object-fit: contain;
}
.clients-swiper .swiper-slide a:hover
{ 
	background-color: var(--dark-grey-color);
	border-color: var(--dark-grey-color);
}
.clients-swiper .swiper-slide a:hover img
{ 
	opacity: 1
}
.clients-swiper 
{ 
	overflow: hidden;
}

/*  ---------------------------- CONTACT ----------------------------  */

.contact-section
{
	background-color: var(--dark-grey-color);
	padding: 150px 0 100px;
	position: relative;
	overflow: hidden;
}
.contact-items
{
	padding-top: 100px;
	justify-content: space-between;
	align-items: center;
}
.contact-item
{
	font-family: Poppins,sans-serif;
	font-size: clamp(1rem, 2.5vw, 2rem);
	display: flex;
	justify-content: center;
	align-items: center;
}
.contact-item:hover .contact-icon, .contact-item:hover i, .contact-item:hover .contact-text
{
	color: var(--font-color);
}
.contact-social-media a:hover i, .contact-social-media a:hover .contact-icon
{
	color: var(--font-color);
}
.contact-icon
{
	width: 75px;
	height: 75px;
	font-size: 20px;
	border-radius: 50%;
	border: 1px solid;
	color: var(--dark-font-color);
	display: flex;
	justify-content: center;
	align-items: center;
	text-decoration: none;
	margin-right: 25px;
	transition: all .3s ease;
}
.contact-text
{
	transition: all .3s ease;
}
.contact-icon i
{
	text-decoration: none;
	transition: all .3s ease;
}
.contact-social-media 
{
	display: flex;
	justify-content: center;
	align-items: center;
}
.contact-social-media i
{
	color: var(--dark-font-color);
}
.contact-left-shape
{
	position: absolute;
	top: 0;
	left: 0;
}
.contact-left-shape span 
{
	position: absolute;
	border: 1px solid rgba(255,255,255,.1);
	border-radius: 50%;
	display: block;
	top: 50%;
	left: 0;
	-webkit-transform: translate(-50%,-50%);
	transform: translate(-50%,-50%);
}
.contact-left-shape span:nth-child(1) 
{
	width: 440px;
	height: 440px;
}
.contact-left-shape span:nth-child(2) 
{
	width: 560px;
	height: 560px;
}
.contact-left-shape span:nth-child(3) 
{
	width: 700px;
	height: 700px;
}
.contact-right-shape
{
	position: absolute;
	top: 0px;
	left: 50%;
}
.contact-right-shape span 
{
	position: absolute;
	border: 1px solid rgba(255,255,255,.1);
	border-radius: 50%;
	display: block;
	top: 50%;
	left: 50%;
	-webkit-transform: translate(-50%,-50%);
	transform: translate(-50%,-50%);
}
.contact-right-shape span:nth-child(1) 
{
	width: 440px;
	height: 440px;
}
.contact-right-shape span:nth-child(2) 
{
	width: 560px;
	height: 560px;
}
.contact-right-shape span:nth-child(3) 
{
	width: 700px;
	height: 700px;
}

/*  ---------------------------- FOOTER ----------------------------  */

footer
{ 
	background-color: var(--dark-grey-color);
	padding: 25px 0;
	border-top: 1px solid #41464b;
}
.scroll-top
{
	width: 56px;
	height: 56px;
	z-index: 999;
	display: none;
	position: fixed;
	bottom: 23px;
	right: 23px;
	padding: 0;
	overflow: hidden;
	outline: 0;
	box-shadow: 0 3px 10px rgba(0,0,0,.25);
	cursor: pointer;
	border-radius: 50%;
	background: #252734;
	-webkit-tap-highlight-color: transparent;
	transition: all .3s cubic-bezier(.25,.25,0,1);
	border: 1px solid rgba(255,255,255,.1);
}
.scroll-top:after
{
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%,-50%);
	content: "";
	width: 100%;
	height: 100%;
	border-radius: 100%;
	background-image: url('../img/scroll-top.svg');
	background-position: center 50%;
	transition: all .3s ease;
	background-repeat: no-repeat;
}
.scroll-top:hover
{
	box-shadow: 0 3px 10px rgba(0,0,0,.85);
}




/*  ------------------------- RESPONSIVE -------------------------  */
@media (max-width: 991px){
	.skills-section{
		height: auto;
	}
	.navbar-toggler
	{
		width: 60px;
		height: 60px;
		position: fixed;
		font-size: 14px;
		border-radius: 50%;
		border: 1px solid;
		color: var(--dark-font-color);
		display: flex;
		justify-content: center;
		align-items: center;
		text-decoration: none;
		right: 23px;
		top: 23px;
		outline: 0;
		transition: all .3s ease;
		background-color: var(--dark-grey-color);
		opacity: .75;
	} 
	.navbar-toggler:hover, .navbar-toggler:focus
	{
		opacity: 1;
	} 
	.navbar-toggler span
	{
		width: unset;
		height: unset;
	}
	.home-content span:after
	{	
		bottom: 0px;
		height: 35px;
		background-size: cover;
	}
	.home-top-shape
	{
		top: 0;
	}
	.home-top-shape span:nth-child(1) 
	{
		width: 85px;
		height: 85px;
	}
	.home-top-shape span:nth-child(2) 
	{
		width: 135px;
		height: 135px;
	}
	.home-top-shape span:nth-child(3) 
	{
		width: 200px;
		height: 200px;
	}
	.home-bot-shape
	{
		position: absolute;
		bottom: 0;
		right: 0;
	}
	.home-bot-shape span:nth-child(1) 
	{
		width: 100px;
		height: 100px;
	}
	.home-bot-shape span:nth-child(2) 
	{
		width: 175px;
		height: 175px;
	}
	.home-bot-shape span:nth-child(3) 
	{
		width: 265px;
		height: 265px;
	}
	.home-social-media .home-icon:nth-child(1) 
	{ 
		transform: translate(-25%, 100%);
	}
	.home-social-media .home-icon:nth-child(2) 
	{
		transform: translate(-75%, -25%);
	}
	.home-icon
	{
		width: 35px;
		height: 35px;
		font-size: 10px;
	}
	.home-icon i
	{
		text-decoration: none;
		transition: all .3s ease;
		color: var(--dark-font-color);
	}
	.home-social-media a:hover i
	{
		color: var(--font-color);
	}

	.home-social-media a:hover
	{
		border-color: var(--font-color);
	}
	.clients-swiper .swiper-slide a {
		width: unset;
		height: unset;
		padding: 10px;
	}
	.nav-link {
		line-height: 50px;
	}
	.navbar--color--ghost{
		background: var(--dark-grey-color);
	}
}
@media (max-width: 690px)
{
	h1
	{
		font-size: 48px;
	}
	h2
	{
		font-size: 26px;
	}
	h3
	{
		font-size: 22px;
	}
	h5
	{
		font-size: 16px;
	}
	p
	{
		font-size: 10px;
	}

	/*  ---------------------------- NAVBAR ----------------------------  */

	.navbar
	{
		background-color: transparent;
		padding: 0;
		border: none;
		position: fixed;
		transition: 0.4s;
	}
	.navbar--size--xl 
	{
		padding: 15px 0;
	}
	.navbar--size--lg 
	{
		padding: 10px 0;
	}
	.navbar--size--md 
	{
		padding: 5px 0;
	}
	.navbar--size--sm 
	{
		padding: 0;
	}
	.navbar-collapse
	{
		position: absolute;
		width: 100%;
		top: 0;
		background-color: var(--dark-grey-color);
		left: 0;
		padding: 25px;
		-webkit-transition: all .3s ease;
		transition: all .3s ease;
	}
	.nav-item
	{
		padding: 0px 25px;
		position: relative;
	}
	.navbar-nav .nav-link
	{
		padding-right: 0;
		padding-left: 0;
		line-height: 25px;
		font-size: 14px;
	}
	.nav-link:after
	{
		background-size: cover;
		width: 65px;
		height: 36px;
	}
	.nav-link:focus, .nav-link:hover, .nav-item.active .nav-link
	{
		color: var(--font-color);
	}
	.nav-link:hover:after 
	{
		-webkit-transform: translate(-50%,-50%) scale(1);
		transform: translate(-50%,-50%) scale(1);
		visibility: visible;
		opacity: 1;
	}

/*	.navbar-nav-scroll
	{
		overflow: hidden;
	}*/
	.btn
	{
		font-size: 8px;
		height: 35px;
		line-height: 24px;
		padding-left: 30px;
		padding-right: 30px;
	}


	/*  ---------------------------- HOME ----------------------------  */

	.home-section
	{
		height: 65vh;
	}
	.home-content
	{
		padding-left: 25px;
	}
	.home-content h2
	{
		margin-top: 0;
	}
	.home-content h1
	{
		margin-bottom: 70px;
	}
	.home-content p
	{
		width: 200px;
		margin-bottom: 35px;
	}


	/*  ---------------------------- ABOUT ----------------------------  */

	.about-section
	{
		padding: 0;
		padding-bottom: 50px;
	}
	.about-heading
	{
		padding: 25px;
	}
	.about-item
	{    
		padding: 35px;
		width: 65%;
		min-height: 325px;
		margin: auto;
		margin-bottom: 35px;
	}
	.about-item h5
	{
		margin-bottom: 10px;
		height: 45px;
	}
	.about-icon
	{    
		width: 35px;
		height: 35px;
		margin-bottom: 35px;
	}
	.about-list li
	{    
		font-size: 10px;
		margin-bottom: 10px;
		padding-left: 15px;
	}
	.about-item .inner-shape
	{
		transform: scale(.85); 
		transition: all .5s ease;
		visibility: hidden; 
		opacity: 0; 
	}
	.about-item .inner-shape-top-right
	{
		width: 225px;
		height: 225px;
		top: -175px;
		right: -175px;
	}
	.about-item .inner-shape-bot-right
	{		
		width: 225px;
		height: 225px;
		right: -175px;
		bottom: -175px;
	}
	.about-item .inner-shape-top-right:before
	{
		width: 265px;
		height: 265px;
	}
	.about-item .inner-shape-top-right:after
	{
		width: 310px;
		height: 310px;
	}
	.about-item .inner-shape-bot-right:before
	{
		width: 265px;
		height: 265px;
	}
	.about-item .inner-shape-bot-right:after
	{
		width: 310px;
		height: 310px;
	}


	/*  ---------------------------- SKILLS ----------------------------  */

	.skills-section
	{
		height: unset;
		padding-bottom: 50px;
	}
	.skills-heading, .clients-heading
	{
		padding: 25px;
	}
	.skills-subheading, .portfolio-subheading, .clients-subheading,
	.contact-subheading, .about-subheading
	{
		font-size: 10px;
		padding-left: 10px;
		margin-bottom: 5px;
	}
	.skill-display-wrapper
	{
		margin: 0px 15px;
	}
	.skill-progress-single-item
	{
		padding: 25px 25px 35px 25px;
	}
	.skill-progress-single-item .tag
	{
		margin-bottom: 15px;
		font-size: 11px;
	}
	.skill-progress-single-item .skill-box
	{
		height: 2px;
	}
	.skill-progress-single-item .progress-line .skill-percentage
	{
		font-size: 10px;
		right: -10px;
		top: -32px;
	}


	/*  ---------------------------- COUNTER ----------------------------  */

	.counter-section
	{
		padding: 25px 0;
	}
	.counterup-single-item .content .number
	{
/*		font-size: 30px;*/
margin-top: 0px;
margin-bottom: 0px;
}
.counterup-single-item .content .text
{
	font-size: 11px;
}
.counterup-single-item
{
	padding: 25px 25px 25px;
	align-items: center;
}
.counterup-single-item .icon
{
	width: 55px;
	height: 55px;
	margin-right: 20px;
	font-size: 18px;
}


/*  ---------------------------- PORTFOLIO ----------------------------  */

.portfolio-section
{
	padding: 50px 0;
}
.portfolio-section .col-md-12
{
	flex-direction: column;
}
.portfolio-section h3
{
	padding-bottom: 25px;
}
.swiper-navigation
{
	margin-left: auto;
	padding-bottom: 25px;
}
.swiper-navigation .swiper-button-prev, .swiper-navigation .swiper-button-next
{
	width: 35px;
	height: 35px;
	margin-right: 20px;
}
.swiper-navigation .swiper-button-prev i, .swiper-navigation .swiper-button-next i
{
	font-size: 10px;
}
.swiper
{
	width: 100%;
	padding: 0;
	z-index: 1;
}
.portfolio-section .swiper-wrapper
{
	margin-inline-start: 0;
}
.portfolio-single-item
{
	margin-right: 0px;
	padding: 0 15px;
}
.portfolio-single-item .img-box 
{
/*		padding: 50px 30px 0 30px;*/
/*		height: 245px;*/
}
.project-category
{
	font-size: 9px;
}
.project-category li
{
	margin-right: 10px;
}
.project-category li:after
{
	right: -9px;
}
.portfolio-single-item .project-content h4
{
	font-size: 18px;
	padding: 25px 0 5px;
}


/*  ---------------------------- CLIENTS ----------------------------  */

.clients-section
{
	padding: 0 0 55px;
}
.clients-swiper .swiper-slide a
{ 
/*		width: 115px;*/
/*		height: 75px;*/
padding-top: 25px;
padding-bottom: 25px;
}
.clients-swiper .swiper-slide a img
{ 
	opacity: .25;
	transition: all .3s ease;
	width: 55px;
}
.clients-swiper .swiper-slide a:hover
{ 
	background-color: var(--dark-grey-color);
	border-color: var(--dark-grey-color);
}
.clients-swiper .swiper-slide a:hover img
{ 
	opacity: 1
}
.clients-swiper 
{ 
	overflow: hidden;
}


/*  ---------------------------- CONTACT ----------------------------  */

.contact-section
{
	padding: 25px 0 25px;
}
.contact-items
{
	flex-direction: column;
	align-items: start;
	padding: 35px 25px 0;
}
.contact-item
{
/*		font-size: 9px;*/
/*		margin-bottom: 5px;*/
}
.contact-icon
{
	width: 35px;
	height: 35px;
	font-size: 10px;
	margin-right: 10px;
}
.contact-left-shape span:nth-child(1), .contact-right-shape span:nth-child(1) 
{
	width: 50px;
	height: 50px;
}
.contact-left-shape span:nth-child(2), .contact-right-shape span:nth-child(2) 
{
	width: 90px;
	height: 90px;
}
.contact-left-shape span:nth-child(3), .contact-right-shape span:nth-child(3) 
{
	width: 135px;
	height: 135px;
}

/*  ---------------------------- FOOTER ----------------------------  */

footer
{ 
	padding: 10px 0;
	font-size: 8px;
}
.scroll-top
{
	width: 35px;
	height: 35px;
}
.scroll-top:after
{
	width: 30%;
	height: 30%;
}
}



