/*
* Resume template
* Created by : Ahmed Essa
* website : www.ahmedessa.net
*/


/* Table of Content
==================================================
	- Google fonts & font family -
	- typography -
	- General -
    - Preloader -
	- Header -
    - home section -
    - About section -
    - experience section -
    - projects section -
    - Contact section -
    - Responsive media queries -
*/


/* Google fonts & font family
==================================================*/

@import 'https://fonts.googleapis.com/css?family=Lato:100,100i,300,300i,400,400i,700,700i,900,900i|Open+Sans:300,300i,400,400i,600,600i,700,700i,800,800i|Playfair+Display:400,400i,700,700i,900,900i';

/*
font-family: 'Playfair Display', serif;
font-family: 'Lato', sans-serif;
font-family: 'Open Sans', sans-serif;
*/


/* typography
==================================================*/

h1 {
  font-family: 'Playfair Display', serif;
  font-size: 80px;
  line-height: 100px;
}

.myName {
  font-family: 'Lato', sans-serif;
  text-transform: capitalize;
  letter-spacing: 2px;
  position: relative;
  /*color: #425BB5;*/
  color: rgba(255, 150, 0, 1);
  margin-left: 40px;
  font-weight: 700;
}

.myName:before {
  position: absolute;
  width: 30px;
  left: -40px;
  content: "";
  display: block;
  height: 2px;
  /*background: #425BB5;*/
  background: rgba(255, 150, 0, 1);
  top: 18px;
}



h4 {
  font-family: 'Lato', sans-serif;
  text-transform: capitalize;
  letter-spacing: 2px;
  position: relative;
  /*color: #425BB5;*/
  color: rgba(255, 150, 0, 1);
  margin-left: 30px;
  font-weight: 700;
}

h4:before {
  position: absolute;
  width: 20px;
  left: -30px;
  content: "";
  display: block;
  height: 1.5px;
  /*background: #425BB5;*/
  background: rgba(255, 150, 0, 1);
  top: 9px;
}


/* General
==================================================*/

body {
  font-family: 'Open Sans', sans-serif;
  font-size: 14px;
  line-height: 24px;
}

.size-50 {
  font-size: 50px;
  line-height: 50px
}

.h-50 {
  height: 50px;
}


/* preloader
==================================================*/

#preloader {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #fff;
  z-index: 10000
}

#status,
.preloader {
  top: 50%;
  left: 50%;
  position: absolute
}

#status {
  width: 100px;
  height: 100px;
  background-repeat: no-repeat;
  background-position: center;
  margin: -50px 0 0 -50px
}

.preloader {
  height: 40px;
  width: 40px;
  margin-top: -20px;
  margin-left: -20px
}

.preloader:before {
  content: "";
  display: block;
  position: absolute;
  left: -1px;
  top: -1px;
  height: 100%;
  width: 100%;
  -webkit-animation: rotation 1s linear infinite;
  animation: rotation 1s linear infinite;
  /*border: 2px solid #425BB5;*/
  border: 2px solid rgba(255, 150, 0, 1);
  border-top: 2px solid transparent;
  border-radius: 100%
}

.preloader>.icon {
  position: absolute;
  top: 50%;
  left: 50%;
  height: 25px;
  width: 10.6px;
  margin-top: -12.5px;
  margin-left: -5.3px;
  -webkit-animation: wink 1s ease-in-out infinite alternate;
  animation: wink 1s ease-in-out infinite alternate
}

@media only screen and (min-width:768px) {
  .preloader {
    height: 60px;
    width: 60px;
    margin-top: -30px;
    margin-left: -30px
  }

  .preloader:before {
    left: -2px;
    top: -2px;
    border-width: 2px
  }

  .preloader>.icon {
    height: 37.5px;
    width: 15.9px;
    margin-top: -18.75px;
    margin-left: -7.95px
  }
}

@media only screen and (min-width:1200px) {
  .preloader {
    height: 60px;
    width: 60px;
    margin-top: -30px;
    margin-left: -30px
  }

  .preloader>.icon {
    height: 50px;
    width: 21.2px;
    margin-top: -25px;
    margin-left: -10.6px
  }
}

@-webkit-keyframes rotation {
  from {
    -webkit-transform: rotate(0);
    transform: rotate(0)
  }

  to {
    -webkit-transform: rotate(359deg);
    transform: rotate(359deg)
  }
}

@keyframes rotation {
  from {
    -webkit-transform: rotate(0);
    transform: rotate(0)
  }

  to {
    -webkit-transform: rotate(359deg);
    transform: rotate(359deg)
  }
}

@-webkit-keyframes wink {
  from {
    opacity: 0
  }

  to {
    opacity: 1
  }
}

@keyframes wink {
  from {
    opacity: 0
  }

  to {
    opacity: 1
  }
}


/* Header
==================================================*/

header {
  text-align: center;
  -webkit-transition: all .5s;
  transition: all .5s;
  /*height: 65px;*/
  /*height: 94px;*/
}

nav ul {
  display: inline-block;
  padding-left: 0;
  list-style: none;
  padding: 20px;
  margin-bottom: 0;
  -webkit-transition: all .5s;
  transition: all .5s;
}

nav li {
  display: inline-block;
  margin: 10px 20px;
}

nav li a {
  text-transform: uppercase;
  /*letter-spacing: 2px;*/
  letter-spacing: 3px;
  color: #444;
  /*font-size: 11px;*/
  font-size: 12.5px;
  font-weight: bold;
}

.bg-nav {
  background: #fff;
  border-bottom: 1px solid #f3f3f3
}

.bg-nav ul {
  padding: 10px;
}

a:focus {
  color: #444;
  text-decoration: none;
}

a:hover {
  /*color: #425BB5;*/
  color: rgba(255, 150, 0, 1);
  text-decoration: none;
}

a.active {
  /*color: #425BB5;*/
  color: rgba(255, 150, 0, 1);
}


/* home section
==================================================*/

#home {
  background: url(../img/index_bkgrd_full.jpg);
  background-size: cover;
  height: 100vh;
}

.table-cell {
  display: table-cell;
  vertical-align: middle;
}

.disply-table {
  display: table;
  height: 100vh;
}

/* blog section
==================================================*/
#blog {
  padding: 100px 0;
  background: #f3f3f3;
}

/* about section
==================================================*/

#about {
  padding: 100px 0;
  background: rgba(215, 215, 215, 1);
  /*background: rgba(185, 185, 185, 1); */
}

.about-img-div img {
  margin: 0 auto;
}

.about-border {
  position: absolute;
  /*border: 10px solid #425BB5;*/
  border: 10px solid rgba(255, 150, 0, 1);
  width: 400px;
  height: 400px;
  top: 40px;
  left: 50px;
  z-index: 1
}

.about-img-div .about-grayscale {
  -webkit-filter: grayscale(100%);
  filter: grayscale(100%);
}

/* skills section
==================================================*/

#skills {
  padding: 100px 0;
  /*background: #f3f3f3;*/
  background-color: rgba(215, 215, 215, 1);
}

.skills-progs {
  padding-left: 0;
  list-style: none;
  margin-top: 20px;
  text-align: center;
  display: inline-block;
}

.skills-progs li {
  /*float: left;*/
  /*margin-right: 30px;*/
}

.skills-row {
  margin: 0px;
  padding: 0px;
  width: 100%;
  /*text-align: left; */
  display: inline-block;
}

.skills-block {
  width: 23.5%;
  margin: 5px 5px 30px 5px;
  display: inline-block;
  vertical-align: top;
  text-align: center;
  border: 2px solid rgba(75, 75, 75, 1);
}

.skills-block hr {
  margin: 0px;
  padding: 0px;
  border: 1px solid rgba(75, 75, 75, 1);
}

.skills-sq {
  display: inline-block;
  vertical-align: middle;
  height: 100%;
  margin: 40px 0px;
}

.skills-acc {
  /*margin: 10px;*/
  /*padding: 30px 30px 55px 30px;*/
  display: inline-block;
  /*vertical-align: middle;*/
  width: 100%;
  /*height: 20%;*/
  /*border: 2px solid rgba(75, 75, 75, 1);*/
}

.skills-sq a h2 strong sup {
  font-size: 45px;
  color: rgba(75, 75, 75, 1);
  margin-top: 20px;
  top: -.225em;
}

.skills-sq a h2 {
  /*color: #333;*/
  color: rgba(75, 75, 75, 1);
  font-size: 100px;
  margin: 0px;
  padding: 0px;
  /*margin-right: 15px;*/
  transition: all .3s;
  -webkit-transition: all .3s;
}

/*.skills-h4 {
    text-align: left;
    color: rgba(255, 150, 0, 1);
}*/

.skills-h5 {
  font-family: 'Lato', sans-serif;
  text-transform: capitalize;
  letter-spacing: 2px;
  position: relative;
  /*color: #425BB5;*/
  color: rgba(255, 150, 0, 1);
  /*margin-left: 30px;*/
  font-weight: 700;
  font-size: 13pt;
}

/*.skills-h5:before {*/
/*position: absolute;*/
/*width: 20px;*/
/*left: -30px;*/
/*content: "-";*/
/*display: block;*/
/*height: 1.5px;*/
/*background: #425BB5;*/
/*background: rgba(255, 150, 0, 1);*/
/*top: 9px;*/
/*}*/

.skills-unorderedList {
  list-style-type: none;
  text-align: left;
  margin-left: 10px;
  padding: 0px;
}

.skills-unorderedList li:before {
  position: absolute;
  left: 10px;
  display: block;
  content: "_";
  /*top: 5px;*/
  /*margin-bottom: 15px;*/
  line-height: 12.5px;
}

.skills-h5-sub {
  color: #3C3F45;
  margin-left: -10px;
  font-weight: bold;
}

.skills-listItem {
  /*text-align: left;*/
  /*color: red;*/
  margin: 0;
  padding: 0;
  color: rgba(255, 255, 255, 1);
  font-size: 13px;
}


.skills-sq a .skillsHalf {
  /*color: #333;*/
  color: rgba(75, 75, 75, 1);
  font-size: 50px;
  margin: 0px;
  padding: 0px;
  /*margin-right: 15px;*/
  transition: all .3s;
  -webkit-transition: all .3s;
}

.skills-sq a:hover {
  /*color: #425BB5;*/
  color: rgba(255, 150, 0, 1);
}

/* experience section
==================================================*/

#experience {
  padding: 100px 0;
  /*background: #f3f3f3;*/
  background: white;
}

.experience-row {
  padding: 20px 0;
  border-bottom: 1px solid #ddd;
}

.experience-row h3 {
  font-family: 'Lato', sans-serif;
  text-transform: capitalize;
  letter-spacing: 2px;
  /*color: #425BB5;*/
  color: rgba(255, 150, 0, 1);
  font-size: 16px;
  font-weight: bold
}

.experience-row p {
  color: #888;
  margin-top: 20px;
  font-size: 15px;
}

.experience-row .date {
  color: #000;
  /*color: red;*/
  font-size: 17px;
}

.timeline {
  padding-left: 0;
  list-style: none;
  position: relative;
}

.timeline:before {
  /*background-color: black;*/
  background-color: rgba(255, 150, 0, 1);
  content: '';
  margin-left: -1px;
  position: absolute;
  top: 0;
  left: 2em;
  width: 2px;
  height: 100%;
}

.timeline .experienceInset {
  padding: 0px 0px 0px 75px;
}

.timeline-event {
  position: relative;
}

.timeline-event:hover .timeline-event-icon {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  /*background-color: #425BB5;*/
  background-color: rgba(255, 150, 0, 1);
}

.timeline-event:hover .timeline-event-thumbnail {
  /*box-shadow: inset 40em 0 0 0 #425BB5;*/
  box-shadow: inset 40em 0 0 0 rgba(255, 150, 0, 1);
}

.timeline-event-copy {
  padding-top: 1em;
  padding-left: 2em;
  /*padding: 1.75em 0em 0em 2em;*/
  position: relative;
  top: -1.225em;
  left: 4em;
  width: 100%;
}

.timeline-event-copy h3 {
  font-size: 1.75em;
}

.timeline-event-copy h4 {
  font-size: 1.2em;
  margin-bottom: 1.2em;
}

.timeline-event-copy strong {
  font-weight: 700;
}

.timeline-event-copy p:not(.timeline-event-thumbnail) {
  padding-bottom: 1.2em;
}

.timeline-event-icon {
  -webkit-transition: -webkit-transform 0.2s ease-in;
  transition: -webkit-transform 0.2s ease-in;
  transition: transform 0.2s ease-in;
  transition: transform 0.2s ease-in, -webkit-transform 0.2s ease-in;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  /*background-color: #425BB5;*/
  background-color: rgba(255, 150, 0, 1);
  /*outline: 10px solid #f3f3f3;*/
  outline: 10px solid white;
  display: block;
  margin: 0.5em 0.5em 0.5em -0.5em;
  position: absolute;
  top: 0;
  left: 2em;
  width: 1em;
  height: 1em;
}

.timeline-event-thumbnail {
  -moz-transition: box-shadow 0.5s ease-in 0.1s;
  -o-transition: box-shadow 0.5s ease-in 0.1s;
  -webkit-transition: box-shadow 0.5s ease-in;
  -webkit-transition-delay: 0.1s;
  -webkit-transition: box-shadow 0.5s ease-in 0.1s;
  transition: box-shadow 0.5s ease-in 0.1s;
  color: white;
  font-size: 12px;
  font-weight: bold;
  /*background-color: black;*/
  /*  this is the background of experience   */
  background-color: rgba(100, 100, 100, 1);
  /*box-shadow: inset 0 0 0 0em #425BB5;*/
  box-shadow: inset 0 0 0 0em rgba(255, 150, 0, 1);
  display: inline-block;
  /*margin-bottom: 1.2em;*/
  padding: 0.25em 1em 0.2em 1em;
}


/* projects section
==================================================*/

#projects {
  padding: 100px 0;
  /*background-color: rgba(215, 215, 215, 1);*/
  background-color: #f3f3f3;
}

.portfolio .categories-grid span,
.blog .categories-grid span {
  font-size: 30px;
  margin-bottom: 30px;
  display: inline-block;
}

.portfolio .categories-grid .categories ul li,
.blog .categories-grid .categories ul li {
  list-style: none;
  margin: 20px 0;
}

.portfolio .categories-grid .categories ul li a,
.blog .categories-grid .categories ul li a {
  display: inline-block;
  color: #60606e;
  padding: 0 10px;
  margin: 0 14px;
  -webkit-transition: all .2s ease-in-out .2s;
  transition: all .2s ease-in-out .2s;
}

.portfolio .categories-grid .categories ul li a:hover,
.portfolio .categories-grid .categories ul li a:focus,
.blog .categories-grid .categories ul li a:hover,
.blog .categories-grid .categories ul li a:focus {
  text-decoration: none;
}

.portfolio .categories-grid .categories ul li a.active,
.blog .categories-grid .categories ul li a.active {
  padding: 0px 20px;
  color: white;
}

.blog .categories-grid .categories ul li a.active {
  background-color: rgba(100, 100, 100, 1);
  color: white;
}

/*original*/
.portfolio .categories-grid .categories ul li a.active {
  /*background-color: #425BB5;*/
  background-color: rgba(255, 150, 0, 1);
  /*padding: 0px 20px;*/
  color: white;
  /*text-decoration: none;*/
}

.portfolio_filter,
.blog_filter {
  padding-left: 0;
}

.portfolio_item,
.skill_item,
.blog_item {
  position: relative;
  overflow: hidden;
  display: block;
  margin-bottom: 30px;
}

.tech-skills {
  margin: 0px;
  padding: 0px;
  width: 100%;
  /*text-align: left; */
  display: inline-block;
}

.skill_item {
  border: 2px solid rgba(75, 75, 75, 1);
}

.portfolio_item .portfolio_item_hover,
.blog_item .blog_item_hover {
  position: absolute;
  top: 0px;
  left: 0px;
  height: 100%;
  width: 100%;
  /*background-color: #425BB5;*/
  /*background-color: rgba(255, 150, 0, 1);*/
  -webkit-transform: translateY(100%);
  transform: translateY(100%);
  opacity: 0;
  -webkit-transition: all .2s ease-in-out;
  transition: all .2s ease-in-out;
  color: #333;
}

.portfolio_item .portfolio_item_hover {
  background-color: rgba(255, 150, 0, 1);
}

.blog_item .blog_item_hover {
  background-color: rgba(100, 100, 100, 1);
}

.portfolio_item .portfolio_item_hover .item_info,
.blog_item .blog_item_hover .item_info {
  text-align: center;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  padding: 10px;
  width: 100%;
  font-weight: bold;
}

.portfolio_item .portfolio_item_hover .item_info span,
.blog_item .blog_item_hover .item_info span {
  display: block;
  color: #fff;
  /*font-size: 18px;*/
  font-size: 22px;
  -webkit-transform: translateY(-100px);
  transform: translateY(-100px);
  -webkit-transition: all .3s ease-in-out .3s;
  transition: all .3s ease-in-out .3s;
  opacity: 0;
}

.portfolio_item .portfolio_item_hover .item_info em,
.blog_item .blog_item_hover .item_info em {
  font-style: normal;
  display: inline-block;
  /*background-color: #425BB5;*/
  /*background-color: rgba(255, 150, 0, 1);*/
  padding: 5px 20px;
  /*color: #fff;*/
  margin-top: 10px;
  -webkit-transform: translateY(100px);
  transform: translateY(100px);
  -webkit-transition: all .3s ease-in-out .3s;
  transition: all .3s ease-in-out .3s;
  opacity: 0;
  font-size: 12px;
  /*font-size: 10px;*/
  letter-spacing: 2px;
}

.portfolio_item .portfolio_item_hover .item_info em {
  background-color: rgba(255, 150, 0, 1);
  color: #fff;
}

.blog_item .blog_item_hover .item_info em {
  background-color: rgba(100, 100, 100, 1);
  color: #fff;
}

.portfolio_item:hover .portfolio_item_hover,
.blog_item:hover .blog_item_hover {
  opacity: 1;
  -webkit-transform: translateX(0);
  transform: translateX(0);
}

.portfolio_item:hover .item_info em,
.portfolio_item:hover .item_info span,
.blog_item:hover .item_info em,
.blog_item:hover .item_info span {
  opacity: 1;
  -webkit-transform: translateX(0);
  transform: translateX(0);
}

.portfolio .categories-grid .categories ul li,
.blog .categories-grid .categories ul li {
  float: left;
}

.portfolio .categories-grid .categories ul li a,
.blog .categories-grid .categories ul li a {
  padding: 0 10px;
  -webkit-transition: all .2s ease-in-out .2s;
  transition: all .2s ease-in-out .2s;
}

.portfolio_filter,
.blog_filter {
  padding-left: 0;
  display: inline-block;
  margin: 0 auto;
  text-align: center;
}

.portfolio_item img,
.blog_item img {
  /*-webkit-filter: grayscale(100%);*/
  /*filter: grayscale(100%);*/
}

.skill_item img {
  /*-webkit-filter: grayscale(100%);*/
  /*filter: grayscale(100%);*/
  border-bottom: 2px solid rgba(75, 75, 75, 1);
}

.portfolio-padding {
  padding: 50px 0;
}

.portfolio-inner {
  padding-bottom: 0 !important;
  padding-top: 55px;
}

.modal-content {
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0);
  border: none;
}

.popup-modal {
  background: #fff;
  opacity: .5;
  /*background-color: rgba(255, 255, 255, .5);*/
}

.modal-content {
  background-color: rgba(255, 255, 255, .5);
}

.close-popup-modal {
  float: right;
  margin: 20px;
  font-size: 22px;
  opacity: 0;
  cursor: pointer;
  -webkit-transition: all .3s;
  transition: all .3s;
  -webkit-transition-delay: .6s;
  transition-delay: .6s;
  position: fixed;
  z-index: 100000;
  right: 14px;
}

.animatedModal-on .close-popup-modal {
  opacity: 1;
}

.modal-content h2 {
  font-family: 'Playfair Display', serif;
  font-size: 40px;
  line-height: 50px;
}

.comingSoonBox {
  /*margin: 150px 0px 0px 0px;*/
  margin: 15% 0%;
}



/* contact
==================================================*/

#contact {
  padding: 100px 0;
  /*background: #f3f3f3*/
  /*background: black;*/
  background-color: rgba(145, 145, 145, 1);
}

#contact-form input,
#contact-form textarea {
  /*height: 50px;*/
  margin-bottom: 10px;
  border-radius: 0;
}

.colorShiftWhite {
  color: white;
}

#contact-form label {
  display: block;
  margin-bottom: .2em;
  font-size: 13px;
  line-height: 13px;
  font-size: 1.3rem;
  line-height: 1.3rem;
  color: #000;
  /*color: red;*/
}

#contact-form label.error {
  margin-top: 10px;
  margin-bottom: 1em;
  font-size: 12px;
  line-height: 12px;
  font-size: 1.2rem;
  line-height: 1.2rem;
  color: #D33E43;
  margin-left: 10px
}

#contact-form input[type="text"].error,
#contact-form input[type="password"].error,
#contact-form input[type="date"].error,
#contact-form input[type="datetime"].error,
#contact-form input[type="datetime-local"].error,
#contact-form input[type="month"].error,
#contact-form input[type="week"].error,
#contact-form input[type="email"].error,
#contact-form input[type="number"].error,
#contact-form input[type="search"].error,
#contact-form input[type="tel"].error,
#contact-form input[type="time"].error,
#contact-form input[type="url"].error,
#contact-form textarea.error {
  border-color: #D33E43
}

#contact .spacer {
  margin: 22px;
}

.form-control::selection {
  color: rgba(255, 150, 0, 1);
}

.form-control:focus {
  outline: none !important;
  border: 1px solid rgba(255, 150, 0, 1);
  box-shadow: 0 0 10px rgba(255, 150, 0, 1);
}

/*textarea:focus {
        outline: none !important;
    border:1px solid red;
    box-shadow: 0 0 10px #719ECE;
}*/

textarea {
  resize: none;
}

fieldset {
  border: 0px;
  margin: 0;
  padding: 0
}

.required {
  color: #e9266d
}

#success,
#error {
  display: none
}

#success p,
#error p {
  display: block;
}

#success p {
  /*color: #425BB5;*/
  color: rgba(255, 150, 0, 1);
  font-size: 15px;
  text-align: center;
  padding: 10px;
  /*border: 2px solid #425BB5;*/
  border: 2px solid rgba(255, 150, 0, 1);
  margin-top: 10px;
}

#error p {
  color: #D33E43;
  font-size: 15px;
  text-align: center;
  padding: 10px;
  border: 2px solid #D33E43;
  margin-top: 10px;
}

#submit {
  /*background-color: #425BB5;*/
  background-color: rgba(255, 150, 0, 1);
  color: #fff;
  padding: 10px 40px;
  border-radius: 0;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-weight: bold;
  width: 100%;
}

.social {
  padding-left: 0;
  list-style: none;
  margin-top: 20px;
}

.social li {
  float: left;
  vertical-align: middle;
}

.colorShiftHover,
.colorShiftHover a {
  color: rgba(75, 75, 75, 1);
}

.colorShiftHover:hover,
.colorShiftHover a:hover,
.social li a:hover {
  color: rgba(255, 150, 0, 1);
}

.social li a,
.social li .noHov,
.social li .noHov:hover {
  /*color: #333;*/
  color: rgba(75, 75, 75, 1);
  font-size: 35px;
  margin-right: 15px;
  transition: all .3s;
  -webkit-transition: all .3s;
  /*vertical-align: middle;*/
}

.social .slide {
  padding-top: 3px;
}

/*.social li a:hover {*/
/*color: #425BB5;*/
/*color: rgba(255, 150, 0, 1);*/
/*}*/



#footer {
  background-color: rgba(75, 75, 75, 1);
}

.credits {
  text-align: center;
}

.credits ul {
  display: inline-block;
  padding-left: 0;
  list-style: none;
  padding: 20px;
  margin-bottom: 0;
  -webkit-transition: all .5s;
  transition: all .5s;
}

/*.credits li {
    display: inline-block;
    margin: 10px;
    color: rgba(200, 200, 200, 1);
}*/

.credits li,
.credits li a {
  display: inline-block;
  margin: 5px;
  /*THIS WAS BEFORE*/
  text-transform: uppercase;
  letter-spacing: 2px;
  /*color: #444;*/
  /*color: rgba(200, 200, 200, 1);*/
  font-size: 11px;
  font-weight: bold;
}

.credits li,
.credits li a {
  color: rgba(200, 200, 200, 1);
}

.credits li a:hover {
  /*color: rgba(200, 200, 200, 1);*/
  color: rgba(255, 150, 0, 1);
}

/*portfolio pages */
/*===================================================*/

#titleHeadLoad #nature .title-head,
#titleHeadLoad #tech .title-head {
  /*height: 400px;*/
  height: 300px;
  background-size: cover;
}

.h3PortTitle {
  color: rgba(255, 150, 0, 1);
  font-style: oblique;
  margin: 0px 0px 25px 0px;
}

.download-div {
  background: #f3f3f3;
  padding: 20px;
  border-radius: 5px;
  margin-top: 75px;
}

.download-div ul {
  color: rgba(255, 150, 0, 1);
  font-style: italic;
  list-style: none;
}

.download-div ul li {
  padding: 0px 0px;
  font-weight: bold;
  text-decoration: none;
}

.download-div .insetH5 {
  margin-left: 10px;
}

.download-div ul li {
  padding: 0px 0px 0px 0px;
  display: inline-block;
}

.download-div ul li p {
  /*padding: 0px 0px 0px 0px;*/
  display: inline-block;
  margin: 0;
  padding: 0;
  /*padding-right: 10px;*/
}

.download-div ul .downloadListStyle .liPContent {
  content: "-";
  display: inline-block;
  margin: 0;
  padding-right: 5px;
}

.download-div ul .downloadListStyle .liPContent:before {
  content: "-";
  display: inline-block;
  margin: 0;
}

.download-div ul .downloadListStyle li .listItemP {
  display: inline-block;
  margin: 0;
}

.download-div ul .highlight {
  display: inline-block;
  padding: 0px 10px 0px 10px;
  color: rgba(255, 150, 0, 1);
}

.download-div ul .highlight:hover {
  display: inline-block;
  padding: 0px 10px 0px 10px;
  color: white;
  background: rgba(255, 150, 0, 1);
}

/*.download-div .summaryIcon {
    list-style: none;
}

.download-div .summaryIcon::before {
    list-style: none;
}*/

.summaryIcon {
  padding-left: 0;
  list-style: none;
  margin-top: 20px;
}

/*.summaryIcon li {
    float: left;
}*/

.summaryIcon {
  text-align: left;
}

.summaryIcon ul {
  /*text-align: left;*/
  margin: 0px 0px 0px 10px;
  padding: 0px;
}

.summaryIcon li {
  vertical-align: middle;
  margin-right: 15px;
}

.summaryIcon li a {
  font-size: 15px;
  color: rgba(75, 75, 75, 1);
  /*vertical-align: middle;*/
  /*margin-right: 15px;*/
  transition: all .3s;
  -webkit-transition: all .3s;
}

.summaryIcon li a i {
  /*color: #333;*/
  color: rgba(75, 75, 75, 1);
  font-size: 35px;
  /*margin-right: 15px;*/
  transition: all .3s;
  -webkit-transition: all .3s;
}

.summaryIcon li a:hover,
.summaryIcon li a i:hover {
  /*color: #425BB5;*/
  color: rgba(255, 150, 0, 1);
}

.btn-preview {
  /*background: #425BB5;*/
  background: rgba(255, 150, 0, 1);
  color: #fff;
  text-transform: uppercase;
  font-weight: bold;
  font-size: 12px;
  letter-spacing: 1px;
  border-radius: 5px;
  padding: 10px 25px;
  margin-right: 5px;
  -webkit-transition: all .3s;
  transition: all .3s;
}

.btn-download {
  /*background: #06D6A0;*/
  background: rgba(100, 100, 100, 1);
  color: #fff;
  text-transform: uppercase;
  font-weight: bold;
  font-size: 12px;
  letter-spacing: 1px;
  border-radius: 5px;
  padding: 10px 25px;
  -webkit-transition: all .3s;
  transition: all .3s;
}

.btn:hover,
.btn:focus {
  color: #fff;
  opacity: .6;
}

.centerH2 {
  text-align: center;
}

.hrShowThick {
  border: 0.5px solid rgba(145, 145, 145, .5);
  width: 85%;
}

.hrShowThin {
  border: 0.5px solid rgba(185, 185, 185, .5);
  width: 75%;
}

/* .nature-01 {
  background: url(../img/portfolio_page/_header/portfolio_page_header_nature_full.jpg);
}

.tech-01 {
  background: url(../img/portfolio_page/_header/portfolio_page_header_tech_full.jpg);
} */

/* Responsive media queries
==================================================*/
/* XXL Screens - Hello SurfaceBooks and 4k! */
@media (max-width: 2900px) {
  #home {
    background: url(../img/index_bkgrd_full.jpg);
    background-size: cover;
  }

  .nature-01 {
    background: url(../img/portfolio_page/_header/portfolio_page_header_nature_full.jpg);
  }

  .tech-01 {
    background: url(../img/portfolio_page/_header/portfolio_page_header_tech_full.jpg);
  }
}

/* XL Screens - 1200 */
@media (max-width: 1200px) {
  #home {
    background: url(../img/index_bkgrd_1200.jpg);
    background-size: cover;
  }

  .nature-01 {
    background: url(../img/portfolio_page/_header/portfolio_page_header_nature_1200.jpg);
  }

  .tech-01 {
    background: url(../img/portfolio_page/_header/portfolio_page_header_tech_1200.jpg);
  }
}

/* L Screens - 992 */
@media (max-width: 992px) {
  #home {
    background: url(../img/index_bkgrd_992.jpg);
    background-size: cover;
  }

  .nature-01 {
    background: url(../img/portfolio_page/_header/portfolio_page_header_nature_992.jpg);
  }

  .tech-01 {
    background: url(../img/portfolio_page/_header/portfolio_page_header_tech_992.jpg);
  }

  .portfolio .categories-grid .categories ul li a {
    padding: 0 2px;
  }
}

/* M - Tablet Screens - 768 */
@media (max-width: 768px) {
  #home {
    background: url(../img/index_bkgrd_768.jpg);
    background-size: cover;
  }

  .nature-01 {
    background: url(../img/portfolio_page/_header/portfolio_page_header_nature_992.jpg);
  }

  .tech-01 {
    background: url(../img/portfolio_page/_header/portfolio_page_header_tech_992.jpg);
  }

  .timeline-event-copy {
    width: 90%;
    left: 2em;
  }
}

/* S - Mobile Screens - 576 */
@media (max-width: 576px) {
  #home {
    background: url(../img/index_bkgrd_576.jpg);
    background-size: cover;
  }

  .nature-01 {
    background: url(../img/portfolio_page/_header/portfolio_page_header_nature_576.jpg);
  }

  .tech-01 {
    background: url(../img/portfolio_page/_header/portfolio_page_header_tech_576.jpg);
  }

  h1 {
    font-family: 'Playfair Display', serif;
    font-size: 50px;
    line-height: 50px;
  }

  /* #home, */
  .disply-table {
    height: 600px;
  }

  .about-border {
    width: 265px;
  }

  .portfolio .categories-grid .categories ul li {
    list-style: none;
    margin: 10px 0;
  }
}

/* XS - Mobile Screens - 420 */
@media (max-width: 420px) {
  #home {
    background: url(../img/index_bkgrd_576.jpg);
    background-size: cover;
  }

  .nature-01 {
    background: url(../img/portfolio_page/_header/portfolio_page_header_nature_576.jpg);
  }

  .tech-01 {
    background: url(../img/portfolio_page/_header/portfolio_page_header_tech_576.jpg);
  }

  nav li {
    margin: 6px;
  }

  nav li a {
    font-size: 10px;
  }
}