:root {
  --primary: rgb(127, 218, 9);
  --secondary: rgb(96, 168, 1);
  --for2: #333;
  --for: black;
  --for1: #212121;
  --background: #fff;
  --bg1: #ececec;
  --bg2: #c6c6c6;
  --mid: #808080;
  --for:#000000;
  --poppins: "Roboto", sans-serif;
  --cormo: "Cormorant Garamond", serif;
  --snapred:#FF2341;
}

html, body {
  width: 100%;
  margin: 0px;
  padding: 0px;
  cursor: none !important;
  font: var(--poppins);
  background-color: var(--background);
}

.overflow-hidden {
  overflow: hidden;
  min-height: 100vh;
}

.cursormain {
  height: 32px;
  width: 32px;
  border: 2px solid white;
  border-radius: 50%;
  position: absolute;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  z-index: 110;
  -webkit-transition: .1s;
  transition: .1s;
  pointer-events: none;
  overflow: hidden;
  mix-blend-mode: difference;
}

.cursormain p {
  opacity: 0;
}

.cursormainhide {
  opacity: 0;
}

.cursorsmall {
  height: 6px;
  width: 6px;
  border-radius: 50%;
  position: absolute;
  background-color: var(--primary);
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  mix-blend-mode: difference;
  z-index: 110;
  pointer-events: none;
}

.cursorsmallhide {
  opacity: 0;
}

.glowcursor {
  height: 128px;
  width: 128px;
  background-color: var(--primary);
  border-radius: 50%;
  position: absolute;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  mix-blend-mode: screen;
  z-index: 1;
  pointer-events: none;
  opacity: 0;
}

.glowcursorshow {
  opacity: 1;
}

.navlink-grow {
  height: 10rem;
  width: 10rem;
  background-color: var(--primary);
  border: none;
  z-index: 49;
  -webkit-transform-origin: center;
          transform-origin: center;
  mix-blend-mode: normal;
  overflow: hidden;
  -webkit-animation: pulse2 0.5s  infinite  alternate;
          animation: pulse2 0.5s  infinite  alternate;
}

@-webkit-keyframes pulse2 {
  from {
    -webkit-box-shadow: 0px 0px 0px 0px #7fda09;
            box-shadow: 0px 0px 0px 0px #7fda09;
  }
  to {
    -webkit-box-shadow: 0px 0px 0px 20px rgba(127, 218, 9, 0.5);
            box-shadow: 0px 0px 0px 20px rgba(127, 218, 9, 0.5);
  }
}

@keyframes pulse2 {
  from {
    -webkit-box-shadow: 0px 0px 0px 0px #7fda09;
            box-shadow: 0px 0px 0px 0px #7fda09;
  }
  to {
    -webkit-box-shadow: 0px 0px 0px 20px rgba(127, 218, 9, 0.5);
            box-shadow: 0px 0px 0px 20px rgba(127, 218, 9, 0.5);
  }
}

.hovered-navlink {
  -webkit-transform: scale(1.2);
          transform: scale(1.2);
  position: absolute;
  color: white;
  z-index: 1100;
  overflow: hidden;
}

.icon-grow {
  -webkit-transform: scale(2);
          transform: scale(2);
  -webkit-transform-origin: 100% 100%;
          transform-origin: 100% 100%;
  background-color: var(--primary);
  mix-blend-mode: normal;
  border: none;
  z-index: 100;
  -webkit-animation: pulse infinite 1s;
          animation: pulse infinite 1s;
  -webkit-animation-direction: alternate;
          animation-direction: alternate;
}

@-webkit-keyframes pulse {
  from {
    -webkit-box-shadow: 0px 0px 0px 0px #7fda09;
            box-shadow: 0px 0px 0px 0px #7fda09;
  }
  to {
    -webkit-box-shadow: 0px 0px 0px 10px rgba(127, 218, 9, 0.5);
            box-shadow: 0px 0px 0px 10px rgba(127, 218, 9, 0.5);
  }
}

@keyframes pulse {
  from {
    -webkit-box-shadow: 0px 0px 0px 0px #7fda09;
            box-shadow: 0px 0px 0px 0px #7fda09;
  }
  to {
    -webkit-box-shadow: 0px 0px 0px 10px rgba(127, 218, 9, 0.5);
            box-shadow: 0px 0px 0px 10px rgba(127, 218, 9, 0.5);
  }
}

.hovered-icon {
  -webkit-transform: scale(1.5);
          transform: scale(1.5);
  position: relative;
  z-index: 111;
}

.ripple {
  -webkit-animation: pulse 0.5s  2 alternate;
          animation: pulse 0.5s  2 alternate;
}

@keyframes pulse {
  from {
    -webkit-box-shadow: 0px 0px 0px 0px #7fda09;
            box-shadow: 0px 0px 0px 0px #7fda09;
  }
  to {
    -webkit-box-shadow: 0px 0px 0px 10px rgba(127, 218, 9, 0.5);
            box-shadow: 0px 0px 0px 10px rgba(127, 218, 9, 0.5);
  }
}

.viewcursor-hover {
  height: 96px;
  width: 96px;
  background-color: var(--background);
  border: none;
  mix-blend-mode: normal;
}

.viewcursor-hover p {
  opacity: 1;
  font-family: var(--poppins);
  font-size: 16px;
  letter-spacing: 6px;
  padding: 0px;
  margin: 0px;
  position: absolute;
  z-index: 100;
  -webkit-transform: translate(21px, 38px);
          transform: translate(21px, 38px);
}

.link-grow {
  height: 64px;
  width: 64px;
  -webkit-transition: .4s;
  transition: .4s;
  -webkit-transition-property: height, width;
  transition-property: height, width;
}

.buttonlink {
  cursor: none;
}

.hidden {
  display: none;
}

.visible {
  display: block;
}

a,
a:hover,
a:focus,
a:active {
  text-decoration: none !important;
  color: inherit;
  cursor: none;
}

a:hover {
  -webkit-transition: .4s;
  transition: .4s;
}

p {
  font-family: var(--poppins);
}

H3 {
  font-family: var(--poppins);
}

.darkc {
  color: var(--for2);
}

.lightc {
  color: var(--bg1);
}

.whitec {
  color: white;
}

.blackc {
  color: #000000;
}

.title {
  font-family: var(--poppins);
  font-size: 3vw;
  letter-spacing: 2px;
}

.pad {
  padding: 0 10vw;
}

section {
  position: relative;
  padding: 20vh 10vw 12vh 10vw;
  overflow: hidden;
}

button {
  cursor: none !important;
  height: 6vh;
  background-color: white;
  width: 20vw;
  color: #333;
  font-size: 16px;
  font-weight: 900;
  border-radius: 0;
  border: 2px solid #333;
  justify-items: center;
  text-align: center;
  font-family: var(--poppins);
}

.buttondark {
  color: #fff;
  border: 2px solid #fff;
  color: #fff;
  background-color: #333;
  justify-items: center;
  text-align: center;
  vertical-align: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  display: inline-block;
}

.buttondark:hover {
  color: #333;
  background-color: #fff;
}

button:hover {
  background-color: var(--for2);
  color: var(--background);
  -webkit-transition: .2s;
  transition: .2s;
}

.button:hover {
  background-color: var(--primary);
  -webkit-transition: 0.2s ease-in;
  transition: 0.2s ease-in;
}

#hero {
  height: 100vh;
  width: 100%;
  background-color: var(--for1);
  padding: 0px;
  /*
  @keyframes scroller {
    0%{
    height: 0px; 
    transform: translateY();   
    }
    50%{
      height: 200px;
      transform: translateY(0px);
    }
    80%{
      height: 50px;
      transform: translateY(150px);
    }
    100%{
      height: 0px;
      transform: translateY(200px);
    }
  }

  @keyframes scroller {
    from{
    transform: translateY();    

    }
    to{
      transform: translateY(150px);
    }
  }
  */
}

#hero .herotext {
  color: white;
  position: absolute;
  bottom: 10%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  text-align: center;
  display: inline-block;
  opacity: 0;
  -webkit-transition: opacity 1s;
  transition: opacity 1s;
}

#hero #scorpio:hover ~ #zodiactext {
  opacity: 1;
  -webkit-transition: opacity 1s;
  transition: opacity 1s;
}

#hero #herocentermain:hover ~ #juggletext {
  opacity: 1;
  -webkit-transition: opacity 1s;
  transition: opacity 1s;
}

#hero #herocenter:hover ~ #juggletext {
  opacity: 1;
  -webkit-transition: opacity 1s;
  transition: opacity 1s;
}

#hero .herotext1 {
  color: white;
  position: absolute;
  bottom: 10%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  text-align: center;
  display: inline-block;
  opacity: 1;
  -webkit-transition: opacity 1s;
  transition: opacity 1s;
}

#hero svg:hover .aboutmetext {
  opacity: 0;
}

#hero #stars {
  position: absolute;
  width: 90vw;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  top: 50px;
}

#hero #scorpio {
  position: absolute;
  width: auto;
  left: 10vw;
  top: 100px;
}

#hero #orion {
  position: absolute;
  width: auto;
  right: 200px;
  top: 100px;
}

#hero #moon {
  position: absolute;
  width: 96px;
  height: 96px;
  top: 40vh;
  left: 40vw;
  -webkit-animation: moonmove 30s infinite linear forwards;
          animation: moonmove 30s infinite linear forwards;
  -webkit-transform: translate(0px, 0px), scale(0.5);
          transform: translate(0px, 0px), scale(0.5);
}

@-webkit-keyframes moonmove {
  from {
    -webkit-transform: translate(0px, 0px);
            transform: translate(0px, 0px);
  }
  to {
    -webkit-transform: translate(100px, -700px);
            transform: translate(100px, -700px);
  }
}

@keyframes moonmove {
  from {
    -webkit-transform: translate(0px, 0px);
            transform: translate(0px, 0px);
  }
  to {
    -webkit-transform: translate(100px, -700px);
            transform: translate(100px, -700px);
  }
}

#hero .strokepath {
  stroke-dasharray: 1000;
  stroke-dashoffset: 0;
  -webkit-animation: dash 10s linear infinite;
          animation: dash 10s linear infinite;
}

@-webkit-keyframes dash {
  0% {
    stroke-dashoffset: 0;
  }
  20% {
    stroke-dashoffset: 1000;
  }
  80% {
    stroke-dashoffset: 1000;
  }
  100% {
    stroke-dashoffset: 0;
  }
}

@keyframes dash {
  0% {
    stroke-dashoffset: 0;
  }
  20% {
    stroke-dashoffset: 1000;
  }
  80% {
    stroke-dashoffset: 1000;
  }
  100% {
    stroke-dashoffset: 0;
  }
}

@-webkit-keyframes scaleup {
  from {
    -webkit-transform: scale(0);
            transform: scale(0);
  }
  to {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}

@keyframes scaleup {
  from {
    -webkit-transform: scale(0);
            transform: scale(0);
  }
  to {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}

#hero #herocentermain {
  width: 90%;
  height: 75%;
  position: absolute;
  top: 45%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%) scale(0.8);
          transform: translate(-50%, -50%) scale(0.8);
}

#hero #herocentermain #herocenter {
  position: relative;
}

#hero #herocentermain #cloud_left {
  -webkit-animation: cloudl 10s ease-in-out  infinite alternate;
          animation: cloudl 10s ease-in-out  infinite alternate;
}

@-webkit-keyframes cloudl {
  from {
    -webkit-transform: translateX(0px);
            transform: translateX(0px);
  }
  from {
    -webkit-transform: translateX(-100px);
            transform: translateX(-100px);
  }
}

@keyframes cloudl {
  from {
    -webkit-transform: translateX(0px);
            transform: translateX(0px);
  }
  from {
    -webkit-transform: translateX(-100px);
            transform: translateX(-100px);
  }
}

#hero #herocentermain #cloud_right {
  -webkit-animation: cloudr 10s ease-in-out infinite alternate;
          animation: cloudr 10s ease-in-out infinite alternate;
}

@-webkit-keyframes cloudr {
  from {
    -webkit-transform: translateX(0px);
            transform: translateX(0px);
  }
  from {
    -webkit-transform: translateX(50px);
            transform: translateX(50px);
  }
}

@keyframes cloudr {
  from {
    -webkit-transform: translateX(0px);
            transform: translateX(0px);
  }
  from {
    -webkit-transform: translateX(50px);
            transform: translateX(50px);
  }
}

#hero #herocentermain #levi {
  position: absolute;
  -webkit-animation: levitate 2s ease-in-out infinite alternate;
          animation: levitate 2s ease-in-out infinite alternate;
}

@-webkit-keyframes levitate {
  from {
    -webkit-transform: translatey(0px);
            transform: translatey(0px);
  }
  to {
    -webkit-transform: translatey(-25px);
            transform: translatey(-25px);
  }
}

@keyframes levitate {
  from {
    -webkit-transform: translatey(0px);
            transform: translatey(0px);
  }
  to {
    -webkit-transform: translatey(-25px);
            transform: translatey(-25px);
  }
}

#hero #herocentermain #shadow {
  -webkit-animation: shadow 2s infinite alternate;
          animation: shadow 2s infinite alternate;
}

@-webkit-keyframes shadow {
  from {
    opacity: 1;
  }
  to {
    opacity: 0.2;
  }
}

@keyframes shadow {
  from {
    opacity: 1;
  }
  to {
    opacity: 0.2;
  }
}

#hero #herocentermain #plant {
  -webkit-animation: levitate 2s ease-in infinite 1s alternate;
          animation: levitate 2s ease-in infinite 1s alternate;
}

#hero #herocentermain #orbs {
  position: absolute;
  -webkit-transform-origin: 50% 50%;
          transform-origin: 50% 50%;
  -webkit-animation: orbs 30s linear infinite normal;
          animation: orbs 30s linear infinite normal;
}

@-webkit-keyframes orbs {
  from {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  to {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}

@keyframes orbs {
  from {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  to {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}

#hero #herocentermain #orbs #DSLR {
  position: absolute;
  -webkit-transform-origin: 68% 61%;
          transform-origin: 68% 61%;
  -webkit-animation: orb 30s linear infinite;
          animation: orb 30s linear infinite;
}

#hero #herocentermain #orbs #gamepad {
  position: absolute;
  -webkit-transform-origin: 50.5% 29%;
          transform-origin: 50.5% 29%;
  -webkit-animation: orb 30s linear infinite;
          animation: orb 30s linear infinite;
}

#hero #herocentermain #orbs #Telescope {
  position: absolute;
  -webkit-transform-origin: 33.5% 41%;
          transform-origin: 33.5% 41%;
  -webkit-animation: orb 30s linear infinite;
          animation: orb 30s linear infinite;
}

#hero #herocentermain #orbs #Repair {
  position: absolute;
  -webkit-transform-origin: 66.5% 41%;
          transform-origin: 66.5% 41%;
  -webkit-animation: orb 30s linear infinite;
          animation: orb 30s linear infinite;
}

#hero #herocentermain #orbs #paint {
  position: absolute;
  -webkit-transform-origin: 34.5% 60%;
          transform-origin: 34.5% 60%;
  -webkit-animation: orb 30s linear infinite;
          animation: orb 30s linear infinite;
}

#hero #herocentermain #orbs #compass {
  position: absolute;
  -webkit-transform-origin: 51% 72%;
          transform-origin: 51% 72%;
  -webkit-animation: orb 30s linear infinite;
          animation: orb 30s linear infinite;
}

@-webkit-keyframes orb {
  from {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  to {
    -webkit-transform: rotate(-360deg);
            transform: rotate(-360deg);
  }
}

@keyframes orb {
  from {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  to {
    -webkit-transform: rotate(-360deg);
            transform: rotate(-360deg);
  }
}

#hero .logo {
  position: absolute;
  background-image: url(/Assets/png/GB-logo.png);
  background-size: contain;
  background-repeat: no-repeat;
  width: 30px;
  color: var(--mid);
  top: 0px;
  left: 0px;
  padding: 20px 20px !important;
  margin: 30px;
  z-index: 9999;
}

#hero #logofixed {
  color: var(--mid);
  position: fixed;
  mix-blend-mode: difference;
  z-index: 9990;
}

#hero .heromenu {
  position: absolute;
  padding: 10px;
  font-family: var(--poppins);
  font-weight: 500;
  font-size: 1 rem;
  color: white;
  letter-spacing: 3px;
}

#hero .heromenu .heromenu:hover {
  color: white;
}

#hero .heromenu #resume:hover {
  -webkit-transform: scale(1.5);
          transform: scale(1.5);
}

#hero #resume {
  top: 10px;
  right: 10px;
}

#hero #scrolltext {
  bottom: 20px;
  text-align: end;
  right: 30px;
  font-size: 12px;
  font-weight: 50;
  color: var(--bg1);
}

#hero #scroll {
  position: absolute;
  right: 20px;
  bottom: 0px;
  height: 200px;
  width: 2px;
  background-color: var(--mid);
}

#hero #scroll2 {
  left: 30px;
  bottom: 20px;
  height: 200px;
  width: 2px;
  background-color: var(--primary);
  -webkit-animation: scroller 2s infinite ease-in-out;
          animation: scroller 2s infinite ease-in-out;
}

@-webkit-keyframes scroller {
  0% {
    height: 0px;
    -webkit-transform: translateY();
            transform: translateY();
  }
  40% {
    height: 200px;
    -webkit-transform: translateY(0px);
            transform: translateY(0px);
  }
  60% {
    height: 200px;
    -webkit-transform: translateY(0px);
            transform: translateY(0px);
  }
  100% {
    height: 0px;
    -webkit-transform: translateY(200px);
            transform: translateY(200px);
  }
}

@keyframes scroller {
  0% {
    height: 0px;
    -webkit-transform: translateY();
            transform: translateY();
  }
  40% {
    height: 200px;
    -webkit-transform: translateY(0px);
            transform: translateY(0px);
  }
  60% {
    height: 200px;
    -webkit-transform: translateY(0px);
            transform: translateY(0px);
  }
  100% {
    height: 0px;
    -webkit-transform: translateY(200px);
            transform: translateY(200px);
  }
}

#hero #About {
  position: absolute;
  top: 49vh;
  right: -30px;
  -webkit-transform: rotate(-90deg);
          transform: rotate(-90deg);
}

#who {
  height: auto;
  position: relative;
}

#who #mydp {
  background-color: var(--for1);
  background-image: url(/Assets/img/me_bg.png);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

#what {
  height: auto;
  width: auto;
  position: relative;
  background-color: var(--for2);
  text-align: center;
}

#what h2 {
  text-align: center;
  color: var(--background);
}

#skills {
  min-height: 800px;
  position: relative;
}

#skills H2 {
  display: block;
  position: normal;
}

#skill {
  width: 100%;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 1fr 1fr 1fr;
      grid-template-columns: 1fr 1fr 1fr 1fr;
  grid-auto-rows: auto;
  grid-gap: 20px;
}

.skill {
  position: relative;
  height: 12vh;
  width: auto;
  -ms-flex-item-align: center;
      -ms-grid-row-align: center;
      align-self: center;
  text-align: start;
}

.skill H3 {
  display: inline-block;
  vertical-align: middle;
  font-size: 2vw;
  margin: 30px 0 30px 0px;
}

.skill .skillhide {
  position: absolute;
  height: 10px;
  width: 100%;
  bottom: 0px;
  background-color: var(--bg1);
}

.skill .skillhover {
  height: 10px;
  width: 70%;
  bottom: 0px;
  background-color: var(--primary);
}

#softwares {
  padding-top: 0px;
  padding-bottom: 0px;
}

#softwares #sketch {
  background-image: url(/Assets/img/software-logo/sketch.png);
}

#softwares #figma {
  background-image: url(/Assets/img/software-logo/Figma.png);
}

#softwares #invision {
  background-image: url(/Assets/img/software-logo/invision.png);
}

#softwares #XD {
  background-image: url(/Assets/img/software-logo/XD.png);
}

#softwares #PS {
  background-image: url(/Assets/img/software-logo/Photoshop.png);
}

#softwares #AIlogo {
  background-image: url(/Assets/img/software-logo/Illustrator.png);
}

#softwares #AElogo {
  background-image: url(/Assets/img/software-logo/After-Effects.png);
}

#softwares #PPlogo {
  background-image: url(/Assets/img/software-logo/Premiere.png);
}

#softwares #IDlogo {
  background-image: url(/Assets/img/software-logo/Indesign.png);
}

#softwares #zeplin {
  background-image: url(/Assets/img/software-logo/zeplin.png);
}

#softwares #abstractlogo {
  background-image: url(/Assets/img/software-logo/Abstract.png);
}

#softwares #VSCode {
  background-image: url(/Assets/img/software-logo/VS-Code.png);
}

@media only screen and (max-width: 1024px) {
  .m-hidden {
    display: none;
  }
  html, body {
    height: 100%;
  }
  #hammenu {
    height: 48px;
    width: 48px;
    position: fixed;
    bottom: 16px;
    z-index: 99;
    left: 50%;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
    -webkit-box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.16);
            box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.16);
    border-radius: 50%;
  }
  #overlay-content {
    width: 100%;
    height: 100%;
    position: fixed;
    z-index: 100;
    overflow: hidden;
  }
  #menu-button {
    height: 48px;
    width: 48px;
    position: fixed;
    bottom: 16px;
    z-index: 99;
    pointer-events: none;
    left: 50%;
    background: var(--for1);
    border-radius: 50%;
    -webkit-box-shadow: 0px 0px 0px 10px rgba(127, 218, 9, 0.9);
            box-shadow: 0px 0px 0px 10px rgba(127, 218, 9, 0.9);
  }
  .menu-button {
    -webkit-transform: translateX(-50%) scale(0);
            transform: translateX(-50%) scale(0);
    -webkit-transition: ease-in-out .3s;
    transition: ease-in-out .3s;
  }
  .menu-grow {
    -webkit-transition: ease-in-out .3s;
    transition: ease-in-out .3s;
    -webkit-transform-origin: 50% 50%;
            transform-origin: 50% 50%;
    -webkit-transform: translateX(-50%) scale(50);
            transform: translateX(-50%) scale(50);
  }
  #close-menu {
    position: fixed;
    bottom: 24px;
    z-index: 99;
    left: 50%;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
    -webkit-box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.16);
            box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.16);
    border-radius: 50%;
  }
  .hidden-menu {
    display: none;
  }
  .show-menu {
    display: block;
  }
  #menulist {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1fr;
        grid-template-columns: 1fr;
    text-align: center;
    position: absolute;
    top: 40%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
  }
  #menulist .menu-items {
    font-family: var(--poppins);
    font-size: 10vw;
    color: var(--background);
    opacity: 0;
  }
  #menulist .menu-items:hover {
    color: var(--primary);
  }
  @-webkit-keyframes menu-items {
    0% {
      opacity: 1;
      -webkit-transform: matrix3d(1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 300, 0, 1);
              transform: matrix3d(1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 300, 0, 1);
    }
    1.3% {
      -webkit-transform: matrix3d(1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 237.02, 0, 1);
              transform: matrix3d(1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 237.02, 0, 1);
    }
    2.55% {
      -webkit-transform: matrix3d(1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 182.798, 0, 1);
              transform: matrix3d(1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 182.798, 0, 1);
    }
    4.1% {
      -webkit-transform: matrix3d(1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 125.912, 0, 1);
              transform: matrix3d(1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 125.912, 0, 1);
    }
    5.71% {
      -webkit-transform: matrix3d(1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 79.596, 0, 1);
              transform: matrix3d(1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 79.596, 0, 1);
    }
    8.11% {
      -webkit-transform: matrix3d(1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 31.647, 0, 1);
              transform: matrix3d(1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 31.647, 0, 1);
    }
    8.81% {
      -webkit-transform: matrix3d(1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 21.84, 0, 1);
              transform: matrix3d(1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 21.84, 0, 1);
    }
    11.96% {
      -webkit-transform: matrix3d(1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, -4.825, 0, 1);
              transform: matrix3d(1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, -4.825, 0, 1);
    }
    12.11% {
      -webkit-transform: matrix3d(1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, -5.53, 0, 1);
              transform: matrix3d(1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, -5.53, 0, 1);
    }
    15.07% {
      -webkit-transform: matrix3d(1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, -12.662, 0, 1);
              transform: matrix3d(1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, -12.662, 0, 1);
    }
    16.12% {
      -webkit-transform: matrix3d(1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, -13.007, 0, 1);
              transform: matrix3d(1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, -13.007, 0, 1);
    }
    27.23% {
      -webkit-transform: matrix3d(1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, -2.352, 0, 1);
              transform: matrix3d(1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, -2.352, 0, 1);
    }
    27.58% {
      -webkit-transform: matrix3d(1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, -2.121, 0, 1);
              transform: matrix3d(1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, -2.121, 0, 1);
    }
    38.34% {
      -webkit-transform: matrix3d(1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0.311, 0, 1);
              transform: matrix3d(1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0.311, 0, 1);
    }
    40.09% {
      -webkit-transform: matrix3d(1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0.291, 0, 1);
              transform: matrix3d(1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0.291, 0, 1);
    }
    50% {
      -webkit-transform: matrix3d(1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0.048, 0, 1);
              transform: matrix3d(1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0.048, 0, 1);
    }
    60.56% {
      -webkit-transform: matrix3d(1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, -0.007, 0, 1);
              transform: matrix3d(1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, -0.007, 0, 1);
    }
    82.78% {
      -webkit-transform: matrix3d(1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
              transform: matrix3d(1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
    }
    100% {
      opacity: 1;
      -webkit-transform: matrix3d(1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
              transform: matrix3d(1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
    }
  }
  @keyframes menu-items {
    0% {
      opacity: 1;
      -webkit-transform: matrix3d(1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 300, 0, 1);
              transform: matrix3d(1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 300, 0, 1);
    }
    1.3% {
      -webkit-transform: matrix3d(1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 237.02, 0, 1);
              transform: matrix3d(1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 237.02, 0, 1);
    }
    2.55% {
      -webkit-transform: matrix3d(1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 182.798, 0, 1);
              transform: matrix3d(1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 182.798, 0, 1);
    }
    4.1% {
      -webkit-transform: matrix3d(1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 125.912, 0, 1);
              transform: matrix3d(1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 125.912, 0, 1);
    }
    5.71% {
      -webkit-transform: matrix3d(1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 79.596, 0, 1);
              transform: matrix3d(1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 79.596, 0, 1);
    }
    8.11% {
      -webkit-transform: matrix3d(1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 31.647, 0, 1);
              transform: matrix3d(1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 31.647, 0, 1);
    }
    8.81% {
      -webkit-transform: matrix3d(1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 21.84, 0, 1);
              transform: matrix3d(1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 21.84, 0, 1);
    }
    11.96% {
      -webkit-transform: matrix3d(1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, -4.825, 0, 1);
              transform: matrix3d(1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, -4.825, 0, 1);
    }
    12.11% {
      -webkit-transform: matrix3d(1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, -5.53, 0, 1);
              transform: matrix3d(1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, -5.53, 0, 1);
    }
    15.07% {
      -webkit-transform: matrix3d(1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, -12.662, 0, 1);
              transform: matrix3d(1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, -12.662, 0, 1);
    }
    16.12% {
      -webkit-transform: matrix3d(1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, -13.007, 0, 1);
              transform: matrix3d(1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, -13.007, 0, 1);
    }
    27.23% {
      -webkit-transform: matrix3d(1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, -2.352, 0, 1);
              transform: matrix3d(1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, -2.352, 0, 1);
    }
    27.58% {
      -webkit-transform: matrix3d(1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, -2.121, 0, 1);
              transform: matrix3d(1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, -2.121, 0, 1);
    }
    38.34% {
      -webkit-transform: matrix3d(1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0.311, 0, 1);
              transform: matrix3d(1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0.311, 0, 1);
    }
    40.09% {
      -webkit-transform: matrix3d(1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0.291, 0, 1);
              transform: matrix3d(1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0.291, 0, 1);
    }
    50% {
      -webkit-transform: matrix3d(1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0.048, 0, 1);
              transform: matrix3d(1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0.048, 0, 1);
    }
    60.56% {
      -webkit-transform: matrix3d(1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, -0.007, 0, 1);
              transform: matrix3d(1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, -0.007, 0, 1);
    }
    82.78% {
      -webkit-transform: matrix3d(1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
              transform: matrix3d(1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
    }
    100% {
      opacity: 1;
      -webkit-transform: matrix3d(1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
              transform: matrix3d(1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
    }
  }
  .menu-items:nth-of-type(1) {
    -webkit-animation: menu-items .3s .2s ease-in-out forwards;
            animation: menu-items .3s .2s ease-in-out forwards;
  }
  .menu-items:nth-of-type(2) {
    -webkit-animation: menu-items .3s .4s ease-in-out forwards;
            animation: menu-items .3s .4s ease-in-out forwards;
  }
  .menu-items:nth-of-type(3) {
    -webkit-animation: menu-items .3s .6s ease-in-out forwards;
            animation: menu-items .3s .6s ease-in-out forwards;
  }
  .menu-items:nth-of-type(4) {
    -webkit-animation: menu-items .3s .8s ease-in-out forwards;
            animation: menu-items .3s .8s ease-in-out forwards;
  }
  .menu-items:nth-of-type(5) {
    -webkit-animation: menu-items .3s 1s ease-in-out forwards;
            animation: menu-items .3s 1s ease-in-out forwards;
  }
  .menu-icons {
    -webkit-animation: menu-items .3s 1s ease-in-out forwards;
            animation: menu-items .3s 1s ease-in-out forwards;
  }
  .menu-icons {
    position: absolute;
    bottom: 50px;
    left: 23%;
    opacity: 0;
  }
  .menu-icons a {
    margin-right: 20px;
  }
  .menu-icons .call-menu {
    -webkit-transform: translateY(-50px);
            transform: translateY(-50px);
  }
  .hidden-m {
    display: none;
  }
  button {
    width: 80vw;
    height: 8vh;
    display: none;
  }
  .buttondark {
    color: #fff;
    border: 2px solid #fff;
    color: #fff;
    background-color: #333;
    justify-items: center;
    text-align: center;
    vertical-align: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    display: inline-block;
  }
  .buttondark:hover {
    color: #333;
    background-color: #fff;
  }
  #hero {
    height: 100%;
    width: 100%;
    background-color: var(--for1);
    padding: 0px;
  }
  #hero #herocentermain {
    width: 100%;
  }
  #hero #Work {
    position: absolute;
    bottom: 16px;
    left: 0px;
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  #hero #contact {
    bottom: 16px;
    right: 20px;
  }
  #hero #scroll {
    position: absolute;
    right: 8px;
    height: 200px;
  }
  #hero #stars {
    position: absolute;
    width: 190vw;
    left: 50%;
    overflow: hidden;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
    top: 100px;
  }
  #hero #scorpio {
    -webkit-transform: scale(0.5);
            transform: scale(0.5);
    left: -16vw;
    top: 5vh;
  }
  #hero #orion {
    -webkit-transform: scale(0.5);
            transform: scale(0.5);
    right: -2vw;
    top: 5vh;
  }
  #hero #moon {
    width: 48px;
    height: 48px;
  }
  #hero .siconhero {
    display: none;
  }
  #hero .logo {
    font-size: 6vh;
    position: absolute;
  }
  #who {
    height: auto;
  }
  #who #aboutme {
    margin-top: 50px;
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1fr;
        grid-template-columns: 1fr;
    -ms-grid-rows: auto;
        grid-template-rows: auto;
  }
  #who .aboutme {
    -ms-flex-item-align: center;
        -ms-grid-row-align: center;
        align-self: center;
  }
  #who #mydp {
    height: 80vw;
    width: 80vw;
  }
  #who .subhead {
    text-align: center;
    line-height: 3rem;
  }
  #who .workgrid {
    display: none;
  }
  section {
    padding: 10vh 10vw 6vh 10vw;
  }
  .pad {
    padding: 0 10vw;
  }
  #what {
    text-align: center;
  }
  #what .workgrid div {
    background-color: var(--mid);
  }
  #what .workgrid-m {
    margin: 60px 0px;
    width: 100%;
    display: -ms-grid;
    display: grid;
    -ms-grid-rows: 1fr 1fr;
        grid-template-rows: 1fr 1fr;
    -ms-grid-row-align: center;
        align-self: center;
    grid-gap: 30px;
  }
  #what .workgrid-m .collection {
    height: 80vw;
    width: 80vw;
    background-image: url(/Assets/img/headphone-popup.jpg);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    -ms-grid-column-align: center;
        justify-self: center;
    -ms-flex-item-align: center;
        -ms-grid-row-align: center;
        align-self: center;
    position: relative;
  }
  #what .workgrid-m .collection .colloverlay {
    background-color: rgba(0, 0, 0, 0.2);
    position: relative;
    height: 100%;
    width: 100%;
    opacity: 1;
    -webkit-transition: .3s;
    transition: .3s;
  }
  #what .workgrid-m .collection .colloverlay .title {
    position: absolute;
    opacity: 1;
    color: white;
    text-align: center;
    left: 50%;
    top: 50%;
    -webkit-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
  }
  #skills {
    min-height: 760px;
    position: relative;
  }
  #skill {
    width: 100%;
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1fr 1fr;
        grid-template-columns: 1fr 1fr;
    grid-auto-rows: auto;
    grid-gap: 20px;
  }
  #skill H3 {
    font-size: 2vh;
    margin: 20px 0 20px 0;
    display: block;
  }
  #s1 {
    width: 90%;
    -webkit-transition: 0.5 ease-in;
    transition: 0.5 ease-in;
  }
  #s2 {
    width: 90%;
    -webkit-transition: 0.5 ease-in;
    transition: 0.5 ease-in;
  }
  #s3 {
    width: 90%;
    -webkit-transition: 0.5 ease-in;
    transition: 0.5 ease-in;
  }
  #s4 {
    width: 90%;
    -webkit-transition: 0.5 ease-in;
    transition: 0.5 ease-in;
  }
  #s5 {
    width: 90%;
    -webkit-transition: 0.5 ease-in;
    transition: 0.5 ease-in;
  }
  #s6 {
    width: 90%;
    -webkit-transition: 0.5 ease-in;
    transition: 0.5 ease-in;
  }
  #s7 {
    width: 90%;
    -webkit-transition: 0.5 ease-in;
    transition: 0.5 ease-in;
  }
  #s8 {
    width: 90%;
    -webkit-transition: 0.5 ease-in;
    transition: 0.5 ease-in;
  }
  #s9 {
    width: 90%;
    -webkit-transition: 0.5 ease-in;
    transition: 0.5 ease-in;
  }
  #s10 {
    width: 90%;
    -webkit-transition: 0.5 ease-in;
    transition: 0.5 ease-in;
  }
  #s11 {
    width: 90%;
    -webkit-transition: 0.5 ease-in;
    transition: 0.5 ease-in;
  }
  #s12 {
    width: 90%;
    -webkit-transition: 0.5 ease-in;
    transition: 0.5 ease-in;
  }
  #softwares {
    height: 800px;
  }
  #software {
    width: 100%;
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1fr 1fr;
        grid-template-columns: 1fr 1fr;
    grid-gap: 20px;
    grid-column-gap: 20px;
  }
  .software {
    width: auto;
    height: 90px;
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
  }
  .softlogo {
    width: 100%;
    max-width: 180px;
    height: 90px;
  }
  #love {
    position: relative;
    height: auto;
  }
  #love #hobbies {
    width: 100%;
  }
  #love .hobby {
    display: -ms-grid;
    display: grid;
    -ms-grid-rows: 1fr 1fr;
        grid-template-rows: 1fr 1fr;
  }
  #love .hobby div {
    width: 100%;
  }
  #love .hobby .hobbypic {
    -ms-grid-column: 1;
    -ms-grid-column-span: 2;
    grid-column: 1/3;
    background-image: url(/Assets/img/gauravborra.jpg);
    background-position: center;
    background-size: cover;
  }
  #love button {
    visibility: hidden;
  }
  #love .hobby {
    height: 80vh;
    width: 100%;
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1fr;
        grid-template-columns: 1fr;
  }
  #love .hobbypic {
    background-color: var(--for1);
  }
  #love .hobbyinfo {
    -ms-grid-column-align: center;
        justify-self: center;
    -ms-flex-item-align: center;
        -ms-grid-row-align: center;
        align-self: center;
    text-align: center;
  }
  #touch {
    padding: 6vh 0 12vh 0;
  }
  #touch span {
    font-size: 22px;
    overflow-wrap: break-word;
  }
  #touch .subhead {
    display: block;
    margin: 3vh 0px;
    padding: 0 3vh;
  }
  #touch .touchbg {
    height: 30vh;
    width: 100%;
    text-align: center;
    background-color: var(--for1);
    color: var(--background);
  }
  #touch .touchbg span {
    color: var(--primary);
    overflow-wrap: break-word;
  }
  #touch .touchbg h2 {
    padding: 6vh 3vh;
    color: var(--background);
  }
  #footer {
    height: auto;
    color: white;
    background-color: var(--for1);
    margin: 0px;
    padding: 0px;
    text-align: center;
    font-family: var(--poppins);
  }
  #footer .social {
    display: inline-block;
    width: 100%;
  }
  #footer .ficon {
    fill: white;
    height: auto;
    width: 20px;
    margin: 6vh 10px;
  }
  #footer h4 {
    font-size: 12px;
    font-weight: 300;
    letter-spacing: 4px;
    font-family: var(--poppins);
  }
  #footer .fcollection {
    display: none;
    padding: 5vh 4vw;
    color: var(--background);
    -ms-grid-columns: 1fr;
        grid-template-columns: 1fr;
    grid-gap: 20px;
  }
  #footer .fcollection h4:nth-child(odd) {
    -ms-grid-column-align: start;
        justify-self: start;
    text-align: start;
  }
  #footer .fcollection h4:nth-child(even) {
    -ms-grid-column-align: end;
        justify-self: end;
    text-align: end;
  }
  #footer .fcollection H5 {
    font-family: var(--poppins);
    -ms-grid-column: 1;
    -ms-grid-column-span: 2;
    grid-column: 1/3;
    -ms-grid-column-align: center;
        justify-self: center;
    color: var(--mid);
    font-size: 24px;
    font-weight: 300;
    letter-spacing: 2px;
  }
  #footer #footinfo {
    text-align: center;
    left: 2vw;
    bottom: 1.5vw;
  }
  #footer #footinfo div {
    padding: 6px;
  }
  #footer #footinfo .phoneicon {
    background-image: url(/Assets/Svg/whatsapp.svg);
    width: 20px;
    height: 20px;
    display: inline-block;
  }
  #footer #footinfo a h4 {
    display: inline-block;
    font-size: 12px;
    color: var(--background);
    -webkit-transform: translateY(-11px);
            transform: translateY(-11px);
    margin: 0 10px;
  }
  #footer #footinfo .emailicon {
    background-image: url(/Assets/Svg/mail.svg);
    background-repeat: no-repeat;
    width: 20px;
    height: 20px;
    display: inline-block;
  }
  footer {
    height: 14vh;
    color: white;
    text-align: center;
    width: 100%;
    background-color: black;
    bottom: 0px;
  }
  footer p {
    padding: 2vh 0 5vh 0;
    margin: 0px;
  }
  #insta {
    padding: 4vw 6vw;
    z-index: 1;
    opacity: 0.99;
  }
  .pagefooter {
    min-height: 120px;
    position: relative;
  }
  .pagefooter .footinfo {
    display: inline-block;
    margin-left: 50px;
    position: absolute;
    bottom: 0px;
  }
  .pagefooter svg {
    width: 20px;
    height: 20px;
    margin: 20px;
    fill: var(--background);
  }
  .pagefooter .social {
    width: 100%;
    position: absolute;
    left: 50%;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
  }
  .pagefooter .ficon {
    fill: var(--background);
    height: auto;
    width: 20px;
    margin: 15px;
  }
  .pagefooter .ficon:hover {
    fill: white;
  }
}

@media only screen and (min-width: 441px) {
  #skill {
    width: 100%;
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1fr 1fr 1fr;
        grid-template-columns: 1fr 1fr 1fr;
    grid-auto-rows: auto;
    grid-gap: 20px;
  }
  #skill H3 {
    font-size: 2vh;
    margin: 20px 0 20px 0;
    display: block;
  }
  #software {
    width: 100%;
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1fr 1fr 1fr;
        grid-template-columns: 1fr 1fr 1fr;
    grid-gap: 20px;
    grid-column-gap: 20px;
  }
  .fcollection {
    padding: 5vh 4vw;
    color: var(--background);
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1fr 1fr;
        grid-template-columns: 1fr 1fr;
    grid-gap: 10px;
  }
  .fcollection h4:nth-child(odd) {
    -ms-grid-column-align: start;
        justify-self: start;
    text-align: start;
  }
  .fcollection h4:nth-child(even) {
    -ms-grid-column-align: end;
        justify-self: end;
    text-align: end;
  }
  .fcollection H5 {
    font-family: var(--poppins);
    -ms-grid-column: 1;
    -ms-grid-column-span: 2;
    grid-column: 1/3;
    -ms-grid-column-align: center;
        justify-self: center;
    color: var(--mid);
    font-size: 24px;
    font-weight: 300;
    letter-spacing: 2px;
  }
}

/* normal laptops*/
@media (min-width: 1025px) {
  .hidden-l {
    display: none;
  }
  #menulist {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1fr;
        grid-template-columns: 1fr;
    text-align: center;
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
  }
  #menulist .menu-items {
    font-family: var(--poppins);
    font-size: 5vw;
    color: var(--background);
    opacity: 0;
  }
  #menulist .menu-items:hover {
    color: var(--primary);
  }
  @-webkit-keyframes menu-items {
    0% {
      opacity: 1;
      -webkit-transform: matrix3d(1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 300, 0, 1);
              transform: matrix3d(1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 300, 0, 1);
    }
    1.3% {
      -webkit-transform: matrix3d(1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 237.02, 0, 1);
              transform: matrix3d(1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 237.02, 0, 1);
    }
    2.55% {
      -webkit-transform: matrix3d(1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 182.798, 0, 1);
              transform: matrix3d(1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 182.798, 0, 1);
    }
    4.1% {
      -webkit-transform: matrix3d(1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 125.912, 0, 1);
              transform: matrix3d(1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 125.912, 0, 1);
    }
    5.71% {
      -webkit-transform: matrix3d(1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 79.596, 0, 1);
              transform: matrix3d(1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 79.596, 0, 1);
    }
    8.11% {
      -webkit-transform: matrix3d(1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 31.647, 0, 1);
              transform: matrix3d(1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 31.647, 0, 1);
    }
    8.81% {
      -webkit-transform: matrix3d(1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 21.84, 0, 1);
              transform: matrix3d(1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 21.84, 0, 1);
    }
    11.96% {
      -webkit-transform: matrix3d(1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, -4.825, 0, 1);
              transform: matrix3d(1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, -4.825, 0, 1);
    }
    12.11% {
      -webkit-transform: matrix3d(1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, -5.53, 0, 1);
              transform: matrix3d(1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, -5.53, 0, 1);
    }
    15.07% {
      -webkit-transform: matrix3d(1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, -12.662, 0, 1);
              transform: matrix3d(1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, -12.662, 0, 1);
    }
    16.12% {
      -webkit-transform: matrix3d(1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, -13.007, 0, 1);
              transform: matrix3d(1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, -13.007, 0, 1);
    }
    27.23% {
      -webkit-transform: matrix3d(1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, -2.352, 0, 1);
              transform: matrix3d(1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, -2.352, 0, 1);
    }
    27.58% {
      -webkit-transform: matrix3d(1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, -2.121, 0, 1);
              transform: matrix3d(1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, -2.121, 0, 1);
    }
    38.34% {
      -webkit-transform: matrix3d(1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0.311, 0, 1);
              transform: matrix3d(1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0.311, 0, 1);
    }
    40.09% {
      -webkit-transform: matrix3d(1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0.291, 0, 1);
              transform: matrix3d(1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0.291, 0, 1);
    }
    50% {
      -webkit-transform: matrix3d(1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0.048, 0, 1);
              transform: matrix3d(1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0.048, 0, 1);
    }
    60.56% {
      -webkit-transform: matrix3d(1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, -0.007, 0, 1);
              transform: matrix3d(1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, -0.007, 0, 1);
    }
    82.78% {
      -webkit-transform: matrix3d(1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
              transform: matrix3d(1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
    }
    100% {
      opacity: 1;
      -webkit-transform: matrix3d(1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
              transform: matrix3d(1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
    }
  }
  @keyframes menu-items {
    0% {
      opacity: 1;
      -webkit-transform: matrix3d(1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 300, 0, 1);
              transform: matrix3d(1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 300, 0, 1);
    }
    1.3% {
      -webkit-transform: matrix3d(1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 237.02, 0, 1);
              transform: matrix3d(1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 237.02, 0, 1);
    }
    2.55% {
      -webkit-transform: matrix3d(1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 182.798, 0, 1);
              transform: matrix3d(1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 182.798, 0, 1);
    }
    4.1% {
      -webkit-transform: matrix3d(1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 125.912, 0, 1);
              transform: matrix3d(1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 125.912, 0, 1);
    }
    5.71% {
      -webkit-transform: matrix3d(1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 79.596, 0, 1);
              transform: matrix3d(1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 79.596, 0, 1);
    }
    8.11% {
      -webkit-transform: matrix3d(1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 31.647, 0, 1);
              transform: matrix3d(1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 31.647, 0, 1);
    }
    8.81% {
      -webkit-transform: matrix3d(1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 21.84, 0, 1);
              transform: matrix3d(1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 21.84, 0, 1);
    }
    11.96% {
      -webkit-transform: matrix3d(1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, -4.825, 0, 1);
              transform: matrix3d(1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, -4.825, 0, 1);
    }
    12.11% {
      -webkit-transform: matrix3d(1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, -5.53, 0, 1);
              transform: matrix3d(1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, -5.53, 0, 1);
    }
    15.07% {
      -webkit-transform: matrix3d(1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, -12.662, 0, 1);
              transform: matrix3d(1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, -12.662, 0, 1);
    }
    16.12% {
      -webkit-transform: matrix3d(1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, -13.007, 0, 1);
              transform: matrix3d(1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, -13.007, 0, 1);
    }
    27.23% {
      -webkit-transform: matrix3d(1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, -2.352, 0, 1);
              transform: matrix3d(1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, -2.352, 0, 1);
    }
    27.58% {
      -webkit-transform: matrix3d(1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, -2.121, 0, 1);
              transform: matrix3d(1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, -2.121, 0, 1);
    }
    38.34% {
      -webkit-transform: matrix3d(1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0.311, 0, 1);
              transform: matrix3d(1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0.311, 0, 1);
    }
    40.09% {
      -webkit-transform: matrix3d(1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0.291, 0, 1);
              transform: matrix3d(1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0.291, 0, 1);
    }
    50% {
      -webkit-transform: matrix3d(1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0.048, 0, 1);
              transform: matrix3d(1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0.048, 0, 1);
    }
    60.56% {
      -webkit-transform: matrix3d(1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, -0.007, 0, 1);
              transform: matrix3d(1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, -0.007, 0, 1);
    }
    82.78% {
      -webkit-transform: matrix3d(1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
              transform: matrix3d(1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
    }
    100% {
      opacity: 1;
      -webkit-transform: matrix3d(1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
              transform: matrix3d(1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
    }
  }
  .menu-items:nth-of-type(1) {
    -webkit-animation: menu-items .3s .4s ease-in-out forwards;
            animation: menu-items .3s .4s ease-in-out forwards;
  }
  .menu-items:nth-of-type(2) {
    -webkit-animation: menu-items .3s .6s ease-in-out forwards;
            animation: menu-items .3s .6s ease-in-out forwards;
  }
  .menu-items:nth-of-type(3) {
    -webkit-animation: menu-items .3s .8s ease-in-out forwards;
            animation: menu-items .3s .8s ease-in-out forwards;
  }
  .menu-items:nth-of-type(4) {
    -webkit-animation: menu-items .3s 1s ease-in-out forwards;
            animation: menu-items .3s 1s ease-in-out forwards;
  }
  .menu-items:nth-of-type(5) {
    -webkit-animation: menu-items .3s 1.2s ease-in-out forwards;
            animation: menu-items .3s 1.2s ease-in-out forwards;
  }
  .menu-icons {
    position: absolute;
    display: block;
    bottom: 50px;
    left: 44%;
    opacity: 0;
    text-align: center;
    margin: 0 auto;
  }
  .menu-icons a {
    margin-right: 50px;
  }
  .menu-icons {
    -webkit-animation: menu-items .3s 1.2s ease-in-out forwards;
            animation: menu-items .3s 1.2s ease-in-out forwards;
  }
  #hammenu {
    height: 48px;
    width: 48px;
    position: fixed;
    top: 32px;
    z-index: 99;
    right: 32px;
    -webkit-box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.16);
            box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.16);
    border-radius: 50%;
  }
  #overlay-content {
    width: 100%;
    height: 100%;
    position: fixed;
    z-index: 100;
  }
  #menu-button {
    height: 48px;
    width: 48px;
    position: fixed;
    top: 32px;
    right: 32px;
    z-index: 99;
    pointer-events: none;
    background: var(--for1);
    border-radius: 50%;
    -webkit-box-shadow: 0px 0px 0px 10px rgba(127, 218, 9, 0.9);
            box-shadow: 0px 0px 0px 10px rgba(127, 218, 9, 0.9);
  }
  .menu-button {
    -webkit-transform: translateX(-50%) scale(0);
            transform: translateX(-50%) scale(0);
    -webkit-transition: ease-in-out .5s;
    transition: ease-in-out .5s;
  }
  .menu-grow {
    -webkit-transition: ease-in-out .5s;
    transition: ease-in-out .5s;
    -webkit-transform-origin: 50% 50%;
            transform-origin: 50% 50%;
    -webkit-transform: translateX(-50%) scale(100);
            transform: translateX(-50%) scale(100);
  }
  #close-menu {
    position: fixed;
    top: 40px;
    z-index: 99;
    right: 40px;
    -webkit-box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.16);
            box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.16);
    border-radius: 50%;
  }
  .hidden-menu {
    display: none;
  }
  .show-menu {
    display: block;
  }
  #aboutme {
    height: 70vh;
    width: 100%;
    display: -ms-grid;
    display: grid;
    opacity: 0.99;
    -ms-grid-columns: 1fr 1fr;
        grid-template-columns: 1fr 1fr;
    -ms-grid-row-align: center;
        align-self: center;
  }
  .hvr-float-shadow {
    display: inline-block;
    vertical-align: middle;
    -webkit-transform: perspective(1px) translateZ(0);
    transform: perspective(1px) translateZ(0);
    -webkit-box-shadow: 0 0 10px rgba(0, 0, 0, 0);
            box-shadow: 0 0 10px rgba(0, 0, 0, 0);
    position: relative;
    -webkit-transition-duration: 0.3s;
    transition-duration: 0.3s;
    -webkit-transition-property: transform;
    -webkit-transition-property: -webkit-transform;
    transition-property: -webkit-transform;
    transition-property: transform;
    transition-property: transform, -webkit-transform;
  }
  .hvr-float-shadow:before {
    pointer-events: none;
    position: absolute;
    z-index: -1;
    content: '';
    top: 100%;
    left: 36%;
    height: 10px;
    width: 30%;
    opacity: 0;
    background: radial-gradient(ellipse at center, rgba(0, 0, 0, 0.35) 0%, rgba(0, 0, 0, 0) 80%);
    /* W3C */
    -webkit-transition-duration: 0.3s;
            transition-duration: 0.3s;
    -webkit-transition-property: opacity, -webkit-transform;
    transition-property: opacity, -webkit-transform;
    transition-property: transform, opacity;
    transition-property: transform, opacity, -webkit-transform;
  }
  .hvr-float-shadow:hover, .hvr-float-shadow:focus, .hvr-float-shadow:active {
    -webkit-transform: translateY(-5px);
    transform: translateY(-5px);
    /* move the element up by 5px */
  }
  .hvr-float-shadow:hover:before, .hvr-float-shadow:focus:before, .hvr-float-shadow:active:before {
    opacity: 1;
    -webkit-transform: translateY(5px);
    transform: translateY(5px);
    /* move the element down by 5px (it will stay in place because it's attached to the element that also moves up 5px) */
  }
  #hero .siconhero {
    height: auto;
    width: 20px;
    position: absolute;
    left: 20px;
    bottom: 20px;
  }
  #hero .siconhero .hicon {
    height: 20px;
    width: 20px;
    fill: var(--background);
    margin: 15px 0;
  }
  #hero #Work {
    position: absolute;
    bottom: 10px;
    left: 50%;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
    -webkit-transform-origin: center;
            transform-origin: center;
  }
  #hero #contact {
    position: absolute;
    top: 51vh;
    left: -20px;
    -webkit-transform: rotate(90deg);
            transform: rotate(90deg);
  }
  #who .aboutme {
    height: 100%;
    text-align: center;
  }
  #who p {
    display: inline-block;
    padding: 60px;
  }
  #what .workgrid {
    margin: 60px 0 60px 0;
    height: 75vh;
    width: 100%;
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1fr 1fr;
        grid-template-columns: 1fr 1fr;
    -ms-grid-column-align: center;
        justify-self: center;
    grid-gap: 10vh;
  }
  #what .workgrid-m {
    display: none;
  }
  .collection {
    height: 35vw;
    width: 35vw;
    background-image: url(/Assets/img/headphone-popup.jpg);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    -ms-grid-column-align: center;
        justify-self: center;
    -ms-flex-item-align: center;
        -ms-grid-row-align: center;
        align-self: center;
    -webkit-transform-style: preserve-3d;
            transform-style: preserve-3d;
    -webkit-transform: perspective(1000px);
            transform: perspective(1000px);
    position: relative;
  }
  .collection .colloverlay {
    background-color: rgba(0, 0, 0, 0.2);
    position: relative;
    height: 100%;
    width: 100%;
    opacity: 0;
    -webkit-transition: .3s;
    transition: .3s;
  }
  .collection .colloverlay .title {
    position: absolute;
    opacity: 1;
    color: white;
    text-shadow: 0px 0px 10px 10px rgba(0, 0, 0, 0.2);
    text-align: center;
    left: 23%;
    top: 36%;
    -webkit-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
    -webkit-transform: translateZ(100px);
            transform: translateZ(100px);
    -webkit-transition: .2s;
    transition: .2s;
  }
  .collection:hover .colloverlay {
    opacity: 1;
  }
  #skills {
    min-height: 720px;
    position: relative;
  }
  #skills H2 {
    display: block;
    position: normal;
  }
  #skill {
    width: 100%;
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1fr 1fr 1fr 1fr;
        grid-template-columns: 1fr 1fr 1fr 1fr;
    grid-auto-rows: auto;
    grid-gap: 20px;
  }
  #skill H3 {
    display: inline-block;
    vertical-align: middle;
    font-size: 2vh;
    margin: 30px 0 30px 0px;
  }
  .skill {
    position: relative;
    height: 16vh;
    width: auto;
    -ms-flex-item-align: center;
        -ms-grid-row-align: center;
        align-self: center;
    text-align: start;
  }
  .skill .skillhide {
    position: absolute;
    height: 10px;
    width: 100%;
    bottom: 0px;
    background-color: var(--bg1);
  }
  .skill .skillhover {
    height: 10px;
    width: 0%;
    bottom: 0px;
    background-color: var(--primary);
    -webkit-transition: 0.2s ease-in;
    transition: 0.2s ease-in;
  }
  #skill :hover #s1 {
    width: 90%;
    -webkit-transition: 0.3s ease-in;
    transition: 0.3s ease-in;
  }
  #skill :hover #s2 {
    width: 90%;
    -webkit-transition: 0.3s ease-in;
    transition: 0.3s ease-in;
  }
  #skill :hover #s3 {
    width: 80%;
    -webkit-transition: 0.3s ease-in;
    transition: 0.3s ease-in;
  }
  #skill :hover #s4 {
    width: 95%;
    -webkit-transition: 0.3s ease-in;
    transition: 0.3s ease-in;
  }
  #skill :hover #s5 {
    width: 95%;
    -webkit-transition: 0.3s ease-in;
    transition: 0.3s ease-in;
  }
  #skill :hover #s6 {
    width: 75%;
    -webkit-transition: 0.3s ease-in;
    transition: 0.3s ease-in;
  }
  #skill :hover #s7 {
    width: 80%;
    -webkit-transition: 0.3s ease-in;
    transition: 0.3s ease-in;
  }
  #skill :hover #s8 {
    width: 70%;
    -webkit-transition: 0.3s ease-in;
    transition: 0.3s ease-in;
  }
  #skill :hover #s9 {
    width: 70%;
    -webkit-transition: 0.3s ease-in;
    transition: 0.3s ease-in;
  }
  #skill :hover #s10 {
    width: 80%;
    -webkit-transition: 0.3s ease-in;
    transition: 0.3s ease-in;
  }
  #skill :hover #s11 {
    width: 90%;
    -webkit-transition: 0.3s ease-in;
    transition: 0.3s ease-in;
  }
  #skill :hover #s12 {
    width: 30%;
    -webkit-transition: 0.3s ease-in;
    transition: 0.3s ease-in;
  }
  #softwares {
    height: 680px;
  }
  #software {
    width: 100%;
    height: 250px;
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1fr 1fr 1fr 1fr;
        grid-template-columns: 1fr 1fr 1fr 1fr;
    grid-gap: 10px;
  }
  .software {
    min-height: 150px;
    background-position: center;
    background-size: contain;
    background-repeat: no-repeat;
  }
  #love {
    position: relative;
    min-height: 2750px;
  }
  #love button {
    visibility: hidden;
  }
  #love .button {
    visibility: hidden;
  }
  #love #hobbies {
    width: 100%;
  }
  #love .hobby:nth-child(odd) {
    margin: 100px 0 100px 0;
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1fr 1fr;
        grid-template-columns: 1fr 1fr;
    -ms-grid-rows: 1fr;
        grid-template-rows: 1fr;
  }
  #love .hobby:nth-child(odd) .hobbypic {
    height: 100%;
    background-image: url(/Assets/img/gauravborra.jpg);
    background-position: center;
    background-size: cover;
  }
  #love .hobby:nth-child(odd) .hobbyinfo {
    -ms-grid-column-align: center;
        justify-self: center;
    text-align: center;
    -ms-flex-item-align: center;
        -ms-grid-row-align: center;
        align-self: center;
    padding: 60px;
  }
  #love .hobby:nth-child(even) {
    margin: 100px 0 100px 0;
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1fr 1fr;
        grid-template-columns: 1fr 1fr;
    -ms-grid-rows: 1fr;
        grid-template-rows: 1fr;
  }
  #love .hobby:nth-child(even) .hobbypic {
    height: 100%;
    -ms-grid-column: 2;
    -ms-grid-column-span: 1;
    grid-column: 2/3;
    -ms-grid-row: 1;
    -ms-grid-row-span: 2;
    grid-row: 1/3;
    grid-auto-rows: auto;
    background-image: url(/Assets/img/gauravborra.jpg);
    background-position: center;
    background-size: cover;
  }
  #love .hobby:nth-child(even) .hobbyinfo {
    padding: 60px;
    text-align: center;
    -ms-grid-column-align: end;
        justify-self: end;
    -ms-flex-item-align: center;
        -ms-grid-row-align: center;
        align-self: center;
  }
  #love .hobby {
    height: 80vh;
    width: 100%;
  }
  #love #photolove {
    background-image: url(/Assets/img/Love/photbg.png);
  }
  #touch {
    padding: 20vh 0 0 0;
    min-height: 300px;
  }
  #touch .subhead {
    display: block;
    margin: 3vh;
  }
  #touch .touchbg {
    height: 30vh;
    width: 100%;
    text-align: center;
    background-color: var(--for1);
    color: var(--background);
  }
  #touch .touchbg span {
    color: var(--primary);
  }
  #touch .touchbg h2 {
    padding: 8vh;
  }
  #insta {
    padding: 0vw 6vw 4vw 6vw;
    z-index: 1;
    opacity: 0.99;
  }
  #footer {
    color: white;
    background-color: var(--for1);
    margin: 0px;
    padding: 0px;
    text-align: center;
    font-family: var(--poppins);
    text-align: center;
  }
  #footer .social {
    display: inline-block;
    margin: 1vw;
  }
  #footer .ficon {
    fill: var(--background);
    height: auto;
    width: 25px;
    margin: 20px;
  }
  #footer h4 {
    font-size: 16px;
    font-weight: 400;
    letter-spacing: 4px;
    -ms-grid-column-align: end;
        justify-self: end;
    margin: 0px;
    font-family: var(--poppins);
  }
  #footer .fcollection {
    position: absolute;
    right: 2vw;
    bottom: 1vh;
    color: var(--background);
    width: 60%;
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1fr 1fr 1fr;
        grid-template-columns: 1fr 1fr 1fr;
    grid-gap: 20px;
    text-align: end;
    z-index: 0;
  }
  #footer .fcollection H5 {
    margin: 0px;
    font-family: var(--poppins);
    -ms-grid-column: 3;
    -ms-grid-column-span: 1;
    grid-column: 3/4;
    -ms-grid-column-align: end;
        justify-self: end;
    color: var(--mid);
    font-size: 24px;
    font-weight: 300;
    letter-spacing: 2px;
  }
  #footer #footinfo svg {
    width: 20px;
    height: 20px;
    margin: 20px;
    fill: var(--background);
  }
  #footer #footinfo .social {
    display: inline-block;
    right: 20px;
  }
  #footer #footinfo .ficon {
    fill: var(--background);
    height: auto;
    width: 20px;
    margin: 15px;
  }
  #footer #footinfo .ficon:hover {
    fill: var(--primary);
  }
  #footer #footinfo #footinfo {
    text-align: left;
    position: absolute;
  }
  #footer #footinfo #footinfo div {
    margin: 6px;
  }
  #footer #footinfo .phoneicon {
    background-image: url(/Assets/Svg/phone.svg);
    width: 20px;
    height: 20px;
    display: inline-block;
  }
  #footer #footinfo h4 {
    display: inline-block;
    -webkit-transform: translateY(-11px);
            transform: translateY(-11px);
    margin: 0 10px;
  }
  #footer #footinfo .emailicon {
    background-image: url(/Assets/Svg/mail.svg);
    background-repeat: no-repeat;
    width: 20px;
    height: 20px;
    display: inline-block;
  }
  footer {
    height: 8vh;
    color: white;
    text-align: center;
    width: 100%;
    background-color: black;
    bottom: 0px;
  }
  footer p {
    padding: 2vh 0;
    margin: 0px;
  }
  .pagefooter .footinfo {
    display: inline-block;
    margin-left: 50px;
  }
  .pagefooter svg {
    width: 20px;
    height: 20px;
    margin: 20px;
    fill: var(--background);
  }
  .pagefooter .social {
    position: absolute;
    display: inline-block;
    right: 20px;
  }
  .pagefooter .ficon {
    fill: var(--background);
    height: auto;
    width: 20px;
    margin: 15px;
  }
  .pagefooter .ficon:hover {
    fill: var(--primary);
  }
  .pagefooter #footinfo {
    text-align: left;
    position: absolute;
  }
  .pagefooter #footinfo div {
    margin: 6px;
  }
}

/* high res laptop/desktop */
@media (min-width: 1367px) {
  #who {
    height: auto;
    background-color: var(--background);
    position: relative;
  }
  #who H1 {
    top: 5vh;
    right: 10vw;
  }
  #who #mydp {
    background-color: var(--for1);
    background-image: url(/Assets/img/gauravborra.jpg);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
  }
  #aboutme {
    height: 70vh;
    width: 100%;
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1fr 1fr;
        grid-template-columns: 1fr 1fr;
  }
  #skills {
    position: relative;
  }
  #skills H2 {
    display: block;
    position: normal;
  }
  #skill {
    width: 100%;
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1fr 1fr 1fr 1fr 1fr 1fr;
        grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr;
    grid-auto-rows: auto;
    grid-gap: 20px;
  }
  #skill .skill {
    height: 12vh;
  }
  #footer {
    min-height: 26vh;
  }
  #footer .fcollection {
    position: absolute;
    right: 2vw;
    bottom: 1vh;
    color: var(--background);
    width: 60%;
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1fr 1fr 1fr;
        grid-template-columns: 1fr 1fr 1fr;
    grid-gap: 20px;
    text-align: end;
  }
  #footer .fcollection H5 {
    font-family: var(--poppins);
    -ms-grid-column: 3;
    -ms-grid-column-span: 1;
    grid-column: 3/4;
    -ms-grid-column-align: end;
        justify-self: end;
    color: var(--mid);
    font-size: 24px;
    font-weight: 300;
    letter-spacing: 2px;
  }
}

/* Tablets 
@media only screen and (max-width: 767px) {
  
}
}






//@media (min-width: 1025px) and (max-width: 1366px) {
*/
.card {
  cursor: pointer;
  display: inline-block;
  overflow: hidden;
  -webkit-perspective: 1200px;
          perspective: 1200px;
  position: relative;
  -webkit-transform-style: preserve-3d;
          transform-style: preserve-3d;
  -webkit-transform: translatez(35px);
          transform: translatez(35px);
  -webkit-transition: -webkit-transform 200ms ease-out;
  transition: -webkit-transform 200ms ease-out;
  transition: transform 200ms ease-out;
  transition: transform 200ms ease-out, -webkit-transform 200ms ease-out;
  text-align: center;
}

.parallax_fore {
  position: relative;
  height: 100%;
  top: 14px;
  right: -10px;
  height: 110%;
}

.parallax_bg {
  bottom: -200px;
  left: -50px;
  position: absolute;
  right: -50px;
  top: -50px;
  -webkit-transform-origin: 50% 50%;
          transform-origin: 50% 50%;
  -webkit-transform: scale(1.5);
          transform: scale(1.5);
  -webkit-transform: translateZ(-50px);
          transform: translateZ(-50px);
  z-index: 0;
}
/*# sourceMappingURL=main.css.map */