@import url('https://fonts.googleapis.com/css?family=Karla:400,700');
@import url('https://fonts.googleapis.com/css?family=PT+Sans');

* {
  margin: 0;
  border: 0;
  padding: 0;
  box-sizing: border-box;
  vertical-align: baseline;
}

*:before, *:after {
		-moz-box-sizing: border-box;
		-webkit-box-sizing: border-box;
		box-sizing: border-box;
	}

div{
  font-size: 100%;
  /* display: block; */
}

body{
  display: block;
  background-color: #000;
  /* background-color: #e5e5e5; */
  font-family: 'Karla', sans-serif;
  -webkit-font-smoothing: antialiased;
  font-size: 22px;
}

/* Navigation Bar Style */
.navbar{
  /* background-color: rgba(0,0,0,0.8); */
  background-color: #e5e5e5;
  z-index: 999999;
}

.navbar-default{
  border-color: transparent;
}

.navbar-collapse ul li a{
  /* color: #e5e5e5 !important; */
  color: #000 !important;
}

.navbar-header, .navbar-collapse{
  font-family: 'Karla', sans-serif;
  letter-spacing: 0.2em;
  font-size: 14px;
  /* color: #e3e3e3 !important; */
    /* -webkit-font-smoothing: antialiased; */

}

.navbar-header a{
  text-decoration: none;
  color: #000 !important;
  font-size: 16px;
}

/* End of Navigation BarStyle */

#app{
  margin: 0;
  padding: 0;
  border: 0;
}

#container{
  margin: 0 auto;
}

.myName{
  display: inline-block;
  letter-spacing: 0.2em;
}

.about-container{
  background-color: #535f6b; /* grey color */
  margin: -30px auto 0 auto;
  height: auto;
  width: 100%;
}

.quick-desc, .terminal-container, .subsection, .line, .contact-info{
  /* max-width: 72%; */
  max-width: 80%;
  margin: 0 auto;
  -webkit-font-smoothing: antialiased;
}

.terminal-container, .quick-desc{
  max-width: 72%;
}

.resume{
  height: 100%;
}

.line{
  /* background-color: rgba(241,241,241, 0.5); */
  background-color: rgba(83,95,107, 0.3);
  /* background-color: transparent; */
  display: block;
  margin: 0 auto 50px auto;
  height: 1px;
  /* width: 5%; */
}

.quick-desc{
  color: #f7f7f7;
  /* color: #c0c0c0; */
  line-height: 2em;
  padding-top: 50px;
  margin: 80px auto 50px auto;
  font-size: 18px;
}

/* Terminal Style starts here */
.terminal-container{
  /* font-size: 14px; */
  /* width: 95%; */
  /* width: calc(100% - 10em);*/
  /*max-width: 75%;*/ /* most recent old style */
  font-size: 16px;
  /* max-width: 72%; */
  margin: 0 auto 60px auto;
}

.terminal{
  font-family: monospace, "Monaco", "Lucida Console";
}

.input-statement{
  display:inline-block;
}

.input-statement .actual-input{
  display:inline-block;
  vertical-align: top;
}

.terminal-header{
  height: 28px;
  background-color: #e4e3e5;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  border-radius: 10px 10px 0 0;
  -moz-border-top-left-radius: 10px;
  -moz-border-top-right-radius: 10px;
  -moz-border-bottom-left-radius: 0;
  -moz-border-bottom-right-radius: 0;
  -webkit-border-top-left-radius: 10px;
  -webkit-border-top-right-radius: 10px;
  -webkit-border-bottom-left-radius: 0;
  -webkit-border-bottom-right-radius: 0;

  /* box-shadow: 0 0 10px rgba(0,0,0,0.8); */
}

.header-button{
  width: 12px;
  height: 12px;
  -webkit-border-radius: 50px;
  -moz-border-radius: 50px;
  border-radius: 50px;
  margin-left: 9px;
}

.about-container .terminal .terminal-header .red{
  background-color: #f96256;
  border: 1px solid #f65549;
}

.about-container .terminal .terminal-header .yellow{
  background-color: #fdbc3d;
  border: 1px solid #ffb524;
}

.about-container .terminal .terminal-header .green{
  background-color: #33c948;
  border: 1px solid #2dbb41;
}

.terminal-body{
  background-color:#323232;
  
  -moz-border-top-left-radius: 0;
  -moz-border-top-right-radius: 0;
  -moz-border-bottom-left-radius: 5px;
  -moz-border-bottom-right-radius: 5px;
  -webkit-border-top-left-radius: 0;
  -webkit-border-top-right-radius: 0;
  -webkit-border-bottom-left-radius: 5px;
  -webkit-border-bottom-right-radius: 5px;
  border-radius: 0 0 5px 5px;

  box-shadow: 0px 14px 6px -6px #222222;/*rgba(40,40,93,.30);*/
}

.statement:first-child{
  padding-top: 35px;
}

.terminal-body .statement{
  margin-bottom: 20px;
  margin-left: 35px;
  margin-right: 35px;
  line-height: 24px;
}

.statement .input-statement{
  color: #f7f7f7;
}

.statement .return-statement{
  color: #fa8072;
}

.statement:last-child{
  padding-bottom: 60px;
}

.return-statement span{
  display:block;
  padding-left: 30px;
}

/* For Cool Typing Animation */
.anim-typewriter p{
  overflow: hidden;/* keeps the text hidden til animation starts */
  border-right: 10px solid #a9a9a9; /* color of the caret
  /* margin: 0 auto; */ /* this makes it like a scroll effect */
  white-space: nowrap; /* keeps text in a single line */
  -webkit-animation:
    typewriter 2s steps(10, end),
    blink-caret 1s step-end infinite;
  animation:
    typewriter 2s steps(10, end),
    blink-caret 1s step-end infinite;
}
/* This one is for the actual input statements inside the div */
/* The animation starts and the blinking stops when it's at the end of the statement */
.actual-input{
  overflow: hidden;
  border-right: 10px solid transparent; /* the transparent makes the caret disappear */
  -moz-opacity: 0;
  opacity: 0;
  white-space: nowrap;
  -webkit-animation:
    typewriter2 1s steps(9, end),
    blink-caret .5s step-end 2;
  animation:
    typewriter2 1s steps(9, end),
    blink-caret .5s step-end 2;
  -webkit-animation-fill-mode: forwards;
  -o-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
}

.terminal-body .statement:nth-child(2) .actual-input{
  /* animation-delay: 3s; */
  -webkit-animation-delay: 1s;
  -moz-animation-delay: 1s;
  -ms-animation-delay: 1s;
  -o-animation-delay: 1s;
  animation-delay: 1s;

}

.terminal-body .statement:nth-child(3) .actual-input{
  /* animation-delay: 6s; */
  -webkit-animation-delay: 2s;
  -moz-animation-delay: 2s;
  -ms-animation-delay: 2s;
  -o-animation-delay: 2s;
  animation-delay: 2s;

}

.terminal-body .statement:nth-child(4) .actual-input{
  /* animation-delay: 9s; */
  -webkit-animation-delay: 3s;
  -moz-animation-delay: 3s;
  -ms-animation-delay: 3s;
  -o-animation-delay: 3s;
  animation-delay: 3s;
}

.terminal-body .statement:nth-child(5) .actual-input{
  /* animation-delay: 12s; */
  -webkit-animation-delay: 4s;
  -moz-animation-delay: 4s;
  -ms-animation-delay: 4s;
  -o-animation-delay: 4s;
  animation-delay: 4s;

}

.terminal-body .statement:nth-child(6) .actual-input{
  /* animation-delay: 15s; */
  -webkit-animation-delay: 5s;
  -moz-animation-delay: 5s;
  -ms-animation-delay: 5s;
  -o-animation-delay: 5s;
  animation-delay: 5s;

}

.terminal-body .statement:nth-child(7) .actual-input{
  /* animation-delay: 17s; */
  -webkit-animation-delay: 6s;
  -moz-animation-delay: 6s;
  -ms-animation-delay: 6s;
  -o-animation-delay: 6s;
  animation-delay: 6s;

}

.terminal-body .statement:nth-child(8) .actual-input{
  /* animation-delay: 19s; */
  -webkit-animation-delay: 7s;
  -moz-animation-delay: 7s;
  -ms-animation-delay: 7s;
  -o-animation-delay: 7s;
  animation-delay: 7s;

}

/* last input statement */
.terminal-body .statement:last-child .input-statement{
  /* animation: 23s opacity;*/
  -webkit-animation: 8s opacity;
  -moz-animation: 8s opacity;
  -ms-animation: 8s opacity;
  -o-animation: 8s opacity;
  animation: 8s opacity;
}

/* This is the animation delay for the return statements */
.terminal-body .statement:first-child .return-appear{
  /* animation: 3s opacity; */
  -webkit-animation: 1.3s opacity;
  -moz-animation: 1.3s opacity;
  -ms-animation: 1.3s opacity;
  -o-animation: 1.3s opacity;
  animation: 1.3s opacity;

}

.terminal-body .statement:nth-child(2) .return-appear{
  /* animation: 6s opacity; */
  -webkit-animation: 2.3s opacity;
  -moz-animation: 2.3s opacity;
  -ms-animation: 2.3s opacity;
  -o-animation: 2.3s opacity;
  animation: 2.3s opacity;

}

.terminal-body .statement:nth-child(3) .return-appear{
  /* animation: 9s opacity;*/
  -webkit-animation: 3.3s opacity;
  -moz-animation: 3.3s opacity;
  -ms-animation: 3.3s opacity;
  -o-animation: 3.3s opacity;
  animation: 3.3s opacity;

}

.terminal-body .statement:nth-child(4) .return-appear{
  /* animation: 12s opacity; */
  -webkit-animation: 4.3s opacity;
  -moz-animation: 4.3s opacity;
  -ms-animation: 4.3s opacity;
  -o-animation: 4.3s opacity;
  animation: 4.3s opacity;

}

.terminal-body .statement:nth-child(5) .return-appear{
  /* animation: 15s opacity; */
  -webkit-animation: 5.3s opacity;
  -moz-animation: 5.3s opacity;
  -ms-animation: 5.3s opacity;
  -o-animation: 5.3s opacity;
  animation: 5.3s opacity;

}

.terminal-body .statement:nth-child(6) .return-appear{
  /* animation: 18s opacity; */
  -webkit-animation: 6.3s opacity;
  -moz-animation: 6.3s opacity;
  -ms-animation: 6.3s opacity;
  -o-animation: 6.3s opacity;
  animation: 6.3s opacity;

}

.terminal-body .statement:nth-child(7) .return-appear{
  /* animation: 21s opacity; */
  -webkit-animation: 7.3s opacity;
  -moz-animation: 7.3s opacity;
  -ms-animation: 7.3s opacity;
  -o-animation: 7.3s opacity;
  animation: 7.3s opacity;
}

.terminal-body .statement:nth-child(8) .return-appear{
  /* animation: 24s opacity; */
  -webkit-animation: 8.3s opacity;
  -moz-animation: 8.3s opacity;
  -ms-animation: 8.3s opacity;
  -o-animation: 8.3s opacity;
  animation: 8.3s opacity;
}

/* The magic that makes the return statement appear after
   the input statement */
@-webkit-keyframes opacity{
 0% {opacity: 0}
 92% {opacity: 0}
 100% {opacity: 1}
}
@-moz-keyframes opacity{
 0% {opacity: 0}
 92% {opacity: 0}
 100% {opacity: 1}
}

@-ms-keyframes opacity{
  0% {opacity: 0}
  92% {opacity: 0}
  100% {opacity: 1}
}

/* The magic that makes the typing animated */
@keyframes typewriter{
  from {width: 0;}
  to {width: 100%;}
}

@-webkit-keyframes typewriter2{
  0%{width:0;}
  from {opacity:0;}
  1%{opacity:1;}
  to{width: 100%;}
  100%{opacity:1;}
}

@-moz-keyframes typewriter2{
  0%{width:0;}
  from {opacity:0;}
  1%{opacity:1;}
  to{width: 100%;}
  100%{opacity:1;}
}

@-ms-keyframes typewriter2{
  0%{width:0;}
  from {opacity:0;}
  1%{opacity:1;}
  to{width: 100%;}
  100%{opacity:1;}
}

@keyframes typewriter2{
  0%{width:0;}
  from {opacity:0;}
  1%{opacity:1;}
  to{width: 100%;}
  100%{opacity:1;}
}

/* The magic that makes the caret animated */
@-webkit-keyframes blink-caret{
  from, to {border-color: transparent}
  50% {border-color: #a9a9a9}
}

@-moz-keyframes blink-caret{
  from, to {border-color: transparent}
  50% {border-color: #a9a9a9}
}

@-ms-keyframes blink-caret{
  from, to {border-color: transparent}
  50% {border-color: #a9a9a9}
}

@keyframes blink-caret{
  from, to {border-color: transparent}
  50% {border-color: #a9a9a9}
}

/* terminal blink */
span.blinking{
  border-right: 10px solid blue;
  animation: blink-caret 1s infinite;
}

/* End of Terminal Style */


/* Subsection's  h2 Title */
.divider h1{
  text-align: center;
  margin-top: 0;
  margin-bottom: 5px;
  /* font-size: 14px; */
  /* font-weight: bold; */
  text-transform: uppercase;
  color: #535f6b;
  font-size: 18px;
  font-weight: bold;
}

.divider .title{
  font-weight: 700;
}

/* Education Section Style starts here */
.education-section, .work-section, .project-section, .contact-section{
  /* background-color: #aeb8bf;
  color: #f1f1f1; */
  background-color: #efefef;
  color: #000;
  font-size: 18px;
  letter-spacing: 0.04em;
  padding-top: 60px;
  height: 100%;
  margin: 0 auto;
}

.contact-section > p {
  margin: 0;
  padding-bottom: 10px;
}

.subsection{
  position: relative;
  /* background-color: #aeb8bf;
  color: #535f6b; */
  background-color: #efefef;
  color: #000;
  
  max-width: 1300px;

  display: flex;
  flex-direction: row;
  justify-content: flex-start;
}

/* page curl */
/* pseudo-element */
div.subsection::before{
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  /* Top Right Bottom Left */
  /* border-width: 0px 0px 35px 35px; */
  border-width: 0px 35px 35px 0px;
  border-style: solid;
  /* border-color: #aeb8bf #d0d0d0 #d0d0d0 #aeb8bf; */
  /* original */
  /* border-color: #efefef #d0d0d0 #d0d0d0 #efefef; */
  border-color: #d0d0d0 #d0d0d0 #efefef #efefef;

  /* offset-x offset-y blur-radius */
  -webkit-box-shadow: 0 1px 1px rgba(0,0,0,0.3), -1px 1px 1px rgba(0,0,0,0.2);
  -moz-box-shadow: 0 1px 1px rgba(0,0,0,0.3), -1px 1px 1px rgba(0,0,0,0.2);
  box-shadow: 0 1px 1px rgba(0,0,0,0.3), -1px 1px 1px rgba(0,0,0,0.2);
  display: block;
  width: 0;
  z-index: 9999;
}

div.subsection.work{
  margin-bottom: 90px;
  padding-bottom: 20px;
}

div.subsection.work:last-child{
  margin-bottom: 0;
}

div.sub-content{
  /* text-align: center; */
  width: 50%;
  padding: 0px 45px 0px 45px;
  display: flex;
  /* flex-direction: row;
  justify-content: flex; */
  flex-wrap: wrap;
}

div.sub-content h2{
  margin-top: 0;
}


span.date{
  font-size: 16px;
  /* float: right; */
}

img.playStore{
  max-width: 180px;
}

p.app-description{
  line-height: 1.5;
  margin: 20px 0px 20px 0px;
}

/* for the banner (wallpaper/picture) section */
/* .subsection.education .banner{
  background-image: url('../../images/edu3.JPG');
} */

/* .banner{
  box-shadow: 2px 4px 8px #000;
  background-size: 100% 100%;
  background-position: center;
  background-repeat: no-repeat;
    padding: 200px;
  width: 60%;
  height: 100%;
  position: relative;
}

.banner .dark-overlay{
  background-color: rgba(0,0,0,0.3);
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  position: absolute;
} */

.subsection .image-section{
  width: 50%;
  height: 50%;
  box-shadow: 2px 4px 8px #000;
}


div.image-section{
  display:flex;
  flex-direction: row;
  justify-content: space-between;
}

.work-section .subsection:first-child div.image-section{
  justify-content: space-around; 
}


.inner-education{
  float: left;
}

/* End of Eduction Section Style */

/* Work Section Style starts here*/

.work-section{
  box-sizing: border-box;
  /* padding: 60px 0 60px 0; */
  /* margin-top: -30px; */
}

.description-section:first-child{
  padding-top: 50px;
}

.description-section{
  /* margin: 0 auto 25px auto; */
  margin: 0 auto 25px auto;
}

.description-section:last-child{
  margin: 0 auto;
}

.environment-section{
  /* width: 45%; */
  width: 60%;
}

.environment{
  list-style-type: none;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
}

.environment li{
  font-size: 14px;
  /* border: 1px solid #b1bbec; */
  border: 1px solid #535f6b;
  background-color: #535f6b;
  color: #aeb8bf;
  padding: 3px 8px 3px 8px;
  margin-right: 10px;
  margin-bottom: 10px;
  
  /* -moz-border-top-left-radius: 5px;
  -moz-border-top-right-radius: 5px;
  -moz-border-bottom-left-radius: 5px;
  -moz-border-bottom-right-radius: 5px; */
  /* -webkit-border-top-left-radius: 5px;
  -webkit-border-top-right-radius: 5px;
  -webkit-border-bottom-left-radius: 5px;
  -webkit-border-bottom-right-radius: 5px; */
  -moz-border-radius: 5px;
  -webkit-border-radius: 5px;
  border-radius: 5px;
}


.demo-section{
  margin-right: 30px;
}

/* End of Work Section Style */


/* Overlay style */
.overlay{
  display: none;
  position: fixed; /* to cover the whole page with the overlay */
  width: 100%;
  height: 100%;
  background-color: #000;
  z-index: 1001;
  -moz-opacity: 0.5;
  opacity: 0.5;
  filter: alpha(opacity=50);
}

.classContent{
  /* display: block; */
  position: absolute;
  width: 50%;
  height: 50%;
  /* z-index: 8888; */
  overflow: hidden;
  /* top: 200px;
  left: 200px; */
  margin: 150px auto;

}

.flip-container{
  -webkit-perspective: 1000px;
  -moz-perspective: 1000px;
  -ms-perspective: 1000px;
  perspective: 1000px;

  -ms-transform: perspective(1000px);
  -moz-transform: perspective(1000px);
  -webkit-transform:perspective(1000px);
  transform: perspective(1000px);

  -moz-transform-style: preserve-3d;
  -ms-transform-style: preserve-3d;
  -webkit-transform-style: preserve-3d;
  transform-style: preserve-3d;

  height: 100%;
  width: 100%;
  /* width: 600px;
  height: 500px; */
  border: 0px solid #ccc;
  /* position: absolute; */
}

/* .courseList{
  background-color: #100;
} */

div#courseDiv{
  margin: 45px auto 0px auto;
}

.flipper{
  /* add prefixes */
  -webkit-transition: 0.6s;
  -webkit-transform-style: preserve-3d;
  -ms-transition: 0.6s;

  -moz-transition: 0.6s;
  -moz-transform: perspective(1000px);
  -moz-transform-style: preserve-3d;
  -ms-transform-style: preserve-3d;

  transition: 0.6s;
  transform-style: preserve-3d;

  height: 100%;
  /* position: relative; */
}

#pop{
  width: 90%;
  height: 100%;
  display: block;
  margin: 0 auto;
  background-color: rgba(83, 95, 107, 0.7);
  color: #aeb8bf;
  /* background-color: rgba(201,201,201,0.9); */
  box-shadow: rgb(201,201,201) 0px 0px 25px 5px;
  -moz-border-radius: 25px;
  -webkit-border-radius: 25px;
  border-radius: 25px;
}

@-webkit-keyframes flip{
  0% {

   -webkit-transform: perspective(400px) translateZ(0) rotateY(-180deg) scale(1);
   -ms-transform: perspective(400px) translateZ(0) rotateY(-180deg) scale(1);
   transform: perspective(400px) translateZ(0) rotateY(-180deg) scale(1);
   -webkit-animation-timing-function: ease-out;
   animation-timing-function: ease-out;

 }


 50% {

   -webkit-transform: perspective(400px) translateZ(0) rotateY(-90deg) scale(.75);
   -ms-transform: perspective(400px) translateZ(0) rotateY(-90deg) scale(.75);
   transform: perspective(400px) translateZ(0) rotateY(-90deg) scale(.75);
   -webkit-animation-timing-function: ease-in;
   animation-timing-function: ease-in;

 }

 100% {

   -webkit-transform: perspective(400px) translateZ(0) rotateY(0deg) scale(.99);
   -ms-transform: perspective(400px) translateZ(0) rotateY(0deg) scale(.99);
   transform: perspective(400px) translateZ(0) rotateY(0deg) scale(.99);
   -webkit-animation-timing-function: ease-in;
   animation-timing-function: ease-in;

 }
}

@-moz-keyframes flip{
  0% {

   -webkit-transform: perspective(400px) translateZ(0) rotateY(-180deg) scale(1);
   -ms-transform: perspective(400px) translateZ(0) rotateY(-180deg) scale(1);
   transform: perspective(400px) translateZ(0) rotateY(-180deg) scale(1);
   -webkit-animation-timing-function: ease-out;
   animation-timing-function: ease-out;

 }


 50% {

   -webkit-transform: perspective(400px) translateZ(0) rotateY(-90deg) scale(.75);
   -ms-transform: perspective(400px) translateZ(0) rotateY(-90deg) scale(.75);
   transform: perspective(400px) translateZ(0) rotateY(-90deg) scale(.75);
   -webkit-animation-timing-function: ease-in;
   animation-timing-function: ease-in;

 }

 100% {

   -webkit-transform: perspective(400px) translateZ(0) rotateY(0deg) scale(.99);
   -ms-transform: perspective(400px) translateZ(0) rotateY(0deg) scale(.99);
   transform: perspective(400px) translateZ(0) rotateY(0deg) scale(.99);
   -webkit-animation-timing-function: ease-in;
   animation-timing-function: ease-in;

 }
}

@-ms-keyframes flip{
  0% {

   -webkit-transform: perspective(400px) translateZ(0) rotateY(-180deg) scale(1);
   -ms-transform: perspective(400px) translateZ(0) rotateY(-180deg) scale(1);
   transform: perspective(400px) translateZ(0) rotateY(-180deg) scale(1);
   -webkit-animation-timing-function: ease-out;
   animation-timing-function: ease-out;

 }


 50% {

   -webkit-transform: perspective(400px) translateZ(0) rotateY(-90deg) scale(.75);
   -ms-transform: perspective(400px) translateZ(0) rotateY(-90deg) scale(.75);
   transform: perspective(400px) translateZ(0) rotateY(-90deg) scale(.75);
   -webkit-animation-timing-function: ease-in;
   animation-timing-function: ease-in;

 }

 100% {

   -webkit-transform: perspective(400px) translateZ(0) rotateY(0deg) scale(.99);
   -ms-transform: perspective(400px) translateZ(0) rotateY(0deg) scale(.99);
   transform: perspective(400px) translateZ(0) rotateY(0deg) scale(.99);
   -webkit-animation-timing-function: ease-in;
   animation-timing-function: ease-in;

 }
}

@keyframes flip{
  0% {

   -webkit-transform: perspective(400px) translateZ(0) rotateY(-180deg) scale(1);
   -ms-transform: perspective(400px) translateZ(0) rotateY(-180deg) scale(1);
   transform: perspective(400px) translateZ(0) rotateY(-180deg) scale(1);
   -webkit-animation-timing-function: ease-out;
   animation-timing-function: ease-out;

 }


 50% {

   -webkit-transform: perspective(400px) translateZ(0) rotateY(-90deg) scale(.75);
   -ms-transform: perspective(400px) translateZ(0) rotateY(-90deg) scale(.75);
   transform: perspective(400px) translateZ(0) rotateY(-90deg) scale(.75);
   -webkit-animation-timing-function: ease-in;
   animation-timing-function: ease-in;

 }

 100% {

   -webkit-transform: perspective(400px) translateZ(0) rotateY(0deg) scale(.99);
   -ms-transform: perspective(400px) translateZ(0) rotateY(0deg) scale(.99);
   transform: perspective(400px) translateZ(0) rotateY(0deg) scale(.99);
   -webkit-animation-timing-function: ease-in;
   animation-timing-function: ease-in;

 }
}


.back{
  /* add prefixes */
  -webkit-backface-visibility: hidden;
  -moz-backface-visibility: hidden;
  -ms-backface-visibility: hidden;
  backface-visibility: hidden;

  /* width: 100%;
  height: 100%; */
  max-width: 600px;
  max-height: 500px;
  /* max-width: 500px; */
  /* background-color: #fff; */


  /* margin-left: auto;
  margin-right: auto; */
  margin: 0 auto;

  /* animation: flip 8.5s 1; */
  animation: flip 1s 1;
  animation-fill-mode: forwards;
  display: none;
}

.closeX{
  display: none;
  width: 100%;
  height: 30px;
  position: relative;
  z-index: 99999;
  clear: both;
  cursor: default;
  /* top: 0;
  right: 0; */
}

.closeX a{
  /* position: absolute; */
  float: right;
  text-decoration: none;
  color: #c9c9c9;
}

#courseList{
  padding-left: 25px;
}

#courseList li{
  list-style: none;
  margin: 10px 0;
}

#pop h2{
  text-align: center;
}

/* End of Overlay Style */

/* Start ofSimple Arrow Animation of it bouncing/pointing to button */
i.fa-angle-double-left{
  font-size: 1.4em;
  margin-left: 15px;
  animation: bounce 2s infinite;
}

@keyframes bounce{
  0%, 20%, 50%, 80%, 100%{
    transform: translateX(0);
  }
  40%{
    transform: translateX(-20px);
  }
  80%{
    transform: translateX(-10px);
  }
}

@-webkit-keyframes bounce{
  0%, 20%, 50%, 80%, 100%{
    transform: translateX(0);
  }
  40%{
    transform: translateX(-20px);
  }
  80%{
    transform: translateX(-10px);
  }
}

@-moz-keyframes bounce{
  0%, 20%, 50%, 80%, 100%{
    transform: translateX(0);
  }
  40%{
    transform: translateX(-20px);
  }
  80%{
    transform: translateX(-10px);
  }
}

@-ms-keyframes bounce{
  0%, 20%, 50%, 80%, 100%{
    transform: translateX(0);
  }
  40%{
    transform: translateX(-20px);
  }
  80%{
    transform: translateX(-10px);
  }
}

.demo-button{
  text-decoration: none;
  background-color: #535f6b;
  color: #aeb8bf;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  border-radius: 5px;
  padding: 6px 10px 6px 10px;
  font-size: 18px;
}

/* End of Simple Arrow Animation */


/* Contact Section Style starts here */

.contact-section .line{
  margin: 0 auto 30px auto;
}

.contact-section p{
  color: #535f6b;
  text-align: center;
}
/* End of Contact Section Style */

/* Start of Footer Style */
div.footer{
  background-color: #e5e5e5;
  color: #000;
  font-family: 'Karla', sans-serif;
  letter-spacing: 0.2em;
  /* padding: 8px; */
  padding: 20px 0px 20px 0px;
  font-size: 12px;
}

div.footer div.inner-footer{
  max-width: 1300px;
  margin: 0 auto;
}
/* End of Footer Style */

/* Start of Media Queries */

@media screen and (max-width: 415px){
  .terminal-container{
    font-size: 14px;
    width: 100%;
  }

}

@media screen and (max-width: 768px) and (min-width: 0){
  .subsection{
    flex-direction: column;
    padding: 0 15px 0 15px;
  }

  .subsection.education .banner{
    width: 100%;
  }

  div.sub-content{
    width: 100%;
    padding: 0 5px 0 5px;
  }

  div.sub-content h2{
    font-size: 24px;
  }

  div.subsection .image-section{
    width: 100%;
    margin-bottom: 20px;
  }

  div.environment-section{
    flex-direction: row;
    justify-content: flex-start;
    width: 100%;
  }

  p.app-description{
    line-height: 1.7;
    margin-bottom: 20px;
    letter-spacing: 0.12em;
  }

  div.subsection.education{
    display: flex;
    flex-direction: column;
  }

  div.footer div.inner-footer{
    text-align: center;
  }
}

/* End of Media Queries */
