body {
	font-family: 'Open Sans', Arial, Helvetica, sans-serif;
  font-weight: 300;
  font-size: 16px;
  line-height: 1.5;
}

h1, h2, h3, h4, h5, h6 {
  margin-top: 0;
  font-weight: 400;
  color: #30343d;
}

p {
  color: #565961;
}

p.light {
  color: #ddd;
}

.text-white {
  color: #fff;
}

img
{
	max-width: 100%;
}

/*	2 - Start Main Styles
	****************************/
* {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

.section {
  padding-top: 80px;
  padding-bottom: 40px;
}

.section-title {
  margin-bottom: 40px;
}

.overlay {
  position: relative;
  width: 100%;
  height: 100%;
}

.overlay::before {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 0;
  background-color: rgba(255, 255, 255, 0.3);
}

.content-wrapper {
  height: 100%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}

.content-wrapper .content {
  width: 100%;
  text-align: center;
  vertical-align: middle;
}

.heading-underline {
  position: relative;
  margin-left: 60px;
  margin-bottom: 10px;
  width: 10px;
  height: 10px;
  background-color: #e85c41;
  border-radius: 50%;
}

.heading-underline.centered {
  margin: 0 auto 10px;
}

.heading-underline::before, .heading-underline::after {
  position: absolute;
  content: "";
  background-color: #30343d;
  width: 50px;
  height: 2px;
  top: 4px;
}

.heading-underline::after {
  left: -60px;
}

.heading-underline::before {
  left: 20px;
}

.heading-underline.light::after, .heading-underline.light::before {
  background-color: #fff;
}

a:focus {
  outline: none;
  background: transparent;
}

/* Bootstrap Modal Restyle */
.modal-dialog {
  width: 100%;
  margin: 0;
  border: none;
}

.modal-content {
  border: none;
  border-radius: 0;
}

.modal-header {
  border: none;
  padding: 0;
  padding-bottom: 25px;
}

.modal-header .close {
  width: 60px;
  height: 60px;
  line-height: 60px;
  border-radius: 0;
  text-align: center;
  background-color: #30343d;
  color: #fff;
  opacity: 1;
  outline: none;
}

.modal-header .modal-title {
  margin-top: 80px;
  margin-bottom: 10px;
}

/* Owl Carousel */
.owl-carousel .owl-wrapper-outer {
  overflow: hidden;
  position: relative;
  width: 100%;
  z-index: 1;
}

.owl-item {
  transform: translateZ(0);
  -webkit-transform: translateZ(0);
  -ms-transform: translateZ(0);
}

/* End Main Styles */

/*	3 - Start Buttons Styles
	****************************/
.btn {
  padding: 10px 30px;
  margin-top: 10px;
  margin-bottom: 10px;
  font-weight: bold;
  border-radius: 0px;
  border: 2px solid transparent;
  outline: none;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.btn:active, .btn:focus, .btn:active:focus {
  -webkit-box-shadow: none;
          box-shadow: none;
  outline: none;
}

.btn.btn-brand {
  background-color: #e85c41;
  color: #fff;
}

.btn.btn-brand:hover {
  background-color: #30343d;
}

.btn.btn-outline-white {
  color: #fff;
  border: 2px solid #fff;
}

.btn.btn-outline-white:hover {
  background-color: #e85c41;
  border-color: #e85c41;
}

.btn.btn-dark {
  background-color: #30343d;
  color: #fff;
}

.btn.btn-dark:hover {
  background-color: #e85c41;
}

/* End Buttons Styles */

/*	4 - NavBar
	****************************/
.navbar {
  background-color: #fff;
  border: none;
  -webkit-box-shadow: 0px 0px 15px 0px rgba(0, 0, 0, 0.25);
          box-shadow: 0px 0px 15px 0px rgba(0, 0, 0, 0.25);
}

.navbar-brand {
  height: 50px;
  padding: 0px 15px;
  margin-top: 5px;
}

.navbar-nav > li > a {
  position: relative;
  padding: 10px 15px;
  margin: 10px 0;
  background-color: transparent;
  color: #30343d;
  font-weight: 700;
  font-size: 14px;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.navbar-nav > li > a::before, .navbar-nav > li > a::after {
  position: absolute;
  content: "";
  background-color: #e85c41;
  width: 0;
  height: 2px;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.navbar-nav > li > a::before {
  top: 0;
  left: 0;
}

.navbar-nav > li > a::after {
  bottom: 0;
  right: 0;
}

.navbar-nav > li > a:hover {
  color: #e85c41;
  background-color: transparent;
}

.nav > li > a:focus {
  background-color: transparent;
}

.navbar-nav > li.active > a {
  color: #e85c41;
}

.navbar-nav > li.active > a::before, .navbar-nav > li.active > a::after {
  width: 100%;
}

.navbar-toggle .icon-bar {
  background-color: #30343d;
  -webkit-transform-origin: 50% 50%;
      -ms-transform-origin: 50% 50%;
          transform-origin: 50% 50%;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.navbar-toggle .icon-bar:nth-child(3) {
  opacity: 0;
}

.navbar-toggle .icon-bar:nth-child(2) {
  -webkit-transform: rotate(-45deg) translateY(8px);
      -ms-transform: rotate(-45deg) translateY(8px);
          transform: rotate(-45deg) translateY(8px);
}

.navbar-toggle .icon-bar:nth-child(4) {
  -webkit-transform: rotate(45deg) translateY(-8px);
      -ms-transform: rotate(45deg) translateY(-8px);
          transform: rotate(45deg) translateY(-8px);
}

.navbar-toggle.collapsed .icon-bar:nth-child(3) {
  opacity: 1;
}

.navbar-toggle.collapsed .icon-bar:nth-child(2), .navbar-toggle.collapsed .icon-bar:nth-child(4) {
  -webkit-transform: rotate(0deg) translate(0px);
      -ms-transform: rotate(0deg) translate(0px);
          transform: rotate(0deg) translate(0px);
}
/* End NavBar */

/*	5 - Start Home Section
	****************************/
#home {
  background: url("../img/hero-bg.jpg") no-repeat center;
  background-size: cover;
  height: 100vh;
  color: #fff;
}

#home p {
  font-weight: 700;
  text-transform: uppercase;
}

#home h1 {
  font-weight: 300;
  font-size: 60px;
}

#home .btn {
  margin: 20px 10px;
}
/* End Home Section */

/*	6 - Start About Section
	****************************/
#about {
  padding-top: 40px;
  background: #000 url(../img/space.jpg) right center no-repeat;
  background-size: cover;
  text-shadow: 0px 0px 3px #000;
  padding-bottom: 80px;
}

#about .heading-underline::before, #about .heading-underline::after {
  background-color: #aaa;
}

									 
#about .porfile-image,
#about .about-info {
  margin-top: 40px;
  font-size: 10px;
}

#about .heading-underline {
  background-color: #fff;
}


#about *
{
	color: #ddd;
}

/*	6 - a) Accordion Styles
	****************************/
#accordion {
  margin-top: 40px;
  margin-bottom: 40px;
}

#accordion .panel-heading {
  padding: 0;
}

#accordion .panel-title {
  color: #30343d;
  height: 60px;
  line-height: 40px;
  font-size: 18px;
}

#accordion .panel-title .accordion-toggle {
  display: block;
  height: 60px;
  line-height: 34px;
  border: 3px solid #30343d;
  color: #30343d;
  padding: 10px 20px;
  text-decoration: none;
  -webkit-transition: all 0.35s ease;
  transition: all 0.35s ease;
}

#accordion .panel-title .accordion-toggle[aria-expanded="true"] {
  background-color: #e85c41;
  border-color: transparent;
  color: #fff;
}

#accordion .panel-title .accordion-toggle::after {
  font-family: FontAwesome;
  content: "\f00d";
  float: right;
  color: #fff;
  padding-left: 20px;
  border-left: 2px solid #fff;
  -webkit-transition: all 0.35s ease;
  transition: all 0.35s ease;
}

#accordion .panel-title .accordion-toggle.collapsed::after {
  content: "\f067";
  color: #30343d;
  border-color: #30343d;
}

#accordion .panel-body {
  border: none;
  background-color: #30343d;
  color: #fff;
  padding: 20px;
}

.panel-group .panel + .panel {
  margin-top: 10px;
}

/*	6 - b) Start Skills Styles
	****************************/
#skills {
  margin-top: 40px;
  margin-bottom: 55px;
}

#skills .skill .progress {
  overflow: visible;
  background-color: transparent;
  -webkit-box-shadow: none;
          box-shadow: none;
  height: 10px;
}

#skills .skill .progress .progress-bar {
  background-color: #e85c41;
  position: relative;
  -webkit-transition: all 1s ease;
  transition: all 1s ease;
}

#skills .skill .progress .progress-bar .percent {
  position: absolute;
  width: 40px;
  height: 40px;
  line-height: 40px;
  border-radius: 50%;
  text-align: center;
  background-color: #e85c41;
  -webkit-transform: scale(0);
      -ms-transform: scale(0);
          transform: scale(0);
  top: -15px;
  right: -20px;
  font-size: 16px;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

#skills .skill + .skill {
  margin-top: 35px;
}
/* End About Section */

/*	7 - Start My Progress Section
	****************************/
#progress {
  background: #e31d1a;
  background-size: cover;
  color: #fff;
}

#progress .heading-underline {
  background-color: #fff;
}


#progress .progress-fact {
  margin-bottom: 40px;
}

#progress .progress-fact i {
  font-size: 60px;
}

#progress .progress-fact .timer {
  display: block;
  font-weight: 400;
  font-size: 60px;
  margin-top: 10px;
  margin-bottom: 10px;
  min-height: 90px;
}

#progress p {
  color: #fff;
}
/* End My Progress Section */

/*	8 - Start Portfolio Section
	****************************/
#portfolio .project {
  padding: 0;
  overflow: hidden;
  position: relative;
}

#portfolio .project .project-img-wrapper {
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

#portfolio .project .img-overlay {
  background-color: #30343d;
  color: #fff;
  position: absolute;
  left: 0;
  right: 0;
  width: 100%;
  height: 80px;
  bottom: -80px;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

#portfolio .project .img-overlay .overlay-text {
  padding: 30px 20px;
}

#portfolio .project .img-overlay .overlay-text h4 {
  color: #fff;
  margin: 0;
}

#portfolio .project .img-overlay .icons {
  position: absolute;
  right: 20px;
  top: 50%;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
}

#portfolio .project .img-overlay .icons i {
  cursor: pointer;
  display: inline-block;
  width: 40px;
  height: 40px;
  line-height: 40px;
  border-radius: 0;
  text-align: center;
  border: 1px solid #fff;
  color: #fff;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

#portfolio .project .img-overlay .icons i:hover {
  background-color: #e85c41;
  border-color: transparent;
}

#portfolio .project:hover .project-img-wrapper {
  -webkit-transform: translateY(-70px);
      -ms-transform: translateY(-70px);
          transform: translateY(-70px);
}

#portfolio .project:hover .img-overlay {
  bottom: 0;
}

#portfolio .project-description,
#portfolio .project-details {
  margin-top: 40px;
  margin-bottom: 40px;
}

#portfolio .project-details li {
  padding: 10px 0;
  border-bottom: 1px solid #eee;
}

#portfolio .project-details li span {
  display: inline-block;
  min-width: 120px;
  font-weight: 700;
}

#portfolio .project-details li a {
  color: #e85c41;
}

#portfolio .project-details li a:hover {
  color: #30343d;
}

#portfolio .load-more {
  margin-top: 40px;
  margin-bottom: 40px;
}
/* End Portfolio Section */

/*	9 - Start Banner Section
	****************************/
#banner {
  background-color: #e85c41;
}

#banner .content {
  margin-bottom: 30px;
}

#banner h2 {
  color: #fff;
}

#banner p {
  color: #ddd;
  margin-bottom: 0;
}

#banner .btn-wrapper {
  margin-top: 10px;
  margin-bottom: 40px;
}

#banner .btn-wrapper .btn {
  margin-top: 0;
  margin-bottom: 0;
}

#banner .btn-wrapper .btn:hover {
  color: #e85c41;
  background-color: #fff;
}
/* End Banner Section */

/*	10 - Start Services Section
	****************************/

#services .service {
  margin-bottom: 40px;
  aheight: 130px;
}

#services .service i {
  width: 60px;
  height: 60px;
  line-height: 60px;
  border-radius: 50%;
  text-align: center;
  font-size: 30px;
  color: #30343d;
  border: 1px solid #30343d;
  margin-bottom: 20px;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

#services .service h3 {
  margin-bottom: 20px;
  font-size: 19px;
}

#services .service:hover i {
  background-color: #e85c41;
  color: #fff;
  border-color: transparent;
}
/* End Services Section */

/*	11 - Start Subscribe Section
	****************************/
#subscribe {
  background: url("../img/subscribe-bg.jpg") no-repeat center;
  background-size: cover;
  padding-bottom: 80px;
}

#subscribe .email-input {
  width: 100%;
  height: 60px;
  padding-left: 20px;
  outline: none;
  border: 0;
  color: #30343d;
}

#subscribe .btn {
  position: absolute;
  right: 15px;
  top: 0;
  width: 200px;
  height: 60px;
  margin: 0;
}

#subscribe .btn:hover {
  background-color: #fff;
  color: #e85c41;
}
/* End Subscribe Section */

/*	12 - Start Testimonials Section
	****************************/
#testimonials .testimonial .content i {
  font-size: 32px;
  color: #e85c41;
  float: left;
  margin-right: 10px;
}

#testimonials .testimonial .author .author-img {
  margin: 40px auto;
  width: 150px;
  height: 150px;
  line-height: 150px;
  border-radius: 50%;
  text-align: center;
}

#testimonials .testimonial .author .author-img img {
  border-radius: 50%;
}

#testimonials .testimonial .author .author-name {
  margin-bottom: 40px;
}

#testimonials .testimonial p {
  font-style: italic;
}

#testimonials .owl-prev,
#testimonials .owl-next {
  width: 50px;
  height: 50px;
  line-height: 50px;
  border-radius: 0;
  text-align: center;
  position: absolute;
  top: 50%;
  background-color: #30343d;
  color: #fff;
  font-size: 32px;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

#testimonials .owl-prev:hover,
#testimonials .owl-next:hover {
  background-color: #e85c41;
}

#testimonials .owl-prev {
  left: 0;
}

#testimonials .owl-next {
  right: 0;
}

#testimonials .owl-dots {
  line-height: 0;
  margin-bottom: 40px;
}

#testimonials .owl-dots .owl-dot {
  display: inline-block;
  width: 20px;
  height: 3px;
  border-radius: 3px;
  background-color: #30343d;
  cursor: pointer;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

#testimonials .owl-dots .owl-dot.active {
  background-color: #e85c41;
}

#testimonials .owl-dots .owl-dot + .owl-dot {
  margin-left: 10px;
}
/* End Testimonials Section */

/*	13 - Start Clients Section
	****************************/
#clients {
  padding: 80px 0;
  background-color: #f6f6f6;
}

#clients .client {
  padding: 10px 20px;
}

#clients .client img {
  max-width: 100%;
  opacity: 0.5;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

#clients .client img:hover {
  opacity: 1;
}
/* End Clients Section */

/*	14 - Start Contact Section
	****************************/
#contact .contact-details {
  margin-bottom: 40px;
}

#contact .contact-details i {
  width: 100px;
  height: 100px;
  line-height: 100px;
  border-radius: 50%;
  text-align: center;
  color: #fff;
  background-color: #30343d;
  font-size: 40px;
  margin-bottom: 20px;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

#contact .contact-details:hover i {
  background-color: #e85c41;
}

#contact .or {
  text-transform: uppercase;
  position: relative;
  margin: 160px auto 200px;
}

#contact .or::before, #contact .or::after {
  content: "";
  position: absolute;
  width: 2px;
  height: 100px;
  background-color: #30343d;
  left: 50%;
}

#contact .or::before {
  top: -120px;
}

#contact .or::after {
  bottom: -120px;
}

#contact .social-links {
  margin: 30px auto;
}

#contact .social-links a {
  display: inline-block;
  margin-top: 10px;
  margin-bottom: 10px;
}

#contact .social-links a + a {
  margin-left: 5px;
}

#contact .social-links i {
  display: inline-block;
  width: 40px;
  height: 40px;
  line-height: 40px;
  border-radius: 0;
  text-align: center;
  background-color: #30343d;
  color: #fff;
  font-size: 18px;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

#contact .social-links i:hover {
  background-color: #e85c41;
}
/* End Contact Section */

/*	15 - Start Footer Section
	****************************/
footer {
  background-color: #24262a;
  padding: 40px 0;
}

footer p {
  margin: 0;
}

footer p .colored {
  color: #e85c41;
}
/* End Footer Section */

/*	16 - Start To-Top Button
	****************************/
#to-top {
  position: fixed;
  bottom: -20%;
  right: 20px;
  width: 50px;
  height: 50px;
  line-height: 50px;
  border-radius: 0;
  text-align: center;
  background-color: #30343d;
  color: #fff;
  cursor: pointer;
  font-size: 24px;
  -webkit-transform: scale(0);
      -ms-transform: scale(0);
          transform: scale(0);
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

#to-top:hover {
  background-color: #e85c41;
}

#to-top.appeared {
  bottom: 20px;
  -webkit-transform: scale(1);
      -ms-transform: scale(1);
          transform: scale(1);
}
/* End To-Top Button */

/*	17 - Start Loading Page
	****************************/
.loading-page {
  position: fixed;
  z-index: 1500;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #fff;
}

.loading-page .spinner {
  width: 50px;
  height: 50px;
  position: absolute;
  top: 50%;
  left: 50%;
  margin-left: -25px;
  margin-top: -25px;
  -webkit-animation: rotate 2s infinite linear;
          animation: rotate 2s infinite linear;
}

.loading-page .spinner .dot {
  width: 60%;
  height: 60%;
  line-height: 60%;
  border-radius: 50%;
  text-align: center;
  background-color: #e85c41;
  -webkit-animation: bounce 2s infinite ease-in-out;
          animation: bounce 2s infinite ease-in-out;
}

.loading-page .spinner .d1 {
  top: 0;
}

.loading-page .spinner .d2 {
  bottom: 0;
  -webkit-animation-delay: -1s;
          animation-delay: -1s;
  background-color: #30343d;
}

@-webkit-keyframes bounce {
  0%, 100% {
    -webkit-transform: scale(0);
            transform: scale(0);
  }
  50% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}

@keyframes bounce {
  0%, 100% {
    -webkit-transform: scale(0);
            transform: scale(0);
  }
  50% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}

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

@keyframes rotate {
  100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}
/* End Loading Page */

/*	18 - Start Media Queries
	****************************/
@media (max-width: 480px) {
  #subscribe .btn {
    position: static;
    width: 140px;
    margin-top: 10px;
    float: left;
  }
}
