/*-----------------------------------------------------------------------------------
[table of contents]

1. Body

2. Header / .header-wrapper

3. Main Navigation / (.variant-one, .variant-two, .variant-three, .variant-four)

4. Logo / #logo

5. Home Slider
x
   5.1 Index page main slider / .flexslider.variant-one

   5.2 Variation two main slider / .flexslider.variant-two

   5.3 Variation three main slider / .home-slider-4

6. Our Team / .our-team

7. Clients / .our-clients

8. Testimonials / .testimonial

9. Filter / #filter-by

10. Home Page Blog Section / .our-blog

11. Side Bar / .sidebar

12. Contact Form / .contact-form

13. Follow Us / .follow-us

14. Footer / .footer
-----------------------------------------------------------------------------------*/
/*-----------------------------------------------------------------------------------*/
/*  Theme Core
/*-----------------------------------------------------------------------------------*/
/*
  Bootstrap Carousel Fade Transition (for Bootstrap 3.3.x)
  CSS from:       http://codepen.io/transportedman/pen/NPWRGq
  and:            http://stackoverflow.com/questions/18548731/bootstrap-3-carousel-fading-to-new-slide-instead-of-sliding-to-new-slide
  Inspired from:  http://codepen.io/Rowno/pen/Afykb 
*/
.carousel-fade .carousel-inner .item {
  opacity: 0;
  transition-property: opacity;
  transition-duration: 2.5s;
  background: #fff;
}

.carousel-fade .carousel-inner .active {
  opacity: 1;
}

.carousel-fade .carousel-inner .active.left,
.carousel-fade .carousel-inner .active.right {
  left: 0;
  opacity: 0;
  z-index: 1;
}

.carousel-fade .carousel-inner .next.left,
.carousel-fade .carousel-inner .prev.right {
  opacity: 1;
}

.carousel-fade .carousel-control {
  z-index: 2;
}

/*
  WHAT IS NEW IN 3.3: "Added transforms to improve carousel performance in modern browsers."
  Need to override the 3.3 new styles for modern browsers & apply opacity
*/
@media all and (transform-3d), (-webkit-transform-3d) {
    .carousel-fade .carousel-inner > .item.next,
    .carousel-fade .carousel-inner > .item.active.right {
      opacity: 0;
      -webkit-transform: translate3d(0, 0, 0);
              transform: translate3d(0, 0, 0);
    }
    .carousel-fade .carousel-inner > .item.prev,
    .carousel-fade .carousel-inner > .item.active.left {
      opacity: 0;
      -webkit-transform: translate3d(0, 0, 0);
              transform: translate3d(0, 0, 0);
    }
    .carousel-fade .carousel-inner > .item.next.left,
    .carousel-fade .carousel-inner > .item.prev.right,
    .carousel-fade .carousel-inner > .item.active {
      opacity: 1;
      -webkit-transform: translate3d(0, 0, 0);
              transform: translate3d(0, 0, 0);
    }
}
.container {
/*max-width: 1000px;*/
}
.break {
clear: both;
}
.selection_color {
  background: #28716E;
  color: #fff;
  text-shadow: none;
}
::-moz-selection {
  background: #28716E;
  color: #fff;
  text-shadow: none;
}
::selection {
  background: #28716E;
  color: #fff;
  text-shadow: none;
}
body {
  font-size: 13px;
  line-height: 23px;
  color: #7d8489;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  color: #373c40;
  margin-top: 0;
  font-weight: 700;
}
h1 a,
h2 a,
h3 a,
h4 a,
h5 a,
h6 a {
  color: #373c40;
}
h1 a:hover,
h2 a:hover,
h3 a:hover,
h4 a:hover,
h5 a:hover,
h6 a:hover {
  color: #f16543;
}
h1 span,
h2 span,
h3 span,
h4 span,
h5 span,
h6 span {
  color: #f16543;
}
h1,
h2,
h3 {
  margin-bottom: 20px;
}
h4,
h5,
h6 {
  margin-bottom: 15px;
}
a {
  text-decoration: none !important;
}
a:focus {
  outline: none;
}
ul,
ol {
  list-style: none;
  margin: 0;
  padding: 0;
}
p {
  margin-bottom: 20px;
}
.custom-transition {
  transition: 0.2s all ease-in-out;
}
p a {
  transition: 0.2s all ease-in-out;
  color: #f16543;
}
p a:hover {
  color: #333333;
}
a:visited {
  color: inherit;
  text-decoration: none;
}
a:focus {
  color: inherit;
  text-decoration: none;
}
.container-box-sizing .container {
  -webkit-box-sizing: content-box;
  -moz-box-sizing: content-box;
  box-sizing: content-box;
}
.container-border-box .container {
  box-sizing: border-box;
}
.slide-description a,
.flexslider .flex-direction-nav a,
.team-member .social_networks li a,
.pagination span,
.pagination a,
.our-services.variant-four .item .icon-container,
.services-items-wrapper .icon-container,
.services-items-wrapper article .content-wrapper,
.tabs-nav li,
.tab-skin .tabs-nav li:hover,
.tab-skin .tabs-nav li,
.widget .tabbed .tabs li,
.widget .tabbed .tabs li:hover,
.widget .tagcloud a,
.tags-list a,
.searchform #searchsubmit,
.price-plan .buy-now-btn,
.price-plan .buy-now-btn:hover,
.our-work .gallery-item .gallery-btn,
.theme-transition {
  -webkit-transition: all 500ms cubic-bezier(0.23, 1, 0.32, 1);
  -moz-transition: all 500ms cubic-bezier(0.23, 1, 0.32, 1);
  -ms-transition: all 500ms cubic-bezier(0.23, 1, 0.32, 1);
  -o-transition: all 500ms cubic-bezier(0.23, 1, 0.32, 1);
  transition: all 500ms cubic-bezier(0.23, 1, 0.32, 1);
  /* easeOutQuint */
  -webkit-transition-timing-function: cubic-bezier(0.23, 1, 0.32, 1);
  -moz-transition-timing-function: cubic-bezier(0.23, 1, 0.32, 1);
  -ms-transition-timing-function: cubic-bezier(0.23, 1, 0.32, 1);
  -o-transition-timing-function: cubic-bezier(0.23, 1, 0.32, 1);
  transition-timing-function: cubic-bezier(0.23, 1, 0.32, 1);
  /* easeOutQuint */
}
.flexslider img,
.our-work.variant-three .overlay,
.our-work.variant-three .prev,
.our-work.variant-three .next,
.user-select {
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -o-user-select: none;
  user-select: none;
}
/*-----------------------------------------------------------------------------------*/
/*  Section Common Styles
/*-----------------------------------------------------------------------------------*/
p {
color: #000;
}
.variant-four .section {
  overflow: hidden;
}
.section {
  width: 100%;
}
.section .container {
  -webkit-box-sizing: content-box;
  -moz-box-sizing: content-box;
  box-sizing: content-box;
}
.section .section-header {
  text-align: center;
  margin-bottom: 50px;
}
.section .section-header .title {
  margin-bottom: 0;
  text-transform: uppercase;
}
.section .section-header h2.title {
  font-size: 60px;
  line-height: 60px;
}
.section .section-header h3.title {
  font-size: 60px;
  line-height: 60px;
}
.section .section-header p {
  font-size: 14px;
}
.section-intro-text {
  text-align: center;
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  background: url("../images/page-title-bg.png") repeat-x left center;
  margin: 0 15px 55px;
}
.section-intro-text span {
  padding: 0 15px;
  background: #fbf8f7;
}
.section-merge {
  padding-bottom: 0 !important;
}
/*-----------------------------------------------------------------------------------*/
/*  Separator
/*-----------------------------------------------------------------------------------*/
.separator {
  margin: 30px 0;
  text-align: center;
}
.separator span {
  display: inline-block;
  vertical-align: middle;
}
.separator .line {
  width: 48.5%;
  height: 1px;
  background-color: #ced7de;
}
.separator .square {
  background-color: #f16543;
  width: 7px;
  height: 7px;
  margin: 0 14px;
}
.separator.flex {
  position: relative;
}
.separator.flex .wrap {
  line-height: 0;
  background: #ffffff;
  position: absolute;
  top: 50%;
  left: 50%;
  margin: -3px 0 0 -17px;
}
.separator.flex .line {
  width: 100%;
}
.section-header .separator {
  margin-top: 0px;
  margin-bottom: 5px;
}
.section-header .separator .line {
  width: 165px;
}
.variant-two .separator {
  margin-bottom: 5px;
}
.variant-two .separator .line {
  width: 85px;
}
.variant-two .custom-var-two-work {
  padding-top: 0 !important;
  padding-bottom: 0 !important;
}
/*-----------------------------------------------------------------------------------*/
/*  Section Bottom Arrow Styles
/*-----------------------------------------------------------------------------------*/
.arrow {
  width: 66px;
  height: 10px;
  margin: 0 auto;
  position: relative;
}
.arrow .shape {
  position: absolute;
  top: 100%;
  left: 50%;
  height: 0;
  width: 0;
  border: solid transparent;
  border-top-color: #ffffff;
  border-width: 34px;
  margin-left: -34px;
  content: " ";
  z-index: 250;
}
.arrow .icon {
  position: absolute;
  top: 0;
  left: 50%;
  width: 60px;
  height: 40px;
  margin-left: -30px;
  cursor: pointer;
  background: url("../images/icon-arrow-down.png") no-repeat center 3px;
  z-index: 500;
}
.lead {
  font-size: 16px;
  line-height: 30px;
  font-weight: 500;
}
.lead.text-center {
  font-size: 28px;
  line-height: 36px;
  color: #373c40;
  margin: 60px 0;
}
  /*-----------------------------------------------------------------------------------*/
  /* slider
  /*-----------------------------------------------------------------------------------*/

  #slider {
  width: 100%;
  height: 550px;
  overflow: hidden;
  border-bottom: 5px solid #f16543;
  }
  #slider .left .glyphicon-chevron-left {
  display: block;
  background: url("../images/left.png") no-repeat center center !important;
  background-size: 100% 100%;
  width: 56px;
  height: 52px;
  font-size: 0;
  }
    #slider .right .glyphicon-chevron-right {
  display: block;
  background: url("../images/right.png") no-repeat center center !important;
  background-size: 100% 100%;
  width: 56px;
  height: 52px;
  font-size: 0;
  }
  .carousel-control,
  .carousel-control:hover {
  transition: 0.4s;
  }
  .breakinvisible {
  width: 100%;
  height: 0;
  clear: both;
  }
  .slide-data {
  float: left;
  margin: 336px auto auto 15%;
  }
  .slide-title {
    display: block;
    float: left;
    background-color: #4f5c63;
    color: #ffffff;
    font-size: 30px;
    line-height: 60px;
    margin: 0;
    padding: 6px 16px 4px 16px;
    text-transform: uppercase;
    white-space: nowrap;
  }
  .slide-description {
    display: block;
    float: left;
    font-size: 16px;
    line-height: 27px;
    margin-bottom: 35px;
    white-space: nowrap;
    background-color: rgba(255,255,255,.9);
    padding: 10px 20px 8px 20px;
  }
  .slide-link {
    display: block !important;
    float: left;
    margin-top: -10px;
    font-size: 16px;
    line-height: 27px;
    font-weight: 700;
    padding: 10px 20px 8px 20px;
    background-color: #f16543;
    color: #fff !important;
    transition: 0.4s;
    -webkit-transition: 0.4s;
    cursor: pointer;
  }
  .slide-link:hover {
    background-color: #ff7957;
    transition: 0.4s;
    -webkit-transition: 0.4s;
  }

  .slide-bg {
  width: 100%;
  height: 550px !important;
  background-size: auto 100% !important;
  overflow: hidden;
  }

  .parallaximage {
  height: auto !important;
  }

/*-----------------------------------------------------------------------------------*/
/* Team var-4
/*-----------------------------------------------------------------------------------*/
.team-box {
  position: relative;
  overflow: hidden;
}
.team-box:hover .image-team img {
  transform: translateY(-5%);
}
.team-box:hover .info-team {
  top: 0;
  margin-top: 0;
  background: #f16543;
  transition: 0.25s all ease-in-out;
}
.team-box:hover .info-team h4 {
  transition: 0.25s all ease-in-out;
}
.team-box:hover .info-team h4 a {
  transition: 0.25s all ease-in-out;
  color: #ffffff;
}
.team-box:hover .info-team h4:hover a {
  color: #373c40;
}
.team-box:hover .info-team h5 {
  color: #ffffff;
}
.team-box:hover .info-team ul {
  background: #f16543;
  border-color: #da502f;
  transition: 0.3s all ease-in-out;
  bottom: 0 !important;
}
.team-box:hover .info-team ul li a i {
  color: #ffffff;
}
.image-team {
  padding-bottom: 75px;
}
.image-team img {
  width: 100%;
  transition: 0.3s all ease-in-out;
}
.image-team .info-team {
  height: 100%;
  background: #ffffff;
  position: absolute;
  top: 100%;
  margin-top: -75px;
  transition: 1s all ease-in-out;
}
.image-team .info-team h4 a {
  transition: 1s all ease-in-out;
}
.image-team .info-team p {
  background: transparent;
  padding: 0;
  color: #ffffff;
}
.image-team .info-team .info-contents {
  padding: 20px;
}
.image-team .info-team .wrapper-social ul {
  width: 100%;
  position: absolute;
  transition: 0.3s all ease-in-out;
  -webkit-transition-delay: .1s;
  /* Safari */
  transition-delay: .1s;
  bottom: -100%;
  margin: 0 !important;
}
.image-team .info-team .wrapper-social ul li {
  float: none;
  margin-left: -4px;
}
/*-----------------------------------------------------------------------------------*/
/* custom animate css
/*-----------------------------------------------------------------------------------*/
.tada {
  -webkit-animation-iteration-count: 2;
  animation-iteration-count: 2;
}
.bounce {
  -webkit-animation-iteration-count: 1;
  animation-iteration-count: 1;
}
.fadeOut-Up {
  -webkit-animation-name: fadeOut-Up;
  animation-name: fadeOut-Up;
  -webkit-animation-iteration-count: 2;
  animation-iteration-count: 2;
}
@-webkit-keyframes fadeOut-Up {
  0% {
    opacity: 1;
  }
  80% {
    opacity: 0;
  }
  90% {
    opacity: 0;
    -webkit-transform: translate3d(0, -50%, 0);
    transform: translate3d(0, -50%, 0);
  }
  99% {
    opacity: 0;
  }
  100% {
    opacity: 1;
    -webkit-transform: translate3d(0);
    transform: translate3d(0);
  }
}
@keyframes fadeOut-Up {
  0% {
    opacity: 1;
  }
  80% {
    opacity: 0;
  }
  90% {
    opacity: 0;
    -webkit-transform: translate3d(0, -50%, 0);
    transform: translate3d(0, -50%, 0);
  }
  99% {
    opacity: 0;
  }
  100% {
    opacity: 1;
    -webkit-transform: translate3d(0);
    transform: translate3d(0);
  }
}
@-webkit-keyframes zoomOut-Up {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 10px, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 10px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  60% {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -500px, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -500px, 0);
    -webkit-transform-origin: center bottom;
    transform-origin: center bottom;
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
  99% {
    opacity: 0;
    -webkit-transform: scale3d(1) translate3d(0);
    transform: scale3d(1) translate3d(0);
  }
  100% {
    opacity: 1;
    -webkit-transform: scale3d(1) translate3d(0);
    transform: scale3d(1) translate3d(0);
  }
}
@keyframes zoomOut-Up {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 10px, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 10px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  60% {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -500px, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -500px, 0);
    -webkit-transform-origin: center bottom;
    transform-origin: center bottom;
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
  99% {
    opacity: 0;
    -webkit-transform: scale3d(1) translate3d(0);
    transform: scale3d(1) translate3d(0);
  }
  100% {
    opacity: 1;
    -webkit-transform: scale3d(1) translate3d(0);
    transform: scale3d(1) translate3d(0);
  }
}
.zoomOut-Up {
  -webkit-animation-name: zoomOut-Up;
  animation-name: zoomOut-Up;
}
.glass-animation:hover .glass span {
  -webkit-transition-delay: .2s;
  /* Safari */
  transition-delay: 0s;
  opacity: 1;
  width: 30px;
  height: 30px;
  border-radius: 200px;
}
.glass-animation:hover .glass span i {
  right: -14px;
  bottom: -7px;
  -webkit-transition-delay: .2s;
  /* Safari */
  transition-delay: .2s;
}
.glass-animation:hover .background {
  height: 100%;
  width: 100%;
  opacity: .7;
}
.glass-animation .background {
  transition: 0.3s all ease-in-out;
  width: 100;
  height: 100;
  background: #f16543;
  position: absolute;
  right: 0;
  top: 0;
  left: 0;
  bottom: 0;
  margin: auto;
  opacity: 0;
}
.glass-animation .glass {
  display: block;
  transition: 0.2s all ease-in-out;
}
.glass-animation .glass > span {
  opacity: 0;
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  margin: auto;
  transition: 0.2s all ease-in-out;
  -webkit-transition-delay: 0s;
  /* Safari */
  transition-delay: 0s;
  width: 200px;
  height: 200px;
  border-radius: 100px;
  display: block;
  border: 5px solid #ffffff;
}
.glass-animation .glass > span i {
  transition: 0.2s all ease-in-out;
  -webkit-transition-delay: 0s;
  /* Safari */
  transition-delay: 0s;
  position: absolute;
  right: -200px;
  bottom: -200px;
  display: inline-block;
  width: 18px;
  height: 5px;
  background: #ffffff;
  border-radius: 10px;
  -ms-transform: rotate(45deg);
  /* IE 9 */
  -webkit-transform: rotate(45deg);
  /* Chrome, Safari, Opera */
  transform: rotate(45deg);
}
.frame-animation {
  overflow: hidden;
}
.frame-animation:hover .frame-inner:before {
  opacity: 1;
  top: 10%;
  bottom: 10%;
  transition-delay: .2s;
}
.frame-animation:hover .frame-inner:after {
  right: 10%;
  left: 10%;
  opacity: 1;
}
.frame-animation .frame-inner:before {
  transition: 0.2s all ease-in-out;
  transition-delay: 0;
  opacity: 1;
  position: absolute;
  content: '';
  top: -100%;
  right: 15%;
  bottom: 200%;
  left: 15%;
  border-right: 1px solid #fff;
  border-left: 1px solid #fff;
}
.frame-animation .frame-inner:after {
  transition: 0.2s all ease-in-out;
  opacity: 1;
  position: absolute;
  content: '';
  top: 15%;
  right: -100%;
  bottom: 15%;
  left: 200%;
  border-top: 1px solid #fff;
  border-bottom: 1px solid #fff;
}
/*-----------------------------------------------------------------------------------*/
/* mixer showcase
/*-----------------------------------------------------------------------------------*/
.mixer-showcase {
  width: 100%;
  height: 100%;
  background: url("../images/showcase/5-variation.jpg");
  background-size: cover;
  background-position: center top;
}
.showcase-logo-wrapper {
  margin-top: 100px;
}
.wrapper-items {
  margin-top: 100px;
}
.showcase-items {
  margin: auto;
  max-width: 266px;
  margin-bottom: 50px;
}
.showcase-items img {
  display: block;
  width: 100%;
  position: relative;
  top: 0;
  transition: 0.3s all ease-in-out;
}
.showcase-items img:hover {
  top: -10px;
}
.showcase-items a {
  text-decoration: none;
}
.showcase-items a h3 {
  margin-bottom: 0;
  text-transform: uppercase;
  color: #ffffff;
  margin-top: 20px;
  font-family: 'Montserrat', sans-serif;
  font-size: 14px;
}
.showcase-items p {
  font-family: 'Raleway', sans-serif;
  text-transform: uppercase;
  color: #ffffff;
}
/*-----------------------------------------------------------------------------------*/
/*  WordPress Core
/*-----------------------------------------------------------------------------------*/
.alignnone {
  margin: 5px 30px 15px 0;
}
.aligncenter,
div.aligncenter {
  display: block;
  margin: 5px auto 5px auto;
}
.alignright {
  float: right;
  margin: 5px 0 15px 30px;
}
.alignleft {
  float: left;
  margin: 5px 30px 15px 0;
}
.aligncenter {
  display: block;
  margin: 5px auto 5px auto;
}
a img.alignright {
  float: right;
  margin: 5px 0 15px 30px;
}
a img.alignnone {
  margin: 5px 30px 15px 0;
}
a img.alignleft {
  float: left;
  margin: 5px 30px 15px 0;
}
a img.aligncenter {
  display: block;
  margin-left: auto;
  margin-right: auto;
}
.wp-caption {
  background: none;
  border: none;
  max-width: 96%;
  /* Image does not overflow the content area */
  padding: 0px;
  text-align: center;
}
.gallery-caption {
  font-size: 11px;
  line-height: 18px;
  padding: 5px 0;
}
.wp-caption.alignnone {
  margin: 5px 30px 15px 0;
}
.wp-caption.alignleft {
  margin: 5px 30px 15px 0;
}
.wp-caption.alignright {
  margin: 5px 0 15px 30px;
}
.wp-caption img {
  border: 0 none;
  height: auto;
  margin: 0;
  max-width: 98.5%;
  padding: 0;
  width: auto;
}
.wp-caption p.wp-caption-text {
  font-size: 12px;
  line-height: 18px;
  margin: 0;
  padding: 10px 8px;
}
.alert-wrapper {
  margin-bottom: 80px;
}
/*-----------------------------------------------------------------------------------*/
/*  WP Gallery
/*-----------------------------------------------------------------------------------*/
article #gallery-1 {
  margin-left: -15px;
  margin-right: -15px;
}
.gallery dl.gallery-item {
  padding-top: 0;
  padding-bottom: 0;
}
.gallery dl.gallery-item dt.gallery-icon {
  padding: 0;
}
.gallery dl.gallery-item dt.gallery-icon img {
  padding: 8px;
  border: none !important;
}
.gallery dl.gallery-item dd.gallery-caption {
  padding: 10px 0;
  text-align: justify;
}
/*-----------------------------------------------------------------------------------*/
/*  Isotope Filtering
/*-----------------------------------------------------------------------------------*/
.isotope-item {
  z-index: 2;
}
.isotope-hidden.isotope-item {
  pointer-events: none;
  z-index: 1;
}
/**** Isotope CSS3 transitions ****/
.isotope,
.isotope .isotope-item {
  -webkit-transition-duration: 0.8s;
  -moz-transition-duration: 0.8s;
  -ms-transition-duration: 0.8s;
  -o-transition-duration: 0.8s;
  transition-duration: 0.8s;
}
.isotope {
  -webkit-transition-property: height, width;
  -moz-transition-property: height, width;
  -ms-transition-property: height, width;
  -o-transition-property: height, width;
  transition-property: height, width;
}
.isotope .isotope-item {
  -webkit-transition-property: -webkit-transform, opacity;
  -moz-transition-property: -moz-transform, opacity;
  -ms-transition-property: -ms-transform, opacity;
  -o-transition-property: -o-transform, opacity;
  transition-property: transform, opacity;
}
/**** disabling Isotope CSS3 transitions ****/
.isotope.no-transition,
.isotope.no-transition .isotope-item,
.isotope .isotope-item.no-transition {
  -webkit-transition-duration: 0s;
  -moz-transition-duration: 0s;
  -ms-transition-duration: 0s;
  -o-transition-duration: 0s;
  transition-duration: 0s;
}
/*-----------------------------------------------------------------------------------*/
/*  Pagination
/*-----------------------------------------------------------------------------------*/
.pagination {
  margin: 27px 0;
  text-align: center;
  width: 100%;
}
.pagination span,
.pagination a {
  display: inline-block;
  color: #ffffff;
  font-size: 15px;
  line-height: 32px;
  background-color: #636363;
  padding: 4px 15px;
  text-decoration: none;
  text-transform: uppercase;
  margin: 2px;
}
.pagination span.next,
.pagination a.next,
.pagination span.previous,
.pagination a.previous {
  padding-left: 25px;
  padding-right: 25px;
}
.pagination span:focus,
.pagination a:focus {
  outline: 0;
  text-decoration: none;
}
.pagination span.current,
.pagination a.current,
.pagination span:hover,
.pagination a:hover {
  color: #ffffff;
  background-color: #f16543;
}
.pagination.inverted span,
.pagination.inverted a {
  background-color: #f16543;
}
.pagination.inverted span.current,
.pagination.inverted a.current,
.pagination.inverted span:hover,
.pagination.inverted a:hover {
  background-color: #636363;
}
.pagination.inverted span.previous,
.pagination.inverted a.previous,
.pagination.inverted span.next,
.pagination.inverted a.next {
  padding-right: 40px;
  padding-left: 40px;
}
.pagination.outlined span,
.pagination.outlined a {
  color: #777777;
  background-color: transparent;
  border: 2px solid #636363;
  padding: 2px 15px;
}
.pagination.outlined span.next,
.pagination.outlined a.next,
.pagination.outlined span.previous,
.pagination.outlined a.previous {
  padding-left: 25px;
  padding-right: 25px;
}
.pagination.outlined span.current,
.pagination.outlined a.current,
.pagination.outlined span:hover,
.pagination.outlined a:hover {
  color: #e34732;
  border-color: #e34732;
  background-color: transparent;
}
.section .pagination span,
.section .pagination a {
  background-color: transparent;
  padding: 20px 16px;
  line-height: 0;
  color: #61676c;
  border: 1px solid #cad3db;
  border-right: none;
  background-repeat: no-repeat;
}
.section .pagination span:last-child,
.section .pagination a:last-child {
  border-right: 1px solid #cad3db;
}
.section .pagination span.next,
.section .pagination a.next,
.section .pagination span.prev,
.section .pagination a.prev {
  float: none;
  background-image: url("../images/slider-nav-2.png");
  background-position: 18px center;
  text-indent: -9999px;
  padding-left: 20px;
  padding-right: 20px;
}
.section .pagination span.next,
.section .pagination a.next {
  background-position: -89px center;
}
.section .pagination span:focus,
.section .pagination a:focus,
.section .pagination span.active,
.section .pagination a.active,
.section .pagination span:hover,
.section .pagination a:hover {
  outline: 0;
  background-color: #cad3db;
  text-decoration: none;
}
.page-nav-btns {
  text-align: left;
}
.page-nav-btns a {
  padding-top: 8px;
  padding-bottom: 8px;
}
/*-----------------------------------------------------------------------------------*/
/* Theme Button
/*-----------------------------------------------------------------------------------*/
.view-more,
.theme-btn {
  display: inline-block;
  -webkit-transition: all 500ms cubic-bezier(0.23, 1, 0.32, 1);
  -moz-transition: all 500ms cubic-bezier(0.23, 1, 0.32, 1);
  -ms-transition: all 500ms cubic-bezier(0.23, 1, 0.32, 1);
  -o-transition: all 500ms cubic-bezier(0.23, 1, 0.32, 1);
  transition: all 500ms cubic-bezier(0.23, 1, 0.32, 1);
  /* easeOutQuint */
  -webkit-transition-timing-function: cubic-bezier(0.23, 1, 0.32, 1);
  -moz-transition-timing-function: cubic-bezier(0.23, 1, 0.32, 1);
  -ms-transition-timing-function: cubic-bezier(0.23, 1, 0.32, 1);
  -o-transition-timing-function: cubic-bezier(0.23, 1, 0.32, 1);
  transition-timing-function: cubic-bezier(0.23, 1, 0.32, 1);
  /* easeOutQuint */
}
.view-more {
  margin-top: 40px;
  background-color: #ffffff;
  color: #f16543;
  padding: 13px 42px;
  cursor: pointer;
}
.btn-mixer {
  font-size: 18px;
  padding: 8px 30px;
  color: #ffffff;
  line-height: 28px;
  font-weight: 600;
  text-transform: uppercase;
  display: inline-block;
  text-align: center;
  text-decoration: none;
  background-color: #f16543;
}
.btn-mixer.current,
.btn-mixer:hover,
.btn-mixer:focus {
  color: #ffffff;
}
.btn-mixer.current,
.btn-mixer:hover {
  background-color: #d94825;
}
.btn-mixer.pressed,
.btn-mixer:active,
.btn-mixer:focus {
  outline: none;
  background-color: #ce3814;
}
#carregando {
background: url("../images/ajax-loader.gif") no-repeat center center;
width: 100%;
height: 50px;
}
/*-----------------------------------------------------------------------------------*/
/* Button Colors
/*-----------------------------------------------------------------------------------*/
.btn-green {
  font-size: 18px;
  padding: 8px 30px;
  color: #ffffff;
  line-height: 28px;
  font-weight: 600;
  text-transform: uppercase;
  display: inline-block;
  text-align: center;
  text-decoration: none;
  background-color: #f16543;
  background-color: #9eb21a;
}
.btn-green.current,
.btn-green:hover,
.btn-green:focus {
  color: #ffffff;
}
.btn-green.current,
.btn-green:hover {
  background-color: #d94825;
}
.btn-green.pressed,
.btn-green:active,
.btn-green:focus {
  outline: none;
  background-color: #ce3814;
}
.btn-green.current,
.btn-green:hover {
  background-color: #7c8d0b;
}
.btn-green.pressed,
.btn-green:active,
.btn-green:focus {
  background-color: #626f08;
}
.btn-grey {
  font-size: 18px;
  padding: 8px 30px;
  color: #ffffff;
  line-height: 28px;
  font-weight: 600;
  text-transform: uppercase;
  display: inline-block;
  text-align: center;
  text-decoration: none;
  background-color: #f16543;
  background-color: #f16543;
}
.btn-grey.current,
.btn-grey:hover,
.btn-grey:focus {
  color: #ffffff;
}
.btn-grey.current,
.btn-grey:hover {
  background-color: #d94825;
}
.btn-grey.pressed,
.btn-grey:active,
.btn-grey:focus {
  outline: none;
  background-color: #ce3814;
}
.btn-grey.current,
.btn-grey:hover {
  background-color: #5b5b5b;
}
.btn-grey.pressed,
.btn-grey:active,
.btn-grey:focus {
  background-color: #414141;
}
.btn-light-grey {
  font-size: 18px;
  padding: 8px 30px;
  color: #ffffff;
  line-height: 28px;
  font-weight: 600;
  text-transform: uppercase;
  display: inline-block;
  text-align: center;
  text-decoration: none;
  background-color: #f16543;
  background-color: #ababab;
}
.btn-light-grey.current,
.btn-light-grey:hover,
.btn-light-grey:focus {
  color: #ffffff;
}
.btn-light-grey.current,
.btn-light-grey:hover {
  background-color: #d94825;
}
.btn-light-grey.pressed,
.btn-light-grey:active,
.btn-light-grey:focus {
  outline: none;
  background-color: #ce3814;
}
.btn-light-grey.current,
.btn-light-grey:active,
.btn-light-grey:hover {
  background-color: #929292;
}
.btn-light-grey.pressed,
.btn-light-grey:active,
.btn-light-grey:focus {
  background-color: #6a6a6a;
}
/*-----------------------------------------------------------------------------------*/
/* Button Sizes
/*-----------------------------------------------------------------------------------*/
.btn-standard {
  width: 220px;
}
.btn-mini {
  padding: 4px 20px;
  font-size: 14px;
}
.btn-small {
  padding: 6px 25px;
  font-size: 16px;
}
.btn-large {
  padding: 9px 35px;
  font-size: 20px;
}
.btn-huge {
  padding: 12px 35px;
  font-size: 24px;
}
input,
textarea {
  border: none;
}
input:focus,
textarea:focus {
  outline: none;
}
input[type="submit"] {
  font-size: 18px;
  color: #ffffff;
  font-weight: 700;
  text-transform: uppercase;
  height: 46px;
  padding: 0 35px;
  -webkit-transition: all 500ms cubic-bezier(0.23, 1, 0.32, 1);
  -moz-transition: all 500ms cubic-bezier(0.23, 1, 0.32, 1);
  -ms-transition: all 500ms cubic-bezier(0.23, 1, 0.32, 1);
  -o-transition: all 500ms cubic-bezier(0.23, 1, 0.32, 1);
  transition: all 500ms cubic-bezier(0.23, 1, 0.32, 1);
  /* easeOutQuint */
  -webkit-transition-timing-function: cubic-bezier(0.23, 1, 0.32, 1);
  -moz-transition-timing-function: cubic-bezier(0.23, 1, 0.32, 1);
  -ms-transition-timing-function: cubic-bezier(0.23, 1, 0.32, 1);
  -o-transition-timing-function: cubic-bezier(0.23, 1, 0.32, 1);
  transition-timing-function: cubic-bezier(0.23, 1, 0.32, 1);
  /* easeOutQuint */
  background-color: #f16543;
}
input[type="submit"]:hover {
  background-color: #373c40;
  border-color: #373c40;
}
#message-sent {
  color: #ffffff;
}
/*-----------------------------------------------------------------------------------*/
/*  Widgets
/*-----------------------------------------------------------------------------------*/
.footer a {
  transition: all ease-in-out 0.2s;
}
.widget-category ul li:before {
  font-family: 'FontAwesome';
  content: "\f101";
  padding-right: 17px;
}
.sidebar .widget .title {
  color: #525659;
  text-transform: uppercase;
  font-weight: 600;
}
.sidebar .widget ul li {
  border-bottom: 1px solid #d3dae0;
  padding: 6px 0 6px 0;
  font-size: 16px;
  color: #6e7375;
}
.sidebar .widget ul li a {
  color: #373c40;
  color: #6e7375;
}
.sidebar .widget ul li a:hover {
  color: #f16543;
}
.sidebar .widget ul li ul {
  padding: 6px 0 0;
}
.sidebar .widget ul li ul li:first-child {
  border-top: 1px solid #dedede;
}
.sidebar .widget ul li ul li:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}
.widget {
  margin-bottom: 80px;
}
.widget .title {
  font-size: 20px;
  line-height: 20px;
  margin-bottom: 22px;
}
.widget ul {
  list-style: none;
  margin: 0;
}
.widget ul li ul li:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}
.widget .gallery-post-slider ul li {
  border: none;
  background: none;
  padding: 0;
}
/*-----------------------------------------------------------------------------------*/
/*  Search Form Widget
/*-----------------------------------------------------------------------------------*/
.searchform {
  overflow: hidden;
  background-color: #f16543;
  /* firefox 19+ */
  /* ie */
}
.searchform ::-webkit-input-placeholder {
  color: #ffffff;
}
.searchform ::-moz-placeholder {
  color: #ffffff;
}
.searchform :-ms-input-placeholder {
  color: #ffffff;
}
.searchform input:-moz-placeholder {
  color: #ffffff;
}
.searchform #s,
.searchform #searchsubmit {
  color: #ffffff;
  height: 48px;
  border: none;
  background-color: #f16543;
}
.searchform #s {
  float: left;
  width: 85%;
  padding-left: 20px;
  padding-right: 0;
}
.searchform .screen-reader-text {
  display: none;
}
.searchform #searchsubmit {
  float: right;
  width: 15%;
  padding-left: 0;
  padding-right: 0;
  background-image: url("../images/icon-lense.png");
  background-repeat: no-repeat;
  background-position: center center;
}
.searchform #searchsubmit:hover {
  background-color: #373c40;
}
/*-----------------------------------------------------------------------------------*/
/*  Testimonial Widget
/*-----------------------------------------------------------------------------------*/
.widget blockquote {
  margin: 0;
  padding: 5px;
  border: 0;
}
.widget blockquote p {
  font-size: 14px;
  line-height: 23px;
}
.widget blockquote strong {
  color: #373c40;
  margin-left: 10px;
}
.footer .widget blockquote strong {
  color: #8CCFCC;
}
/*-----------------------------------------------------------------------------------*/
/*  Tabbed Widget
/*-----------------------------------------------------------------------------------*/
.widget .tabbed .tabs {
  margin: 0;
  padding: 0;
}
.widget .tabbed .tabs li {
  float: left;
  list-style: none;
  margin: 0;
  background-image: none;
  border: none;
  padding: 10px 1px 10px;
  width: 33.333%;
  color: #878c90;
  text-align: center;
  cursor: pointer;
  text-transform: uppercase;
  font-size: 16px;
  font-weight: 600;
  border-right: 1px solid #d3dae0;
}
.widget .tabbed .tabs li:last-child {
  border-right: none;
}
.widget .tabbed .tabs li:hover,
.widget .tabbed .tabs li.current {
  color: #ffffff;
  background-color: #f16543;
  border-right: 1px solid #f16543;
  border-bottom: 1px solid #f16543;
  margin-bottom: -1px;
}
.widget .tabbed .block {
  margin: 0;
  display: none;
}
.widget .tabbed .block.current {
  display: block;
  padding: 32px 0 0;
  border-top: 1px solid #d3dae0;
}
.widget .tabbed .widget-list li {
  background: none;
  border-bottom: 1px solid #E8E9EF;
  padding: 0 0 20px;
  margin-bottom: 25px;
}
.widget .tabbed .widget-list li .link-read-more {
  color: #f16543;
}
.widget .tabbed .widget-list li .link-read-more:hover {
  color: #373c40;
}
.widget .tabbed .widget-list li .link-read-more:hover:after {
  color: #373c40;
}
.widget-list li {
  overflow: hidden;
  margin-bottom: 20px;
}
.widget-list li:last-child {
  border-bottom: none;
}
.widget-list li h5 {
  margin: 0 0 9px;
  line-height: 21px;
  color: #a5aaae;
  font-size: 13px;
  font-weight: normal;
}
.widget-list li figure {
  float: left;
  margin-right: 22px;
}
.widget-list li figure img {
  width: 102px;
  height: 104px;
}
.widget-list li span {
  display: inline-block;
  font-size: 12px;
  padding-left: 20px;
  background-repeat: no-repeat;
  background-position: left 3px;
  text-transform: uppercase;
  margin-bottom: 7px;
}
.widget-list li .comments {
  background-image: url("../images/icon-chat-3.png");
  background-position: left 3px;
  margin-right: 18px;
}
.widget-list li .author {
  background-image: url("../images/icon-user.png");
  background-position: left 3px;
  padding-left: 17px;
}
.widget-list li .link-read-more {
  text-transform: uppercase;
  font-size: 12px;
  display: block;
}
.widget-list li .link-read-more:after {
  content: " \f101";
  font-family: FontAwesome;
  color: #f16543;
}
.footer .widget .tabbed .tabs li {
  font-size: 13px;
  border-color: #44494E;
}
.footer .widget .tabbed .block {
  border-color: #44494E;
}
.footer .widget .widget-list li {
  padding-bottom: 15px;
  margin-bottom: 15px;
  border-color: #44494E;
}
.footer .widget .widget-list li:last-child {
  border-bottom: none;
}
.footer .widget .widget-list li .wrapper {
  float: left;
  width: 70%;
  padding-left: 15px;
}
.footer .widget .widget-list li h5 {
  line-height: 18px;
}
.footer .widget .widget-list li h5 a {
  color: #CDD1D4;
}
.footer .widget .widget-list li h5 a:hover {
  color: #ffffff;
}
.footer .widget .widget-list li figure {
  margin: 0;
  width: 30%;
}
.footer .widget .widget-list li img {
  max-width: 100%;
  height: auto;
}
.footer .widget .widget-list li span a {
  color: #7D8489;
}
.footer .widget .widget-list li .comments,
.footer .widget .widget-list li .author {
  background-position: left 4px;
}
.footer .widget .widget-list li .link-read-more {
  color: #8CCFCC;
  text-transform: none;
  font-size: 11px;
}
.footer .widget .widget-list li .link-read-more:after {
  content: "";
}
.footer .widget .widget-list li .link-read-more:hover {
  color: #ffffff;
}
/*-----------------------------------------------------------------------------------*/
/*  About Us Widget
/*-----------------------------------------------------------------------------------*/
.widget.widget_text figure {
  margin-bottom: 25px;
}
.widget.widget_text img {
  max-width: 100%;
  height: auto;
  display: block;
}
/*-----------------------------------------------------------------------------------*/
/*  Recent Posts Widget
/*-----------------------------------------------------------------------------------*/
.widget.widget_recent_entries .blog-icon {
  background: #f16543;
  display: inline-block;
  float: left;
  width: 50px;
  height: 50px;
  margin: 0 15px 15px 0;
  text-align: center;
}
.widget.widget_recent_entries .blog-icon i {
  line-height: 50px;
  color: #ffffff;
  transition: 0.2s all ease-in-out;
}
.widget.widget_recent_entries .blog-icon:hover {
  background: #ffffff;
}
.widget.widget_recent_entries .blog-icon:hover i {
  color: #f16543;
}
.widget.widget_recent_entries ul li {
  overflow: hidden;
  margin-bottom: 15px;
  background: none;
  padding-left: 0;
}
.widget.widget_recent_entries h5 {
  font-size: 13px;
  font-weight: normal;
  margin: 5px 0;
}
.widget.widget_recent_entries h5 a {
  color: #cdd1d4;
}
.widget.widget_recent_entries h5 a:hover {
  color: #ffffff;
}
.widget.widget_recent_entries .post-meta {
  font-size: 12px;
  font-style: italic;
  font-family: 'Open Sans', sans-serif;
}
/*-----------------------------------------------------------------------------------*/
/*  Twitter Widget
/*-----------------------------------------------------------------------------------*/
.widget_displaytweetswidget p {
  border-bottom: 1px solid #44494e;
  padding-bottom: 12px;
  margin-bottom: 10px;
  line-height: 21px;
}
.widget_displaytweetswidget a {
  color: #8ccfcc;
}
.widget_displaytweetswidget a:hover {
  color: #e6f5f4;
}
.widget_displaytweetswidget small {
  font-size: 12px;
}
.widget_displaytweetswidget .theme-btn {
  margin-top: 13px;
  font-size: 14px;
  text-transform: uppercase;
  font-weight: 700;
}
.footer .widget_displaytweetswidget p:last-of-type {
  border-bottom: none;
}
.sidebar .widget_displaytweetswidget p {
  border-bottom-color: #ecf0f3;
  padding-bottom: 15px;
  margin-bottom: 15px;
}
.sidebar .widget_displaytweetswidget a {
  color: #7d8489;
}
.sidebar .widget_displaytweetswidget a:hover {
  color: #f16543;
}
.sidebar .widget_displaytweetswidget small {
  font-size: 13px;
  color: #4b4b4b;
  display: inline-block;
  margin-top: 10px;
}
.sidebar .widget_displaytweetswidget .theme-btn {
  color: #a9b3bc;
  font-size: 14px;
  border: 2px solid #ced4d9;
  padding: 9px 21px;
}
.sidebar .widget_displaytweetswidget .theme-btn:after {
  content: " \f099";
  font-family: FontAwesome;
  color: #a9b3bc;
  font-size: 18px;
  margin-left: 9px;
}
.sidebar .widget_displaytweetswidget .theme-btn:hover {
  color: #ffffff;
  border-color: #f16543;
  background-color: #f16543;
}
.sidebar .widget_displaytweetswidget .theme-btn:hover:after {
  color: #ffffff;
}
.interact {
  display: none;
}
#twitter-fetcher p {
  border: none;
  padding-bottom: 0;
  font-family: 'Open Sans', sans-serif;
  line-height: 23px;
}
#twitter-fetcher .tweet {
  margin-bottom: 0;
}
#twitter-fetcher li {
  border-bottom: 1px solid #44494e ;
  margin-bottom: 12px;
}
#twitter-fetcher li:last-child {
  border-bottom: none;
}
.timePosted {
  font-style: italic;
  font-size: 12px;
}
/*-----------------------------------------------------------------------------------*/
/* flicker widget
/*-----------------------------------------------------------------------------------*/
.widget_flicker .flickr_badge_image {
  float: left;
  border: 3px solid transparent;
}
#myElement {
  margin-top: -8px;
  margin-left: -8px;
}
#myElement a {
  margin: 8px !important;
  transition: 0.2s all ease-in-out;
}
#myElement a:hover {
  opacity: .7;
}
#myElement a img {
  height: auto !important;
}
/*-----------------------------------------------------------------------------------*/
/*  Contact Us Widget
/*-----------------------------------------------------------------------------------*/
.widget.contact h5 {
  color: #a5a9ad;
  font-size: 13px;
  margin-bottom: 30px;
  font-weight: normal;
}
.widget.contact address {
  margin-bottom: 27px;
  line-height: 21px;
}
.widget.contact .contacts-list {
  padding: 0;
  text-align: left;
}
.widget.contact .contacts-list li {
  font-size: 13px;
  display: block;
  border-bottom: 1px solid #44494e;
  width: auto;
  margin: 9px 0;
  padding: 0 0 9px;
  background: none;
}
.widget.contact .contacts-list li:last-child {
  border-bottom: none;
}
.widget.contact .contacts-list li span {
  color: #a5a9ad;
}
.widget.contact .contacts-list li a:hover {
  color: #ffffff;
}
.sidebar .widget.contact .contacts-list li {
  border-color: #ecf0f3;
}
.sidebar .widget.contact h5,
.sidebar .widget.contact a,
.sidebar .widget.contact .contacts-list li,
.sidebar .widget.contact .contacts-list li span {
  color: #7D8489;
}
/*-----------------------------------------------------------------------------------*/
/*  Wp Calendar Widget
/*-----------------------------------------------------------------------------------*/
#wp-calendar {
  width: 100%;
}
#wp-calendar caption {
  margin: 11px 0 30px;
  text-align: left;
  font-size: 24px;
  line-height: 30px;
  color: #373c40;
  font-weight: 500;
}
#wp-calendar thead th {
  color: #ffffff;
  border: 1px solid #DCDCDC;
  text-align: center;
  padding: 10px 4px;
  background: #373c40;
}
#wp-calendar tbody {
  color: #ffffff;
}
#wp-calendar tbody td {
  background: #f16543;
  border: 1px solid #ffffff;
  text-align: center;
  padding: 10px 4px;
}
#wp-calendar tbody td#today,
#wp-calendar tbody td:hover {
  background: #373c40;
}
#wp-calendar tbody td a {
  color: #ffffff;
}
#wp-calendar tbody .pad {
  background: none;
}
.footer #wp-calendar caption {
  color: #edf1f4;
}
.footer #wp-calendar thead th {
  border-color: #36384C;
}
.footer #wp-calendar tbody td {
  border-color: #36384C;
}
/*-----------------------------------------------------------------------------------*/
/*  Tag Cloud Widget
/*-----------------------------------------------------------------------------------*/
.widget .tagcloud {
  overflow: hidden;
  margin-left: -4px;
  margin-right: -4px;
}
.widget .tagcloud a {
  display: block;
  float: left;
  padding: 6px 15px;
  color: #84898b;
  background-color: #ecf0f3;
  font-size: 14px;
  margin: 4px;
  text-decoration: none;
}
.widget .tagcloud a:hover {
  color: #ffffff;
  background: #f16543;
}
.footer .widget .tagcloud a {
  color: #ffffff;
  background-color: #f16543;
}
.footer .widget .tagcloud a:hover {
  color: #373c40;
  background-color: #8CCFCC;
}
/*-----------------------------------------------------------------------------------*/
/*  Layout
/*-----------------------------------------------------------------------------------*/
.page-container {
  -webkit-box-sizing: content-box;
  -moz-box-sizing: content-box;
  box-sizing: content-box;
}
.main,
.sidebar {
  position: static;
}
.main a {
  transition: all 0.2s ease-in-out;
  color: #f16543;
}
.main a:hover {
  color: #333333;
}
/*-----------------------------------------------------------------------------------*/
/*  Home FlexSlider
/*-----------------------------------------------------------------------------------*/
.flexslider {
  border: none;
  border-radius: 0;
  box-shadow: none;
  background: none;
  margin: 0;
}
.flexslider ul li {
  position: relative;
}
.flexslider .flex-direction-nav {
  display: none;
}
.flexslider .flex-direction-nav li {
  position: static;
}
.flexslider .flex-direction-nav a {
  display: block;
  color: rgba(255,255,255,.7);
  font-size: 19px;
  line-height: 46px;
  text-align: center;
  width: 54px;
  height: 50px;
  border: 3px solid rgba(255,255,255,.7);
  position: absolute;
  top: 50%;
  z-index: 150;
  margin-top: -28px;
  cursor: pointer;
}
.flexslider .flex-direction-nav a:hover {
  color: #fff;
  border: 3px solid #fff;
}
.flexslider .flex-direction-nav a.flex-next {
  right: 23px;
}
.flexslider .flex-direction-nav a.flex-prev {
  left: 23px;
}
.slide-description {
float: left;
}
.slide-description h2 {
  background-color: #4f5c63;
  color: #ffffff;
  font-size: 59px;
  line-height: 60px;
  margin: 0;
  padding: 15px 22px 13px 22px;
  text-transform: uppercase;
}
.slide-description p {
  font-size: 18px;
  line-height: 27px;
  margin-bottom: 35px;
}
.slide-description p span {
  display: inline-block;
  background-color: rgba(255,255,255,.9);
  padding: 13px 21px 11px 22px;
}
.slide-description a {
  display: inline-block;
  font-size: 18px;
  line-height: 27px;
  font-weight: 700;
  padding: 15px 37px 11px 37px;
  color: #ffffff;
  background-color: #f16543;
}
.slide-description a:hover {
  background-color: #f26522;
}
.home-slider {
  background: url("../images/temp/slider-image-5.jpg") 50% center;
  background-attachment: fixed;
  background-size: cover;
  display: table;
  height: 900px;
  margin: auto;
}
.home-slider .inner-wrapper {
  display: table-cell;
  vertical-align: middle;
}
.flexslider.variant-two .slide-description h2,
.flexslider.variant-two .slide-description p {
  margin-bottom: 3px;
}
.flexslider.variant-two .slide-description p {
  font-size: 15px;
}
.flexslider.variant-two .slide-description span {
  background-color: #373c40;
  color: #9ca4ab;
  padding-top: 10px;
  padding-bottom: 10px;
}
.flexslider.variant-two .slide-description a {
  margin-top: 25px;
  padding: 13px 40px;
}
.flexslider.variant-three .slide-description {
  position: static;
  text-align: center;
}
.flexslider.variant-three .slide-description h2 {
  color: #ffffff;
  font-size: 60px;
  text-transform: uppercase;
  background: none;
  padding: 0;
  margin-bottom: 20px;
}
.flexslider.variant-three .slide-description p {
  font-size: 18px;
  font-weight: 300;
  color: #a7c0c3;
  margin-bottom: 40px;
}
.flexslider.variant-three .slide-description a {
  color: #ffffff;
  border: 1px solid #ffffff;
  padding: 16px 43px;
  background: none;
}
.flexslider.variant-three .slide-description a:hover {
  background-color: rgba(255, 255, 255, 0.2);
}
.flexslider.variant-one,
.flexslider.variant-two,
.home-slider {
  border-bottom: 3px solid #f16543;
}
.flexslider.variant-one .container,
.flexslider.variant-two .container,
.home-slider .container {
  -webkit-box-sizing: content-box;
  -moz-box-sizing: content-box;
  box-sizing: content-box;
}
.testimonial .flex-direction-nav li a,
.follow-us .flex-direction-nav li a {
  color: #ffffff;
  border-color: #ffffff;
}
.testimonial .flex-direction-nav li a:hover,
.follow-us .flex-direction-nav li a:hover {
  color: #373c40;
  background-color: #ffffff;
}
.flexslider.variant-three .flex-direction-nav li a,
.testimonial.variant-four .flex-direction-nav li a,
.follow-us.variant-four .flex-direction-nav li a {
  color: #ffffff;
  border-color: #ffffff;
  border-width: 1px;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  border-radius: 5px;
  line-height: 48px;
}
.flexslider.variant-three .flex-direction-nav li a:hover,
.testimonial.variant-four .flex-direction-nav li a:hover,
.follow-us.variant-four .flex-direction-nav li a:hover {
  color: #373c40;
  background-color: #ffffff;
}
.custom-container-slide {
  width: 1120px;
}
.header-wrapper {
  background-color: #ffffff;
  width: 100%;
  position: relative;
  z-index: 99999;
  height: 68px;
  float: left;
}
.header-wrapper .container {
  -webkit-box-sizing: content-box;
  -moz-box-sizing: content-box;
  box-sizing: content-box;
}
.header {
  position: relative;
}
.custom-container-header {
  width: 1150px;
}
.break {
clear: both;
}
/*-----------------------------------------------------------------------------------*/
/*  Logo
/*-----------------------------------------------------------------------------------*/
.smaller {
  height: 61px;
  transition: 0.2s all ease-in-out;
}
#logo {
  text-align: center;
}
#logo #logo-image {
  float: left;
  margin-top: 6px;
  height: 160px;
  transition: 1s all ease-in-out;
}
.logo-text {
float: left;
margin: 13px 0 0 10px;
}
.logo-title {
margin: 0;
display: block;
width: 100%;
text-align: left;
color: rgba(0,0,0,.5);
font-weight: 800;
font-family: "Open Sans";
font-size: 15px;
letter-spacing: 0.5px;
}
.logo-description {
margin: -4px 0 0 0;
display: block;
width: 100%;
text-align: left;
color: rgba(0,0,0,.5);
font-weight: 400;
font-family: "Open Sans";
font-size: 15px;
letter-spacing: 0.5px;
}
#logo h2 {
  margin: 15px 0;
  font-size: 40px;
  line-height: 30px;
  font-weight: 900;
}
#logo h2 a {
  color: #373c40;
  text-decoration: none;
}
.smaller {
  height: 86px !important;
  transition: 0.5s all ease-in-out;
}
.logo-wrapper > #logo {
  vertical-align: middle;
  height: 60px;
}
/*-----------------------------------------------------------------------------------*/
/*  Main Nav
/*-----------------------------------------------------------------------------------*/
.main-menu {
  float: right;
}
.main-menu > ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.main-menu > ul > li > a:after {
  content: url("../images/main-menu-bg-arrow.png");
  position: absolute;
  bottom: -2px;
  left: 50%;
  margin-left: -3px;
  opacity: 0;
  visibility: hidden;
  transition: 0.2s all ease-in-out;
}
.main-menu > ul > li:hover > a:after {
  visibility: visible;
  opacity: 1;
}
.main-menu > ul li {
  display: inline-block;
  position: relative;
  margin: 0 15px 0 0;
  padding: 0;
  transition: all 0.2s ease-in-out;
}
.main-menu > ul li a {
  transition: all 0.2s ease-in-out;
  display: inline-block;
  color: #000;
  font-size: 13px;
  line-height: 21px;
  font-weight: 700;
  text-transform: uppercase;
  text-decoration: none;
  margin: 0;
  padding: 27px 2px 15px 2px;
  border-bottom: 5px solid transparent;
}
.main-menu ul li a:hover,
.main-menu ul li a.active {
color: #333 !important;
border-bottom: 5px solid #f16543;
}
.main-menu > ul li a:focus {
  outline: none;
}
.main-menu > ul li ul {
  display: none;
  position: absolute;
  top: 61px;
  left: 0;
  z-index: 888;
  width: 236px;
  padding: 0;
  background-color: #63696e;
  border-bottom: 4px solid #373c40;
}
.main-menu > ul li ul li {
  display: block;
  border-bottom: 1px solid #565c60;
  margin-right: 0;
}
.main-menu > ul li ul li:last-child {
  border-bottom: none;
}
.main-menu > ul li ul li a {
  display: block;
  padding: 7px 20px;
  border: none;
  background: none;
  color: #a6b1ba;
  font-size: 12px;
  font-weight: 600;
}
.main-menu > ul li ul li:hover {
  background-color: #565c60;
}
.main-menu > ul li ul li:hover > a {
  color: #ffffff;
}
.main-menu > ul li ul li ul {
  top: 0px;
  left: 236px;
}
.main-menu ul li:hover > a {
  color: #373c40;
  border-bottom-color: #f16543;
}
.contact-options a {
  transition: 0.2s all ease-in-out;
}
.social_networks a {
  transition: 0.2s all ease-in-out;
}
.main-menu ul li:hover ul li a {
  border: none;
  background: none;
}
.main-menu ul li:hover > ul {
  display: block;
}
#nav-toggle {
  background-image: url("../images/icon-res-menu-black.png");
}
.meanmenu-reveal {
  transition: 0.2s all ease-in-out;
}
.meanmenu-reveal:hover .first-span {
  transform: rotateZ(90deg) translateX(6px);
}
.meanmenu-reveal:hover .last-span {
  transform: rotateZ(90deg) translateX(-6px);
}
.meanclose:hover .close-outer {
  transform: rotateZ(0deg);
}
.meanclose .close-outer {
  transition: 0.7s all ease-in-out;
  display: inherit;
  transform: rotateZ(315deg);
}
.meanclose .close-first {
  transform: rotateZ(90deg) translateX(6px);
}
.first-span {
  transition: 0.2s all ease-in-out;
}
.last-span {
  transition: 0.2s all ease-in-out;
}
/*-----------------------------------------------------------------------------------*/
/*  Contact Card
/*-----------------------------------------------------------------------------------*/
.contact-card .contact-options {
  float: left;
  display: inline-block;
  font-size: 13px;
  font-weight: normal;
  margin: 0;
}
.contact-card .phone-number,
.contact-card .email {
  color: #80878d;
  display: inline-block;
  padding: 19px 0 19px 22px;
}
.contact-card a {
  color: #80878d;
}
.contact-card a:hover {
  color: #e0e7ed;
  text-decoration: none;
}
.contact-card .email {
  background: url("../images/icon-mail-4.png") no-repeat left center;
  margin-right: 10px;
}
.contact-card .phone-number {
  background: url("../images/icon-phone-receiver.png") no-repeat left center;
  margin-right: 10px;
}
.social_networks {
  float: right;
  list-style: none;
  margin: 0 0 0 4px;
  padding: 0;
}
.social_networks li {
  display: inline-block;
  border: none;
  margin: 0 0 0 -4px;
}
.social_networks li a {
  color: #929a9b;
  font-size: 16px;
  display: block;
  text-align: center;
  line-height: 70px;
  height: 68px;
  background: rgba(0,0,0,.05);
  margin: 0px;
  padding: 0 20px;
  outline: none;
  width: auto !important;
}
.social_networks li a:hover {
  color: #f16543;
}
.header-wrapper.variant-one {
  box-shadow: 0px 1px 5px rgba(0, 0, 0, 0.1);
}
.header-wrapper.variant-one .social_networks li a {
  border-color: #d3dae0;
}
.header-wrapper.variant-one .contact-card {
  float: right;
}
.header-wrapper.variant-one #logo {
  float: left;
  padding-top: 8px;
}
.header-wrapper.variant-one .main-menu ul li ul {
  background: #63696e;
}
.header-wrapper.variant-one .main-menu ul li ul li {
  border-color: #565c60;
  transition: all 0.2s ease-in-out;
  background: transparent;
  background-size: 500px 1px;
  background-position: 100%;
}
.header-wrapper.variant-one .main-menu ul li ul li:hover {
  background: #565c60;
}
.header-wrapper.variant-one .main-menu ul li ul li a {
  transition: all 0.2s ease-in-out;
}
.header-wrapper.variant-one .main-menu ul li ul li:hover > a {
  color: #ffffff;
}
.header-wrapper.variant-two {
  background-color: #fff;
  border-bottom: 1px solid rgba(0,0,0,.1);
}
.header-wrapper.variant-two .main-menu {
  float: left;
}
.header-wrapper.variant-two .main-menu ul li:hover > a {
  color: #e0e7ed;
}
.header-wrapper.variant-three {
  background-color: #63c9ed;
  border-bottom: 1px solid #65bbd9;
}
.header-wrapper.variant-three .main-menu {
  float: left;
}
.header-wrapper.variant-three .main-menu ul > li {
  float: left;
  margin-right: 0;
}
.header-wrapper.variant-three .main-menu ul > li > a {
  border-right: 1px solid #65bbd9;
  border-bottom: none;
  color: #40778b;
  padding: 20px 17px;
}
.header-wrapper.variant-three .main-menu ul > li > a:after {
  display: none;
}
.header-wrapper.variant-three .main-menu ul > li:hover > a {
  background: none;
  border-bottom-color: transparent;
  color: #1d343d;
}
.header-wrapper.variant-three .main-menu ul > li ul {
  background-color: #7ad1f0;
  border-color: #1d343d;
  border-top: 1px solid #65bbd9;
}
.header-wrapper.variant-three .main-menu ul > li ul li {
  float: none;
  border-bottom: 1px solid #65bbd9;
}
.header-wrapper.variant-three .main-menu ul > li ul li a {
  border-right: none;
  font-size: 13px;
  padding: 7px 20px;
}
.header-wrapper.variant-three .main-menu ul li ul li:hover {
  background-color: #65bbd9;
}
.header-wrapper.variant-three .contact-card .contact-options a,
.header-wrapper.variant-three .contact-card .contact-options .phone-number,
.header-wrapper.variant-three .contact-card .contact-options .email {
  color: #47849a;
}
.header-wrapper.variant-three .contact-card .contact-options a:hover {
  color: #373c40;
}
.header-wrapper.variant-three .contact-card .contact-options .email {
  background-image: url("../images/icon-mail-5.png");
}
.header-wrapper.variant-three .contact-card .contact-options .phone-number {
  border-left: 1px solid #65bbd9;
  background-image: url("../images/icon-phone-receiver-2.png");
  background-position: 22px 22px;
  padding-left: 42px;
  margin-right: 30px;
}
.header-wrapper.variant-three .social_networks li a {
  border-color: #65bbd9;
  color: #47849a;
}
.header-wrapper.variant-three .social_networks li a:hover {
  color: #ffffff;
}
.header-wrapper.variant-three .wrapper-contact-options {
  float: right;
}
.header-wrapper.variant-four {
  -webkit-transition: top 0.3s;
  -moz-transition: top 0.3s;
  -o-transition: top 0.3s;
  transition: top 0.3s;
  background: none;
  position: absolute;
  top: 61px;
}
.header-wrapper.variant-four .header {
  border-top: 1px solid #778587;
  border-bottom: 1px solid #778587;
}
.header-wrapper.variant-four #logo img {
  margin-top: -30px;
}
.header-wrapper.variant-four .main-menu {
  margin-left: -15px;
  float: left;
}
.header-wrapper.variant-four .main-menu ul li {
  margin-bottom: -1px;
  margin-right: 4px;
}
.header-wrapper.variant-four .main-menu ul li > a {
  border-bottom-width: 1px;
}
.header-wrapper.variant-four .main-menu ul li > a:after {
  display: none;
}
.header-wrapper.variant-four .main-menu ul li a {
  font-weight: normal;
  color: #99a5a7;
  padding: 24px 8px 24px;
}
.header-wrapper.variant-four .main-menu ul li:hover > a {
  background: none;
  color: #ffffff;
}
.header-wrapper.variant-four .main-menu ul li ul {
  top: 70px;
  background-color: #778587;
  background-color: rgba(129, 143, 145, 0.5);
  border-bottom-color: #000000;
}
.header-wrapper.variant-four .main-menu ul li ul li {
  border-bottom-color: #535d5e;
  margin: 0;
}
.header-wrapper.variant-four .main-menu ul li ul li ul {
  top: 0;
}
.header-wrapper.variant-four .main-menu ul li ul li:hover {
  background-color: #000000;
}
.header-wrapper.variant-four .main-menu ul li ul li:hover > a {
  color: #ffffff;
}
.header-wrapper.variant-four .main-menu ul li ul li a {
  color: #ffffff;
  padding: 8px 20px 7px;
}
.header-wrapper.variant-four .contact-card {
  margin-right: -15px;
}
.header-wrapper.variant-four .contact-card .phone-number,
.header-wrapper.variant-four .contact-card .email {
  padding-top: 23px;
  padding-bottom: 23px;
  background-position: left 30px;
}
.header-wrapper.variant-four .contact-card .email {
  background-image: url("../images/icon-mail-6.png");
}
.header-wrapper.variant-four .contact-card .phone-number {
  background-image: url("../images/icon-phone-receiver-3.png");
  margin-right: 10px;
}
.header-wrapper.variant-four .contact-card a:hover {
  color: #ffffff;
}
.header-wrapper.variant-four .social_networks li a {
  font-size: 15px;
  line-height: 69px;
  border-left: none;
  height: 69px;
  width: 22px;
  margin-left: 25px;
}
.header-wrapper.sticky-menu {
  box-shadow: 0px 1px 5px rgba(0, 0, 0, 0.08);
  background: #ffffff;
  position: fixed;
  top: 0;
}
.header-wrapper.sticky-menu .header {
  border: none;
}
.header-wrapper.sticky-menu .logo-wrapper {
  float: none;
}
.header-wrapper.sticky-menu #logo img {
  margin-top: 0;
}
.header-wrapper.sticky-menu .main-menu {
  float: left;
}
.header-wrapper.sticky-menu .main-menu ul li {
  margin-bottom: 0;
}
.header-wrapper.sticky-menu .main-menu ul li a {
  border: none;
  padding: 20px 8px;
}
.header-wrapper.sticky-menu .main-menu ul li:hover > a {
  color: #373c40;
  background: none;
}
.header-wrapper.sticky-menu .main-menu ul li ul {
  top: 61px;
  background-color: #ffffff;
  border-bottom-color: #D3DAE0;
  box-shadow: 0px 1px 2px rgba(0, 0, 0, 0.09);
}
.header-wrapper.sticky-menu .main-menu ul li ul li {
  border-bottom-color: #D3DAE0;
  padding: 0;
}
.header-wrapper.sticky-menu .main-menu ul li ul li:hover {
  background-color: #373c40;
}
.header-wrapper.sticky-menu .main-menu ul li ul li:hover > a {
  color: #ffffff;
}
.header-wrapper.sticky-menu .main-menu ul li ul li a {
  color: #80878D;
}
.header-wrapper.sticky-menu .contact-card {
  margin-right: -15px;
}
.header-wrapper.sticky-menu .contact-card a:hover {
  color: #373c40;
}
.header-wrapper.sticky-menu .contact-card .email,
.header-wrapper.sticky-menu .contact-card .phone-number {
  padding-top: 19px;
  padding-bottom: 19px;
  background-position: left 25px;
}
.header-wrapper.sticky-menu .social_networks li a {
  border-color: #d3dae0;
  margin-left: 25px;
  height: 61px;
  line-height: 61px;
}
.welcome-section {
  text-align: center;
  background-color: #63c9ed;
}
.welcome-section .container {
  padding-top: 105px;
  padding-bottom: 105px;
}
.welcome-section .logo-wrapper {
  float: none;
}
.welcome-section #logo {
  position: static;
  margin: 30px auto;
  display: block;
  height: auto;
}
.welcome-section h1 {
  font-size: 60px;
  line-height: 72px;
  font-weight: 700;
  color: #2e3c58;
  margin-bottom: 21px;
}
.welcome-section p {
  color: #304d57;
  font-size: 16px;
  line-height: 27px;
  margin-bottom: 60px;
}
.welcome-section .inner-contents .theme-btn {
  font-size: 18px;
  font-weight: 700;
  color: #ffffff;
  background-color: #486bb1;
  padding: 18px 42px;
}
.welcome-section .inner-contents .theme-btn:hover {
  background-color: #2e3c58;
}
/*-----------------------------------------------------------------------------------*/
/* Features
/*-----------------------------------------------------------------------------------*/
.dropcap {
  display: inline-block;
  float: left;
  color: #f04933;
  font-size: 60px;
  line-height: 36px;
  padding-bottom: 5px;
  margin-right: 8px;
  margin-top: 5px;
}
.dropcap.invert {
  color: #ffffff;
  background-color: #f04933;
  padding: 0 4px 10px;
  margin: 8px 8px 4px 0;
}
/*-----------------------------------------------------------------------------------*/
/* First capital letter
/*-----------------------------------------------------------------------------------*/
.first-capital,
.first-capital-invert {
  font-size: 16px;
  line-height: 30px;
}
.first-capital:first-letter,
.first-capital-invert:first-letter {
  vertical-align: middle;
  margin-right: 5px;
  font-size: 52px;
  line-height: 40px;
  float: left;
  padding: 7px 8px 7px;
  margin-top: 5px;
  text-transform: uppercase;
  display: inline-block;
}
.first-capital:first-letter {
  color: #f04933;
}
.first-capital-invert:first-letter {
  color: #ffffff;
  background: #f04933;
}
.btn-animate {
  transition: all 0.2s ease-in-out;
}
.toggle,
.accordion {
  margin-bottom: 30px;
  padding-left: 0;
  text-align: left;
}
.toggle dt,
.accordion dt {
  transition: 0.5s all ease-in-out;
  position: relative;
  padding: 10px 35px 10px 18px;
  font-size: 16px;
  line-height: 20px;
  margin-bottom: 4px;
  color: #ffffff;
  cursor: pointer;
  background-color: #f16543;
}
.toggle dt span,
.accordion dt span {
  transition: 0.5s all ease-in-out;
  display: block;
  position: absolute;
  top: 15px;
  right: 21px;
  width: 11px;
  height: 11px;
  background: url(../images/plus-minus.png) no-repeat 0 0;
}
.toggle dt.current,
.accordion dt.current {
  color: #f16543;
  background-color: #e9eef1;
  margin-bottom: 0;
}
.toggle dt.current span,
.accordion dt.current span {
  background-position: center -45px;
}
.toggle dd,
.accordion dd {
  display: none;
  padding: 7px 20px 10px;
  margin: 0 0 3px;
  line-height: 21px;
  background-color: #e9eef1;
}
.tabs-nav {
  margin: 0 !important;
  padding: 0 !important;
}
.tabs-nav li {
  float: left;
  margin: 0 2px 0 0;
  padding: 0;
  list-style: none;
  background-color: #f16543;
  padding: 9px 34px;
  text-align: center;
  cursor: pointer;
}
.tabs-nav li a {
  transition: 0.2s all ease-in-out;
  color: #ffffff;
  font-weight: 700;
  font-size: 15px;
  text-decoration: none;
}
.tabs-nav li:hover,
.tabs-nav li.active {
  background-color: #e9eef1;
  -webkit-transition: background-color 0.1s;
  transition: background-color 0.1s;
}
.tabs-nav li:hover a,
.tabs-nav li.active a {
  color: #404345;
}
.tabs-container {
  margin: 0 0 30px;
  display: block;
  padding: 25px 20px;
  background-color: #e9eef1;
}
.tab-skin .tabs-nav {
  border-bottom: 1px solid #f16543;
}
.tab-skin .tabs-nav li {
  margin: 0;
  background-color: transparent;
  padding: 12px 18px;
}
.tab-skin .tabs-nav li a {
  color: #6f7375;
}
.tab-skin .tabs-nav li:hover,
.tab-skin .tabs-nav li.active {
  background-color: #f16543;
}
.tab-skin .tabs-nav li:hover a,
.tab-skin .tabs-nav li.active a {
  color: #ffffff;
}
.tab-skin .tabs-container {
  background-color: transparent;
}
p .icon-remove {
  display: inline-block;
  text-align: center;
  width: 25px;
  height: 25px;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  border-radius: 50%;
  cursor: pointer;
  position: absolute;
  top: 50%;
  right: 10px;
  margin-top: -12px;
}
p .icon-remove i {
  color: #ffffff;
  line-height: 25px;
}
p.info {
  background-color: #5aa8d8;
  color: #ffffff;
  padding: 10px 50px 10px 18px;
  margin-bottom: 20px;
  font-size: 14px;
  font-weight: 700;
  position: relative;
}
p.info .icon-remove {
  background-color: #2c84ba;
}
p.success {
  background-color: #86c379;
  color: #ffffff;
  padding: 10px 50px 10px 18px;
  margin-bottom: 20px;
  font-size: 14px;
  font-weight: 700;
  position: relative;
}
p.success .icon-remove {
  background-color: #5aa54a;
}
p.tip {
  background-color: #d5a626;
  color: #ffffff;
  padding: 10px 50px 10px 18px;
  margin-bottom: 20px;
  font-size: 14px;
  font-weight: 700;
  position: relative;
}
p.tip .icon-remove {
  background-color: #94731a;
}
p.error {
  background-color: #e83a40;
  color: #ffffff;
  padding: 10px 50px 10px 18px;
  margin-bottom: 20px;
  font-size: 14px;
  font-weight: 700;
  position: relative;
}
p.error .icon-remove {
  background-color: #bf161c;
}
.price-plan {
  margin-bottom: 60px;
  text-align: center;
  position: relative;
}
.price-plan .plan-title {
  text-transform: uppercase;
  position: absolute;
  top: -13px;
  left: 0;
  right: 0;
  z-index: 300;
  width: 130px;
  padding: 10px 20px;
  margin: 0 auto;
  background-color: #f8fbfc;
  -webkit-box-shadow: 0px 1px 1px 0px rgba(40, 40, 40, 0.22);
  -moz-box-shadow: 0px 1px 1px 0px rgba(40, 40, 40, 0.22);
  box-shadow: 0px 1px 1px 0px rgba(40, 40, 40, 0.22);
}
.price-plan .plan-price {
  display: block;
  text-align: center;
  height: 210px;
  width: 100%;
  color: #373c40;
  background-color: #f0f4f6;
  font-weight: 700;
}
.price-plan .plan-price .price-show {
  line-height: 225px;
  font-size: 72px;
}
.price-plan .plan-price .currency {
  font-size: 24px;
  vertical-align: top;
  line-height: 190px;
  margin-left: -14px;
}
.price-plan .plan-features {
  list-style: none;
  padding: 0;
  margin: 50px 0 53px;
  border-bottom: 1px solid #e9eef1;
}
.price-plan .plan-features li {
  padding: 13px 0;
  border-top: 1px solid #e9eef1;
  font-size: 14px;
}
.price-plan .plan-features li:nth-child(2n-1) {
  background-color: #fafcfc;
}
.price-plan .buy-now-btn {
  color: #ffffff;
  font-size: 22px;
  font-weight: 600;
  display: block;
  padding: 20px 10px;
  text-transform: uppercase;
  background-color: #373c40;
}
.price-plan .buy-now-btn:hover {
  background-color: #f16543;
  color: #ffffff;
}
.price-plan.special .plan-price,
.price-plan.special .buy-now-btn {
  background-color: #f16543;
}
.price-plan.special .buy-now-btn:hover {
  background-color: #373c40;
}
.price-plan.special .plan-title {
  color: #f16543;
  background-color: #ffffff;
  -webkit-box-shadow: 0px 1px 1px 0px rgba(40, 40, 40, 0.34);
  -moz-box-shadow: 0px 1px 1px 0px rgba(40, 40, 40, 0.34);
  box-shadow: 0px 1px 1px 0px rgba(40, 40, 40, 0.34);
}
.price-plan.special .plan-price .price-show {
  color: #ffffff;
  font-size: 120px;
}
.price-plan.special .plan-price .currency {
  color: #ffffff;
  line-height: 160px;
}
.shortcodes-btn a {
  color: #ffffff;
}
.shortcodes-btn a:hover {
  color: #ffffff;
}
/*-----------------------------------------------------------------------------------*/
/* Lists
/*-----------------------------------------------------------------------------------*/
article ul,
article ol {
  margin: 25px 0 25px 5px;
  padding-left: 17px;
}
article ul li,
article ol li {
  padding: 1px 0 1px 6px;
}
article ol {
  list-style: decimal;
}
article ol li ol,
article ol li ul {
  margin: 0;
}
article ul {
  list-style: disc;
}
article ul li ul,
article ul li ol {
  margin: 0;
}
article dl dt {
  padding: 6px;
}
article dl dd {
  padding: 3px 3px 3px 20px;
}
.list-arrow-bullet ul,
.list-large-arrow-bullet ul,
.list-circle-bullet ul,
.list-empty-circle-bullet ul {
  list-style: none !important;
  padding: 0;
  margin: 25px 0 25px 2px;
}
.list-arrow-bullet ul li,
.list-large-arrow-bullet ul li,
.list-circle-bullet ul li,
.list-empty-circle-bullet ul li {
  position: relative;
  padding: 2px 0 2px 24px;
  font-size: 14px;
  line-height: 24px;
  padding-left: 25px;
}
.list-arrow-bullet ul li:before,
.list-large-arrow-bullet ul li:before,
.list-circle-bullet ul li:before,
.list-empty-circle-bullet ul li:before {
  position: absolute;
  left: 0;
  color: #f16543;
}
.list-arrow-bullet ul li:before {
  font-family: 'FontAwesome';
  content: "\f101";
}
.list-empty-circle-bullet ul li:before {
  font-family: 'FontAwesome';
  content: "\f10c";
  font-size: 10px;
}
.list-circle-bullet ul li:before {
  font-family: 'FontAwesome';
  content: "\f111";
  font-size: 10px;
}
.theme-ordered-list ol {
  list-style: none;
  *list-style: decimal;
  counter-reset: li;
  margin-left: 0;
  padding-left: 0;
}
.theme-ordered-list ol > li {
  position: relative;
  padding: 2px 0 2px;
  font-size: 14px;
  padding-left: 25px;
  line-height: 24px;
}
.theme-ordered-list ol > li:before {
  content: counter(li);
  counter-increment: li;
  display: inline-block;
  color: #f16543;
  font-size: 16px;
  font-weight: 700;
  width: 28px;
  position: absolute;
  left: 0;
}
/*-----------------------------------------------------------------------------------*/
/* font awesome list class
/*-----------------------------------------------------------------------------------*/
.font-list {
  padding-top: 10px;
  margin-bottom: 20px;
  overflow: hidden;
}
.font-list li {
  position: relative;
  padding: 9px 0 9px 20px;
  list-style: none;
  border-bottom: 1px solid #DCE3E9;
  font-size: 14px;
  line-height: 24px;
}
.font-list li:before {
  font-family: 'FontAwesome';
  content: "\f061";
  padding-right: 10px;
  position: absolute;
  left: 0;
}
.font-list li:last-child {
  border-bottom: none;
}
/*-----------------------------------------------------------------------------------*/
/* Table
/*-----------------------------------------------------------------------------------*/
table {
  width: 100%;
  border-top: 1px solid #d4dbdf;
  background-color: #f1f5f7;
  margin-bottom: 40px;
}
table caption {
  text-align: left;
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 15px;
  color: #f16543;
}
table caption h2,
table caption h3,
table caption h4,
table caption h5,
table caption h6 {
  color: inherit;
  margin-bottom: 0;
}
table th {
  font-size: 16px;
  color: #484d50;
  font-weight: 700;
  padding: 14px 29px;
  border: 1px solid #bec7cc;
}
table td {
  font-size: 14px;
  color: #5c6164;
  padding: 8px 29px;
  border: 1px solid #d4dbdf;
}
.table {
  margin-bottom: 40px;
  border: 1px solid #d4dbdf;
}
.table thead > tr > th,
.table tbody > tr > th,
.table tfoot > tr > th,
.table thead > tr > td,
.table tbody > tr > td,
.table tfoot > tr > td {
  border: none;
  border-top: 1px solid #d4dbdf;
  padding: 8px 29px;
}
.table-outlined {
  background-color: transparent;
}
.table-striped td {
  border-color: #bec7cc;
}
.table-striped > tbody > tr:nth-child(odd) > td {
  background: #d4dbdf;
}
table a {
  transition: 0.2s all ease-in-out;
  color: #f16543;
}
table a:hover {
  color: #333333;
}
dl a {
  transition: 0.2s all ease-in-out;
  color: #f16543;
}
dl a:hover {
  color: #333333;
}
/*-----------------------------------------------------------------------------------*/
/* Footer
/*-----------------------------------------------------------------------------------*/
.footer {
  background-color: #373c40;
  padding-top: 64px;
  color: #7d8489;
}
.footer .container {
  -webkit-box-sizing: content-box;
  -moz-box-sizing: content-box;
  box-sizing: content-box;
}
.footer .widget {
  margin-bottom: 35px;
}
.footer .widget img:hover {
  opacity: 0.95;
}
.footer a {
  color: #8ccfcc;
}
.footer a:hover {
  color: #e6f5f4;
}
.footer .title,
.footer h1,
.footer h2,
.footer h3,
.footer h4,
.footer h5,
.footer h6 {
  color: #edf1f4;
}
.footer .title {
  color: #edf1f4;
  font-size: 18px;
  line-height: 36px;
  margin-bottom: 35px;
}
.footer .theme-btn {
  text-decoration: none;
  color: #a9b3bc;
  border: 2px solid #61686e;
  font-weight: 800;
  font-size: 14px;
  padding: 8px 30px;
}
.footer .theme-btn:hover {
  background-color: #61686e;
}
.copyright {
  border-top: 1px solid #44494e;
  margin-top: 60px;
  padding-top: 25px;
  padding-bottom: 20px;
}
.copyright a,
.copyright span {
  color: #cdd1d4;
}
.copyright a:hover {
  color: #ffffff;
}
.copyright .credit {
  text-align: right;
}
/*-----------------------------------------------------------------------------------*/
/*  Breadcrumb
/*-----------------------------------------------------------------------------------*/
.breadcrumb-wrapper {
  background-color: #e9eef1;
  padding: 33px 0;
  margin: 0;
}
.breadcrumb-wrapper .container {
  -webkit-box-sizing: content-box;
  -moz-box-sizing: content-box;
  box-sizing: content-box;
}
.breadcrumb {
  text-transform: uppercase;
  background: none;
  margin: 0;
  padding: 0;
}
.breadcrumb a {
  color: #373c40;
  font-size: 14px;
  font-weight: 700;
  margin-right: 4px;
}
.breadcrumb a:hover {
  color: #f16543;
}
.breadcrumb > li + li:before {
  content: "\f101";
  font-family: FontAwesome;
  color: #373c40;
  margin-right: 2px;
}
.breadcrumb > .active {
  color: #373c40;
  font-size: 14px;
  font-weight: 700;
}
/*-----------------------------------------------------------------------------------*/
/*  Page Header
/*-----------------------------------------------------------------------------------*/
.page-container {
  padding-top: 50px;
  padding-bottom: 100px;
}
.page-container .page-header {
  margin: 0 0 45px;
  padding: 0;
  border: none;
  text-align: center;
}
.page-header img {
  margin: 25px 0;
}
.page-header p {
  font-size: 18px;
  line-height: 30px;
  padding: 0 25px;
  margin-bottom: 30px;
}
.page-title {
  font-size: 24px;
  text-transform: uppercase;
  margin-bottom: 3px;
}
.page-title + .separator {
  margin: 0 0 25px;
}
.page-title + .separator .line {
  width: 85px;
}
.title-heading {
  text-align: center;
  text-transform: uppercase;
  margin-bottom: 4px;
}
.title-heading + .separator {
  margin: 0 0 30px;
}
.title-heading + .separator .line {
  width: 85px;
}
/*-----------------------------------------------------------------------------------*/
/* Buy Now Section
/*-----------------------------------------------------------------------------------*/
.purchase-now {
  background-color: #e9eef1;
  padding: 53px 0 40px;
}
.purchase-now .container {
  -webkit-box-sizing: content-box;
  -moz-box-sizing: content-box;
  box-sizing: content-box;
}
.purchase-now p {
  font-size: 20px;
  line-height: 30px;
}
.purchase-now p a {
  transition: 0.2s all ease-in-out;
  color: #f16543;
}
.purchase-now p a:hover {
  color: #333333;
}
.purchase-now .buy-now-btn {
  display: inline-block;
  background-color: #f16543;
  font-size: 20px;
  color: #ffffff;
  line-height: 30px;
  padding: 10px 58px;
  margin-top: 10px;
  -webkit-transition: all 500ms cubic-bezier(0.23, 1, 0.32, 1);
  -moz-transition: all 500ms cubic-bezier(0.23, 1, 0.32, 1);
  -ms-transition: all 500ms cubic-bezier(0.23, 1, 0.32, 1);
  -o-transition: all 500ms cubic-bezier(0.23, 1, 0.32, 1);
  transition: all 500ms cubic-bezier(0.23, 1, 0.32, 1);
  /* easeOutQuint */
  -webkit-transition-timing-function: cubic-bezier(0.23, 1, 0.32, 1);
  -moz-transition-timing-function: cubic-bezier(0.23, 1, 0.32, 1);
  -ms-transition-timing-function: cubic-bezier(0.23, 1, 0.32, 1);
  -o-transition-timing-function: cubic-bezier(0.23, 1, 0.32, 1);
  transition-timing-function: cubic-bezier(0.23, 1, 0.32, 1);
  /* easeOutQuint */
}
.purchase-now .buy-now-btn:hover {
  background-color: #373c40;
}
/*-----------------------------------------------------------------------------------*/
/*  Blog
/*-----------------------------------------------------------------------------------*/
article figure {
  position: relative;
  margin: 0;
}
article blockquote {
  margin: 47px 0 41px;
  padding: 10px 26px 5px 22px;
  border-color: #f16543;
}
article blockquote p {
  font-size: 20px;
  font-weight: normal;
  word-spacing: 2px;
  line-height: 32px;
}
article blockquote cite {
  display: block;
  font-size: 13px;
}
article blockquote.text-right {
  border-left: none;
  border-right: 5px solid #f16543;
}
article address {
  border-left: 7px solid #f16543;
  background-color: #fcfcfc;
  padding: 15px;
  margin: 0 20px 25px;
  font-size: 14px;
  font-weight: normal;
  word-spacing: 2px;
}
.post-title {
  margin-bottom: 8px;
  color: #373c40;
}
h1.post-title {
  font-size: 26px;
  line-height: 40px;
  margin-top: 9px;
}
h2.post-title {
  font-size: 24px;
  line-height: 32px;
}
h2.post-title a {
  transition: all 0.2s ease-in-out;
}
.custom-tabbed p {
  font-size: 14px;
  margin-bottom: 10px;
}
.blog-article {
  margin-bottom: 30px;
}
.blog-article figure {
  margin-bottom: 20px;
}
.blog-article .format-icon {
  left: 0;
}
.blog-article p {
  margin-bottom: 20px;
  line-height: 24px;
}
.blog-article blockquote p {
  line-height: 32px;
}
.blog-article .read-more-link {
  text-transform: uppercase;
  line-height: 23px;
  color: #7d8489;
}
.blog-article .read-more-link:after {
  content: " \f101";
  font-family: FontAwesome;
  color: #f16543;
}
.blog-article .read-more-link:hover {
  color: #373c40;
}
.blog-article .read-more-link:hover:after {
  color: #373c40;
}
.blog-article .post-meta {
  color: #a5aaae;
  font-size: 12px;
  float: left;
  width: 21.97402597402597%;
  border-right: 2px solid #d7dee0;
  margin: 0 30px 15px 0;
}
.blog-article .post-meta a {
  color: #a5aaae;
}
.blog-article .post-meta a:hover {
  color: #f16543;
}
.blog-article .post-meta ul {
  list-style: none;
  margin: 0;
  padding: 0 15px;
}
.blog-article .post-meta ul li {
  margin: 0 0 6px;
  padding: 4px 0;
  text-transform: uppercase;
}
.blog-article .post-meta ul li:before {
  font-family: 'FontAwesome';
  padding-right: 17px;
  font-size: 14px;
  color: #8C9194;
}
.blog-article .post-meta ul li.date:before {
  content: "\f073";
}
.blog-article .post-meta ul li.comments:before {
  content: "\f086";
}
.blog-article .post-meta ul li.tags:before {
  content: "\f02b";
}
.blog-article .post-meta ul li.author:before {
  content: "\f007";
}
.blog-article .post-summary {
  padding-right: 30px;
}
.blog-article .post-summary p {
  margin-bottom: 10px;
  line-height: 23px;
}
.blog-article .post-content-wrapper {
  padding: 15px 0 30px;
}
.format-icon {
  display: block;
  width: 50px;
  height: 50px;
  position: absolute;
  top: 0;
  right: 0;
  z-index: 888;
  background-color: #f16543;
  background-repeat: no-repeat;
  background-position: center center;
  text-align: center;
}
.format-icon i {
  line-height: 50px;
  color: #ffffff;
  font-size: 18px;
}
.type-post.sticky {
  border-bottom: 3px solid #f16543;
}
.post-video {
  position: relative;
}
.post-video .video-wrapper {
  position: relative;
  width: 100%;
  padding-bottom: 48.5%;
  height: 0;
}
.post-video .video-wrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}
.gallery-post-slider {
  position: relative;
}
.gallery-post-slider .flexslider-container {
  overflow: hidden;
}
.gallery-post-slider .flexslider-container ul.slides,
.gallery-post-slider .flexslider-container .flex-control-paging,
.gallery-post-slider .flexslider-container .flex-direction-nav {
  padding: 0;
  margin: 0;
}
.gallery-post-slider .flexslider-container ul.slides li,
.gallery-post-slider .flexslider-container .flex-control-paging li,
.gallery-post-slider .flexslider-container .flex-direction-nav li {
  padding: 0;
}
.gallery-post-slider .flexslider-container .flex-direction-nav {
  display: none;
}
.gallery-post-slider .flexslider-container .flex-direction-nav a {
  position: absolute;
  top: 50%;
  width: 35px;
  height: 54px;
  z-index: 150;
  text-align: center;
  line-height: 54px;
  font-size: 18px;
  opacity: 1;
  margin-top: -27px;
  color: #ffffff;
  background: #f16543;
}
.gallery-post-slider .flexslider-container a.flex-next {
  right: 0;
}
.gallery-post-slider .flexslider-container a.flex-prev {
  left: 0;
}
.gallery-post-slider .flexslider-container a:hover {
  background-color: #373c40;
}
.gallery-post-slider .flexslider-container a:focus {
  outline: 0;
}
.gallery-post-slider .flexslider-container .flex-control-paging {
  bottom: 10px;
  left: 0px;
}
.gallery-post-slider .flexslider-container .flex-control-paging a {
  height: 14px;
  width: 14px;
  background-color: #f16543;
  box-shadow: none;
}
.post-video,
.gallery-post-slider {
  margin: 0 0 20px;
}
.tags-list {
  clear: both;
  padding: 25px 0;
}
.tags-list a {
  display: inline-block;
  color: inherit;
  font-size: 14px;
  border: 1px solid #e2e2e9;
  background-color: #ffffff;
  font-weight: normal;
  padding: 10px 15px;
  margin: 0 1px 4px;
}
.tags-list a:hover {
  border-color: #373c40;
  color: #ffffff;
  background: #373c40;
}
.blog .pagination span,
.blog .pagination a {
  color: #464b50;
  background-color: #d8dce0;
}
.blog .pagination span.current,
.blog .pagination a.current,
.blog .pagination span:hover,
.blog .pagination a:hover {
  color: #ffffff;
  background-color: #f16543;
}
/*-----------------------------------------------------------------------------------*/
/* Author Section
/*-----------------------------------------------------------------------------------*/
.author-bio {
  background-color: #f6f8fa;
  border-top: 1px solid #e9ecef;
  border-bottom: 1px solid #e9ecef;
  padding: 48px 0 42px;
}
.author-bio .detail {
  display: table;
  padding: 5px 20px 0;
}
.author-bio .detail h4 {
  font-size: 16px;
  word-spacing: 3px;
}
.author-bio .detail span {
  font-size: 12px;
  font-weight: normal;
  color: #373c40;
  margin-left: 1px;
}
.author-bio .social_networks {
  float: none;
  margin: 0 0 0 -2px;
}
.author-bio .social_networks li {
  margin: 1px 2px;
}
.author-bio .social_networks li a {
  border: none;
  color: #f6f8fa;
  font-size: 12px;
  line-height: 25px;
  background-color: #8d9297;
  width: 25px;
  height: 25px;
  -webkit-border-radius: 100%;
  -moz-border-radius: 100%;
  border-radius: 100%;
  -webkit-transition: all 500ms cubic-bezier(0.23, 1, 0.32, 1);
  -moz-transition: all 500ms cubic-bezier(0.23, 1, 0.32, 1);
  -ms-transition: all 500ms cubic-bezier(0.23, 1, 0.32, 1);
  -o-transition: all 500ms cubic-bezier(0.23, 1, 0.32, 1);
  transition: all 500ms cubic-bezier(0.23, 1, 0.32, 1);
  /* easeOutQuint */
  -webkit-transition-timing-function: cubic-bezier(0.23, 1, 0.32, 1);
  -moz-transition-timing-function: cubic-bezier(0.23, 1, 0.32, 1);
  -ms-transition-timing-function: cubic-bezier(0.23, 1, 0.32, 1);
  -o-transition-timing-function: cubic-bezier(0.23, 1, 0.32, 1);
  transition-timing-function: cubic-bezier(0.23, 1, 0.32, 1);
  /* easeOutQuint */
}
.author-bio .social_networks li a:hover {
  color: #ffffff;
  background-color: #F16543;
}
.gravatar {
  float: left;
  padding-left: 35px;
  width: 145px;
  text-align: center;
}
.gravatar .avatar {
  border: 5px solid #F16543;
  margin-bottom: 30px;
  -webkit-border-radius: 100%;
  -moz-border-radius: 100%;
  border-radius: 100%;
  -webkit-transition: all 500ms cubic-bezier(0.23, 1, 0.32, 1);
  -moz-transition: all 500ms cubic-bezier(0.23, 1, 0.32, 1);
  -ms-transition: all 500ms cubic-bezier(0.23, 1, 0.32, 1);
  -o-transition: all 500ms cubic-bezier(0.23, 1, 0.32, 1);
  transition: all 500ms cubic-bezier(0.23, 1, 0.32, 1);
  /* easeOutQuint */
  -webkit-transition-timing-function: cubic-bezier(0.23, 1, 0.32, 1);
  -moz-transition-timing-function: cubic-bezier(0.23, 1, 0.32, 1);
  -ms-transition-timing-function: cubic-bezier(0.23, 1, 0.32, 1);
  -o-transition-timing-function: cubic-bezier(0.23, 1, 0.32, 1);
  transition-timing-function: cubic-bezier(0.23, 1, 0.32, 1);
  /* easeOutQuint */
}
.gravatar .avatar:hover {
  border-color: #ed3e14;
}
/*-----------------------------------------------------------------------------------*/
/* Comments
/*-----------------------------------------------------------------------------------*/
#comments-title {
  font-size: 18px;
  font-weight: normal;
  background-color: #f6f8fa;
  border-top: 1px solid #e9ecef;
  border-bottom: 1px solid #e9ecef;
  padding: 16px 18px 19px;
  margin: 0;
}
#comments-title:before {
  font-family: 'FontAwesome';
  content: "\f086";
  color: #F16543;
  font-size: 24px;
  margin-right: 13px;
}
#comments {
  margin-top: 50px;
}
.commentlist {
  overflow: hidden;
  padding: 0 0 30px;
  margin: 0 0 40px;
}
#comments .comment {
  list-style: none;
  margin: 0;
  padding: 40px 0;
}
#comments .comment article {
  overflow: hidden;
}
#comments .children .comment {
  padding-bottom: 0;
}
#comments .author-photo {
  overflow: hidden;
  float: left;
  padding: 10px 0 0 10px;
  width: 100px;
}
#comments .comment-wrapper {
  display: table;
  padding: 0 40px;
}
#comments .depth-2 article {
  margin-left: 130px;
}
#comments .depth-3 article {
  margin-left: 260px;
}
#comments .depth-4 article,
#comments .depth-5 article {
  margin-left: 390px;
}
#comments li.depth-1 {
  border-bottom: 1px solid #e8e9ef;
}
#comments li:last-child {
  border-bottom: none;
}
#comments li.pingback {
  margin-left: 30;
  list-style: none;
  border-bottom: 1px solid #dedede;
  padding: 10px;
}
#comments li.pingback p {
  margin: 0;
}
#comments .avatar {
  width: 85px;
  height: 85px;
  border: 3px solid #95a2a7;
  background-color: #eeeff4;
  margin: 0;
  -webkit-border-radius: 100%;
  -moz-border-radius: 100%;
  border-radius: 100%;
  -webkit-transition: all 500ms cubic-bezier(0.23, 1, 0.32, 1);
  -moz-transition: all 500ms cubic-bezier(0.23, 1, 0.32, 1);
  -ms-transition: all 500ms cubic-bezier(0.23, 1, 0.32, 1);
  -o-transition: all 500ms cubic-bezier(0.23, 1, 0.32, 1);
  transition: all 500ms cubic-bezier(0.23, 1, 0.32, 1);
  /* easeOutQuint */
  -webkit-transition-timing-function: cubic-bezier(0.23, 1, 0.32, 1);
  -moz-transition-timing-function: cubic-bezier(0.23, 1, 0.32, 1);
  -ms-transition-timing-function: cubic-bezier(0.23, 1, 0.32, 1);
  -o-transition-timing-function: cubic-bezier(0.23, 1, 0.32, 1);
  transition-timing-function: cubic-bezier(0.23, 1, 0.32, 1);
  /* easeOutQuint */
}
#comments .avatar:hover {
  border-color: #F16543;
}
#comments .comment-meta {
  margin-bottom: 4px;
}
#comments .comment-author,
#comments .comment-metadata {
  display: inline;
}
#comments .fn {
  color: #F16543;
  font-size: 16px;
  display: inline;
  font-weight: normal;
}
#comments time {
  color: #93989f;
  font-size: 11px;
  margin-left: 8px;
  text-transform: uppercase;
}
#comments p {
  line-height: 20px;
  margin-bottom: 16px;
}
#comments .comment-reply-link {
  text-transform: uppercase;
}
#comments .comment-reply-link:hover:after {
  color: #373c40;
}
#comments .comment-reply-link:after {
  content: "\f064";
  font-family: FontAwesome;
  color: #F16543;
  font-size: 13px;
  margin-left: 5px;
}
.bypostauthor .comment-wrapper {
  border-top-width: 3px;
  border-bottom-width: 3px;
}
/*-----------------------------------------------------------------------------------*/
/* Respond
/*-----------------------------------------------------------------------------------*/
#respond #reply-title {
  border-bottom: 1px solid #e8e9ef;
  font-size: 20px;
  font-weight: normal;
  padding: 10px 0 22px;
  margin-bottom: 25px;
}
#respond #cancel-comment-reply-link {
  display: block;
  margin-top: 15px;
}
#respond .comment-notes {
  margin-bottom: 20px;
}
#respond label {
  color: #70777e;
  font-size: 14px;
  font-weight: normal;
  display: block;
  margin-bottom: 10px;
}
#respond p {
  margin-bottom: 26px;
}
#respond input[type="text"],
#respond textarea {
  background-color: #f4f6f7;
}
#respond input[type="text"]:focus,
#respond textarea:focus {
  outline: none;
}
#respond input[type="text"] {
  height: 48px;
  width: 61.5%;
  padding: 0 10px;
}
#respond input[type="text"].required {
  background: url('../images/icon-alert.png') no-repeat top right;
}
#respond input[type="text"]#author,
#respond input[type="text"]#email {
  background: url('../images/icon-alert.png') no-repeat #f5f5f5 top right;
}
#respond textarea {
  height: 195px;
  width: 95.5%;
  margin-bottom: 14px;
  padding: 10px;
  resize: vertical;
}
/*-----------------------------------------------------------------------------------*/
/* loader page
/*-----------------------------------------------------------------------------------*/
.preloader {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: #fff;
  z-index: 13000;
  height: 100%;
}
.preloaderimg {
  width: 80px;
  height: 80px;
  position: absolute;
  left: 50%;
  top: 50%;
  background: url(../images/website-loader.gif) no-repeat 50% 50% transparent;
  margin: -40px 0 0 -40px;
}
/*-----------------------------------------------------------------------------------*/
/*  About Page
/*-----------------------------------------------------------------------------------*/
.feature-content {
  text-align: center;
  padding-top: 15px;
}
.feature-content section {
  margin-bottom: 45px;
}
.feature-content figure {
  margin: 20px 0 35px;
  min-height: 100px;
  height: auto !important;
  height: 100px;
}
.who-we-are,
.our-philosophy {
  padding-top: 30px;
  margin-bottom: 30px;
}
.who-we-are h3 + p,
.our-philosophy h3 + p {
  margin-bottom: 30px;
}
.who-we-are p,
.our-philosophy p {
  line-height: 20px;
}
.who-we-are h4,
.our-philosophy h4 {
  font-size: 16px;
}
.team {
  padding: 20px 0 10px;
}
.team h4 {
  color: #2d2f2f;
  font-size: 16px;
  text-transform: uppercase;
  font-weight: 600;
  margin-bottom: 8px;
}
.team h5 {
  color: #f16543;
  font-size: 14px;
  text-transform: lowercase;
  margin-bottom: 27px;
  font-weight: normal;
}
.team .team-member {
  padding-top: 58px;
  text-align: center;
}
.team .team-member img {
  width: 150px;
  height: 150px;
  -webkit-border-radius: 100%;
  -moz-border-radius: 100%;
  border-radius: 100%;
  margin: 0 auto 54px;
}
.team .team-member p {
  line-height: 26px;
  background: none;
  padding: 0 25px;
}
.team .team-member figcaption {
  border: none;
}
.clients {
  padding: 34px 0 0;
}
.clients .outter-wrapper {
  position: relative;
  padding: 0 45px;
  margin: 64px 0;
}
.clients .outter-wrapper .owl-item {
  text-align: center;
}
.clients .outter-wrapper img {
  display: inline-block;
}
.clients .outter-wrapper .next,
.clients .outter-wrapper .prev {
  position: absolute;
  top: 50%;
  width: 30px;
  height: 30px;
  margin: -18px 0 0;
  cursor: pointer;
}
.clients .outter-wrapper .prev {
  background: url("../images/owl-caroseul-nav.png") no-repeat 8px 3px;
  left: 1%;
}
.clients .outter-wrapper .prev:hover {
  background-position: 8px -50px;
}
.clients .outter-wrapper .next {
  right: 1%;
  background: url("../images/owl-caroseul-nav.png") no-repeat -46px 3px;
}
.clients .outter-wrapper .next:hover {
  background-position: -46px -50px;
}
/*-----------------------------------------------------------------------------------*/
/*  Contact Page
/*-----------------------------------------------------------------------------------*/
#map_canvas {
  height: 764px;
}
.contact-form input,
.contact-form textarea {
border: 1px solid rgba(0,0,0,.1);
width: 100%;
padding: 12px;
margin-bottom: 20px;
}
.thefield-left {
width: 49%;
float: left;
}
.thefield-right {
width: 49%;
float: right;
}
#contact-form {
  position: relative;
}
#contact-form .form-heading {
  text-transform: uppercase;
  font-size: 18px;
  line-height: 24px;
}
#contact-form .contact-form {
  padding-top: 22px;
  max-width: 100%;
  margin-bottom: 0;
}
#contact-form .container-left,
#contact-form .container-right {
  width: 49%;
}
#contact-form .container-left {
  float: left;
}
#contact-form .container-right {
  float: right;
}
#contact-form label {
  color: #70777e;
  font-size: 14px;
  font-weight: normal;
  display: block;
  margin-bottom: 8px;
  text-align: left;
}
#contact-form label span {
  color: #ef1212;
}
#contact-form p {
  margin-bottom: 22px;
}
#contact-form input[type="text"],
#contact-form textarea {
  color: #373c40;
  background: none;
  border: 1px solid #d0d6d9;
}
#contact-form input[type="text"]:focus,
#contact-form textarea:focus {
  outline: none;
}
#contact-form input[type="text"] {
  height: 50px;
  width: 100%;
  padding: 0 10px;
}
#contact-form textarea {
  height: 257px;
  width: 100%;
  margin-bottom: 14px;
  padding: 10px;
  resize: none;
}
#contact-form input.error,
#contact-form textarea.error {
  border: 1px solid #f16543;
}
#contact-form label.error {
  display: block;
  color: #f16543;
}
#contact-form #message-sent,
#contact-form .error-container {
  position: absolute;
  bottom: -20px;
  left: 0;
}
.error-container,
#message-sent,
#contact-loader {
  display: none;
}
#contact-form #submit,
.wpcf7 #submit,
.wpcf7-form-control-wrap #submit {
  padding: 0 26px;
}
.wpcf7 p,
.wpcf7-form-control-wrap p {
  color: #70777e;
  font-size: 14px;
  margin-bottom: 22px;
}
.wpcf7 input[type="email"],
.wpcf7-form-control-wrap input[type="email"],
.wpcf7 input[type="text"],
.wpcf7-form-control-wrap input[type="text"],
.wpcf7 textarea,
.wpcf7-form-control-wrap textarea,
.wpcf7 select,
.wpcf7-form-control-wrap select {
  margin-top: 6px;
  color: #373c40;
  background: none;
  border: 1px solid #d0d6d9;
}
.wpcf7 input[type="email"]:focus,
.wpcf7-form-control-wrap input[type="email"]:focus,
.wpcf7 input[type="text"]:focus,
.wpcf7-form-control-wrap input[type="text"]:focus,
.wpcf7 textarea:focus,
.wpcf7-form-control-wrap textarea:focus {
  outline: none;
}
.wpcf7 input[type="email"],
.wpcf7-form-control-wrap input[type="email"],
.wpcf7 input[type="text"],
.wpcf7-form-control-wrap input[type="text"],
.wpcf7 select,
.wpcf7-form-control-wrap select {
  height: 50px;
  width: 40%;
  padding: 0 10px;
}
.wpcf7 textarea,
.wpcf7-form-control-wrap textarea {
  height: 257px;
  width: 60%;
  margin-bottom: 16px;
  padding: 10px;
  resize: none;
}
.contacts-list {
  list-style: none outside none;
  padding: 70px 0 0;
  text-align: center;
}
.contacts-list li .inner-contact {
  display: inline-block;
  width: 220px;
  transition: 0.2s all ease-in-out;
}
.contacts-list li h4 {
  text-transform: uppercase;
  margin-bottom: 5px;
  transition: 0.2s all ease-in-out;
}
.contacts-list li h4 + .separator {
  margin: 0;
}
.contacts-list li .line {
  width: 85px;
}
.contacts-list li p {
  padding-top: 22px;
}
.contacts-list li i {
  transition: 0.2s all ease-in-out;
  float: left;
  margin: 1px 10px 15px;
  font-size: 46px;
  color: #80878d;
}
.contacts-list li a {
  color: #80878d;
}
.contacts-list li a:hover {
  color: #f16543;
}
.contacts-list li:hover h4,
.contacts-list li:hover i {
  color: #f16543;
}
.contacts-list li:hover .square {
  transition: 0.2s all ease-in-out;
  background-color: #f16543;
}
label {
margin-top: 10px;
}
.the-field input[type=submit] {
margin-top: 22px;
}
/*-----------------------------------------------------------------------------------*/
/*  Portfolio Page
/*-----------------------------------------------------------------------------------*/
.portfolio-item-filter {
  text-align: center;
  padding: 15px 0;
  margin: 60px auto;
}
.portfolio-item-filter a {
  display: inline-block;
  font-size: 14px;
  text-transform: uppercase;
  color: #9da1a3;
  padding: 2px;
  margin: 2px 15px;
  text-decoration: none;
}
.portfolio-item-filter a:hover,
.portfolio-item-filter a.active {
  color: #f16543;
}
.portfolio-item,
.gallery-item {
  margin: 0 0 35px;
  overflow: hidden;
}
.portfolio-item .item-title {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 9px;
  color: #4f5458;
}
.portfolio-item time {
  color: #687075;
}
.portfolio-item span {
  color: #f16543;
}
.portfolio-item .square {
  background-color: #bfc4c8;
}
.related-projects .item .separator,
.portfolio-item .separator {
  margin: 30px 0 15px;
}
.related-projects .item figure,
.portfolio-item figure {
  margin-bottom: 25px;
  position: relative;
}
.related-projects .item .overlay,
.portfolio-item .overlay {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 100;
  opacity: 0;
  width: 100%;
  height: 100%;
  background-color: #f16543;
}
.related-projects .item .overlay a,
.portfolio-item .overlay a {
  opacity: 0.8;
  filter: alpha(opacity=80);
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  width: 40px;
  height: 40px;
  margin-top: -20px;
  margin-left: -20px;
  background: url("../images/icon-lense.png") no-repeat center center;
}
.related-projects .item .overlay a:hover,
.portfolio-item .overlay a:hover {
  opacity: 1;
  filter: alpha(opacity=100);
}
/*-----------------------------------------------------------------------------------*/
/* Single Portfolio Page
/*-----------------------------------------------------------------------------------*/
.single-project {
  padding-top: 50px;
}
.single-project .sp-inner-wrapper {
  position: relative;
}
.single-project .sp-control-nav {
  position: absolute;
  top: -70px;
  right: 0;
  text-align: center;
}
.single-project .flex-direction-nav {
  display: block;
}
.single-project .flex-direction-nav li {
  float: left;
  margin-left: 5px;
}
.single-project .flex-direction-nav li a {
  color: #ffffff;
  display: inline-block;
  width: 40px;
  height: 40px;
  line-height: 40px;
  background-color: #65696c;
}
.single-project .flex-direction-nav li a:hover {
  background-color: #f16543;
}
.single-project .flex-direction-nav li a i {
  line-height: 0;
}
.single-project article {
  padding: 41px 98px 0;
}
.single-project article .title {
  margin-bottom: 10px;
  font-weight: 600;
}
.single-project article .title + p {
  font-size: 13px;
}
.single-project article p {
  font-size: 14px;
  line-height: 26px;
}
.single-project article .row {
  padding-top: 25px;
}
.single-project article .row h4 {
  text-transform: uppercase;
}
.related-projects {
  padding: 74px 0 0;
  overflow: hidden;
}
.related-projects .section-title {
  text-transform: uppercase;
  padding: 0 7px;
  margin-bottom: 0;
}
.related-projects .related-projects-wrapper {
  margin-right: -30px;
  position: relative;
  padding: 36px 0 0;
}
.related-projects .rp-control-nav {
  position: absolute;
  top: -34px;
  right: 30px;
  text-align: center;
}
.related-projects .rp-control-nav a {
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -o-user-select: none;
  user-select: none;
  color: #ffffff;
  display: inline-block;
  width: 40px;
  height: 40px;
  line-height: 40px;
  background-color: #65696c;
}
.related-projects .rp-control-nav a.prev {
  margin-right: 3px;
}
.related-projects .rp-control-nav a:hover {
  background-color: #f16543;
}
.related-projects .rp-control-nav a i {
  line-height: 0;
}
.related-projects .item {
  padding-right: 30px;
}
.related-projects .item-title {
  margin-bottom: 10px;
}
.related-projects .square {
  background-color: #bfc4c8;
}
/*-----------------------------------------------------------------------------------*/
/*  FAQ
/*-----------------------------------------------------------------------------------*/
.faq-section .title-heading {
  text-align: left;
  font-weight: normal;
  text-transform: none;
  margin-bottom: 10px;
}
.faq-section .title-heading + p {
  font-size: 15px;
}
.faq-nav {
  float: left;
  width: 23.3%;
}
.faq-nav li {
  border-bottom: 1px solid #e4e7e8;
  font-size: 16px;
  line-height: 30px;
  color: #84898b;
}
.faq-nav li div {
  padding: 14px 40px 14px 0;
  position: relative;
  cursor: pointer;
}
.faq-nav li div.active,
.faq-nav li div:hover {
  color: #f16543;
}
.faq-nav li div.active span,
.faq-nav li div:hover span {
  background-position: center top;
}
.faq-nav li span {
  display: inline-block;
  position: absolute;
  top: 22px;
  right: 0;
  width: 40px;
  height: 14px;
  background: url("../images/faq-nav-bg.png") no-repeat center bottom;
}
.faq-content {
  float: right;
  width: 65.7%;
}
.faq-content .toggle {
  padding-top: 13px;
}
.faq-content .group {
  width: 100%;
}
.faq-content dt {
  font-weight: normal;
  color: #84898B;
  background: none;
  padding: 9px 10px 9px 37px;
  border-bottom: 1px solid #e2e9eb;
  margin: 0;
}
.faq-content dt span {
  height: 13px;
  width: 13px;
  top: 11px;
  left: 9px;
  background: url("../images/faq-toggle-bg.png") no-repeat 0 2px;
}
.faq-content dt:hover {
  color: #f16543;
}
.faq-content dt:hover span {
  background-position: 0 -53px;
}
.faq-content dt.current {
  font-size: 16px;
  color: #f16543;
  background: none;
  padding: 9px 10px 9px 37px;
}
.faq-content dt.current span {
  top: 9px;
  background-position: 0 bottom;
}
.faq-content dd {
  background: none;
  padding: 20px 10px 20px 37px;
}
.feedbackPanel {
  text-align: right;
  margin: 0 -10px 30px -30px;
}
.feedbackPanel .scroll-top {
  text-decoration: none;
  text-transform: uppercase;
  display: inline-block;
  margin-bottom: 6px;
}
.feedbackPanel .scroll-top i {
  font-size: 10px;
  vertical-align: 2.5px;
  margin-left: 3px;
}
.feedbackPanel form {
  text-align: left;
  padding: 8px 30px;
  background-color: #f5f8f9;
  border: 1px solid #e0e7ea;
}
.feedbackPanel form label {
  color: #515557;
  font-size: 15px;
  line-height: 24px;
  font-weight: normal;
  margin: 0;
}
.feedbackPanel .btn {
  border: none;
  color: #ffffff;
  border-radius: 0;
  font-size: 15px;
  padding: 0px 5px;
  margin-left: 8px;
}
.feedbackPanel .btn:focus {
  outline: none;
}
.feedbackPanel .btn.yes {
  background-color: #88b84f;
}
.feedbackPanel .btn.yes:hover {
  background-color: #618536;
}
.feedbackPanel .btn.no {
  background-color: #e55858;
}
.feedbackPanel .btn.no:hover {
  background-color: #d02020;
}
.faq-title {
  font-weight: normal;
  color: #84898B;
  padding: 9px 10px 9px 37px;
  border-bottom: 1px solid #e2e9eb;
  margin: 0;
  font-size: 16px;
  line-height: 20px;
  cursor: pointer;
  position: relative;
  transition: 0.2s all ease-in-out;
}
.faq-title:before {
  font-family: 'fontAwesome';
  content: "\f105";
  position: absolute;
  left: 5px;
  top: 9px;
  font-size: 18px;
  transition: 0.2s all ease-in-out;
}
.faq-title:hover {
  color: #f16543;
}
.faq-title:hover:before {
  color: #f16543;
}
.faq-body {
  display: none;
  padding: 20px 10px 20px 37px;
}
.faq-title.current {
  color: #f16543;
}
.faq-title.current:before {
  transform: rotate(90deg);
}
/*-----------------------------------------------------------------------------------*/
/*  404 Page
/*-----------------------------------------------------------------------------------*/
.error404-body {
  padding-top: 25px;
  margin-bottom: 30px;
  text-align: center;
  color: #777777;
}
.error404-body img {
  margin: 0 auto 75px;
}
.error404-body h2 {
  font-size: 36px;
  line-height: 52px;
  font-weight: normal;
  color: #777777;
  margin-bottom: 15px;
}
.error404-body p {
  color: #777777;
  font-size: 18px;
  line-height: 24px;
}
/*-----------------------------------------------------------------------------------*/
/*  Services
/*-----------------------------------------------------------------------------------*/
.services-wrapper {
  margin-bottom: 50px;
}
.services-items-wrapper .icon-container {
  float: left;
  width: 170px;
  width: 30%;
  height: 170px;
  background-color: #f4f7f8;
  text-align: center;
}
.services-items-wrapper .icon-container i {
  font-size: 60px;
  line-height: 170px;
}
.services-items-wrapper article {
  margin-bottom: 30px;
}
.services-items-wrapper article .title {
  font-size: 20px;
  text-transform: uppercase;
  font-weight: 700;
}
.services-items-wrapper article h2.title {
  font-size: 30px;
  font-weight: 600;
}
.services-items-wrapper article .content-wrapper {
  float: right;
  padding: 30px 15px 0 30px;
  min-height: 170px;
  height: auto !important;
  height: 170px;
  width: 70%;
}
.services-items-wrapper article:hover .content-wrapper {
  background-color: #f4f7f8;
}
.services-items-wrapper article:hover .icon-container {
  color: #ffffff;
  background-color: #f16543;
}
.call-to-action {
  text-align: center;
  font-size: 36px;
  padding: 40px 0 55px 0;
  border-top: 1px solid #eaeef0;
  border-bottom: 1px solid #eaeef0;
  margin: 100px 0 60px 0;
}
.call-to-action i {
  color: #f16543;
  margin-right: 40px;
}
.service-icon {
  float: left;
  text-align: center;
  width: 170px;
  height: 170px;
  background-color: #f16543;
  margin-right: 30px;
}
.service-icon i {
  color: #ffffff;
  font-size: 60px;
  line-height: 170px;
}
.services-sidebar .services-item {
  padding: 38px 20px 15px;
  margin-bottom: 10px;
  background: #f9f9f9;
}
.services-sidebar .services-item .title {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 17px;
}
.services-sidebar .services-item:hover i {
  color: #f16543;
}
.services-sidebar i {
  transition: 0.2s all ease-in-out;
  float: left;
  text-align: center;
  width: 80px;
  color: #a0a9ac;
  font-size: 3.5em;
  padding: 20px 20px 20px 0;
}
/*-----------------------------------------------------------------------------------*/
/*  About Section
/*-----------------------------------------------------------------------------------*/
.about-us .container {
  padding-top: 100px;
  /*padding-bottom: 100px;*/
}
.about-us .section-header {
  margin-bottom: 50px;
}
.about-us .section-header h2.title {
  color: #373c40;
}
.about-us .section-header p.desc {
text-align: justify;
margin-top: 30px;
}
.innards {
  text-align: center;
  margin-bottom: 50px;
}
.innards h3 {
  margin-bottom: 25px;
  font-weight: 600;
}
.innards .icon-container {
  position: relative;
  width: 130px;
  min-height: 130px;
  height: auto !important;
  height: 130px;
  text-align: center;
  color: #ffffff;
  background: #8ccfcc;
  margin: 0 auto 42px;
}
.innards .icon-container i {
  display: block;
  line-height: 130px;
}
.innards .icon-container:after {
  position: absolute;
  top: 100%;
  border: solid transparent;
  content: " ";
  height: 0;
  width: 0;
  pointer-events: none;
  border-top-color: #8ccfcc;
  border-width: 9px;
  left: 50%;
  margin-left: -9px;
}
.about-us.variant-two {
  background-color: #e9eef1;
}
.about-us.variant-two .container {
  padding-top: 100px;
  padding-bottom: 50px;
}
.about-us.variant-two .section-header h2.title {
  color: #373c40;
  font-size: 42px;
}
.about-us.variant-two figure {
  margin: 20px 0 30px;
  min-height: 100px;
  height: auto !important;
  height: 100px;
}
.about-us.variant-three {
  background-color: #486bb1;
}
.about-us.variant-three .container {
  padding-bottom: 0;
}
.about-us.variant-three .section-header {
  margin-bottom: 65px;
}
.about-us.variant-three .section-header h2.title,
.about-us.variant-three .section-header h3 {
  font-size: 36px;
  line-height: 42px;
}
.about-us.variant-three .section-header h2.title {
  color: #ffffff;
  text-transform: capitalize;
  margin-bottom: 10px;
}
.about-us.variant-three .section-header h3 {
  font-weight: 300;
  color: #9fb8eb;
}
.about-us.variant-three .innards h3 {
  color: #b6ceff;
  font-size: 21px;
  line-height: 21px;
  margin-bottom: 28px;
}
.about-us.variant-three .innards p {
  color: #86a2dc;
}
.about-us.variant-four {
  background-color: #fbf8f7;
}
.about-us.variant-four .container {
  padding-bottom: 0;
}
.about-us.variant-four .section-header h2.title {
  font-size: 48px;
  color: #534c4a;
  line-height: 58px;
  margin-bottom: 30px;
}
.about-us.variant-four .section-header p {
  font-weight: 300;
  font-size: 16px;
  line-height: 30px;
  color: #524b49;
}
.about-us.variant-four .icon-box,
.about-us.variant-four figure {
  height: auto !important;
  margin: 35px 0;
  min-height: 80px;
}
.about-us.variant-four .innards {
  color: #9d9897;
  border-top: 1px solid #eee6e4;
}
.about-us.variant-four .innards h3 {
  font-weight: normal;
  color: #393432;
  margin-bottom: 20px;
}
.about-us.variant-four .innards a {
  color: #9d9897;
  transition: .2s all;
}
.about-us.variant-four .innards a:hover {
  color: #f16543;
}
.about-us.variant-four .innards a,
.about-us.variant-four .innards p {
  font-weight: 300;
  font-size: 16px;
  line-height: 24px;
}
.about-us.variant-four .innards p {
  margin-bottom: 28px;
}
span.line-vertical {
  background: #eee6e4;
  display: block;
  width: 1px;
  height: 55px;
  margin: 0 auto 35px;
}
/*-----------------------------------------------------------------------------------*/
/*  Features Section
/*-----------------------------------------------------------------------------------*/
.features .container {
  padding-top: 0;
  padding-bottom: 100px;
}
.standout h4 {
  margin-bottom: 0;
}
.standout h2 {
  font-size: 42px;
  font-weight: 800;
  margin-bottom: 20px;
}
.standout .theme-btn {
  color: #373c40;
  font-size: 18px;
  font-weight: 800;
  margin-top: 20px;
  padding: 18px 41px 15px 41px;
  border: 3px solid #f16543;
}
.standout .theme-btn:hover {
  color: #ffffff;
  background-color: #f16543;
}
.icon-spot i {
display: block;
margin: auto auto 20px auto;
color: #f16543;
}
.features-list {
  padding-top: 5px;
}
.features-list li {
  overflow: hidden;
  margin-bottom: 18px;
}
.features-list li .icon-container {
  float: left;
  width: 68px;
  height: 66px;
  margin: 0 17px 15px 0;
  background-color: #f16543;
  color: #ffffff;
  text-align: center;
  -webkit-transition: all 500ms cubic-bezier(0.23, 1, 0.32, 1);
  -moz-transition: all 500ms cubic-bezier(0.23, 1, 0.32, 1);
  -ms-transition: all 500ms cubic-bezier(0.23, 1, 0.32, 1);
  -o-transition: all 500ms cubic-bezier(0.23, 1, 0.32, 1);
  transition: all 500ms cubic-bezier(0.23, 1, 0.32, 1);
  /* easeOutQuint */
  -webkit-transition-timing-function: cubic-bezier(0.23, 1, 0.32, 1);
  -moz-transition-timing-function: cubic-bezier(0.23, 1, 0.32, 1);
  -ms-transition-timing-function: cubic-bezier(0.23, 1, 0.32, 1);
  -o-transition-timing-function: cubic-bezier(0.23, 1, 0.32, 1);
  transition-timing-function: cubic-bezier(0.23, 1, 0.32, 1);
  /* easeOutQuint */
}
.features-list li .icon-container i {
  display: block;
  line-height: 66px;
}
.features-list li h4 {
  margin-bottom: 8px;
}
.features-list li p {
  line-height: 21px;
}
.features.variant-two {
  background-color: #e9eef1;
}
.features.variant-two .container {
  padding-top: 100px;
  padding-bottom: 80px;
}
.features.variant-two .standout .theme-btn {
  font-weight: 700;
  border-color: #373c40;
}
.features.variant-two .standout .theme-btn:hover {
  color: #ffffff;
  background-color: #373c40;
}
.features.variant-two .features-list li .icon-container {
  width: 67px;
  height: 67px;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  border-radius: 50%;
}
.features.variant-two .features-list li .icon-container i {
  line-height: 67px;
}
.features.variant-three {
  background-color: #ffffff;
}
.features.variant-three .container {
  padding-top: 100px;
}
.features.variant-three .features-list {
  padding-top: 0;
}
.features.variant-three .features-list .icon-container {
  float: left;
  width: 67px;
  height: 67px;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  border-radius: 50%;
  margin: 0 17px 15px 0;
  background-color: #f16543;
  color: #ffffff;
  text-align: center;
}
.features.variant-three .features-list .icon-container i {
  display: block;
  line-height: 67px;
}
.features.variant-three .features-list .icon-container:hover {
  background-color: #ffffff;
  border: 1px solid #f16543;
}
.features.variant-three .features-list .icon-container:hover i {
  color: #f16543;
}
.features.variant-three .features-list .content {
  display: table;
}
.features.variant-four {
  background-color: #fbf8f7;
}
.features.variant-four .container {
  padding-top: 66px;
}
.features.variant-four .standout {
  text-align: center;
  margin-bottom: 50px;
}
.features.variant-four .standout h2 {
  color: #524b49;
  font-size: 48px;
  font-weight: 700;
  margin-bottom: 22px;
}
.features.variant-four .standout h4 {
  text-transform: uppercase;
  font-weight: normal;
  font-size: 14px;
  margin-bottom: 7px;
}
.features.variant-four .standout p,
.features.variant-four .standout h4 {
  color: #9d9897;
}
.features.variant-four .standout p {
  font-size: 15px;
  line-height: 24px;
}
.features.variant-four .features-list {
  margin: 0 0 30px;
  padding-top: 0;
}
.features.variant-four .features-list i {
  color: #a09a98;
  margin-right: 5px;
  width: 20px;
}
.features.variant-four .features-list p {
  line-height: 20px;
}
.features.variant-four .features-list h4 {
  position: relative;
  font-weight: 600;
  font-size: 16px;
  margin-bottom: 10px;
  line-height: 24px;
}
.features.variant-four .features-list .heart,
.features.variant-four .features-list .magic,
.features.variant-four .features-list .mobile {
  padding-left: 25px;
}
.features.variant-four .features-list .heart:before,
.features.variant-four .features-list .magic:before,
.features.variant-four .features-list .mobile:before {
  position: absolute;
  left: 0;
  font-family: 'FontAwesome';
  color: #a09a98;
}
.features.variant-four .features-list .heart:before {
  content: "\f004";
}
.features.variant-four .features-list .magic:before {
  content: "\f0d0";
}
.features.variant-four .features-list .mobile:before {
  content: "\f10b";
}
.features.variant-four .theme-btn {
  margin-top: 35px;
  border: 1px solid #e5dfde;
  color: #f16543;
  padding: 13px 42px;
  font-weight: 600;
}
.features.variant-four .theme-btn:hover {
  background-color: #e5dfde;
}
/*-----------------------------------------------------------------------------------*/
/*  Our Team Section
/*-----------------------------------------------------------------------------------*/
.our-team {
  background-color: #e5eaef;
}
.our-team .container {
  padding-top: 130px;
  padding-bottom: 20px;
}
.img-team-variant-one {
  width: 100%;
}
.team-member {
  margin-bottom: 60px;
}
.team-member figure > a {
  position: relative;
  display: block;
  overflow: hidden;
}
.team-member figure > a img {
  transition: 0.4s all ease-in-out;
}
.team-member figure > a:hover .duration-box {
  right: 0;
}
.team-member figure > a:hover img {
  transform: scale3d(1.025, 1.025, 1);
}
.team-member figure > a:hover .duration-box .duration {
  -webkit-animation-name: dura;
  -webkit-animation-duration: .6s;
  -webkit-animation-delay: .2s;
  animation-name: dura;
  animation-duration: .6s;
  animation-delay: .2s;
}
@-webkit-keyframes dura {
  0% {
    margin-left: 20px;
  }
  30% {
    margin-left: 10px;
  }
  60% {
    margin-left: 30px;
  }
  100% {
    margin-left: 20px;
  }
}
@keyframes dura {
  0% {
    margin-left: 20px;
  }
  30% {
    margin-left: 10px;
  }
  60% {
    margin-left: 30px;
  }
  100% {
    margin-left: 20px;
  }
}
.team-member figcaption {
  display: block;
  padding: 20px 18px 2px;
  background-color: #ffffff;
  border-bottom: 1px solid #e4eaef;
}
.team-member h4 {
  margin-bottom: 6px;
}
.team-member .designation {
  color: #f16543;
  font-weight: 400;
  font-size: 13px;
  transition: 0.2s all ease-in-out;
}
.team-member p {
  padding: 14px 18px 22px 18px;
  background-color: #f3f7fa;
  margin-bottom: 0;
  line-height: 23px;
}
.team-member .social_networks {
  float: none;
  background-color: #f3f7fa;
  border-top: 1px solid #e4eaef;
  margin: 0;
}
.team-member .social_networks li {
  margin: 0;
  float: left;
}
.team-member .social_networks li a {
  width: 54px;
  height: 48px;
  font-size: 20px;
  line-height: 50px;
  border-color: #e4eaef;
}
.team-member .social_networks li a:hover {
  color: #ffffff;
  background-color: #a9b5bf;
}
.team-member .social_networks li.facebook a:hover {
  background-color: #395b89;
}
.team-member .social_networks li.twitter a:hover {
  background-color: #2bbfec;
}
.team-member .social_networks li.rss a:hover {
  background-color: #ec894d;
}
.team-member .social_networks li.gplus a:hover {
  background-color: #d63b3b;
}
.team-member .social_networks li.linkedin a:hover {
  background-color: #1184cd;
}
.team-member .social_networks li.youtube a:hover {
  background-color: #d02525;
}
.team-member .social_networks li.skype a:hover {
  background-color: #0099e5;
}
.team-member .social_networks li.instagram a:hover {
  background-color: #457299;
}
.team-member .social_networks li.pinterest a:hover {
  background-color: #be2225;
}
.our-team.variant-three {
  background-color: #486bb1;
}
.our-team.variant-three .container {
  padding-top: 14px;
  padding-bottom: 0;
}
.our-team.variant-three .section-header h2.title {
  font-size: 36px;
  color: #ffffff;
  text-transform: capitalize;
  line-height: 62px;
}
.our-team.variant-three .section-header p {
  color: #86a2dc;
}
.our-team.variant-three .wrapper-member-contents {
  position: relative;
  -webkit-transform-style: preserve-3d;
  transform-style: preserve-3d;
  -webkit-transition: 0.3s all ease-in-out;
  transition: 0.3s all ease-in-out;
}
.our-team.variant-three .flipped {
  -webkit-transform: rotateY(-180deg);
  transform: rotateY(-180deg);
}
.our-team.variant-three .team-member-wrapper {
  position: relative;
}
.our-team.variant-three .member-image {
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  position: relative;
  width: 100%;
  height: 405px;
  z-index: 1;
  transition: 0.2s all ease-in-out;
}
.our-team.variant-three .member-image:hover {
  opacity: .7;
}
.our-team.variant-three .member-image img {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  max-width: 100%;
}
.our-team.variant-three .team-member {
  -webkit-perspective: 800;
  perspective: 800;
  position: relative;
  margin-bottom: 0px;
}
.our-team.variant-three .team-member .member-info {
  -webkit-transform: rotateY(-180deg);
  transform: rotateY(-180deg);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  width: 100%;
  height: 100%;
  padding: 18px 18px 0;
  background-color: #4261a1;
  position: absolute;
  top: 0px;
  left: 0px;
  z-index: 2000;
}
.our-team.variant-three .team-member h4 a {
  color: #b0c8fa;
}
.our-team.variant-three .team-member h4 a:hover {
  color: #ffffff;
}
.our-team.variant-three .team-member h5 {
  color: #b0c8fa;
}
.our-team.variant-three .team-member p {
  padding: 0;
  background: none;
  color: #7c9bda;
  margin-bottom: 15px;
}
.our-team.variant-three .team-member .social_networks {
  background: none;
  border-color: #486bb1;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  text-align: center;
}
.our-team.variant-three .team-member .social_networks li {
  float: none;
}
.our-team.variant-three .team-member .social_networks li a {
  border-color: #486bb1;
  color: #6c8ac8;
}
.our-team.variant-three .team-member .social_networks li a:hover {
  color: #ffffff;
  background: none;
}
.our-team.variant-three .team-member .social_networks li:first-child a {
  border-left: none;
}
.our-team.variant-four {
  background-color: #eee9e7;
}
.our-team.variant-four .container {
  padding-top: 100px;
}
.our-team.variant-four .section-header h2.title {
  font-size: 48px;
  margin-bottom: 25px;
}
.our-team.variant-four .section-header p {
  line-height: 28px;
}
.our-team.variant-four .inner-contents {
  position: relative;
  height: 389px;
  overflow: hidden;
}
.our-team.variant-four .member-info {
  position: absolute;
  bottom: 0;
  left: 0;
  overflow: hidden;
  height: 74px;
  padding: 0 20px;
  background-color: #ffffff;
}
.our-team.variant-four .member-info h4 {
  margin-top: 16px;
  margin-bottom: 8px;
}
.our-team.variant-four .member-info p {
  color: #373c40;
  background-color: #ffffff;
  padding: 15px 20px 0;
  margin: 15px -20px 22px;
}
.our-team.variant-four .member-info.hover {
  background-color: #f16543;
}
.our-team.variant-four .member-info.hover p {
  border-top: 1px solid #da502f;
  background-color: #f16543;
  color: #ffffff;
}
.our-team.variant-four .member-info.hover h4 a,
.our-team.variant-four .member-info.hover h5 {
  color: #ffffff;
}
.our-team.variant-four .member-info.hover h4 {
  margin-top: 20px;
  margin-bottom: 6px;
}
.our-team.variant-four .member-info.hover h4 a:hover {
  color: #373c40 !important;
}
.our-team.variant-four .member-info.hover .social_networks {
  background-color: #f16543;
  border-color: #da502f;
}
.our-team.variant-four .member-info.hover .social_networks a {
  color: #ffffff;
}
.our-team.variant-four .social_networks {
  border-bottom: 1px solid;
  border-color: #f16543;
  background-color: #ffffff;
  margin: 15px -20px 60px;
}
.our-team.variant-four .social_networks a {
  color: #f16543;
  border-left: 1px solid #f16543;
}
.our-team.variant-four .social_networks a i {
  transition: 0.2s all ease-in-out;
}
.our-team.variant-four .social_networks li:first-child a {
  border-left: none;
}
/*-----------------------------------------------------------------------------------*/
/*  Our Clients Section
/*-----------------------------------------------------------------------------------*/
.our-clients {
  text-align: center;
  background-color: #e5eaef;
}
.our-clients .container {
  padding-top: 80px;
  padding-bottom: 40px;
}
.our-clients .arrow .shape {
  border-top-color: #e5eaef;
}
.our-clients .section-header {
  margin-bottom: 30px;
}
.our-clients .separator {
  margin: 5px 0 6px;
}
.client-section-carousel {
  padding: 0 70px;
}
.client-section-carousel .owl-item .item img {
padding: 10px;
border: 1px solid rgba(0,0,0,.1);
width: 185px;
}
.client-section-carousel .owl-item .item:hover img {
  opacity: 0.8;
}
.client-section-carousel .owl-controls {
  margin-top: 39px;
}
.client-section-carousel .owl-controls .owl-page span {
  border-radius: 0;
  width: 7px;
  height: 7px;
  margin: 2px 6px;
  background-color: #7c858c;
  opacity: 1;
}
.client-section-carousel .owl-controls .owl-page span:hover {
  background-color: #f16543;
}
.client-section-carousel .owl-controls .owl-page.active span,
.client-section-carousel .owl-controls .owl-page:hover span {
  background-color: #f16543;
}
.our-clients.variant-two {
  background-color: #ffffff;
}
.our-clients.variant-two .container {
  padding-top: 30px;
  padding-bottom: 75px;
}
.our-clients.variant-two .client-section-carousel .owl-controls {
  margin-top: 30px;
}
.our-clients.variant-four {
  background-color: #eee9e7;
}
.our-clients.variant-four .client-section-carousel {
  padding: 0 2px;
  overflow: hidden;
}
.our-clients.variant-four .arrow .shape {
  border-top-color: #eee9e7;
}
.our-clients.variant-four header {
  margin-bottom: 36px;
}
.our-clients.variant-four header h3.title {
  margin-bottom: 18px;
}
.our-clients.variant-four .owl-carousel .owl-wrapper-outer {
  border-top: 1px solid #dad5d2;
  padding-left: 1px;
  margin-left: -4px;
}
.our-clients.variant-four .owl-wrapper {
  padding-left: 1px;
}
.our-clients.variant-four .owl-item {
  border-right: 1px solid #dad5d2;
  margin: 0;
}
.our-clients.variant-four #owl-demo .item {
  padding: 0;
}
.our-clients.variant-four .owl-controls {
  margin-top: 75px;
}
.our-clients.variant-four .owl-controls .owl-page span {
  margin: 2px 6px;
  -webkit-border-radius: 100%;
  -moz-border-radius: 100%;
  border-radius: 100%;
  border: 1px solid #c3bdba;
  background: none;
  width: 15px;
  height: 15px;
}
.our-clients.variant-four .owl-controls .owl-page.active span,
.our-clients.variant-four .owl-controls .owl-page:hover span {
  border: 1px solid #f16543;
  background: #f16543;
}
/*-----------------------------------------------------------------------------------*/
/*  Testimonial Section
/*-----------------------------------------------------------------------------------*/
.testimonial {
  text-align: center;
  padding-top: 110px;
  padding-bottom: 100px;
  background: url('../images/temp/testimonial-section-bg-image.jpg');
  background-attachment: fixed;
  background-size: 100%;
}
.quote .icon-quote-start {
  background: url('../images/icon-quote-start.png') no-repeat 0 0;
}
.quote .icon-quote-end {
  background: url('../images/icon-quote-end.png') no-repeat 0 0;
}
.quote blockquote {
  border: none;
  margin: 0;
  padding: 0;
}
.quote blockquote i {
  display: inline-block;
  width: 64px;
  height: 54px;
}
.quote blockquote p {
  color: #ffffff;
  font-size: 30px;
  line-height: 42px;
  margin-bottom: 15px;
  padding: 9px 0;
}
.quote blockquote .author {
  font-size: 21px;
  line-height: 42px;
  color: #340f06;
}
.quote blockquote .separator {
  margin-bottom: 2px;
}
.quote blockquote .separator .line {
  background-color: #f2967f;
  width: 165px;
}
.quote blockquote .separator .square {
  background-color: #ffffff;
}
.testimonial.variant-two {
  background: #edf1f4;
  padding-top: 66px;
  padding-bottom: 68px;
}
.testimonial.variant-two i {
  display: block;
  width: 9.11111111111111%;
  height: 54px;
}
.testimonial.variant-two i.icon-quote-start {
  float: left;
  background: url('../images/icon-quote-start-2.png') no-repeat left 0;
}
.testimonial.variant-two i.icon-quote-end {
  float: right;
  background: url('../images/icon-quote-end-2.png') no-repeat right 0;
}
.testimonial.variant-two blockquote {
  width: 79.77777777777778%;
  float: left;
  border: none;
  margin: 0;
  padding: 0;
}
.testimonial.variant-two blockquote p {
  color: #55595c;
  font-size: 24px;
  line-height: 36px;
  padding: 0;
  margin-bottom: 6px;
}
.testimonial.variant-two blockquote .author {
  font-size: 18px;
  color: #55595c;
  margin-top: 0;
}
.testimonial.variant-three {
  background: #6ecaea;
}
.testimonial.variant-three .quote p {
  color: #3e4a4e;
}
.testimonial.variant-three .quote .line {
  background-color: #61b3cf;
}
.testimonial.variant-three .quote .square {
  background-color: #3c6e80;
}
.testimonial.variant-three .icon-quote-start {
  background-image: url('../images/icon-quote-start-3.png');
}
.testimonial.variant-three .icon-quote-end {
  background-image: url('../images/icon-quote-end-3.png');
}
.testimonial.variant-four {
  padding-top: 120px;
  padding-bottom: 110px;
  background: url("../images/temp/testimonial-section-bg-image-2.jpg");
}
.testimonial.variant-four .quote a,
.testimonial.variant-four p strong {
  color: #f16543;
}
.testimonial.variant-four .quote .line {
  background-color: #585a5d;
  width: 160px;
}
.testimonial.variant-four .quote .square {
  background-color: #ffffff;
}
.testimonial.variant-four .separator {
  margin-bottom: 0px;
}
.testimonial.variant-four .quote .author {
  color: #ffffff;
  margin-top: 23px;
}
.testimonial.variant-four .icon-quote-start {
  background-image: url('../images/icon-quote-start-4.png');
}
.testimonial.variant-four .icon-quote-end {
  background-image: url('../images/icon-quote-end-4.png');
}
/*-----------------------------------------------------------------------------------*/
/*  Our Services Section
/*-----------------------------------------------------------------------------------*/
.our-services .container {
  padding-top: 100px;
}
.our-services .section-header {
  margin-bottom: 60px;
}
.our-services .inner-contents {
  padding-top: 22px;
}
.our-services .inner-contents h2 {
  color: #f16543;
  margin-bottom: 15px;
}
.services-list {
  padding-top: 16px;
}
.services-list li {
  overflow: hidden;
  margin-bottom: 20px;
}
.services-list li .icon-container {
  float: left;
  width: 69px;
  height: 69px;
  margin: 0 23px 10px 0;
  border: 2px solid #c0cad2;
  color: #c0cad2;
  text-align: center;
  -webkit-transition: all 500ms cubic-bezier(0.23, 1, 0.32, 1);
  -moz-transition: all 500ms cubic-bezier(0.23, 1, 0.32, 1);
  -ms-transition: all 500ms cubic-bezier(0.23, 1, 0.32, 1);
  -o-transition: all 500ms cubic-bezier(0.23, 1, 0.32, 1);
  transition: all 500ms cubic-bezier(0.23, 1, 0.32, 1);
  /* easeOutQuint */
  -webkit-transition-timing-function: cubic-bezier(0.23, 1, 0.32, 1);
  -moz-transition-timing-function: cubic-bezier(0.23, 1, 0.32, 1);
  -ms-transition-timing-function: cubic-bezier(0.23, 1, 0.32, 1);
  -o-transition-timing-function: cubic-bezier(0.23, 1, 0.32, 1);
  transition-timing-function: cubic-bezier(0.23, 1, 0.32, 1);
  /* easeOutQuint */
}
.services-list li .icon-container i {
  display: block;
  line-height: 65px;
}
.services-list li .contents {
  padding-top: 7px;
}
.services-list li h5 {
  font-size: 14px;
  line-height: 27px;
  font-weight: normal;
}
.our-services.variant-two .inner-contents h2 {
  color: #373c40;
}
.our-services.variant-two .inner-contents p {
  line-height: 23px;
}
.our-services.variant-two .theme-btn {
  font-size: 14px;
  color: #373c40;
  font-weight: 600;
  border: 2px solid #8ccfcc;
  margin-top: 6px;
  padding: 9px 28px;
}
.our-services.variant-two .theme-btn:hover {
  color: #ffffff;
  background-color: #8ccfcc;
}
.our-services.variant-three {
  background: #684c97;
}
.our-services.variant-three .contianer {
  padding-top: 83px;
}
.our-services.variant-three .section-header {
  margin-bottom: 77px;
}
.our-services.variant-three .section-header h2.title {
  color: #ffffff;
  font-size: 36px;
  text-transform: capitalize;
  margin-bottom: 20px;
}
.our-services.variant-three .section-header p {
  color: #a28aca;
}
.our-services.variant-three .services-list {
  padding: 0;
  margin: 0 0 62px;
}
.our-services.variant-three .services-list li {
  text-align: center;
  position: relative;
  z-index: 500;
}
.our-services.variant-three .services-list li.line {
  height: 1px;
  background-color: #846ab1;
  padding: 0;
  margin: 0 auto;
  width: 70%;
  position: relative;
  top: 35px;
  z-index: 100;
}
.our-services.variant-three .icon-container {
  float: none;
  margin: 0 auto 20px;
  color: #c9bcdf;
  border-color: #846ab1;
  background-color: #684c97;
}
.our-services.variant-three .icon-container:hover {
  background-color: #2e2142;
  border-color: #2e2142;
}
.our-services.variant-three h5 {
  color: #c9bcdf;
  line-height: 27px;
  text-transform: capitalize;
  padding: 0 20px;
}
.our-services.variant-four .container {
  padding-bottom: 100px;
}
.our-services.variant-four .section-header h2.title {
  font-size: 48px;
  margin-bottom: 10px;
}
.our-services.variant-four .section-header p {
  line-height: 30px;
  font-size: 16px;
  color: #524b49;
}
.our-services.variant-four #owl-carousel {
  background: url("../images/service-list-bg.png") repeat-x 0 53px;
  position: relative;
  text-align: center;
  padding: 0 100px;
}
.our-services.variant-four .item {
  text-align: center;
  margin-bottom: 0;
  display: block;
}
.our-services.variant-four .item:hover h5 {
  color: #f16543;
}
.our-services.variant-four .item:hover .icon-container {
  background: #f16543;
}
.our-services.variant-four .item:hover .icon-container i {
  color: #ffffff;
}
.our-services.variant-four .item .icon-container {
  float: none;
  display: inline-block;
  margin: 0 0 20px;
  background-color: #f0eeed;
  border: none;
  width: 100px;
  height: 100px;
  -webkit-border-radius: 100%;
  -moz-border-radius: 100%;
  border-radius: 100%;
  transition: all 0.3s ease-in-out;
}
.our-services.variant-four .item .icon-container i {
  transition: inherit;
  color: #7d8489;
  line-height: 99px;
}
.our-services.variant-four .item h5 {
  text-transform: uppercase;
  font-size: 12px;
  font-weight: normal;
  transition: all 0.3s ease-in-out;
}
.our-services.variant-four .item h5 a {
  color: #bcbab9;
}
.our-services.variant-four .services-section-carousel {
  position: relative;
}
.our-services.variant-four .services-section-carousel .prev,
.our-services.variant-four .services-section-carousel .next {
  cursor: pointer;
  background: url(../images/caroseul-nav.png) no-repeat #ffffff 0 0;
  display: block;
  width: 45px;
  height: 45px;
  position: absolute;
  top: 30px;
  z-index: 5000;
  border: 1px solid #e6e4e3;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  border-radius: 5px;
}
.our-services.variant-four .services-section-carousel .prev {
  background-position: 17px 13px;
  left: 0;
}
.our-services.variant-four .services-section-carousel .prev:hover {
  background-position: 17px -22px;
}
.our-services.variant-four .services-section-carousel .next {
  background-position: -31px 13px;
  right: 0;
}
.our-services.variant-four .services-section-carousel .next:hover {
  background-position: -31px -22px;
}
/*-----------------------------------------------------------------------------------*/
/*  Our Services List Section
/*-----------------------------------------------------------------------------------*/
.our-services-list {
  text-align: center;
  color: #3f5e5d;
  background-color: #8ccfcc;
}
.our-services-list .container {
  padding-top: 60px;
  padding-bottom: 90px;
}
.our-services-list .icon-box {
  padding: 27px 0;
  min-height: 116px;
  height: auto !important;
  height: 116px;
}
.our-services-list .title {
  line-height: 23px;
  margin-bottom: 15px;
}
.our-services-list p {
  color: #507d7b;
  margin-bottom: 35px;
  line-height: 23px;
}
.our-services-list .line {
  display: block;
  border-bottom: 1px solid #7ab5b2;
  width: 46.5%;
  margin: 0 auto 15px;
}
.our-services-list .theme-btn {
  text-transform: uppercase;
  padding: 9px 30px;
  font-size: 14px;
  font-weight: 700;
  color: #3f5e5d;
  border: 2px solid #3f5e5d;
}
.our-services-list .theme-btn:hover {
  color: #ffffff;
  background-color: #3f5e5d;
}
.our-services-list.variant-three {
  background-color: #cf5e87;
}
.our-services-list.variant-three .icon-box {
  color: #feccde;
}
.our-services-list.variant-three .title {
  color: #ffffff;
}
.our-services-list.variant-three p {
  color: #efacc4;
}
.our-services-list.variant-three .line {
  border-color: #aa5272;
}
.our-services-list.variant-three .theme-btn {
  color: #ffffff;
  background-color: #b55276;
  border: 2px solid #b55276;
}
.our-services-list.variant-three .theme-btn:hover {
  background-color: #713048;
  border-color: #713048;
}
.our-services-list.variant-four {
  background-color: #f0eeed;
}
.our-services-list.variant-four .container {
  padding-top: 65px;
  padding-bottom: 60px;
}
.our-services-list.variant-four .section-header {
  margin-bottom: 70px;
}
.our-services-list.variant-four .section-header p {
  line-height: 24px;
  margin: 0 0 20px;
}
.our-services-list.variant-four h2.title {
  font-size: 34px;
  font-weight: 700;
  margin-bottom: 4px;
  text-transform: capitalize;
}
.our-services-list.variant-four h2.title,
.our-services-list.variant-four .title {
  color: #524b49;
}
.our-services-list.variant-four .title {
  color: #524b49;
  margin-bottom: 10px;
}
.our-services-list.variant-four p {
  color: #918d8b;
}
.our-services-list.variant-four .services-items .title {
  font-size: 20px;
  font-weight: normal;
}
.our-services-list.variant-four .line {
  border-bottom-color: #cccaca;
}
/*-----------------------------------------------------------------------------------*/
/*  Our Work Section
/*-----------------------------------------------------------------------------------*/
.our-work #filter-by {
  margin: 0 0 50px;
  border: 1px solid #cad3db;
}
.our-work #filter-by a {
  display: inline-block;
  color: #61676c;
  cursor: pointer;
  border: 1px solid transparent;
  border-right-color: #cad3db;
  padding: 12px 23px;
  margin: -1px -1px -1px -4px;
  transition: 0.2s all ease-in-out;
}
.our-work #filter-by a:last-child {
  border-right: none;
}
.our-work #filter-by a:focus,
.our-work #filter-by a.active,
.our-work #filter-by a:hover {
  outline: 0;
  background-color: #f16543;
  text-decoration: none;
  color: #ffffff;
}
.our-work .gallery-item .inner-contents {
  border-bottom: 1px solid #cad3db;
}
.our-work .gallery-item figure {
  position: relative;
  margin: 0 0 21px;
}
.our-work .gallery-item img {
  padding: 0;
  margin: 0;
  max-width: 100%;
}
.our-work .gallery-item .gallery-btn {
  position: absolute;
  top: 45%;
  left: 50%;
  z-index: 200;
  width: 160px;
  margin: -22px 0 0 -79px;
  opacity: 0;
  padding: 14px 0 10px 0;
  text-align: center;
  font-size: 14px;
  font-weight: 700;
  color: #ffffff;
  border: 2px solid #ffffff;
}
.our-work .gallery-item .gallery-btn:hover {
  color: #f16543;
  background-color: #ffffff;
}
.our-work .gallery-item .media-container {
  position: absolute;
  z-index: 100;
  opacity: 0;
  width: 100%;
  height: 100%;
  background-color: #f16543;
}
.our-work .gallery-item .item-title {
  font-size: 15px;
  font-weight: 600;
  margin-bottom: 4px;
  color: #61676c;
}
.our-work .gallery-item p {
  margin-bottom: 12px;
}
.our-work .gallery-item p a {
  color: #a1a9b0;
  margin-right: 3px;
  text-decoration: none;
}
.our-work .gallery-item p a:hover {
  color: #f16543;
}
.container.portfolio-response {
  padding-top: 0;
  padding-bottom: 0;
}
.projects-showcase {
  position: relative;
  border: 1px solid #c6d0d8;
  margin-bottom: 60px;
  box-sizing: border-box !important;
}
.projects-showcase .control-btns {
  position: absolute;
  top: 0;
  right: 0;
  overflow: hidden;
  z-index: 999;
  background-color: #ffffff;
}
.projects-showcase .control-btns a {
  float: left;
  padding: 19px 21px;
  border-left: 1px solid #c6d0d8;
  border-bottom: 1px solid #c6d0d8;
  text-decoration: none;
  background: url("../images/slider-nav-2.png") no-repeat -87px center;
}
.projects-showcase .control-btns a.prev {
  background-position: 19px center;
}
.projects-showcase .control-btns a.close-btn {
  background: url("../images/icon-close.png") no-repeat center center;
}
.projects-showcase .control-btns a:hover {
  background-color: #c6d0d8;
}
.projects-showcase .slide-show {
  padding-left: 0;
  padding-right: 10px;
}
.projects-showcase .project-details {
  padding-top: 48px;
  padding-left: 20px;
}
.projects-showcase .work-4-detail {
  padding-right: 16px;
}
.projects-showcase .flexslider ul,
.projects-showcase .flexslider ul li {
  padding: 0;
  margin: 0;
  border: none;
}
.projects-showcase .flexslider .flex-direction-nav {
  width: 90px;
  display: block;
  position: absolute;
  right: 20px;
  bottom: 15px;
  z-index: 100;
  text-indent: -99999px;
}
.projects-showcase .flexslider .flex-direction-nav li {
  float: left;
  padding: 1px 0;
}
.projects-showcase .flexslider .flex-direction-nav li a {
  position: static;
  background: url("../images/slider-nav-2.png") #373c40 no-repeat 0 0;
  opacity: .8;
  border: none;
  width: 45px;
  height: 40px;
  margin: 0;
}
.projects-showcase .flexslider .flex-direction-nav li a:hover {
  background-color: #2b2f32;
  opacity: 1;
}
.projects-showcase .flexslider .flex-direction-nav li a.flex-next {
  background-position: -88px center;
  border-left: 1px solid #4c5257;
}
.projects-showcase .flexslider .flex-direction-nav li a.flex-prev {
  background-position: 19px center;
}
.projects-showcase .title {
  color: #f16543;
  font-size: 30px;
  margin-bottom: 20px;
}
.projects-showcase p {
  margin-bottom: 20px;
}
.projects-showcase article ul,
.projects-showcase article ol {
  margin: 0 0 28px;
  padding-left: 0;
}
.projects-showcase article ul li,
.projects-showcase article ol li {
  position: relative;
  margin-left: 20px;
  padding: 3px 0 9px 0px;
  background-position: 4px 10px;
  margin-bottom: 5px;
  border-bottom: 1px solid #dce3e9;
  list-style: none;
}
.projects-showcase article ul li:before,
.projects-showcase article ol li:before {
  font-family: 'FontAwesome';
  content: "\f061";
  position: absolute;
  left: -20px;
}
.projects-showcase article ul li:last-child,
.projects-showcase article ol li:last-child {
  border-bottom: none;
}
.projects-showcase .theme-btn {
  color: #373c40;
  border: 1px solid #373c40;
  font-weight: 700;
  padding: 8px 31px 7px;
  border-width: 2px;
  font-size: 14px;
  margin-bottom: 25px;
}
.projects-showcase .theme-btn:hover {
  color: #ffffff;
  background-color: #373c40;
}
.our-work.variant-two {
  padding-top: 62px;
  padding-bottom: 62px;
}
.our-work.variant-two .section-header {
  margin-bottom: 36px;
  padding: 0 15px;
}
.our-work.variant-two .section-header h3.title {
  margin-bottom: 6px;
}
.our-work.variant-two .gallery-item {
  margin: 0;
}
.our-work.variant-two .gallery-item .inner-contents {
  padding-top: 23px;
  border-bottom: 1px solid #CAD3DB;
  border-left: 1px solid #CAD3DB;
}
.our-work.variant-two .gallery-item figure {
  margin-bottom: 0;
}
.our-work.variant-two .gallery-item figure img {
  width: 100%;
}
.our-work.variant-two .gallery-item .item-title,
.our-work.variant-two .gallery-item p {
  padding: 0 18px;
}
.our-work.variant-three {
  padding-top: 0;
  padding-bottom: 0;
}
.our-work.variant-three .work-section-carousel-2 {
  position: relative;
}
.our-work.variant-three .wrapper {
  overflow: hidden;
  position: relative;
}
.our-work.variant-three .overlay {
  background: url(../images/overlay-bg.png);
  position: absolute;
  top: 0;
  width: 25%;
  height: 100%;
  z-index: 150;
}
.our-work.variant-three .overlay.left {
  left: 0;
  text-align: right;
}
.our-work.variant-three .overlay.right {
  right: 0;
  text-align: left;
}
.our-work.variant-three .prev,
.our-work.variant-three .next {
  background: url('../images/caroseul-nav-2.png') no-repeat #ffffff 22px 16px;
  display: inline-block;
  width: 56px;
  height: 50px;
  margin: 0;
  z-index: 5000;
  cursor: pointer;
}
.our-work.variant-three .next {
  background-position: -66px 16px;
}
.our-work.variant-three .item {
  position: relative;
}
.our-work.variant-three .item img {
  width: 100%;
  margin: 0;
}
.our-work.variant-three .item .inner-contents {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  background-image: url(../images/carousel-detail-bg.png);
  z-index: 100;
  padding: 10px 15px;
}
.our-work.variant-three .item h5 {
  font-size: 15px;
  font-weight: 600;
  color: #282c33;
  margin-bottom: 2px;
}
.our-work.variant-three .item p {
  font-style: italic;
  font-family: 'Open Sans', sans-serif;
  margin-bottom: 0;
}
.our-work.variant-three .item p a {
  color: #4369ac;
}
.our-work.variant-three .item p a:hover {
  color: #f16543;
}
.container-work-1 {
  padding-top: 80px;
  padding-bottom: 80px;
}
.our-work.variant-four .container-work-4 {
  padding-top: 80px;
  padding-bottom: 80px;
}
.our-work.variant-four .container.portfolio-response {
  padding-top: 0;
}
.our-work.variant-four .section-header {
  margin-bottom: 35px;
}
.our-work.variant-four .section-header h2.title {
  font-size: 48px;
}
.our-work.variant-four .section-header p {
  font-size: 16px;
  line-height: 30px;
  color: #524b49;
}
.our-work.variant-four #filter-by {
  border-left: none;
  border-right: none;
  text-align: center;
  margin-bottom: 50px;
}
.our-work.variant-four #filter-by a {
  transition: 0.2s all ease-in-out;
  font-size: 14px;
  padding: 9px 20px;
  color: #a7a19f;
  margin-left: -3px;
}
.our-work.variant-four #filter-by a.active,
.our-work.variant-four #filter-by a:hover {
  background: #f16543;
  color: #ffffff;
  border-right-color: #f16543;
  border-left-color: #f16543;
}
.our-work.variant-four #filter-by a:first-child {
  border-left: 1px solid #CAD3DB;
}
.our-work.variant-four #filter-by a:last-child {
  border-right: 1px solid #cad3db;
}
.our-work.variant-four .gallery-item .inner-contents {
  position: relative;
  border-bottom: none;
}
.our-work.variant-four .gallery-item .item-title {
  padding-top: 23%;
}
.our-work.variant-four .gallery-item .item-title a {
  color: #ffffff;
}
.our-work.variant-four .gallery-item p {
  color: #ffffff;
  margin-bottom: 11%;
}
.our-work.variant-four .gallery-item .media-container {
  text-align: center;
  position: absolute;
  top: 0;
  left: 0;
  overflow: hidden;
  background: none;
  height: 100%;
  width: 100%;
  z-index: 200;
}
.our-work.variant-four .gallery-item .overlay {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 100;
  background-color: #F16543;
  opacity: 0.9;
  width: 100%;
  height: 100%;
  display: none;
}
.our-work.variant-four .gallery-item .gallery-btn {
  position: static;
  margin: 0;
  padding: 12px 29px;
  opacity: 1;
}
.our-work.variant-four .gallery-item figure {
  margin: 0;
}
/*-----------------------------------------------------------------------------------*/
/*  Our Blog Section
/*-----------------------------------------------------------------------------------*/
.reply a {
  color: #f16543;
}
.reply a:hover {
  color: #333333;
}
.explore-more:hover {
  color: #f16543 !important;
  cursor: pointer;
}
.our-blog {
  background-color: #e5eaef;
}
.our-blog .view-more {
  background: #373c40;
  transition: all 0.2s ease-in-out;
  color: #ffffff;
}
.our-blog .view-more:hover {
  background: #f16543;
}
.our-blog .container {
  padding-top: 100px;
  padding-bottom: 100px;
}
.our-blog .arrow .shape {
  border-top-color: #e5eaef;
}
.our-blog article header {
  text-align: left;
}
.our-blog article {
cursor: pointer;
}
.our-blog .coverless {
height: 477px;
}
.our-blog figure {
width: 100%;
height: 205px;
overflow: hidden;
}
.our-blog .hentry .post-title {
  line-height: 21px;
  margin-bottom: 5px;
  color: #373c40;
}
.our-blog .hentry h2.post-title {
  font-size: 18px;
}
.our-blog .hentry .post-meta {
  color: #a1a9b0;
  font-family: 'Open Sans', sans-serif;
  font-style: italic;
  margin-bottom: 14px;
}
.our-blog .hentry .post-meta a {
  font-style: normal;
  color: #373c40;
}
.our-blog .hentry .post-meta a:hover {
  color: #f16543;
}
.our-blog .hentry img {
  display: block;
  height: auto;
  max-width: 100%;
  width: 100%;
  transition: 0.2s all ease-in-out;
}
.our-blog .hentry p {
  margin-bottom: 20px;
}
.our-blog .post-contents {
  padding: 20px 25px 14px;
  background-color: #ffffff;
}
.our-blog .post-video,
.our-blog .gallery-post-slider {
  margin: 0;
}
.our-blog .post-video .video-wrapper {
  padding-bottom: 60.8%;
}
.our-blog .arrow .shape {
  border-top-color: #e5eaef;
}
.post-grid-2-col {
  margin-bottom: 30px;
}
.post-grid-2-col p {
  line-height: 21px;
}
.post-grid-2-col .large-col .post-meta {
  margin-bottom: 13px;
}
.post-grid-2-col .small-col .hentry h2.post-title {
  margin-bottom: 2px;
}
.post-grid-2-col .small-col .post-meta {
  margin-bottom: 17px;
}
.post-grid-2-col .small-col .post-contents {
  padding: 24px 25px 26px;
}
.post-grid-2-col .post-video .video-wrapper {
  padding-bottom: 56.8%;
}
.post-grid-3-col article {
  margin-bottom: 30px;
}
.post-grid-3-col .hentry h2.post-title {
  margin-bottom: 3px;
}
.post-grid-3-col p {
  line-height: 21px;
}
.post-grid-3-col .post-contents {
  padding-top: 23px;
}
.post-grid-3-col .hentry .post-meta {
  margin-bottom: 19px;
}
.our-blog.variant-three {
  background: #4369ac;
}
.our-blog.variant-three .container {
  padding-top: 60px;
}
.our-blog.variant-three .section-header h2.title {
  color: #ffffff;
  font-size: 36px;
  text-transform: capitalize;
  margin-bottom: 17px;
}
.our-blog.variant-three .section-header p {
  color: #7d9bd0;
}
.our-blog.variant-three .owl-carousel .owl-item {
  padding: 0 15px;
}
.our-blog.variant-three .post-video .video-wrapper {
  padding-bottom: 61%;
}
.our-blog.variant-three .owl-controls {
  margin: 25px 0 0;
}
.our-blog.variant-three .owl-controls .owl-page span {
  opacity: 1;
  width: 16px;
  height: 16px;
  margin: 2px 6px;
  background-color: #2e4876;
}
.our-blog.variant-three .owl-controls .owl-page.active span,
.our-blog.variant-three .owl-controls .owl-page:hover span {
  background-color: #6991d9;
}
.our-blog.variant-four {
  background: #eee9e7;
}
.our-blog.variant-four .section-header h2.title {
  color: #534f4d;
  margin-bottom: 18px;
}
.our-blog.variant-four .section-header p {
  color: #534f4d;
}
.our-blog.variant-four .post-grid-2-col article {
  overflow: hidden;
  margin-bottom: 35px;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  border-radius: 5px;
  -webkit-box-shadow: 0px 2px 2px 0px rgba(0, 0, 0, 0.16);
  -moz-box-shadow: 0px 2px 2px 0px rgba(0, 0, 0, 0.16);
  box-shadow: 0px 2px 2px 0px rgba(0, 0, 0, 0.16);
}
.our-blog.variant-four .post-grid-2-col .post-video .video-wrapper {
  padding-bottom: 44.25%;
}
.our-blog.variant-four .view-more {
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  border-radius: 3px;
  -webkit-box-shadow: 0px 2px 2px 0px rgba(0, 0, 0, 0.16);
  -moz-box-shadow: 0px 2px 2px 0px rgba(0, 0, 0, 0.16);
  box-shadow: 0px 2px 2px 0px rgba(0, 0, 0, 0.16);
}
.our-blog.variant-four .gallery-post-slider {
  overflow: visible;
}
.our-blog.variant-four .post-contents {
  padding: 25px 23px 25px;
}
.our-blog.variant-four .hentry h1.post-title,
.our-blog.variant-four .hentry h2.post-title,
.our-blog.variant-four .hentry h3.post-title {
  font-size: 24px;
  color: #534f4d;
  margin-bottom: 7px;
  padding-right: 65px;
}
.our-blog.variant-four .hentry .post-meta {
  color: #73706e;
  margin-bottom: 10px;
}
.our-blog.variant-four .hentry .post-meta a {
  font-style: italic;
}
.our-blog.variant-four .hentry p {
  color: #999492;
}
.our-blog.variant-four .theme-btn {
  color: #7d7774;
  font-size: 13px;
  font-weight: 600;
  border: 1px solid #9d9b9a;
  padding: 4px 14px;
  text-transform: uppercase;
}
.our-blog.variant-four .theme-btn:hover {
  color: #ffffff;
  border-color: #373c40;
  background-color: #373c40;
}
.our-blog.variant-four .format-icon {
  height: 75px;
  width: 75px;
  position: absolute;
  top: 100%;
  right: 20px;
  margin-top: -37.5px;
  -webkit-border-radius: 100%;
  -moz-border-radius: 100%;
  border-radius: 100%;
}
.our-blog.variant-four .format-image .format-icon {
  background-image: url('../images/icon-image-2.png');
}
.our-blog.variant-four .format-gallery .format-icon {
  background-image: url('../images/icon-image-2.png');
}
.our-blog.variant-four .format-video .format-icon {
  background-image: url('../images/icon-video-2.png');
}
.our-blog.variant-four .format-audio .format-icon {
  background-image: url('../images/icon-audio-2.png');
}
.our-blog.variant-four .format-chat .format-icon {
  background-image: url('../images/icon-chat-2.png');
}
.our-blog.variant-four .arrow .shape {
  border-top-color: #eee9e7;
}
.our-blog.variant-four .arrow .icon {
  background: url("../images/icon-arrow-down-2.png") no-repeat 50% 10px;
}
/*-----------------------------------------------------------------------------------*/
/* Follow us Section
/*-----------------------------------------------------------------------------------*/
.follow-us {
  text-align: center;
  background: url('../images/temp/follow-us-section-bg.jpg');
  background-attachment: fixed;
  background-size: cover;
}
.follow-us .flexslider {
  padding-top: 100px;
  padding-bottom: 100px;
}
.follow-us .icon-twitter {
  display: block;
  width: 100%;
  height: 30px;
  background: url("../images/icon-twitter.png") no-repeat center 0;
  margin-bottom: 15px;
}
.follow-us .section-header h2.title {
  color: #ffffff;
  font-size: 36px;
  line-height: 41px;
}
.follow-us .separator .line {
  background-color: #6b7074;
}
.follow-us .widget_displaytweetswidget {
  margin: 0;
}
.follow-us .widget_displaytweetswidget li p {
  font-size: 27px;
  line-height: 42px;
  color: #ced3d8;
  border: none;
}
.follow-us .widget_displaytweetswidget li a {
  color: #f16543;
}
.follow-us .widget_displaytweetswidget li small {
  font-size: 18px;
  color: #919ba1;
}
.follow-us.variant-three {
  background: #e76c99;
}
.follow-us.variant-three .container {
  padding-top: 100px;
  padding-bottom: 100px;
}
.follow-us.variant-three .icon-twitter {
  background-image: url("../images/icon-twitter-2.png");
}
.follow-us.variant-three .section-header {
  margin-bottom: 24px;
}
.follow-us.variant-three h2.title {
  color: #7c3751;
}
.follow-us.variant-three span.line {
  background-color: #ca668b;
}
.follow-us.variant-three .widget_displaytweetswidget {
  width: auto;
  margin-bottom: 0;
}
.follow-us.variant-three .widget_displaytweetswidget a,
.follow-us.variant-three .widget_displaytweetswidget p {
  color: #ffffff;
}
.follow-us.variant-three .widget_displaytweetswidget small {
  color: #9e4767;
  font-style: normal;
}
.follow-us.variant-three .slider-follow-var3 {
  padding-top: 0;
  padding-bottom: 0;
}
.follow-us.variant-four .flexslider {
  padding-top: 160px;
  padding-bottom: 150px;
}
.follow-us.variant-four .flexslider .flex-viewport ul li .custom-container-follow {
  width: 1025px;
}
.follow-us.variant-four .section-header {
  margin-bottom: 17px;
}
.follow-us.variant-four i.icon-twitter {
  float: left;
  width: 147px;
  height: 147px;
  margin: 0 54px 0 0;
  background-color: #f16543;
  background-position: center center;
  -webkit-border-radius: 100%;
  -moz-border-radius: 100%;
  border-radius: 100%;
}
.follow-us.variant-four .icon-twitter {
  background-image: url("../images/icon-twitter-3.png");
}
.follow-us.variant-four .widget_displaytweetswidget {
  width: auto;
}
.follow-us.variant-four .widget_displaytweetswidget a {
  color: #f16543;
}
.follow-us.variant-four .widget_displaytweetswidget p {
  color: #ffffff;
  text-align: left;
  padding-top: 30px;
  display: table;
}
.follow-us.variant-four .widget_displaytweetswidget small {
  color: #f16543;
  font-style: normal;
  text-align: center;
  display: block;
  margin-top: 20px;
}
/*-----------------------------------------------------------------------------------*/
/* Our Address Details Section
/*-----------------------------------------------------------------------------------*/
.contact-details {
  text-align: center;
  padding-top: 0;
  padding-bottom: 0;
}
.contact-details-container {
pointer-events: none;
}
.contact-details .section-header p {
  font-size: 16px;
}
.contact-details .icon-pin {
  display: block;
  width: 100%;
  height: 56px;
  background: url("../images/icon-pin.png") no-repeat center 0;
  margin-bottom: 20px;
}
.contact-details .inner-wrapper {
  position: relative;
  width: 100%;
}
.contact-details .inner-wrapper,
.contact-details #map_canvas {
  /*height: 585px;*/
}
.contact-details .contact-details-container,
.contact-details .google-map-wrapper {
  /*position: absolute;*/
  /*top: 0;*/
  /*left: 0;*/
  width: 100%;
  height: 100%;
}
.contact-details .contact-details-container {
  padding-top: 100px;
  z-index: 200;
}
.contact-details .google-map-wrapper {
  z-index: 100;
}
.contact-details-list {
  border-bottom: 1px solid #bcc3c9;
  border-right: 1px solid #bcc3c9;
  display: block;
  width: 95%;
  max-width: 920px;
  margin: auto;
}
.contact-details-list li {
  float: left;
  color: #373c40;
  font-size: 24px;
  font-weight: 700;
  text-align: center;
  border-top: 1px solid #bcc3c9;
  border-left: 1px solid #bcc3c9;
  padding: 28px 0px;
  width: 257px;
  word-wrap: break-word;
}
.contact-details-list li:nth-child(1) {
width: 25%;
}
.contact-details-list li:nth-child(2) {
width: 75%;
}
.contact-details-list li a {
  color: #373c40;
}
.contact-details-list li a:hover {
  color: #f16543;
}
.contact-details-list li i {
  display: block;
  width: 100%;
  height: 32px;
  margin-bottom: 12px;
}
.contact-details-list li .icon-telephone {
  background: url("../images/icon-telephone.png") no-repeat center 0;
}
.contact-details-list li .icon-fax {
  background: url("../images/icon-fax.png") no-repeat center 0;
}
.contact-details-list li .icon-mail {
  background: url("../images/icon-mail.png") no-repeat center 0;
}
.contact-details.variant-three {
  background: #674296;
  padding-top: 130px;
  padding-bottom: 0;
  height: auto;
}
.contact-details.variant-three .section-header h2.title {
  color: #ffffff;
}
.contact-details.variant-three .section-header p {
  color: #b297d4;
}
.contact-details.variant-three span.line {
  background-color: #744da7;
}
.contact-details.variant-three .contact-details-list {
  border: none;
}
.contact-details.variant-three .contact-details-list li {
  border: none;
  color: #ffffff;
}
.contact-details.variant-three .contact-details-list li a {
  color: #ffffff;
}
.contact-details.variant-three .contact-details-list li a:hover {
  color: #2F0B5C;
}
.contact-details.variant-three .contact-details-list li.fax {
  border-left: 1px solid #744da7;
  border-right: 1px solid #744da7;
}
.contact-details.variant-three .contact-details-list li .icon-telephone {
  background-image: url("../images/icon-telephone-2.png");
}
.contact-details.variant-three .contact-details-list li .icon-fax {
  background-image: url("../images/icon-fax-2.png");
}
.contact-details.variant-three .contact-details-list li .icon-mail {
  background-image: url("../images/icon-mail-2.png");
}
.contact-details.variant-four {
  padding-top: 0;
  padding-bottom: 0;
  background: url('../images/temp/map2.jpg');
  background-attachment: fixed;
  background-size: contain;
}
.contact-details.variant-four .icon-pin {
  margin-bottom: 2px;
}
.contact-details.variant-four .section-header {
  padding-top: 83px;
}
.contact-details.variant-four .section-header h2.title {
  margin-bottom: 55px;
}
.contact-details.variant-four address {
  display: inline-block;
  width: 63.5%;
  margin: 0 auto;
  padding-top: 25px;
  padding-bottom: 35px;
  background-color: #373c40;
  color: #ffffff;
  text-align: center;
  font-size: 18px;
  line-height: 30px;
  position: relative;
}
.contact-details.variant-four address:after {
  content: "";
  position: absolute;
  top: 100%;
  left: 46%;
  border-width: 0 0 35px 30px;
  border-style: solid;
  border-color: transparent #373c40;
}
.contact-details.variant-four .wrapper-contact-detail {
  background: #ffffff;
}
.contact-details.variant-four .contact-details-list {
  border-right: 1px solid #e4dedb;
  width: 100%;
  background-color: #ffffff;
  padding-top: 30px;
  padding-bottom: 50px;
}
.contact-details.variant-four .contact-details-list li {
  float: none;
  border: none;
  width: 100%;
  overflow: hidden;
  border-bottom: 1px solid #e4dedb;
  color: #534f4d;
  padding: 40px 0;
  line-height: 90px;
}
.contact-details.variant-four .contact-details-list li:last-child {
  border-bottom: none;
}
.contact-details.variant-four .contact-details-list li a {
  color: #373c40;
}
.contact-details.variant-four .contact-details-list li a:hover {
  color: #f16543;
}
.contact-details.variant-four .contact-details-list li i {
  margin: auto;
  float: right;
  width: 100px;
  height: 100px;
  background-color: #eee9e7;
  background-position: center center;
  -webkit-border-radius: 100%;
  -moz-border-radius: 100%;
  border-radius: 100%;
}
.contact-details.variant-four .contact-details-list li span {
  float: left;
}
.contact-details.variant-four .contact-details-list li .icon-telephone {
  background-image: url("../images/icon-telephone-3.png");
}
.contact-details.variant-four .contact-details-list li .icon-fax {
  background-image: url("../images/icon-fax-3.png");
}
.contact-details.variant-four .contact-details-list li .icon-mail {
  background-image: url("../images/icon-mail-3.png");
}
/*-----------------------------------------------------------------------------------*/
/* google map custom controls
/*-----------------------------------------------------------------------------------*/
.gmnoprint,
.gm-style-cc {
  display: none;
}
/*-----------------------------------------------------------------------------------*/
/*  Contact us Section
/*-----------------------------------------------------------------------------------*/
.contact-us {
  background-color: #f16543;
}
.contact-us .container {
  padding-top: 100px;
  padding-bottom: 100px;
}
.contact-us .section-header {
  margin-bottom: 70px;
}
.contact-us .section-header .title {
  color: #ffffff;
}
.contact-us .section-header p {
  color: #ffad99;
  font-size: 16px;
}
.contact-us .separator .line {
  background-color: #d6593b;
}
.contact-form {
  width: 435px;
  background: rgba(255,255,255,.8);
  position: absolute;
  z-index: 200;
  top: 394px;
  right: 10%;
  padding: 30px 30px 20px 30px;
  /* firefox 19+ */
  /* ie */
}
.contact-form .telefone i {
margin: 1px 8px 0 0;
float: left;
color: #f16543;
font-size: 16px;
text-align: left;
}
.contact-form .telefone h1 {
float: left;
text-transform: uppercase;
font-size: 15px;
font-family: "Open Sans";
text-align: left;
color: rgba(0,0,0,.7);
}
.contact-form .telefone h2 {
display: block;
float: left;
margin-top: -4px;
text-transform: uppercase;
font-size: 10px;
font-family: "Open Sans";
text-align: left;
color: rgba(0,0,0,.5);
}
.contact-form .telefone h2 strong {
font-size: 15px;
float: left;
margin: -4px 8px 0 0;
}
.contact-form .email i {
margin: 1px 8px 0 0;
float: left;
color: #f16543;
font-size: 14px;
text-align: left;
}
.contact-form .email h1 {
float: left;
text-transform: uppercase;
font-size: 15px;
font-family: "Open Sans";
text-align: left;
color: rgba(0,0,0,.7);
}
.contact-form .email h2 {
display: block;
float: left;
margin-top: -8px;
text-transform: uppercase;
font-size: 14px;
font-family: "Open Sans";
text-align: left;
color: rgba(0,0,0,.5);
}
.contact-us .contact-form ::-webkit-input-placeholder {
  color: #ffad99;
}
.contact-us .contact-form ::-moz-placeholder {
  color: #ffad99;
}
.contact-us .contact-form :-ms-input-placeholder {
  color: #ffad99;
}
.contact-us .contact-form input:-moz-placeholder {
  color: #ffad99;
}
.contact-us .contact-form input {
  border: 1px solid transparent;
  transition: 0.2s all ease-in-out;
}
.contact-us .contact-form input:focus {
  color: #ffffff;
  border-color: #ffffff;
}
.contact-us .contact-form input,
.contact-us .contact-form textarea {
  color: #ffad99;
  background-color: #cf5537;
  height: 43px;
  padding-left: 16px;
  padding-right: 16px;
}
.contact-us .contact-form textarea {
  display: block;
  padding-top: 10px;
  padding-bottom: 10px;
  resize: none;
  width: 100%;
  height: 151px;
  border: 1px solid transparent;
  transition: 0.2s all ease-in-out;
}
.contact-us .contact-form textarea:focus {
  color: #ffffff;
  border-color: #ffffff;
}
.contact-us .contact-form p {
  overflow: hidden;
  text-align: center;
  margin-bottom: 28px;
}
.contact-us .contact-form #email,
.contact-us .contact-form #name {
  width: 48%;
}
.contact-us .contact-form #name {
  float: left;
}
.contact-us .contact-form #email {
  float: right;
}
.contact-us .contact-form #subject {
  width: 100%;
}
.contact-us .contact-form #submit {
  font-size: 14px;
  color: #ffffff;
  background: none;
  border: 2px solid #ffffff;
  padding: 3px 33px 1px;
  float: right;
}
.contact-us .contact-form #submit:hover {
  background-color: #cf5537;
  border-color: #cf5537;
}
.contact-us .contact-form #contact-loader {
  display: none;
  margin: 9px 10px 0 0;
}
.contact-us .contact-form input.error,
.contact-us .contact-form textarea.error {
  border: 1px solid #ffffff;
}
.contact-us .status-wrapper {
  float: left;
}
.contact-us .submit-and-loader {
  float: right;
}
.contact-us .error-container {
  display: none;
}
.contact-us .error-container label.error {
  font-weight: 500;
  color: #ffffff;
  display: block;
}
.contact-us #message-sent {
  display: none;
}
.contact-us.variant-three {
  background-color: #674296;
  /* firefox 19+ */
  /* ie */
}
.contact-us.variant-three .contact-form #contact-loader {
  margin: 15px 10px 0 0;
}
.contact-us.variant-three ::-webkit-input-placeholder {
  color: #afa0c3;
}
.contact-us.variant-three ::-moz-placeholder {
  color: #afa0c3;
}
.contact-us.variant-three :-ms-input-placeholder {
  color: #afa0c3;
}
.contact-us.variant-three input:-moz-placeholder {
  color: #afa0c3;
}
.contact-us.variant-three .section-header h2.title {
  font-size: 48px;
}
.contact-us.variant-three .section-header p {
  color: #b297d4;
}
.contact-us.variant-three span.line {
  background-color: #744da7;
}
.contact-us.variant-three input,
.contact-us.variant-three textarea {
  color: #afa0c3;
  background-color: #ffffff;
}
.contact-us.variant-three input:focus,
.contact-us.variant-three textarea:focus {
  color: #373c40;
}
.contact-us.variant-three textarea {
  display: block;
}
.contact-us.variant-three #submit {
  background: #e76c99;
  border-color: #e76c99;
}
.contact-us.variant-three #submit:hover {
  background-color: #532a87;
  border-color: #532a87;
}
.contact-us.variant-three input.error,
.contact-us.variant-three textarea.error {
  border-color: #e76c99;
}
.contact-us.variant-four {
  /* firefox 19+ */
  /* ie */
}
.contact-us.variant-four .contact-form #contact-loader {
  margin: 15px 10px 0 0;
}
.contact-us.variant-four .section-header h2.title {
  margin-bottom: 15px;
}
.contact-us.variant-four ::-webkit-input-placeholder {
  color: #a0a0a0;
}
.contact-us.variant-four ::-moz-placeholder {
  color: #a0a0a0;
}
.contact-us.variant-four :-ms-input-placeholder {
  color: #a0a0a0;
}
.contact-us.variant-four input:-moz-placeholder {
  color: #a0a0a0;
}
.contact-us.variant-four input,
.contact-us.variant-four textarea {
  color: #a0a0a0;
  background-color: #ffffff;
}
.contact-us.variant-four input:focus,
.contact-us.variant-four textarea:focus {
  color: #080808;
}
.contact-us.variant-four input.error,
.contact-us.variant-four textarea.error {
  border-color: #ff0000;
  box-shadow: inset 0 0 1px 1px #ff0000;
}
#footer {
padding: 26px 0 18px 0;
background: #fff;
}
#footer span {
font-family: "Open Sans";
text-align: center;
display: block;
text-transform: uppercase;
font-size: 12px;
letter-spacing: 0.5px;
color: rgba(0,0,0,.6);
font-weight: 700;
}
#footer span strong {
font-weight: 900;
}
/*-----------------------------------------------------------------------------------*/
/*  Shop Section
/*-----------------------------------------------------------------------------------*/
.product-categories {
  padding: 20px 0;
}
.product-categories figure {
  position: relative;
  margin: 20px auto;
}
.product-categories img {
  margin: 0;
}
.product-categories figcaption {
  position: absolute;
  left: 0;
  bottom: 0;
  background-color: #373c40;
  color: #ffffff;
  font-size: 16px;
  line-height: 23px;
  font-weight: 700;
  padding: 10px 23px;
  width: 70%;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}
.featured-products {
  display: none;
  padding-top: 30px;
  padding-bottom: 30px;
}
.featured-products .section-header {
  margin-bottom: 50px;
}
.featured-products .inner-contents {
  border-bottom: 1px solid #ced7de;
  margin-bottom: 30px;
}
.products {
  display: none;
  background-color: #f7f9fa;
  padding-top: 30px;
  padding-bottom: 30px;
}
/*-----------------------------------------------------------------------------------*/
/*  Responsive Styles
/*-----------------------------------------------------------------------------------*/
/*-----------------------------------------------------------------------------------*/
/* Responsive: Large desktop and up
/*-----------------------------------------------------------------------------------*/
@media (max-width: 1024px) {
  .main-menu-wrapper {
  margin-left: -70px;
  }
}
@media (max-width: 1199px) {
  /*-----------------------------------------------------------------------------------*/
  /*  Header
  /*-----------------------------------------------------------------------------------*/
  .custom-container-header {
    width: 945px;
  }
  .header-wrapper.variant-two .contact-card .email {
    margin-right: 5px;
  }
  .header-wrapper.variant-two .contact-card .phone-number {
    margin-right: 5px;
  }
  .header-wrapper.variant-two .main-menu > ul > li {
    margin-right: 6px;
  }
  .header-wrapper.variant-two .main-menu > ul > li:last-child {
    margin-right: 0;
  }
  .header-wrapper.variant-two .main-menu > ul > li a {
    font-size: 12px;
  }
  .header-wrapper.variant-two .social_networks li a {
    width: 27px;
    border-left-color: transparent;
  }
  .header-wrapper.variant-three .main-menu ul > li > a {
    padding-left: 10px;
    padding-right: 10px;
  }
  .header-wrapper.variant-three .contact-card .contact-options .phone-number {
    margin-right: 10px;
  }
  .header-wrapper.variant-three .social_networks li a {
    width: 38px;
  }
  .header-wrapper.variant-four .contact-card .email {
    margin-right: 7px;
  }
  .header-wrapper.variant-four .main-menu ul li {
    margin: 0 0 0 4px;
  }
  .header-wrapper.variant-four .main-menu ul li a {
    padding-left: 3px;
    padding-right: 3px;
    font-size: 12px;
  }
  .header-wrapper.variant-four .main-menu ul li:hover > a {
    border: none;
    background: none;
  }
  .header-wrapper.variant-four .contact-card .contact-options {
    font-size: 12px;
  }
  .header-wrapper.variant-four .social_networks li a {
    margin-left: 0;
    margin-right: 10px;
  }
  .our-services.variant-three .container {
    padding-bottom: 0;
  }
  /*-----------------------------------------------------------------------------------*/
  /*  Home FlexSlider
  /*-----------------------------------------------------------------------------------*/
  .custom-container-slide {
    width: 910px;
  }
  .custom-margin-slider {
    margin: 55px 0;
  }
  .slide-description {
    left: 100px;
  }
  .home-slider {
    height: 650px;
  }
  .flexslider .slide-description h2 {
    font-size: 42px;
    line-height: 48px;
    padding: 13px 15px 10px;
  }
  .flexslider .slide-description p,
  .flexslider .slide-description a {
    font-size: 14px;
  }
  .flexslider .slide-description p {
    margin-bottom: 20px;
  }
  .flexslider .slide-description a {
    padding: 10px 20px;
  }
  .flexslider.variant-two .slide-description a {
    margin-top: 20px;
  }
  .flexslider.variant-three .slide-description {
    padding: 0 100px;
  }
  .flexslider.variant-three .slide-description h2 {
    font-size: 48px;
  }
  /*-----------------------------------------------------------------------------------*/
  /*  One Page portfolio
  /*-----------------------------------------------------------------------------------*/
  .welcome-section h1 {
    font-size: 42px;
    line-height: 48px;
  }
  .welcome-section .container {
    padding-top: 80px;
  }
  .about-us .container {
    padding-bottom: 60px;
  }
  .about-us.variant-two .container {
    padding-top: 63px;
    padding-bottom: 0;
  }
  .features .container {
    padding-bottom: 50px;
  }
  .features.variant-two .container {
    padding-top: 75px;
    padding-bottom: 55px;
  }
  .our-team .container {
    padding-top: 100px;
    padding-bottom: 0;
  }
  .team-member .social_networks li a {
    width: 44px;
  }
  .our-team.variant-four .member-info {
    height: 132px;
  }
  .client-section-carousel {
    padding: 0;
  }
  .our-clients .variant-four .owl-item {
    border: none;
  }
  .our-clients .variant-four .owl-controls {
    margin-top: 40px;
  }
  .follow-us.variant-four .flexslider .flex-viewport ul li .custom-container-follow {
    padding-left: 0px;
    padding-right: 0px;
    width: 800px;
  }
  .follow-us.variant-four i.icon-twitter {
    width: 100px;
    height: 100px;
    margin: 40px 30px 0 0;
  }
  .our-services .container {
    padding-bottom: 80px;
  }
  .our-services .services-list {
    padding-top: 0;
  }
  .our-services .services-list li:last-child {
    margin-bottom: 0;
  }
  .our-services .inner-contents {
    padding-top: 70px;
  }
  .our-services .inner-contents h2 {
    font-size: 24px;
  }
  .our-services .inner-contents p {
    margin-bottom: 10px;
  }
  .our-services.variant-two .container {
    padding-top: 80px;
  }
  .our-services.variant-two .list-large-arrow-bullet ul {
    margin-top: 5px;
    margin-bottom: 5px;
  }
  .our-work #filter-by {
    border: none;
  }
  .our-work #filter-by a {
    border: 1px solid #cad3db;
    padding-left: 20px;
    padding-right: 20px;
    margin: 1px;
  }
  .our-work #filter-by a:last-child {
    border-right: 1px solid #cad3db;
  }
  .our-work .gallery-item img {
    width: 100%;
  }
  .our-work .portfolio-response.container {
    padding-bottom: 0;
  }
  .post-grid-2-col {
    display: none;
  }
  .contact-us .contact-form {
    margin-right: 80px;
    margin-left: 80px;
  }
  /*-----------------------------------------------------------------------------------*/
  /*  Layout
  /*-----------------------------------------------------------------------------------*/
  .page-container {
    padding-bottom: 50px;
  }
  .page-container .page-header {
    margin-bottom: 30px;
  }
  .portfolio-item-filter {
    margin-top: 30px;
    margin-bottom: 30px;
  }
  /*-----------------------------------------------------------------------------------*/
  /*  Blog
  /*-----------------------------------------------------------------------------------*/
  .blog-article .post-meta {
    margin-right: 15px;
  }
  .blog-article .post-meta ul {
    padding-left: 0;
    padding-right: 0;
  }
  .blog-article .post-summary {
    padding-right: 0;
  }
  #comments .comment {
    padding-top: 30px;
    padding-bottom: 30px;
  }
  #comments .comment-wrapper {
    padding-left: 30px;
    padding-right: 30px;
  }
  #comments .depth-2 article {
    margin-left: 120px;
  }
  #comments .depth-3 article,
  #comments .depth-4 article,
  #comments .depth-5 article {
    margin-left: 240px;
  }
  /*-----------------------------------------------------------------------------------*/
  /* work 4 slider
  /*-----------------------------------------------------------------------------------*/
  .projects-showcase .title {
    font-size: 29px;
  }
  /*-----------------------------------------------------------------------------------*/
  /*  Tabbed Widget
  /*-----------------------------------------------------------------------------------*/
  .widget .tabbed .tabs li {
    font-size: 14px;
  }
  .widget-list li figure {
    margin-right: 15px;
    margin-bottom: 15px;
  }
  /*-----------------------------------------------------------------------------------*/
  /* Single Portfolio Page
  /*-----------------------------------------------------------------------------------*/
  .single-project article {
    padding: 40px 50px 0;
  }
  .related-projects {
    padding-top: 30px;
  }
  /*-----------------------------------------------------------------------------------*/
  /*  Services
  /*-----------------------------------------------------------------------------------*/
  .services-items-wrapper article .content-wrapper {
    padding: 15px 15px 0 15px;
  }
  .services-sidebar .services-item {
    padding-left: 15px;
    padding-right: 15px;
  }
  /*-----------------------------------------------------------------------------------*/
  /*  Contact Page
  /*-----------------------------------------------------------------------------------*/
  #map_canvas {
    height: 764px;
  }
  .contacts-list {
    margin-right: 0;
  }
}
@media (max-width: 991px) {
  /*-----------------------------------------------------------------------------------*/
  /*  Header
  /*-----------------------------------------------------------------------------------*/
  .header-wrapper.variant-two .contact-card {
    float: none;
    width: 100%;
    overflow: hidden;
  }
  .header-wrapper.variant-two .mean-container .mean-nav {
    background: transparent;
    padding-top: 70px;
    background: #fff;
  }
  .header-wrapper.variant-two .mean-container .mean-nav ul li a {
    border-top: 1px solid #43494d;
  }
  .header-wrapper.variant-two .mean-container .mean-nav ul .mean-last {
    border-bottom: 1px solid #43494d;
  }
  .header-wrapper.variant-two .mean-container a.meanmenu-reveal {
    top: 0;
    height: 21px;
    background: #373c40;
    border-left: 1px solid #43494d;
    color: #929a9b;
  }
  .header-wrapper.variant-two .mean-container .mean-nav ul li a.mean-expand {
    color: #929a9b;
    background-color: transparent;
  }
  .header-wrapper.variant-two #logo {
    z-index: 999999;
  }
  .header-wrapper.variant-two #logo a {
    height: 61px;
    position: relative;
    z-index: 9999999;
  }
  .header-wrapper.variant-two .mean-container .mean-bar {
    z-index: 998888;
  }
  .header-wrapper.variant-two .social_networks {
    margin-right: 52px;
  }
  .header-wrapper.variant-two .social_networks li a {
    width: 45px;
    border-left-color: #43494d;
  }
  .header-wrapper.variant-two .logo-wrapper #logo {
    height: 0;
  }
  .header-wrapper.variant-three .mean-container .mean-nav {
    background: transparent;
  }
  .header-wrapper.variant-three .mean-container .mean-nav ul li a {
    color: #40778b;
    border-color: #65bbd9;
  }
  .header-wrapper.variant-three .mean-container .mean-nav ul li a:hover {
    color: #ffffff;
  }
  .header-wrapper.variant-three .mean-container a.meanmenu-reveal {
    border-color: #65bbd9;
    background: #47849a;
    top: 0;
  }
  .header-wrapper.variant-three .mean-container .mean-nav ul li a.mean-expand {
    color: #ffffff;
    background: #47849a;
  }
  .header-wrapper.variant-three .wrapper-contact-options {
    float: none;
    text-align: center;
  }
  .header-wrapper.variant-three .wrapper-contact-options .contact-options {
    float: none;
  }
  .header-wrapper.variant-three .wrapper-contact-options .social_networks {
    display: inline-block;
    float: none;
  }
  .header-wrapper.variant-three .wrapper-contact-options .social_networks li {
    margin: 0;
  }
  .header-wrapper.variant-three .wrapper-contact-options .social_networks li:last-child a {
    border-right: 1px solid #65bbd9;
  }
  .header-wrapper.variant-three .wrapper-contact-options .social_networks li a {
    width: 45px;
  }
  .header-wrapper.variant-three .close {
    position: relative;
    left: 0;
    float: left;
    padding: 0 !important;
    padding-top: 19px !important;
  }
  .header-wrapper.variant-one .contact-card {
    margin-right: 50px;
  }
  .header-wrapper.variant-four {
    box-shadow: 0px 1px 5px rgba(0, 0, 0, 0.08);
    background: #ffffff;
    position: fixed !important;
    top: 0;
  }
  .header-wrapper.variant-four .logo-wrapper > #logo {
    height: 0;
  }
  .header-wrapper.variant-four .logo-wrapper > #logo #logo-image {
    height: 61px !important;
    margin-top: 0;
  }
  .header-wrapper.variant-four .social_networks {
    margin-right: 66px;
  }
  .header-wrapper.variant-four .social_networks li a {
    margin-left: 20px;
  }
  .header-wrapper.variant-four .mean-container a.meanmenu-reveal {
    top: -1px !important;
  }
  .header-wrapper.variant-four .custom-col-var4 {
    min-height: 0;
  }
  /*-----------------------------------------------------------------------------------*/
  /*  Home FlexSlider
  /*-----------------------------------------------------------------------------------*/
  .custom-margin-slider {
    margin: 0;
  }
  .custom-container-slide {
    width: auto;
  }
  .flexslider .slide-description h2 {
    font-size: 28px;
    line-height: 32px;
  }
  .flexslider .slide-description a {
    padding-top: 8px;
    padding-bottom: 8px;
  }
  .flexslider.variant-two .slide-description h2 {
    margin-bottom: 0;
  }
  .flexslider.variant-two .slide-description a {
    margin-top: 0;
  }
  .home-slider-4 {
    width: 100%;
  }
  .home-slider-4 .slide-description h2 {
    line-height: 48px;
  }
  /*-----------------------------------------------------------------------------------*/
  /*  One Page portfolio
  /*-----------------------------------------------------------------------------------*/
  .our-team.variant-three .flip-front {
    opacity: .5;
  }
  .our-team.variant-three .team-member {
    margin-bottom: 40px;
  }
  .our-team.variant-three .member-image {
    background: #4261a1 !important;
  }
  .arrow {
    display: none;
  }
  .welcome-section h1 {
    font-size: 32px;
    line-height: 38px;
  }
  /*-----------------------------------------------------------------------------------*/
  /* team var-1
  /*-----------------------------------------------------------------------------------*/
  .variant-one .img-responsive {
    width: 100%;
  }
  /*-----------------------------------------------------------------------------------*/
  /* Team var-4
  /*-----------------------------------------------------------------------------------*/
  .team-box {
    padding: 0 20px;
  }
  .team-box:hover .image-team img {
    transform: none;
  }
  .team-box:hover .info-team {
    background: #ffffff;
  }
  .team-box:hover .info-team h4 a {
    color: inherit;
  }
  .team-box:hover .info-team h5 {
    color: #f16543;
  }
  .image-team {
    padding-bottom: 0;
  }
  .image-team .info-team {
    background: #ffffff;
    padding-bottom: 0;
    position: relative;
    margin-top: 0;
  }
  .image-team .info-team h4 a {
    color: inherit;
  }
  .image-team .info-team h5 {
    color: #f16543;
  }
  .image-team .info-team p {
    color: #373c40;
  }
  .image-team .info-team ul.social_networks {
    position: relative;
    border-color: #da502f !important;
    background: transparent !important;
  }
  .image-team .info-team ul.social_networks li a i {
    color: inherit;
  }
  /*-----------------------------------------------------------------------------------*/
  /* follow us
  /*-----------------------------------------------------------------------------------*/
  .follow-us.variant-four .flexslider .flex-viewport ul li .custom-container-follow {
    width: 550px;
  }
  .follow-us.variant-four .flexslider .flex-viewport ul li .custom-container-follow i {
    display: block;
    margin: auto;
    float: none;
  }
  .our-team .team-member .social_networks li a {
    width: 52px;
  }
  .our-services .container {
    padding-bottom: 80px;
  }
  .our-services.variant-two .container {
    padding-bottom: 70px;
  }
  .our-services .inner-contents {
    padding-top: 70px;
  }
  .standout {
    margin-bottom: 50px;
  }
  .projects-showcase .slide-show {
    padding-right: 0;
  }
  .projects-showcase .project-details {
    padding-top: 20px;
  }
  .contact-details-list li {
    font-size: 16px;
    width: 200px;
  }
  .contact-us .contact-form {
    margin-right: 50px;
    margin-left: 50px;
  }
  /*-----------------------------------------------------------------------------------*/
  /*  Layout
  /*-----------------------------------------------------------------------------------*/
  .page-container {
    padding-bottom: 0px;
  }
  .main {
    margin-bottom: 25px;
  }
  .sidebar {
    padding-top: 25px;
  }
  .page-container .page-header {
    margin-bottom: 25px;
  }
  .portfolio-item-filter {
    margin-top: 25px;
    margin-bottom: 25px;
  }
  /*-----------------------------------------------------------------------------------*/
  /*  Contact Card
  /*-----------------------------------------------------------------------------------*/
  .contact-card {
    margin-right: 50px;
  }
  /*-----------------------------------------------------------------------------------*/
  /*  Main Menu
  /*-----------------------------------------------------------------------------------*/
  .custom-container-header {
    width: auto;
  }
  .mean-container .mean-bar {
    padding: 0;
    min-height: 0;
    background: transparent;
  }
  .mean-container .mean-nav {
    background: #ffffff;
    margin-top: 0;
  }
  .mean-container a.meanmenu-reveal {
    top: -62px;
    float: right;
    background: #f16543;
    padding: 20px 14px;
    z-index: 3000;
  }
  .mean-container .mean-nav ul li a {
    text-transform: uppercase;
    font-weight: 500;
    font-size: 110%;
    letter-spacing: 2px;
    border-top: 1px solid #d3dae0;
    color: #80878d;
    width: 100%;
    padding: 19px 0 18px;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
  }
  .mean-container .mean-nav ul li a:hover {
    background-color: transparent;
    color: #f16543;
  }
  .mean-container .mean-nav ul li a.mean-expand {
    color: #ffffff;
    background-color: #f16543;
    width: 50px;
    height: 54px;
    margin: 0;
    padding: 0 !important;
    border: none !important;
    line-height: 54px;
  }
  .mean-container .mean-nav ul li a.mean-expand:hover {
    background-color: #f16543;
    color: #ffffff;
  }
  .mean-container .mean-nav ul li li a {
    width: 100%;
    padding: 15px 30px;
    border-top: none;
    border-top: 1px solid #d3dae0;
    opacity: 1;
    filter: alpha(opacity=100);
  }
  .mean-container .mean-nav ul li li li a {
    width: 100%;
    padding: 15px 60px;
  }
  .mean-container .mean-nav > ul > li > a.mean-expand {
    height: 62px !important;
    line-height: 62px;
  }
  /*-----------------------------------------------------------------------------------*/
  /*  Blog
  /*-----------------------------------------------------------------------------------*/
  .blog-article {
    margin-bottom: 35px;
  }
  .blog-article figure {
    margin-bottom: 17px;
  }
  .blog-article .post-meta {
    width: 100%;
    border-right: none;
    border-bottom: 1px solid #d7dee0;
    margin: 0 0 17px;
  }
  .blog-article .post-meta ul {
    padding: 0;
  }
  .blog-article .post-meta ul li {
    display: inline-block;
    margin: 0;
    padding: 0 15px 16px 23px;
    background-position: left 4px;
  }
  #comments .depth-2 article,
  #comments .depth-3 article,
  #comments .depth-4 article,
  #comments .depth-5 article {
    margin-left: 120px;
  }
  .post-video,
  .gallery-post-slider {
    margin-bottom: 17px;
  }
  .purchase-now {
    padding-top: 45px;
    text-align: center;
  }
  .tabs-nav li {
    padding-left: 20px;
    padding-right: 20px;
  }
  /*-----------------------------------------------------------------------------------*/
  /*  Portfolio
  /*-----------------------------------------------------------------------------------*/
  .single-project article {
    padding-left: 0;
    padding-right: 0;
  }
  /*-----------------------------------------------------------------------------------*/
  /*  FAQ
  /*-----------------------------------------------------------------------------------*/
  .faq-content,
  .faq-nav {
    width: 100%;
  }
  .faq-nav {
    border-bottom: 1px solid #e4e7e8;
    margin-bottom: 30px;
  }
  .faq-nav li {
    display: inline-block;
    border-bottom: none;
  }
  .faq-nav li div {
    padding: 5px 10px;
    margin: 2px 3px;
  }
  .faq-nav li div span {
    display: none;
    background: none;
  }
  /*-----------------------------------------------------------------------------------*/
  /*  About Page
  /*-----------------------------------------------------------------------------------*/
  .team {
    padding: 10px 0;
    text-align: center;
  }
  .team h5 {
    margin-bottom: 0;
  }
  .team .team-member {
    padding-top: 10px;
  }
  .team .team-member img {
    margin-bottom: 15px;
  }
  .team .team-member figcaption {
    padding: 10px;
  }
  /*-----------------------------------------------------------------------------------*/
  /*  Contact Page
  /*-----------------------------------------------------------------------------------*/
  #map_canvas {
    height: 320px;
  }
  .contacts-list {
    margin-right: 0;
  }
  /*-----------------------------------------------------------------------------------*/
  /* pricing table
  /*-----------------------------------------------------------------------------------*/
  .price-plan .plan-price {
    margin-bottom: 0;
  }
  .price-plan .plan-features {
    margin: 0;
  }
  /*-----------------------------------------------------------------------------------*/
  /*  Footer
  /*-----------------------------------------------------------------------------------*/
  .footer {
    padding-top: 45px;
  }
  .footer .title {
    margin-bottom: 20px;
  }
  .footer .widget {
    margin-bottom: 40px;
  }
  .copyright {
    margin-top: 30px;
    padding-bottom: 5px;
    text-align: center;
  }
  .copyright .credit {
    text-align: center;
  }
}
@media (max-width: 767px) {
  /*-----------------------------------------------------------------------------------*/
  /*  Header
  /*-----------------------------------------------------------------------------------*/
  .header-wrapper .contact-card .phone-number,
  .header-wrapper .contact-card .email {
    display: inline-block;
  }
  .header-wrapper.variant-two .contact-card {
    text-align: center;
    float: none;
    width: auto;
    margin: 0;
    overflow: hidden;
    border-bottom: 1px solid #43494d;
  }
  .header-wrapper.variant-two .contact-card .contact-options {
    float: none;
  }
  .header-wrapper.variant-two #logo {
    height: auto !important;
  }
  .header-wrapper.variant-two #logo #logo-image {
    height: 61px;
  }
  .header-wrapper.variant-two .social_networks {
    float: none !important;
    display: inline-block !important;
    margin-right: 0 !important;
  }
  .header-wrapper.variant-two .custom-col-contact {
    border-top: 1px solid #43494d;
  }
  .header-wrapper.variant-one .custom-col-logo {
    overflow: hidden;
  }
  .header-wrapper.variant-one .custom-arrow-nav {
    color: #000000;
    float: right;
    margin-right: 52px;
    cursor: pointer;
    padding: 18px;
    position: relative;
    z-index: 999;
    font-size: 25px;
    transition: 0.5s all ease-in-out;
    visibility: hidden;
    opacity: 0;
  }
  .header-wrapper.variant-one .arrow-active {
    -webkit-animation: mymove 1s;
    /* Chrome, Safari, Opera */
    -webkit-animation-iteration-count: 3;
    /* Chrome, Safari, Opera */
    animation: mymove 1s;
    animation-iteration-count: 3;
    visibility: visible;
    opacity: 1;
  }
  @-webkit-keyframes mymove {
    from {
      top: -3px;
    }
    to {
      top: 5px;
    }
  }
  @keyframes mymove {
    from {
      top: -3px;
    }
    to {
      top: 5px;
    }
  }
  .header-wrapper.variant-one #logo {
    transition: 1.5s all ease-in-out;
    float: none;
    position: relative;
    left: 50%;
    margin-left: -61px;
    text-align: left;
  }
  .header-wrapper.variant-one .close {
    left: 5px;
    color: #43494d;
  }
  .header-wrapper.variant-one .custom-col-menu {
    border-top: 1px solid #d3dae0;
  }
  .header-wrapper.variant-three .contact-card .contact-options .phone-number {
    border-left: none;
  }
  .close {
    position: absolute;
    left: 12px;
    color: #ffffff;
    opacity: 1;
    padding: 19px !important;
  }
  .close:focus {
    outline: none;
  }
  .close:hover {
    color: #ffffff;
    opacity: .7;
  }
  .wrapper-contact-options {
    margin-left: 45px;
  }
  .variant-three .contact-card .contact-options {
    border-bottom: 1px solid #65bbd9;
    margin-bottom: -1px;
  }
  .variant-four .wrapper-contact-options {
    margin-right: 45px !important;
  }
  .variant-four .contact-card .contact-options {
    margin-left: 0;
  }
  /*-----------------------------------------------------------------------------------*/
  /*  Home FlexSlider
  /*-----------------------------------------------------------------------------------*/
  .slide-description {
    display: none;
  }
  .home-slider-4 .slide-description {
    padding: 0 25px !important;
    display: block;
  }
  .home-slider-4 .slide-description h2 {
    font-size: 36px !important;
  }
  .home-slider-4 .slide-description p {
    display: none;
  }
  .home-slider-4 .slide-description a {
    padding: 10px 30px !important;
  }
  .follow-us .flexslider .flex-direction-nav li a.flex-prev,
  .testimonial .flexslider .flex-direction-nav li a.flex-prev,
  .flexslider .flex-direction-nav a.flex-prev {
    left: 0;
  }
  .follow-us .flexslider .flex-direction-nav li a.flex-next,
  .testimonial .flexslider .flex-direction-nav li a.flex-next,
  .flexslider .flex-direction-nav a.flex-next {
    right: 0;
  }
  /*-----------------------------------------------------------------------------------*/
  /*  One Page portfolio
  /*-----------------------------------------------------------------------------------*/
  .our-team.variant-three .team-member .member-info {
    text-align: center;
  }
  .our-team.variant-three .team-member p {
    padding: 0 40px;
  }
  .welcome-section .container {
    padding-top: 0;
  }
  .welcome-section h1 {
    font-size: 28px;
    line-height: 34px;
  }
  /*-----------------------------------------------------------------------------------*/
  /* Team var-4
  /*-----------------------------------------------------------------------------------*/
  .team-box {
    padding: 0 75px;
  }
  .about-us.variant-two .container {
    padding-top: 70px;
    padding-bottom: 40px;
  }
  .about-us.variant-two figure {
    margin-bottom: 15px;
  }
  .about-us.variant-three .section-header h2.title,
  .about-us.variant-three .section-header h3 {
    font-size: 28px;
    line-height: 36px;
  }
  .innards h3 {
    margin-bottom: 17px;
  }
  .innards .icon-container {
    margin-bottom: 30px;
  }
  .our-services-list p {
    margin-bottom: 17px;
  }
  .services-items {
    margin-bottom: 30px;
  }
  .our-services.variant-three .services-list li.line {
    display: none;
  }
  .our-services.variant-three .services-list li .contents {
    padding-top: 0;
    margin-bottom: 30px;
  }
  .our-work #filter-by a {
    padding: 8px 13px;
  }
  .testimonial.variant-two i.icon-quote-end,
  .testimonial.variant-two i.icon-quote-start {
    background-size: 100%;
  }
  .follow-us .flexslider li .container,
  .testimonial .flexslider li .container {
    padding-left: 70px;
    padding-right: 70px;
  }
  .contact-details-list li {
    font-size: 14px;
    width: 150px;
  }
  .contact-details.variant-three .contact-details-list li {
    float: none;
  }
  .contact-details.variant-three .contact-details-list li.fax {
    border: none;
  }
  .contact-us .contact-form {
    margin-left: 0;
    margin-right: 0;
  }
  .header-wrapper.variant-four .custom-col-contact {
    border-top: 1px solid #d3dae0;
  }
  .header-wrapper.variant-four .social_networks {
    display: inline-block;
    margin-right: 0;
    float: none;
  }
  .header-wrapper.variant-four .contact-card {
    text-align: center;
  }
  .header-wrapper.variant-four .contact-card .contact-options {
    margin-left: 25px;
    float: none;
  }
  .header-wrapper.variant-four .close {
    color: #929a9b;
    left: 12px;
  }
  .header-wrapper.variant-four .logo-wrapper > #logo {
    height: 61px;
    clear: both;
  }
  .contact-details.variant-four {
    background-size: cover;
  }
  .contact-details.variant-four .contact-details-list li i {
    float: none;
  }
  .contact-details.variant-four .contact-details-list li span {
    float: none;
    font-size: 24px;
  }
  /*-----------------------------------------------------------------------------------*/
  /* contact us
  /*-----------------------------------------------------------------------------------*/
  .contacts-list li .inner-contact {
    margin-bottom: 50px;
  }
  /*-----------------------------------------------------------------------------------*/
  /* font list
  /*-----------------------------------------------------------------------------------*/
  .font-list li:last-child {
    border-bottom: 1px solid #DCE3E9;
  }
  /*-----------------------------------------------------------------------------------*/
  /* follow us slider home 4
  /*-----------------------------------------------------------------------------------*/
  .follow-us.variant-four .flexslider .flex-viewport ul li .custom-container-follow {
    max-width: 450px;
  }
  .follow-us.variant-four .flexslider .flex-viewport ul li .custom-container-follow p {
    font-size: 23px;
  }
  /*-----------------------------------------------------------------------------------*/
  /* tables
  /*-----------------------------------------------------------------------------------*/
  .pinned {
    border-right: none !important;
  }
  /*-----------------------------------------------------------------------------------*/
  /* elements
  /*-----------------------------------------------------------------------------------*/
  .wrapper-buttons {
    text-align: center;
  }
}
@media (max-width: 499px) {
  /*-----------------------------------------------------------------------------------*/
  /*  One Page portfolio
  /*-----------------------------------------------------------------------------------*/
  .standout {
    text-align: center;
  }
  .standout h4 {
    margin-bottom: 10px;
  }
  .standout .theme-btn {
    margin-top: 0;
  }
  .our-services-list .container {
    padding-top: 30px;
  }
  #comments .depth-2 article,
  #comments .depth-3 article,
  #comments .depth-4 article,
  #comments .depth-5 article {
    margin-left: 0;
  }
  #contact-form .container-left,
  #contact-form .container-right {
    float: none;
    width: auto;
  }
  .contacts-list li {
    display: block;
    width: 240px;
    margin: 0 auto 50px;
  }
  .related-projects {
    display: none;
  }
  /*-----------------------------------------------------------------------------------*/
  /* Team var-4
  /*-----------------------------------------------------------------------------------*/
  .team-box {
    padding: 0 20px;
  }
  .variant-three .contact-card .social_networks li a {
    width: 38px !important;
  }
  .variant-three .contact-card .social_networks li:first-child a {
    border-left: 1px solid #65bbd9;
  }
  /*-----------------------------------------------------------------------------------*/
  /* follow us slider home 4
  /*-----------------------------------------------------------------------------------*/
  .follow-us.variant-four .flexslider .flex-viewport ul li .custom-container-follow {
    max-width: 235px;
  }
}
@media (max-width: 479px) {
  /*-----------------------------------------------------------------------------------*/
  /*  Header
  /*-----------------------------------------------------------------------------------*/
  .contact-card {
    margin: 0 -15px;
    float: none;
    text-align: center;
  }
  .contact-card .social_networks {
    float: none;
  }
  .contact-card .social_networks li:first-child a {
    border-left: none;
  }
  .header-wrapper.variant-three .contact-card {
    border-bottom: 1px solid #d3dae0;
  }
  .wrapper-contact-options {
    margin: 0 45px;
  }
  .logo-wrapper > #logo {
    display: block;
    height: auto;
  }
  .variant-one #logo {
    height: 60px;
  }
  .header-wrapper.variant-two #logo {
    padding: 0;
  }
  .header-wrapper.variant-two .mean-container a.meanmenu-reveal {
    padding: 20px 14px;
  }
  .header-wrapper.variant-three .contact-card {
    margin: 0;
    border: none;
  }
  .our-work,
  .testimonial,
  .flexslider {
    display: block;
  }
  .flexslider .flex-direction-nav a {
    background: none;
    border: none;
  }
  .flexslider .flex-direction-nav a:hover {
    background: none;
  }
  /*-----------------------------------------------------------------------------------*/
  /*  One Page portfolio
  /*-----------------------------------------------------------------------------------*/
  .section .section-header h2.title {
    font-size: 32px;
    line-height: 48px;
  }
  .section-header .separator .line {
    width: 100px;
  }
  .features .container,
  .about-us .container,
  .our-team .container,
  .our-blog .container,
  .our-services-list .container,
  .our-services .container,
  .contact-us .container {
    padding-top: 80px;
    padding-bottom: 60px;
  }
  .our-services.variant-two .list-large-arrow-bullet ul.pull-left,
  .our-services.variant-two .list-large-arrow-bullet ul.pull-right {
    width: 100%;
  }
  .features.variant-two .standout {
    text-align: center;
  }
  .contact-details-list {
    border: none;
  }
  .contact-details-list li {
    float: none;
    border: none;
    padding: 5px 0 15px;
    width: 200px;
  }
  .contact-details-list li i {
    height: 26px;
    margin-bottom: 0;
  }
  .contact-details-list li .icon-telephone,
  .contact-details-list li .icon-fax,
  .contact-details-list li .icon-mail {
    background-size: 24px;
  }
  .contact-details .section-header {
    margin-bottom: 83px;
  }
  .contact-us .status-wrapper,
  .contact-us .submit-and-loader {
    float: none;
    text-align: center;
  }
  .contact-us .contact-form #name {
    margin-bottom: 28px;
  }
  .contact-us .contact-form #email,
  .contact-us .contact-form #name {
    width: 100%;
  }
  .contact-us .contact-form #submit {
    float: none;
    margin-top: 20px;
  }
  .contact-us .contact-form #contact-loader {
    margin: 20px auto;
  }
  .tabs-nav li {
    float: none;
    margin-bottom: 2px;
  }
  .author-bio {
    text-align: center;
    padding-top: 30px;
    padding-bottom: 30px;
  }
  .author-bio .gravatar {
    float: none;
    padding: 0;
    display: inline-block;
  }
  .author-bio .gravatar .avatar {
    margin-bottom: 15px;
  }
  #comments .avatar {
    width: 60px;
    height: 60px;
  }
  #comments .author-photo {
    padding: 0;
    width: auto;
  }
  #comments .comment {
    padding: 15px 0;
  }
  #comments .comment-wrapper {
    padding: 0 10px;
  }
  #contact-form #message-sent,
  #contact-form .error-container {
    text-align: center;
    position: static;
  }
  #contact-form #message-sent label,
  #contact-form .error-container label,
  #contact-form p.text-right {
    text-align: center;
  }
  .service-icon {
    margin: 0 0 30px;
  }
  .services-items-wrapper article .content-wrapper {
    padding: 20px;
  }
  .service-icon,
  .services-items-wrapper article .content-wrapper,
  .services-items-wrapper .icon-container {
    float: none;
    width: auto;
  }
}

.modal {
z-index: 9999999999999999999999999;
}

.modal-dialog {
width: 90%;
max-width: 1024px;
}

.modal-header {
border-bottom: 0;
}

.modal-header .close {
opacity: .8;
}

.modal-header .close span {
color: #f16543 !important;
font-size: 50px !important;
font-weight: bold;
margin-top: -14px;
float: right;
}

.ajax-blog {

}

.ajax-blog header {
margin-bottom: 10px;
}

.ajax-blog h2 {
margin: 10px 0 0 0;
padding: 0;
text-align: center;
font-size: 44px;
font-family: "Open Sans",sans-serif;
}

.ajax-blog h3 {
margin: 10px 0 0 0;
padding: 0;
text-align: center;
font-weight: normal;
font-size: 16px;
color: #a1a9b0;
font-family: "Open Sans",sans-serif;
font-style: italic;
}

.ajax-blog .separator {
margin: 8px 0 0 0;
text-align: center;
}
.ajax-blog .separator span {
display: inline-block;
vertical-align: middle;
}
.ajax-blog .separator .line {
width: 47%;
height: 1px;
background-color: #ced7de;
}
.ajax-blog .separator .square {
background-color: #f16543;
width: 7px;
height: 7px;
margin: 0 14px;
}

.share {
padding-top: 10px;
padding-bottom: 10px;
margin: auto auto auto auto;
border-top: 1px solid rgba(0,0,0,.15);
width: 98%;
}

.clear {
clear: both;
}

.share span {
display: block;
text-align: center;
text-transform: uppercase;
}

.share .icons {
margin: 6px auto auto auto;
width: 90%;
max-width: 200px;
}

.share .icons a {
display: block;
margin-right: 2%;
width: 23%;
float: left;
}

.share .icons a img {
width: 100%;
}

.ajax-blog .content {
width: 98%;
margin: auto;
}

.ajax-blog .content img {
max-width: 100%;
}

.modal-loading {
height: 50px;
width: 100%;
background: url("../images/ajax-loader.gif") no-repeat center center;
}

.alignleft {
float: left;
margin: 10px 10px 10px 0;
}

.aligncenter {
display: block;
margin: 10px auto;
}

.alignright {
float: right;
margin: 10px 0 10px 10px;
}

.fields {

}

.the-field {
width: 100%;
}

.the-field-left {
float: left;
width: 49%;
}

.the-field-right {
float: right;
width: 49%;
}

.the-field input,
.the-field-left input,
.the-field-right input {
width: 100%;
}

.wpcf7-form-control-wrap,
.wpcf7-form-control {
width: 100% !important;
}

.contact-form textarea {
height: 70px;
}

span.wpcf7-not-valid-tip {
font-size: 9px !important;
line-height: 14px;
margin: -12px 0 0;
padding: 0;
}

div.wpcf7-response-output {
margin: -22px 0 0 0 !important;
padding: 5px !important;
line-height: 16px;
}

.modal .wpcf7-not-valid-tip {
font-size: 11px !important;
line-height: 14px;
margin: 8px 0 0;
padding: 0;
}

.modal .wpcf7-response-output {
margin: 0 0 20px 0 !important;
padding: 12px !important;
line-height: 16px;
text-align: center;
}