/*-----------------------------------------------------------------

  ## Table of Contents:

    01 - Global
    02 - Navbar
    03 - Header
    04 - About
    05 - Services
    06 - Counter
    07 - Portfolio
    08 - Testimonials
    09 - Blog
    10 - Contact
    11 - Footer
    12 - Responsive

-----------------------------------------------------------------*/
/*-----------------------------------------------------------------
[ 01 - Start Global ]
-----------------------------------------------------------------*/
/* Basics -------------------------------------------------------*/
* {
  padding: 0;
  margin: 0;
  text-decoration: none !important;
  list-style: none !important;
  outline: none !important;
}

img {
  width: 100%;
  height: auto;
}

span, a, a:hover, a:focus {
  display: inline-block;
  color: inherit;
}

body {
  font-family: "Open Sans", sans-serif;
  color: #212121;
  overflow-x: hidden !important;
}

h2, h3, h4, h5, h6 {
  font-family: "Montserrat", sans-serif;
  letter-spacing: 1px;
  margin: 0;
    margin-bottom: 7px;
}

h1 {
  font-family: 'Alfa Slab One', cursive;
  letter-spacing: 1px;
  margin: 0;
}

p {
  color: #757575;
  line-height: 1.7;
  margin: 0;
}

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

.section-head {
  margin-bottom: 80px;
}
.section-head h3 {
  font-size: 30px;
  font-weight: 600;
  margin-bottom: 30px;
}

.sub-heading {
  font-size: 18px;
  margin-bottom: 15px;
}

.v-middle {
  position: absolute;
  width: 100%;
  top: 50%;
  left: 0;
  -webkit-transform: translate(0%, -50%);
  transform: translate(0%, -50%);
}

.mb-30 {
  margin-bottom: 30px;
}

.bg-prop {
  background-size: cover;
  background-repeat: no-repeat;
  background-attachment: fixed;
}

/* Section Overlay ----------------------------------------------*/
.section-overlay {
  position: relative;
}
.section-overlay:after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1;
}
.section-overlay .container {
  position: relative;
  z-index: 9;
}

/* Dark */
.dark:after {
  background: rgba(33, 33, 33, 0.8);
}

/* Gradient */
.gradient:after {
  background: linear-gradient(-45deg, rgba(2, 61, 67, 0.9), rgba(69, 51, 29, 0.8), rgba(33, 33, 33, 0.9));
}

/* Animated Gradient */
.a-gradient:after {
  background-size: 300% 300% !important;
  background: linear-gradient(-45deg, rgba(2, 61, 67, 0.9), rgba(69, 51, 29, 0.8), rgba(33, 33, 33, 0.9));
  -webkit-animation: a-gradient 15s ease infinite;
  animation: a-gradient 15s ease infinite;
}

@-webkit-keyframes a-gradient {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}
@keyframes a-gradient {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}

/* Buttons ------------------------------------------------------*/
.bg-button,
.border-button {
  font-size: 15px;
  letter-spacing: 0.5px;
  padding: 8px 15px;
  margin-top: 10px;
  margin-right: 3px;
  border: 1px solid #7cb342;
  border-radius: 5px;
  position: relative;
  z-index: 3;
  overflow: hidden;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
}
.bg-button span,
.border-button span {
  position: relative;
  z-index: 2;
}
.bg-button:before, .bg-button:after,
.border-button:before,
.border-button:after {
  content: "";
  position: absolute;
  left: 0;
  width: 100%;
  height: 0;
  z-index: 1;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
}
.bg-button:before,
.border-button:before {
  top: 0;
}
.bg-button:after,
.border-button:after {
  bottom: 0;
}
.bg-button:hover:before, .bg-button:hover:after,
.border-button:hover:before,
.border-button:hover:after {
  height: 55%;
}

.bg-button {
  background: #7cb342;
  color: #FFF !important;
}
.bg-button:before, .bg-button:after {
  background: #FFF;
}
.bg-button:hover {
  background: #FFF;
}
.bg-button:hover span {
  color: #7cb342;
}

.border-button {
  background: #FFF;
  color: #7cb342 !important;
}
.border-button:before, .border-button:after {
  background: #7cb342;
}
.border-button:hover {
  background: #7cb342;
}
.border-button:hover span {
  color: #FFF;
}

/* Animated Headline --------------------------------------------*/
.cd-headline {
  font-size: 3rem;
  line-height: 1.2;
}

@media only screen and (min-width: 768px) {
  .cd-headline {
    font-size: 4.4rem;
    font-weight: 300;
  }
}
@media only screen and (min-width: 1170px) {
  .cd-headline {
    font-size: 6rem;
  }
}
.cd-words-wrapper {
  display: inline-block;
  position: relative;
  text-align: left;
}

.cd-words-wrapper b {
  display: inline-block;
  position: absolute;
  white-space: nowrap;
  left: 0;
  top: 0;
}

.cd-words-wrapper b.is-visible {
  position: relative;
}

.no-js .cd-words-wrapper b {
  opacity: 0;
}

.no-js .cd-words-wrapper b.is-visible {
  opacity: 1;
}

/* xclip */
.cd-headline.clip span {
  display: inline-block;
  padding: 0.2em 0;
}

.cd-headline.clip .cd-words-wrapper {
  overflow: hidden;
  vertical-align: top;
}

.cd-headline.clip .cd-words-wrapper::after {
  /* line */
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 2px;
  height: 100%;
  background: #aebcb9;
}

.cd-headline.clip b {
  opacity: 0;
}

.cd-headline.clip b.is-visible {
  opacity: 1;
}

/* Preloader ----------------------------------------------------*/
.loading {
  position: fixed;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background: #FFF;
  z-index: 9999999;
}
.loading .load-circle {
  margin: 0 auto;
  width: 50px;
  height: 50px;
  line-height: 50px;
  border-radius: 50%;
  border-left: 2px solid #7cb342;
  border-top: 2px solid #7cb342;
  border-right: 2px solid rgba(33, 33, 33, 0.1);
  border-bottom: 2px solid rgba(33, 33, 33, 0.1);
  -webkit-animation: rotate 1.2s linear infinite;
  animation: rotate 1.2s linear infinite;
}

@-webkit-keyframes rotate {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
@keyframes rotate {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

/* Button Top ---------------------------------------------------*/
.button-top {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 99999;
  width: 40px;
  height: 40px;
  line-height: 41px;
  text-align: center;
  background: #515A5F;
  color: #FFF;
  border-radius: 5px;
  opacity: 0.5;
  cursor: pointer;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
  display: none;
}
.button-top:hover {
  opacity: 0.8;
}

/*-----------------------------------------------------------------
[ End Global ]
-----------------------------------------------------------------*/
/*-----------------------------------------------------------------
[ 02 - Start Navbar ]
-----------------------------------------------------------------*/
.navbar {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 999;
  padding: 20px 0;
}
.navbar .logo {
  width: 90px;
  height: 40px;
  line-height: 40px;
  margin-right: 15px;
}
.navbar .menu-icon {
  color: #FFF;
}
.navbar .navbar-nav .nav-link {
  color: #EEE;
  font-size: 15px;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
}
.navbar .navbar-nav .active {
  color: #E92B17 !important;
}

.nav-scroll {
  background: #FFF;
  border-bottom: 1px solid rgba(12, 12, 12, 0.04);
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
}
.nav-scroll .menu-icon {
  color: #212121;
}
.nav-scroll .navbar-nav .nav-link {
  color: #212121;
}

/*-----------------------------------------------------------------
[ End Navbar ]
-----------------------------------------------------------------*/
/*-----------------------------------------------------------------
[ 03 - Start Header ]
-----------------------------------------------------------------*/
/*-----------------------------------------------------------------
[ Optimal header image is 1920x1080 ]
-----------------------------------------------------------------*/
.header {
  background-image: url("http://www.ironcurtain.net/images/dayz-standalone-wallpaper-train-rail-forest.png");
  overflow: hidden;
  height: 100vh;
}
.header .v-middle {
  overflow: hidden;
  z-index: 9;
}
.header .caption {
  margin-top: 50px;
}
.header .caption img {
  width: 100px;
  height: 100px;
  background: transparent;
  margin-bottom: 20px;
}
.header .caption h1 {
  color: #FFF;
  font-size: 50px;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 10px;
}
.header .caption h2 {
  color: #EEE;
  font-size: 18px;
  font-weight: 500;
  line-height: 1.2;
  margin-bottom: 10px;
}
.header .caption h2 b {
  font-weight: 500;
}
.header .caption h3 {
  color: #CCC;
  font-size: 12px;
  font-weight: 500;
  line-height: 1.2;
  margin-bottom: 10px;
}
.header .caption h3 b {
  font-weight: 500;
}
h4 {
  color: #CCC;
  font-size: 10px;
  font-weight: 500;
  line-height: 1;
  margin-bottom: 0px;
}
h4 b {
  font-weight: 500;
}
.header .caption .social-media span {
  color: #EEE;
  background: rgba(117, 117, 117, 0.1);
  font-size: 13px;
  height: 30px;
  width: 30px;
  line-height: 31px;
  border: 1px solid rgba(117, 117, 117, 0.2);
  border-radius: 5px;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.header .caption .social-media span:hover {
  color: #FFF;
  background: #7cb342;
}

#particles-js {
  width: 100%;
  height: 100%;
  background: transparent;
  z-index: 9;
}

/*-----------------------------------------------------------------
[ End Header ]
-----------------------------------------------------------------*/
/*-----------------------------------------------------------------
[ 04 - Start About ]
-----------------------------------------------------------------*/
.about {
  overflow: hidden;
}
.about .section-head {
  margin-bottom: 20px;
}
.about .section-head h3 {
  margin-bottom: 5px;
}
.about .intro .details {
  margin: 20px 0;
}
.about .intro .details .item {
  margin: 5px 0;
}
.about .intro .details .item .icon {
  margin-right: 10px;
}
.about .skills .prog-item {
  margin-bottom: 25px;
}
.about .skills .prog-item:last-child {
  margin-bottom: 0;
}
.about .skills .prog-item p {
  margin-bottom: 5px;
}
.about .skills .prog-item .skill-progress {
  position: relative;
  height: 2px;
  width: 100%;
  border-radius: 5px;
  background: #EEE;
}
.about .skills .prog-item .skill-progress span {
  position: absolute;
  top: 0;
  left: 0;
  width: 10%;
  height: 100%;
  background: #7cb342;
  border-radius: 5px;
  -webkit-transition: all 1s;
  transition: all 1s;
}
.about .skills .prog-item .skill-progress span:after {
  content: attr(data-value);
  position: absolute;
  right: 0;
  top: -23px;
  font-size: 12px;
  color: #757575;
}

/*-----------------------------------------------------------------
[ End About ]
-----------------------------------------------------------------*/
/*-----------------------------------------------------------------
[ 05 - Start Services ]
-----------------------------------------------------------------*/
.services {
  background: #f5f5f5;
  overflow: hidden;
}
.services .item {
  background: #FFF;
  padding: 30px;
  border: 1px solid #EEE;
  border-radius: 5px;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
}
.services .item:hover {
  -webkit-box-shadow: 0 12px 20px rgba(0, 0, 0, 0.15);
  box-shadow: 0 12px 20px rgba(0, 0, 0, 0.15);
}
.services .item .icon {
  color: #E92B17;
  font-size: 30px;
  margin-bottom: 15px;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
}

/*-----------------------------------------------------------------
[ End Services ]
-----------------------------------------------------------------*/
/*-----------------------------------------------------------------
[ 06 - Start Counter ]
-----------------------------------------------------------------*/
.counter {
  background-image: url("http://via.placeholder.com/1920x1080");
  overflow: hidden;
  padding: 80px 0;
}
.counter .item .icon {
  color: #7cb342;
  font-size: 30px;
  margin-bottom: 5px;
}
.counter .item .number {
  color: #7cb342;
  font-size: 28px;
  font-weight: 600;
  margin-bottom: 5px;
}
.counter .item h6 {
  color: #EEE;
}

/*-----------------------------------------------------------------
[ End Counter ]
-----------------------------------------------------------------*/
/*-----------------------------------------------------------------
[ 07 - Start Portfolio ]
-----------------------------------------------------------------*/
.portfolio {
  background: #f5f5f5;
  overflow: hidden;
}
.portfolio .filtering {
  margin-bottom: 50px;
}
.portfolio .filtering span {
  font-size: 14px;
  letter-spacing: 0.5px;
  padding: 6px 15px;
  background: #FFF;
  border: 1px solid #EEE;
  border-radius: 5px;
  margin: 3px 1px;
  cursor: pointer;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
}
.portfolio .filtering span.active {
  color: #FFF;
  background: #7cb342;
}
.portfolio .item-img {
  position: relative;
  z-index: 1;
  overflow: hidden;
  padding: 1px;
  border-radius: 5px;
}
.portfolio .item-img img {
  border-radius: 5px;
}
.portfolio .item-img .top-overlay,
.portfolio .item-img .bottom-overlay {
  position: absolute;
  left: 0;
  width: 100%;
  height: 75%;
  background: rgba(255, 255, 255, 0.8);
  z-index: 2;
  opacity: 0;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
}
.portfolio .item-img .top-overlay {
  top: -75%;
}
.portfolio .item-img .bottom-overlay {
  bottom: -75%;
}
.portfolio .item-img:hover .top-overlay {
  top: 0;
  opacity: 1;
}
.portfolio .item-img:hover .bottom-overlay {
  bottom: 0;
  opacity: 1;
}
.portfolio .item-img .v-middle {
  z-index: 3;
}
.portfolio .item-img .overlay-info {
  opacity: 0;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
}
.portfolio .item-img .overlay-info h5 {
  margin-bottom: 20px;
}
.portfolio .item-img .overlay-info .icon {
  font-size: 14px;
  color: rgba(33, 33, 33, 0.5);
  height: 30px;
  width: 30px;
  line-height: 30px;
  border: 1px solid rgba(33, 33, 33, 0.5);
  border-radius: 5px;
  margin: 0 2px;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
}
.portfolio .item-img .overlay-info .icon:hover {
  color: #FFF;
  background: #7cb342;
  border: 1px solid #7cb342;
}
.portfolio .item-img:hover .overlay-info {
  opacity: 1;
}

/*-----------------------------------------------------------------
[ End Portfolio ]
-----------------------------------------------------------------*/
/*-----------------------------------------------------------------
[ 08 - Start Testimonials ]
-----------------------------------------------------------------*/
.testimonials {
  background-image: url("http://via.placeholder.com/1920x1080");
  overflow: hidden;
}
.testimonials .section-head h3 {
  color: #FFF;
}
.testimonials .icon {
  font-size: 22px;
  color: #7cb342;
  background: #FFF;
  width: 60px;
  height: 55px;
  line-height: 55px;
  border: 1px solid #FFF;
  border-radius: 10px;
  margin-bottom: 50px;
  position: relative;
}
.testimonials .icon:before {
  content: "";
  border-left: 10px solid transparent;
  border-right: 10px solid transparent;
  border-top: 13px solid #FFF;
  position: absolute;
  bottom: -13px;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
}
.testimonials .item {
  margin-bottom: 40px;
}
.testimonials .item p {
  color: #EEE;
  font-size: 17px;
  line-height: 2;
  margin-bottom: 25px;
}
.testimonials .item h5 {
  color: #7cb342;
  font-size: 15px;
  margin-bottom: 5px;
}
.testimonials .item h6 {
  color: #EEE;
  font-size: 11px;
}
.testimonials .owl-theme .owl-dots .owl-dot span {
  background: transparent;
  border: 1px solid #EEE;
  margin: 0 3px;
}
.testimonials .owl-theme .owl-dots .owl-dot span:hover {
  border: 1px solid #7cb342;
}
.testimonials .owl-theme .owl-dots .owl-dot.active span {
  background: #7cb342;
}

/*-----------------------------------------------------------------
[ End Testimonials ]
-----------------------------------------------------------------*/
/*-----------------------------------------------------------------
[ 09 - Start Blog ]
-----------------------------------------------------------------*/
.blog {
  background: #f5f5f5;
  overflow: hidden;
}
.blog .post {
  overflow: hidden;
  background: #FFF;
  border: 1px solid #EEE;
  border-radius: 5px;
}
.blog .post .post-img {
  overflow: hidden;
  border-top-left-radius: 5px;
  border-top-right-radius: 5px;
}
.blog .post .post-img img {
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}
.blog .post .post-img img:hover {
  -webkit-transform: scale(1.1, 1.1);
  transform: scale(1.1, 1.1);
}
.blog .post .post-info {
  position: relative;
  height: 0;
}
.blog .post .post-info .tag {
  height: 30px;
  line-height: 30px;
  padding: 0 15px;
  background: #FFF;
  color: #7cb342;
  font-size: 12px;
  letter-spacing: 0.1px;
  border: 1px solid #EEE;
  border-radius: 15px;
  position: absolute;
  top: -15px;
  left: 50%;
  z-index: 1;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
}
.blog .post .post-content {
  padding: 45px 15px 30px;
}
.blog .post .post-content p {
  margin-bottom: 15px;
}
.blog .post .post-content .rm-button {
  color: #7cb342;
  font-size: 14px;
  letter-spacing: 0.5px;
}
.blog .post .post-content .rm-button i {
  font-size: 11px;
  margin-left: -15px;
  opacity: 0;
  position: relative;
  right: 0;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
}
.blog .post .post-content .rm-button:hover i {
  opacity: 1;
  right: -15px;
}

/*-----------------------------------------------------------------
[ End Blog ]
-----------------------------------------------------------------*/
/*-----------------------------------------------------------------
[ 10 - Start Contact ]
-----------------------------------------------------------------*/
.contact {
  padding-top: 100px;
  overflow: hidden;
}
.contact .form input,
.contact .form textarea {
  width: 100%;
  padding: 10px;
  border: 1px solid #EEE;
  background: #f5f5f5;
  font-size: 14px;
  border-radius: 5px;
  -webkit-box-shadow: none;
  box-shadow: none;
}
.contact .form textarea {
  height: 160px;
  max-height: 160px;
  max-width: 100%;
}
.contact .form input[type=submit] {
  display: inline-block;
  font-size: 15px;
  letter-spacing: 0.5px;
  background: #7cb342;
  border: 1px solid #7cb342;
  color: #FFF;
  padding: 8px 10px;
  width: 140px;
  border-radius: 5px;
  cursor: pointer;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
}
.contact .form input[type=submit]:hover {
  opacity: 0.9;
  border: 1px solid #FFF;
}
.contact .form .help-block {
  font-size: 13px;
  text-align: left;
  color: #ff5050;
  margin-top: 5px;
}
.contact .contact-info {
  margin-top: 100px;
  padding: 30px 0;
  background: #212121;
  border-top-left-radius: 5px;
  border-top-right-radius: 5px;
  position: relative;
}
.contact .contact-info:before, .contact .contact-info:after {
  content: "";
  background: #212121;
  width: 15px;
  height: 15px;
  position: absolute;
  bottom: 0;
}
.contact .contact-info:before {
  left: -15px;
  border-top-left-radius: 5px;
}
.contact .contact-info:after {
  right: -15px;
  border-top-right-radius: 5px;
}
.contact .contact-info .item {
  padding: 0 15px;
  position: relative;
}
.contact .contact-info .item:after {
  content: "";
  background: rgba(117, 117, 117, 0.3);
  width: 1px;
  height: 100%;
  position: absolute;
  right: 0;
  bottom: 0;
}
.contact .contact-info .item:last-child:after {
  display: none;
}
.contact .contact-info .item .icon {
  color: #7cb342;
  font-size: 20px;
  margin-bottom: 10px;
}
.contact .contact-info .item h6 {
  color: #FFF;
  font-size: 14px;
  margin-bottom: 5px;
  text-transform: uppercase;
}
.contact .contact-info .item p {
  color: #EEE;
  font-size: 12px;
  letter-spacing: 0.5px;
}

/*-----------------------------------------------------------------
[ End Contact ]
-----------------------------------------------------------------*/
/*-----------------------------------------------------------------
[ 11 - Start Footer ]
-----------------------------------------------------------------*/
.footer {
  background: #212121;
  overflow: hidden;
}
.footer .main-footer {
  padding: 50px 0;
  overflow: hidden;
}
.footer .main-footer .logo {
  width: 100px;
}
.footer .main-footer .social-media {
  margin-top: 30px;
}
.footer .main-footer .social-media span {
  color: #EEE;
  background: rgba(117, 117, 117, 0.2);
  font-size: 13px;
  height: 30px;
  width: 30px;
  line-height: 31px;
  border: 1px solid rgba(117, 117, 117, 0.2);
  border-radius: 5px;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.footer .main-footer .social-media span:hover {
  color: #FFF;
  background: #7cb342;
}
.footer .copyright {
  font-size: 14px;
  letter-spacing: 0.5px;
  padding: 15px 0;
  border-top: 1px solid rgba(117, 117, 117, 0.2);
  border-radius: 5px;
}

/*-----------------------------------------------------------------
[ End Footer ]
-----------------------------------------------------------------*/
/*-----------------------------------------------------------------
[ 12 - Start Responsive ]
-----------------------------------------------------------------*/
@media (max-width: 991.98px) {
  .mb-md-50 {
    margin-bottom: 50px;
  }

  .mb-md-30 {
    margin-bottom: 30px;
  }

  .contact-info .item:after {
    display: none;
  }

  .bg-prop {
    background-attachment: scroll !important;
  }
}

@media (max-width: 767.98px) {
  .mb-sm-50 {
    margin-bottom: 50px;
  }

  .navbar .container {
    padding: 0 15px;
  }
  .navbar .navbar-toggler {
    padding: 0;
  }
  .navbar .navbar-collapse {
    background: #FFF;
    border-top: 1px solid rgba(12, 12, 12, 0.04);
    margin-top: 5px;
  }
  .navbar .navbar-nav {
    padding-bottom: 15px;
  }
  .navbar .navbar-nav .nav-link {
    color: #212121;
    display: block;
    padding: 15px 15px 0;
  }

  .nav-scroll .navbar-nav {
    padding-bottom: 0;
  }
  .nav-scroll .navbar-nav .nav-link {
    padding: 15px 0 0;
  }
}
/*-----------------------------------------------------------------
[ End Responsive ]
-----------------------------------------------------------------*/

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