/* 
// Table of content
// -----------------------------------------------------------------------------
// - 1. Buttons
// - 2. Forms
// - 3. Navbar
// - 4. Teams
// - 5. Testimonials
// - 6. Iconboxes
// - 7. Progress
// - 8. Galleries
// - 9. Imageboxes
*/
/* -----------------------------------------------------------------------------
// 1. Buttons 
// ----------------------------------------------------------------------------- */
.btn {
  display: inline-block;
  padding: 12px 30px;
  margin-bottom: 10px;
  font-family: "Oswald", Helvetica, Arial, sans-serif;
  border: 2px solid transparent;
  border-radius: 30px;
  text-transform: uppercase;
  font-weight: 500;
  -webkit-transition: background 0.5s;
  -moz-transition: background 0.5s;
  -ms-transition: background 0.5s;
  -o-transition: background 0.5s;
  transition: background 0.5s; }
  .btn:hover, .btn:focus {
    text-decoration: none;
    outline: none; }

.btn-xs {
  font-size: 12px;
  padding: 10px 15px; }

.btn-sm {
  font-size: 14px;
  padding: 10px 20px; }

.btn {
  font-size: 14px;
  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: #bc5b6e;
  color: #fff;
  border-color: #bc5b6e; }
  .btn-colored:hover {
    background: transparent;
    color: #bc5b6e;
    border-color: #bc5b6e; }

.btn-bordered {
  background: transparent;
  border-width: 2px; }
  .btn-bordered.btn-light {
    color: #fff; }
    .btn-bordered.btn-light:hover {
      background-color: #fff;
      color: #fff; }
  .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: #bc5b6e; }
    .btn-bordered.btn-colored:hover {
      background-color: #bc5b6e;
      color: #fff; }

/* -----------------------------------------------------------------------------
// 2. Forms 
// ----------------------------------------------------------------------------- */
.form-control {
  height: 50px;
  padding: 10px 20px;
  font-size: 14px;
  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: #9c9c9c;
  -webkit-transition: opacity 0.3s;
  -moz-transition: opacity 0.3s;
  -ms-transition: opacity 0.3s;
  -o-transition: opacity 0.3s;
  transition: opacity 0.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: #bc5b6e; }

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;
  -moz-transition: background-color 0.5s;
  -ms-transition: background-color 0.5s;
  -o-transition: background-color 0.5s;
  transition: background-color 0.5s; }

/* -----------------------------------------------------------------------------
// 3. Navbar 
// ----------------------------------------------------------------------------- */
.navbar-default {
  background-color: transparent;
  margin-bottom: 0;
  border: none; }
  .navbar-default .navbar-header {
    margin-top: 10px; }
  .navbar-default .navbar-collapse {
    visibility: hidden;
    opacity: 0;
    -webkit-transition: opacity 1s;
    -moz-transition: opacity 1s;
    -ms-transition: opacity 1s;
    -o-transition: opacity 1s;
    transition: opacity 1s; }
  @media (max-width: 768px) {
    .navbar-default .navbar-collapse {
      visibility: visible;
      opacity: 1; } }
  .navbar-default .navbar-visible {
    visibility: visible;
    opacity: 1; }
  .navbar-default .navbar-nav li a {
    font-size: 16px;
    font-family: "Oswald", Helvetica, Arial, sans-serif;
    font-weight: 500;
    text-transform: uppercase;
    color: #9c9c9c;
    padding: 35px 20px; }
    .navbar-default .navbar-nav li a:hover {
      color: #bc5b6e;
      text-decoration: none; }
  .navbar-default .navbar-nav li.active > a, .navbar-default .navbar-nav li.active > a:hover {
    color: #bc5b6e; }
  .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: #bc5b6e; }
      .navbar-default .navbar-nav li.mega .dropdown-menu .active a {
        color: #fff; }
  .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: #9c9c9c;
      -webkit-transition: all 0.5s;
      -moz-transition: all 0.5s;
      -ms-transition: all 0.5s;
      -o-transition: all 0.5s;
      transition: all 0.5s; }
      .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-desktop {
      display: block;
      margin: 0;
      padding: 35px 20px; }
    @media (max-width: 768px) {
      .navbar-default .navbar-toggle-desktop {
        display: none; } }
    .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-collapse {
    margin-top: 15px; }

  .navbar-default .navbar-header {
    margin-bottom: 10px; }

  .navbar-default .navbar-nav li a {
    padding: 15px 20px; }

  .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; } }
/* -----------------------------------------------------------------------------
// 4. Teams 
// ----------------------------------------------------------------------------- */
figure.person.style1 {
  position: relative;
  height: 350px;
  overflow: hidden; }
  figure.person.style1 figcaption {
    position: absolute;
    bottom: 0;
    width: 100%;
    padding: 10px;
    background: #fff;
    border-bottom: 1px solid #e1e1e1;
    text-align: center;
    -webkit-transition: border 0.5s;
    -moz-transition: border 0.5s;
    -ms-transition: border 0.5s;
    -o-transition: border 0.5s;
    transition: border 0.5s; }
    figure.person.style1 figcaption h4 {
      font-size: 15px;
      text-transform: uppercase;
      margin-bottom: 0; }
  figure.person.style1 .person-social {
    opacity: 0;
    position: absolute;
    top: 50%;
    width: 100%;
    padding: 0;
    text-align: center;
    list-style: none;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    -webkit-transition: opacity 0.5s;
    -moz-transition: opacity 0.5s;
    -ms-transition: opacity 0.5s;
    -o-transition: opacity 0.5s;
    transition: opacity 0.5s; }
    figure.person.style1 .person-social li {
      display: inline-block;
      margin-right: 10px; }
      figure.person.style1 .person-social li:last-child {
        margin-right: 0; }
    figure.person.style1 .person-social a {
      display: inline-block;
      width: 35px;
      height: 35px;
      text-align: center;
      border-radius: 100%;
      background-color: #fff;
      color: #c4c4c4;
      -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; }
      figure.person.style1 .person-social a i {
        line-height: 35px; }
      figure.person.style1 .person-social a:hover {
        background-color: #bc5b6e;
        color: #fff; }
  figure.person.style1:hover img {
    opacity: .7; }
  figure.person.style1:hover figcaption {
    border-color: #bc5b6e; }
  figure.person.style1:hover .person-social {
    opacity: 1; }

@media (max-width: 992px) {
  figure.person.style1 {
    margin-bottom: 20px; } }
figure.person.style2 .person-img {
  height: 300px;
  overflow: hidden;
  padding: 10px;
  background-color: #fff;
  -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; }
figure.person.style2 figcaption {
  padding: 40px 40px 20px 40px;
  background: #fff;
  text-align: left;
  -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; }
  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 0.5s;
  -moz-transition: all 0.5s;
  -ms-transition: all 0.5s;
  -o-transition: all 0.5s;
  transition: all 0.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: #bc5b6e; }
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 {
  text-align: center; }
  figure.person.style3 figcaption {
    padding: 0 15px; }
    figure.person.style3 figcaption h4 {
      font-weight: 500;
      margin: 30px 0 10px 0;
      text-transform: uppercase;
      color: #4b4b4b; }
      figure.person.style3 figcaption h4 + p {
        margin-bottom: 20px; }
  figure.person.style3:hover {
    border-color: #bc5b6e; }

@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 0.3s;
    -moz-transition: background-color 0.3s;
    -ms-transition: background-color 0.3s;
    -o-transition: background-color 0.3s;
    transition: background-color 0.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 0.3s;
    -moz-transition: opacity 0.3s;
    -ms-transition: opacity 0.3s;
    -o-transition: opacity 0.3s;
    transition: opacity 0.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 0.5s;
    -moz-transition: opacity 0.5s;
    -ms-transition: opacity 0.5s;
    -o-transition: opacity 0.5s;
    transition: opacity 0.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 0.5s;
      -moz-transition: color 0.5s;
      -ms-transition: color 0.5s;
      -o-transition: color 0.5s;
      transition: color 0.5s; }
      figure.person.style4 .person-social a:hover {
        color: #fff; }
  figure.person.style4:hover figcaption {
    background-color: #bc5b6e;
    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; } }
/* -----------------------------------------------------------------------------
// 5. Testimonials 
// ----------------------------------------------------------------------------- */
.testimonials-slider .testimonial {
  text-align: center;
  width: 50%;
  margin: 0 auto; }
  .testimonials-slider .testimonial h4 {
    font-size: 14px;
    margin-bottom: 20px;
    text-transform: uppercase; }
    .testimonials-slider .testimonial h4 img {
      margin: -3px 10px 0 0; }
.testimonials-slider .owl-buttons .owl-prev,
.testimonials-slider .owl-buttons .owl-next {
  position: absolute;
  color: #fff;
  font-size: 36px;
  background-color: transparent;
  opacity: 1; }
.testimonials-slider .owl-buttons .owl-prev {
  left: 0;
  top: 20%; }
.testimonials-slider .owl-buttons .owl-next {
  right: 0;
  top: 20%; }
.testimonials-slider .owl-buttons .owl-prev:hover,
.testimonials-slider .owl-buttons .owl-next:hover {
  color: #fff; }
@media (max-width: 500px) {
  .testimonials-slider .owl-buttons {
    display: none; } }
.testimonials-slider .owl-pagination {
  position: absolute;
  bottom: -50px; }
  .testimonials-slider .owl-pagination .owl-page + .owl-page {
    margin-left: 15px; }
  .testimonials-slider .owl-pagination .owl-page span {
    display: inline-block;
    width: 3px;
    height: 3px;
    margin: 0;
    opacity: 1;
    border: none;
    -webkit-border-radius: 100%;
    -moz-border-radius: 100%;
    border-radius: 100%;
    background-color: #fff; }
  .testimonials-slider .owl-pagination .owl-page.active span {
    position: relative;
    border: none;
    background: #fff; }
  .testimonials-slider .owl-pagination .owl-page.active span:before {
    content: ' ';
    position: absolute;
    top: -9px;
    left: -9px;
    background-color: #fff;
    opacity: .2;
    width: 20px;
    height: 20px;
    text-align: center;
    border-radius: 100%; }

.testimonial-bg {
  background: #4a4848 url(../img/devices-bg.jpg) center center; }

.testimonial.style3 {
  width: 50%;
  text-align: center; }
  .testimonial.style3 p {
    font-size: 18px;
    color: #fff; }
  .testimonial.style3 h4 {
    margin-top: 20px;
    color: #4b4b4b;
    font-weight: 500;
    font-size: 16px;
    text-transform: uppercase; }

@media (max-width: 992px) {
  .testimonial.style3 {
    width: 80%; } }
.testimonial.style4 {
  text-align: center; }
  .testimonial.style4 p {
    font-family: "Oswald", Helvetica, Arial, sans-serif;
    font-size: 24px;
    line-height: 36px;
    color: #4b4b4b; }
  .testimonial.style4 h4 {
    margin-top: 50px;
    color: #bc5b6e;
    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; }

/* -----------------------------------------------------------------------------
// 6. Iconboxes 
// ----------------------------------------------------------------------------- */
.iconbox.style1 {
  text-align: center; }
  .iconbox.style1 .number {
    font-family: "Oswald", Helvetica, Arial, sans-serif;
    position: relative;
    right: 90px;
    top: 85px;
    color: #f9f9f9;
    font-size: 72px;
    font-weight: 600; }
  .iconbox.style1 .icon {
    color: #bc5b6e;
    font-size: 24px; }
  .iconbox.style1 h4 {
    text-transform: uppercase; }
  .iconbox.style1 p {
    padding: 0 30px; }

.iconbox.style2 {
  text-align: center; }
  .iconbox.style2 .icon {
    width: 160px;
    margin: 0 auto 30px auto;
    padding: 200px 0 30px 0;
    color: #fff;
    font-size: 36px; }
    .iconbox.style2 .icon.lightblue {
      background-color: #26a7ce; }
    .iconbox.style2 .icon.darkblue {
      background-color: #5d7abb; }
    .iconbox.style2 .icon.purple {
      background-color: #964ca8; }
    .iconbox.style2 .icon.pink {
      background-color: #e30e8e; }
  .iconbox.style2 h4 {
    text-transform: uppercase; }
  .iconbox.style2 p {
    padding: 0 30px; }

@media (max-width: 992px) {
  .iconbox.style2 {
    margin-bottom: 20px; } }
@media (max-width: 768px) {
  .iconbox.style2 .icon {
    padding: 30px 0; } }
.iconbox.style3 {
  padding: 20px 35px;
  margin-bottom: 20px;
  background-color: #f9f9f9;
  -webkit-transition: background-color 0.3;
  -moz-transition: background-color 0.3;
  -ms-transition: background-color 0.3;
  -o-transition: background-color 0.3;
  transition: background-color 0.3; }
  .iconbox.style3 .icon {
    width: 85px;
    height: 85px;
    float: left;
    margin-right: 20px;
    border-radius: 100%;
    text-align: center;
    background-color: #fff;
    color: #c4c4c4;
    -webkit-transition: background-color 0.3;
    -moz-transition: background-color 0.3;
    -ms-transition: background-color 0.3;
    -o-transition: background-color 0.3;
    transition: background-color 0.3; }
    .iconbox.style3 .icon i {
      line-height: 85px;
      font-size: 24px; }
  .iconbox.style3:hover {
    background-color: #4b4b4b; }
    .iconbox.style3:hover h4 {
      color: #fff; }
    .iconbox.style3:hover .icon {
      background-color: #bc5b6e;
      color: #fff; }

@media (max-width: 768px) {
  .iconbox.style3 {
    text-align: center; }
    .iconbox.style3 .icon {
      float: none;
      margin: 0 auto 20px auto; } }
.iconbox.style4 {
  text-align: center; }
  .iconbox.style4 .icon {
    width: 85px;
    height: 85px;
    line-height: 85px;
    margin: 0 auto 30px auto;
    border-radius: 100%;
    text-align: center;
    background-color: #f9f9f9;
    color: #c4c4c4;
    -webkit-transition: background-color 0.3s;
    -moz-transition: background-color 0.3s;
    -ms-transition: background-color 0.3s;
    -o-transition: background-color 0.3s;
    transition: background-color 0.3s; }
    .iconbox.style4 .icon i {
      line-height: 85px;
      font-size: 24px; }
  .iconbox.style4 h4 {
    margin-bottom: 20px;
    text-transform: uppercase;
    font-weight: 400;
    color: #4b4b4b; }
  .iconbox.style4 p {
    margin-bottom: 15px; }
  .iconbox.style4:hover .icon {
    background-color: #bc5b6e;
    color: #fff; }

@media (max-width: 992px) {
  .iconbox.style4 {
    margin-bottom: 50px; } }
.iconbox.style5 {
  padding: 50px 45px;
  margin-bottom: 20px;
  text-align: center;
  background-color: #f9f9f9;
  border-bottom: 2px solid #f9f9f9;
  -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; }
  .iconbox.style5 .icon {
    text-align: center;
    color: #c4c4c4; }
    .iconbox.style5 .icon i {
      font-size: 24px;
      -webkit-transition: color 0.5s;
      -moz-transition: color 0.5s;
      -ms-transition: color 0.5s;
      -o-transition: color 0.5s;
      transition: color 0.5s; }
  .iconbox.style5 h4 {
    color: #4b4b4b;
    margin: 30px 0 15px 0; }
  .iconbox.style5:hover {
    background-color: #bc5b6e; }
    .iconbox.style5:hover .icon,
    .iconbox.style5:hover h4,
    .iconbox.style5:hover p {
      color: #fff; }

@media (max-width: 768px) {
  .iconbox.style5 {
    text-align: center; }
    .iconbox.style5 .icon {
      float: none;
      margin: 0 auto 20px auto; } }
.iconbox.style6 {
  position: relative;
  padding: 80px 45px;
  text-align: center;
  background-color: #3fb3e5; }
  .iconbox.style6.light {
    background-color: #4ec8f1; }
  .iconbox.style6 .icon {
    width: 100px;
    height: 100px;
    margin: 0 auto;
    text-align: center;
    background-color: #fff;
    color: #c4c4c4;
    border-radius: 100%; }
    .iconbox.style6 .icon i {
      font-size: 28px;
      line-height: 100px;
      -webkit-transition: color 0.5s;
      -moz-transition: color 0.5s;
      -ms-transition: color 0.5s;
      -o-transition: color 0.5s;
      transition: color 0.5s; }
  .iconbox.style6 h4 {
    text-transform: uppercase;
    color: #fff;
    margin: 30px 0 15px 0; }
  .iconbox.style6 p {
    color: #fff;
    opacity: .7; }
  .iconbox.style6 a {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    margin: 0 auto;
    font-family: "Oswald", Helvetica, Arial, sans-serif;
    color: #fff;
    background-color: #39acde;
    padding: 20px 0;
    text-transform: uppercase;
    text-align: center; }

.iconbox.style7 {
  padding: 20px 0;
  margin-bottom: 20px;
  -webkit-transition: background-color 0.3s;
  -moz-transition: background-color 0.3s;
  -ms-transition: background-color 0.3s;
  -o-transition: background-color 0.3s;
  transition: background-color 0.3s; }
  .iconbox.style7 .icon {
    width: 50px;
    height: 50px;
    float: left;
    margin: 10px 20px 20px 0;
    border-radius: 100%;
    text-align: center;
    background-color: #f9f9f9;
    color: #c4c4c4;
    -webkit-transition: background-color 0.3s;
    -moz-transition: background-color 0.3s;
    -ms-transition: background-color 0.3s;
    -o-transition: background-color 0.3s;
    transition: background-color 0.3s; }
    .iconbox.style7 .icon i {
      line-height: 50px;
      font-size: 18px; }
  .iconbox.style7:hover .icon {
    background-color: #bc5b6e;
    color: #fff; }

@media (max-width: 768px) {
  .iconbox.style3 {
    text-align: center; }
    .iconbox.style3 .icon {
      float: none;
      margin: 0 auto 20px auto; } }
/* -----------------------------------------------------------------------------
// 7. Progress 
// ----------------------------------------------------------------------------- */
.progress-title {
  margin-bottom: 5px;
  color: #fff; }

.progress {
  position: relative;
  height: 10px;
  margin-bottom: 30px;
  background-color: #f9f9f9;
  background-color: rgba(255, 255, 255, 0.3);
  overflow: visible;
  border-radius: 20px;
  -webkit-box-shadow: none;
  box-shadow: none; }
  .progress .progress-bar {
    border-radius: 20px;
    background-color: #fff;
    -webkit-box-shadow: none;
    box-shadow: none; }
  .progress .progress-number {
    font-family: "Oswald", Helvetica, Arial, sans-serif;
    position: absolute;
    top: -20px;
    right: 0;
    font-size: 10px; }
  .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: #bc5b6e; }
    .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: 35px;
    border-radius: 3px; }
    .progress.style4 .progress-title {
      position: absolute;
      top: 0;
      left: 15px;
      z-index: 1;
      font-size: 14px;
      color: #fff; }
    .progress.style4 .progress-number {
      position: absolute;
      right: 10px;
      top: 6px;
      color: #fff;
      background: transparent; }
    .progress.style4 .progress-bar {
      border-radius: 3px; }
      .progress.style4 .progress-bar.pink {
        background-color: #bc5b6e; }
      .progress.style4 .progress-bar.lightblue {
        background-color: #26a7ce; }
      .progress.style4 .progress-bar.darkblue {
        background-color: #5d7abb; }
      .progress.style4 .progress-bar.purple {
        background-color: #964ca8; }

.countbox {
  text-align: center; }
  .countbox h4 {
    margin-top: 40px;
    font-size: 36px;
    line-height: 20px;
    font-weight: 600;
    color: #4b4b4b; }
    .countbox h4:after {
      content: '_';
      display: block;
      margin-bottom: 30px;
      color: #d5d5d2; }
  .countbox p {
    font-family: "Oswald", Helvetica, Arial, sans-serif;
    font-size: 18px;
    text-transform: uppercase;
    font-weight: 600;
    color: #4b4b4b; }

@media (max-width: 992px) {
  .countbox {
    margin-bottom: 30px; } }
.work-step {
  text-align: center; }
  .work-step .icon {
    position: relative;
    display: inline-block;
    padding: 17px;
    border: 1px solid #eaeaea;
    margin: 0 auto 30px auto;
    border-radius: 100%;
    -webkit-transition: border-color 0.5s;
    -moz-transition: border-color 0.5s;
    -ms-transition: border-color 0.5s;
    -o-transition: border-color 0.5s;
    transition: border-color 0.5s; }
    .work-step .icon .step-number {
      position: absolute;
      left: -15px;
      top: 54px;
      width: 30px;
      height: 30px;
      border-radius: 100%;
      line-height: 30px;
      font-size: 12px;
      text-align: center;
      font-family: "Oswald", Helvetica, Arial, sans-serif;
      background-color: #e5e5e5;
      color: #fff;
      -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; }
    .work-step .icon .align {
      width: 110px;
      height: 110px;
      border-radius: 100%;
      overflow: hidden; }
    .work-step .icon:after {
      position: absolute;
      top: 72px;
      right: -110px;
      display: inline-block;
      content: ' ';
      width: 82px;
      height: 1px;
      background: url(../img/step-divider.png) no-repeat center center; }
    .work-step .icon.no-divider:after {
      content: none; }
    @media (max-width: 992px) {
      .work-step .icon:after {
        content: none; } }
  .work-step h4 {
    text-transform: uppercase;
    font-size: 18px;
    line-height: 24px;
    font-weight: 500;
    color: #4b4b4b;
    margin-bottom: 20px; }
    .work-step h4 + p {
      padding: 0 10px; }
  .work-step:hover .icon {
    border-color: #bc5b6e; }
  .work-step:hover .step-number {
    background-color: #bc5b6e; }

@media (max-width: 992px) {
  .work-step {
    margin-bottom: 30px; } }
.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: #bc5b6e;
      border-color: #bc5b6e; }
  .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: #bc5b6e;
    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: #bc5b6e;
      background-color: #bc5b6e; }

.img {
  position: relative;
  margin-bottom: 30px; }
  .img:hover .popup {
    opacity: 1; }
  .img .popup {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 101%;
    background-color: #bc5b6e;
    background-color: rgba(181, 199, 78, 0.85);
    text-align: center;
    opacity: 0;
    -webkit-transition: opacity 0.5s;
    -moz-transition: opacity 0.5s;
    -ms-transition: opacity 0.5s;
    -o-transition: opacity 0.5s;
    transition: opacity 0.5s; }
    .img .popup i {
      position: relative;
      top: 40%;
      color: #fff;
      font-size: 18px; }
    .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: #bc5b6e;
    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: #bc5b6e;
  background-color: rgba(181, 199, 78, 0.85);
  -webkit-transition: opacity 0.5s;
  -moz-transition: opacity 0.5s;
  -ms-transition: opacity 0.5s;
  -o-transition: opacity 0.5s;
  transition: opacity 0.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;
    margin-bottom: 5px; }
    .full-gallery-slider .caption h5 + p {
      color: #fff;
      font-size: 12px; }
  .full-gallery-slider .caption .meta {
    position: absolute;
    bottom: 0;
    right: 0; }
    .full-gallery-slider .caption .meta a {
      display: inline-block;
      width: 40px;
      height: 40px;
      text-align: center;
      line-height: 40px;
      background-color: #fff;
      color: #bc5b6e; }
      .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. Messages 
// ----------------------------------------------------------------------------- */
.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 0.5s;
  -moz-transition: background 0.5s;
  -ms-transition: background 0.5s;
  -o-transition: background 0.5s;
  transition: background 0.5s; }
  .imgbox.style2 .date {
    position: absolute;
    top: 0;
    left: 30px;
    z-index: 10;
    padding: 10px 15px;
    font-family: "Oswald", Helvetica, Arial, sans-serif;
    font-size: 12px;
    text-transform: uppercase;
    background-color: #bc5b6e;
    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: #bc5b6e;
    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; }
  .imgbox.style3 .align {
    padding: 10px 40px 40px 40px;
    text-align: center; }
  .imgbox.style3 h3 {
    color: #4b4b4b;
    margin-bottom: 25px; }

.imgbox.style4 {
  margin-bottom: 40px; }
  .imgbox.style4 h3 {
    font-size: 18px;
    color: #4b4b4b;
    text-transform: uppercase;
    font-weight: 500;
    margin-bottom: 25px; }
  .imgbox.style4 a {
    font-family: "Oswald", Helvetica, Arial, sans-serif;
    font-weight: 600;
    color: #bc5b6e;
    text-transform: uppercase; }

.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: #bc5b6e; }
  .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: #bc5b6e;
        border-color: #bc5b6e;
        color: #fff; }

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