/*
 *
 * Prefix Css Page
 *
 */
/*
 *
 * Global Css Page
 *
 */
body {
  font-family: raleway, sans-serif;
}

a:hover {
  text-decoration: none;
}

.text-gray {
  color: #777;
}

.text-main-color {
  color: #fc0;
}

.secondary-font {
  font-family: Montserrat, sans-serif;
}

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

.parallax {
  position: relative;
  background-attachment: fixed;
  background-position: center;
  background-repeat: no-repeat;
  -webkit-background-size: cover;
  -moz-background-size: cover;
  -o-background-size: cover;
  background-size: cover;
}

/*=== Start Portfolio ===*/
.portfolio .item {
  position: relative;
  border-radius: 5px;
  margin-bottom: 30px;
  -webkit-transition: all 0.2s ease-in-out;
  -moz-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}
.portfolio .item .item-header img {
  width: 100%;
  -webkit-box-shadow: 0px 0px 25px 0px rgba(0, 0, 0, 0.07);
  -moz-box-shadow: 0px 0px 25px 0px rgba(0, 0, 0, 0.07);
  -o-box-shadow: 0px 0px 25px 0px rgba(0, 0, 0, 0.07);
  box-shadow: 0px 0px 25px 0px rgba(0, 0, 0, 0.07);
}
.portfolio .item .item-header .overlay-container {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: 0;
  overflow: hidden;
  -webkit-transition: all 0.5s ease-in-out;
  -moz-transition: all 0.5s ease-in-out;
  -o-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}
.portfolio .item .item-header .overlay-container .overlay {
  width: 100%;
  height: 100%;
  background-image: linear-gradient(30deg, #fff, #fff);
  opacity: 0.9;
}
.portfolio .item .item-header .overlay-container .overlay-content {
  padding-left: 50px;
  position: absolute;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
  display: flex;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
  -webkit-align-items: flex-end;
  align-items: flex-end;
}
.portfolio .item .item-header .overlay-container .overlay-content ul li {
  font-size: 30px;
  margin-bottom: 20px;
}
.portfolio .item .item-header .overlay-container .overlay-content ul li a {
  font-size: 20px;
  border: solid thin #007bff;
  color: #007bff;
  padding: 11px;
  transition: all 0.3s ease-in-out;
}
.portfolio .item .item-header .overlay-container .overlay-content ul li a:hover {
  background-color: #007bff;
  color: white;
  text-decoration: none;
}
.portfolio .item .item-header:hover .overlay-container {
  height: 100%;
}
.portfolio .more i {
  position: relative;
  top: 2px;
  -webkit-animation: move 2s ease-in-out infinite;
  -moz-animation: move 2s ease-in-out infinite;
  -o-animation: move 2s ease-in-out infinite;
  animation: move 2s ease-in-out infinite;
}
@keyframes move {
  0% {
    left: 1%;
  }
  50% {
    left: 3%;
  }
  100% {
    left: 1%;
  }
}

/*=== End Portfolio ===*/
/*=== Responsive ===*/
@media (max-width: 768px) {
  .portfolio .item {
    margin-bottom: 50px;
  }
}
/*
 *
 * Portfolio Css Page
 *
 */
header {
  background-image: url("../../images/bg/bg-1.jpg");
  background-position: center;
  -webkit-background-size: cover;
  -moz-background-size: cover;
  -o-background-size: cover;
  background-size: cover;
  -webkit-border-radius: 0 0 150px 0;
  -moz-border-radius: 0 0 150px 0;
  border-radius: 0 0 150px 0;
  position: relative;
  height: 400px;
}
header:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.6);
  -webkit-border-radius: 0 0 150px 0;
  -moz-border-radius: 0 0 150px 0;
  border-radius: 0 0 150px 0;
}
header .header-content {
  position: absolute;
  top: 40%;
  left: 10%;
  z-index: 2;
}
header .header-content p {
  font-size: 50px;
}
header .header-content .typeme {
  font-size: 25px;
  color: #ddd;
}

/*== Responsive ==*/
@media (max-width: 768px) {
  header .header-content p {
    font-size: 35px;
  }
}
@media (max-width: 576px) {
  header .header-content {
    top: 35%;
    left: 5%;
  }
  header .header-content p {
    font-size: 30px;
  }
  header .header-content .typeme {
    font-size: 20px;
  }
}

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