body {
  font-family: "Zek Kaku Gothic Antique", sans-serif;
  color: #333;
  overflow-x: hidden;
}

h1,
h2,
h3 {
  font-family: "PT Sans Narrow", sans-serif;
}

.btn-primary,
.btn {
  /* background-color: #b6b768; */
  background-color: #d4e6cb;
  border-radius: 0;
  padding: 10px 25px;
  /* border: 1px solid #b6b768; */
  border: 1px solid #d4e6cb;
  font-family: "Zen Kaku Gothi Antique", sans-serif;
  font-weight: bold;
  color: #363636;
}




.btn-primary:hover,
.btn:hover {
  background-color: #fff;
  color: #363636;
  border: 1px solid #fff;
}

.grey-btn {
  background-color: #636363;
  color: #fff;
  border: 5px solid transparent;
  padding: 10px 25px;
  transition: all 0.2s ease-out;
}

.grey-btn:hover {
  background-color: #b1b1b1;
  border: 5px solid transparent;
  transition: all 0.2s ease-out;
}

.overlay {
  height: 100%;
  width: 100%;
  background: rgba(0, 0, 0, 0.8);
}

/**
 * Tooltip Styles
 */

/* Add this attribute to the element that needs a tooltip */
[data-tooltip] {
  position: relative;
  z-index: 2;
  cursor: pointer;
}

/* Hide the tooltip content by default */
[data-tooltip]:before,
[data-tooltip]:after {
  visibility: hidden;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
  filter: progid: DXImageTransform.Microsoft.Alpha(Opacity=0);
  opacity: 0;
  pointer-events: none;
}

/* Position tooltip above the element */
[data-tooltip]:before {
  position: absolute;
  bottom: -35px;
  left: 50%;
  margin-bottom: 5px;
  margin-left: -80px;
  padding: 7px;
  width: 160px;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  border-radius: 3px;
  background-color: transparent;
  color: #fff;
  content: attr(data-tooltip);
  text-align: center;
  font-size: 14px;
  line-height: 1.2;
}

/* Triangle hack to make tooltip look like a speech bubble */
[data-tooltip]:after {
  position: absolute;
  bottom: -0;
  left: 50%;
  margin-left: -5px;
  width: 0;
  border-top: 5px solid #666;
  border-right: 5px solid transparent;
  border-left: 5px solid transparent;
  content: " ";
  font-size: 0;
  line-height: 0;
  transform: rotate(180deg);
}

/* Show tooltip content on hover */
[data-tooltip]:hover:before,
[data-tooltip]:hover:after {
  visibility: visible;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
  filter: progid: DXImageTransform.Microsoft.Alpha(Opacity=100);
  opacity: 1;
}

.side-nav i {
  transition: 0.2s color ease-in-out;
}

.side-nav i:hover {
  /* color: #b6b768; */
  color: #d4e6cb;
}

/* Search Overlay */

.mk-fullscreen-search-overlay
  #mk-fullscreen-search-wrapper
  #mk-fullscreen-searchform
  input[type="submit"] {
  position: absolute;
  width: 100px;
  height: 100%;
  background-color: transparent;
  border: 0;
  right: 0;
  top: 0;
}
#mk-fullscreen-searchform:focus {
  outline: none;
  border: none;
}

.mk-fullscreen-search-overlay
  #mk-fullscreen-search-wrapper
  #mk-fullscreen-searchform
  .fullscreen-search-icon {
  font-size: 25px;
  position: absolute;
  right: 15px;
  width: 25px;
  top: -20px;
  color: #fff;
  color: rgba(255, 255, 255, 0.2);
  -webkit-transition: all 0.2s ease-out;
  -moz-transition: all 0.2s ease-out;
  -ms-transition: all 0.2s ease-out;
  -o-transition: all 0.2s ease-out;
  transition: all 0.2s ease-out;
}
.fullscreen-search-icon:hover,
.fullscreen-search-icon:focus {
  border: none;
  outline: none;
  color: #fff !important;
  -webkit-transition: transform ease-out 0.2s;
  -moz-transition: transform ease-out 0.2s;
  -ms-transition: transform ease-out 0.2s;
  -o-transition: transform ease-out 0.2s;
  transition: transform ease-out 0.2s;
  transform: rotate(0deg);
}

#mk-fullscreen-searchform {
  position: relative;
  verticle-align: middle;
}

.mk-fullscreen-search-overlay
  #mk-fullscreen-search-wrapper
  #mk-fullscreen-searchform
  #mk-fullscreen-search-input {
  width: 800px;
  background-color: transparent;
  -webkit-box-shadow: 0 3px 0 0 rgba(255, 255, 255, 0.1);
  -moz-box-shadow: 0 3px 0 0 rgba(255, 255, 255, 0.1);
  box-shadow: 0 3px 0 0 rgba(255, 255, 255, 0.1);
  border: 0;
  text-align: center;
  font-size: 35px;
  padding: 20px;
  color: #fff;
  -webkit-transition: all 0.3s ease-out;
  -moz-transition: all 0.3s ease-out;
  -ms-transition: all 0.3s ease-out;
  -o-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
}
.mk-fullscreen-search-overlay
  #mk-fullscreen-search-wrapper
  #mk-fullscreen-searchform
  #mk-fullscreen-search-input:focus {
  border: none;
  outline: none;
}

.mk-fullscreen-search-overlay.mk-fullscreen-search-overlay-show {
  visibility: visible;
  opacity: 1;
}

.mk-fullscreen-search-overlay {
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  left: 0;
  opacity: 0;
  visibility: hidden;
  background-color: rgba(0, 0, 0, 0.94);
  text-align: center;
  -webkit-transition: all ease-in-out 0.25s;
  -moz-transition: all ease-in-out 0.25s;
  -ms-transition: all ease-in-out 0.25s;
  -o-transition: all ease-in-out 0.25s;
  transition: all ease-in-out 0.25s;
}

.mk-animate-element,
.mk-effect-bg-layer,
.mk-fullscreen-search-overlay {
  -webkit-transform: translateZ(0);
  -ms-transform: translateZ(0);
  transform: translateZ(0);
}

.mk-fullscreen-search-overlay {
  z-index: 999;
}

.mk-fullscreen-search-overlay .mk-fullscreen-close:link,
.mk-fullscreen-search-overlay .mk-fullscreen-close:visited {
  color: #fff;
}

.mk-fullscreen-search-overlay .mk-fullscreen-close {
  position: absolute;
  right: 50px;
  top: 70px;
  font-size: 26px;
  -webkit-transition: transform ease-out 0.2s;
  -moz-transition: transform ease-out 0.2s;
  -ms-transition: transform ease-out 0.2s;
  -o-transition: transform ease-out 0.2s;
  transition: transform ease-out 0.2s;
  transform: rotate(0deg);
}

.mk-fullscreen-search-overlay.mk-fullscreen-search-overlay-show
  #mk-fullscreen-search-wrapper {
  opacity: 1;
  visibility: visible;
  -webkit-transform: scale(1);
  -moz-transform: scale(1);
  -ms-transform: scale(1);
  -o-transform: scale(1);
  transform: scale(1);
  ms-transform: scale(1);
}

.mk-fullscreen-search-overlay #mk-fullscreen-search-wrapper {
  display: inline-block;
  max-width: 1000px;
  vertical-align: middle;
  text-align: center;
  font-size: 18px;
  -webkit-transform: scale(0.9);
  -moz-transform: scale(0.9);
  -ms-transform: scale(0.9);
  -o-transform: scale(0.9);
  transform: scale(0.9);
  ms-transform: scale(0.9);
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all ease-in-out 0.3s;
  -moz-transition: all ease-in-out 0.3s;
  -ms-transition: all ease-in-out 0.3s;
  -o-transition: all ease-in-out 0.3s;
  transition: all ease-in-out 0.3s;
}

.mk-search-trigger {
  -webkit-transition: color 0.2s ease-in-out;
  -moz-transition: color 0.2s ease-in-out;
  -ms-transition: color 0.2s ease-in-out;
  -o-transition: color 0.2s ease-in-out;
  transition: color 0.2s ease-in-out;
}

#mk-fullscreen-search-input:focus {
  box-shadow: 0px 3px 0px 0px rgba(255, 255, 255, 0.54) !important;
}

.dark-bg {
  background-color: #000;
}

.navbar {
  /* padding:15px 0; */
  position: relative;
  z-index: 1;
  width: 100%;
  transition: all 1s linear;
  top: 0;
}
.navbar a {
  color: #fff;
  font-size: 18px;
  margin-right: 0;
  font-family: "PT Sans Narrow", sans-serif;
}
.navbar-brand{
  width:150px;
}
.navbar-brand img{
  width:100%;
}

.navbar-menu > .nav-item {
  position: relative;
  transition-duration: 0.25s;
}
.navbar-menu > .nav-item::after {
  /* background-color: #b6b768; */
  background-color: #d4e6cb;
  bottom: 0;
  height: 4px;
  left: 0;
  position: absolute;
  transition-duration: 0.25s;
  width: 100%;
}
.navbar-menu > .nav-item > .nav-link {
  cursor: pointer;
  display: inline-block;
  padding: 15px;
}
.navbar-menu.-material > .nav-item:hover::after,
.navbar-menu.-material > .nav-item.active::after {
  transform: scaleX(1);
}
.navbar-menu.-material > .nav-item::after {
  content: "";
  transform: scaleX(0);
  transform-origin: center;
}

.navbar .dropdown-menu {
  background-color: #000;
  color: #fff;
  border-radius: 0;
}

.navbar-scroll {
  transition: all 1s linear;
  position: fixed;
  left: 0;
  right: 0;
  top: 0;
  padding: 5px 0;
  z-index: 20;
}

.navbar .dropdown-menu a {
  transition: font-weight 0.2s ease-in-out;
}

.navbar .dropdown-menu a:hover {
  background-color: transparent;
  /* color: #b6b768; */
  color: #d4e6cb;
}

.navbar-scroll img {
  width: 100%;
}

.carousel-fade {
  /* border-bottom: 5px solid #b6b768; */
  border-bottom: 5px solid #d4e6cb;
}

.carousel-fade .carousel-item {
  opacity: 0;
  height: auto;
  transition-duration: 0.6s;
  transition-property: opacity;
}

.carousel .carousel-items {
  height: auto;
}
.carousel .carousel-item img {
  margin-top: 0;
}

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

.carousel-fade .active.carousel-item-left,
.carousel-fade .active.carousel-item-right {
  opacity: 0;
}

.carousel-fade .carousel-item-next,
.carousel-fade .carousel-item-prev,
.carousel-fade .carousel-item.active,
.carousel-fade .active.carousel-item-left,
.carousel-fade .active.carousel-item-prev {
  transform: translateX(0);
  transform: translate3d(0, 0, 0);
}

.carousel .carousel-item img {
  width: 100%;
}

.overlay-effect {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  opacity: 1;
  z-index: 1;
  background-color: rgba(0, 0, 0, 0.3);
  overflow: hidden;
}
.carousel-indicators li {
  border-radius: 50%;
  height: 15px;
  width: 15px;
}

@-webkit-keyframes zoom {
  from {
    -webkit-transform: scale(1, 1);
  }
  to {
    -webkit-transform: scale(1.2, 1.2);
  }
}

@keyframes zoom {
  from {
    transform: scale(1, 1);
  }
  to {
    transform: scale(1.2, 1.2);
  }
}

.carousel-inner .carousel-item > img {
  -webkit-animation: zoom 25s;
  animation: zoom 25s;
}

.slide-up {
  -webkit-animation: slide-up 1.5s cubic-bezier(0.65, 0, 0.35, 1) both;
  animation: slide-up 1.5s cubic-bezier(0.65, 0, 0.35, 1) both;
}

@-webkit-keyframes slide-up {
  0% {
    transform: translateY(100px);
    opacity: 0;
  }
  100% {
    transform: translateY(0);
    opacity: 1;
  }
}

@keyframes slide-up {
  0% {
    transform: translateY(100px);
    opacity: 0;
  }
  100% {
    transform: translateY(0);
    opacity: 1;
  }
}

p.slide-up {
  animation-delay: 0.8s;
}

a.slide-up {
  animation-delay: 1s;
}

.carousel-caption {
  bottom: 30%;
  text-transform: uppercase;
  overflow: hidden;
}
.carousel-caption h3 {
  font-size: 70px;
  font-weight: bold;
}
.carousel-caption p {
  font-size: 1em;
  font-family: "Zen Kaku Gothi Antique", sans-serif;
  font-weight: lighter;
}
.welcome-area h1 {
  font-size: 3em;
  font-weight: bolder;
}

.welcome-area p {
  font-size: 20px;
  font-weight: lighter;
  color: #666;
  font-family: "Zen Kaku Gothi Antique", sans-serif;
}

.focus-images .col-lg-4 img {
  width: 100%;
  height: 350px;
}

.focus-images .btn {
  position: absolute;
  bottom: 80px;
  left: 117px;
}

.focus-images .col-lg-4 h1 {
  color: #fff;
  position: relative;
  top: -200px;
  margin: 0 auto;
  font-size: 51px;
  text-shadow: 0 3px 4px #000;
}

.focus-images .col-lg-4 .focus-text h1 {
  translate: 0 30px;
  transition: translate 0.2s ease-in-out;
}

.focus-images .col-lg-4 .focus-text .btn {
  translate: 0 35px;
  opacity: 0;
  transition: all 0.4s ease-in-out;
}

.focus-images a:hover {
  text-decoration: none;
}

.focus-images .col-lg-4:hover .focus-text h1 {
  translate: 0 0;
}

.focus-images .col-lg-4:hover .focus-text .btn {
  translate: 0 0;
  opacity: 1;
}
/* [1] The container */
.img-hover-zoom {
  overflow: hidden; /* [1.2] Hide the overflowing of child elements */
}

/* [2] Transition property for smooth transformation of images */
.img-hover-zoom img {
  transition: transform 1s ease;
}

/* [3] Finally, transforming the image when container gets hovered */
.img-hover-zoom:hover img {
  transform: scale(1.2);
}

/* .focus-images .overlay-effect{
    width:92.5%;
    left:14px;
} */

.reveal {
  opacity: 0;
  transform: translate3d(0, 100px, 0);
  transition: opacity 0.8s, transform 0.8s;
}
.reveal_visible {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

.fade_in {
  opacity: 1;
}

.styles-section {
  padding-top: 50px;
  padding-bottom: 50px;
}

.styles-section h1 {
  text-transform: uppercase;
  font-size: 48px;
  font-weight: 600;
}

.styles-section .image-container {
  height: 250px;
  width: 250px;
  overflow: hidden;
}

.styles-section img {
  width: 100%;
  transition: opacity 0.2s ease-in-out;
  height: 238px;
  object-fit: contain;
}

.styles-section span {
  text-align: center;
}

.styles-section a {
  color: #333;
  text-align: center;
}

.styles-section .owl-carousel img {
  width: 250px;
}

.styles-section .col-xl-3:hover i {
  opacity: 1;
  transform: rotate(360deg);
}
.styles-section .col-xl-3:hover img {
  opacity: 0.5;
}
.owl-prev,
.owl-next {
  width: 15px;
  height: 100px;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  display: block !important;
  border: 0px solid black;
}
.owl-prev {
  left: -20px;
}
.owl-next {
  right: -20px;
}
.owl-prev i,
.owl-next i {
  color: #000;
}

footer i {
  /* color: #b6b768; */
  color: #d4e6cb;
}

footer {
  padding: 40px;
  background-color: #000;
  margin-top: 30px;
  padding-bottom: 5px;
}

footer .site-map a,
footer .store-hours,
footer p,
footer a,
footer h5,
footer h2,
footer span,
footer .hours-internal-container div {
  color: #fff;
}

footer .store-hours-container {
  /* border: 2px solid #b6b768; */
  padding: 30px 20px;
  padding-bottom: 0;
  position: relative;
}

.store-hours-container ul {
  margin-bottom: 0;
  text-align: right;
}

.store-hours-container .col-lg-6:nth-child(2) {
  text-align: left;
}

.store-hours-container .col-lg-6:nth-child(3) {
  text-align: center;
}

.footer-logo {
  padding-bottom: 40px;
  width: 60%;
}

.footer-container {
  margin: 25px 0;
  padding: 0 15px;
}

@media (min-width:768px) {
  .footer-container {
    margin: 25px 0;
    padding: 0 25px;
  }
}
@media (min-width:1024px) {
  .footer-container {
    margin: 25px 0;
    padding: 0 25px;
  }
}
@media (min-width:1200px) {
  .footer-container {
    margin: 25px 0;
    padding: 0 25px;
  }
}
@media (min-width:1280px) {
  .footer-container {
    margin: 25px 0;
    padding: 0 25px;
  }
}
@media (min-width:1366px) {
  .footer-container {
    margin: 25px 0;
    padding: 0 25px;
  }
}
@media (min-width:1500px) {
  .footer-container {
    margin: 25px 0;
    padding: 0 25px;
  }
}
@media (min-width:1900px) {
  .footer-container {
    margin: 25px 0;
    padding: 0 215px;
  }
}



@media (min-width:768px) {
  footer .site-map-container .site-map {
    column-count: 3;
  }
  footer .site-map-container {
    margin-top: 57px;
  }
}
@media (min-width:1024px) {
  footer .site-map-container .site-map {
    column-count: 5;
  }
  footer .site-map-container {
    margin-top: 57px;
  }
}
@media (min-width:1200px) {
  footer .site-map-container .site-map {
    column-count: 2;
  }
  footer .site-map-container {
    margin-top: 0px;
  }
}

.hours-container {
  margin-top: 50px;
}

@media (min-width:768px) {
  .hours-container {
    margin-top: 0px;
  }
}
@media (min-width:1024px) {
  .hours-container {
    margin-top: 0px;
  }
}
@media (min-width:1200px) {
  .hours-container {
    margin-top: 0px;
  }
}

footer .company-info a:hover {
  color: #fff;
}

footer h5 {
  padding-bottom: 5px;
}
footer ul li {
  list-style: none;
  line-height: 30px;
}
footer ul {
  padding-left: 0;
}
.copyright-container,
.copyright-container a {
  /* color: #636363; */
  color: #959595;
}

footer a.social-icons i {
  color: #000;
  font-size: 20px;
  position: relative;
  left: -24px;
  bottom: 7px;
}

footer a.social-icons .fa-facebook-f {
  left: -21px;
}

footer a.social-icons:before {
  /* background-color: #b6b768; */
  background-color: #d4e6cb;
  border-radius: 50%;
  height: 30px;
  width: 30px;
  display: inline-block;
  content: "";
  z-index: 0;
}

@media only screen and (min-width: 320px) and (max-width: 575px) {
  .navbar {
    position: relative;
    width: 100%;
    z-index: 1;
    padding: 5px 10px;
  }
  .fa-bars {
    color: #fff;
    font-size: 1.5em;
  }
  .carousel .carousel-item img {
    width: 100%;
    height: 350px;
    box-shadow: 0 0 15px #333;
  }
  .carousel .carousel-item {
    height: 350px;
  }
  .carousel-caption,
  .carousel-caption .btn {
    font-size: 16px;
  }

  .carousel-caption h3 {
    font-size: 25px;
  }

  .carousel-caption {
    bottom: 20%;
  }
  .navbar-menu > .nav-item::after {
    display: none;
  }

  .navbar .nav-item.active a {
    color: #fff;
  }
  .welcome-area {
    padding: 10px 2em;
  }
  .welcome-area p {
    font-size: 16px;
  }
  .focus-images .white-border {
    width: 285px;
  }
  .focus-images .col-sm-12 {
    margin-bottom: 15px;
  }
  .focus-images .col-lg-4 h1 {
    font-size: 46px;
  }
  .focus-images .overlay-effect {
    width: 91.5%;
  }
  footer {
    padding: 15px 5px;
  }
  footer .store-hour-container .col-sm-6 {
    width: 50%;
  }
}

@media only screen and (min-width: 576px) {
  .carousel .carousel-item {
    height: 450px;
  }
}

@media only screen and (min-width: 1020px) {
  .carousel .carousel-item {
    height: auto;
  }
  .carousel .carousel-item img {
    padding-top: 0;
  }
  .navbar .navbar-nav .active,
  .navbar .navbar-nav .active a {
    background-color: transparent;
    color: #fff;
  }
}

.owl-carousel .owl-dots.disabled,
.owl-carousel .owl-nav.disabled{
  display:block!important;
}