@import url('https://fonts.googleapis.com/css2?family=Aboreto&display=swap');
@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@100;200;300;400;500;600;700;800;900&display=swap");
@font-face {
    font-family: Heading;
    src:  url(/PawanChettri/assets/fonts/Gallient.ttf);
  }
@font-face {
    font-family: gm;
    src: url(/PawanChettri/assets/fonts/Graphik-Medium-Web.ttf);
  }
@font-face {
    font-family: gr;
    src: url(/PawanChettri/assets/fonts/Graphik-Regular-Web.ttf);
  }
@font-face {
    font-family: gsb;
    src: url(/PawanChettri/assets/fonts/Graphik-Semibold-Web.ttf);
  }
    @font-face {
    font-family: neu;
    src: url(/PawanChettri/assets/fonts/NeueHaasDisplayMediu.ttf);
}

@font-face {
    font-family: neu;
    font-weight: 100;
    src: url(/PawanChettri/assets/fonts/NeueHaasDisplayLight.ttf);
}

@font-face {
    font-family: neu;
    font-weight: 200;
    src: url(/PawanChettri/assets/fonts/NeueHaasDisplayRoman.ttf);
}
*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: gr;
}
html, body {
    height: 100%;
    width: 100%;
}


:root {
  /* black family */
  --black:#000;
  --offblack:#0C0C0C;
  /* white family */
  --white:#ffffff;
 --offwhite:#E7E5E6;
 /* purple family */
 --offpurple:#B084D3;
 /* yellow family */
 --offyellow:#D3FF4E;
 /* yellow family */
 --lightbg:#FAF8F3;
 --darkbg:#EDECE7;
 /* para gray family*/
 --ParaGray:#A1A2A3;
 --mtext:#575b5f;
  --mdgwt:#777c81;
  
}

#main{
 background-color: #000000;

}

.workherobanner{
    width: 100%;
    height: 100vh;
    background-color: var(--black);
    display: flex;
    justify-content: flex-end;
    flex-direction: column;
    gap: 2vw;
    padding: 4vw;
}
.workherobanner h1{
  display: none;
}
.workherobanner h2{
  font-size: 16vw;
  font-family: neu;
  color: var(--mtext);
  font-weight: 900;
}
.workherobanner h2 span{
  font-size: 16vw;
  font-family: neu;
  color: var(--mtext);
  font-weight: 900;
  
}

.workherobanner p{
  width: 55%;
  font-size: 1.5vw;
  font-family: gr;
  color: var(--mdgwt);
}
@media (max-width:768px) {
.workherobanner{
    gap: 4vh;
    padding:9vh 0vw;
    
}
.workherobanner h2{
  display: none;
}
.workherobanner h1{
  display: block;
  white-space: nowrap;
  overflow-x: auto;
  overflow-y: hidden;
  display: flex;
  gap: 84px;
  
}
.workherobanner h1 span{
  font-size: 20vh;
  font-family: neu;
  color: #575b5f;
  font-weight: 900;
  animation-name: scroll;
  animation-duration: 10s;
  animation-iteration-count: infinite;
  animation-name: scroll;
  display: inline-block;
  animation-timing-function: linear;
  
}
.workherobanner h1::-webkit-scrollbar {
  display: none;
}
@keyframes scroll {
  0% {
      transform: translateX(0);
  }

  100% {
      transform: translateX(calc(-100% - 83px));
  }
}
.workherobanner p{
  width: 100%;
  font-size: 3vh;
  padding: 0 4vw;
}
.workherobanner p span{
  width: 100%;
  font-size: 3vh;
}
}
#workfilter{
  width: 100%;
  padding: 6vw 4vw 0vw;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}
#workfilter h1{
  font-size: 1.3vw;
    position: relative;
    margin-left: 20px;
    color: #777c81;
    display: flex;
    align-items: center;
    font-family: gr;
    gap: 1vw;
}
#workfilter h1 span{
    border-radius: 50%;
    width: 10px;
    height: 10px;
    background: linear-gradient(to top right, #833ab4, #b084d3);
    position: absolute;
    left: -20px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 9999;
}
.custom-select {
  width: 25%;
  cursor: pointer;
  user-select: none;
  position: relative;
}

.selected-option {
  padding: 24px 23px;
  background: var(--mtext);
  color: var(--white);
  font-size: 1.2vw;
  font-family: gr;
  font-weight: 600;
  border-radius: 50px;
  display: flex;
  justify-content: space-between;
  -webkit-transition: .6s ease;
    -o-transition: .6s ease;
    transition: .6s ease;
    object-fit: cover;
}
.selected-option:hover{
  background-color: var(--mdgwt);
}
.selected-option i {
  font-size: 1.4vw;
  transition: transform 0.6s ease;
  display: inline-block;
}

.selected-option.active i {
  transform: rotate(180deg);
}

.custom-options {
  display: none;
  flex-direction: column;
  position: absolute;
  top: 110%;
  left: 0;
  background: var(--mtext);
  width: 100%;
  z-index: 10;
  border-radius: 40px;
  overflow: hidden;
}

.option {
  padding: 22px 23px;
  color: white;
  border-bottom: 1px solid var(--mdgwt);
  font-size: 1.2vw;
  font-family: gr;
  font-weight: 600;
  -webkit-transition: .6s ease;
    -o-transition: .6s ease;
    transition: .6s ease;
    object-fit: cover;
}
.option:nth-last-child(1){
  border-bottom: none;
}
.option:hover {
  background: var(--mdgwt);

}


@media (max-width:768px) {
  #workfilter{
  padding: 0vw 4vw 0vw;
  align-items: flex-start;
  flex-direction: column-reverse;
  gap: 4vh;
}
#workfilter h1{
  font-size: 2.2vh;
    display: none;
}
.custom-select {
  width: 100%;
}
.selected-option {
  padding: 30px 23px;
  font-size: 2vh;
}
.selected-option i {
  font-size: 2.4vh;
}
.option {
  font-size: 2.2vh;
}
}



.ourworkbody{
  width: 100%;
  height: 100%;
  padding:1vw 4vw;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  gap: 1vw;
}

.ourbodywrapp{
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  gap: 2vw;
  border-top: 1px solid var(--mdgwt);
  padding-top: 3vw;

}
.ourbodywrapp ul{
  width: 100%;
  display: flex;
  gap: 2vw;
}
.ourbodywrapp a{
  text-decoration: none;
  cursor: pointer;
}
.ourworkbodyitem{
  width: 100%;
  height: 70vh;
  display: flex;
  flex-direction: column;
  gap: 10px;
  z-index: 2;

}

/*  */
 /* Custom Cursor */
 .custom-cursor, .workcustom-cursor, .workcustom-cursorr, .workcustom4-cursor, .workcustom5-cursor {
  position: absolute;
  width: 15px;
  height: 15px;
  background-color: #000;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  pointer-events: none;
  transform: translate(-50%, -50%) scale(1);
  opacity: 0;
  z-index: 9999999;
  text-align: center;
  flex-direction: column;
}

.eye-container, .workeye-container, .workeyee-containerr,.workeye4-container.workeye5-container {
  position: relative;

}

.eye-large, .eye-medium, .eye-small,
.workeye-large, .workeye-large, .workeye-small,
.workeyee-large, .workeyee-large, .workeyee-small,
.workeye4-large, .workeye4-large, .workeye4-small,
.workeye5-large, .workeye5-large, .workeye5-small {
  position: absolute;
  border-radius: 50%;
  transition: transform 0.1s ease;
  top: 50%;
  left: 50%;
  transform: translate(-50%,-50%);
}

.eye-large,.workeye-large,.workeyee-large,.workeye4-large,.workeye5-large {
  width: 3vw;
  height: 3vw;
  background: transparent;
}

.eye-medium, .workeye-large,.workeyee-large,.workeye4-large,.workeye5-large {
  width: 3vw;
  height: 3vw;
}

.eye-small, .workeye-small, .workeyee-small,.workeye4-small,.workeye5-small {
  top: 50%;
  left: 50%;
  transform: translate(-50%,-50%);
} 

.eye-small h1,.workeye-small h1, .workeyee-small h1, .workeye4-small h1, .workeye5-small h1{
  font-size: .9vw;
  color: #fff;
  font-family: gr;
  font-weight: 400;
  margin: 0;
  line-height: 1.2;
  opacity: 0;
}


.ourworkbodyitem-imagepart{
  background-color: var(--offpurple);
  width: 100%;
  height: 60vh;
  overflow: hidden;
  border-radius: 10px;

}
.workcustomcursor2-imagepart{
  background-color: var(--offpurple);
  width: 100%;
  height: 60vh;
  overflow: hidden;
  border-radius: 10px;

}
.workcustomcursor3-imagepart{
  background-color: var(--offpurple);
  width: 100%;
  height: 60vh;
  overflow: hidden;
  border-radius: 10px;

}
.workcustomcursor4-imagepart{
  background-color: var(--offpurple);
  width: 100%;
  height: 60vh;
  overflow: hidden;
  border-radius: 10px;

}
.workcustomcursor5-imagepart{
  background-color: var(--offpurple);
  width: 100%;
  height: 60vh;
  overflow: hidden;
  border-radius: 10px;

}
.ourworkbodyitem-imagepart:hover img{
  scale: 1.03;
}
.ourworkbodyitem-imagepart img{
  width: 100%;
  height: 100%;
  -webkit-transition: .6s ease;
    -o-transition: .6s ease;
    transition: .6s ease;
    object-fit: cover;
}
.workcustomcursor2-imagepart:hover img{
  scale: 1.03;
}
.workcustomcursor3-imagepart:hover img{
  scale: 1.03;
}
.workcustomcursor4-imagepart:hover img{
  scale: 1.03;
}
.workcustomcursor5-imagepart:hover img{
  scale: 1.03;
}
.workcustomcursor2-imagepart img{
  width: 100%;
  height: 100%;
  -webkit-transition: .6s ease;
    -o-transition: .6s ease;
    transition: .6s ease;
    object-fit: cover;

}
.workcustomcursor3-imagepart img{
  width: 100%;
  height: 100%;
  -webkit-transition: .6s ease;
    -o-transition: .6s ease;
    transition: .6s ease;
    object-fit: cover;

}
.workcustomcursor4-imagepart img{
  width: 100%;
  height: 100%;
  -webkit-transition: .6s ease;
    -o-transition: .6s ease;
    transition: .6s ease;
    object-fit: cover;

}
.workcustomcursor5-imagepart img{
  width: 100%;
  height: 100%;
  -webkit-transition: .6s ease;
    -o-transition: .6s ease;
    transition: .6s ease;
    object-fit: cover;

}

#workitems-content{
  width: 100%;
  height: 15vh;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1vw;
  padding: 2vw 0;
}
#workitems-content h1{
  font-size: 1.4vw;
  font-family: gr;
  color: #fff;
}
#workitems-content h1 span{
  font-size: 1.4vw;
  color:  var(--mdgwt);
}





@media (max-width:768px) {

.ourworkbody{
  padding:2vh 4vw 4vh;
}
.ourbodywrapp{
  border-top: none;
  flex-direction: column;
  gap: 4vw;

}
.ourbodywrapp ul{
  display: flex;
  flex-direction: column;
  gap: 4vw;
}
.ourbodywrapp a{
  text-decoration: none;
  cursor: pointer;
  gap: 0;
}
.ourworkbodyitem{
  gap: 10px;
  height: 100%;
}

.ourworkbodyitem-imagepart{
  height:28vh;
}

.workcustomcursor2-imagepart{
  height:28vh;
}
.workcustomcursor3-imagepart{
  height:28vh;
}
.workcustomcursor4-imagepart{
  height:28vh;
}
.workcustomcursor5-imagepart{
  height:28vh;
}
#workitems-content{
  height:100%;
  gap: 1vh;
  padding:1vh 0 2vh;
}
#workitems-content h1{
  font-size: 2.2vh;
  
  gap: 1vw;
}
#workitems-content h1 span{
  font-size: 2.2vh;
}

 
}


#seviceworkscroll {
  height: 100%;
  width: 100%;
  position: relative;
 padding: 4vw 0;
    display: flex;
    flex-direction: column;
    gap: 1vw;
 border-top: 1px solid var(--mdgwt);
}

#seviceworkscroll-div {
  width: 100%;
  white-space: nowrap;
  position: relative;
  overflow-x: auto;
  overflow-y: hidden;
  
}

#seviceworkscroll-div::-webkit-scrollbar {
  display: none;
}

#seviceworkscroll-div a {
  text-decoration: none;
  margin-right: 1vw;
  display: inline-block;
}
#seviceworkscroll-div a img {
  height: 23vmax;
}
#seviceworkscroll-div2 {
  width: 100%;
  white-space: nowrap;
  position: relative;
  overflow-y: hidden;
  display: flex;
  justify-content: flex-end;
  overflow-x: auto;
}

#seviceworkscroll-div2::-webkit-scrollbar {
  display: none;
}

#seviceworkscroll-div2 a {
  text-decoration: none;

  margin-right: 1vw;
  display: inline-block;
}
#seviceworkscroll-div2 a img {
  height: 23vmax;
}

