/*
// Table of content
// -----------------------------------------------------------------------------
// - 1. Buttons
// - 2. Forms
// - 3. Navbar
// - 4. Accordions
// - 5. Teams
// - 6. Testimonials
// - 7. Progress
// - 8. Galleries
// - 9. Imageboxes
*/
/* -----------------------------------------------------------------------------
// 1. Buttons
// ----------------------------------------------------------------------------- */
.btn {
  display: inline-block;
  padding: 10px 15px;
  margin-bottom: 10px;
  font-family: "Josefin Sans", Helvetica, Arial, sans-serif;
  border: 1px solid transparent;
  letter-spacing: 1px;
  border-radius: 0;
  text-transform: uppercase;
  -webkit-transition: background .5s;
  -moz-transition: background .5s;
  -ms-transition: background .5s;
  -o-transition: background .5s;
  transition: background .5s; }
  .btn:hover, .btn:focus {
    text-decoration: none;
    outline: none; }

.btn-xs {
  font-size: 10px;
  padding: 10px 15px; }

.btn-sm {
  font-size: 11px;
  padding: 10px 20px; }

.btn {
  font-size: 12px;
  padding: 12px 30px; }

.btn-lg {
  font-size: 18px;
  padding: 15px 45px; }

.btn-xg {
  font-size: 24px;
  padding: 20px 50px; }

.btn-fullwidth {
  width: 100%;
  text-align: center; }

.btn-light {
  background-color: #fff;
  color: #c4c4c4;
  border-color: #fff; }
  .btn-light:hover {
    background: transparent;
    color: #c4c4c4;
    border-color: #fff; }

.btn-grey {
  background-color: #c4c4c4;
  color: #fff;
  border-color: #c4c4c4; }
  .btn-grey:hover {
    background: transparent;
    color: #c4c4c4;
    border-color: #c4c4c4; }

.btn-dark {
  background-color: #181818;
  color: #fff;
  border-color: #181818; }
  .btn-dark:hover {
    background: transparent;
    color: #181818;
    border-color: #181818; }

.btn-colored {
  background-color: #d16651;
  color: #fff;
  border-color: #d16651; }
  .btn-colored:hover {
    background: transparent;
    color: #d16651;
    border-color: #d16651; }

.btn-bordered {
  background: transparent;
  border-width: 1px; }
  .btn-bordered.btn-light {
    color: #fff; }
    .btn-bordered.btn-light:hover {
      background-color: #fff;
      color: #181818; }
  .btn-bordered.btn-grey {
    color: #c4c4c4; }
    .btn-bordered.btn-grey:hover {
      background-color: #c4c4c4;
      color: #fff; }
  .btn-bordered.btn-dark {
    color: #181818; }
    .btn-bordered.btn-dark:hover {
      background-color: #181818;
      color: #fff; }
  .btn-bordered.btn-colored {
    color: #d16651; }
    .btn-bordered.btn-colored:hover {
      background-color: #d16651;
      color: #fff; }
	  .img .popup img{ width:auto !important;}
	  .item-img.product-img.img {
    margin-bottom: 0;
}

/* -----------------------------------------------------------------------------
// 2. Forms
// ----------------------------------------------------------------------------- */
.form-control {
  height: 50px;
  padding: 10px 20px;
  font-size: 14px;
  font-family: "Josefin Sans", Helvetica, Arial, sans-serif;
  color: #181818;
  background-color: #f9f9f9;
  border: none;
  border-radius: 0;
  -webkit-box-shadow: none;
  -moz-box-shadow: none;
  -ms-box-shadow: none;
  box-shadow: none;
  margin-bottom: 20px; }
  .form-control:focus {
    border: none;
    outline: 0;
    -webkit-box-shadow: inset 0 0 5px rgba(196, 196, 196, 0.4);
    -moz-box-shadow: inset 0 0 5px rgba(196, 196, 196, 0.4);
    -ms-box-shadow: inset 0 0 5px rgba(196, 196, 196, 0.4);
    -o-box-shadow: inset 0 0 5px rgba(196, 196, 196, 0.4);
    box-shadow: inset 0 0 5px rgba(196, 196, 196, 0.4); }

textarea {
  height: 150px; }

input:focus::-webkit-input-placeholder,
textarea:focus::-webkit-input-placeholder {
  color: #181818;
  -webkit-transition: opacity .3s;
  -moz-transition: opacity .3s;
  -ms-transition: opacity .3s;
  -o-transition: opacity .3s;
  transition: opacity .3s; }

input:focus::-webkit-input-placeholder,
textarea:focus::-webkit-input-placeholder {
  opacity: 0; }

.select-container {
  display: block;
  position: relative;
  background-color: #f9f9f9;
  cursor: pointer;
  color: #9c9c9c;
  height: 50px;
  width: 100%;
  font-size: 14px;
  padding: 15px 0 0 15px;
  margin-bottom: 15px; }
  .select-container:after {
    content: "\f0d7";
    font-family: "FontAwesome";
    float: right;
    color: #c4c4c4;
    display: inline-block;
    margin-top: -15px;
    padding: 16px; }
  .select-container select {
    opacity: 0;
    position: absolute;
    top: 15px;
    left: 0;
    height: 100%;
    width: 100%;
    font-size: 36px;
    cursor: pointer; }
    .select-container select:hover {
      cursor: pointer; }

input[type="radio"],
input[type="checkbox"] {
  display: none; }
  input[type="radio"] + label,
  input[type="checkbox"] + label {
    font-weight: normal;
    cursor: pointer; }
    input[type="radio"] + label:before,
    input[type="checkbox"] + label:before {
      content: ' ';
      display: inline-block;
      width: 20px;
      height: 20px;
      margin: -1px 10px 0 0;
      vertical-align: middle;
      cursor: pointer;
      text-align: center;
      line-height: 20px;
      color: #fff;
      background-color: #f1f1f1;
      -moz-border-radius: 50%;
      border-radius: 50%; }
  input[type="radio"]:checked + label:before,
  input[type="checkbox"]:checked + label:before {
    font-family: 'FontAwesome';
    content: '\f00c';
    font-size: 10px;
    background-color: #d16651; }

input[type="checkbox"] + label:before {
  -moz-border-radius: 4px;
  border-radius: 4px; }

input[type="radio"] + label:before,
input[type="radio"]:checked + label:before {
  -webkit-transition: background-color 0.5s linear;
  -moz-transition: background-color 0.5s linear;
  -o-transition: background-color 0.5s linear;
  transition: background-color 0.5s linear; }

/* -----------------------------------------------------------------------------
// 3. Navbar
// ----------------------------------------------------------------------------- */
.navbar-default {
  background-color: transparent;
  margin-bottom: 0;
  border: none; }

  .navbar-default .navbar-nav li a {
    font-size: 14px;
    text-transform: uppercase;
    font-family: "Josefin Sans", Helvetica, Arial, sans-serif;
    color: #333;
    padding: 35px 20px;
    -webkit-transition: color 0.5s;
    -moz-transition: color 0.5s;
    -ms-transition: color 0.5s;
    -o-transition: color 0.5s;
    transition: color 0.5s; border-bottom: 2px solid; border-color: transparent;}

	  .navbar-default .navbar-nav li a:hover {
    background: #000 none repeat scroll 0 0;
    color: #fff;
    text-decoration: none;
}
  .navbar-default .navbar-nav li.active a,
  .navbar-default .navbar-nav li.active a:hover {
 background:#000; color:#fff;}
 .navbar-default .navbar-nav li a:focus{  outline:none !important; }
  /*.navbar-default .navbar-nav li.active > a, .navbar-default .navbar-nav li.active > a:hover, .navbar-default .navbar-nav li.active > a:focus, .navbar-default .navbar-nav li.open > a, .navbar-default .navbar-nav li.open > a:hover, .navbar-default .navbar-nav li.open > a:focus {
    background-color: transparent;}*/
  .navbar-default .navbar-nav li > .dropdown-menu {
    padding: 20px 25px;
    background-color: #181818; }
    .navbar-default .navbar-nav li > .dropdown-menu a {
      padding: 10px 0;
      color: #717171;
      text-transform: none; }
      .navbar-default .navbar-nav li > .dropdown-menu a:hover {
        background-color: transparent;
        color: #fff; }
    .navbar-default .navbar-nav li > .dropdown-menu .active a {
      color: #fff; }
  .navbar-default .navbar-nav li.mega {
    position: static; }
    .navbar-default .navbar-nav li.mega .dropdown-menu {
      width: 1170px;
      margin: 0 auto;
      left: 0;
      right: 0;
      padding: 20px 50px; }
      .navbar-default .navbar-nav li.mega .dropdown-menu h5 {
        margin-bottom: 3px;
        color: #fff;
        text-transform: uppercase; }
        .navbar-default .navbar-nav li.mega .dropdown-menu h5:after {
          content: ' ';
          display: block;
          height: 1px;
          width: 12px;
          margin: 5px 0 30px 0;
          background-color: #d16651; }
      .navbar-default .navbar-nav li.mega .dropdown-menu .active a {
        color: #fff; }
  .navbar-default .navbar-search i {
    font-size: 16px;
    color: #d16651; }
  .navbar-default .navbar-toggle {
    float: right;
    margin-top: 15px;
    border: none;
    background: none;
    color: #181818;
    font-size: 24px;
    cursor: pointer;
    -webkit-box-shadow: none;
    box-shadow: none; }
    .navbar-default .navbar-toggle:hover, .navbar-default .navbar-toggle:focus {
      text-decoration: none;
      background-color: transparent; }
    .navbar-default .navbar-toggle:focus {
      outline: none; }
    .navbar-default .navbar-toggle .icon-bar {
      position: relative;
      width: 30px;
      height: 3px;
      background-color: #000;
      -webkit-transition: all .5s ease-in-out;
      transition: all .5s ease-in-out; }
      .navbar-default .navbar-toggle .icon-bar:nth-of-type(2) {
        top: 1px; }
      .navbar-default .navbar-toggle .icon-bar:nth-of-type(3) {
        top: 2px; }
    .navbar-default .navbar-toggle.active .icon-bar:nth-of-type(1) {
      top: 6px;
      transform: rotate(45deg); }
    .navbar-default .navbar-toggle.active .icon-bar:nth-of-type(2) {
      background-color: transparent; }
    .navbar-default .navbar-toggle.active .icon-bar:nth-of-type(3) {
      top: -8px;
      transform: rotate(-45deg); }

@media (max-width: 768px) {


  .navbar-default .navbar-header {
    margin-bottom: 10px; }

  .navbar-default .navbar-nav li a {
    padding: 15px 20px;
    color: #181818; }
  .navbar-default .navbar-nav li.active a {
    color: #fff; background:#000;}

  .navbar-nav > li.mega h5 {
    margin-top: 30px; } }
@media (min-width: 1200px) {
  .navbar-nav > li.mega > .dropdown-menu {
    width: 1170px; } }
@media (min-width: 992px) {
  .navbar-nav > li.mega > .dropdown-menu {
    width: 970px; } }
@media (min-width: 768px) {
  .navbar-nav > li.mega > .dropdown-menu {
    width: 750px; }
}

@media (max-width: 1050px) {


	}

/* -----------------------------------------------------------------------------
// 4. ACCORDIONS
// ----------------------------------------------------------------------------- */
.panel-group .panel {
  margin-bottom: 10px;
  border-radius: 0;
  border: none;
  -webkit-box-shadow: none;
  box-shadow: none; }
.panel-group .panel-heading {
  padding: 0; }
.panel-group .panel-title {
  margin: 0 !important; }
  .panel-group .panel-title a {
    display: block;
    text-decoration: none;
    padding: 15px 0;
    font-size: 14px;
    color: #fff;
    background-color: #d16651;
    border: none;
    font-size: 11px; }
    .panel-group .panel-title a.collapsed {
      background-color: #313131; }
    .panel-group .panel-title a:before {
      font-family: "linea-arrows-10";
      content: '\e041';
      background-color: transparent;
      color: #fff;
      font-size: 16px;
      padding: 0 12px;
      position: relative;
      bottom: -4px; }
    .panel-group .panel-title a.collapsed:before {
      content: '\e048'; }
.panel-group .panel-collapse .panel-body {
  padding: 25px 35px; }
.panel-group .panel-collapse.in {
  background-color: #d16651; }
.panel-group .panel-collapse.in .panel-body {
  border: none;
  background-color: #d16651;
  color: #fff;
  font-size: 13px;
  padding-top: 15px;
  line-height: 24px; }

.panel-group.style2 .panel {
  border: none;
  -webkit-box-shadow: none;
  box-shadow: none; }
  .panel-group.style2 .panel + .panel {
    margin: 7px 0 7px 0;
    border-top: none; }
.panel-group.style2 .panel-title a {
  padding: 15px 0 15px 20px;
  color: #fff;
  background-color: #d16651; }
  .panel-group.style2 .panel-title a:before, .panel-group.style2 .panel-title a.collapsed:before {
    content: none; }
  .panel-group.style2 .panel-title a:after {
    font-family: "FontAwesome";
    content: '\f068';
    font-size: 12px;
    color: #fff;
    line-height: 25px;
    text-align: center;
    width: 25px;
    height: 25px;
    float: right;
    margin-right: 10px;
    margin-top: -5px;
    padding-left: 1px; }
  .panel-group.style2 .panel-title a.collapsed {
    background-color: #313131;
    color: #fff; }
    .panel-group.style2 .panel-title a.collapsed:after {
      content: '\f067';
      color: #c4c4c4; }
.panel-group.style2 .panel-collapse .panel-body {
  border-top: none;
  padding: 20px 35px 20px 25px; }

.panel-group.style3 .panel {
  border: none; }
  .panel-group.style3 .panel + .panel {
    margin: 0; }
.panel-group.style3 .panel-title a {
  padding: 15px 0 15px 20px;
  color: #d16651;
  background-color: #fff; }
  .panel-group.style3 .panel-title a:before, .panel-group.style3 .panel-title a.collapsed:before {
    content: none; }
  .panel-group.style3 .panel-title a.collapsed {
    color: #181818;
    border-bottom: 1px solid #f1f1f1; }
.panel-group.style3 .panel-collapse .panel-body {
  border-bottom: 1px solid #f1f1f1;
  padding: 20px 35px 20px 25px; }

.panel-group.style4 .panel-title a {
  display: block;
  text-decoration: none;
  padding: 0;
  font-size: 14px;
  color: #181818;
  background-color: #fff;
  border-color: #f1f1f1; }
  .panel-group.style4 .panel-title a:before, .panel-group.style4 .panel-title a.collapsed:before {
    content: none; }
  .panel-group.style4 .panel-title a i {
    display: inline-block;
    width: 40px;
    font-size: 18px;
    text-align: center;
    color: #fff;
    background-color: #d16651;
    padding: 15px 12px;
    margin-right: 10px;
    -webkit-transition: background-color .5s;
    transition: background-color .5s; }
  .panel-group.style4 .panel-title a.collapsed i {
    color: #c4c4c4;
    background-color: #f9f9f9; }
.panel-group.style4 .panel-collapse .panel-body {
  padding: 25px 35px;
  border-top: 1px solid #f1f1f1 !important; }

/* -----------------------------------------------------------------------------
// 5. Teams
// ----------------------------------------------------------------------------- */
figure.person.style1 {
  position: relative;
  height: 400px;
  overflow: hidden; }
  figure.person.style1 figcaption {
    position: absolute;
    bottom: 0;
    width: 100%;
    margin-bottom: -160px;
    padding: 30px;
    background: #181818;
    -webkit-transition: margin 0.5s;
    -moz-transition: margin 0.5s;
    -ms-transition: margin 0.5s;
    -o-transition: margin 0.5s;
    transition: margin 0.5s; }
    figure.person.style1 figcaption h4 {
      font-size: 18px;
      text-transform: uppercase;
      letter-spacing: 1px;
      color: #fff; }
      figure.person.style1 figcaption h4 small {
        display: block;
        font-family: "Josefin Sans", Helvetica, Arial, sans-serif;
        color: #d16651;
        font-size: 12px;
        margin-top: 10px;
        text-transform: uppercase; }
    figure.person.style1 figcaption p {
      margin: 25px 0; }
    figure.person.style1 figcaption .person-social {
      padding: 15px 0 0 0;
      border-top: 1px solid #303030; }
      figure.person.style1 figcaption .person-social li {
        display: inline-block;
        list-style-type: none;
        width: 20%;
        float: left; }
      figure.person.style1 figcaption .person-social a {
        display: inline-block;
        font-size: 16px;
        color: #3c3c3c;
        -webkit-transition: color 0.5s;
        -moz-transition: color 0.5s;
        -ms-transition: color 0.5s;
        -o-transition: color 0.5s;
        transition: color 0.5s; }
        figure.person.style1 figcaption .person-social a:hover {
          color: #fff; }
  figure.person.style1:hover figcaption {
    margin-bottom: 0; }

@media (max-width: 992px) {
  figure.person.style1 {
    margin-bottom: 20px; } }
@media (max-width: 767px) {
  figure.person.style1 figcaption {
    margin-bottom: -140px; } }
figure.person.style2 .person-img {
  height: 300px;
  overflow: hidden;
  padding: 10px;
  background-color: #fff;
  -webkit-transition: background-color .5s;
  transition: background-color .5s; }
figure.person.style2 figcaption {
  padding: 40px 40px 20px 40px;
  background: #fff;
  text-align: left;
  -webkit-transition: background-color .5s;
  transition: background-color .5s; }
  figure.person.style2 figcaption h4 {
    color: #4b4b4b;
    font-size: 15px;
    text-transform: uppercase;
    margin-bottom: 0; }
figure.person.style2 .person-social {
  background-color: #fff;
  padding: 15px 40px;
  border-top: 1px solid #f2f2f2;
  text-align: left;
  list-style: none;
  -webkit-transition: all .5s;
  transition: all .5s; }
  figure.person.style2 .person-social li {
    display: inline-block;
    margin-right: 10px; }
    figure.person.style2 .person-social li:last-child {
      margin-right: 0; }
  figure.person.style2 .person-social a {
    color: #c4c4c4; }
    figure.person.style2 .person-social a:hover {
      color: #d16651; }
figure.person.style2:hover .person-img,
figure.person.style2:hover figcaption,
figure.person.style2:hover .person-social {
  background-color: #4b4b4b; }
figure.person.style2:hover figcaption h4 {
  color: #fff; }
figure.person.style2:hover .person-social {
  border-color: #545454; }

@media (max-width: 992px) {
  figure.person.style2 {
    margin-bottom: 20px; } }
figure.person.style3 {
  padding-top: 30px;
  text-align: center;
  border: 1px solid #e5e5e5;
  -webkit-transition: border-color .5s;
  transition: border-color .5s; }
  figure.person.style3 .person-img {
    height: 150px;
    width: 150px;
    margin: 0 auto 25px auto;
    overflow: hidden;
    border-radius: 100%; }
  figure.person.style3 figcaption {
    padding: 0 15px; }
    figure.person.style3 figcaption h4 {
      color: #4b4b4b;
      font-size: 15px;
      text-transform: uppercase;
      margin-bottom: 0; }
  figure.person.style3 .person-social {
    background-color: #f9f9f9;
    margin: 25px 0 0 0;
    padding: 15px 0;
    text-align: center;
    list-style: none; }
    figure.person.style3 .person-social li {
      display: inline-block;
      margin-right: 10px; }
      figure.person.style3 .person-social li:last-child {
        margin-right: 0; }
    figure.person.style3 .person-social a {
      color: #c4c4c4; }
      figure.person.style3 .person-social a:hover {
        color: #d16651; }
  figure.person.style3:hover {
    border-color: #d16651; }

@media (max-width: 992px) {
  figure.person.style3 {
    margin-bottom: 20px; } }
figure.person.style4 {
  position: relative;
  height: 350px;
  overflow: hidden; }
  figure.person.style4 figcaption {
    position: absolute;
    right: 0;
    left: 0;
    bottom: 20px;
    margin: 0 20px;
    padding: 10px;
    background: #fff;
    text-align: center;
    z-index: 10;
    -webkit-transition: background-color .3s;
    transition: background-color .3s; }
    figure.person.style4 figcaption h4 {
      color: #4b4b4b;
      font-size: 15px;
      text-transform: uppercase;
      margin-bottom: 5px; }
  figure.person.style4 .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.85);
    opacity: 0;
    -webkit-transition: opacity .3s;
    transition: opacity .3s; }
  figure.person.style4 .person-social {
    position: absolute;
    top: 50%;
    width: 100%;
    padding: 0;
    text-align: center;
    list-style: none;
    opacity: 0;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    -webkit-transition: opacity .5s;
    transition: opacity .5s; }
    figure.person.style4 .person-social li {
      display: inline-block;
      margin-right: 15px; }
      figure.person.style4 .person-social li:last-child {
        margin-right: 0; }
    figure.person.style4 .person-social a {
      display: inline-block;
      text-align: center;
      font-size: 24px;
      color: #717171;
      -webkit-transition: color .5s;
      transition: color .5s; }
      figure.person.style4 .person-social a:hover {
        color: #fff; }
  figure.person.style4:hover figcaption {
    background-color: #d16651;
    color: #fff; }
    figure.person.style4:hover figcaption h4 {
      color: #fff; }
  figure.person.style4:hover .overlay,
  figure.person.style4:hover .person-social {
    opacity: 1; }

@media (max-width: 992px) {
  figure.person.style4 {
    margin-bottom: 20px; } }
/* -----------------------------------------------------------------------------
// 6. Testimonials
// ----------------------------------------------------------------------------- */
.testimonials-slider .testimonial {
  text-align: center;
  width: 70%;
  margin: 0 auto; }
  .testimonials-slider .testimonial h3 {
    font-weight: 500;
    font-size: 30px;
    line-height: 36px;
    letter-spacing: 3px;
    text-transform: uppercase; }
  .testimonials-slider .testimonial h4 {
    font-family: "Droid Serif", Helvetica, Arial, sans-serif;
    font-size: 14px;
    font-weight: 400;
    margin-top: 30px;
    color: #9c9c9c; }
.testimonials-slider .owl-buttons .owl-prev,
.testimonials-slider .owl-buttons .owl-next {
  position: absolute;
  border-radius: 100%;
  color: #e7e7e7;
  border: 2px solid #e7e7e7;
  background-color: transparent;
  -webkit-transition: all .5s;
  transition: all .5s; }
  .testimonials-slider .owl-buttons .owl-prev:hover,
  .testimonials-slider .owl-buttons .owl-next:hover {
    border-color: #d16651;
    color: #d16651;
    background-color: transparent; }
.testimonials-slider .owl-buttons .owl-prev {
  left: 10%;
  top: 40%; }
.testimonials-slider .owl-buttons .owl-next {
  right: 10%;
  top: 40%; }
.testimonials-slider .owl-pagination {
  position: absolute;
  bottom: -50px;
  right: 0;
  left: 0;
  margin: 0 auto;
  text-align: center; }
  .testimonials-slider .owl-pagination .owl-page {
    display: inline-block; }
    .testimonials-slider .owl-pagination .owl-page span {
      display: block;
      width: 8px;
      height: 8px;
      margin: 5px 3px;
      filter: Alpha(Opacity=100);
      opacity: 1;
      border: none;
      -webkit-border-radius: 20px;
      -moz-border-radius: 20px;
      border-radius: 20px;
      background-color: #ccc; }
    .testimonials-slider .owl-pagination .owl-page.active span {
      filter: Alpha(Opacity=100);
      opacity: 1;
      border-color: #181818;
      background-color: #181818; }
@media (max-width: 500px) {
  .testimonials-slider .owl-buttons {
    display: none; } }

.testimonial-bg {
  background: #4a4848 url(../img/devices-bg.jpg) center center; }

.testimonial.style3 {
  width: 70%;
  text-align: center; }
  .testimonial.style3 p {
    font-family: "Josefin Sans", Helvetica, Arial, sans-serif;
    font-size: 24px;
    line-height: 36px;
    color: #878787; }
  .testimonial.style3 h4 {
    margin-top: 50px;
    color: #d16651;
    text-transform: uppercase; }
  .testimonial.style3 .avatar {
    position: relative;
    height: 100px;
    width: 100px;
    margin: 0 auto 30px auto;
    border-radius: 100%;
    overflow: hidden; }

.testimonial.style4 {
  text-align: center; }
  .testimonial.style4 p {
    font-family: "Josefin Sans", Helvetica, Arial, sans-serif;
    font-size: 24px;
    line-height: 36px;
    color: #4b4b4b; }
  .testimonial.style4 h4 {
    margin-top: 50px;
    color: #d16651;
    text-transform: uppercase; }
    .testimonial.style4 h4 .job {
      display: block;
      color: #9c9c9c; }
  .testimonial.style4 .avatar {
    position: relative;
    bottom: -40px;
    height: 100px;
    width: 100px;
    margin: 0 auto;
    border-radius: 100%;
    overflow: hidden;
    border: 5px solid #fff; }

/* -----------------------------------------------------------------------------
// 7. Progress
// ----------------------------------------------------------------------------- */
.progress-title {
  text-transform: uppercase;
  margin-bottom: 5px;
  color: #fff; }

.progress {
  height: 10px;
  margin-bottom: 30px;
  background-color: #000;
  background-color: rgba(0, 0, 0, 0.1);
  overflow: visible;
  border-radius: 0;
  -webkit-box-shadow: none;
  box-shadow: none; }
  .progress .progress-bar {
    position: relative;
    background-color: #fff;
    -webkit-box-shadow: none;
    box-shadow: none; }
  .progress .progress-number {
    font-family: "Josefin Sans", Helvetica, Arial, sans-serif;
    position: absolute;
    top: -35px;
    right: -18px;
    padding: 2px 5px;
    font-size: 10px;
    background-color: #4b4b4b;
    border-radius: 2px; }
    .progress .progress-number i {
      position: absolute;
      bottom: -10px;
      left: 5px;
      font-size: 18px;
      color: #4b4b4b; }
  .progress.style2 .progress-bar {
    perspective-origin: relative;
    background-image: -webkit-linear-gradient(0deg, #20abd0 0%, #ea088c 100%);
    background-image: -moz-linear-gradient(0deg, #20abd0 0%, #ea088c 100%);
    background-image: -ms-linear-gradient(0deg, #20abd0 0%, #ea088c 100%);
    background-image: -o-linear-gradient(0deg, #20abd0 0%, #ea088c 100%); }
  .progress.style3 {
    position: relative;
    height: 35px; }
    .progress.style3 .progress-title {
      position: absolute;
      top: 0;
      left: 15px;
      z-index: 1;
      font-size: 14px;
      color: #fff; }
    .progress.style3 .progress-number {
      position: absolute;
      right: 10px;
      top: 6px;
      color: #fff;
      background: transparent; }
    .progress.style3 .progress-bar.pink {
      background-color: #d16651; }
    .progress.style3 .progress-bar.lightblue {
      background-color: #26a7ce; }
    .progress.style3 .progress-bar.darkblue {
      background-color: #5d7abb; }
    .progress.style3 .progress-bar.purple {
      background-color: #964ca8; }
  .progress.style4 {
    position: relative;
    height: 50px;
    margin-bottom: 10px;
    border-radius: 0;
    background-color: #313131; }
    .progress.style4 .progress-title {
      position: absolute;
      top: 10px;
      left: 15px;
      z-index: 1;
      font-size: 10px;
      color: #fff;
      letter-spacing: 1px; }
    .progress.style4 .progress-number {
      position: absolute;
      right: 10px;
      top: 17px;
      font-size: 12px;
      color: #fff;
      background: transparent; }
    .progress.style4 .progress-bar {
      position: initial;
      border-radius: 0;
      background-color: #d16651; }
    .progress.style4 .progress-bar-wrapper {
      position: relative;
      background-color: #464646;
      float: left;
      width: 60%;
      height: 12px;
      margin: 20px 0 0 120px; }

.countbox {
  margin-bottom: 20px;
  text-align: center; }
  .countbox .icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 30px auto;
    text-align: center;
    color: #fff;
    background-color: #717171;
    background-color: rgba(255, 255, 255, 0.1);
    -webkit-transition: background-color 0.5s;
    -moz-transition: background-color 0.5s;
    -ms-transition: background-color 0.5s;
    -o-transition: background-color 0.5s;
    transition: background-color 0.5s; }
    .countbox .icon i {
      line-height: 80px;
      font-size: 30px; }
  .countbox h4 {
    font-size: 48px;
    font-weight: 400;
    color: #fff; }
  .countbox:hover .icon {
    background-color: #d16651;
    color: #fff; }

@media (max-width: 992px) {
  .countbox {
    margin-bottom: 30px; } }
.work-step {
  text-align: center;
  margin-bottom: 30px; }
  .work-step:after {
    content: ' ';
    display: inline-block;
    position: absolute;
    top: 54px;
    right: -40px;
    width: 100px;
    height: 2px;
    background-color: #f2f2f2; }
  .work-step.last-step:after {
    content: none; }
  @media (max-width: 1200px) {
    .work-step:after {
      width: 50px;
      right: -30px; } }
  @media (max-width: 992px) {
    .work-step:after {
      content: none; } }
  .work-step .icon {
    width: 110px;
    height: 110px;
    margin: 0 auto 20px auto;
    text-align: center;
    line-height: 100px;
    color: #c4c4c4;
    font-size: 24px;
    background: transparent;
    border-radius: 100%;
    background-image: -webkit-linear-gradient(0deg, #20abd0 0%, #ea088c 100%);
    background-image: -moz-linear-gradient(0deg, #20abd0 0%, #ea088c 100%);
    background-image: -ms-linear-gradient(0deg, #20abd0 0%, #ea088c 100%);
    background-image: -o-linear-gradient(0deg, #20abd0 0%, #ea088c 100%);
    background-image: linear-gradient(0deg, #20abd0 0%, #ea088c 100%); }
    .work-step .icon:last-child:after {
      content: none; }
    .work-step .icon .align {
      position: relative;
      top: 7.5px;
      width: 95px;
      height: 95px;
      border-radius: 100%;
      margin: 0 auto;
      background: #fff; }
  .work-step h4 {
    text-transform: uppercase; }

.work-progress {
  background: url(../img/devices-bg.jpg) center center; }
  .work-progress .section-headline h4 {
    color: #fff; }
  .work-progress .step {
    margin-bottom: 30px; }
    .work-progress .step:before, .work-progress .step:after {
      content: " ";
      display: table; }
    .work-progress .step:after {
      clear: both; }
    .work-progress .step:hover .icon {
      background-color: #d16651;
      border-color: #d16651; }
  .work-progress .icon {
    float: left;
    width: 70px;
    height: 70px;
    margin-right: 40px;
    line-height: 70px;
    border-radius: 100%;
    text-align: center;
    background-color: transparent;
    font-size: 24px;
    color: #fff;
    border: 2px solid #fff;
    -webkit-transition: background-color .5s;
    -moz-transition: background-color .5s;
    -ms-transition: background-color .5s;
    -o-transition: background-color .5s;
    transition: background-color .5s; }
  .work-progress .align {
    float: left; }
  .work-progress h5 {
    text-transform: uppercase;
    margin-bottom: 30px;
    color: #fff; }

/* -----------------------------------------------------------------------------
// 8. Galleries
// ----------------------------------------------------------------------------- */
.owl-buttons .owl-prev,
.owl-buttons .owl-next {
  position: absolute;
  top: 45%;
  width: 40px;
  height: 40px;
  text-align: center;
  line-height: 40px;
  background-color: #fff;
  color: #181818;
  opacity: .3; }
  .owl-buttons .owl-prev:hover,
  .owl-buttons .owl-next:hover {
    color: #d16651;
    opacity: 1; }
.owl-buttons .owl-prev {
  left: 0; }
.owl-buttons .owl-next {
  right: 0; }

.owl-pagination {
  position: absolute;
  bottom: 20px;
  right: 0;
  left: 0;
  margin: 0 auto;
  text-align: center; }
  .owl-pagination .owl-page {
    display: inline-block; }
    .owl-pagination .owl-page span {
      display: block;
      width: 12px;
      height: 12px;
      margin: 5px 7px;
      filter: Alpha(Opacity=50);
      opacity: 0.5;
      border: 2px solid #fff;
      -webkit-border-radius: 20px;
      -moz-border-radius: 20px;
      border-radius: 20px;
      background: transparent; }
    .owl-pagination .owl-page.active span {
      filter: Alpha(Opacity=100);
      opacity: 1;
      border-color: #d16651;
      background-color: #d16651; }

.img {
  position: relative;
  margin-bottom: 30px; }
  .img:hover .popup {
    opacity: 1; }
  .img .popup {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #d16651;
    background-color: rgba(0, 0, 0, 0.85);
    text-align: center;
    opacity: 0;
    -webkit-transition: opacity .5s;
    transition: opacity .5s; }
    .img .popup i {
      position: relative;
      top: 40%;
      color: #fff;
      font-size: 18px; }
    .img .popup img {
      position: absolute;
      top: 45%;
      left: 0;
      right: 0;
      margin: 0 auto;
      transform: translateY(-50%); }
    .img .popup:focus {
      outline: none; }

.full-gallery-slider .owl-prev,
.full-gallery-slider .owl-next {
  top: 40%;
  width: 30px;
  height: 30px;
  line-height: 30px; }
.full-gallery-slider .owl-pagination {
  bottom: -40px; }
  .full-gallery-slider .owl-pagination .owl-page span {
    border: 2px solid #c6c6c6; }
  .full-gallery-slider .owl-pagination .owl-page.active span {
    border-color: #d16651;
    background-color: transparent; }
.full-gallery-slider .caption {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  text-align: center;
  margin: 0 auto;
  opacity: 0;
  background-color: #181818;
  background-color: rgba(0, 0, 0, 0.75);
  -webkit-transition: opacity .5s;
  -moz-transition: opacity .5s;
  -ms-transition: opacity .5s;
  -o-transition: opacity .5s;
  transition: opacity .5s; }
  .full-gallery-slider .caption .align {
    position: absolute;
    top: 50%;
    right: 0;
    left: 0;
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    transform: translateY(-50%); }
  .full-gallery-slider .caption h5 {
    color: #fff;
    text-transform: uppercase;
    margin-bottom: 0; }
    .full-gallery-slider .caption h5:after {
      content: '_';
      display: block;
      color: #d16651;
      margin: -3px 0 5px 0; }
  .full-gallery-slider .caption .meta {
    position: absolute;
    bottom: 0;
    right: 0; }
    .full-gallery-slider .caption .meta a {
      display: inline-block;
      width: 30px;
      height: 30px;
      text-align: center;
      line-height: 30px;
      background-color: #d16651;
      color: #fff; }
      .full-gallery-slider .caption .meta a + a {
        margin-left: -4px;
        background-color: #fff;
        color: #181818; }
.full-gallery-slider .owl-item:hover .caption {
  opacity: 1; }

/* -----------------------------------------------------------------------------
// 9. Imageboxes
// ----------------------------------------------------------------------------- */
.imgbox.style1 {
  background-color: #f9f9f9;
  padding: 15px 0 15px 30px;
  margin-bottom: 40px;
  -webkit-border-top-right-radius: 100px;
  border-top-right-radius: 100px;
  -webkit-border-bottom-right-radius: 100px;
  border-bottom-right-radius: 100px; }
  .imgbox.style1 .img {
    width: 100px;
    height: 100px;
    border-radius: 100%;
    margin-right: 15px;
    margin-bottom: 0;
    overflow: hidden;
    float: right; }
  .imgbox.style1 h4 {
    text-transform: uppercase;
    color: #4b4b4b; }
  .imgbox.style1.opposite {
    padding: 15px 0 15px 0;
    -webkit-border-top-right-radius: 0;
    border-top-right-radius: 0;
    -webkit-border-bottom-right-radius: 0;
    border-bottom-right-radius: 0;
    -webkit-border-top-left-radius: 100px;
    border-top-left-radius: 100px;
    -webkit-border-bottom-left-radius: 100px;
    border-bottom-left-radius: 100px; }
    .imgbox.style1.opposite .img {
      float: left;
      margin: 0 30px 0 15px; }
  .imgbox.style1:before, .imgbox.style1:after {
    content: " ";
    display: table; }
  .imgbox.style1:after {
    clear: both; }

.imgbox.style2 {
  background-color: #fff;
  margin-bottom: 40px;
  -webkit-transition: background .5s;
  -moz-transition: background .5s;
  -ms-transition: background .5s;
  -o-transition: background .5s;
  transition: background .5s; }
  .imgbox.style2 .date {
    position: absolute;
    top: 0;
    left: 30px;
    z-index: 10;
    padding: 10px 15px;
    font-family: "Josefin Sans", Helvetica, Arial, sans-serif;
    font-size: 12px;
    text-transform: uppercase;
    background-color: #d16651;
    color: #fff;
    -webkit-box-shadow: 3.5px 3.5px 0px 0px rgba(0, 0, 0, 0.1);
    -moz-box-shadow: 3.5px 3.5px 0px 0px rgba(0, 0, 0, 0.1);
    -ms-box-shadow: 3.5px 3.5px 0px 0px rgba(0, 0, 0, 0.1);
    -o-box-shadow: 3.5px 3.5px 0px 0px rgba(0, 0, 0, 0.1);
    box-shadow: 3.5px 3.5px 0px 0px rgba(0, 0, 0, 0.1); }
    .imgbox.style2 .date .number {
      display: block;
      margin-top: -5px;
      font-size: 24px;
      color: #fff; }
  .imgbox.style2 .align {
    padding: 10px 50px 40px 50px;
    text-align: center; }
  .imgbox.style2 h3 {
    color: #4b4b4b;
    margin: 0 0 25px 0;
    font-size: 24px; }
  .imgbox.style2 .btn {
    margin: 35px 0 0 0; }
  .imgbox.style2:hover {
    background-color: #d16651;
    color: #fff; }
    .imgbox.style2:hover h3 {
      color: #fff; }
    .imgbox.style2:hover ul {
      opacity: .7; }
    .imgbox.style2:hover .btn {
      background-color: #fff;
      color: #181818;
      border-color: #fff; }

.imgbox.style3 {
  background-color: #f9f9f9;
  margin-bottom: 40px;     min-height: 910px;
    height: 100%;}
  .imgbox.style3 img{width: 100%;}
  .imgbox.style3 .align {
    padding: 10px 40px 40px 40px;
    text-align: center; }
  .imgbox.style3 h3 {
    text-transform: uppercase;
    font-size: 25px;
    letter-spacing: 3px;
    margin-bottom: 25px; font-weight: bold;}
    .imgbox.style3 p{color: #333;}

.imgbox.style4 {
  margin-bottom: 40px; }
  .imgbox.style4 h3 {
    font-size: 18px;
    text-transform: uppercase;
    color: #4b4b4b;
    margin: 0 0 25px 0; }

.imgbox.style5 {
  background-color: #f9f9f9; }
  .imgbox.style5:before, .imgbox.style5:after {
    content: " ";
    display: table; }
  .imgbox.style5:after {
    clear: both; }
  .imgbox.style5 .img {
    width: 40%;
    float: left;
    margin-bottom: 0; }
  .imgbox.style5 .align {
    width: 60%;
    float: left;
    padding: 57px 60px;
    text-align: center; }
  @media (max-width: 992px) {
    .imgbox.style5 .img {
      width: 100%; }
    .imgbox.style5 .align {
      width: 100%;
      float: none; } }
  .imgbox.style5 h3 + p {
    margin-top: 0; }
    .imgbox.style5 h3 + p:after {
      content: '_';
      display: block;
      color: #d16651; }
  .imgbox.style5 p + p {
    margin-bottom: 50px; }
  .imgbox.style5 .btn {
    text-transform: uppercase; }
    .imgbox.style5 .btn + .btn {
      margin-left: 10px; }
  .imgbox.style5 .social {
    padding: 0;
    margin-top: 40px; }
    .imgbox.style5 .social li {
      display: inline-block;
      margin-right: 10px; }
      .imgbox.style5 .social li:last-child {
        margin-right: 0; }
    .imgbox.style5 .social a {
      display: inline-block;
      font-size: 18px;
      width: 50px;
      height: 50px;
      border: 1px solid #c4c4c4;
      color: #c4c4c4;
      border-radius: 100%;
      line-height: 50px; }
      .imgbox.style5 .social a:hover {
        background-color: #d16651;
        border-color: #d16651;
        color: #fff; }

@media only screen and (min-width:768px) and (max-width:1050px) {

.navbar-default .navbar-nav li a {
    padding: 28px 12px;
}
}

/*# sourceMappingURL=components.css.map */
