/* Font Import */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@100..900&family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap');
body{
  font-family: "Inter", sans-serif;
  color: white;
}
.bg-color{
  background-color: #0a101e;
}
.bg-light-dark{
  background-color: #101624;
}
.primary{
  background-color: #a364ff !important;
}
.text-primary{
  color: #a364ff !important;
}
.text-light{
  color: #c5c5c5 !important;
}
.btn{
  border-radius: 30px;
  border: none;
  width: 10rem;
  padding: .7rem 0;
  font-size: 1rem;
  font-weight: 500;
  font-family: "Roboto", sans-serif !important;
  transition: .3s ease;
}
.btn-primary{
  background-color: #a364ff !important;
  color: #0a101e;
}
.btn-primary:hover{
  background-color: #a364ff !important;
  color: #0a101e !important;
  box-shadow: 1px 3px 8px #fec64462;
  transform: translateY(-1px);
}
.nav-link{
  color: #FFF;
  font-size: 1rem;
  font-weight: 500;
}
.nav-link:hover{
  color: #c5c5c5;
}
.nav-link.active{
  color: #a364ff !important;
}
nav{
  font-family: "Roboto", sans-serif !important;
  background-color: #0a101ee9;
  position: fixed !important;
  z-index: 99;
  width: 100%;
  top: 0;
  left: 0;
}
nav .navbar-toggler{
  height: 2rem;
  width: 1rem;
}
nav .navbar-toggler span.nav-icon{
  width: 100%;
  position: relative;
  transition: .3s;
}
nav .navbar-toggler.collapsed span.nav-icon::before{
  content: "";
  position: absolute;
  height: 2px;
  width: 25px;
  top: .5rem;
  left: 50%;
  transform: translate(-50%, -50%);
  background: #666;
}
nav .navbar-toggler.collapsed span.nav-icon::after{
  content: "";
  position: absolute;
  height: 2px;
  width: 25px;
  bottom: .3rem;
  left: 50%;
  transform: translate(-50%, -50%);
  background: #666;

}
nav .navbar-toggler span.nav-icon::before{
  content: "";
  position: absolute;
  height: 2px;
  width: 25px;
  top: 0;
  left: 50%;
  transform: translate(-50%, -50%) rotate(45deg);
  background: #666;
  transition: all .3s;
}
nav .navbar-toggler span.nav-icon::after{
  content: "";
  position: absolute;
  height: 2px;
  width: 25px;
  bottom: 0;
  left: 50%;
  transform: translate(-50%, -50%)rotate(-45deg);
  background: #666;
  transition: all .3s;
}


nav .phone{
  position: relative;
}
nav .phone::after{
  content: "";
  height: .8rem;
  width: 1px;
  background: #fff;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}
/* Navbar Finish */

/* Hero section Start */
/* #hero{
  background: url(https://devis-nextjs.vercel.app/images/background/hero-bg.jpg) no-repeat center;
}  */
 #hero .buttons{
  position: absolute;
  width: 100%;
  bottom: 3%;
  right: 24rem;
  z-index: -1;
 }
.buttons a.social-link{
  text-decoration: none;
  display: flex;
  align-items: center;
  height: 3rem;
  width: 3rem;
  border: 1px solid #3f4551;
  border-radius: 50px;
  padding: 0 .8rem;
  overflow: hidden;
  transition: .3s ease-in-out;
}
.buttons a.social-link:hover{
  width: 8rem;
}
.buttons a.social-link .icon{
  display: flex;
  align-items: center;
  height: 3rem;
  width: 3rem;
  margin-right: 1rem; 
}
.buttons a.social-link .icon i{
  font-size: 1.3rem;
  color: #c5c5c5;
}
.buttons a.social-link span{
  font-size: 1rem;
  color: #fff;
  font-weight: 500;
}
/* Hero Section Finish */

/* About Section Start */
.title span{
  height: 2px;
  width: 12rem;
  bottom: -.5rem;
  background-color: #3f4551;
  position: absolute;
}
.title span::after{
  content: "";
  height: 2.5px;
  width: 5rem;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  background-color: #a364ff;
  position: absolute;
}
.custom-info::before{
  content: ':'; 
  padding: 0 1rem;
}

#about{
  overflow: hidden;
}
/* Secvice Section Start */
#service .card .icon{
  width: 5.5rem;
  height: 5.5rem;
  border-radius: 50%;
  border: .5px solid #3f4551;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: .3s ease;
}
#service .card .icon img{
  width: 3rem;
  filter: grayscale(1);
  opacity: .5;
  transition: .3s ease;
}
#service .card:hover img{
  filter: grayscale(0);
  opacity: 1;
}
#service .card:hover .icon{
  border: .5px solid #a364ff;
}
#service .card:hover h5{
  color: #a364ff !important;
}


/* Resume Section Start */
#resume .items-wrapper{
  margin-top: 1.5rem;
  margin-left: 1.5rem;
  border-left: 1px solid #3f4551;
}
#resume  .items{
  padding-left: 2.5rem;
  position: relative;
  margin-bottom: 2.5rem;
}
#resume  .items::before{
  content: "";
  height: 12px;
  width: 12px;
  background: #0a101e;
  border: 2px solid #3f4551;
  border-radius: 50%;
  position: absolute;
  left: -.4rem;
  top: 0;
  transition: .3s;
}
#resume  .items:hover::before{
  background: #a364ff;
}
/* Portfolio Section Start */
#portfolio .after-hover{
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
  transition: .3s ease;
  opacity: 0;
}
#portfolio .img::after{
  content: "";
  height: 100%;
  width: 100%;
  position: absolute;
  left: 0;
  top: 0;
  background: #0a101e9d;
  z-index: 1;
  transition: .3s ease;
  opacity: 0;
}
#portfolio .img::before{
  content: "";
  height: 90%;
  width: 90%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border: 1px solid rgb(255, 255, 255);
  z-index: 2;
  transition: .3s ease;
  opacity: 0;
}
#portfolio .after-hover i{
  font-size: 2.5rem;
  color: #a364ff;
  border: 4px solid #a364ff;
  padding: 0 .3rem;
  border-radius: 50%;
  background: #0a101e;
}
#portfolio .img:hover .after-hover{
  opacity: 1;
}
#portfolio .img:hover::before,
#portfolio .img:hover::after{
  opacity: 1;
}
#portfolio .img:hover img{
  scale: 1.1;
}
.cursor{
  position: fixed;
  left: 0;
  top: 0;
  width: 10px;
  height: 10px;
  background-color: #a364ff;
  border-radius: 50%;
  pointer-events: none;
  transform: translate(-50%, -50%);
  z-index: 999;
  transition: .1s linear;
  mix-blend-mode: difference;
}
/* Review Section Start */
#review .comment-box{
  background-color: #101624;
  border: 1px solid #3f4551;
  position: relative;
  transition: .3s ease;
}
#review .comment-box::after{
  content: "";
  position: absolute;
  bottom: -1rem;
  left: 50%;
  height: 2rem;
  width: 2rem;
  background-color: #101624;
  border-right: 1px solid #3f4551;
  border-bottom: 1px solid #3f4551;
  transform:translateX(-50%) rotate(45deg);
  transition: .3s ease;

}
#review .mySwiper .swiper-slide:hover .comment-box{
  border: 1px solid #a364ff;
}
#review .mySwiper .swiper-slide:hover .comment-box::after{
  border-right: 1px solid #a364ff;
  border-bottom: 1px solid #a364ff;
}
#review .mySwiper .swiper-slide:hover h4{
  color: #a364ff !important;
}
#blogs .swiper-slide .card{

}
#blogs .swiper-slide .img{
  width: 100%;
  height: 90%;
  overflow: hidden;
}
#blogs .swiper-slide:hover img{
  scale: 1.08;
}
#contact input,
#contact textarea{
  background-color: #101624 !important;
  box-shadow: none;
  color: #a9adb8;
}
#contact input:hover,
#contact textarea:hover{
  border: 1px solid #a364ff !important;
}
::placeholder{
  color: #3c3d41 !important;
}
#contact .item:hover .icon{
  border: 1px solid #a364ff !important;
}
#contact a:hover{
  color: #a364ff !important;
}
#contact .buttons{
  position: absolute;
  width: 100%;
  bottom: 1rem;
  right: -1rem;
 }



@media (max-width:992px) {
  nav ul .nav-link{
    font-size: .9rem;
    margin-left: .7rem;
    color: #a9adb8;
  }
  #contact .buttons{
    bottom: -3rem;
   }
}
@media (max-width:576px) {
  .fs-sm-4{
    font-size: 4rem !important;
  }
}