
@import url('https://fonts.googleapis.com/css2?family=Abril+Fatface&family=Roboto:wght@100&display=swap');
*
{
	margin: 0;
	padding: 0;
	box-sizing: border-box;
	font-family: 'Nunito', sans-serif;
	scroll-behavior: smooth;
}
::-webkit-scrollbar 
{
  width: 10px;
  background-color: #000;
}

::-webkit-scrollbar-track 
{
  box-shadow: inset 0 0 5px #808080; 
  border-radius: 10px;
}
 
::-webkit-scrollbar-thumb 
{
  background: #fff; 
  border-radius: 10px;
}
::-webkit-scrollbar-thumb:hover 
{
  background: #808080; 
}
.toggle
{
	position: fixed;
	top: 30px;
	right: 30px;
	width: 50px;
	height: 50px;
	background: url(menu.png);
	background-size: 30px;
	background-position: center;
	background-repeat: no-repeat;
	border-radius: 10px;
	cursor: pointer;
	z-index: 1000;
}
.toggle.active
{
	background: url(close.png);
	background-size: 25px;
	background-position: center;
	background-repeat: no-repeat;
}
section
{
	padding: 100px;
	min-height: 100vh;
	background-color: #010101;
}
.banner
{
	position: relative;
	width: 100%;
	min-height: 100vh;
}
.banner .imgSidebar
{
	top: 0;
	left: 0;
	width: 500px;
	height: 100%;
	animation: animate 3s ease;
}
@keyframes animate{
	0%{
		opacity: 0;
	}
	100%{
		opacity: 1;
	}
}
.banner .imgSidebar img
{
	position: absolute;
	top: 0;
	left: 0;
	width: 50%;
	height: 100%;
	object-fit: cover;
}
.banner .contentBx
{
	position: absolute;
	top: 0;
	right: 0;
	width: calc(100% - 500px);
	height: 100%;
	display: flex;
	justify-content: center;
	align-items: center;
	padding: 100px;
	animation: animate2 4s ;
}
@keyframes animate2{
	0%
	{
		right:calc(30% - 100px);
		opacity: 0;
	}
	100%
	{
		right:0;
		opacity: 1;
	}
}
.sidebar
{
	position: absolute;
	top: 0;
	right: 0;
	width: calc(100% - 500px);
	height: 100%;
	display: flex;
	justify-content: center;
	align-items: center;
	padding: 100px;
	width: 50%;
}
.banner .contentBx h4 
{
	font-size: 1.5em;
	color: #fff;
	font-weight: 300;
}
.banner .contentBx h4.me 
{
	font-size: 1.2em;
	font-style: italic;
}
.banner .contentBx h4 span
{
	color: #fff;
	font-size: 1.5em;
	font-weight: 700;
}
.banner .contentBx h2
{
	font-size: 3em;
	padding: 0.5rem 0 0.5rem 0;
	color: #fff;
	line-height: 1em;
}
P
{
	font-size: 1.1em;
	color: #d1d9e0;
	width: 20em;
	margin: 20px 0;
	font-weight: 300;
	padding-bottom: 1rem;
}
.banner .btn
{
	padding: 0.6em 2em;
	font-weight: 500;
	text-decoration: none;
  border: none;
  outline: none;
  color: rgb(255, 255, 255);
  background: #111;
  cursor: pointer;
  position: relative;
  z-index: 0;
  border-radius: 10px;
  user-select: none;
  -webkit-user-select: none;
  touch-action: manipulation;
}
.banner .btn:before
{
	content: "";
  background: linear-gradient(
    45deg,
    #AE760A,
    #FDD265,
    #000,
    #F2F2F2,
    #FDD265,
    #AE760A,
    #fff
  );
  position: absolute;
  top: -2px;
  left: -2px;
  background-size: 400%;
  z-index: -1;
  filter: blur(5px);
  -webkit-filter: blur(5px);
  width: calc(100% + 4px);
  height: calc(100% + 4px);
  animation: glowing-button-85 20s linear infinite;
  transition: opacity 0.3s ease-in-out;
  border-radius: 10px;
}
@keyframes glowing-button-85 {
  0% {
    background-position: 0 0;
  }
  50% {
    background-position: 400% 0;
  }
  100% {
    background-position: 0 0;
  }
}
.banner .btn:after
{
	 z-index: -1;
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background: #222;
  left: 0;
  top: 0;
  border-radius: 10px;
}
.sidebar
{
	position: fixed;
	background: #ffffff10;
	backdrop-filter: blur(25px);
	-webkit-backdrop-filter:blur(25px);
	display: flex;
	justify-content: center;
	align-items: center;
	transition: 0.5s;
	padding: 40px;
	z-index: 100;
	right: -100%;
}
.sidebar.active
{
	right: 0;
}
.sidebar ul 
{
	display: flex;
	justify-content: center;
	align-items: center;
	flex-direction: column;
}
.sidebar ul li 
{
	list-style: none;
	padding: 0.5rem;
}
.sidebar ul li a 
{
	color: #fff;
	text-decoration: none;
	font-size: 2em;
	margin: 10px 0;
	font-weight: 300;
	letter-spacing: 2px;
	text-transform: uppercase;
}
.sidebar ul li a:hover
{
	transition: 0.5s;
	color: #FDD265;
}
.contentBx .social-links a{
	font-size: 2em;
	padding-top: 50px;
	display: inline-block;
	height: 40px;
	width: 40px;
	margin:0 10px 10px 0;
	text-align: center;
	line-height: 40px;
	border-radius: 50%;
	color: #fff;
	transition: all 0.5s ease;
}
.social-links a:hover{
	opacity: 0.5;
}
.title
{
	width: 100%;
	text-align: center;
}
.title h2
{
	position: relative;
	color: #fff;
	font-size: 1.8em;
	font-weight: 700;
	letter-spacing: 1px;
}
.title p 
{
	max-width: 700px;
	display: inline-block;
}
.title h2::before
{
	content: '';
	position: absolute;
	left: 50%;
	transform: translateX(-50%);
	bottom: -10px;
	width: 60px;
	height: 4px;
	background: #fff;
}
.title.white h2
{
	color: #fff;
}
.title.white p 
{
	color: #fff;
}
.title.white h2::before
{
	background: #fff;
}
.about .content
{
	display: flex;
	justify-content: space-between;
	margin-top: 70px;
	margin-left: 70px;
	animation: ani2 10s ease; 
}
.about .content .textBx
{
	min-width: 49%;
	width: 49%;
}
.about .content .textBx p 
{
	color: #d1d9e0;
	width: 400px;
	padding-left: 20px;
	padding-top: 1rem;
}
.about .btn
{
	padding: 0.6em 2em;
	font-weight: 500;
	text-decoration: none;
  border: none;
  outline: none;
  color: #111;
  background: linear-gradient(
    45deg,
    #AE760A,
    #FDD265,
    #F2F2F2,
    #FDD265,
    #AE760A
  );
  cursor: pointer;
  position: relative;
  z-index: 0;
  border-radius: 10px;
  user-select: none;
  -webkit-user-select: none;
  touch-action: manipulation;
}
.about .btn:before
{
	content: "";
  background: linear-gradient(
    45deg,
    #AE760A,
    #FDD265,
    #000,
    #F2F2F2,
    #FDD265,
    #AE760A,
    #fff
  );
  position: absolute;
  top: -2px;
  left: -2px;
  background-size: 400%;
  z-index: -1;
  filter: blur(5px);
  -webkit-filter: blur(5px);
  width: calc(100% + 4px);
  height: calc(100% + 4px);
  animation: glowing-button-86 20s linear infinite;
  transition: opacity 0.3s ease-in-out;
  border-radius: 10px;
}
@keyframes glowing-button-86 {
  0% {
    background-position: 0 0;
  }
  50% {
    background-position: 400% 0;
  }
  100% {
    background-position: 0 0;
  }
}
.about .btn:after
{
	 z-index: -1;
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background: #222;
  left: 0;
  top: 0;
  border-radius: 10px;
}
.about .content .imgBx
{
	margin-right: 50px;
}
.about .content .imgBx img 
{
	width: 30rem;
}
.services
{
 background-image: linear-gradient(120deg, #fdfbfb 0%, #ebedee 100%);

}
.services .title p 
{
	font-style: italic;
	color: #7b7b7b;
}
.services .content 
{
	display: flex;
	justify-content: center;
	flex-direction: row;
	flex-wrap: wrap;
}
.services .content .servicesBx
{
	padding: 40px 20px;
	box-shadow: inset 6px 6px 12px rgba(0, 0, 0, 0.08), 
              inset -6px -6px 12px rgba(255, 255, 255, 0.7);
	border-radius: 10px;
	max-width: 400px;
	margin: 20px;
	transition: 0.5s;
	text-align: center;
	background: #fff;
	animation: ani3 15s ease;
}
.services .content .servicesBx:hover
{
	background: #121212;
}
.services .content .servicesBx img 
{
	max-width: 80px;
	transition: 0.5s;
}
.services .content .servicesBx:hover img
{
	filter: invert(1);
}
.services .content .servicesBx h2 
{
	margin-top: 20px;
	margin-bottom: 10px;
	font-size: 20px;
	font-weight: 600;
	transition: 0.5s;
}
.services .content .servicesBx:hover h2 
{
	color: #fff;
}
.services .content .servicesBx p 
{
	margin: 0;
	transition: 0.5s;
	color: #171717;
}
.services .content .servicesBx:hover p
{
	color: #fff;
}
.services .content .servicesBx p a 
{
	color: #000;
	text-decoration: none;
	font-weight: bold;
}
.services .content .servicesBx:hover p a 
{
	color: #fff;
}
.container{
	max-width: 1170px;
	margin: auto;
	justify-content: center;
}
.row{
	display: flex;
	flex-wrap: wrap;
}
ul
{
	list-style: none;
}
.footer
{
	z-index: 1;
	background-color: #000;
  padding: 6rem 0 4rem 0;
}
.footer-col
{
   width: 30%;
   margin: auto;
}
.footer-col.menu 
{
	width: 100px;
}
.footer-col h4
{
	font-size: 18px;
	color: #ffffff;
	text-transform: capitalize;
	margin-bottom: 35px;
	font-weight: 500;
	position: relative;
}
.footer-col h4::before
{
	content: '';
	position: absolute;
	left:0;
	bottom: -10px;
	background-color: #808080;
	height: 2px;
	box-sizing: border-box;
	width: 50px;
}
.footer-col ul li:not(:last-child)
{
	margin-bottom: 10px;
}
.footer-col ul li a
{
	font-size: 16px;
	text-transform: capitalize;
	color: #ffffff;
	text-decoration: none;
	font-weight: 300;
	color: #bbbbbb;
	display: block;
	transition: all 0.3s ease;
}
.footer-col ul li a:hover
{
	color: #ffffff;
}
.footer-col.sci 
{
	width: 200px;
}
.footer-col .social-links a
{
	display: inline-block;
	height: 40px;
	width: 40px;
	background-color: rgba(255,255,255,0.2);
	margin:0 10px 10px 0;
	text-align: center;
	line-height: 40px;
	border-radius: 50%;
	color: #ffffff;
	transition: all 0.5s ease;
}
.footer-col .social-links a:hover
{
	color: #000;
	background-color: #fff;
}
.reveal
{
	position: relative;
	transform: translateY(150px);
	opacity: 0;
	transition: all 2s ease;
}
.reveal.active
{
	transform: translateX(0px);
	opacity: 1;
}
.portfolio 
{
  position: relative;
  height: 60vh;
  background: #000;
}
.portfolio .title a 
{
	text-decoration: none;
	font-style: italic;
	color: #d1d9e0;
	text-align: center;
}
.portfolio .title a:hover 
{
	color: #FDD265;
}

.swiper 
{
  width: 100%;
  padding-top: 50px;
  padding-bottom: 200px;
}
 .swiper-slide 
 {
  background-position: center;
  background-size: cover;
  width: 300px;
  height: 300px;
  -webkit-box-reflect: below 1px linear-gradient(transparent,transparent,#0006);
 }
 .swiper-slide img 
  {
   display: block;
   border-radius: 10px;
   width: 100%;
  }

@media(max-width: 1110px)
	{
	.about .content .imgBx img 
	{
			max-width: 23rem;
	}

	}
@media (max-width: 991px)
{
	.banner .imgSidebar
	{
		display: none;
	}
	.banner .contentBx, .sidebar
	{
		width: 100%;
	}
}
@media(max-width: 1070px)
{
	.about .content .imgBx img 
	{
	max-width: 20rem;
	
  }
  .about .content .imgBx  
	{
	
	text-align: center;
	justify-content: center;
	align-items: center;
  }
  .footer-col
  {
    width: 50%;
    margin-bottom: 30px;
  }
  section
  {
  	padding: 40px;
  }
  	.about .content
  	{
  		flex-direction: column;
  	}
  	.about .content .textBx
  	{
  		min-width: 100%;
  		width: 100%;
  	}
  	.about .content .textBx p 
  	{
  		width: 100%;
  	}
  	.about .content
  	{
  		margin-top: 0;
  	}
}
@media(max-width: 650px)

{	
	.sidebar ul li a {
		font-size: 1.5rem;
	}
	.about .content 
	{
	padding-left: 0 !important; 
	margin-left: 0 !important;
	}
	.about .content .textBx p
	{
	text-align: center;
	padding-right: 1rem;
	}
	.services .content .servicesBx
	{
	padding: 30px 15px;
	max-width: 300px;
  }
  .services .content .servicesBx p 
  {
  max-width: 250px;
  }
   .about .content .imgBx
   {
   	padding-left: 3rem;
   }
  .about .content .imgBx img 
	{
	max-width: 12rem;
  }
  .footer-col
 	{
  width: 50%;
	}
	.footer-col ul li a
	{
  font-size: 0.9rem;
	}
    .footer-col ul li a:hover
    {
    	padding-left: 0;
    }
    .footer-col.sci
    {
    	margin:auto;
    	width: 100px;
    }
    .footer-col.sci h4 
    {
    	display: none;
    }
		.contentBx .social-links 
		{
  		display: flex;
  		flex-wrap: wrap;		
  		box-sizing: border-box; 
		}
		.contentBx .social-links img {
  		width: 4rem;
  		height: auto;
  		flex-shrink: 0; 
		}

}
@media(max-width: 406px)
{
	.footer-col.sci
    {
    	width: 300px;
    	margin-left: 20px;
    }
    .services .title p
    {
    	width: 100%;
    }
    .about .content .textBx .btn 
    {
    font-size: 1rem;
    padding: 8px 16px;
  }
  .portfolio .title p {
  	padding-top: 1.5rem;
  	font-size: 1rem;
    display: block;              
    text-align: center;          
    margin: 0 auto;             
    width: fit-content;       
}
  .portfolio .title a 
  {
  	text-align: center;
      margin: 0 auto;
  }
}