  *{
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "SF Pro";
  color: var(--fontColor);
  cursor: url("pics/cursor3.png"), auto;
}
html,body {
  height: 100%;
  width: 100%;
}
/*  :::::::::::::::::         THEME       :::::::::::::::::::::::::  */
:root{
  --headingColor : #a3a3a3;
  --fontColor : white;
}
@font-face{
  font-family: "SF Pro";
  src: url(Fonts/SFPRODISPLAYREGULAR.OTF);
}

/*  ::::::::::::::::::    MAIN   ::::::::::::::::::::::::  */
#main{
  width: 100%;
  background-color: black;
}
#minicircle{
  transition: all cubic-bezier(0.19, 1, 0.22, 1) 1s;
  width: 10px;
  height: 10px;
  position: absolute;
  z-index: 999;
  border-radius: 50%;
  background-color: #fff;
  mix-blend-mode: difference;
  opacity: 0;
}
/* :::::::::::::::::::       NAVBAR      ::::::::::::::::::::::::: */
#nav{ 
  height: 10vh;
  width: 100%;
  color: var(--fontColor);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding:  3vw 3vw;
  font-size: 19px;
}
#nav>a{
  color: var(--fontColor);
  font-weight: 600;
  text-decoration: none;
}
/* :::::::::::::::::::::         HOME PAGE    ::::::::::::::::::::::::  */
.bounding {
  width: fit-content;
  overflow: hidden;
}

.boundingElem{
translate: 0 100%;
}
#homepage{
  width: 100%;
  height: 100vh;
  background-color: black;
  position: relative;
}
#heading1{
  margin-top: 90px;
}
#heading1 h1{
  margin-left: 3.5vw;
  font-size: 9vw;
  font-weight: 900;
  color: var(--headingColor);
  line-height: 1; 
}
#blocktext{
  display: flex;
  flex-direction: column;
  align-items: end;
  width: fit-content;      
}
#blocktext h1{
  margin-left: 16vw;
}
#blocktext h5{
  font-size: 1.5vw;
  text-align: right;
}

#subHeading{
  display: flex;
  flex-direction: column;
  align-items: end;
  margin-top:  7vw;
  padding-right: 3.5vw;
}
#subHeading h5{
  font-size: 1.5vw;
  text-transform: uppercase;
  margin-top: 1vw;
}

#herofooter{
  position: absolute;
  width: 100%;
  bottom: 0.3vw;
  padding: 0 3.5vw;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 1.5vw;
}
#herofooter a{
  text-decoration: none;
}

#iconset{
  display: flex;
  gap: 0.5vw;
}
.circle{
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2vw;    
  height: 2vw;
  border-radius: 50%;
  background-color: var(--headingColor);
}
.circle i{
  font-size: 1.2vw;
  color: black;
  font-weight: 900;
}

/* :::::::::::::::::::         PAGE 2        :::::::::::::::::::::::  */
#page2{
  background-color: black;
  width: 100%;
  height: 100vh;
  padding-top: 10vw;
  padding-right: 10vw;
  padding-left: 3.5vw;
}
.elem{
  position: relative;
  width: 100%;
  border-top: 1px solid var(--headingColor);
  padding: 3vw 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.elem h1{
  font-size: 6vw;
  text-transform: uppercase;
  color: var(--headingColor);
}
.elem h2{
  font-size: 2vw;
  text-transform: uppercase;
  color: var(--headingColor);
}

.elem img{
  opacity: 0;
  pointer-events: none;
  height: 140%;
  z-index: 99;
  position: absolute;
  transform: translate(-50%, -50%);
  border-radius: 14px;
}
.elem>a{
    color: var(--fontColor);
    font-weight: 600;
    text-decoration: none;  
}

#elemLast{
  border-bottom: 1px solid #a3a3a3;
}
/* ::::::::::::::::::::::       PAGE 3     ::::::::::::::::::::::::::: */
#page3{
  display: flex;
  align-items: center;
  gap: 50px ;
  width: 100%;
  height: 100%;
  background-color: black;
  padding: 10vw 5vw;
  color: var(--fontColor);
}
#imgAbout{
  width: 50%;
  height: 100%;
  display: flex;
  justify-content: end;
}

#imgAbout img{
  width: 20vw;
  height: 20vw;
  border-radius: 50%;
  object-fit:  cover;
}
#textAbout{
  width: 50%;
  height: 100%;
  padding-left: 1vw;
  padding-right: 3.5vw;
}
#textAbout h5 {
  text-transform: uppercase;
  opacity: .6;
  margin-bottom: 10px;
}

#textAbout p {
  font-weight: 200;
  font-size: 19px;
  line-height: 1.5;
  margin-bottom: 30px;
}

#textAbout a {
  padding: 8px 22px;
  border: 1px solid var(--fontColor);
  border-radius: 100px;
  color: var(--fontColor);
  font-size: 16px;
  text-decoration: none;
}
#textAbout a:hover{
  background-color: var(--fontColor);
  color: black;
  font-weight: 800;
}
/* ::::::::::::::::::::::     FOOTER      :::::::::::::::::::::::::: */
#footer{
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 2vw 3.5vw;
  background-color: black;
}

#footerLeft{
  display: flex;
  gap: 30px;
}
#footerRight{
  display: flex;
  gap: 40px;
}
#footer a {
  text-transform: uppercase;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
}

/* :::::::::::::::::::       PRE LOADER    :::::::::::::::::::: */
#preloader{
  width: 100%;
  height: 100vh;
  background-color: #121212;
  position: fixed;
  z-index: 10000;
  display: grid;
  place-items: center;
}
#preloader h1{
  font-family: "SF Pro";
  font-size: 140px;
  color: #121212;
  text-shadow: -1px -1px 3px #020202, 
    2px 2px 4px #1b1b1b;
  position: relative;

}
#preloader h1::before{
  content: " AVINASH...";
  color: #4f4f4f;
  font-family: "SF Pro";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  border-right:8px solid  #4f4f4f;
  overflow: hidden;
  animation: textrev 4s  linear infinite;
}
@keyframes textrev{
  0%{
    width: 0%;
  }
  50%{
    width: 100%;
  }
  100%{
    width: 0%;
  }
}

