@import "compass/css3";
@import url("https://fonts.googleapis.com/css2?family=Rancho&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Josefin+Sans:ital,wght@1,300&display=swap");
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  text-decoration: none;
  outline: none;
  border: none;
  scroll-behavior: smooth;
}
body {
  margin: 0;
  padding: 0;
}
/* Bubbles desgin */
.container {
  position: relative;
  width: 100%;
  height: 100vw;
  overflow: hidden;
  background-color: black;
}
.bubbles {
  position: relative;
  display: flex;
}
.bubbles span {
  position: relative;
  width: 30px;
  height: 30px;
  background: #4fc3dc;
  margin: 0 4px;
  border-radius: 50%;
  box-shadow: 0 0 0 10px #4fc3dc44, 0 0 10px #4fc3dc, 0 0 10px #4fc3dc;
  animation: animate 1s linear infinite;
  animation-duration: calc(120s / var(--i));
}
.bubbles span:nth-child(even) {
  background: #ff2d75;
  box-shadow: 0 0 0 10px #ff2d7544, 0 0 50px #ff2d75, 0 0 100px #ff2d75;
}
@keyframes animate {
  0% {
    transform: translateY(100vh) scale(0);
  }
  100% {
    transform: translateY(-10vh) scale(1);
  }
}
@media (max-width: 768px) {
  .container {
    width: 100vw;
    height: 210vh;
  }
  .bubbles span {
    margin-top: 10px;
    width: 10px;
    height: 5px;
  }
  .bubbles span:nth-child(even) {
    background: #ff2d75;
    /* box-shadow: 1 1 1 1px #ff2d7544, 0 0 5px #ff2d75, 0 0 5px #ff2d75; */
  }
}

/* Heading desgin */

.headings {
  width: auto;
  height: 500px;
  font-size: 4.5rem !important;
  letter-spacing: -1.5px;
  word-spacing: 7px;
  margin-top: 10%;
}
#styling {
  font-family: sans-serif;
  text-align: center;
  padding-top: 2%;
  font-weight: 900;
  color: white;
}
#grads {
  font-weight: 900;
  letter-spacing: 2px;
  text-align: center;
  color: #f35626;
  background: linear-gradient(
    -45deg,
    #e73c7e,
    #23acd5,
    #ff00f3,
    #0033ff,
    #ff00c4,
    #00c3ff
  );
  background-size: 400%;
  letter-spacing: 2px;
  -webkit-text-fill-color: transparent;
  -webkit-background-clip: text;
  animation: hue 11s infinite linear;
}
@keyframes hue {
  0% {
    background-position: 0%;
  }
  100% {
    background-position: 400%;
  }
}
@media (max-width: 768px) {
  .headings {
    margin-top: 25%;
    font-size: 1.9rem !important;
    margin-left: 1%;
  }
}

/* Line animation */
#linesanimation {
  margin-top: -42%;
  background-color: black;
}
@keyframes fadeIn {
  from {
    opacity: 0;
  }
}
.line1 {
  border: 3px solid rgb(160, 159, 159);
  width: 62%;
  margin-left: 18%;
  animation: fadeIn 1.1s infinite alternate;
  margin-top: 44%;
}
.line2 {
  border: 3px solid rgb(160, 159, 159);
  width: 45%;
  margin-left: 28%;
  animation: fadeIn 1.2s infinite alternate;
  margin-top: 7%;
}
.line3 {
  border: 2px solid rgb(160, 159, 159);
  width: 35%;
  margin-left: 32%;
  animation: fadeIn 1.3s infinite alternate;
  margin-top: 7%;
}
.line4 {
  border: 2px solid rgb(160, 159, 159);
  width: 28%;
  margin-left: 36%;
  animation: fadeIn 1.4s infinite alternate;
  margin-top: 7%;
}
.line5 {
  border: 2px solid rgb(160, 159, 159);
  width: 20%;
  margin-left: 40%;
  animation: fadeIn 1.5s infinite alternate;
  margin-top: 7%;
}
.line6 {
  border: 2px solid rgb(160, 159, 159);
  width: 10%;
  margin-left: 45%;
  animation: fadeIn 1.6s infinite alternate;
  margin-top: 7%;
}
.line7 {
  border: 2px solid rgb(160, 159, 159);
  width: 5%;
  margin-left: 48%;
  animation: fadeIn 1.7s infinite alternate;
  margin-top: 7%;
}
.line8 {
  border: 2px solid rgb(160, 159, 159);
  width: 2%;
  margin-left: 49.5%;
  animation: fadeIn 1.8s infinite alternate;
  margin-top: 6%;
}
.line9 {
  border: 2px solid rgb(160, 159, 159);
  width: 1%;
  margin-left: 50.1%;
  animation: fadeIn 1.9s infinite alternate;
  margin-top: 6%;
}
.line10 {
  border: 2px solid rgb(160, 159, 159);
  width: 0.5%;
  margin-left: 50.5%;
  animation: fadeIn 1.1s infinite alternate;
  margin-top: 6%;
}
@media (max-width: 768px) {
  #linesanimation {
    margin-top: -80%;
    width: 140%;
    margin-left: -27%;

  }
  .line1 {
    border: 2px solid rgb(160, 159, 159);
    width: 60%;
    margin-left: 25%;
    animation: fadeIn 1.1s infinite alternate;
    margin-top: 65%;
  }
  .line2 {
    border: 2px solid rgb(160, 159, 159);
    width: 45%;
    margin-left: 33%;
    animation: fadeIn 1.2s infinite alternate;
    margin-top: 7%;
  }
  .line3 {
    border: 2px solid rgb(160, 159, 159);
    width: 35%;
    margin-left: 37%;
    animation: fadeIn 1.3s infinite alternate;
    margin-top: 7%;
  }
  .line4 {
    border: 2px solid rgb(160, 159, 159);
    width: 28%;
    margin-left: 40%;
    animation: fadeIn 1.4s infinite alternate;
    margin-top: 7%;
  }
  .line5 {
    border: 2px solid rgb(160, 159, 159);
    width: 20%;
    margin-left: 44%;
    animation: fadeIn 1.5s infinite alternate;
    margin-top: 7%;
  }
  .line6 {
    border: 2px solid rgb(160, 159, 159);
    width: 10%;
    margin-left: 49%;
    animation: fadeIn 1.6s infinite alternate;
    margin-top: 7%;
  }
  .line7 {
    border: 2px solid rgb(160, 159, 159);
    width: 5%;
    margin-left: 51.5%;
    animation: fadeIn 1.7s infinite alternate;
    margin-top: 7%;
  }
  .line8 {
    border: 2px solid rgb(160, 159, 159);
    width: 2%;
    margin-left: 53.1%;
    animation: fadeIn 1.8s infinite alternate;
    margin-top: 6%;
  }
  .line9 {
    border: 2px solid rgb(160, 159, 159);
    width: 1%;
    margin-left: 53.4%;
    animation: fadeIn 1.9s infinite alternate;
    margin-top: 6%;
  }
  .line10 {
    border: 2px solid rgb(160, 159, 159);
    width: 0.5%;
    margin-left: 53.7%;
    animation: fadeIn 1.1s infinite alternate;
    margin-top: 6%;
  }
}

/* About me styling */
html {
  font-size: 77.2%;
  overflow-x: hidden;
}

#aboutme {
  margin-top: -0.1%;
  height: 39%;
}

.about {
  padding-top: 18vh;
  background-image: url('https://images.unsplash.com/photo-1519681393784-d120267933ba?ixid=MnwxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8&ixlib=rb-1.2.1&auto=format&fit=crop&w=1124&q=100');
  /* background-color: #000000; */
  background-position: center;
  height: 100vh;
  width: 100vw;
}

.card {
  padding-top: 10vh;
    backdrop-filter: blur(2px) saturate(200%);
    -webkit-backdrop-filter: blur(2px) saturate(200%);
    background-color: rgba(12, 12, 12, 0.32);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.125);
}
.about h2 {
  color: white;
  text-align: center;
  font-size: 40px;
}
.about .row {
  position: relative;
  margin-top: 2vh;
  width: 80%;
  height: 59vh;
  left: 10%;
  display: flex;
  flex-direction: row;
  gap: 2rem;
  flex-wrap: wrap;
  padding-top: 20px;
  background-color: rgba(0, 0, 0, 0.197);
}
.about .row .image {
  text-align: center;
  flex: 1 1 35rem; 
}
.about .row .image img {
  margin-top:-1vh;
  width: 20rem;
  height: 52vh;
  border-radius: 5%;
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.6);
  mix-blend-mode: luminosity;
  transition: 0.3s;
  cursor: pointer;
}
.about .row .image img:hover {
  mix-blend-mode: normal;
}
.about .row .content {
  flex: 1 1 45rem;
  padding: 20px;
  line-height: 2.8rem;
  margin-top: 10px;
  
}
.about .row .content h3 {
  color: rgb(255, 255, 255);
  font-size: 3rem;
}
.about .row .content .tag {
  font-size: 1.7rem;
  color: #ffa600;
  font-weight: 600;
  margin-top: 1rem;
}
.about .row .content p {
  font-size: 1.5rem;
  margin-top: 1.5rem;
  font-family: "Nunito";
  font-weight: 600;
  text-transform: none;
  color: white;
}
.about .row .content .box-container {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  font-family: "Nunito";
  font-weight: 600;
}
.about .row .content .box-container .box p {
  text-transform: none;
}
.about .row .content .box-container .box p span {
  color: #f2ff01;
}
.resumebtn {
  margin-top: 2rem;
}
.resumebtn .btn {
  padding: 0.5rem 1rem;
  border-radius: 0.5em;
  transition: 0.3s;
  color: #fff;
  background: #2506ad;
  box-shadow: 0px 5px 10px rgba(48, 68, 247, 0.6);
  font-family: "Nunito", sans-serif;
}
.resumebtn .btn span {
  font-weight: 600;
  font-size: 1.8rem;
  letter-spacing: 0.1rem;
}
.resumebtn .btn i {
  margin-left: 0.3rem;
  font-size: 1.2rem;
  transition: 0.3s;
}
.resumebtn .btn:hover {
  background: #1a047e;
}
.resumebtn .btn:hover i {
  transform: translateX(5px);
}
/* about media queries starts*/
    /* about media queries starts*/
@media (max-width: 768px) {
    .about{
      padding-top: 15vh;
      background-image: url('https://images.unsplash.com/photo-1519681393784-d120267933ba?ixid=MnwxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8&ixlib=rb-1.2.1&auto=format&fit=crop&w=1124&q=100');
      background-position: center;
      height: 100vh;
    }
    
    .card {
        padding-top: 45vh;
        backdrop-filter: blur(2px) saturate(200%);
        -webkit-backdrop-filter: blur(2px) saturate(200%);
        background-color: rgba(46, 46, 99, 0.32);
        border-radius: 12px;
        border: 1px solid rgba(255, 255, 255, 0.125);
        width: 100vw;
        height: 220vh;
    }
    
    .about .row .image {
      margin-top: 0.5rem;
      width:50vw;
    }
    .about .row .image img {
      width: 50vw;
      mix-blend-mode: normal;
    }
    .about .row {
      padding: 1rem;
      
      margin-top: -10vh;
      height: 140vh;
    }
    .about .row .content {
      padding: 1.2rem;
      margin-top: -15%;
      line-height: 1.8rem;
    
    }
    .about .row .content h3{
        font-size: 2rem;
        margin-top: 2vh;
    }
    .about .row .content .tag{
      font-size: 1rem;
    }
    .about .row .content .box-container {
      gap: 1;
    }
    .resumebtn {
      margin-top: 1rem;
    }
  }
  /* about media queries ends*/
/* More */

#section-prefer {
  margin-top: 35%;
  position: relative;
  width: 100%;
  min-height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow-x: hidden;
}
#section-prefer::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100px;
}
#section-prefer #text {
  position: relative;
  color: #082a3a;
  font-size: 10vh;
  text-align: center;
  line-height: 0.55em;
  margin-top: 43%;
  font-family: "Rancho", cursive;
}
#section-prefer #text #bold {
  font-weight: 800;
  font-size: 1.9em;
}
#section-prefer #text span {
  font-size: 1.2em;
  letter-spacing: 1px;
  font-weight: 50;
  position: relative;

  display: block;
  line-height: 1.2;
}
#section-prefer #text span::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background: white;
  animation: a-ltr-after 5s cubic-bezier(0.77, 0, 0.18, 1) forwards infinite;
  transform: translateX(-101%);
}
#section-prefer #text span::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background: var(--bg-color);
  animation: a-ltr-before 7s cubic-bezier(0.77, 0, 0.18, 1) forwards infinite;
  transform: translateX(0);
}
#section-prefer #text span:nth-of-type(1)::before,
#section-prefer #text span:nth-of-type(1)::after {
  animation-delay: 5s;
}

#section-prefer #text span:nth-of-type(2)::before,
#section-prefer #text span:nth-of-type(2)::after {
  animation-delay: 6s;
}
@keyframes a-ltr-after {
  0% {
    transform: translateX(-100%);
  }
  100% {
    transform: translateX(101%);
  }
}

@keyframes a-ltr-before {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(200%);
  }
}
#section-prefer img {
  position: absolute;
  top: 75%;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: none;
}
@media (max-width:768px){
    #section-prefer{
        margin-top: 110vh;
        width:100vw;
        height: 170vh;
    }
   
    #section-prefer #text{
        font-size: 2.5rem;
      }
    #section-prefer img{
        position: absolute;
        top: 120vh;
        left: 0;
        width:100vw;
        height: 70vh;
        object-fit:contain;
        pointer-events: none;

    }
}
/* Night paralaax effect */
#night-mode {
  max-height: 76vh;
  background: linear-gradient(#2b1055, #7597de);
  position: sticky;
  z-index: 1000;
  margin-top: 1%;
}
#night-mode section {
  position: relative;
  width: 100vw;
  height: 105vh;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow-x: hidden;
}
#night-mode .dummy {
  position: relative;
  padding: 100px;
  background: #0033ff;
  margin-top: -40px;
}

#night-mode section img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: none;
}
#night-mode section img#moon {
  mix-blend-mode: screen;
}
#night-mode section img#mountains_front {
  z-index: 10;
}
#rup {
  position: absolute;
  font-family: sans-serif;
  right: -450px;
  color: #fff;
  white-space: nowrap;
  font-size: 5.5vw;
  z-index: 9;
  margin-bottom: -10%;
}
@media (max-width:768px){
    #night-mode{
            margin-top: -17vh;
            width: 100vw;
            height: 200vh;       
    }
    
      #night-mode section {
          width: 100vw;
      }
      #night-mode section h2{
        font-size: 2rem;
      }
    #night-mode section img {
        position: absolute;
        top: 0;
        left:0;
        width: 100vw;
        pointer-events: none;
        
      }
      #night-mode section img#moon{
        margin-top: -8%;
      }
      #night-mode section img#mountains_front{
        width:100vw;
      }
      
}

/* Skills design */

.centert {
  display: flex;
  justify-content: center;
  align-items: center;
  background-image: url("https://static.pexels.com/photos/414171/pexels-photo-414171.jpeg");
  background-size: cover;
  -webkit-animation: slidein 200s;
  animation: slidein 20s infinite;

  -webkit-animation-fill-mode: forwards;
  animation-fill-mode: forwards;

  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;

  -webkit-animation-direction: alternate;
  animation-direction: alternate;
}
@-webkit-keyframes slidein {
  from {
    background-position: top;
    background-size: 3000px;
  }
  to {
    background-position: -100px 0px;
    background-size: 2750px;
  }
}

@keyframes slidein {
  from {
    background-position: top;
    background-size: 3000px;
  }
  to {
    background-position: -100px 0px;
    background-size: 2750px;
  }
}

.txt_anime {
  display: flex;
  align-items: left;
  justify-content: left;
  position: relative;
  margin-top:-55%;
  left: 19%;
  top: 10px;
  border-radius: 3px;
}
.txt_anime h1 {
  color: rgb(246, 245, 245);
  text-align: left;
  font-family: "Source Code Pro", monospace;
  text-transform: uppercase;
  font-size: 5rem;
  display: block;
  animation: reveal 5s cubic-bezier(0.77, -1, 0.175, 1) infinite;
}
@keyframes reveal {
  0% {
    transform: translate(0, 100%);
  }
  100% {
    transform: translate(0, 0);
  }
}

.maint {
  height: 120vh;
}
.boxt {
  width: 490px;
  height: 450px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.288);
  border-radius: 23px;
  flex-direction: column;
  color: rgb(255, 255, 255);
  position: relative;
  left: -16%;
  overflow: hidden;
}
.user_name {
  margin-bottom: 5px;
  font-size: 2rem;
}
.skill {
  color: rgba(255, 255, 255, 0.555);
  font-size: 2rem;
}
.arr_container,
.cancel {
  position: absolute;
  width: 80px;
  height: 90px;
  background: rgb(255, 255, 255);
  bottom: 0;
  right: 0;
  border-radius: 23px 0 23px 0;
  color: rgb(70, 70, 70);
  font-size: 1.6rem;
  cursor: pointer;
  transition: all 0.4s;
  padding: 10px;
  font-size: 30px;
}
.arr_container i {
  transform: rotate(45deg);
  padding: 10px;
  font-size: 30px;
}
.active_arr {
  transform: translate(30%, 10%);
}
.left_container {
  position: absolute;
  background: #0f2027;
  width: 100%;
  height: 100%;
  padding: 40px 0 0 20px;
  border-radius: 23px;
  transition: all 0.4s;
}
.off {
  transform: translate(-80%, -80%) rotate(90deg);
}
.active {
  transform: translate(0) rotate(0);
}
.left_container p {
  margin-bottom: 20px;
  font-size: 4rem;
}
.left_container .skills div {
  display: inline-block;
  color: rgb(155, 155, 155);
  border: 1px solid rgb(155, 155, 155);
  padding: 5px 10px;
  font-size: 2rem;
  margin: 10px 4px 4px 0;
}
.left_container .icons {
  font-size: 0.5rem;
  margin: -5px;
}
.left_container .icons i {
  color: #f8f6f6;
  cursor: pointer;
  margin-right: 10px;
  transition: all 0.4s;
}
.left_container .icons i:hover {
  color: #2c5364;
}
@media (max-width:768px){
    .maint{
        width:100vw;
        position: relative;
        height: 130vh;
        margin-top: 20%;
    }
    .centert{
      width: 100vw;
      height: 150vh;
    }
    .maint .boxt {
        width: 100vw;
        margin-left: -15%;
        margin-top:5vh;
        height: 65vh;
    }
    .maint .boxt img{
      width:100vw;
    }
    .maint .txt_anime h1{
        color: #fff;
        font-family: "Source Code Pro", monospace;
        text-transform: uppercase;
        font-size: 2.5rem;
        margin-left: -2vw;
        margin-top:-40vh;
    }
    .cancel,.arr_container{
      position: absolute;
      width: 50px;
      height: 50px;
      background: rgb(246, 244, 244);
      bottom: 0;
      right: 0;
      border-radius: 23px 0 23px 0;
      color: rgb(70, 70, 70);
      font-size: 1.6rem;
      cursor: pointer;
      transition: all 0.4s;
      padding: 10px;
      font-size: 10px;
    }
    .arr_container i {
      transform: rotate(45deg);
      padding: 10px;
      font-size: 20px;
    }
    .user_name {
        margin-bottom: 5px;
        font-size: 2rem;
        margin-left:-50px
      }
      .skill {
        color: rgba(255, 255, 255, 0.555);
        font-size: 1.4rem;
        margin-left:-50px;
      }
      .left_container p{
        font-size: 2rem;
      }
      .left_container .skills div{
        font-size: 1.2rem;
      }
      .left_container .cancel {
        color: #000000;
        font-size: 3rem;
        height: 5rem;
      }
}


/* skill design ends here */
/* <!-- adventure part */
.banner{
	background-color: #000000;
    width: 100%;
	height: 100%;
    position: absolute;
    overflow: hidden;
	
}
.banner video{
    position: absolute;
    top:0;
    left:0;
    width: 100%;
    height:100%;
    object-fit: cover;
}
.banner h1 {
    position:absolute;
    top:0;
    left:0;
    width: 100%;
    height:100%;
    font-weight: 900;
    background: #fff;
    font-family: sans-serif;
    font-size: 11vw;
    text-align: center;
    text-transform: uppercase;
    line-height: 50vh;
    mix-blend-mode: screen;
    
}
@media (max-width:768px){
    .banner {
        width: 100vw;       
    }
    .banner h1{
        font-size: 3.2rem;
    }
}
/* <!--adventure part ends here */


/* project section starts here */
.heading{
    height: 40vh;
}
.heading-sec__main {
    display: block;
    font-size: 6rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    letter-spacing: 3px;
    text-align: center;
    position: relative;
    color:#030303;
    background-color: #fff;
    margin-left: 7%;
}
  
   .heading-sec__main::after {
    content: "";
    position: absolute;
    top: 90px;
    height: 5px;
    width: 39%;
    background: rgb(7, 7, 7);
    left: 52%;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
    border-radius: 5px;
  }
  
  .heading-sec__sub {
    display: block;
    text-align: center;
    color: #777;
    font-size: 2rem;
    font-weight: 500;
    max-width: 80rem;
    margin: 80%;
    line-height: 1.6;
  }
  @media  (max-width: 37.5em) {
    .heading-sec__main{
        font-size: 4rem;
        margin-left: 1vw;
        margin-top: 80vh;
  }
  .heading-sec__main::after {
    content: "";
    position: absolute;
    top: 70px;
    height: 5px;
    width: 50vw;
    background: rgb(7, 7, 7);
    left: 50%;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
    border-radius: 5px;
  }
}
  .heading-sec__sub--lt {
    color: #eee;
  }
  
  .heading-sm {
    font-size: 2.2rem;
    text-transform: uppercase;
    letter-spacing: 1px;
  }
  
  .main-container {
    max-width: 100rem;
    margin-top:70% ;
    width: 100vw;
  }
  
  .btn {
    background: #fff;
    color: #333;
    text-transform: uppercase;
    letter-spacing: 2px;
    display: inline-block;
    font-weight: 700;
    border-radius: 5px;
    -webkit-box-shadow: 0 5px 15px 0 rgba(0, 0, 0, 0.15);
            box-shadow: 0 5px 15px 0 rgba(0, 0, 0, 0.15);
    -webkit-transition: -webkit-transform 0.3s;
    transition: -webkit-transform 0.3s;
    transition: transform 0.3s;
    transition: transform 0.3s, -webkit-transform 0.3s;
  }
  .btn:hover {
    -webkit-transform: translateY(-3px);
            transform: translateY(-3px);
  }
  .btn--bg {
    padding: 1.5rem 8rem;
    font-size: 2rem;
  }
  .btn--med {
    padding: 1.5rem 5rem;
    font-size: 1.6rem;
  }
  .btn--theme {
    background: black;
    color: #fff;
  }
  .btn--theme-inv {
    color: black;
    background: #fff;
    border: 2px solid black;
    -webkit-box-shadow: none;
            box-shadow: none;
    padding: calc(1.5rem - 2px) calc(5rem - 2px);
  }
.sec-pad {
    padding: 12rem 5rem;
  }
  @media (max-width: 56.25em) {
    .sec-pad {
      padding: 8rem 0;
    }
  }
  .heading-sec__mb-bg {
    margin-bottom: 71%;
  }

.projects__row {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1.5fr 5rem 1fr;
    grid-template-columns: 1.5fr 1fr;
    grid-gap: 5rem;
    margin-bottom: 11rem;
  }
  @media only screen and (max-width: 56.25em) {
    .projects__row {
      -ms-grid-columns: 1fr;
      grid-template-columns: 1fr;
      grid-gap: 2rem;
      margin-bottom: 8rem;
    }
    .projects__content{
      width: 100vw;
    }
  }
  @media only screen and (max-width: 56.25em) {
    .projects__row {
      text-align: center;
    }
  }
  .projects__row:last-child {
    margin-bottom: 0;
  }
  .projects__row-img-cont {
    overflow: hidden;
  }
  .projects__row-img {
    width: 100%;
    display: block;
    -o-object-fit: cover;
       object-fit: cover;
  }
  .projects__row-content {
    padding: 2rem 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
  @media only screen and (max-width: 56.25em) {
    .projects__row-content {
      -webkit-box-align: center;
          -ms-flex-align: center;
              align-items: center;
    }
  }
  .projects__row-content-title {
    font-weight: 700;
    font-size: 2.8rem;
    margin-bottom: 2rem;
  }
  @media only screen and (max-width: 37.5em) {
    .projects__row-content-title {
      font-size: 2.4rem;
    }
  }
  .projects__row-content-desc {
    font-size: 1.8rem;
    color: grey;
    max-width: 60rem;
    line-height: 1.7;
    margin-bottom: 3rem;
  }
  @media only screen and (max-width: 37.5em) {
    .projects__row-content-desc {
      font-size: 1.7rem;
    }
  }
/* project section end here */


/* Contact us section start */
.contact__us{
    position: relative;
    min-height:100vh;
    padding: 50px 100px;
    display:flex;
    justify-content:center;
    align-items:center;
    flex-direction: column;
    background: url(/images/bg.jpeg);
    background-size: cover;
}
.contact__us .content__this{
    max-width: 800px;
    text-align: center;
}
.contact__us .content__this h2{
    font-size: 40px;
    font-weight: 600;
    color: #fff;
    border-bottom: 2px solid white;
    margin-bottom: 50px;

}
.contact__us .content__this p{
    font-size: 36px;
    font-weight: 500;
    color: #fff;
}
.container__this{
    width:100%;
    display:flex;
    justify-content:center;
    align-items:center;

}
.container__this .contactInfo{
    width:50%;
    display: flex;
    flex-direction: column;
}
.container__this .contactInfo .box__this{
    position: relative;
    padding: 20px 0;
    display: flex;
    font-size: 2rem;
}
.container__this .contactInfo .box__this .icon__this{
    min-width: 60px;
    height: 60px;
    background: #fff;
    display:flex;
    justify-content: center;
    align-items:center;
    border-radius: 50%;
    font-size:22px;
    
}
.container__this .contactInfo .box__this .text__this
{
    display: flex;
    margin-left: 20px;
    font-size: 2rem;
    color: #fff;
    flex-direction: column;
    font-weight: 300;
}

.container__this .contactInfo .box__this .text__this h3{
    font-weight: 500;
    color:#00bcd4;
}
.contactForm{
    width: 40%;
    padding: 40px;
    background:#fff;
}
.contactForm h2{
    font-size:30px;
    color: #333;
    font-weight: 500;

}
.contactForm .inputBox{
    position: relative;
    width: 100%;
    margin-top: 10px;
    font-size: 17px;

}
.contactForm .inputBox input,
.contactForm .inputBox textarea
{
    width: 100%;
    padding: 5px 0;
    font-size: 16px;
    margin:10px 0;
    border :none;
    border-bottom: 2px solid #333;
    outline: none;
    resize: none;

}
.contactForm .inputBox span{
    position:absolute;
    left: 0;
    padding: 5px 0;
    font-size: 16px;
    margin:10px 0;
    pointer-events: none;
    transition: 0.5s;
    color: #666;
}
.contactForm .inputBox input:focus ~ span,
.contactForm .inputBox input:valid ~ span,
.contactForm .inputBox textarea:focus ~ span,
.contactForm .inputBox textarea:valid ~ span

{
    color: #e91e63;
    font-size: 12px;
    transform: translateY(-20px);

}
.contactForm .inputBox input[type="submit"]{
    width:100px;
    background: #00bcd4;
    color: #fff;
    border: none;
    cursor: pointer;
    padding: 10px;
    font-size: 18px;

}
@media (max-width:768px){
    .contact__us {
      width:100vw;
        min-height: 100vw;
        padding: 50px;
    
      }
      .contact__us .container__this {
        flex-direction: column;
        
      }
      .contact__us .container__this .contactInfo{
        margin-left: -40%;
      }
      .contact__us .container__this .content__this {
        padding: 18px 12px;
      }
      .contact__us .content__this .box__this {
        display: none;
      }
      .contact__us .container__this .box__this .text__this{
        font-size: 15px;
      }
      .contact__us .contactForm {
        width: 100vw;
        /* margin-right: 2rem; */

      }
    }
/* Contact us section end */

/* <!-- social links --> */
.container__is {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100vw;
}
  
  #linkedin,
  #twitter,
  #github,
  #mail {
    font-size: 8em;
    background-color: #18191f;
    color: #fff;
    box-shadow: 2px 2px 2px #00000080, 10px 1px 12px #00000080,
      2px 2px 10px #00000080, 2px 2px 3px #00000080, inset 2px 2px 10px #00000080,
      inset 2px 2px 10px #00000080, inset 2px 2px 10px #00000080,
      inset 2px 2px 10px #00000080;
    border-radius: 29px;
    padding: 11px 19px;
    margin: 50px 50px 10px  50px;
    animation: animateis 3s linear infinite;
    text-shadow: 0 0 50px #0072ff, 0 0 100px #0072ff, 0 0 150px #0072ff,
      0 0 200px #0072ff;
    
  }
  #twitter {
    animation-delay: 0.3s;
  }
  #facebook {
    animation-delay: 0.7s;
  }
  #github {
    animation-delay: 0.1s;
  }
  
  @keyframes animateis {
    from {
      filter: hue-rotate(0deg);
    }
    to {
      filter: hue-rotate(360deg);
    }
  }
  @media (max-width:768px){
     .container__is{
        flex-direction: column;
        width: 50px;

    }
    #linkedin,
  #twitter,
  #github,
  #mail{
    padding: 7px 10px;
  }

  }
  
/* <!-- social links --> */

/* scroll  animation */
  /* scroll top starts */
#scroll-top {
    position: relative;
    top: -150%;
    right: -8rem;
    padding: 1rem 1.5rem;
    font-size: 4rem;
    background: #fcfcfc;
    color: rgb(6, 6, 6);
    border-radius: 50%;
    transition: 1s linear;
    z-index: 1000;
    mix-blend-mode: screen;
  }
  #scroll-top.active {
    top: calc(100% - 22rem);
  }
  /* scroll top ends */
/* scroll animation end */