@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Nanum+Gothic&display=swap");
* {
  margin: 0 auto;
  padding: 0 auto;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

@font-face {
  font-family: " great vibes";
  src: url(font/GreatVibes-Regular.ttf);
}

/********* NAVBAR STARTS *********/
div.title-bar {
  padding: 0 .5rem;
  background: #5f6679;
  -webkit-box-shadow: 1px 4px 5px rgba(0, 0, 0, 0.3);
          box-shadow: 1px 4px 5px rgba(0, 0, 0, 0.3);
}

.menu-icon {
  margin: 1rem;
}

#nav-bar {
  background: transparent;
}

.top-bar-section ul {
  background: transparent;
}

.top-bar-section ul .menu-item a {
  text-decoration: none;
  padding: 7px 15px;
  line-height: 22px;
  font-size: 20px;
  letter-spacing: 1px;
  color: #ffffff;
  font-weight: bold;
  font-family: 'Josefin Sans', sans-serif;
  background-color: #0000ff;
}

.top-bar-section ul .menu-item a:hover {
  background: #F5C518;
  opacity: 0.8;
  color: #000000;
}

h1 {
  text-align: center;
  color: #fff;
}

a {
  text-decoration: none;
}

#menu a {
  -webkit-box-shadow: 1px 4px 5px rgba(0, 0, 0, 0.3);
          box-shadow: 1px 4px 5px rgba(0, 0, 0, 0.3);
}

a:hover, a:active, a:focus {
  text-decoration: none;
}

@media only screen and (max-width: 480px) {
  .menu-item a {
    background: none !important;
  }
  .menu-item a:hover {
    text-decoration: none;
    background-color: #f7e708;
  }
  a:focus {
    text-decoration: none;
    background-color: #6ea5f7;
  }
  div.title-bar {
    padding: 0 .5rem;
  }
}

/* Medium-Up Navigation */
@media only screen and (min-width: 40rem) {
  nav.top-bar {
    text-align: center;
    background: black;
    padding: 0;
    height: 42px;
    position: fixed;
    width: 100%;
    z-index: 1;
  }
  section.top-bar-section {
    display: inline-block;
  }
}

/********* NAVBAR ENDS *********/
/**************************************HOME******************************8*/
.home {
  /* width: 100px; */
  background-image: url(../photos/hero/hero6.jpg);
  min-height: 300px;
  background-position: center;
  background-size: cover;
  color: #ffffff;
  position: relative;
}

.inner-home {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(247, 6, 6, 0.4) 10%, rgba(12, 105, 192, 0.4) 25%, rgba(0, 23, 149, 0.6) 50%, rgba(255, 0, 0, 0.6) 75%, rgba(0, 23, 149, 0.6) 100%);
  /* position: relative; */
  top: 0;
  left: 0;
  background-repeat: no-repeat;
  background-size: 200% 200%;
  -webkit-transition: 3s;
  transition: 3s;
}

.home:hover .inner-home {
  background-position: 100% 100%;
}

.name {
  height: 100%;
  width: 100%;
  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;
  text-shadow: 3px 0px 7px rgba(25, 41, 126, 0.8), -3px 0px 7px rgba(21, 62, 81, 0.8), 0px 4px 7px rgba(20, 84, 169, 0.8);
}

.name h1 {
  font-family: 'IBM Plex Mono', monospace;
  font-weight: 300;
  text-align: center;
}

.name h2, .name h3, .name h4 {
  font-family: 'IBM Plex Mono', monospace;
  text-align: center;
  margin-bottom: 0px;
}

.hero_icon {
  max-width: 150px;
  margin: 0 auto;
  display: block;
  text-align: center;
}

@media screen and (max-width: 480px) {
  .hero_icon {
    width: 100px;
    margin: 0 auto;
    display: block;
    text-align: center;
  }
}

.social {
  font-size: 30px;
  margin-top: 10px !important;
}

.facebook {
  color: white;
  background-color: #0061cf;
  padding: 9px;
  border-radius: 5px;
  /* linkedin */
}

.linkedin {
  color: white;
  background-color: #0e76a8;
  padding: 9px;
  border-radius: 5px;
}

.skype {
  color: white;
  background-color: #55a2fa;
  padding: 9px;
  border-radius: 10px;
}

.fa-github {
  color: white;
  background-color: #2b2b2b;
  padding: 10px;
  border-radius: 10px;
}

@media screen and (max-width: 480px) {
  .social {
    font-size: 20px;
    margin-bottom: 10px;
  }
  .homeContent {
    margin-top: 20px !important;
  }
  .home, .inner-home {
    min-height: 300px;
  }
  .name img {
    width: 100px;
  }
}

/* Medium-Up Navigation */
@media only screen and (min-width: 40rem) {
  section.home {
    height: 100%;
  }
  .name h1 {
    font-size: 10em;
  }
}

/*-----------------------------ABOUT ME------------------------------------------*/
#about {
  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-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-align: center;
}

#aboutMainText {
  background-color: #5f6679;
}

.centered-container {
  padding: 25px;
  max-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-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

#bio p {
  margin: 0;
  color: #ffffff;
  font-weight: 400;
  letter-spacing: 0ch;
  font-family: 'IBM Plex Mono', monospace;
}

#resume {
  cursor: pointer;
  background-color: #2b7df8;
  border-radius: 5px;
  margin: 10px;
  margin-bottom: 0;
  -webkit-box-shadow: 1px 4px 5px rgba(0, 0, 0, 0.3);
          box-shadow: 1px 4px 5px rgba(0, 0, 0, 0.3);
}

#resume a {
  padding: 0 1rem;
  color: #ffffff;
  font-size: 1em;
}

#resume:hover {
  background-color: #000fff;
}

@media only screen and (min-width: 40rem) {
  .centered-container {
    padding: 75px;
  }
  #bio {
    font-size: 2em;
    text-align: justify;
  }
  #resume {
    margin-top: 20px;
  }
}

/*ABOUT ME ENDS------------------------------------------*/
/*SKILLS--------------------------------------------------*/
section.skills {
  width: 100%;
  color: #000;
  background-color: #fff;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.row {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.cardTools {
  width: 6rem;
}

.cardTools > div.card {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  width: 90%;
  -webkit-box-shadow: 0 4px 5px rgba(0, 0, 0, 0.3);
          box-shadow: 0 4px 5px rgba(0, 0, 0, 0.3);
  text-align: center;
  color: #000;
  margin-bottom: 2rem;
}

.skillCard {
  margin-top: 2rem;
  margin-bottom: 2rem;
  padding-top: 2rem;
  padding-bottom: 0rem;
  -webkit-box-shadow: 0 4px 5px rgba(0, 0, 0, 0.3);
          box-shadow: 0 4px 5px rgba(0, 0, 0, 0.3);
  text-align: center;
}

.menuText {
  text-align: center;
  color: #000;
  letter-spacing: 1px;
  font-weight: 600;
  margin: 1.5rem 0rem;
  font-family: 'Nanum Gothic', sans-serif;
}

.bottomTextSkills {
  text-align: center;
  letter-spacing: 0.5px;
  color: #fff;
  font-family: 'IBM Plex Mono', monospace;
}

.bottomTextSkills a {
  color: #598dd1;
  font-weight: bold;
}

.bottomTextSkills a:hover {
  color: #000fff;
  -webkit-text-decoration: underline solid #000fff;
          text-decoration: underline solid #000fff;
}

.mainToolsContainer {
  padding: 3rem;
  background-color: #0000ff;
}

@media only screen and (max-width: 480px) {
  .card {
    width: 90%;
  }
}

.skills h1 {
  color: #0e2b35;
  font-weight: bold;
}

/*--------------------ACCOMPLISHMENTS--------------------------------*/
section.timeline {
  color: #fff;
}

.accomplishments h2 {
  font-size: 1.25em;
  font-weight: 700;
}

.accomplishments h3 {
  font-size: 1em;
  margin-top: -10px;
  color: #1E2128;
  font-weight: bold;
}

.accomplishLinks {
  text-decoration: none !important;
  color: #005881 !important;
}

.accomplishLinks:hover {
  color: #00388b !important;
}

.timeline ul {
  padding: 30px;
  margin: 0;
  padding-bottom: 75px;
}

.timeline ul li {
  list-style-type: none;
  position: relative;
  width: 2px;
  margin: 0 auto;
  padding-top: 50px;
  background: #fff;
}

.timeline ul li::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: 5px;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: inherit;
}

.timeline ul li div {
  font-family: 'Nanum Gothic', sans-serif;
  letter-spacing: 0.25px;
  justify-items: center;
  position: relative;
  bottom: 5px;
  width: 400px;
  padding: 15px;
  background: #6ea5f7;
}

.timeline ul li div::before {
  content: '';
  position: absolute;
  bottom: 4px;
  width: 0;
  height: 0;
  border-style: solid;
}

.timeline ul li:nth-child(odd) div {
  left: 45px;
}

.timeline ul li:nth-child(odd) div::before {
  left: -15px;
  border-width: 8px 16px 8px 0;
  border-color: transparent  #6ea5f7 transparent transparent;
}

.timeline ul li:nth-child(even) div {
  left: -439px;
}

.timeline ul li:nth-child(even) div::before {
  right: -15px;
  border-width: 8px 0 8px 16px;
  border-color: transparent transparent transparent #6ea5f7;
}

time {
  display: block;
  font-size: 1.2rem;
  font-weight: bold;
}

.timeline li:nth-child(odd) span {
  position: absolute;
  bottom: 0;
  right: 30px;
}

.timeline li:nth-child(even) span {
  position: absolute;
  bottom: 0;
  left: 30px;
}

.timeline ul li::after {
  -webkit-transition: .5s ease-in-out;
  transition: .5s ease-in-out;
}

.timeline ul li.in-view::after {
  background: #ffffff;
}

.timeline ul li div {
  visibility: hidden;
  opacity: 0;
  -webkit-transition: all .5s ease-in-out;
  transition: all .5s ease-in-out;
}

.timeline ul li:nth-child(odd) div {
  -webkit-transform: translate3d(200px, 0, 0);
          transform: translate3d(200px, 0, 0);
}

.timeline ul li:nth-child(even) div {
  -webkit-transform: translate3d(-200px, 0, 0);
          transform: translate3d(-200px, 0, 0);
}

.timeline ul li.in-view div {
  -webkit-transform: none;
          transform: none;
  visibility: visible;
  opacity: 1;
}

/* EFFECTS
  –––––––––––––––––––––––––––––––––––––––––––––––––– */
/* GENERAL MEDIA QUERIES
  –––––––––––––––––––––––––––––––––––––––––––––––––– */
@media screen and (max-width: 900px) {
  .timeline ul li div {
    width: 250px;
  }
  .timeline ul li:nth-child(even) div {
    left: -291px;
  }
}

@media screen and (max-width: 600px) {
  .accomplishments h1 {
    padding-top: 0px;
  }
  .timeline ul {
    padding: 25px;
  }
  .timeline ul li {
    margin: 0 30px;
  }
  .timeline ul li div {
    width: calc(100vw - 130px);
  }
  .timeline ul li:nth-child(odd) div, .timeline ul li:nth-child(even) div {
    left: 30px;
  }
  .timeline ul li::after {
    width: 10px;
    height: 10px;
  }
  .timeline ul li div {
    bottom: 0;
  }
  .timeline ul li:nth-child(even) div::before {
    left: -15px;
    border-width: 8px 16px 8px 0;
    border-color: transparent #6ea5f7 transparent transparent;
  }
  .timeline li:nth-child(odd) span {
    position: absolute;
    bottom: 0;
    right: 15px;
  }
  .timeline li:nth-child(even) span {
    position: absolute;
    bottom: 0;
    left: -45px;
  }
  time {
    font-size: 1rem;
  }
}

/**********************************potfolio***************************/
section.portfolio {
  width: 100%;
  margin: 0;
}

.ownImgDiv .portfolio {
  -webkit-transition: all 1s ease;
  transition: all 1s ease;
}

img.portfolio {
  height: 230px;
}

.portfolio h1 {
  color: #000;
  text-align: center;
  color: #000;
  font-weight: 700;
}

.portfolio p {
  color: #000;
}

.portfolio .ownImgDiv {
  overflow: hidden;
  padding: 0.3rem;
  margin: 1rem;
  background: linear-gradient(319deg, #ff1493 0%, #0000ff 37%, #ff8c00 50%, #13096f 60%, rgba(255, 0, 0, 0.6) 75%, rgba(0, 23, 149, 0.6) 100%);
  text-align: center;
  -webkit-box-shadow: 0 4px 5px rgba(0, 0, 0, 0.3);
          box-shadow: 0 4px 5px rgba(0, 0, 0, 0.3);
  /* height: 400px; */
  position: relative;
  background-repeat: no-repeat;
  background-size: 400% 400%;
  -webkit-transition: 2s;
  transition: 2s;
}

.portfolio .ownImgDiv:hover {
  background-position: 100% 100%;
}

.portfolio .ownImgDiv [id*=projectDetails] {
  font-weight: bold;
  font-size: 20px;
  position: absolute;
  text-align: justify;
  color: #000000;
  font-style: italic;
  padding-top: 4rem;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background: #50709979 !important;
  text-align: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-flow: column;
          flex-flow: column;
}

.portfolio .btn-group {
  margin-top: 5px;
}

.portfolio .card {
  -webkit-box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
          box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
}

@media screen and (max-width: 480px) {
  img.portfolio {
    height: inherit;
  }
  [id*=projectDetails] {
    font-weight: bold;
    font-size: 16px !important;
    font-style: italic;
    padding: 2rem !important;
    background: #50709979 !important;
  }
}

.card-footer {
  border-style: none;
  background-color: transparent;
}

/**********************************CONTACT***************************/
section.contact {
  color: #fff;
  padding: 25px;
  padding-bottom: 50px;
}

.contact h1 {
  text-align: center;
  margin-bottom: 25px;
  font-family: 'IBM Plex Mono', monospace;
}

.contact h2 {
  color: #2b7df8;
  margin-bottom: 1em;
}

.contact p {
  font-size: 1rem;
  line-height: 0.5rem;
}

.my-contact, .email-form {
  display: block;
}

.my-contact {
  margin-bottom: 40px;
}

input[type=text] {
  margin-bottom: 0;
  height: 1.75em;
}

input[type=submit], input[type=reset] {
  margin-top: -20px;
  background-color: #2b7df8;
  color: #fff;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  width: 60px;
  height: 35px;
  margin-right: 10px;
  margin-bottom: 0;
}

input[type=submit]:hover, input[type=reset]:hover {
  background-color: #0000ff;
}

.topbtn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  padding: 16px;
}

#scrollToTopBtn {
  display: none;
  position: fixed;
  bottom: 100px;
  right: 30px;
  z-index: 99;
  font-size: 18px;
  border: none;
  outline: none;
  background-color: #1bd8cf;
  color: white;
  cursor: pointer;
  padding: 13px;
  border-radius: 4px;
  -webkit-box-shadow: 1px 4px 5px rgba(0, 0, 0, 0.3);
          box-shadow: 1px 4px 5px rgba(0, 0, 0, 0.3);
}

#scrollToTopBtn:hover {
  background-color: #2b7df8;
}

@media screen and (min-width: 50em) {
  section.contact {
    padding: 75px;
  }
  .contact p {
    font-size: 2rem;
    line-height: 2rem;
  }
  .contact h1 {
    text-align: left;
  }
  .container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    align-items: center;
  }
  .my-contact, .email-form {
    width: 40vw;
    display: inline-block;
    padding: 20px;
    margin: 20px;
  }
  .my-contact h2 {
    margin: 1em 0;
  }
  input[type=text] {
    margin-bottom: 10px;
    height: 3em;
  }
  input[type=submit], input[type=reset] {
    margin-top: 0;
  }
}

.footer {
  background-color: #404040;
  text-align: center;
  margin: 0;
  overflow: hidden;
}

.footer p {
  margin: 0.2rem;
  font-family: 'IBM Plex Mono', monospace;
}

.ownImgTools {
  height: 6rem;
  text-align: center;
}

.toolsImg {
  width: 100%;
  height: 100%;
}

div.cardTools > p {
  color: #090000 !important;
  font-weight: bold;
}

.card p {
  color: #fff !important;
}

.toolCard p {
  color: black !important;
}

.headline_title a {
  color: #0000ff;
}

.bgColor-1 {
  background-color: #fff;
}

.bgColor-2 {
  background-color: #000;
}

.bgColor-3 {
  background-color: #F5C518;
}

.bgColor-4 {
  background-color: #1E2128;
}

.bgColor-5 {
  background-color: #525252;
}

.bgColor-6 {
  background-color: #0000ff;
}

.bgColor-7 {
  background-color: #5f6679;
}

.bgColor-8 {
  background-color: #6ea5f7;
}

/* font color variables*/
.textColor-1 {
  color: #fff;
}

.textColor-2 {
  color: #000;
}

.textColor-3 {
  color: #F5C518;
}

.textColor-4 {
  color: #1E2128;
}

.textColor-5 {
  color: #000;
}

.textColor-6 {
  color: #ffee05;
}

.textColor-7 {
  color: #170ec0;
}

/* FOOTER ------------------------------*/
.footer {
  background-color: #1E2128;
}

.footer p {
  font-family: 'Courier New', Courier, monospace;
  margin: 2rem;
  font-size: large;
  color: #fff;
}

@media screen and (max-width: 480px) {
  #footerText {
    font-size: 15px;
  }
  .footer p {
    margin: 1rem;
  }
}

[id*=projectDetails] {
  font-weight: bold;
  font-size: 20px;
  position: absolute;
  text-align: justify;
  color: #a2b9c5;
  font-style: italic;
  padding: 1rem;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background: rgba(51, 51, 51, 0.6);
  text-align: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-flow: column;
          flex-flow: column;
}
/*# sourceMappingURL=app1.css.map */