ol, ul, li,
table, caption, tbody, tfoot, thead, tr, th, td{
  margin: 0;
  padding: 0;
  border: 0;
  font: inherit;
  vertical-align: top;
}

ol, ul {
  list-style: none;
}

blockquote:before, blockquote:after,
q:before, q:after {
  content: '';
}


*,
*:before,
*:after {
  box-sizing: border-box;
}

a,
a[href^="tel:"],
a[href^="callto:"] {
  font: inherit;
  color: inherit;
  text-decoration: none;
}

a:focus,
a[href^="tel:"]:focus,
a[href^="callto:"]:focus {
  outline: none;
}

img {
  max-width: 100%;
  height: auto;
  border-radius:10px;
}

a, button, input {
  transition: .3s all ease;
}

/*
* Global styles
// ================================= */
body::-webkit-scrollbar-track {
  box-shadow: none;
  background-color: #de8c0a;
}

body::-webkit-scrollbar {
  width: 6px;
  background-color: transparent;
}

body::-webkit-scrollbar-thumb {
  box-shadow: none;
  background-color: #fca00f;
}
/*
// Blog section
// ================ */
.blog-post {
}

.blog-post:hover .post-image:after {
  height: 100%;
}

.blog-post .post-image {
  position: relative;
  z-index: 1;
}

.blog-post .post-image:after {
  content: '';
  position: absolute;
  height: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.2);
  background: -webkit-linear-gradient(bottom, rgba(0, 0, 0, 0.4) 0%, transparent 100%);
  background: -moz-linear-gradient(bottom, rgba(0, 0, 0, 0.4) 0%, transparent 100%);
  background: -o-linear-gradient(bottom, rgba(0, 0, 0, 0.4) 0%, transparent 100%);
  background: linear-gradient(bottom, rgba(0, 0, 0, 0.4) 0%, transparent 100%);
  -webkit-transition: all .2s ease;
  transition: all .2s ease;
}

.blog-post .more-link {
  text-transform: uppercase;
  font-size: 14px;
  font-weight: 500;
  margin-top: 3px;
}

.blog-post .post-text {
  padding: 20px;
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
}

@media (min-width: 768px) {
  .blog-post .post-text {
    padding: 20px 20px;
  }
}

.blog-post .post-text .post-data {
  margin-top: 10px;
}

.blog-post .post-text .post-data > * {
  display: inline-block;
  vertical-align: middle;
}

.blog-post .post-text .post-data > * + *:not(.more-link) {
  margin-left: 10px;
  margin-top: 0;
}

.blog-post .post-text .post-data > * .icon, .blog-post .post-text .post-data > * span {
  display: inline-block;
  vertical-align: middle;
  font-size: 13px;
}

.blog-post .post-text .post-data > * .icon {
  color: #fca00f;
  font-size: 18px;
}

.blog-post .post-text .post-data > * .icon + span {
  font-family: "Lato", sans-serif;
  margin-left: 5px;
}


/* 
 * 	Owl Carousel - Auto Height Plugin
 */
.owl-height {
  -webkit-transition: height 500ms ease-in-out;
  -moz-transition: height 500ms ease-in-out;
  -ms-transition: height 500ms ease-in-out;
  -o-transition: height 500ms ease-in-out;
  transition: height 500ms ease-in-out;
}

/* 
 *  Core Owl Carousel CSS File
 */
.owl-carousel {
  display: none;
  width: 100%;
  -webkit-tap-highlight-color: transparent;
  /* position relative and z-index fix webkit rendering fonts issue */
  position: relative;
  z-index: 1;
}

.owl-carousel .owl-stage {
  position: relative;
  -ms-touch-action: pan-Y;
}

.owl-carousel .owl-stage:after {
  content: ".";
  display: block;
  clear: both;
  visibility: hidden;
  line-height: 0;
  height: 0;
}

.owl-carousel .owl-stage-outer {
  position: relative;
  overflow: hidden;
  /* fix for flashing background */
  -webkit-transform: translate3d(0px, 0px, 0px);
}

.owl-carousel .owl-controls .owl-nav .owl-prev,
.owl-carousel .owl-controls .owl-nav .owl-next {
  cursor: pointer;
  cursor: hand;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  width: 30px;
  height: 30px;
  display: inline-block;
  margin: 0 5px;
}

.owl-carousel.owl-loaded {
  display: block;
}

.owl-carousel.owl-loading {
  opacity: 0;
  display: block;
}

.owl-carousel.owl-hidden {
  opacity: 0;
}

.owl-carousel .owl-refresh .owl-item {
  display: none;
}

.owl-carousel .owl-item {
  position: relative;
  min-height: 1px;
  will-change: transform;
  float: left;
  -webkit-backface-visibility: hidden;
}

/*
 * Owl Navigation
 */
.owl-controls {
  width: 100%;
  position: absolute;
  bottom: -45px;
}

.owl-nav {
  text-align: center;
  -webkit-tap-highlight-color: transparent;
}

.owl-nav [class*='owl-'] {
  padding: 4px;
  color: #fff;
  position: absolute;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  font: 47px/50px "FontAwesome";
  transition: all .4s ease;
}

.owl-prev {
  left: 0;
  top: 0;
}

.owl-prev:before {
  content: '\f104';
  font-family: "FontAwesome";
  font-size: 30px;
  line-height: 1;
  color: #fff;
  position: absolute;
  top: 0;
}

.owl-next {
  right: 0;
  top: 0;
}

.owl-next:before {
  content: '\f105';
  font-family: "FontAwesome";
  font-size: 30px;
  line-height: 1;
  color: #fff;
  position: absolute;
  top: 0;
}

/* Owl dots */
.owl-dots {
  text-align: center;
}

.owl-controls .owl-dot {
  display: inline-block;
  text-align: center;
  position: relative;
  width: 14px;
  height: 14px;
  outline: none;
  cursor: pointer;
  border: 2px solid #fff;
  border-radius: 50%;
  background-color: transparent;
  transition: 0.3s ease;
}

.owl-controls .owl-dot.active {
  background: #fff;
}

.owl-controls .owl-dot + .owl-dot {
  margin-left: 12px;
}

.slider-1 {
  margin-bottom: 20px;
}

.slider-1 .owl-item {
  margin-top: 35px;
}


.slider-2 .owl-controls .owl-dot, .slider-3 .owl-controls .owl-dot {
  border-color: #fca00f;
}

.slider-2 .owl-controls .owl-dot.active, .slider-3 .owl-controls .owl-dot.active {
  background: #fca00f;
}

.slider-3 .owl-controls {
  bottom: -65px;
}

@media (min-width: 768px) {
  .slider-3 .owl-controls {
    bottom: -45px;
  }
}

.slider-3 .owl-stage-outer {
  padding-top: 10px;
}

.slider-main .owl-controls {
  bottom: 50%;
}

.slider-main .owl-controls .owl-prev {
  left: -30px;
  opacity: 0;
}

.slider-main .owl-controls .owl-next {
  right: -30px;
  opacity: 0;
}

.slider-main:hover .owl-controls .owl-prev {
  left: 0;
  opacity: 1;
}

.slider-main:hover .owl-controls .owl-next {
  right: 0;
  opacity: 1;
}

/* ToTop
// ====================*/
.toTopButton {
  position: fixed;
  right: 20px;
  bottom: 20px;
  width: 50px;
  height: 50px;
  font-size: 26px;
  line-height: 46px;
  text-align: center;
  color: #FFF;
  background: #fca00f;
  border-radius: 50%;
  overflow: hidden;
  text-decoration: none;
  visibility: hidden;
  z-index: 1200;
  transition: 0.4s all ease;
  transform: scale(1.5);
  opacity: 0;
}

.toTopButton:before {
  font-family: FontAwesome;
  content: '\f106';
}

.toTopButton:hover, .toTopButton:focus {
  color: #FFF;
  -webkit-transform: scale(1.1);
  transform: scale(1.1);
  text-decoration: none;
}

.toTopButton--active {
  visibility: visible;
  opacity: 1;
  transform: scale(1);
}

@media (min-width: 768px) {
  .toTopButton {
    right: 34px;
    bottom: 34px;
  }
}

