#logo > img {
  padding: 5px;
  height: 60px; }

#logo > img:hover {
  border: 1px dashed #346adf; }

#navbarCollapse {
  max-width: 1100px;
  margin: auto; }

.navbar {
  border-bottom: 2px solid #346adf;
  display: block;
  min-height: 80px;
  /* force nav to stay horizontal */ }
  .navbar .navbar-nav {
    flex-direction: row;
    /* align items vertically*/ }
    .navbar .navbar-nav .nav-item {
      display: flex;
      justify-content: center;
      align-items: center;
      margin: 0;
      padding: 0px 5px;
      width: 80px; }
    .navbar .navbar-nav .nav-item-active,
    .navbar .navbar-nav .nav-item:hover {
      font-weight: bold;
      color: #346adf !important; }

@media (max-width: 700px) {
  .navbar-nav {
    justify-content: space-between;
    width: 90%; }
    .navbar-nav .nav-item {
      justify-content: left;
      width: 60px;
      margin-left: 15px; } }
@media (max-width: 500px) {
  #logo img {
    height: 50px; } }
@media (max-width: 400px) {
  #logo img {
    margin: 0 0 0 10px; }

  .navbar {
    padding: 0; }
    .navbar .navbar-nav {
      width: 100%;
      margin-left: -7px !important; }
      .navbar .navbar-nav .nav-item {
        margin-left: -2px;
        font-size: 14px; } }
.box {
  position: relative;
  display: inline-block;
  background-color: #fff;
  border-radius: 5px;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
  -webkit-transition: all 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
  transition: all 0.6s cubic-bezier(0.165, 0.84, 0.44, 1); }

.box::after {
  content: "";
  border-radius: 5px;
  position: absolute;
  z-index: -1;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  opacity: 0;
  -webkit-transition: all 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
  transition: all 0.6s cubic-bezier(0.165, 0.84, 0.44, 1); }

.box:hover {
  -webkit-transform: scale(1.02, 1.02);
  transform: scale(1.02, 1.02); }

.box:hover::after {
  opacity: 1; }

html {
  overflow-y: scroll; }

body {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  scrollbar-color: #346adf #e2eafb;
  background-image: url(https://chriscorchado.com/images/cclogobg.jpg);
  background-attachment: fixed; }

.preloadAnimation {
  text-align: center;
  font-size: 34px;
  color: #e2eafb;
  text-shadow: 1px 1px 2px #000000;
  margin-top: 100px; }

.preloadAnimation > div {
  width: 25px;
  height: 25px;
  background-color: #e2eafb;
  border-radius: 100%;
  display: inline-block;
  -webkit-animation: sk-bouncedelay 1.4s infinite ease-in-out both;
  animation: sk-bouncedelay 1.4s infinite ease-in-out both;
  border: 1px solid #000000; }

.preloadAnimation .bounce1 {
  -webkit-animation-delay: -0.32s;
  animation-delay: -0.32s; }

.preloadAnimation .bounce2 {
  -webkit-animation-delay: -0.16s;
  animation-delay: -0.16s; }

@-webkit-keyframes sk-bouncedelay {
  0%,
  80%,
  100% {
    -webkit-transform: scale(0); }
  40% {
    -webkit-transform: scale(1); } }
@keyframes sk-bouncedelay {
  0%,
  80%,
  100% {
    -webkit-transform: scale(0);
    transform: scale(0); }
  40% {
    -webkit-transform: scale(1);
    transform: scale(1); } }
.screen-reader {
  position: absolute;
  left: -10000px;
  top: auto;
  width: 1px;
  height: 1px;
  overflow: hidden; }

h1 {
  color: #346adf;
  font-size: 30px; }

.highlightSearchText {
  background-color: yellow; }

/* space for top navigation */
.container {
  margin: 0 auto;
  text-align: center;
  padding: 20px 5px 20px 5px;
  background-color: #fff;
  opacity: 0;
  border-radius: 0 0 15px 15px; }

#noRecords {
  font-size: 36px;
  max-width: 700px;
  border-radius: 5px;
  color: #346adf;
  background-color: #f8f9fa;
  padding: 15px;
  text-align: center;
  margin: auto;
  margin-top: 150px !important; }

a:link {
  text-decoration: none; }

.shadow {
  -webkit-box-shadow: 3px 3px 5px 3px #ccc;
  /* Safari 3-4, iOS 4.0.2 - 4.2, Android 2.3+ */
  -moz-box-shadow: 3px 3px 5px 3px #ccc;
  /* Firefox 3.5 - 3.6 */
  box-shadow: 3px 3px 5px 3px #ccc;
  /* Opera 10.5, IE 9, Firefox 4+, Chrome 6+, iOS 5 */ }

/* override the featherlight lightbox arrows */
.featherlight-next span,
.featherlight-previous span {
  font-size: 24px !important;
  width: 35px !important; }

.featherlight .featherlight-close-icon {
  background-color: #0078d7 !important;
  padding: 0 10px 0 3px !important;
  border: 2px solid black !important;
  color: white !important;
  font-weight: bold !important; }

#footer {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  position: fixed;
  width: 100%;
  bottom: 0;
  padding: 3px;
  background-color: #f8f9fa;
  border-top: 2px solid #346adf; }

.site-version {
  text-align: center;
  padding: 10px 0; }
  .site-version div {
    display: inline-block;
    margin: 0 5px; }
    .site-version div img {
      width: 45px; }

@media (max-width: 700px) {
  h1 {
    font-size: 24px; } }
@media (max-width: 600px) {
  #footer {
    display: none; } }

/*# sourceMappingURL=chriscorchado.css.map */

@charset "UTF-8";
#search-container {
  display: none; }

.container {
  padding-bottom: 50px !important; }
  .container h1 {
    margin-top: 100px; }
  .container .resume {
    font-family: Calibri, "Trebuchet MS", sans-serif;
    font-size: 16px;
    max-width: 800px;
    margin: auto;
    text-align: left;
    /* FULL STACK DEVELOPER */
    /* WEBSITE DEVELOPMENT • INFORMATION TECHNOLOGY • PROCESS IMPROVEMENT • PROBLEM SOLVING */
    /* Sections: ACCOMPLISHMENTS | SKILLS AND EXPERTISE | PROFESSIONAL EXPERIENCE | EDUCATION */
    /* Company, City, State - Years */
    /* Type of Company */
    /* Education certificate, diploma */
    /* Job Title */
    /* paragraph after job title */ }
    .container .resume h2 {
      color: #3a4261;
      margin-bottom: 0;
      font-size: 26px;
      text-align: center;
      font-weight: bold; }
    .container .resume #tech_pillars {
      width: 100%;
      text-align: center;
      margin: 0px 0 15px 0;
      border-top: 1px solid black;
      font-weight: bold;
      padding-top: 5px; }
    .container .resume h3 {
      text-align: center;
      color: #2a61a8;
      border-top: 1px solid black;
      border-bottom: 1px solid black;
      font-size: 20px;
      font-weight: bold;
      margin-bottom: 15px; }
    .container .resume h4 {
      margin: 0;
      font-size: 18px;
      font-weight: bold; }
      .container .resume h4 .years {
        float: right; }
    .container .resume h5 {
      margin: 5px 0 10px 0;
      font-size: 14px;
      font-style: italic;
      font-weight: bold; }
    .container .resume h4 + div {
      margin-bottom: 10px; }
    .container .resume h6 {
      margin: 0;
      font-size: 14px;
      font-weight: bold; }
    .container .resume p {
      margin: 0;
      padding: 0; }
    .container .resume h6 + p {
      margin-bottom: 10px; }
    .container .resume p:first-of-type {
      margin-bottom: 10px; }
    .container .resume #skills_experise_ul_wrapper {
      margin-bottom: 15px;
      text-align: center; }
      .container .resume #skills_experise_ul_wrapper #two_cols {
        display: none; }
      .container .resume #skills_experise_ul_wrapper ul {
        display: inline-block;
        min-width: 210px;
        padding: 0;
        margin: 0 0 0 50px; }
        .container .resume #skills_experise_ul_wrapper ul li {
          font-size: 14px;
          line-height: 20px;
          text-align: left; }
    .container .resume .professional_experience_header {
      background-color: #d3d3d3;
      padding: 5px;
      font-weight: bold; }
      .container .resume .professional_experience_header div {
        display: inline-block; }

@media (max-width: 990px) {
  .container .resume {
    padding: 0 20px; }
    .container .resume h2 {
      font-size: 22px; }
    .container .resume h3 {
      font-size: 18px; }
    .container .resume h4 {
      font-size: 16px; }
    .container .resume #tech_pillars {
      font-size: 14px; }
    .container .resume #skills_experise_ul_wrapper {
      text-align: center;
      /* Toggles skills and experience to make the list responsive */ }
      .container .resume #skills_experise_ul_wrapper ul {
        vertical-align: top; }
      .container .resume #skills_experise_ul_wrapper #two_cols {
        display: block;
        margin-left: 80px; }
      .container .resume #skills_experise_ul_wrapper #three_cols {
        display: none; } }
@media (max-width: 700px) {
  .container h1 {
    margin-top: 130px; }
  .container .resume #tech_pillars {
    font-size: 12px; }
  .container .resume h4 {
    font-size: 14px; }
  .container .resume h4 + strong {
    font-size: 14px; }
  .container .resume li:not(#three_cols) {
    margin-left: -20px; }
  .container .resume #skills_experise_ul_wrapper ul {
    margin-left: 40px; } }
@media (max-width: 520px) {
  .container .resume {
    padding: 0 0;
    /* Education certificate, diploma */ }
    .container .resume h4 {
      text-align: center;
      font-size: 13px; }
      .container .resume h4 .years {
        float: none;
        margin-left: 20px; }
    .container .resume h4 + div {
      font-size: 13px;
      text-align: center;
      margin-bottom: 15px;
      padding-bottom: 10px;
      border-bottom: 1px dashed grey; } }
@media (max-width: 400px) {
  .container {
    padding-bottom: 20px !important; }
    .container .resume {
      padding: 0 10px; }
    .container h1 {
      margin-top: 105px; }

  #profiles .icon {
    width: 35px; }
    #profiles .icon img {
      height: 15px; } }
@media (max-width: 350px) {
  .container .resume #skills_experise_ul_wrapper #two_cols {
    margin-left: 60px; } }

/*# sourceMappingURL=resume.css.map */

#profiles {
  float: right;
  max-width: 380px;
  font-size: 12px;
  text-align: center;
  margin-top: -60px; }
  #profiles .icon {
    display: inline-block;
    width: 50px;
    padding: 0 5px;
    margin: 0 5px; }
    #profiles .icon img {
      height: 30px; }

@media (max-width: 700px) {
  #profiles {
    margin: 0;
    float: none;
    max-width: 100%;
    text-align: center;
    font-size: 11px; }
    #profiles .icon img {
      height: 18px; } }
@media (max-width: 400px) {
  #profiles {
    margin: -6px 0 5px 0 !important; }
    #profiles .icon {
      width: 45px; }
      #profiles .icon img {
        height: 15px; } }

/*# sourceMappingURL=profile.css.map */


/*# sourceMappingURL=resume.e958885653e75ffe4002.css.map*/