* {
  margin: 0;
  padding: 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

html {
  font-family: "Open Sans", sans-serif;
  font-size: 62.5%;
}

body {
  position: relative;
}

h1 {
  font-size: 4.5rem;
}

h1,
h2 {
  font-family: "Exo", sans-serif;
}

div.hr-line {
  border-bottom: 4px solid #fffb01;
  width: 250px;
  margin-bottom: 50px;
}

div.cards {
  background-color: #e9e9e9;
  color: inherit;
  height: 200px;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin: 0 auto;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-align: center;
  padding: 40px 10px;
}

.flex-centering {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

a {
  text-decoration: none;
  color: white;
}

a:hover {
  text-decoration: none;
  color: white;
}

body::-webkit-scrollbar {
  width: 10px;
  background-color: #f5f5f5;
}

body::-webkit-scrollbar-track {
  -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
          box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
  background-color: #f5f5f5;
  border-radius: 10px;
}

body::-webkit-scrollbar-thumb {
  border-radius: 10px;
  background-image: -webkit-gradient(linear, left bottom, left top, color-stop(0.25, #eaec4d), color-stop(0.65, #141424), color-stop(0.25, #de8347), color-stop(0.65, #083346));
}

.flex-centering {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

/************************margins*********************/
/****************        Margin left        ******************/
.margin-left-mini {
  margin-left: 1rem;
}

.margin-left-small {
  margin-left: 2rem;
}

.margin-left-large {
  margin-left: 5rem;
}

.margin-left-huge {
  margin-left: 8rem;
}

/****************        Margin top        ******************/
.margin-top-small {
  margin-top: 1.5rem;
}

.margin-top-md {
  margin-top: 3rem;
}

.margin-top-huge {
  margin-top: 8rem;
}

/****************        Margin bottom        ******************/
.margin-bottom-small {
  margin-bottom: 2rem;
}

.margin-bottom-md {
  margin-bottom: 4rem;
}

.margin-bottom-large {
  margin-bottom: 5rem;
}

.margin-bottom-huge {
  margin-bottom: 8rem;
}

/*********************margin-right*****************************/
.margin-right-small {
  margin-right: 1.5rem;
}

/*****************************padding**********************************/
.padding-large {
  padding: 30px;
}

nav#myNav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 15px 0;
  padding-bottom: 10px;
  position: fixed;
  width: 100%;
  z-index: 5;
}

@media only screen and (max-width: 576px) {
  nav#myNav {
    background-color: #083346;
  }
}

@media only screen and (max-width: 576px) {
  nav#myNav a.logo {
    margin-top: -10px;
  }
}

nav#myNav ul {
  list-style-type: none;
  margin: 0;
  padding: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

@media only screen and (max-width: 768px) {
  nav#myNav ul {
    display: none;
    position: absolute;
    top: 55px;
    background-color: #083346;
    width: 100%;
  }
}

nav#myNav ul li {
  margin-right: 10px;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}

nav#myNav ul li:last-child {
  margin-right: 50px;
}

nav#myNav ul li a {
  font-size: 2rem;
  color: #fbff00;
}

@media only screen and (max-width: 768px) {
  nav#myNav ul li a {
    margin-bottom: 15px;
  }
}

nav#myNav ul li a::after {
  content: "";
  display: block;
  height: 2px;
  width: inherit;
  background: #f9fd00;
  -webkit-transition: all 0.4s ease;
  -o-transition: all 0.4s ease;
  transition: all 0.4s ease;
  -webkit-transform: scale(0);
      -ms-transform: scale(0);
          transform: scale(0);
  margin-top: 6px;
}

nav#myNav ul li a:hover {
  color: #fbff06;
  -webkit-transition: color 0.6s;
  -o-transition: color 0.6s;
  transition: color 0.6s;
}

nav#myNav ul li a:hover::after {
  -webkit-transform: scale(1);
      -ms-transform: scale(1);
          transform: scale(1);
}

nav#myNav ul a.active::after {
  content: "";
  display: block;
  height: 2px;
  background: #f9fd00;
  -webkit-transition: all 0.4s ease;
  -o-transition: all 0.4s ease;
  transition: all 0.4s ease;
  -webkit-transform: scale(1);
      -ms-transform: scale(1);
          transform: scale(1);
  margin-top: 4px;
}

@media only screen and (max-width: 768px) {
  nav#myNav ul.toggle-content {
    display: block;
  }
}

nav#myNav a {
  margin-left: 20px;
  font-size: 2.5rem;
}

nav#myNav a:hover {
  text-decoration: none;
}

nav#myNav div#nav-hamburger {
  width: 45px;
  height: 40px;
  position: relative;
  margin-right: 25px;
  -webkit-transform: rotate(0deg);
      -ms-transform: rotate(0deg);
          transform: rotate(0deg);
  -webkit-transition: .5s ease-in-out;
  -o-transition: .5s ease-in-out;
  transition: .5s ease-in-out;
  cursor: pointer;
  display: none;
  border: 1px solid yellow;
  margin-top: -5px;
}

@media only screen and (max-width: 768px) {
  nav#myNav div#nav-hamburger {
    display: block;
  }
}

@media only screen and (max-width: 576px) {
  nav#myNav div#nav-hamburger {
    width: 40px;
    height: 35px;
  }
}

nav#myNav #nav-hamburger span {
  display: block;
  position: absolute;
  height: 2px;
  width: 70%;
  background: #fbff00;
  border-radius: 9px;
  opacity: 1;
  left: 15%;
  -webkit-transform: rotate(0deg);
      -ms-transform: rotate(0deg);
          transform: rotate(0deg);
  -webkit-transition: .25s ease-in-out;
  -o-transition: .25s ease-in-out;
  transition: .25s ease-in-out;
}

nav#myNav #nav-hamburger span:nth-child(1) {
  top: 6px;
}

@media only screen and (max-width: 576px) {
  nav#myNav #nav-hamburger span:nth-child(1) {
    top: 6px;
  }
}

nav#myNav #nav-hamburger span:nth-child(2) {
  top: 17px;
}

@media only screen and (max-width: 576px) {
  nav#myNav #nav-hamburger span:nth-child(2) {
    top: 15px;
  }
}

nav#myNav #nav-hamburger span:nth-child(3) {
  top: 28px;
}

@media only screen and (max-width: 576px) {
  nav#myNav #nav-hamburger span:nth-child(3) {
    top: 24px;
  }
}

nav#myNav #nav-hamburger.open span:nth-child(1) {
  top: 18px;
  -webkit-transform: rotate(135deg);
      -ms-transform: rotate(135deg);
          transform: rotate(135deg);
}

nav#myNav #nav-hamburger.open span:nth-child(2) {
  opacity: 0;
  left: -60px;
}

nav#myNav #nav-hamburger.open span:nth-child(3) {
  top: 18px;
  -webkit-transform: rotate(-135deg);
      -ms-transform: rotate(-135deg);
          transform: rotate(-135deg);
}

.nav-colored {
  background-color: #083346;
  -webkit-transition: all 1s;
  -o-transition: all 1s;
  transition: all 1s;
}

#particles-js {
  height: 100vh;
  background-color: #0e0e19;
  z-index: -1;
}

#Home {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 1%;
  color: #f9fd00;
  font-family: "Ubuntu", sans-serif;
}

#Home .Hero {
  -webkit-transform: translateY(50vh);
      -ms-transform: translateY(50vh);
          transform: translateY(50vh);
  position: relative;
}

#Home .Hero span.hero-text1 {
  font-size: 3rem;
  text-align: center;
}

@media only screen and (max-width: 576px) {
  #Home .Hero span.hero-text1 {
    font-size: 2rem;
    margin-left: 1rem;
  }
}

#Home .Hero h1 {
  font-size: 8rem;
  font-weight: 600;
}

@media only screen and (max-width: 576px) {
  #Home .Hero h1 {
    font-size: 5rem;
  }
}

#Home .Hero span.hero-text2 {
  font-size: 3rem;
  text-decoration: underline;
}

@media only screen and (max-width: 576px) {
  #Home .Hero span.hero-text2 {
    font-size: 2rem;
  }
}

#Home .Hero .typed-cursor {
  font-size: 3rem;
  opacity: 0.7;
}

#Home .Hero #Web-dev-text {
  display: none;
}

#Home .Hero div.icon-container i {
  -webkit-transition: all 0.6s;
  -o-transition: all 0.6s;
  transition: all 0.6s;
}

#Home .Hero div.icon-container i:hover {
  -webkit-transform: scale(1.5);
      -ms-transform: scale(1.5);
          transform: scale(1.5);
  -webkit-transition: all 0.7s;
  -o-transition: all 0.7s;
  transition: all 0.7s;
  margin-right: 1.2rem;
  margin-left: 1.2rem;
}

#Home .Hero div.scroll-down-container {
  position: absolute;
  top: 130%;
  left: 47%;
  color: white;
}

@media only screen and (max-width: 576px) {
  #Home .Hero div.scroll-down-container {
    top: 150%;
  }
}

@media only screen and (max-width: 280px) {
  #Home .Hero div.scroll-down-container {
    top: 130%;
  }
}

#Home .Hero div.scroll-down-container i#scroll {
  position: absolute;
  -webkit-animation: scrolldown 1.4s infinite ease-in-out;
          animation: scrolldown 1.4s infinite ease-in-out;
}

@-webkit-keyframes scrolldown {
  0% {
    top: 20%;
  }
  100% {
    top: 143%;
  }
}

@keyframes scrolldown {
  0% {
    top: 20%;
  }
  100% {
    top: 143%;
  }
}

#About {
  margin: auto;
  overflow: hidden;
  position: relative;
}

#About h1.title {
  font-size: 4.5rem;
  font-weight: 600;
  position: relative;
  text-align: center;
  padding-bottom: 25px;
  margin-bottom: 9rem;
  margin-top: 8rem;
}

#About h1.title:before {
  content: "";
  position: absolute;
  bottom: 0px;
  left: 50%;
  width: 180px;
  height: 3px;
  background: black;
  -webkit-transform: translateX(-50%);
      -ms-transform: translateX(-50%);
          transform: translateX(-50%);
}

#About h1.title:after {
  content: "who I am";
  position: absolute;
  bottom: -12px;
  left: 50%;
  font-size: 20px;
  color: #d6cf00;
  padding: 5px;
  background: #fff;
  -webkit-transform: translateX(-50%);
      -ms-transform: translateX(-50%);
          transform: translateX(-50%);
}

#About div.about_content div.about_text p {
  font-size: 1.8rem;
  text-align: justify;
  margin-right: 50px;
  font-family: "Roboto", sans-serif;
  line-height: 1.8;
}

#About svg#sw-js-blob-svg {
  position: absolute;
  -webkit-transform: scale(0.8);
      -ms-transform: scale(0.8);
          transform: scale(0.8);
  z-index: -1;
  animation: move 25s ease-in-out infinite reverse forwards;
  -webkit-transform-origin: 50% 50%;
      -ms-transform-origin: 50% 50%;
          transform-origin: 50% 50%;
  top: 0;
  left: 20%;
}

@-webkit-keyframes move {
  0% {
    -webkit-transform: scale(0.5) translate(-20px, -50px);
            transform: scale(0.5) translate(-20px, -50px);
  }
  38% {
    -webkit-transform: scale(0.8, 1) translate(-23px, -90px) rotate(160deg);
            transform: scale(0.8, 1) translate(-23px, -90px) rotate(160deg);
  }
  40% {
    -webkit-transform: scale(0.8, 1) translate(-25px, -80px) rotate(160deg);
            transform: scale(0.8, 1) translate(-25px, -80px) rotate(160deg);
  }
  78% {
    -webkit-transform: scale(0.9) translate(-27px, -60px) rotate(-20deg);
            transform: scale(0.9) translate(-27px, -60px) rotate(-20deg);
  }
  80% {
    -webkit-transform: scale(0.7) translate(22px, -80px) rotate(-20deg);
            transform: scale(0.7) translate(22px, -80px) rotate(-20deg);
  }
  100% {
    -webkit-transform: scale(0.5) translate(20px, -30px);
            transform: scale(0.5) translate(20px, -30px);
  }
}

@keyframes move {
  0% {
    -webkit-transform: scale(0.5) translate(-20px, -50px);
            transform: scale(0.5) translate(-20px, -50px);
  }
  38% {
    -webkit-transform: scale(0.8, 1) translate(-23px, -90px) rotate(160deg);
            transform: scale(0.8, 1) translate(-23px, -90px) rotate(160deg);
  }
  40% {
    -webkit-transform: scale(0.8, 1) translate(-25px, -80px) rotate(160deg);
            transform: scale(0.8, 1) translate(-25px, -80px) rotate(160deg);
  }
  78% {
    -webkit-transform: scale(0.9) translate(-27px, -60px) rotate(-20deg);
            transform: scale(0.9) translate(-27px, -60px) rotate(-20deg);
  }
  80% {
    -webkit-transform: scale(0.7) translate(22px, -80px) rotate(-20deg);
            transform: scale(0.7) translate(22px, -80px) rotate(-20deg);
  }
  100% {
    -webkit-transform: scale(0.5) translate(20px, -30px);
            transform: scale(0.5) translate(20px, -30px);
  }
}

@media only screen and (max-width: 768px) {
  #About svg#sw-js-blob-svg {
    bottom: 20%;
    -webkit-transform: scale(1.5);
        -ms-transform: scale(1.5);
            transform: scale(1.5);
  }
  @-webkit-keyframes move {
    0% {
      -webkit-transform: scale(1.2) translate(-20px, -20px);
              transform: scale(1.2) translate(-20px, -20px);
    }
    38% {
      -webkit-transform: scale(1.8) translate(-23px, -50px) rotate(160deg);
              transform: scale(1.8) translate(-23px, -50px) rotate(160deg);
    }
    40% {
      -webkit-transform: scale(1.8) translate(-25px, -40px) rotate(160deg);
              transform: scale(1.8) translate(-25px, -40px) rotate(160deg);
    }
    78% {
      -webkit-transform: scale(1.9) translate(-27px, -30px) rotate(-20deg);
              transform: scale(1.9) translate(-27px, -30px) rotate(-20deg);
    }
    80% {
      -webkit-transform: scale(1.7) translate(22px, -20px) rotate(-20deg);
              transform: scale(1.7) translate(22px, -20px) rotate(-20deg);
    }
    100% {
      -webkit-transform: scale(1.5) translate(20px, -30px);
              transform: scale(1.5) translate(20px, -30px);
    }
  }
  @keyframes move {
    0% {
      -webkit-transform: scale(1.2) translate(-20px, -20px);
              transform: scale(1.2) translate(-20px, -20px);
    }
    38% {
      -webkit-transform: scale(1.8) translate(-23px, -50px) rotate(160deg);
              transform: scale(1.8) translate(-23px, -50px) rotate(160deg);
    }
    40% {
      -webkit-transform: scale(1.8) translate(-25px, -40px) rotate(160deg);
              transform: scale(1.8) translate(-25px, -40px) rotate(160deg);
    }
    78% {
      -webkit-transform: scale(1.9) translate(-27px, -30px) rotate(-20deg);
              transform: scale(1.9) translate(-27px, -30px) rotate(-20deg);
    }
    80% {
      -webkit-transform: scale(1.7) translate(22px, -20px) rotate(-20deg);
              transform: scale(1.7) translate(22px, -20px) rotate(-20deg);
    }
    100% {
      -webkit-transform: scale(1.5) translate(20px, -30px);
              transform: scale(1.5) translate(20px, -30px);
    }
  }
}

#About svg#about-blob {
  position: absolute;
  -webkit-transform: scale(0.2);
      -ms-transform: scale(0.2);
          transform: scale(0.2);
  bottom: 0;
  left: 0;
  z-index: -2;
}

#About div.skills-set div.cards {
  padding: 15px;
  border-radius: 18px;
  background: #fdfdfd;
  -webkit-box-shadow: 14px 14px 32px #d6d6d6, -14px -14px 36px #ffffff;
          box-shadow: 14px 14px 32px #d6d6d6, -14px -14px 36px #ffffff;
  -webkit-transition: -webkit-transform 0.7s;
  transition: -webkit-transform 0.7s;
  -o-transition: transform 0.7s;
  transition: transform 0.7s;
  transition: transform 0.7s, -webkit-transform 0.7s;
}

#About div.skills-set div.cards:hover, #About div.skills-set div.cards:active, #About div.skills-set div.cards:focus {
  -webkit-transform: scale(1.16);
      -ms-transform: scale(1.16);
          transform: scale(1.16);
  -webkit-transition: all 0.8s;
  -o-transition: all 0.8s;
  transition: all 0.8s;
}

#About div.skills-set div.cards i.fa-html5 {
  color: #dd4b25;
}

#About div.skills-set div.cards i.fa-html5:hover, #About div.skills-set div.cards i.fa-html5:focus, #About div.skills-set div.cards i.fa-html5:active {
  color: #ff572d;
}

#About div.skills-set div.cards i.fa-css3-alt {
  color: #3072be;
}

#About div.skills-set div.cards i.fa-css3-alt:hover, #About div.skills-set div.cards i.fa-css3-alt:focus, #About div.skills-set div.cards i.fa-css3-alt:active {
  color: #2d8dfa;
}

#About div.skills-set div.cards i.fa-js-square {
  color: #eaee1c;
}

#About div.skills-set div.cards i.fa-js-square:hover, #About div.skills-set div.cards i.fa-js-square:focus, #About div.skills-set div.cards i.fa-js-square:active {
  color: #fbff00;
}

#About div.skills-set div.cards i.fa-react {
  color: #1873c9;
}

#About div.skills-set div.cards i.fa-react:hover, #About div.skills-set div.cards i.fa-react:focus, #About div.skills-set div.cards i.fa-react:active {
  color: #0084ff;
}

#About div.skills-set div.cards i.fa-sass {
  color: #e22e2e;
}

#About div.skills-set div.cards i.fa-sass:hover, #About div.skills-set div.cards i.fa-sass:focus, #About div.skills-set div.cards i.fa-sass:active {
  color: #ff0b0b;
}

#About div.skills-set div.cards i.fa-wordpress {
  color: #0774a7;
}

#About div.skills-set div.cards i.fa-wordpress:hover, #About div.skills-set div.cards i.fa-wordpress:focus, #About div.skills-set div.cards i.fa-wordpress:active {
  color: #0b8dd8;
}

#About div.skills-set div.cards i.fa-java {
  color: #ec981a;
}

#About div.skills-set div.cards i.fa-java:hover, #About div.skills-set div.cards i.fa-java:focus, #About div.skills-set div.cards i.fa-java:active {
  color: #ff9a02;
}

#About div.skills-set div.cards i.fa-angular {
  color: #d11b03;
}

#About div.skills-set div.cards i.fa-angular:hover, #About div.skills-set div.cards i.fa-angular:focus, #About div.skills-set div.cards i.fa-angular:active {
  color: #ff1010;
}

section#Services {
  padding: 5rem;
  padding-top: 1rem;
  background-color: #141424;
  min-height: 70vh;
}

section#Services h1.services-heading {
  text-align: center;
  font-size: 4rem;
  color: white;
  margin-top: 6.5rem;
}

section#Services div.hr-line {
  border-bottom: 4px solid #fffb01;
  width: 250px;
  margin: 0 auto;
  margin-bottom: 50px;
}

section#Services div.cards {
  background-color: #de8347;
  color: inherit;
  border-radius: 12px;
  -webkit-transition: 0.6s ease-in-out;
  -o-transition: 0.6s ease-in-out;
  transition: 0.6s ease-in-out;
}

section#Services div.cards:hover, section#Services div.cards:active, section#Services div.cards:focus {
  color: #313157;
  background-color: #ff9954;
  -webkit-transform: scale(1.1);
      -ms-transform: scale(1.1);
          transform: scale(1.1);
  -webkit-transition: all 0.8s;
  -o-transition: all 0.8s;
  transition: all 0.8s;
}

section#Projects {
  min-height: 100vh;
}

section#Projects div.project-header {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  margin: 0 auto;
}

section#Projects div.project-header h1 {
  font-size: 4.5rem;
  font-weight: 600;
  position: relative;
  text-align: center;
  padding-bottom: 25px;
  margin-bottom: 2rem;
  margin-top: 6.6rem;
}

section#Projects div.project-header h1:before {
  content: "";
  position: absolute;
  bottom: 0px;
  left: 50%;
  width: 220px;
  height: 3px;
  background: black;
  -webkit-transform: translateX(-50%);
      -ms-transform: translateX(-50%);
          transform: translateX(-50%);
}

section#Projects div.project-header h1:after {
  content: "What i have Done";
  position: absolute;
  bottom: -12px;
  left: 33%;
  font-size: 18px;
  color: #ece73c;
  padding: 5px;
  background: #fff;
  -webkit-transform: translateX(-23%);
      -ms-transform: translateX(-23%);
          transform: translateX(-23%);
}

section#Projects .cards {
  height: 400px;
  width: 100%;
  overflow: hidden;
  padding: 0;
  position: relative;
  background-color: white;
  border-radius: 40px;
  -webkit-transition: border-radius 0.7s;
  -o-transition: border-radius 0.7s;
  transition: border-radius 0.7s;
}

@media only screen and (max-width: 576px) {
  section#Projects .cards {
    height: 300px;
  }
}

@media only screen and (max-width: 400px) {
  section#Projects .cards {
    height: 250px;
  }
}

section#Projects .card1 div.bg-color,
section#Projects .card2 div.bg-color,
section#Projects .card3 div.bg-color,
section#Projects .card4 div.bg-color,
section#Projects .card5 div.bg-color,
section#Projects .card6 div.bg-color {
  opacity: 1;
  position: absolute;
  top: 95%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  text-align: center;
  color: white;
  background-color: #083346d2;
  height: 10%;
  width: 100%;
  -webkit-transition: all 1s;
  -o-transition: all 1s;
  transition: all 1s;
}

@media only screen and (max-width: 576px) {
  section#Projects .card1 div.bg-color,
  section#Projects .card2 div.bg-color,
  section#Projects .card3 div.bg-color,
  section#Projects .card4 div.bg-color,
  section#Projects .card5 div.bg-color,
  section#Projects .card6 div.bg-color {
    top: 90%;
  }
}

@media only screen and (max-width: 400px) {
  section#Projects .card1 div.bg-color,
  section#Projects .card2 div.bg-color,
  section#Projects .card3 div.bg-color,
  section#Projects .card4 div.bg-color,
  section#Projects .card5 div.bg-color,
  section#Projects .card6 div.bg-color {
    top: 92%;
    height: 15%;
  }
}

section#Projects .card1 div.bg-color h2,
section#Projects .card2 div.bg-color h2,
section#Projects .card3 div.bg-color h2,
section#Projects .card4 div.bg-color h2,
section#Projects .card5 div.bg-color h2,
section#Projects .card6 div.bg-color h2 {
  -webkit-transform: translateY(10px);
      -ms-transform: translateY(10px);
          transform: translateY(10px);
  -webkit-transition: all 0.7s;
  -o-transition: all 0.7s;
  transition: all 0.7s;
}

@media only screen and (max-width: 400px) {
  section#Projects .card1 div.bg-color h2,
  section#Projects .card2 div.bg-color h2,
  section#Projects .card3 div.bg-color h2,
  section#Projects .card4 div.bg-color h2,
  section#Projects .card5 div.bg-color h2,
  section#Projects .card6 div.bg-color h2 {
    font-size: 1.6rem;
  }
}

section#Projects .card1 div.bg-color div.project-details,
section#Projects .card2 div.bg-color div.project-details,
section#Projects .card3 div.bg-color div.project-details,
section#Projects .card4 div.bg-color div.project-details,
section#Projects .card5 div.bg-color div.project-details,
section#Projects .card6 div.bg-color div.project-details {
  -webkit-transform: translateY(120px);
      -ms-transform: translateY(120px);
          transform: translateY(120px);
  font-size: 2rem;
  width: 100%;
  -webkit-transition: -webkit-transform 0.4s;
  transition: -webkit-transform 0.4s;
  -o-transition: transform 0.4s;
  transition: transform 0.4s;
  transition: transform 0.4s, -webkit-transform 0.4s;
}

@media only screen and (max-width: 400px) {
  section#Projects .card1 div.bg-color div.project-details,
  section#Projects .card2 div.bg-color div.project-details,
  section#Projects .card3 div.bg-color div.project-details,
  section#Projects .card4 div.bg-color div.project-details,
  section#Projects .card5 div.bg-color div.project-details,
  section#Projects .card6 div.bg-color div.project-details {
    font-size: 1.6rem;
  }
}

section#Projects .card1 img,
section#Projects .card2 img,
section#Projects .card3 img,
section#Projects .card4 img,
section#Projects .card5 img,
section#Projects .card6 img {
  width: 100%;
  height: auto;
}

section#Projects .card1:hover,
section#Projects .card2:hover,
section#Projects .card3:hover,
section#Projects .card4:hover,
section#Projects .card5:hover,
section#Projects .card6:hover {
  border-radius: 50px;
  -webkit-transition: all 0.8s;
  -o-transition: all 0.8s;
  transition: all 0.8s;
}

section#Projects .card1:hover div.bg-color,
section#Projects .card2:hover div.bg-color,
section#Projects .card3:hover div.bg-color,
section#Projects .card4:hover div.bg-color,
section#Projects .card5:hover div.bg-color,
section#Projects .card6:hover div.bg-color {
  height: 100%;
  top: 50%;
  background-color: #083346f3;
  -webkit-transition: all 0.8s;
  -o-transition: all 0.8s;
  transition: all 0.8s;
}

section#Projects .card1:hover div.bg-color h2,
section#Projects .card2:hover div.bg-color h2,
section#Projects .card3:hover div.bg-color h2,
section#Projects .card4:hover div.bg-color h2,
section#Projects .card5:hover div.bg-color h2,
section#Projects .card6:hover div.bg-color h2 {
  -webkit-transform: translateY(130px);
      -ms-transform: translateY(130px);
          transform: translateY(130px);
  -webkit-transition: 0.7s;
  -o-transition: 0.7s;
  transition: 0.7s;
  -webkit-transition-delay: 0.1s;
       -o-transition-delay: 0.1s;
          transition-delay: 0.1s;
}

@media only screen and (max-width: 400px) {
  section#Projects .card1:hover div.bg-color h2,
  section#Projects .card2:hover div.bg-color h2,
  section#Projects .card3:hover div.bg-color h2,
  section#Projects .card4:hover div.bg-color h2,
  section#Projects .card5:hover div.bg-color h2,
  section#Projects .card6:hover div.bg-color h2 {
    -webkit-transform: translateY(50px);
        -ms-transform: translateY(50px);
            transform: translateY(50px);
  }
}

section#Projects .card1:hover div.bg-color div.project-details,
section#Projects .card2:hover div.bg-color div.project-details,
section#Projects .card3:hover div.bg-color div.project-details,
section#Projects .card4:hover div.bg-color div.project-details,
section#Projects .card5:hover div.bg-color div.project-details,
section#Projects .card6:hover div.bg-color div.project-details {
  -webkit-transform: translateY(140px);
      -ms-transform: translateY(140px);
          transform: translateY(140px);
}

@media only screen and (max-width: 400px) {
  section#Projects .card1:hover div.bg-color div.project-details,
  section#Projects .card2:hover div.bg-color div.project-details,
  section#Projects .card3:hover div.bg-color div.project-details,
  section#Projects .card4:hover div.bg-color div.project-details,
  section#Projects .card5:hover div.bg-color div.project-details,
  section#Projects .card6:hover div.bg-color div.project-details {
    -webkit-transform: translateY(70px);
        -ms-transform: translateY(70px);
            transform: translateY(70px);
  }
}

@media only screen and (max-width: 400px) {
  section#Projects .card1:hover div.bg-color div.project-details p.hide-xs,
  section#Projects .card2:hover div.bg-color div.project-details p.hide-xs,
  section#Projects .card3:hover div.bg-color div.project-details p.hide-xs,
  section#Projects .card4:hover div.bg-color div.project-details p.hide-xs,
  section#Projects .card5:hover div.bg-color div.project-details p.hide-xs,
  section#Projects .card6:hover div.bg-color div.project-details p.hide-xs {
    display: none;
  }
}

section#Projects .card1:hover div.bg-color img,
section#Projects .card2:hover div.bg-color img,
section#Projects .card3:hover div.bg-color img,
section#Projects .card4:hover div.bg-color img,
section#Projects .card5:hover div.bg-color img,
section#Projects .card6:hover div.bg-color img {
  z-index: -1;
}

section#ContactMe {
  min-height: 70vh;
  background-color: #141424;
  padding: 3rem;
  color: white;
  width: 100%;
}

section#ContactMe h1 {
  color: white;
}

section#ContactMe div.contact-card {
  width: 400px;
  background-color: #083346;
  height: -webkit-max-content;
  height: -moz-max-content;
  height: max-content;
  padding: 2rem;
  padding-top: 10rem;
  border: 2px solid white;
  border-radius: 25px;
  margin-top: 5rem;
  position: relative;
}

@media only screen and (max-width: 768px) {
  section#ContactMe div.contact-card {
    width: 300px;
  }
}

@media only screen and (max-width: 280px) {
  section#ContactMe div.contact-card {
    width: 230px;
  }
}

section#ContactMe div.contact-card img {
  height: 150px;
  width: 150px;
  border-radius: 50%;
  position: absolute;
  top: -13%;
  left: 30%;
}

@media only screen and (max-width: 768px) {
  section#ContactMe div.contact-card img {
    left: 27%;
  }
}

section#ContactMe div.contact-card h3 {
  padding-bottom: 2rem;
  border-bottom: 1px solid white;
}

section#ContactMe div.contact-card ul {
  list-style: none;
  text-align: left;
  margin-left: 2.5rem;
}

section#ContactMe div.contact-card ul li {
  margin-bottom: 20px;
}

section#ContactMe div.contact-card ul li i {
  font-size: 26px;
  vertical-align: bottom;
  -webkit-transition: all 0.6s;
  -o-transition: all 0.6s;
  transition: all 0.6s;
}

section#ContactMe div.contact-card ul li i:hover {
  -webkit-transform: scale(1.2);
      -ms-transform: scale(1.2);
          transform: scale(1.2);
  -webkit-transition: all 0.7s;
  -o-transition: all 0.7s;
  transition: all 0.7s;
}

section#ContactMe div.contact-card ul a:hover {
  text-decoration: underline;
}

section#ContactMe div.contact-card ul a span {
  font-size: 2rem;
  -webkit-transform: translateY(10px);
      -ms-transform: translateY(10px);
          transform: translateY(10px);
}
/*# sourceMappingURL=style.css.map */

.c-icon {
  display: inline-block;
  width: 100px; /* Adjust width as needed */
  height: 113px; /* Adjust height as needed */
  background-image: url(/images/c.png); /* Replace with the path to your image */
  background-size: cover; /* or contain, depending on how you want the image to be displayed */
}

.sql-icon {
  display: inline-block;
  width: 100px; /* Adjust width as needed */
  height: 100px; /* Adjust height as needed */
  background-image: url(/images/sql.webp); /* Replace with the path to your image */
  background-size: cover; /* or contain, depending on how you want the image to be displayed */
}

.sitecore-icon {
  display: inline-block;
  width: 100px; /* Adjust width as needed */
  height: 100px; /* Adjust height as needed */
  background-image: url(/images/sitecore.png); /* Replace with the path to your image */
  background-size: cover; /* or contain, depending on how you want the image to be displayed */
}

.net-icon {
  display: inline-block;
  width: 150px; /* Adjust width as needed */
  height: 100px; /* Adjust height as needed */
  background-image: url(/images/net.png); /* Replace with the path to your image */
  background-size: cover; /* or contain, depending on how you want the image to be displayed */
}
