/********************************************************************/
/*                   Author: Elysitek LLC                           */
/*                 Copyright 2023 Creative Commons                  */
/*             Attribution-NonCommercial-NoDerivatives              */
/*                     4.0 International License.                   */
/********************************************************************/
/********************************************************************/
/*                   Author: Elysitek LLC                           */
/*                 Copyright 2023 Creative Commons                  */
/*             Attribution-NonCommercial-NoDerivatives              */
/*                     4.0 International License.                   */
/********************************************************************/
.animate__delay-half-s {
  animation-delay: 0.5s;
  -webkit-animation-delay: 0.5s;
}

.color-scheme-bright {
  color: #66fcf1;
}

.color-scheme-dark {
  color: #45a29e;
}

.card-back.restaurant-template,
.card-front.restaurant-template {
  background-image: url("../img/service-tile.png");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.card-back.services-template,
.card-front.services-template {
  background-image: url("../img/restaurant-tile.png");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.card-back-text {
  display: "Montserrat", sans-serif;
  font-size: 24pt;
  height: 100%;
  display: flex;
  justify-content: center;
  align-content: center;
  flex-direction: column;
  color: #fff;
  z-index: 1000;
}

.card-back-text > a,
.card-back-text > a > span {
  color: #fff;
  text-decoration-color: #45a29e;
  transition: all 0.2s linear;
}

.card-back-text > a:hover {
  color: #66fcf1;
  text-decoration-color: #66fcf1;
}

#examples {
  background-color: #c5c6c7;
  padding: 100px 0px;
}

.examples-separator {
  background-color: #66fcf1;
  height: 5px !important;
  width: 50%;
  text-align: center;
  margin: 0px auto;
}

.tint-overlay {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  border-radius: 15px;
  background-color: rgba(0, 0, 0, 0.8);
  z-index: -1;
}

/** Card Flip CSS **/
.wrapper,
.card-front,
.card-back {
  width: 500px;
  height: 500px;
  border-radius: 15px;
  transition: all 0.2s linear;
}

.wrapper {
  perspective: 1000;
  margin: 0px auto;
}

/* Flip the pane when hovered */
.wrapper:hover .flipper,
.flip-container.hover .flipper {
  transform: rotateY(180deg);
}

/* Flip speed and styling. */
.flipper {
  position: relative;
  transition: 0.8s;
  transform-style: preserve-3d;
}

/* Hide back of pane during swap */
.card-front,
.card-back {
  position: absolute;
  top: 0;
  left: 0;
  padding: 20px;
  backface-visibility: hidden;
  text-align: center;
  box-sizing: border-box;
}

/* Front pane, placed above back */
.card-front {
  z-index: 2;
  background: #fff;
}

/* back, initially hidden pane */
.card-back {
  transform: rotateY(180deg);
  background: #6cdba6;
  color: #fff;
}

/* Extra small devices (phones, 600px and down) */
@media only screen and (max-width: 600px) {
  .wrapper,
  .card-front,
  .card-back {
    height: 250px;
    width: 250px;
  }
  .examples-wrapper {
    margin: 0 40px;
  }
}
/* Small devices (portrait tablets and large phones, 600px and up) */
@media only screen and (min-width: 600px) {
  .wrapper,
  .card-front,
  .card-back {
    height: 350px;
    width: 350px;
  }
  .examples-wrapper {
    margin: 0 40px;
  }
}
/* Medium devices (landscape tablets, 768px and up) */
@media only screen and (min-width: 768px) {
  .wrapper,
  .card-front,
  .card-back {
    height: 500px;
    width: 500px;
  }
  .examples-wrapper {
    margin: 0 40px;
  }
}
/* Large devices (laptops/desktops, 992px and up) */
@media only screen and (min-width: 992px) {
  .wrapper,
  .card-front,
  .card-back {
    height: 500px;
    width: 500px;
  }
  .examples-wrapper {
    margin: 0 40px;
  }
}
/* Extra large devices (large laptops and desktops, 1200px and up) */
@media only screen and (min-width: 1200px) {
  .examples-wrapper {
    margin: 0 80px;
  }
}
/* Extra large devices (large laptops and desktops, 1200px and up) */
@media only screen and (min-width: 1650px) {
  .examples-wrapper {
    margin: 0 300px;
  }
}

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