@import url('https://fonts.googleapis.com/css2?family=Mukta:wght@200;300;400;500;600;700;800&display=swap');

*{
  padding: 0px;
  margin: 0px;
  box-sizing: border-box;
  font-size: 16px;
   font-family: 'Gilroy', sans-serif;
}
a{
  text-decoration: none;
}
/* Thin */
@font-face {
  font-family: 'Gilroy';
  src: url('../font/Gilroy-Font-Family/Gilroy-Thin.ttf') format('truetype');
  font-weight: 100;
  font-style: normal;
}

@font-face {
  font-family: 'Gilroy';
  src: url('../font/Gilroy-Font-Family/Gilroy-ThinItalic.ttf') format('truetype');
  font-weight: 100;
  font-style: italic;
}

/* Light */
@font-face {
  font-family: 'Gilroy';
  src: url('../font/Gilroy-Font-Family/Gilroy-Light.ttf') format('truetype');
  font-weight: 300;
  font-style: normal;
}

@font-face {
  font-family: 'Gilroy';
  src: url('../font/Gilroy-Font-Family/Gilroy-LightItalic.ttf') format('truetype');
  font-weight: 300;
  font-style: italic;
}

/* Regular */
@font-face {
  font-family: 'Gilroy';
  src: url('../font/Gilroy-Font-Family/Gilroy-Regular.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
}

/* Medium */
@font-face {
  font-family: 'Gilroy';
  src: url('../font/Gilroy-Font-Family/Gilroy-Medium.ttf') format('truetype');
  font-weight: 500;
  font-style: normal;
}

@font-face {
  font-family: 'Gilroy';
  src: url('../font/Gilroy-Font-Family/Gilroy-MediumItalic.ttf') format('truetype');
  font-weight: 500;
  font-style: italic;
}

/* Bold */
@font-face {
  font-family: 'Gilroy';
  src: url('../font/Gilroy-Font-Family/Gilroy-Bold.ttf') format('truetype');
  font-weight: 700;
  font-style: normal;
}

@font-face {
  font-family: 'Gilroy';
  src: url('../font/Gilroy-Font-Family/Gilroy-BoldItalic.ttf') format('truetype');
  font-weight: 700;
  font-style: italic;
}
/* marathi font */
/* font-family: "Mukta", sans-serif; */
.marathi-font{
  font-family: "Mukta", sans-serif;
}
body{
  background-color: #000000;
  color: #ffffff;
}
.logo-box{
width: 60%;
}
/* navbar */
.navbar-box{
  position: sticky;
  top: 0px;
  z-index: 9999;
  background-color: #000000;
}
.nav-link, .active{
  color: #ffffff !important;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.navbar-toggler i{
  color: #ffffff;
 font-size: 25px;
}
.bg-hero{
 background-image: url(../images/bg.webp);
 background-position: center;
 background-repeat: no-repeat;
 opacity: 5;
background-size: cover;
}

.main-box{
  height: 50vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.top-heading{
  font-family: 'Gilroy', sans-serif;
   font-weight: 200;
   font-size: 11px;
   margin: 0px;
   letter-spacing: 1px;
}
.line-top{
  width: 9%;
  height: 1px;
  background-color: #ffffff;
}
.main-heading{
  font-family: 'Gilroy', sans-serif;
  font-weight: 800;
  font-size: 40px;
}
.scribble {
  position: relative;
  background-image: none;
  background-color: transparent;
  color: #ffffff;
  font-size: inherit;

  &::after {
    content: '';
    position: absolute;
    bottom: -10%;
    left: 0;
    height: 30%;
    mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='247' height='22' fill='none'%3E%3Cmask id='a' width='246' height='23' x='0' y='1' maskUnits='userSpaceOnUse' style='mask-type:alpha'%3E%3Cpath fill='%23D9D9D9' d='M0 1h246v23H0z'/%3E%3C/mask%3E%3Cg mask='url(%23a)'%3E%3Cpath fill='%2300a661' d='M.225 13.987c40.77-3.247 81.218-6.304 122.486-5.61 40.217.68 80.07 3.493 119.823 8.284 4.828.577 4.966-4.727.193-5.301-40.597-4.886-82.029-7.082-123.059-6.436-39.896.627-80.713 2.548-119.53 8.822-.233.04-.132.263.087.25v-.009z'/%3E%3C/g%3E%3C/svg%3E");
    mask-repeat: no-repeat;
    mask-size: 95%;
    width: 100%;
    background-image: linear-gradient(
      to right,
      currentcolor 40%,
      transparent 50%
    );
    background-repeat: no-repeat;
    animation: background-size-300 0.4s .5s ease-in both;
    background-size: 300%
  }
}
@keyframes background-size-300 {
  from {
    background-size: 0%;
  }

  to {
    background-size: 300%;
  }
}
/* work section  */
.work-section {
  position: relative;
}

/* Border line */
.border-line {
  width: 0%;
  height: 1.5px;
  background: linear-gradient(90deg, #ffffff, #fefefe);
  margin-top: 20px;
  transition: width 1s ease-in-out;
}
/* Active class (animation start) */
.work-section.active .border-line {
  width: 100%;
}
.image-box{
    width:100%;
    height:300px;
    position:relative;
    overflow:hidden;
    border-radius:6px;
    cursor:pointer;
    box-shadow: rgba(255, 255, 255, 0.16) 0px 10px 36px 0px, rgba(255, 255, 255, 0.06) 0px 0px 0px 1px;
}

.image-box .img{
    position:absolute;
    width:100%;
    height:100%;
    transition:opacity .5s ease;
    object-fit: cover;
    box-shadow: rgba(255, 255, 255, 0.24) 0px 3px 8px;
}

.img1{
    opacity:1;
}

.img2{
    opacity:0;
}

.image-box:hover .img1{
    opacity:0;
}

.image-box:hover .img2{
    opacity:1;
}
.project-card{
    display:flex;
    justify-content:space-between;
    align-items:center;
    gap:30px;
    flex-wrap:wrap;
}

.project-content{
    flex:1;
    min-width:280px;
}

.project-content h3{
    font-size:26px;
    font-weight:800;
    margin:15px 0px;

}

.project-tags{
    display:flex;
    flex-wrap:wrap;
    gap:10px;
}

.project-tags span{
    padding:6px 10px;
    background:#353535;
    border-radius:4px;
    font-size:14px;
    letter-spacing: 1px;
}

.project-btn{
  width: 100%;
  text-align: center;
}

.project-btn .btn1{
  width: 100%; 
  display: block;
    border-radius:0;
    font-size:16px;
    transition:.3s;
     color:#fff;
     border: 1px solid #6d6d6d;
     text-transform: uppercase;
     font-weight: bold;
     transition: all .5s;
}

.project-btn .btn1:hover ,.allworkbtn a:hover{
    background:#5b5b5b;
}
.project-btn .btn1 i, .allworkbtn a i {
  margin-left: 8px;
  display: inline-block; /* IMPORTANT */
  transition: transform 0.3s ease;
}

.project-btn .btn1:hover i ,  .allworkbtn a:hover i{
  transform:  rotate(-40deg);
}
/* new section */
.main-heading1{
  font-size: 15px;
  font-weight: bold;
}
.contantBtn{
  background-color: #ffffff;
  color: #000000;
  font-size: 10px;
  padding: 10px 10px;
  border: 1px solid #ffffff;
  transition: all .5s;
}
.contantBtn:hover{
  background-color: transparent;
  color: #ffffff;
}
.contantBtn i{
  font-size: 10px;
}
.allworkbtn a{
border: 1px solid #6d6d6d;
color: #ffffff;
letter-spacing: 1px;
font-weight: bold;
padding: 12px 20px;
font-size: 18px;
transition: all .5s;
}
  /* footer section */
    .bgcolor-footer{
      background-color: #000000;
  }

  .footer-heading{
      color: #ffffff;
      font-weight: 500;
      border-bottom: 2px solid #426382;
      display: inline-block;
      position: relative;
      padding-bottom: 10px;
  }
  .footer-heading::after{
      content: "";
      background-color: #522265;
      width: 30%;
      height: 2px;
      position: absolute;
      left: 0px;
      bottom: -2px;
  }
  .footer-link li a{
      color: #ffffff;
      font-weight: 400;
      font-size: 16px;
      line-height: 2rem;
  }
  .footer-link li a:hover{
      text-decoration: none;
  }
  .footer-link li::marker{
     color: #8b8b8b;
     font-size: 18px;
  }
  .footer-Address{
      display: flex;
      column-gap: 20px;
      align-items: center;
  }
  .textpara{
      text-align: justify;
      color: #ffffff;
  }
  .icon-box i{
      width: 40px;
      height: 40px;
      background-color: #464646;
      border-radius: 50%;
      display: flex;
      justify-content: center;
      align-items: center;
      color: #ffffff;
      text-shadow: rgb(0, 0, 0) 0px 5px 15px;
  }
  .footer-Address a{
      color: #ffffff;
      font-size: 16px;
      font-weight: 400;
  }
  .footer-Address a:hover ,.copy-line a:hover{
      text-decoration: none;
  }
 
  .social-icon{
      display: flex;
      column-gap: 20px;
      align-items: center;
  }
  .icon-box1{
    overflow: hidden;
  }
  .icon-box1 a{
     color: #ffffff;
     font-size: 20px;
     background-color: #434343;
     width: 50px;
     height: 50px;
     display: flex;
      align-items: center;
      justify-content: center;
      border-radius: 50%;
    position: relative;
    border: 1px solid #434343;
    transition: all .5s;
      
  }
  .icon-box1 a:hover{
    background-color: #2c2c2c;
  }
  .social-icon-effect{
    position: absolute;
    transform: translateY(50px);
    transition: all .3s;
  }
    .icon-box1 a:hover .social-icon-effect{
    transform: translateY(0px);
  }
    .social-icon-effect1{
     position: absolute;
    transform: translateY(0px);
    transition: all .3s;
  }
    .icon-box1 a:hover .social-icon-effect1{
    transform: translateY(-50px);
  }
  hr {  
      height: 1px;  
      background-color: rgb(212, 212, 212);  
      border: none;  
      margin: 0;
  }  
  .copy-line{
      padding: 20px 0px;
      color: #ececec;
      text-align: center;
      margin: 0;
      font-size: 16px;
  }
  .copy-line a{
      color: #249edf;
      font-weight: 500;
  }
@media (min-width:768px){
  .whatsappimgbox{
    width: 6%;
  }
  .logo-box{
    width: 25%;
}
.top-heading{
  text-align: left;
   font-size: 15px;
}
.main-heading{
  font-size: 55px;
}
 .project-card{
        gap:20px;
    }

    .project-btn{
        width:100%;
        min-width:100%;
    }

    .project-btn .btn1{
        width:100%;
    }
    .main-heading1{
  font-size: 40px;
}
.contantBtn, .contantBtn i{
  
  font-size: 16px;
}
}
@media (min-width:992px){
  .whatsappimgbox{
    width: 3%;
  }
  .logo-box{
    width: 20%;
}
.line-top{
  width: 5%;
}
.main-box{
  height: 70vh;
}

.image-box1 , .image-box{
  height: 400px;
}
.main-box{
  height: 95vh;
}
}
@media (min-width:1440px){
  .navbar-nav{
     column-gap: 35px;
  }
 
}