/*----------------------------------------------------
@File: Default Styles

This file contains the styling for the actual template, this
is the file you need to edit to change the look of the
template.
---------------------------------------------------- */
/*=====================================================================
@Template Name: Spider Elements

@Default Styles
Table of Content:
01/ Hotspot
02/ Box_hover
03/ Image_hover
04/ Flip_box
05/ Image_slides
06/ Feature_box


=====================================================================*/
.hotspot_list .hotspot {
  position: absolute;
  top: 0;
  left: 0;
  width: 100px;
  height: 100px;
  outline: none;
  border-radius: 50%;
  background-color: #fff;
  border: 0px solid #7a7a7a;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.51);
  color: #e2498a;
  text-align: center;
  overflow: hidden;
}
.hotspot_list .hotspot img {
  height: 100%;
  width: 100%;
}
.hotspot_list.no .hotspot {
  transform: scale(1);
}
.hotspot_list.yes .hotspot {
  transform: scale(0);
  animation-duration: 20s;
  animation-segments: 5;
  --size: 30rem;
  transition: all 0.3s ease-in-out;
}
.hotspot_list.yes .hotspot.active {
  animation-name: scale;
  animation-duration: 20s;
  animation-timing-function: ease-in-out;
  animation-iteration-count: infinite;
  animation-delay: calc(var(--animation-duration) / var(--animation-segments) * var(--animation-order));
}

@keyframes scale {
  0% {
    transform: scale(0);
    opacity: 0;
  }
  2% {
    transform: scale(1) translate(-10%, -20%);
  }
  3%, 17% {
    opacity: 1;
    transform: scale(1) translate(-10%, -20%);
  }
  18% {
    transform: scale(0);
  }
  20%, 100% {
    transform: scale(0);
    opacity: 0;
  }
}
figure.stack_image {
  display: grid;
  position: relative;
  grid-template-rows: 1fr;
  grid-template-columns: 1fr;
  overflow: hidden;
}
figure.stack_image.img-position-left {
  margin: 0 0 0 left !important;
}
figure.stack_image.img-position-center {
  margin: 0 auto !important;
}
figure.stack_image.img-position-right {
  margin: 0 auto 0 0 !important;
}
figure.stack_image img {
  grid-row: 1/span 1;
  grid-column: 1/span 1;
  animation-name: stateimage;
  animation-duration: 8s;
  animation-timing-function: linear;
  animation-iteration-count: infinite;
  animation-play-state: running;
}
figure.stack_image img:first-child {
  animation-delay: -17000ms;
}
figure.stack_image img:nth-child(2) {
  animation-delay: -15000ms;
}
figure.stack_image img:nth-child(3) {
  animation-delay: -13000ms;
}
figure.stack_image img:nth-child(4) {
  animation-delay: -11000ms;
}

@keyframes stateimage {
  0% {
    clip-path: polygon(-50% 0%, 0% 0%, -50% 101%, -100% 101%);
  }
  100% {
    clip-path: polygon(150% 0%, 200% 0%, 150% 101%, 100% 101%);
  }
}
.stack_image_container {
  height: 90vh;
  width: 100%;
  overflow: hidden;
  --total: 12;
  --offset-width: 10vw;
  --easing: cubic-bezier(.8, 0, .2, 1);
  --duration: .6s;
}
.stack_image_container .stack_image_lists {
  list-style-type: none;
  display: flex;
  height: 100%;
  overflow: hidden;
  position: relative;
}
.stack_image_container .stack_image_lists .stack_image_list {
  --tx: calc( -100% + var(--offset-width));
  width: 60vw;
  height: 100%;
  position: absolute;
  z-index: calc(var(--total) - var(--i));
  margin-left: calc(var(--i) * var(--offset-width));
  transform: translateX(var(--tx));
  transition: transform var(--duration) var(--easing);
  animation: slide-down 1s cubic-bezier(0.5, 0, 0.3, 1);
  animation-delay: calc(var(--i) * 0.15s);
  animation-fill-mode: backwards;
}
.stack_image_container .stack_image_lists .stack_image_list img {
  height: 100%;
  width: 100%;
  object-fit: cover;
}
@keyframes slide-down {
  from {
    transform: translateX(var(--tx)) translateY(-100%);
  }
  to {
    transform: translateX(var(--tx)) translateY(0);
  }
}
.stack_image_container .stack_image_lists .stack_image_list:hover {
  transform: translateX(-2vw);
}
.stack_image_container .stack_image_lists .stack_image_list:hover ~ .nav-list {
  transform: none;
}

.imgstack {
  width: 300px;
  height: 300px;
  margin: 0 auto;
  margin-top: 2%;
  overflow: hidden;
}
@media (max-width: 576px) {
  .imgstack {
    display: flex;
    justify-content: center;
  }
}
.imgstack .stack_img {
  width: 288px;
  height: 200px;
  position: absolute;
  display: block;
  border: 6px solid #f0f0f0;
  border-radius: 2px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
  transition: margin 0.5s;
  overflow: hidden;
}
@media (max-width: 767px) {
  .imgstack .stack_img {
    width: 210px;
    height: 180px;
  }
}
.imgstack .stack_img:first-of-type, .imgstack .stack_img:nth-of-type(4) {
  margin-top: -5px;
  margin-left: -20px;
  z-index: 2;
  transform: rotate(-3deg);
}
.imgstack .stack_img:nth-of-type(2) {
  margin-top: -5px;
  margin-left: -10px;
  z-index: 1;
}
.imgstack .stack_img:nth-of-type(3) {
  transform: rotate(3deg);
}
.imgstack .stack_img:last-of-type {
  transform: rotate(3deg);
}
.imgstack .stack_img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.imgstack:hover .stack_img:hover {
  margin-top: -10px !important;
}
.imgstack:hover .stack_img:first-of-type {
  margin-left: -310px;
  margin-top: 5px;
}
@media (max-width: 991px) {
  .imgstack:hover .stack_img:first-of-type {
    margin-left: -201px;
  }
}
@media (max-width: 767px) {
  .imgstack:hover .stack_img:first-of-type {
    margin-left: -110px;
  }
}
@media (max-width: 576px) {
  .imgstack:hover .stack_img:first-of-type {
    margin-left: -100px;
  }
}
.imgstack:hover .stack_img:nth-of-type(2) {
  margin-top: -5px;
}
.imgstack:hover .stack_img:nth-of-type(3) {
  margin-left: 290px;
  margin-top: 5px;
}
@media (max-width: 991px) {
  .imgstack:hover .stack_img:nth-of-type(3) {
    margin-left: 178px;
    z-index: 3;
  }
}
@media (max-width: 767px) {
  .imgstack:hover .stack_img:nth-of-type(3) {
    margin-left: 145px;
  }
}
@media (max-width: 576px) {
  .imgstack:hover .stack_img:nth-of-type(3) {
    margin-left: 93px;
  }
}
.imgstack:hover .stack_img:nth-of-type(4) {
  margin-left: -605px;
  margin-top: 15px;
}
@media (max-width: 1550px) {
  .imgstack:hover .stack_img:nth-of-type(4) {
    margin-left: -405px;
  }
}
@media (max-width: 1199px) {
  .imgstack:hover .stack_img:nth-of-type(4) {
    margin-left: -327px;
  }
}
@media (max-width: 991px) {
  .imgstack:hover .stack_img:nth-of-type(4) {
    margin-left: -220px;
  }
}
@media (max-width: 767px) {
  .imgstack:hover .stack_img:nth-of-type(4) {
    margin-left: -127px;
  }
}
.imgstack:hover .stack_img:nth-of-type(5) {
  margin-left: 590px;
  margin-top: 15px;
}
@media (max-width: 1550px) {
  .imgstack:hover .stack_img:nth-of-type(5) {
    margin-left: 400px;
  }
}
@media (max-width: 1199px) {
  .imgstack:hover .stack_img:nth-of-type(5) {
    margin-left: 301px;
  }
}
@media (max-width: 991px) {
  .imgstack:hover .stack_img:nth-of-type(5) {
    margin-left: 222px;
    z-index: 4;
  }
}
@media (max-width: 767px) {
  .imgstack:hover .stack_img:nth-of-type(5) {
    margin-left: 175px;
  }
}
@media (max-width: 576px) {
  .imgstack:hover .stack_img:nth-of-type(5) {
    margin-left: 94px;
  }
}

.stack_scroll figure:nth-child(1) img {
  transform: scale(0.6) rotate(0deg);
}

.stack_scroll figure:nth-child(2) img {
  transform: scale(0.6) rotate(2.7777777778deg);
}

.stack_scroll figure:nth-child(3) img {
  transform: scale(0.6) rotate(5.5555555556deg);
}

.stack_scroll figure:nth-child(4) img {
  transform: scale(0.6) rotate(8.3333333333deg);
}

.stack_scroll figure:nth-child(5) img {
  transform: scale(0.6) rotate(11.1111111111deg);
}

.stack_scroll figure:nth-child(6) img {
  transform: scale(0.6) rotate(13.8888888889deg);
}

.stack_scroll figure:nth-child(7) img {
  transform: scale(0.6) rotate(16.6666666667deg);
}

.stack_scroll figure:nth-child(8) img {
  transform: scale(0.6) rotate(19.4444444444deg);
}

.stack_scroll figure:nth-child(9) img {
  transform: scale(0.6) rotate(22.2222222222deg);
}

.stack_scroll figure:nth-child(10) img {
  transform: scale(0.6) rotate(25deg);
}

.stack_scroll figure {
  position: sticky;
  top: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: none;
}
.stack_scroll figure img {
  width: 100vmin;
  height: 100vmin;
  border-radius: 3px;
}

/*====== .sp_box_hover ====*/
.sp_box_hover {
  background: linear-gradient(90deg, rgb(193, 2, 145) 0%, rgb(235, 0, 255) 100%);
  display: block;
  border-radius: 10px;
  overflow: hidden;
  position: relative;
  height: 200px;
}
.sp_box_hover .box_img {
  position: absolute;
  right: 0;
  bottom: -20px;
  width: 120px;
  height: 190px;
  align-items: flex-end;
  display: flex;
  transition: all 0.3s linear;
  box-shadow: 0px 25px 10px 0px rgba(0, 0, 0, 0.1255);
}
.sp_box_hover .box_img img {
  object-fit: cover;
  height: 100%;
}
.sp_box_hover:hover {
  text-decoration: none !important;
}
.sp_box_hover:hover .box_img {
  right: -30px;
  bottom: -22px;
  z-index: 0;
  opacity: 0.45;
  box-shadow: 0px 35px 20px 0px rgba(0, 0, 0, 0.3255);
}
.sp_box_hover:hover .box_hover_content .text_top {
  transform: translateY(-100%);
  opacity: 0;
}
.sp_box_hover:hover .box_hover_content .text_two {
  transform: translateY(-100%);
  opacity: 1;
}

.box_hover_content {
  display: flex;
  height: 100%;
  flex-wrap: wrap;
  padding-right: 120px;
}
.box_hover_content h3 {
  font-size: 28px;
  font-weight: 700;
  color: #fff;
}
.box_hover_content p {
  color: #fff;
  font-size: 20px;
  margin-bottom: 0;
}
.box_hover_content .text_top {
  display: flex;
  width: 100%;
  flex: 100%;
  align-items: flex-end;
  height: 100%;
  transition: all 0.4s;
}
.box_hover_content .text_two {
  transform: translateY(100%);
  flex: 100%;
  display: flex;
  align-items: center;
  height: 100%;
  transition: all 0.4s, opacity 0.1s;
  opacity: 0;
}

.sp_image_hover {
  position: relative;
  overflow: hidden;
  margin: 10px;
  max-width: 100%;
  width: 100%;
  padding: 0px !important;
  background: #000000;
  text-align: left;
  overflow: hidden;
}
.sp_image_hover * {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

.style_one {
  color: #fff;
}
.style_one img {
  max-width: 100%;
  opacity: 1;
  width: 100%;
  -webkit-transition: opacity 0.35s;
  transition: opacity 0.35s;
}
.style_one figcaption {
  position: absolute;
  bottom: 0;
  left: 0;
  padding: 30px 3em;
  width: 100%;
  height: 100%;
  text-align: left;
}
.style_one figcaption:before {
  position: absolute;
  top: 30px;
  right: 30px;
  bottom: 30px;
  left: 100%;
  border-left: 4px solid rgba(255, 255, 255, 0.8);
  content: "";
  opacity: 0;
  background-color: rgba(255, 255, 255, 0.5);
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
  -webkit-transition-delay: 0.6s;
  transition-delay: 0.6s;
}
.style_one figcaption h3, .style_one figcaption p {
  margin: 0 0 5px;
  opacity: 0;
  transition: opacity 0.35s, -webkit-transform 0.35s, -moz-transform 0.35s;
  color: #fff;
}
.style_one figcaption h3 {
  word-spacing: -0.15em;
  font-weight: 500;
  transform: translate3d(30%, 0%, 0);
  transition-delay: 0.3s;
}
.style_one figcaption p {
  font-weight: 400;
  transform: translate3d(0%, 30%, 0);
  transition-delay: 0s;
}
.style_one figcaption a {
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  position: absolute;
  color: #ffffff;
}
.style_one:hover figcaption:before {
  background: rgba(255, 255, 255, 0);
  left: 30px;
  opacity: 1;
  transition-delay: 0s;
}
.style_one:hover img {
  opacity: 0.4;
}
.style_one:hover h3 {
  opacity: 1;
  transform: translate3d(0%, 0%, 0);
  transition-delay: 0.4s;
}
.style_one:hover p {
  opacity: 0.9;
  transform: translate3d(0%, 0%, 0);
  transition-delay: 0.6s;
}

.style_two {
  position: relative;
  overflow: hidden;
  padding: 0 !important;
}
.style_two::after {
  content: "";
  width: 0;
  height: 0;
}
.style_two:after {
  position: absolute;
  bottom: 47%;
  right: 39%;
  border-style: solid;
  border-width: 143px 120px 0 120px;
  border-color: rgba(255, 255, 255, 0.5) transparent transparent transparent;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  -webkit-transition: all 0.35s ease;
  transition: all 0.35s ease;
}
.style_two * {
  transition: all 0.35s ease;
}
.style_two figcaption {
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  z-index: 1;
  opacity: 1;
  padding: 30px 0 30px 10px;
  background-color: #ffffff;
  width: 40%;
  transform: translateX(150%);
  margin-top: 0 !important;
  text-align: right;
}
.style_two figcaption:before {
  content: "";
  width: 0;
  height: 0;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  right: 100%;
  border-style: solid;
  border-width: 137px 120px 125px 0;
  border-color: transparent #ffffff transparent transparent;
}
.style_two figcaption h3, .style_two figcaption p {
  transform: translateX(-30px);
}
.style_two figcaption h3 {
  line-height: 1.1em;
  font-weight: 900;
  font-size: 1.6em;
}
.style_two figcaption p {
  font-size: 0.9em;
  margin-bottom: 0;
}
.style_two:hover::after {
  transform: translateX(0);
  opacity: 1;
}
.style_two:hover figcaption {
  transform: translateX(0);
  opacity: 1;
}

.hover-fold {
  background: #e8c63d;
  border: 5px white solid;
  height: 310px;
  margin: 10px auto;
  -moz-perspective: 1500;
  -webkit-perspective: 1500;
  perspective: 1500;
  position: relative;
  width: 410px;
}
.hover-fold .text {
  opacity: 0;
  visibility: hidden;
  padding: 0px 40px;
}
.hover-fold h3 {
  border-bottom: 1px solid #333;
  padding-bottom: 12px;
}
.hover-fold p {
  margin-bottom: 0;
}
.hover-fold .top {
  height: 50%;
  transition: all 0.5s ease-out;
  transform: rotateX(0deg);
  transform-origin: 0 100%;
  transform-style: preserve-3d;
  position: absolute;
  top: 0px;
  width: 100%;
  z-index: 1;
  overflow: hidden;
}
.hover-fold .top .face {
  backface-visibility: hidden;
  position: absolute;
}
.hover-fold .front {
  height: 100%;
  width: 100%;
}
.hover-fold .back {
  background: #e8c63d;
  height: 100%;
  padding: 0 40px;
  transform: rotateX(180deg);
  width: 100%;
  transition: all 0.5s ease-out;
}
.hover-fold .bottom {
  height: 50%;
  position: absolute;
  top: 50%;
  width: 100%;
  z-index: 0;
  overflow: hidden;
  background-position: bottom;
}
.hover-fold:hover .text {
  opacity: 1;
  visibility: visible;
  transition: all 0.2s linear 0.25s;
  position: relative;
  z-index: 2;
}
.hover-fold:hover .top {
  transform: rotateX(-180deg);
}
.hover-fold:hover .top .back.face {
  backface-visibility: visible;
}

.item_card {
  transform: skew(-10deg);
  transition: 0.25s;
}
.item_card:before {
  content: "";
  left: 0;
  top: 0;
  height: calc(100% - 10px);
  width: calc(100% - 10px);
  border-radius: 40px;
  opacity: 0;
  border: 2px solid #ece9e6;
  position: absolute;
  z-index: -1;
  transition: 0.5s 0.05s;
}
.item_card .card {
  background-color: #373f51;
  background-blend-mode: screen;
  transition: 0.25s;
  border-radius: 40px;
  position: relative;
  overflow: hidden;
}
.item_card .card .icon {
  position: absolute;
  bottom: -1rem;
  right: 3rem;
  border-radius: 100%;
  padding: 1rem;
  font-size: 1.5rem;
  color: #373f51;
  z-index: 1;
  transform: skew(10deg) translateY(50%);
  text-align: center;
  transition: 0.25s;
  cursor: pointer;
}
.item_card:hover {
  transform: translateX(-1rem) translateY(-1rem) skew(-10deg);
}
.item_card:hover::before {
  opacity: 1;
  transform: translateY(1.5rem) translateX(1.5rem);
}
.item_card:hover .card {
  box-shadow: 0.5rem 0.5rem 1rem rgba(0, 0, 0, 0.1);
}
.item_card:hover .card .icon {
  bottom: 4rem;
  background-color: rgba(255, 255, 255, 0.8);
}

.spe_flip_box_inner {
  position: relative;
}
.spe_flip_box_inner .flip_overlay {
  visibility: hidden;
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: #000;
  opacity: 0;
  transition: all 0.8s linear 0.1s;
}
.spe_flip_box_inner .flip_button {
  position: absolute;
  background-color: rgba(255, 255, 240, 0);
  width: 100%;
  height: 100%;
  z-index: 2;
  top: 0;
  left: 0;
  margin: 0;
  opacity: 1;
  padding: 0;
  border: 0;
}
.spe_flip_box_inner .flip_button:hover {
  opacity: 0.8;
}
.spe_flip_box_inner .front_face {
  padding: 70px 40px;
  background: #fff;
  box-shadow: 4px 12px 40px 6px rgba(0, 0, 0, 0.09);
  position: relative;
  transition-duration: 0.8s;
  transition-timing-function: ease-in-out;
  backface-visibility: hidden;
  border-radius: 20px;
  display: block;
  align-items: center;
}
.spe_flip_box_inner .front_face .title-icon {
  font-size: 30px;
  margin-bottom: 15px;
}
.spe_flip_box_inner .front_face .title {
  font-size: 45px;
  line-height: 1.08349;
  font-weight: 700;
  letter-spacing: -0.003em;
  margin-bottom: 30px;
}
.spe_flip_box_inner .back_face {
  padding: 80px 60px;
  background: #fff;
  transition-property: transform;
  transition-duration: 0.8s;
  transition-timing-function: ease-in-out;
  backface-visibility: hidden;
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  transform: rotateX(-180deg);
  border-radius: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.spe_flip_box_inner .back_face_content {
  max-width: 400px;
}
.spe_flip_box_inner .back_face_content h3 {
  font-size: 32px;
  text-transform: capitalize;
  margin-bottom: 20px;
}
.spe_flip_box_inner .back_face_content p {
  font-size: 18px;
  color: rgba(0, 0, 0, 0.5019607843);
}
.spe_flip_box_inner .image-column {
  flex: 1;
}
.spe_flip_box_inner .flip_button_close, .spe_flip_box_inner .icon {
  position: absolute;
  background: #000;
  color: #fff;
  width: 38px;
  height: 38px;
  right: 22px;
  bottom: 25px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
}
.spe_flip_box_inner .flip_button_close:hover, .spe_flip_box_inner .icon:hover {
  opacity: 0.8;
}
.spe_flip_box_inner.flip .flip_overlay {
  visibility: visible;
  transition-timing-function: ease-out;
  opacity: 0.8;
  z-index: 999;
}
.spe_flip_box_inner.flip .back_face, .spe_flip_box_inner.flip .front_face {
  z-index: 9999;
}
.spe_flip_box_inner.vertical .front_face {
  transform: rotateX(0deg);
}
.spe_flip_box_inner.vertical .back_face {
  transform: rotateX(180deg);
}
.spe_flip_box_inner.vertical.flip .front_face {
  transform: rotateX(180deg);
}
.spe_flip_box_inner.vertical.flip .back_face {
  transform: rotateX(0deg);
  visibility: visible;
}
.spe_flip_box_inner.horizontal .front_face {
  transform: rotateY(0deg);
}
.spe_flip_box_inner.horizontal .back_face {
  transform: rotateY(180deg);
}
.spe_flip_box_inner.horizontal.flip .front_face {
  transform: rotateY(180deg);
}
.spe_flip_box_inner.horizontal.flip .back_face {
  transform: rotateY(0deg);
  visibility: visible;
}

.spe_slider_inner {
  margin-bottom: 0 !important;
}
.spe_slider_inner .spe_slider_item {
  position: relative;
}
.spe_slider_inner .spe_slider_content {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  z-index: 1;
  background-image: linear-gradient(rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.9) 90%);
  padding-left: 25px;
}
@media (max-width: 767px) {
  .spe_slider_inner .spe_slider_content {
    padding-left: 0;
  }
}
.spe_slider_inner .spe_slider_content .content_arrow {
  top: 0px;
  align-self: flex-start;
  position: absolute;
  right: 5px;
  border: 1px solid transparent;
  padding: 7.5px;
  color: #fff;
  font-size: 26px;
  cursor: pointer;
}
.spe_slider_inner .spe_slider_content .content_arrow:hover {
  border-color: #fff;
}
.spe_slider_inner .spe_slider_content .content_arrow i {
  display: none;
}
.spe_slider_inner .spe_slider_content .content_arrow i + i {
  display: block;
}
.spe_slider_inner .spe_slider_content h3,
.spe_slider_inner .spe_slider_content p {
  color: #fff;
}
.spe_slider_inner .spe_slider_content h3 {
  font-size: 28px;
}
@media (max-width: 767px) {
  .spe_slider_inner .spe_slider_content h3 {
    font-size: 18px;
    margin-bottom: 4px;
  }
}
.spe_slider_inner .spe_slider_content p {
  display: none;
}
@media (max-width: 767px) {
  .spe_slider_inner .spe_slider_content p {
    font-size: 13px;
    margin-bottom: 0;
    line-height: 20px;
  }
}
.spe_slider_inner .spe_slider_content.show p {
  display: block;
}

.spe_slider_nav .right_arrow,
.spe_slider_nav .left_arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 80px;
  height: 80px;
  display: flex !important;
  align-items: center;
  justify-content: center;
  font-size: 25px;
  color: #fff;
  border: 2px solid transparent;
  transition: all 0.2s;
  cursor: pointer;
  text-shadow: 0px 6px 11px rgb(0, 0, 0);
}
.spe_slider_nav .right_arrow:hover,
.spe_slider_nav .left_arrow:hover {
  border-color: #fff;
}
.spe_slider_nav .right_arrow svg g g,
.spe_slider_nav .left_arrow svg g g {
  stroke: #fff;
}
@media (max-width: 767px) {
  .spe_slider_nav .right_arrow,
  .spe_slider_nav .left_arrow {
    display: none !important;
  }
}
.spe_slider_nav .right_arrow.slick-disabled,
.spe_slider_nav .left_arrow.slick-disabled {
  display: none !important;
}
.spe_slider_nav .left_arrow {
  left: 0;
}
.spe_slider_nav .right_arrow {
  right: 0;
}

.slider-dots-box {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
}
.slider-dots-box .slider-dots {
  list-style: none;
  display: flex;
  justify-content: center;
}
.slider-dots-box .slider-dots li {
  margin: 0px 5px;
}
.slider-dots-box .slider-dots li button {
  width: 150px;
  height: 2px;
  background: rgba(255, 255, 255, 0.4);
  position: relative;
  border: 0px;
  box-shadow: none;
  padding: 0px;
}
.slider-dots-box .slider-dots li button .inProgress {
  height: 2px;
  background: #fff;
  position: absolute;
  left: 0;
  top: 0;
}

.buttons_control {
  background: rgb(0, 0, 0);
  display: flex;
  padding: 5px;
}
.buttons_control .pagingInfo {
  width: calc(100% - 120px);
  height: 50px;
  padding: 18px 0px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
}

.spe_slider_btn {
  text-align: center;
  display: block;
  color: #fff;
  transition: all 0.2s;
  padding: 0px 5px;
  border: 0px;
  box-shadow: none;
  background: linear-gradient(to right, rgb(0, 165, 255) 0%, rgb(0, 165, 255) 50%, rgb(0, 0, 0) 50%, rgb(0, 0, 0) 100%) 0% 0%/200%;
  transition: background-position 800ms cubic-bezier(0.43, 0, 0.09, 1) 0s;
}
.spe_slider_btn.clicked {
  background-position: right center;
  transition: background-position 800ms cubic-bezier(0.91, 0, 0.57, 1) 0s;
}
.spe_slider_btn:focus {
  outline: none;
  box-shadow: none;
}
.spe_slider_btn:hover {
  box-shadow: 0 0 0 2px #fff inset;
}
.spe_slider_btn.pause .one {
  display: block;
}
.spe_slider_btn.pause .two {
  display: none;
}
.spe_slider_btn.play .one {
  display: none;
}
.spe_slider_btn.play .two {
  display: block;
}

.spe_slider_nav_two {
  display: flex;
  align-items: center;
}
.spe_slider_nav_two .spe_slider_btn {
  width: 40px;
  display: inline-block;
  margin: 0px 5px;
  border-radius: 50%;
  height: 40px;
  color: #fff;
  background: #5a5c5f;
}
.spe_slider_nav_two .spe_slider_btn:hover {
  background: blue;
  border-color: blue;
}

.pagingInfo_two {
  border-radius: 45px;
  padding: 5px 20px;
  font-size: 16px;
  color: #fff;
  background: #5a5c5f;
  line-height: 20px;
  letter-spacing: 2px;
  position: absolute;
  top: 30px;
  left: 30px;
}

.buttons_control_info {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  padding: 30px;
}

.spe_slider_nav_two {
  position: absolute;
  right: 30px;
  top: 30px;
}
.spe_slider_nav_two .slick-arrow {
  width: 40px;
  display: inline-block;
  height: 40px;
  color: #fff;
  background: #5a5c5f;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
.spe_slider_nav_two .slick-arrow:hover {
  background: blue;
}

.slider-progress {
  width: 100%;
  height: 5px;
  background: transparent;
  position: absolute;
  top: 0;
}
.slider-progress .slider_progress_bar {
  width: 0px;
  height: 100%;
  background: red;
  transition: all 0s linear;
}
.slider-progress .slider_progress_bar.active {
  width: 100%;
}

.spe_slider_inner.slider_two .spe_slider_content p {
  display: block;
}

.spe_features_box_item {
  place-content: flex-start;
  align-items: flex-start;
  overflow: hidden;
  padding: 40px 40px 80px;
  background: radial-gradient(53.8% 63.1% at 50% 100%, #c499e6 0%, rgba(255, 255, 255, 0.4) 100%);
  border-radius: 20px;
  position: relative;
  will-change: transform;
  z-index: 4;
}
.spe_features_box_item .feature_img {
  margin-bottom: -80px;
  right: -50px;
  top: 50px;
  transform: perspective(1200px);
  position: relative;
}
.spe_features_box_item .feature_img:before {
  left: -4px;
}
.spe_features_box_item .feature_img:after {
  right: -4px;
}
.spe_features_box_item .feature_img img {
  border-radius: 25px;
}
.spe_features_box_item .features_box_layer {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  transition: all 0.3s;
}
.spe_features_box_item .features_box_layer:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  opacity: 0;
  background: radial-gradient(75% 100% at 100% -3.8%, rgba(153, 0, 255, 0.2) 0%, rgba(255, 255, 255, 0) 100%);
  transition: opacity 0.3s linear;
}
.spe_features_box_item .features_box_layer .icon {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  text-align: center;
  line-height: 32px;
  background: #999;
  color: #fff;
  margin-left: auto;
  margin-top: 50px;
  margin-right: 45px;
  transition: all 0.3s;
  display: flex;
  align-items: center;
  justify-content: center;
}
.spe_features_box_item .features_box_layer:hover {
  text-decoration: none;
}
.spe_features_box_item .features_box_layer:hover:before {
  opacity: 1;
}
.spe_features_box_item .features_box_layer:hover .icon {
  transform: translateX(10px);
  background: purple;
}
.spe_features_box_item .spe_feature_content {
  max-width: 400px;
}
.spe_features_box_item .spe_fe_title {
  font-size: 24px;
  font-weight: 600;
}
.spe_features_box_item p {
  font-size: 16px;
  font-weight: 400;
}
.spe_features_box_item .feature_head {
  position: relative;
  padding: 10px 0px;
  border: 1px solid #0099ff;
  font-size: 40px;
  font-weight: 700;
  text-align: center;
  margin: 25px 0px;
}
.spe_features_box_item .feature_head span {
  opacity: 0;
  display: inline-block;
  position: absolute;
  white-space: nowrap;
  left: 0;
  top: 0;
  font-style: normal;
}
.spe_features_box_item .feature_head span.is-visible {
  position: relative;
  opacity: 1;
}

.spe-business-hours {
  background-color: #f5f5f5;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}
.spe-business-hours .bdt-ep-business-hours-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
}
.spe-business-hours .bdt-ep-business-hours-header .bdt-ep-business-hours-current-time {
  font-size: 18px;
  font-weight: bold;
}
.spe-business-hours .bdt-ep-business-hours-header .bdt-ep-business-hours-current-date {
  font-size: 14px;
  color: #777;
}
.spe-business-hours .bdt-ep-business-hours-inner .elementor-repeater-item-44789ee {
  padding: 10px 0;
  border-bottom: 1px solid #ddd;
}
.spe-business-hours .bdt-ep-business-hours-inner .elementor-repeater-item-44789ee .bdt-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.spe-business-hours .bdt-ep-business-hours-inner .elementor-repeater-item-44789ee .bdt-inner .bdt-business-day {
  font-weight: bold;
  font-size: 16px;
}
.spe-business-hours .bdt-ep-business-hours-inner .elementor-repeater-item-44789ee .bdt-inner .bdt-business-time {
  font-size: 14px;
  color: #444;
}
.spe-business-hours .bdt-ep-business-hours-inner .elementor-repeater-item-44789ee .bdt-inner .bdt-business-time .inner-heading-time {
  display: flex;
  align-items: center;
}
.spe-business-hours .bdt-ep-business-hours-inner .elementor-repeater-item-44789ee .bdt-inner .bdt-business-time .inner-heading-time .dynamic-separator {
  margin: 0 5px;
}
.spe-business-hours .bdt-ep-business-hours-inner .elementor-repeater-item-44789ee .bdt-inner .bdt-business-day-off {
  font-weight: bold;
  font-size: 16px;
  color: #d9534f;
}
.spe-business-hours .bdt-ep-business-hours-inner .elementor-repeater-item-44789ee .bdt-inner .bdt-business-time-off {
  font-size: 14px;
  color: #d9534f;
}
.spe-business-hours .bdt-ep-business-hours-inner .elementor-repeater-item-a718456 {
  background-color: #f8f8f8;
}
.spe-business-hours .bdt-live-status .bdt-alert {
  padding: 10px;
  background-color: #d9534f;
  color: #fff;
  border-radius: 4px;
}
.spe-business-hours .bdt-live-status .bdt-alert .bdt-alert-close {
  margin-left: 10px;
  cursor: pointer;
}

.marquee_slider_inner {
  --webkit-mask-image: linear-gradient(90deg, #0000, #fff 5%, #fff 95%, #0000);
  mask-image: linear-gradient(90deg, rgba(0, 0, 0, 0), #fff 5%, #fff 95%, rgba(0, 0, 0, 0));
}
.marquee_slider_inner .slide {
  padding: 5px 0.8rem 20px;
}
.marquee_slider_inner:hover .marquee_item {
  opacity: 0.5;
}
.marquee_slider_inner:hover .marquee_item:hover {
  opacity: 1;
}

.marquee_item {
  background-color: #fff;
  border: 0;
  border-radius: 12px;
  box-shadow: 0 0 1px rgba(24, 29, 38, 0.2392156863), 0 2px 4px rgba(24, 29, 38, 0.0784313725), 0 2px 16px rgba(24, 29, 38, 0.0588235294);
  box-sizing: border-box;
  color: #41454d;
  min-width: 0;
  outline: 0;
  padding: 12px;
  text-decoration: none;
  transition: all 0.15s ease-in;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  min-width: 280px;
  transition: all 0.15s ease-in;
}
.marquee_item img {
  margin-right: 10px;
}
.marquee_item .marquee_content h3 {
  font-size: 20px;
  line-height: 1.2;
  font-weight: 600;
  margin-bottom: 0;
  transition: all 0.3s linear;
  color: #41454d;
}
.marquee_item .marquee_content h3 i {
  opacity: 0;
  margin-left: 10px;
  transition: all 0.3s linear;
}
.marquee_item .marquee_content p {
  font-size: 14px;
  margin-top: 0;
  color: #41454d;
  margin-bottom: 0;
}
.marquee_item:hover {
  box-shadow: 0 0 1px rgba(24, 29, 38, 0.2392156863), 0 4px 6px rgba(24, 29, 38, 0.0784313725), 0 10px 22px rgba(0, 0, 0, 0.1019607843);
  opacity: 1;
}
.marquee_item:hover .marquee_content h3 {
  color: #254fad;
}
.marquee_item:hover .marquee_content h3 i {
  opacity: 1;
}

.marquee_slider_one {
  direction: rtl;
}
.marquee_slider_one .marquee_item {
  direction: ltr;
}

/*# sourceMappingURL=main.css.map */
